From 140e48f3c1986f8bb5820e9a9bef394b3908ac62 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 16 Mar 2016 16:09:22 -0700 Subject: [PATCH 001/520] ffmpeg: 2.8.5 -> 3.0 --- pkgs/development/libraries/ffmpeg/3.0.nix | 7 +++++++ pkgs/top-level/all-packages.nix | 6 +++++- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/libraries/ffmpeg/3.0.nix diff --git a/pkgs/development/libraries/ffmpeg/3.0.nix b/pkgs/development/libraries/ffmpeg/3.0.nix new file mode 100644 index 000000000000..e7d28bfc4388 --- /dev/null +++ b/pkgs/development/libraries/ffmpeg/3.0.nix @@ -0,0 +1,7 @@ +{ callPackage, ... } @ args: + +callPackage ./generic.nix (args // rec { + version = "${branch}"; + branch = "3.0"; + sha256 = "1h0k05cj6j0nd2i16z7hc5scpwsbg3sfx68lvm0nlwvz5xxgg7zi"; +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9eaaab0b0e87..d7d70795530d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6716,11 +6716,15 @@ let 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 { + inherit (darwin.apple_sdk.frameworks) Cocoa; + }; # Aliases ffmpeg_0 = ffmpeg_0_10; ffmpeg_1 = ffmpeg_1_2; ffmpeg_2 = ffmpeg_2_8; - ffmpeg = ffmpeg_2; + ffmpeg_3 = ffmpeg_3_0; + ffmpeg = ffmpeg_3; ffmpeg-full = callPackage ../development/libraries/ffmpeg-full { # The following need to be fixed on Darwin From ff2d137410672d7ec50fa7666a39aab2dbd73e91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sun, 22 May 2016 22:16:12 +0200 Subject: [PATCH 002/520] xorg: add fglrxCompat parameter --- pkgs/servers/x11/xorg/overrides.nix | 17 ++++++++++++++++- pkgs/top-level/all-packages.nix | 1 + 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index a19f479bf2ea..923d3a00bd5b 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -363,7 +363,22 @@ in ''; }; - xorgserver = with xorg; attrs: attrs // + xorgserver = with xorg; attrs_passed: + # exchange attrs if fglrxCompat is set + let + attrs = if !args.fglrxCompat then attrs_passed else + with args; { + name = "xorg-server-1.17.4"; + builder = ./builder.sh; + src = fetchurl { + url = mirror://xorg/individual/xserver/xorg-server-1.17.4.tar.bz2; + sha256 = "0mv4ilpqi5hpg182mzqn766frhi6rw48aba3xfbaj4m82v0lajqc"; + }; + buildInputs = [pkgconfig dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ]; + meta.platforms = stdenv.lib.platforms.unix; + }; + + in attrs // (let version = (builtins.parseDrvName attrs.name).version; commonBuildInputs = attrs.buildInputs ++ [ xtrans ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dd22909dde82..b1d657215f17 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10268,6 +10268,7 @@ in mesa = mesa_noglu; udev = if stdenv.isLinux then udev else null; libdrm = if stdenv.isLinux then libdrm else null; + fglrxCompat = false; } // { inherit xlibsWrapper; } ); xwayland = callPackage ../servers/x11/xorg/xwayland.nix { }; From 05a36304ea812cc891a1d03a497b8ee7ce3729de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 23 May 2016 10:12:44 +0200 Subject: [PATCH 003/520] nixos ati_unfree: auto-switch xorg to fglrxComat --- nixos/modules/hardware/video/ati.nix | 2 ++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/modules/hardware/video/ati.nix b/nixos/modules/hardware/video/ati.nix index 033e49d2233e..bf91bcf0776b 100644 --- a/nixos/modules/hardware/video/ati.nix +++ b/nixos/modules/hardware/video/ati.nix @@ -18,6 +18,8 @@ in config = mkIf enabled { + nixpkgs.config.xorg.fglrxCompat = true; + services.xserver.drivers = singleton { name = "fglrx"; modules = [ ati_x11 ]; libPath = [ "${ati_x11}/lib" ]; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b1d657215f17..bdffa0f9f2c4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10268,7 +10268,7 @@ in mesa = mesa_noglu; udev = if stdenv.isLinux then udev else null; libdrm = if stdenv.isLinux then libdrm else null; - fglrxCompat = false; + fglrxCompat = config.xorg.fglrxCompat or false; # `config` because we have no `xorg.override` } // { inherit xlibsWrapper; } ); xwayland = callPackage ../servers/x11/xorg/xwayland.nix { }; From 5908d31cf4be5004f97d8b3cb3a6f28d5ae555dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 23 May 2016 10:13:47 +0200 Subject: [PATCH 004/520] xorg-server: major update 1.17.4 -> 1.18.3 --- pkgs/servers/x11/xorg/default.nix | 6 +++--- pkgs/servers/x11/xorg/tarballs-7.7.list | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/x11/xorg/default.nix b/pkgs/servers/x11/xorg/default.nix index 45c01d74cdb3..dace2262b7d3 100644 --- a/pkgs/servers/x11/xorg/default.nix +++ b/pkgs/servers/x11/xorg/default.nix @@ -2348,11 +2348,11 @@ let }) // {inherit ;}; xorgserver = (mkDerivation "xorgserver" { - name = "xorg-server-1.17.4"; + name = "xorg-server-1.18.3"; builder = ./builder.sh; src = fetchurl { - url = mirror://xorg/individual/xserver/xorg-server-1.17.4.tar.bz2; - sha256 = "0mv4ilpqi5hpg182mzqn766frhi6rw48aba3xfbaj4m82v0lajqc"; + url = mirror://xorg/individual/xserver/xorg-server-1.18.3.tar.bz2; + sha256 = "1ka206v4nbw6qz072gh0543aq44azq2zv9f0yysy5nvwa4i9qwza"; }; buildInputs = [pkgconfig dri2proto dri3proto renderproto libdrm openssl libX11 libXau libXaw libxcb xcbutil xcbutilwm xcbutilimage xcbutilkeysyms xcbutilrenderutil libXdmcp libXfixes libxkbfile libXmu libXpm libXrender libXres libXt ]; meta.platforms = stdenv.lib.platforms.unix; diff --git a/pkgs/servers/x11/xorg/tarballs-7.7.list b/pkgs/servers/x11/xorg/tarballs-7.7.list index d0a812e45d6a..3951db9a8abd 100644 --- a/pkgs/servers/x11/xorg/tarballs-7.7.list +++ b/pkgs/servers/x11/xorg/tarballs-7.7.list @@ -184,7 +184,7 @@ mirror://xorg/individual/app/xlsfonts-1.0.5.tar.bz2 mirror://xorg/individual/app/xmag-1.0.6.tar.bz2 mirror://xorg/individual/app/xmodmap-1.0.9.tar.bz2 mirror://xorg/individual/doc/xorg-docs-1.7.1.tar.bz2 -mirror://xorg/individual/xserver/xorg-server-1.17.4.tar.bz2 +mirror://xorg/individual/xserver/xorg-server-1.18.3.tar.bz2 mirror://xorg/X11R7.7/src/everything/xorg-sgml-doctools-1.11.tar.bz2 mirror://xorg/X11R7.7/src/everything/xpr-1.0.4.tar.bz2 mirror://xorg/individual/app/xprop-1.2.2.tar.bz2 From 69cc0a7bc5832a98f29e82a1674ed473986b6f4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 23 May 2016 13:00:21 +0200 Subject: [PATCH 005/520] xf86-input-evdev: split dev output --- nixos/modules/services/x11/xserver.nix | 2 +- pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix | 2 +- pkgs/servers/x11/xorg/overrides.nix | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 9cb9c8de31d7..356ee7d265aa 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -535,7 +535,7 @@ in services.xserver.modules = concatLists (catAttrs "modules" cfg.drivers) ++ [ xorg.xorgserver.out - xorg.xf86inputevdev + xorg.xf86inputevdev.out ]; services.xserver.xkbDir = mkDefault "${pkgs.xkeyboard_config}/etc/X11/xkb"; diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix index 58c2325f5c49..acaec3bc03af 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix @@ -36,7 +36,7 @@ plasmaPackage rec { ]; NIX_CFLAGS_COMPILE = [ "-I${xorgserver}/include/xorg" ]; cmakeFlags = [ - "-DEvdev_INCLUDE_DIRS=${xf86inputevdev}/include/xorg" + "-DEvdev_INCLUDE_DIRS=${xf86inputevdev.dev}/include/xorg" "-DSynaptics_INCLUDE_DIRS=${xf86inputsynaptics}/include/xorg" ]; postInstall = '' diff --git a/pkgs/servers/x11/xorg/overrides.nix b/pkgs/servers/x11/xorg/overrides.nix index 923d3a00bd5b..9f78fcffc5ec 100644 --- a/pkgs/servers/x11/xorg/overrides.nix +++ b/pkgs/servers/x11/xorg/overrides.nix @@ -286,6 +286,7 @@ in }; xf86inputevdev = attrs: attrs // { + outputs = [ "dev" "out" ]; # to get rid of xorgserver.dev; man is tiny preBuild = "sed -e '/motion_history_proc/d; /history_size/d;' -i src/*.c"; installFlags = "sdkdir=\${out}/include/xorg"; buildInputs = attrs.buildInputs ++ [ args.mtdev args.libevdev ]; From 358533dc61ab40308c02990746314d095f437e1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 23 May 2016 13:01:01 +0200 Subject: [PATCH 006/520] nixos xserver: fix evdev driver with xserver 1.18 ... and add its man page. Now I seem to be running fine with the new server. --- nixos/modules/services/x11/xserver.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/xserver.nix b/nixos/modules/services/x11/xserver.nix index 356ee7d265aa..41d34b4bbe55 100644 --- a/nixos/modules/services/x11/xserver.nix +++ b/nixos/modules/services/x11/xserver.nix @@ -462,7 +462,14 @@ in { source = "${cfg.xkbDir}"; target = "X11/xkb"; } - ]); + ]) + # Needed since 1.18; see https://bugs.freedesktop.org/show_bug.cgi?id=89023#c5 + ++ (let cfgPath = "/X11/xorg.conf.d/10-evdev.conf"; in + [{ + source = xorg.xf86inputevdev.out + "/share" + cfgPath; + target = cfgPath; + }] + ); environment.systemPackages = [ xorg.xorgserver.out @@ -478,6 +485,7 @@ in xorg.xauth pkgs.xterm pkgs.xdg_utils + xorg.xf86inputevdev.out # get evdev.4 man page ] ++ optional (elem "virtualbox" cfg.videoDrivers) xorg.xrefresh; From e7080becfdfe6fbd827e18e6efb180be82c7c9b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 23 May 2016 15:24:00 +0200 Subject: [PATCH 007/520] release notes: mention xorg-server update --- nixos/doc/manual/release-notes/rl-1609.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-1609.xml b/nixos/doc/manual/release-notes/rl-1609.xml index 22dea8029242..e167cf08b986 100644 --- a/nixos/doc/manual/release-notes/rl-1609.xml +++ b/nixos/doc/manual/release-notes/rl-1609.xml @@ -16,6 +16,10 @@ has the following highlights: See for documentation. + + Xorg-server-1.18.*. If you choose "ati_unfree" driver, + 1.17.* is still used due to ABI incompatibility. + The following new services were added since the last release: From 63b73234029df4e31d9a4c0788ce59847422e0eb Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Thu, 26 May 2016 18:51:25 +0200 Subject: [PATCH 008/520] Remove bittornado Package is broken. Won't work with wxPython30, and wheel produced with buildPythonPackage cannot be installed either. --- .../networking/p2p/bit-tornado/default.nix | 24 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 26 deletions(-) delete mode 100644 pkgs/tools/networking/p2p/bit-tornado/default.nix diff --git a/pkgs/tools/networking/p2p/bit-tornado/default.nix b/pkgs/tools/networking/p2p/bit-tornado/default.nix deleted file mode 100644 index 92458b3d1459..000000000000 --- a/pkgs/tools/networking/p2p/bit-tornado/default.nix +++ /dev/null @@ -1,24 +0,0 @@ -{ stdenv,fetchurl,python, wxPython, makeWrapper }: -stdenv.mkDerivation { - name = "bit-tornado-0.3.18"; - - src = fetchurl { - url = http://download2.bittornado.com/download/BitTornado-0.3.18.tar.gz; - sha256 = "1q6rapidnizy8wawasirgyjl9s4lrm7mm740mc5q5sdjyl5svrnr"; - }; - - buildInputs = [ python wxPython makeWrapper ]; - - buildPhase = '' ''; - installPhase = '' - python setup.py install --prefix=$out ; - for i in $(cd $out/bin && ls); do - wrapProgram $out/bin/$i \ - --prefix PYTHONPATH : "$(toPythonPath $out):$PYTHONPATH" - done - ''; - - meta = { - description = "Bittorrent client with IPv6 support"; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5143e4a319d0..52e4f97e4c19 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -933,8 +933,6 @@ in inherit (strategoPackages016) strategoxt sdf; }; - bittornado = callPackage ../tools/networking/p2p/bit-tornado { }; - blueman = callPackage ../tools/bluetooth/blueman { inherit (gnome3) dconf gsettings_desktop_schemas; withPulseAudio = config.pulseaudio or true; From 6648b04381b8fefb704824f5db898813f22dafbb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 25 May 2016 19:36:50 +0200 Subject: [PATCH 009/520] stdenv: fix paxmark On Linux, paxctl's setup hook should overwrite the paxmark stub, but the stub is defined after the setup hooks are sourced, so the stub ends up overwriting the real function. The result is that paxmark fails to do anything. The fix is to define the stub before any setup hooks are sourced. Thanks to @vcunat for figuring this out. Closes #15492 --- pkgs/stdenv/generic/setup.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/stdenv/generic/setup.sh b/pkgs/stdenv/generic/setup.sh index ce5feac3c66d..85e74461d2a4 100644 --- a/pkgs/stdenv/generic/setup.sh +++ b/pkgs/stdenv/generic/setup.sh @@ -236,6 +236,11 @@ BASH="$SHELL" export CONFIG_SHELL="$SHELL" +# Dummy implementation of the paxmark function. On Linux, this is +# overwritten by paxctl's setup hook. +paxmark() { true; } + + # Execute the pre-hook. if [ -z "$shell" ]; then export shell=$SHELL; fi runHook preHook @@ -369,11 +374,6 @@ fi export NIX_BUILD_CORES -# Dummy implementation of the paxmark function. On Linux, this is -# overwritten by paxctl's setup hook. -paxmark() { true; } - - # Prevent OpenSSL-based applications from using certificates in # /etc/ssl. if [ -z "$SSL_CERT_FILE" ]; then From 9597ca718b1612f0a1f0ec0c00b02b55f7a3775e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:25:48 +0200 Subject: [PATCH 010/520] pythonPackages.wxPython{28,30} : use buildPythonPackage --- .../python-modules/wxPython/2.8.nix | 41 +++++++++++++++++-- .../python-modules/wxPython/3.0.nix | 38 +++++++++++++++-- .../python-modules/wxPython/generic.nix | 31 -------------- pkgs/top-level/python-packages.nix | 6 +-- 4 files changed, 73 insertions(+), 43 deletions(-) delete mode 100644 pkgs/development/python-modules/wxPython/generic.nix diff --git a/pkgs/development/python-modules/wxPython/2.8.nix b/pkgs/development/python-modules/wxPython/2.8.nix index f0a452424158..12027f54ff82 100644 --- a/pkgs/development/python-modules/wxPython/2.8.nix +++ b/pkgs/development/python-modules/wxPython/2.8.nix @@ -1,6 +1,39 @@ -{ callPackage, ... } @ args: +{ fetchurl +, lib +, pythonPackages +, openglSupport ? true +, libX11 +, wxGTK +, pkgconfig +}: -callPackage ./generic.nix (args // rec { +assert wxGTK.unicode; + +with pythonPackages; + +buildPythonPackage rec { + name = "wxPython-${version}"; version = "2.8.12.1"; - sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz"; -}) + + disabled = isPy3k || isPyPy; + doCheck = false; + + src = fetchurl { + url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2"; + sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz"; + }; + + propagatedBuildInputs = [ pkgconfig wxGTK (wxGTK.gtk) libX11 ] ++ lib.optional openglSupport pyopengl; + preConfigure = "cd wxPython"; + + NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; + + buildPhase = ""; + + installPhase = '' + ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out + wrapPythonPrograms + ''; + + passthru = { inherit wxGTK openglSupport; }; +} diff --git a/pkgs/development/python-modules/wxPython/3.0.nix b/pkgs/development/python-modules/wxPython/3.0.nix index 6892d7e87298..7c225a95f2a6 100644 --- a/pkgs/development/python-modules/wxPython/3.0.nix +++ b/pkgs/development/python-modules/wxPython/3.0.nix @@ -1,9 +1,39 @@ -{ callPackage, ... } @ args: +{ fetchurl +, lib +, pythonPackages +, openglSupport ? true +, libX11 +, wxGTK +, pkgconfig +}: -callPackage ./generic.nix (args // rec { +assert wxGTK.unicode; +with pythonPackages; + +buildPythonPackage rec { + name = "wxPython-${version}"; version = "3.0.2.0"; - sha256 = "0qfzx3sqx4mwxv99sfybhsij4b5pc03ricl73h4vhkzazgjjjhfm"; + disabled = isPy3k || isPyPy; + doCheck = false; -}) + src = fetchurl { + url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2"; + sha256 = "0qfzx3sqx4mwxv99sfybhsij4b5pc03ricl73h4vhkzazgjjjhfm"; + }; + + propagatedBuildInputs = [ pkgconfig wxGTK (wxGTK.gtk) libX11 ] ++ lib.optional openglSupport pyopengl; + preConfigure = "cd wxPython"; + + NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; + + buildPhase = ""; + + installPhase = '' + ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out + wrapPythonPrograms + ''; + + passthru = { inherit wxGTK openglSupport; }; +} diff --git a/pkgs/development/python-modules/wxPython/generic.nix b/pkgs/development/python-modules/wxPython/generic.nix deleted file mode 100644 index 16c7c1263187..000000000000 --- a/pkgs/development/python-modules/wxPython/generic.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ stdenv, fetchurl, pkgconfig, python, isPy3k, isPyPy, wxGTK, openglSupport ? true, pyopengl -, version, sha256, wrapPython, setuptools, libX11, ... -}: - -assert wxGTK.unicode; - -stdenv.mkDerivation rec { - name = "wxPython-${version}"; - inherit version; - - disabled = isPy3k || isPyPy; - doCheck = false; - - src = fetchurl { - url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2"; - inherit sha256; - }; - - pythonPath = [ python setuptools ]; - buildInputs = [ python setuptools pkgconfig wxGTK (wxGTK.gtk) wrapPython libX11 ] ++ stdenv.lib.optional openglSupport pyopengl; - preConfigure = "cd wxPython"; - - NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; - - installPhase = '' - ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out - wrapPythonPrograms - ''; - - passthru = { inherit wxGTK openglSupport; }; -} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2406df879b8f..ac5f14ce7a9c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23339,13 +23339,11 @@ in modules // { wxPython = self.wxPython28; - wxPython28 = import ../development/python-modules/wxPython/2.8.nix { - inherit callPackage; + wxPython28 = callPackage ../development/python-modules/wxPython/2.8.nix { wxGTK = pkgs.wxGTK28; }; - wxPython30 = import ../development/python-modules/wxPython/3.0.nix { - inherit callPackage; + wxPython30 = callPackage ../development/python-modules/wxPython/3.0.nix { wxGTK = pkgs.wxGTK30; }; From f1ff46231b16d96ada61508f4a77593b73fbdcac Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:26:15 +0200 Subject: [PATCH 011/520] pythonPackages.wxPython: 2.8 -> 3.0 --- 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 ac5f14ce7a9c..a77928fecf5f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23337,7 +23337,7 @@ in modules // { }; }; - wxPython = self.wxPython28; + wxPython = self.wxPython30; wxPython28 = callPackage ../development/python-modules/wxPython/2.8.nix { wxGTK = pkgs.wxGTK28; From d3714e34457fbd8a0c0eb7a927a0b1947f9ecce3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:27:29 +0200 Subject: [PATCH 012/520] wxPython: remove from top-level --- pkgs/top-level/all-packages.nix | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52e4f97e4c19..0d4f7ffcda8d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6519,7 +6519,9 @@ in yodl = callPackage ../development/tools/misc/yodl { }; - winpdb = callPackage ../development/tools/winpdb { }; + winpdb = callPackage ../development/tools/winpdb { + inherit (pythonPackages) wxPython; + }; grabserial = callPackage ../development/tools/grabserial { }; @@ -9686,9 +9688,6 @@ in twisted = pythonPackages.twisted; - wxPython = pythonPackages.wxPython; - wxPython28 = pythonPackages.wxPython28; - yolk = callPackage ../development/python-modules/yolk {}; ZopeInterface = pythonPackages.zope_interface; @@ -12528,7 +12527,7 @@ in gksu = callPackage ../applications/misc/gksu { }; gnuradio = callPackage ../applications/misc/gnuradio { - inherit (pythonPackages) lxml numpy scipy matplotlib pyopengl; + inherit (pythonPackages) lxml numpy scipy matplotlib pyopengl wxPython; fftw = fftwFloat; }; @@ -14324,7 +14323,7 @@ in torch-repl = lib.setName "torch-repl" torchPackages.trepl; torchat = callPackage ../applications/networking/instant-messengers/torchat { - wrapPython = pythonPackages.wrapPython; + inherit (pythonPackages) wrapPython wxPython; }; tortoisehg = callPackage ../applications/version-management/tortoisehg { }; From 650fe83eb054982e399d783323b766258d313b9c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:27:54 +0200 Subject: [PATCH 013/520] pythonPackags.plover: mark as broken --- pkgs/top-level/python-packages.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a77928fecf5f..ea6857681f1e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -12955,6 +12955,7 @@ in modules // { description = "OpenSteno Plover stenography software"; maintainers = with maintainers; [ twey kovirobi ]; license = licenses.gpl2; + broken = true; }; src = pkgs.fetchurl { @@ -12962,7 +12963,8 @@ in modules // { sha256 = "1jja37nhiypdx1z6cazp8ffsf0z3yqmpdbprpdzf668lcb422rl0"; }; - propagatedBuildInputs = with self; [ wxPython30 pyserial hidapi xlib appdirs pkgs.wmctrl mock ]; + buildInputs = with self; [ pytest ]; + propagatedBuildInputs = with self; [ wxPython pyserial hidapi xlib appdirs pkgs.wmctrl mock ]; }; pygal = buildPythonPackage rec { From 218869e6952eb18316e218476cb7896c5f44aa8f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:28:12 +0200 Subject: [PATCH 014/520] pythonPackages.runsnakerun: use current wxPython --- 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 ea6857681f1e..afff567aed26 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19948,7 +19948,7 @@ in modules // { sha256 = "61d03a13f1dcb3c1829f5a146da1fe0cc0e27947558a51e848b6d469902815ef"; }; - propagatedBuildInputs = [ self.squaremap self.wxPython28 ]; + propagatedBuildInputs = with self; [ squaremap wxPython ]; meta = { description = "GUI Viewer for Python profiling runs"; From 253634c4acb7f29cae84065a4ba70f2bf0ccf582 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 27 May 2016 21:37:09 +0200 Subject: [PATCH 015/520] pythonPackages.wxPython28: remove package --- .../python-modules/wxPython/2.8.nix | 39 ------------------- pkgs/top-level/python-packages.nix | 4 -- 2 files changed, 43 deletions(-) delete mode 100644 pkgs/development/python-modules/wxPython/2.8.nix diff --git a/pkgs/development/python-modules/wxPython/2.8.nix b/pkgs/development/python-modules/wxPython/2.8.nix deleted file mode 100644 index 12027f54ff82..000000000000 --- a/pkgs/development/python-modules/wxPython/2.8.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ fetchurl -, lib -, pythonPackages -, openglSupport ? true -, libX11 -, wxGTK -, pkgconfig -}: - -assert wxGTK.unicode; - -with pythonPackages; - -buildPythonPackage rec { - name = "wxPython-${version}"; - version = "2.8.12.1"; - - disabled = isPy3k || isPyPy; - doCheck = false; - - src = fetchurl { - url = "mirror://sourceforge/wxpython/wxPython-src-${version}.tar.bz2"; - sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz"; - }; - - propagatedBuildInputs = [ pkgconfig wxGTK (wxGTK.gtk) libX11 ] ++ lib.optional openglSupport pyopengl; - preConfigure = "cd wxPython"; - - NIX_LDFLAGS = "-lX11 -lgdk-x11-2.0"; - - buildPhase = ""; - - installPhase = '' - ${python.interpreter} setup.py install WXPORT=gtk2 NO_HEADERS=1 BUILD_GLCANVAS=${if openglSupport then "1" else "0"} UNICODE=1 --prefix=$out - wrapPythonPrograms - ''; - - passthru = { inherit wxGTK openglSupport; }; -} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index afff567aed26..b9be307ce228 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23341,10 +23341,6 @@ in modules // { wxPython = self.wxPython30; - wxPython28 = callPackage ../development/python-modules/wxPython/2.8.nix { - wxGTK = pkgs.wxGTK28; - }; - wxPython30 = callPackage ../development/python-modules/wxPython/3.0.nix { wxGTK = pkgs.wxGTK30; }; From 2e0c97de6ee1370f3a02a7f0a6efcc71e6769a13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Sat, 28 May 2016 14:43:21 -0300 Subject: [PATCH 016/520] mate-icon-theme: 1.6.3 -> 1.14.1 --- pkgs/misc/themes/mate-icon-theme/default.nix | 22 +++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/pkgs/misc/themes/mate-icon-theme/default.nix b/pkgs/misc/themes/mate-icon-theme/default.nix index 6749b5e4c392..f68c8b403eec 100644 --- a/pkgs/misc/themes/mate-icon-theme/default.nix +++ b/pkgs/misc/themes/mate-icon-theme/default.nix @@ -1,19 +1,25 @@ -{ stdenv, fetchurl, pkgconfig, intltool, gtk2, iconnamingutils }: +{ stdenv, fetchurl, pkgconfig, intltool, iconnamingutils, hicolor_icon_theme }: -stdenv.mkDerivation { - name = "mate-icon-theme-1.6.3"; +stdenv.mkDerivation rec { + name = "mate-icon-theme-${version}"; + version = "${major-ver}.${minor-ver}"; + major-ver = "1.14"; + minor-ver = "0"; src = fetchurl { - url = "http://pub.mate-desktop.org/releases/1.6/mate-icon-theme-1.6.3.tar.xz"; - sha256 = "1r3qkx4k9svmxdg453r9d3hs47cgagxsngzi8rp6yry0c9bw5r5w"; + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; + sha256 = "1d8y4vlna8higz05mc01srrgspxmzw04vh3hyzcd9ms603njpfqm"; }; - buildInputs = [ pkgconfig intltool gtk2 iconnamingutils ]; + nativeBuildInputs = [ pkgconfig intltool iconnamingutils ]; + + buildInputs = [ hicolor_icon_theme ]; meta = { description = "Icon themes from MATE"; homepage = "http://mate-desktop.org"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.lgpl3; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; }; } From 2fe8a98244031a8d7b18c854da8dcb11a901cfeb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Sat, 28 May 2016 19:43:27 +0200 Subject: [PATCH 017/520] llvm: remove bogus paxmarks Refers to non-existent files; see e.g., https://hydra.nixos.org/build/36359717/nixlog/1/raw Likely a copy-paste error that has gone unnoticed because paxmark didn't do anything, but breaks after 6648b04381b8fefb704824f5db898813f22dafbb --- pkgs/development/compilers/llvm/3.6/llvm.nix | 4 ---- pkgs/development/compilers/llvm/3.7/llvm.nix | 4 ---- pkgs/development/compilers/llvm/3.8/llvm.nix | 4 ---- 3 files changed, 12 deletions(-) diff --git a/pkgs/development/compilers/llvm/3.6/llvm.nix b/pkgs/development/compilers/llvm/3.6/llvm.nix index 5941d7883565..54de4b200f30 100644 --- a/pkgs/development/compilers/llvm/3.6/llvm.nix +++ b/pkgs/development/compilers/llvm/3.6/llvm.nix @@ -57,10 +57,6 @@ in stdenv.mkDerivation rec { rm -fR $out paxmark m bin/{lli,llvm-rtdyld} - - paxmark m unittests/ExecutionEngine/JIT/JITTests - paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests - paxmark m unittests/Support/SupportTests ''; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/llvm/3.7/llvm.nix b/pkgs/development/compilers/llvm/3.7/llvm.nix index 3a7829eca6df..cc65c69927c5 100644 --- a/pkgs/development/compilers/llvm/3.7/llvm.nix +++ b/pkgs/development/compilers/llvm/3.7/llvm.nix @@ -62,10 +62,6 @@ in stdenv.mkDerivation rec { rm -fR $out paxmark m bin/{lli,llvm-rtdyld} - - paxmark m unittests/ExecutionEngine/JIT/JITTests - paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests - paxmark m unittests/Support/SupportTests ''; enableParallelBuilding = true; diff --git a/pkgs/development/compilers/llvm/3.8/llvm.nix b/pkgs/development/compilers/llvm/3.8/llvm.nix index ef929dec68ba..fb8266480326 100644 --- a/pkgs/development/compilers/llvm/3.8/llvm.nix +++ b/pkgs/development/compilers/llvm/3.8/llvm.nix @@ -67,10 +67,6 @@ in stdenv.mkDerivation rec { rm -fR $out paxmark m bin/{lli,llvm-rtdyld} - - paxmark m unittests/ExecutionEngine/JIT/JITTests - paxmark m unittests/ExecutionEngine/MCJIT/MCJITTests - paxmark m unittests/Support/SupportTests ''; enableParallelBuilding = true; From 788ee3bcc1a1b648645a52a54b1b4b08685e054f Mon Sep 17 00:00:00 2001 From: William Casarin Date: Sun, 18 Oct 2015 02:48:19 -0700 Subject: [PATCH 018/520] unity3d: wip at 5.1.0f3 --- pkgs/development/tools/unity3d/default.nix | 135 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 137 insertions(+) create mode 100644 pkgs/development/tools/unity3d/default.nix diff --git a/pkgs/development/tools/unity3d/default.nix b/pkgs/development/tools/unity3d/default.nix new file mode 100644 index 000000000000..5c805ac667d9 --- /dev/null +++ b/pkgs/development/tools/unity3d/default.nix @@ -0,0 +1,135 @@ +{ GConf +, alsaLib +, fetchurl +, stdenv +, makeWrapper +, cairo +, libcap +, cups +, dbus +, expat +, postgresql +, fontconfig +, freetype +, gdk_pixbuf +, getopt +, fakeroot +, glib +, gtk +, mesa_glu +, nspr +, nss +, pango +, xorg +, monodevelop +, xdg_utils +}: + +let + deps = [ + GConf + alsaLib + cairo + cups + libcap + dbus + expat + fontconfig + freetype + glib + gtk + gdk_pixbuf + mesa_glu + nspr + postgresql + nss + pango + xorg.libXcomposite + xorg.libX11 + xorg.libXcursor + xorg.libXdamage + xorg.libXfixes + xorg.libXi + xorg.libXrandr + xorg.libXrender + xorg.libXtst + ]; + libPath = stdenv.lib.makeLibraryPath deps; + ver = "5.1.0"; + build = "f3"; + date = "2015091501"; + pkgVer = "${ver}${build}"; + fullVer = "${pkgVer}+${date}"; +in stdenv.mkDerivation rec { + name = "unity-editor-${version}"; + version = pkgVer; + buildInputs = [ makeWrapper monodevelop xdg_utils getopt fakeroot ]; + + src = fetchurl { + url = "http://download.unity3d.com/download_unity/unity-editor-installer-${fullVer}.sh"; + sha256 = "77b351d80fc4b63284f118093df486e16c13d7b136debae6534245878029a5ca"; + }; + + outputs = ["out" "sandbox"]; + + unpackPhase = '' + # 'yes | fakeroot' + echo -e 'q\ny' | fakeroot sh $src + sourceRoot="unity-editor-${pkgVer}" + ''; + + installPhase = '' + unitydir=$out/opt/Unity + + mkdir -p $out/{bin,opt} + mkdir -p $sandbox/bin + mkdir -p $unitydir + mkdir -p $out/share/applications + mkdir -p $out/share/icons/hicolor/{256x256,48x48}/apps + + mv Editor $unitydir + mv MonoDevelop $unitydir + + echo "exec $unitydir/Editor/Unity \"\$@\"" > $out/bin/unity-editor + chmod +x $out/bin/unity-editor + + sed "/^Exec=/c\Exec=$out/bin/unity-editor" < unity-editor.desktop \ + > $out/share/applications/unity-editor.desktop + + #sed -i "/^Exec=/c\Exec=$out/bin/monodevelop-unity" unity-monodevelop.desktop + + cp unity-editor-icon.png $out/share/icons/hicolor/256x256/apps + # cp $unitydir/unity-monodevelop.png $out/share/icons/hicolor/48x48/apps + + rpath="$unitydir/Editor/Data/Tools:$unitydir/Editor:${stdenv.cc.cc}/lib" + + patchelf \ + --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + $unitydir/Editor/chrome-sandbox + + cp $unitydir/Editor/chrome-sandbox $sandbox/bin + rm $unitydir/Editor/chrome-sandbox + + patchelf \ + --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + --set-rpath "$rpath" \ + $unitydir/Editor/Unity + + wrapProgram $out/bin/unity-editor \ + --prefix LD_LIBRARY_PATH : "${libPath}" + + ''; + + dontStrip = true; + + meta = { + homepage = https://unity3d.com/; + description = "Game development tool"; + longDescription = '' + Popular development platform for creating 2D and 3D multiplatform games + and interactive experiences. + ''; + license = stdenv.lib.licenses.unfree; + maintainers = with stdenv.lib.maintainers; [ jb55 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b4c4d163390e..888cce92e673 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16749,6 +16749,8 @@ in ums = callPackage ../servers/ums { }; + unity3d = callPackage ../development/tools/unity3d { inherit (gnome) GConf; }; + urbit = callPackage ../misc/urbit { }; utf8proc = callPackage ../development/libraries/utf8proc { }; From 846893aabb414de12f301250b21859ddd3318d25 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 26 May 2016 17:45:45 +0300 Subject: [PATCH 019/520] unity3d: 5.1.0f3 -> 5.3.5f1 --- pkgs/development/tools/unity3d/default.nix | 197 +++++++++--------- pkgs/development/tools/unity3d/unity-nosuid.c | 32 +++ pkgs/top-level/all-packages.nix | 6 +- 3 files changed, 139 insertions(+), 96 deletions(-) create mode 100644 pkgs/development/tools/unity3d/unity-nosuid.c diff --git a/pkgs/development/tools/unity3d/default.nix b/pkgs/development/tools/unity3d/default.nix index 5c805ac667d9..8f89770ffc85 100644 --- a/pkgs/development/tools/unity3d/default.nix +++ b/pkgs/development/tools/unity3d/default.nix @@ -1,135 +1,142 @@ -{ GConf -, alsaLib -, fetchurl -, stdenv -, makeWrapper -, cairo -, libcap -, cups -, dbus -, expat -, postgresql -, fontconfig -, freetype -, gdk_pixbuf -, getopt -, fakeroot -, glib -, gtk -, mesa_glu -, nspr -, nss -, pango -, xorg -, monodevelop -, xdg_utils +{ stdenv, lib, fetchurl, makeWrapper, fakeroot, file, getopt +, gtk2, gdk_pixbuf, glib, mesa_glu, postgresql, nss, nspr +, alsaLib, GConf, cups, libcap, fontconfig, freetype, pango +, cairo, dbus, expat, zlib, libpng12, nodejs, gnutar, gcc, gcc_32bit +, libX11, libXcursor, libXdamage, libXfixes, libXrender, libXi +, libXcomposite, libXext, libXrandr, libXtst, libSM, libICE, libxcb +, mono, libgnomeui, gnome_vfs, gnome-sharp, gtk-sharp }: let - deps = [ - GConf - alsaLib - cairo - cups - libcap - dbus - expat - fontconfig - freetype - glib - gtk - gdk_pixbuf - mesa_glu - nspr - postgresql - nss - pango - xorg.libXcomposite - xorg.libX11 - xorg.libXcursor - xorg.libXdamage - xorg.libXfixes - xorg.libXi - xorg.libXrandr - xorg.libXrender - xorg.libXtst + libPath64 = lib.makeLibraryPath [ + gcc.cc gtk2 gdk_pixbuf glib mesa_glu postgresql nss nspr + alsaLib GConf cups libcap fontconfig freetype pango + cairo dbus expat zlib libpng12 + libX11 libXcursor libXdamage libXfixes libXrender libXi + libXcomposite libXext libXrandr libXtst libSM libICE libxcb ]; - libPath = stdenv.lib.makeLibraryPath deps; - ver = "5.1.0"; - build = "f3"; - date = "2015091501"; + libPath32 = lib.makeLibraryPath [ gcc_32bit.cc ]; + binPath = lib.makeBinPath [ nodejs gnutar ]; + developBinPath = lib.makeBinPath [ mono ]; + developLibPath = lib.makeLibraryPath [ + glib libgnomeui gnome_vfs gnome-sharp gtk-sharp gtk-sharp.gtk + ]; + developDotnetPath = lib.concatStringsSep ":" [ + gnome-sharp gtk-sharp + ]; + + ver = "5.3.5"; + build = "f1"; + date = "20160525"; pkgVer = "${ver}${build}"; fullVer = "${pkgVer}+${date}"; + in stdenv.mkDerivation rec { name = "unity-editor-${version}"; version = pkgVer; - buildInputs = [ makeWrapper monodevelop xdg_utils getopt fakeroot ]; src = fetchurl { - url = "http://download.unity3d.com/download_unity/unity-editor-installer-${fullVer}.sh"; - sha256 = "77b351d80fc4b63284f118093df486e16c13d7b136debae6534245878029a5ca"; + url = "http://download.unity3d.com/download_unity/linux/unity-editor-installer-${fullVer}.sh"; + sha256 = "0lmc65175fdvbyn3565pjlg6cc4l5i58fj7bxzi5cqykkbzv5wdm"; }; - outputs = ["out" "sandbox"]; + nosuidLib = ./unity-nosuid.c; + + nativeBuildInputs = [ makeWrapper fakeroot file getopt ]; + + outputs = [ "out" "monodevelop" "sandbox" ]; unpackPhase = '' - # 'yes | fakeroot' echo -e 'q\ny' | fakeroot sh $src sourceRoot="unity-editor-${pkgVer}" ''; + buildPhase = '' + patchFile() { + ftype="$(file -b "$1")" + if [[ "$ftype" =~ LSB\ .*dynamically\ linked ]]; then + if [[ "$ftype" =~ 32-bit ]]; then + rpath="${libPath32}" + intp="$(cat $NIX_CC/nix-support/dynamic-linker-m32)" + else + rpath="${libPath64}" + intp="$(cat $NIX_CC/nix-support/dynamic-linker)" + fi + + rpath="$(patchelf --print-rpath "$1"):$rpath" + if [[ "$ftype" =~ LSB\ shared ]]; then + patchelf \ + --set-rpath "$rpath" \ + "$1" + elif [[ "$ftype" =~ LSB\ executable ]]; then + patchelf \ + --set-rpath "$rpath" \ + --interpreter "$intp" \ + "$1" + fi + fi + } + + cd Editor + + $CC -fPIC -shared -o libunity-nosuid.so $nosuidLib -ldl + strip libunity-nosuid.so + + # Exclude PlaybackEngines to build something that can be run on FHS-compliant Linuxes + find . -name PlaybackEngines -prune -o -executable -type f -print | while read path; do + patchFile "$path" + done + + cd .. + ''; + installPhase = '' - unitydir=$out/opt/Unity + install -Dm755 Editor/chrome-sandbox $sandbox/bin/unity-chrome-sandbox - mkdir -p $out/{bin,opt} - mkdir -p $sandbox/bin + unitydir="$out/opt/Unity/Editor" mkdir -p $unitydir + mv Editor/* $unitydir + ln -sf /var/setuid-wrappers/unity-chrome-sandbox $unitydir/chrome-sandbox + mkdir -p $out/share/applications - mkdir -p $out/share/icons/hicolor/{256x256,48x48}/apps + sed "/^Exec=/c\Exec=$out/bin/unity-editor" \ + < unity-editor.desktop \ + > $out/share/applications/unity-editor.desktop - mv Editor $unitydir - mv MonoDevelop $unitydir + install -D unity-editor-icon.png $out/share/icons/hicolor/256x256/apps/unity-editor-icon.png - echo "exec $unitydir/Editor/Unity \"\$@\"" > $out/bin/unity-editor - chmod +x $out/bin/unity-editor + mkdir -p $out/bin + makeWrapper $unitydir/Unity $out/bin/unity-editor \ + --prefix LD_PRELOAD : "$unitydir/libunity-nosuid.so" \ + --prefix PATH : "${binPath}" - sed "/^Exec=/c\Exec=$out/bin/unity-editor" < unity-editor.desktop \ - > $out/share/applications/unity-editor.desktop + developdir="$monodevelop/opt/Unity/MonoDevelop" + mkdir -p $developdir + mv MonoDevelop/* $developdir - #sed -i "/^Exec=/c\Exec=$out/bin/monodevelop-unity" unity-monodevelop.desktop - - cp unity-editor-icon.png $out/share/icons/hicolor/256x256/apps - # cp $unitydir/unity-monodevelop.png $out/share/icons/hicolor/48x48/apps - - rpath="$unitydir/Editor/Data/Tools:$unitydir/Editor:${stdenv.cc.cc}/lib" - - patchelf \ - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - $unitydir/Editor/chrome-sandbox - - cp $unitydir/Editor/chrome-sandbox $sandbox/bin - rm $unitydir/Editor/chrome-sandbox - - patchelf \ - --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --set-rpath "$rpath" \ - $unitydir/Editor/Unity - - wrapProgram $out/bin/unity-editor \ - --prefix LD_LIBRARY_PATH : "${libPath}" + mkdir -p $monodevelop/share/applications + sed "/^Exec=/c\Exec=$monodevelop/bin/unity-monodevelop" \ + < unity-monodevelop.desktop \ + > $monodevelop/share/applications/unity-monodevelop.desktop + mkdir -p $monodevelop/bin + makeWrapper $developdir/bin/monodevelop $monodevelop/bin/unity-monodevelop \ + --prefix PATH : "${developBinPath}" \ + --prefix LD_LIBRARY_PATH : "${developLibPath}" \ + --prefix MONO_GAC_PREFIX : "${developDotnetPath}" ''; dontStrip = true; - meta = { + meta = with stdenv.lib; { homepage = https://unity3d.com/; description = "Game development tool"; longDescription = '' Popular development platform for creating 2D and 3D multiplatform games and interactive experiences. ''; - license = stdenv.lib.licenses.unfree; - maintainers = with stdenv.lib.maintainers; [ jb55 ]; + license = licenses.unfree; + platforms = [ "x86_64-linux" ]; + maintainers = with maintainers; [ jb55 ]; }; } diff --git a/pkgs/development/tools/unity3d/unity-nosuid.c b/pkgs/development/tools/unity3d/unity-nosuid.c new file mode 100644 index 000000000000..26a923ab0394 --- /dev/null +++ b/pkgs/development/tools/unity3d/unity-nosuid.c @@ -0,0 +1,32 @@ +#define _GNU_SOURCE + +#include +#include +#include +#include +#include + +static const char sandbox_path[] = "/chrome-sandbox"; + +int __xstat(int ver, const char* path, struct stat* stat_buf) { + static int (*original_xstat)(int, const char*, struct stat*) = NULL; + if (original_xstat == NULL) { + int (*fun)(int, const char*, struct stat*) = dlsym(RTLD_NEXT, "__xstat"); + if (fun == NULL) { + return -1; + }; + original_xstat = fun; + }; + + int res = (*original_xstat)(ver, path, stat_buf); + if (res == 0) { + char* pos = strstr(path, sandbox_path); + if (pos != NULL && *(pos + sizeof(sandbox_path) - 1) == '\0') { + printf("Lying about chrome-sandbox access rights...\n"); + stat_buf->st_uid = 0; + stat_buf->st_gid = 0; + stat_buf->st_mode = 0104755; + }; + } + return res; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 888cce92e673..658782c8b45c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16749,7 +16749,11 @@ in ums = callPackage ../servers/ums { }; - unity3d = callPackage ../development/tools/unity3d { inherit (gnome) GConf; }; + unity3d = callPackage ../development/tools/unity3d { + stdenv = stdenv_32bit; + gcc_32bit = pkgsi686Linux.gcc; + inherit (gnome2) GConf libgnomeui gnome_vfs; + }; urbit = callPackage ../misc/urbit { }; From 281db6bbc34d1d150beed792a34487523dd0a125 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Sat, 28 May 2016 23:40:12 +0300 Subject: [PATCH 020/520] unity3d service: init --- nixos/modules/module-list.nix | 1 + nixos/modules/programs/unity3d.nix | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 nixos/modules/programs/unity3d.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index be41b5ebcdd7..6003b4b2dd6e 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -79,6 +79,7 @@ ./programs/ssh.nix ./programs/ssmtp.nix ./programs/tmux.nix + ./programs/unity3d.nix ./programs/venus.nix ./programs/wvdial.nix ./programs/xfs_quota.nix diff --git a/nixos/modules/programs/unity3d.nix b/nixos/modules/programs/unity3d.nix new file mode 100644 index 000000000000..3c0ea26d9d56 --- /dev/null +++ b/nixos/modules/programs/unity3d.nix @@ -0,0 +1,25 @@ +{ config, lib, pkgs, ... }: + +with lib; + +let cfg = config.programs.unity3d; +in { + + options = { + programs.unity3d.enable = mkEnableOption "Unity3D, a game development tool"; + }; + + config = mkIf cfg.enable { + security.setuidOwners = [{ + program = "unity-chrome-sandbox"; + source = "${pkgs.unity3d.sandbox}/bin/unity-chrome-sandbox"; + owner = "root"; + #group = "root"; + setuid = true; + #setgid = true; + }]; + + environment.systemPackages = [ pkgs.unity3d ]; + }; + +} From 84003b70b6a2e38f8445748f38970a048fe8355c Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Sun, 29 May 2016 19:29:02 +0300 Subject: [PATCH 021/520] xxkb: Split into multiple outputs I'm also adding myself as a maintainer as I'm the original author of the derivation. --- pkgs/applications/misc/xxkb/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/xxkb/default.nix b/pkgs/applications/misc/xxkb/default.nix index 8d46738327ff..6d96278356df 100644 --- a/pkgs/applications/misc/xxkb/default.nix +++ b/pkgs/applications/misc/xxkb/default.nix @@ -18,12 +18,14 @@ stdenv.mkDerivation rec { libX11 libXt libXext libXpm ] ++ stdenv.lib.optional svgSupport [ librsvg glib gdk_pixbuf pkgconfig ]; + outputs = [ "out" "man" ]; + configurePhase = '' xmkmf ${stdenv.lib.optionalString svgSupport "-DWITH_SVG_SUPPORT"} ''; preBuild = '' - makeFlagsArray=( BINDIR=$out/bin PIXMAPDIR=$out/share/xxkb XAPPLOADDIR=$out/etc/X11/app-defaults MANDIR=$out/man ) + makeFlagsArray=( BINDIR=$out/bin PIXMAPDIR=$out/share/xxkb XAPPLOADDIR=$out/etc/X11/app-defaults MANDIR=$man/share/man ) ''; installTargets = "install install.man"; @@ -32,6 +34,7 @@ stdenv.mkDerivation rec { description = "A keyboard layout indicator and switcher"; homepage = "http://xxkb.sourceforge.net/"; license = stdenv.lib.licenses.artistic2; + maintainers = with stdenv.lib.maintainers; [ rasendubi ]; platforms = stdenv.lib.platforms.linux; }; -} \ No newline at end of file +} From 5c221d0b000658832b3c99d4f3eceadfb82edf29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 30 May 2016 15:29:09 -0300 Subject: [PATCH 022/520] mate-common: init at 1.14.1 --- pkgs/desktops/mate/default.nix | 4 ++++ pkgs/desktops/mate/mate-common/default.nix | 21 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++++ 3 files changed, 29 insertions(+) create mode 100644 pkgs/desktops/mate/default.nix create mode 100644 pkgs/desktops/mate/mate-common/default.nix diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix new file mode 100644 index 000000000000..bf0050a4ec2f --- /dev/null +++ b/pkgs/desktops/mate/default.nix @@ -0,0 +1,4 @@ +{ callPackage, pkgs }: +rec { + mate-common = callPackage ./mate-common { }; +} diff --git a/pkgs/desktops/mate/mate-common/default.nix b/pkgs/desktops/mate/mate-common/default.nix new file mode 100644 index 000000000000..2f95043097d0 --- /dev/null +++ b/pkgs/desktops/mate/mate-common/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl }: + +stdenv.mkDerivation rec { + name = "mate-common-${version}"; + version = "${major-ver}.${minor-ver}"; + major-ver = "1.14"; + minor-ver = "0"; + + src = fetchurl { + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; + sha256 = "1xkcwn3w6vrgnkcw7mcvihrsqclpkbqqxs1ivj4cq0dkqrm1kdq4"; + }; + + meta = { + description = "Common files for development of MATE packages"; + homepage = "http://mate-desktop.org"; + license = stdenv.lib.licenses.gpl3; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5a05669559bd..1a44a7a4bd04 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15730,6 +15730,10 @@ in in makeOverridable makePackages extra; + mate = recurseIntoAttrs (callPackage ../desktops/mate { + callPackage = newScope pkgs.mate; + }); + pantheon = recurseIntoAttrs rec { callPackage = newScope pkgs.pantheon; pantheon-terminal = callPackage ../desktops/pantheon/apps/pantheon-terminal { }; From f5dff2cd1479d5c2ade97060dee26384ed1355f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 30 May 2016 15:30:37 -0300 Subject: [PATCH 023/520] mate-icon-theme-faenza: init at 1.14.1 --- pkgs/desktops/mate/default.nix | 1 + .../mate/mate-icon-theme-faenza/default.nix | 25 +++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/desktops/mate/mate-icon-theme-faenza/default.nix diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix index bf0050a4ec2f..8758e5a286dd 100644 --- a/pkgs/desktops/mate/default.nix +++ b/pkgs/desktops/mate/default.nix @@ -1,4 +1,5 @@ { callPackage, pkgs }: rec { mate-common = callPackage ./mate-common { }; + mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { }; } diff --git a/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix new file mode 100644 index 000000000000..941b730d7544 --- /dev/null +++ b/pkgs/desktops/mate/mate-icon-theme-faenza/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, autoreconfHook, mate, hicolor_icon_theme }: + +stdenv.mkDerivation rec { + name = "mate-icon-theme-faenza-${version}"; + version = "${major-ver}.${minor-ver}"; + major-ver = "1.14"; + minor-ver = "0"; + + src = fetchurl { + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; + sha256 = "115rbw4rbk8jqbjpbh5bfqjzsbwj5723r6cw96b1xrq1dv4gy4nr"; + }; + + nativeBuildInputs = [ autoreconfHook mate.mate-common ]; + + buildInputs = [ hicolor_icon_theme ]; + + meta = { + description = "Faenza icon theme from MATE"; + homepage = "http://mate-desktop.org"; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} From d248aef1cf49dc9750b110cc20375429167871e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 29 May 2016 13:34:22 +0200 Subject: [PATCH 024/520] gstreamer: 1.8.0 -> 1.8.1 (bugfixes) Release notes: https://gstreamer.freedesktop.org/releases/gstreamer/1.8.1.html Tested with nox-review; this change does not introduce build breakage. --- 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/python/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/ugly/default.nix | 4 ++-- pkgs/development/libraries/gstreamer/validate/default.nix | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pkgs/development/libraries/gstreamer/bad/default.nix b/pkgs/development/libraries/gstreamer/bad/default.nix index c47de95c2ad0..d907450babb3 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.0"; + name = "gst-plugins-bad-1.8.1"; 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 = "03m99igngm37653353n5d724bcqw7p6hw6xjw0i2824523fpcqqi"; + sha256 = "1xa0r98vf0sxw6s90yysvfpzs9yl07xxdci0lv2c0kvkcgrmig8b"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/base/default.nix b/pkgs/development/libraries/gstreamer/base/default.nix index 176eb404f004..ddb7f9957dcb 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.0"; + name = "gst-plugins-base-1.8.1"; 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 = "08hmg7fp519wim1fm04r7f2q2020ssdninawqsbrqjsvs70srh5b"; + sha256 = "0vxd5w7r1jqp37cw5lhyc6vj2h6z8y9v3xarwd2c6rfjbjcdxa8m"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/core/default.nix b/pkgs/development/libraries/gstreamer/core/default.nix index 531e22d755dd..95d89b411c5c 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.0"; + name = "gstreamer-1.8.1"; meta = { description = "Open source multimedia framework"; @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "${meta.homepage}/src/gstreamer/${name}.tar.xz"; - sha256 = "1p5y9bbrhywng0prmpxv29p6jsz6vd039d49bnc98p9b45532yll"; + sha256 = "01ribrzc4x9xlv6ci66w2svpqxywjc129m6f2xy9gp82jgxj4dss"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/ges/default.nix b/pkgs/development/libraries/gstreamer/ges/default.nix index 0b48d87b90a9..fd1dd6724c35 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.0"; + name = "gstreamer-editing-services-1.8.1"; 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 = "1gisdfa91kq89bsmbvb47alaxh8lpqmr6f3dzlwmf389nkandw2h"; + sha256 = "082h6r2kymgb78x6av5mxaszxlqnvr6afq935ackh914vb1anyw9"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/good/default.nix b/pkgs/development/libraries/gstreamer/good/default.nix index d14a99ce56bf..c1846cad23c0 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.0"; + name = "gst-plugins-good-1.8.1"; 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 = "0kczdvqxvl8kxiy2d7czv16jp73hv9k3nykh47ckihnv8x6i6362"; + sha256 = "0wh9mpz3zj7vbdi3xn9gjncqal86kgxn9pdg5vl98y6n45wy20r1"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/libav/default.nix b/pkgs/development/libraries/gstreamer/libav/default.nix index ad3bdb81858e..82d64ae691f6 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.0"; + name = "gst-libav-1.8.1"; 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 = "0719njp8aarhvn038pijq6dmsnli0zlg146hyfs3rsdffs4f472s"; + sha256 = "0cw9nc0079vmdp5r8hrrmglb1bzvsxy298j6yg25l6skqc493924"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/python/default.nix b/pkgs/development/libraries/gstreamer/python/default.nix index 6d018c36f569..d360ae8bc1f2 100644 --- a/pkgs/development/libraries/gstreamer/python/default.nix +++ b/pkgs/development/libraries/gstreamer/python/default.nix @@ -4,14 +4,14 @@ }: stdenv.mkDerivation rec { - name = "gst-python-1.8.0"; + name = "gst-python-1.8.1"; src = fetchurl { urls = [ "${meta.homepage}/src/gst-python/${name}.tar.xz" "mirror://gentoo/distfiles/${name}.tar.xz" ]; - sha256 = "1spn49x7yaj69df6mxh9wwcs0y3abswkfpk84njs71lzqlbzyiff"; + sha256 = "160ah5rpy4n8p1mhbf545rcv7rbq0i17xl7q5hmivf4w5yvvz8vn"; }; patches = [ ./different-path-with-pygobject.patch ]; diff --git a/pkgs/development/libraries/gstreamer/ugly/default.nix b/pkgs/development/libraries/gstreamer/ugly/default.nix index 3b17c548ba21..bfb6b8319628 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.0"; + name = "gst-plugins-ugly-1.8.1"; 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 = "137b6kqykh5nwbmiv28nn1pc1d2x2rb2xxg382pc9pa9gpxpyrak"; + sha256 = "1kj6jijhwdknv362mcnhjm7zbcbhs0i2m3pvsdz7w3g67fd6lrcf"; }; outputs = [ "dev" "out" ]; diff --git a/pkgs/development/libraries/gstreamer/validate/default.nix b/pkgs/development/libraries/gstreamer/validate/default.nix index 02ce69af907a..47a401b9011c 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.0"; + name = "gst-validate-1.8.1"; 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 = "1pcy9pfffyk6xiw6aq38kbv7k24x2rljdy8fabjfy1abpmvvfrkn"; + sha256 = "1gycl6bbrf9ryis6wdinv4zi7552lz9izw4ram8xr8nc2k00icm9"; }; outputs = [ "dev" "out" ]; From 0571c2e95e45ca9deb18226a76b5d31f4ad60fa2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Mon, 30 May 2016 21:08:09 +0100 Subject: [PATCH 025/520] httrack: 3.48.21 -> 3.48.22 --- pkgs/tools/backup/httrack/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/backup/httrack/default.nix b/pkgs/tools/backup/httrack/default.nix index 8860fbc5dbcd..e7ebdb3fcddf 100644 --- a/pkgs/tools/backup/httrack/default.nix +++ b/pkgs/tools/backup/httrack/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, zlib, openssl, libiconv }: stdenv.mkDerivation rec { - version = "3.48.21"; + version = "3.48.22"; name = "httrack-${version}"; src = fetchurl { url = "http://mirror.httrack.com/httrack-${version}.tar.gz"; - sha256 = "10p4gf8y9h7mxkqlbs3hqgvmvbgvcbax8jp1whbw4yidwahn06w7"; + sha256 = "13y4m4rhvmgbbpc3lig9hzmzi86a5fkyi79sz1ckk4wfnkbim0xj"; }; buildInputs = [ zlib openssl ] ++ stdenv.lib.optional stdenv.isDarwin libiconv; From 3a876edc951b1e1e3ca6b9fda1053f7a02fa7266 Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Mon, 30 May 2016 22:32:23 +0200 Subject: [PATCH 026/520] sbcl: 1.3.5 -> 1.3.6 --- 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 893b6efea77a..e9a1624df1d8 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.5"; + version = "1.3.6"; src = fetchurl { url = "mirror://sourceforge/project/sbcl/sbcl/${version}/${name}-source.tar.bz2"; - sha256 = "0p3f9bvwdcl84n1l6imww547bdbfsbkvad8iad43jcb2hrpy3wf8"; + sha256 = "1ndha72ji30qkq3rq76sp0yrka0679agg97x9imda2pyv0dsq5zh"; }; patchPhase = '' From 53dd68651aaf41f5922d3bdfaeee5182579b4a53 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 30 May 2016 22:15:36 +0300 Subject: [PATCH 027/520] wesnoth: 1.12.5 -> 1.12.6 --- pkgs/games/wesnoth/default.nix | 20 ++++++++++---------- pkgs/top-level/all-packages.nix | 4 +--- 2 files changed, 11 insertions(+), 13 deletions(-) diff --git a/pkgs/games/wesnoth/default.nix b/pkgs/games/wesnoth/default.nix index c7a81452f041..46dd24acbb7b 100644 --- a/pkgs/games/wesnoth/default.nix +++ b/pkgs/games/wesnoth/default.nix @@ -1,25 +1,25 @@ -{ stdenv, fetchurl, cmake, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf, pango -, gettext, zlib, boost, freetype, libpng, pkgconfig, lua, dbus, fontconfig, libtool -, fribidi, asciidoc, libpthreadstubs, libXdmcp, libxshmfence, libvorbis }: +{ stdenv, fetchurl, cmake, pkgconfig, SDL, SDL_image, SDL_mixer, SDL_net, SDL_ttf +, pango, gettext, boost, freetype, libvorbis, fribidi, dbus, libpng, pcre +, enableTools ? false +}: stdenv.mkDerivation rec { pname = "wesnoth"; - version = "1.12.5"; + version = "1.12.6"; name = "${pname}-${version}"; src = fetchurl { url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2"; - sha256 = "07d8ms9ayswg2g530p0zwmz3d77zv68l6nmc718iq9sbv90av6jr"; + sha256 = "0kifp6g1dsr16m6ngjq2hx19h851fqg326ps3krnhpyix963h3x5"; }; nativeBuildInputs = [ cmake pkgconfig ]; - buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf pango gettext zlib - boost fribidi freetype libpng lua libpthreadstubs libXdmcp - dbus fontconfig libtool libxshmfence libvorbis ]; + buildInputs = [ SDL SDL_image SDL_mixer SDL_net SDL_ttf pango gettext boost + libvorbis fribidi dbus libpng pcre ]; - cmakeFlags = [ "-DENABLE_STRICT_COMPILATION=FALSE" ]; # newer gcc problems http://gna.org/bugs/?21030 + cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ]; enableParallelBuilding = true; @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { homepage = http://www.wesnoth.org/; license = licenses.gpl2; - maintainers = [ maintainers.kkallio ]; + maintainers = with maintainers; [ kkallio abbradar ]; platforms = platforms.linux; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 473999b1a58c..edee7591b717 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15437,9 +15437,7 @@ in warzone2100 = callPackage ../games/warzone2100 { }; - wesnoth = callPackage ../games/wesnoth { - lua = lua5; - }; + wesnoth = callPackage ../games/wesnoth { }; widelands = callPackage ../games/widelands { lua = lua5_1; From d16643c2dcba409ea47d570eef189fc18963ce4f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Mon, 30 May 2016 23:13:05 +0300 Subject: [PATCH 028/520] wesnoth-dev: init at 1.13.4 --- pkgs/games/wesnoth/dev.nix | 41 +++++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 43 insertions(+) create mode 100644 pkgs/games/wesnoth/dev.nix diff --git a/pkgs/games/wesnoth/dev.nix b/pkgs/games/wesnoth/dev.nix new file mode 100644 index 000000000000..84b135a5df8e --- /dev/null +++ b/pkgs/games/wesnoth/dev.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, cmake, pkgconfig, SDL2, SDL2_image, SDL2_mixer, SDL2_net, SDL2_ttf +, pango, gettext, boost, freetype, libvorbis, fribidi, dbus, libpng, pcre +, enableTools ? false +}: + +stdenv.mkDerivation rec { + pname = "wesnoth"; + version = "1.13.4"; + + name = "${pname}-${version}"; + + src = fetchurl { + url = "mirror://sourceforge/sourceforge/${pname}/${name}.tar.bz2"; + sha256 = "1ys25ijwphld11002cad9iz5mc5rqazmjn8866l8gcdfrrhk943s"; + }; + + nativeBuildInputs = [ cmake pkgconfig ]; + + buildInputs = [ SDL2 SDL2_image SDL2_mixer SDL2_net SDL2_ttf pango gettext boost + libvorbis fribidi dbus libpng pcre ]; + + cmakeFlags = [ "-DENABLE_TOOLS=${if enableTools then "ON" else "OFF"}" ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "The Battle for Wesnoth, a free, turn-based strategy game with a fantasy theme"; + longDescription = '' + The Battle for Wesnoth is a Free, turn-based tactical strategy + game with a high fantasy theme, featuring both single-player, and + online/hotseat multiplayer combat. Fight a desperate battle to + reclaim the throne of Wesnoth, or take hand in any number of other + adventures. + ''; + + homepage = http://www.wesnoth.org/; + license = licenses.gpl2; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index edee7591b717..4c635f45bac8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15439,6 +15439,8 @@ in wesnoth = callPackage ../games/wesnoth { }; + wesnoth-dev = callPackage ../games/wesnoth/dev.nix { }; + widelands = callPackage ../games/widelands { lua = lua5_1; }; From b767e999233fec29cb4344f4970edc2b2bec4836 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Mon, 30 May 2016 17:56:26 -0300 Subject: [PATCH 029/520] aria2: 1.22.0 -> 1.23.0 --- pkgs/tools/networking/aria2/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix index 01c6500b1439..106dcf2f184c 100644 --- a/pkgs/tools/networking/aria2/default.nix +++ b/pkgs/tools/networking/aria2/default.nix @@ -5,14 +5,15 @@ stdenv.mkDerivation rec { name = "aria2-${version}"; - version = "1.22.0"; + version = "1.23.0"; src = fetchurl { url = "https://github.com/tatsuhiro-t/aria2/releases/download/release-${version}/${name}.tar.xz"; - sha256 = "12agwdvvkr34wqhyyfp418dj0k7nbr297qmcd3wj5kkn7brv6gxc"; + sha256 = "14qz7686zxnhbaqj6l1hqpkykhpygm74h2mzwhh13gqmcj38alaq"; }; nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ openssl c-ares libxml2 sqlite zlib libssh2 ] ++ stdenv.lib.optional stdenv.isDarwin Security; @@ -25,6 +26,6 @@ stdenv.mkDerivation rec { description = "A lightweight, multi-protocol, multi-source, command-line download utility"; maintainers = with maintainers; [ koral jgeerds ]; license = licenses.gpl2Plus; - platforms = platforms.linux; + platforms = platforms.unix; }; } From e0d03c43bf2deb01b27a61154560df8576f305eb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 30 May 2016 16:29:41 -0500 Subject: [PATCH 030/520] qt56: make symlink farm for CMake builds like QMake --- .../libraries/qt-5/5.6/default.nix | 4 +- .../libraries/qt-5/5.6/qmake-hook.sh | 101 ++---------------- .../libraries/qt-5/5.6/qtbase/default.nix | 4 +- .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 79 ++++++++++++++ .../libraries/qt-5/5.6/setup-hook.sh | 7 ++ 5 files changed, 98 insertions(+), 97 deletions(-) create mode 100644 pkgs/development/libraries/qt-5/5.6/setup-hook.sh diff --git a/pkgs/development/libraries/qt-5/5.6/default.nix b/pkgs/development/libraries/qt-5/5.6/default.nix index 4aada4224dac..0d095517c568 100644 --- a/pkgs/development/libraries/qt-5/5.6/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/default.nix @@ -52,6 +52,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 {}); @@ -111,7 +113,7 @@ let ]; makeQtWrapper = makeSetupHook { deps = [ makeWrapper ]; } ./make-qt-wrapper.sh; - qmakeHook = makeSetupHook { substitutions = { qt_dev = qtbase.dev; lndir = pkgs.xorg.lndir; }; } ./qmake-hook.sh; + qmakeHook = makeSetupHook { deps = [ self.qtbase ]; } ./qmake-hook.sh; }; diff --git a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh index 9fd4735209ce..696b4ea8dad3 100644 --- a/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/qmake-hook.sh @@ -1,48 +1,14 @@ -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 - - 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" -} +if [ -z "$dontUseQmakeConfigure" -a -z "$configurePhase" ]; then + configurePhase=qmakeConfigurePhase +fi _qtModuleMultioutDevsPre() { # We cannot simply set these paths in configureFlags because libQtCore retains @@ -65,63 +31,12 @@ _qtModuleMultioutDevsPost() { mkdir -p "${!outputDev}/$(dirname "$file")" mv "${!outputLib}/$file" "${!outputDev}/$file" done - - # Ensure that CMake can find the shared libraries - mkdir -p "${!outputDev}/lib" - @lndir@/bin/lndir -silent "${!outputLib}/lib" "${!outputDev}/lib" fi popd 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" <> "$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! + postHooks+=(_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 +} + +qt5LinkModuleDir @out@ "lib" + +qt5LinkModuleDir @dev@ "bin" +qt5LinkModuleDir @dev@ "include" +qt5LinkModuleDir @dev@ "lib" +qt5LinkModuleDir @dev@ "mkspecs" +qt5LinkModuleDir @dev@ "share" diff --git a/pkgs/development/libraries/qt-5/5.6/setup-hook.sh b/pkgs/development/libraries/qt-5/5.6/setup-hook.sh new file mode 100644 index 000000000000..212ac903eeeb --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/setup-hook.sh @@ -0,0 +1,7 @@ +qt5LinkModuleDir @out@ "lib" + +qt5LinkModuleDir @dev@ "bin" +qt5LinkModuleDir @dev@ "include" +qt5LinkModuleDir @dev@ "lib" +qt5LinkModuleDir @dev@ "mkspecs" +qt5LinkModuleDir @dev@ "share" From 7299f68a05c08714d4a32ee759ed264b4b459f6f Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 30 May 2016 16:30:06 -0500 Subject: [PATCH 031/520] qbittorrent: don't use qmakeHook Qt now configures QMake for all builds so there is no need to invoke `qmakeHook` just to get a working `qmake`. --- pkgs/applications/networking/p2p/qbittorrent/default.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/networking/p2p/qbittorrent/default.nix b/pkgs/applications/networking/p2p/qbittorrent/default.nix index 77624c0d9383..78f2c79923a4 100644 --- a/pkgs/applications/networking/p2p/qbittorrent/default.nix +++ b/pkgs/applications/networking/p2p/qbittorrent/default.nix @@ -17,15 +17,13 @@ stdenv.mkDerivation rec { sha256 = "1f4impsjck8anl39pwypsck7j6xw0dl18qd0b4xi23r45jvx9l60"; }; - nativeBuildInputs = [ pkgconfig which qmakeHook ]; + nativeBuildInputs = [ pkgconfig which ]; buildInputs = [ boost libtorrentRasterbar qt5.qtbase qt5.qttools ] ++ optional guiSupport dbus_libs; - dontUseQmakeConfigure = true; - preConfigure = '' - export QT_QMAKE="$qtOut/bin" + export QT_QMAKE=$(dirname "$QMAKE") ''; configureFlags = [ From a1facf33625de78723352ee36f9d18dfab9f5993 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 30 May 2016 16:30:58 -0500 Subject: [PATCH 032/520] qtox: run pre- and post-install hooks Fixes #15744. --- .../networking/instant-messengers/qtox/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index d244c4d11c41..50017de132c9 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -43,9 +43,13 @@ stdenv.mkDerivation rec { ''; installPhase = '' + runHook preInstall + mkdir -p $out/bin cp qtox $out/bin wrapQtProgram $out/bin/qtox + + runHook postInstall ''; enableParallelBuilding = true; From 0ef2a159792052338e762c58ce3643d924615a6d Mon Sep 17 00:00:00 2001 From: David Guibert Date: Sun, 8 May 2016 19:07:11 +0200 Subject: [PATCH 033/520] rclone: init at 1.29 --- pkgs/top-level/go-packages.nix | 107 +++++++++++++++++++++++++++++---- 1 file changed, 96 insertions(+), 11 deletions(-) diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e95622c053d2..27043c9516ba 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -305,23 +305,16 @@ let }; aws-sdk-go = buildFromGitHub { - #rev = "a28ecdc9741b7905b5198059c94aed20868ffc08"; - rev = "127313c1b41e534a0456a68b6b3a16712dacb35d"; + rev = "d85fa529a99a833067e11c0a838b9db7a5d5ea71"; + version = "1.1.24"; owner = "aws"; repo = "aws-sdk-go"; - #sha256 = "1kgnp5f5c5phmihh8krar9rbkfg0lk73imjhjvkhxirhw04g3n5j"; - sha256 = "0gd4nzv5jl02qi7g0y8lv6jadk0p52bpbl1r7pfgy8mn1vfxs37m"; + sha256 = "0lh3z3l551siqwrwvl9ky820ckpsvm8zpnb9p6622cnf6xkq533x"; goPackageAliases = [ "github.com/awslabs/aws-sdk-go" ]; buildInputs = [ gucumber testify ]; - propagatedBuildInputs = [ go-ini ]; - - preBuild = '' - pushd go/src/$goPackagePath - make generate - popd - ''; + propagatedBuildInputs = [ ini go-jmespath tools]; }; azure-sdk-for-go = buildFromGitHub { @@ -737,6 +730,14 @@ let disabled = !isGo14; }; + dropbox = buildFromGitHub { + rev = "58f839b21094d5e0af7caf613599830589233d20"; + owner = "stacktic"; + repo = "dropbox"; + sha256 = "1psmxpnn40ri9bgjvivljnd4p977f635mh3w7m5mglxxgc9392pi"; + propagatedBuildInputs = [ oauth2 net ]; + }; + cache = buildFromGitHub { rev = "b51b08cb6cf889deda6c941a5205baecfd16f3eb"; owner = "odeke-em"; @@ -760,6 +761,14 @@ let }; }; + ewma = buildFromGitHub { + rev = "2f8aa9741ab4b5b80945c750b871131b88ef5b7f"; + version = "1.0"; + owner = "VividCortex"; + repo = "ewma"; + sha256 = "0g1pv0zyjkriqmwc8iqv437j0f450sk8g48jycmv78ziwy7wf92h"; + }; + exercism = buildFromGitHub { rev = "v2.2.1"; name = "exercism"; @@ -1123,6 +1132,14 @@ let sha256 = "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l"; }; + goconfig = buildFromGitHub { + rev = "5f601ca6ef4d5cea8d52be2f8b3a420ee4b574a5"; + version = "20160216"; + owner = "Unknwon"; + repo = "goconfig"; + sha256 = "0kgmxvkkb8qa63k6wlm13c6dq203gb3lx1klhswx6cg0nfjp9z9j"; + }; + gocryptfs = buildFromGitHub { rev = "v0.5"; owner = "rfjakob"; @@ -1444,6 +1461,15 @@ let dontStrip = true; }; + go-acd = buildFromGitHub { + rev = "0bd73ce86fffd8afeafe4e46f419f1a8ce6324b9"; + version = "20160130"; + owner = "ncw"; + repo = "go-acd"; + sha256 = "1vgcglk2pf325hs1319fk73akzi9hd75kwhjq0j4s6l1p7ybj0l7"; + propagatedBuildInputs = [ go-querystring ]; + }; + go-assert = buildGoPackage rec { rev = "e17e99893cb6509f428e1728281c2ad60a6b31e3"; name = "assert-${stdenv.lib.strings.substring 0 7 rev}"; @@ -1658,6 +1684,14 @@ let sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; }; + go-httpclient = buildFromGitHub { + rev = "63fe23f7434723dc904c901043af07931f293c47"; + version = "20151014"; + owner = "mreiferson"; + repo = "go-httpclient"; + sha256 = "1xp8n4dkvpdphzjj3f547kgpclf5nzci9w09m95bci7pa7nax0hf"; + }; + go-humanize = buildFromGitHub { rev = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0"; owner = "dustin"; @@ -1697,6 +1731,13 @@ let goPackageAliases = [ "github.com/square/go-jose" ]; }; + go-jmespath = buildFromGitHub { + rev = "0.2.2"; + owner = "jmespath"; + repo = "go-jmespath"; + sha256 = "0f4j0m44limnjd6q5fk152g6jq2a5cshcdms4p3a1br8pl9wp5fb"; + }; + go-liblzma = buildFromGitHub { rev = "e74be71c3c60411922b5424e875d7692ea638b78"; version = "2016-01-01"; @@ -2240,6 +2281,14 @@ let subPackages = [ "client" ]; }; + ini = buildFromGitHub { + rev = "12f418cc7edc5a618a51407b7ac1f1f512139df3"; + version = "1.11.0"; + owner = "go-ini"; + repo = "ini"; + sha256 = "0j13iaag3vjb9p4b6nly1y7rw14akfdkv4mkzbj9sil2s75wsx7p"; + }; + eckardt.influxdb-go = buildGoPackage rec { rev = "8b71952efc257237e077c5d0672e936713bad38f"; name = "influxdb-go-${stdenv.lib.strings.substring 0 7 rev}"; @@ -3448,6 +3497,17 @@ let sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; }; + rclone = buildFromGitHub { + rev = "157d7d45f501238ffb891a78b3eaeda81a42861c"; + version = "1.29"; + owner = "ncw"; + repo = "rclone"; + sha256 = "1mwpf6a27c4lcyrrpyas1k17ijs4a6q29048hhh1hg791f781b21"; + + buildInputs = [ config pflag open-golang oauth2 aws-sdk-go hashicorp.aws-sdk-go errwrap go-httpclient tb ewma swift + goconfig go-acd google-api-go-client dropbox ]; + }; + redigo = buildFromGitHub { rev = "535138d7bcd717d6531c701ef5933d98b1866257"; owner = "garyburd"; @@ -3751,6 +3811,23 @@ let text ]; }; + syncthing-protocol011 = buildFromGitHub { + rev = "84365882de255d2204d0eeda8dee288082a27f98"; + version = "2015-08-28"; + owner = "syncthing"; + repo = "protocol"; + sha256 = "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx"; + propagatedBuildInputs = [ go-lz4 logger luhn xdr text ]; + }; + + swift = buildFromGitHub { + rev = "aaed45e6d8b38e37e6085a8e5541a11496f160bd"; + version = "20160216"; + owner = "ncw"; + repo = "swift"; + sha256 = "1sh4lnqh934g4jws3g7vh0w7n882jwybc95jgnnpyk8k1zmifbv2"; + }; + tablewriter = buildFromGitHub { rev = "cca8bbc0798408af109aaaa239cbd2634846b340"; version = "2016-01-15"; @@ -3760,6 +3837,14 @@ let propagatedBuildInputs = [ mattn.go-runewidth ]; }; + tb = buildFromGitHub { + rev = "19f4c3d79d2bd67d0911b2e310b999eeea4454c1"; + version = "20151208"; + owner = "tsenart"; + repo = "tb"; + sha256 = "148vy4xij5qm8dq5plyczx2wbpi4gpg8ksr5r3b4m8j0z1kjws8y"; + }; + termbox-go = buildGoPackage rec { rev = "9aecf65084a5754f12d27508fa2e6ed56851953b"; name = "termbox-go-${stdenv.lib.strings.substring 0 7 rev}"; From c09bee391a966d19aae33c5a512a8d6d93912d3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Tue, 31 May 2016 10:18:12 +0300 Subject: [PATCH 034/520] Slight improvements to neverball package --- pkgs/games/neverball/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/pkgs/games/neverball/default.nix b/pkgs/games/neverball/default.nix index 61f8b1c81e71..0006f895809b 100644 --- a/pkgs/games/neverball/default.nix +++ b/pkgs/games/neverball/default.nix @@ -13,8 +13,8 @@ stdenv.mkDerivation rec { dontPatchElf = true; patchPhase = '' - sed -i -e 's@\./data@'$out/data@ share/base_config.h Makefile - sed -i -e 's@\./locale@'$out/locale@ share/base_config.h Makefile + sed -i -e 's@\./data@'$out/share/neverball/data@ share/base_config.h Makefile + sed -i -e 's@\./locale@'$out/share/neverball/locale@ share/base_config.h Makefile sed -i -e 's@-lvorbisfile@-lvorbisfile -lX11 -lgcc_s@' Makefile ''; @@ -22,13 +22,15 @@ stdenv.mkDerivation rec { preConfigure = "export HOME=$TMPDIR"; installPhase = '' - mkdir -p $out/bin $out - cp -R data locale $out + mkdir -p $out/bin $out/share/neverball + cp -R data locale $out/share/neverball cp neverball $out/bin cp neverputt $out/bin cp mapc $out/bin ''; + enableParallelBuilding = true; + meta = { homepage = http://neverball.org/; description = "Tilt the floor to roll a ball"; From 65ccda5b964557190193be8a246eba1819e86561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Wed, 28 Oct 2015 10:15:15 +0100 Subject: [PATCH 035/520] zbar: fix camera support (enables 'zbarcam' tool) Add Debian patches (with fetchpatch) to make things work. Among other things, the patches port the application from V4L to V4L2. This increases the closure size from 729 MiB to 730 MiB. --- pkgs/tools/graphics/zbar/default.nix | 29 ++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/graphics/zbar/default.nix b/pkgs/tools/graphics/zbar/default.nix index 48e3316a4a24..2751da42a4c3 100644 --- a/pkgs/tools/graphics/zbar/default.nix +++ b/pkgs/tools/graphics/zbar/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, imagemagickBig, pkgconfig, python, pygtk, perl -, libX11, libv4l, qt4, lzma, gtk2 +, libX11, libv4l, qt4, lzma, gtk2, fetchpatch, autoreconfHook }: stdenv.mkDerivation rec { @@ -11,11 +11,32 @@ stdenv.mkDerivation rec { sha256 = "1imdvf5k34g1x2zr6975basczkz3zdxg6xnci50yyp5yvcwznki3"; }; + patches = [ + (fetchpatch { + name = "0001-Description-Linux-2.6.38-and-later-do-not-support-th.patch"; + url = "https://git.recluse.de/raw/debian/pkg-zbar.git/35182c3ac2430c986579b25f1826fe1b7dfd15de/debian!patches!0001-Description-Linux-2.6.38-and-later-do-not-support-th.patch"; + sha256 = "1zy1wdyhmpw877pv6slfhjy0c6dm0gxli0i4zs1akpvh052j4a69"; + }) + (fetchpatch { + name = "python-zbar-import-fix-am.patch"; + url = "https://git.recluse.de/raw/debian/pkg-zbar.git/1f15f52e53ee0bf7b4761d673dc859c6b10e6be5/debian!patches!python-zbar-import-fix-am.patch"; + sha256 = "15xx9ms137hvwpynbgvbc6zgmmzfaf7331rfhls24rgbnywbgirx"; + }) + (fetchpatch { + name = "new_autotools_build_fix.patch"; + url = "https://git.recluse.de/raw/debian/pkg-zbar.git/2c641cc94d4f728421ed750d95d6d1c2d06a534d/debian!patches!new_autotools_build_fix.patch"; + sha256 = "0jhl5jnnjhfdv51xqimkbkdvj8d38z05fhd11yx1sgmw82f965s3"; + }) + (fetchpatch { + name = "threading-fix.patch"; + url = "https://git.recluse.de/raw/debian/pkg-zbar.git/d3eba6e2c3acb0758d19519015bf1a53ffb8e645/debian!patches!threading-fix.patch"; + sha256 = "1jjgrx9nc7788vfriai4z26mm106sg5ylm2w5rdyrwx7420x1wh7"; + }) + ]; + buildInputs = [ imagemagickBig pkgconfig python pygtk perl libX11 - libv4l qt4 lzma gtk2 ]; - - configureFlags = ["--disable-video"]; + libv4l qt4 lzma gtk2 autoreconfHook ]; meta = with stdenv.lib; { description = "Bar code reader"; From 45f9fd8c51313f9100ebfbcd2147700dec19364a Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Tue, 31 May 2016 10:18:37 +0200 Subject: [PATCH 036/520] libmcrypt: Fixed missing nmedit on darwin (#15775) --- pkgs/development/libraries/libmcrypt/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libmcrypt/default.nix b/pkgs/development/libraries/libmcrypt/default.nix index afa661617318..2ce11b998a1a 100644 --- a/pkgs/development/libraries/libmcrypt/default.nix +++ b/pkgs/development/libraries/libmcrypt/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, disablePosixThreads ? false }: +{ stdenv, fetchurl, darwin, disablePosixThreads ? false }: with stdenv.lib; @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { sha256 = "0gipgb939vy9m66d3k8il98rvvwczyaw2ixr8yn6icds9c3nrsz4"; }; - buildInputs = []; + buildInputs = optional stdenv.isDarwin darwin.cctools; configureFlags = optional disablePosixThreads [ "--disable-posix-threads" ]; @@ -19,5 +19,6 @@ stdenv.mkDerivation rec { description = "Replacement for the old crypt() package and crypt(1) command, with extensions"; homepage = http://mcrypt.sourceforge.net; license = "GPL"; + platforms = platforms.all; }; } From 36cc45782be55b7d9221f0c4e95f3cba1a5998df Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Tue, 31 May 2016 12:34:59 +0200 Subject: [PATCH 037/520] Enabled osx on travis (#15855) --- .travis.yml | 19 ++++++++++++++----- maintainers/scripts/travis-nox-review-pr.sh | 6 +++++- 2 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 402347d5eda6..bfd7ca34f622 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,16 @@ -language: python -python: "3.4" -sudo: required -dist: trusty -before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix +matrix: + include: + - os: linux + language: python + python: "3.4" + sudo: required + dist: trusty + before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix + - os: osx + language: generic + osx_image: xcode7.3 + before_install: + - brew upgrade && brew install python + - ./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 diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index db0f449c92af..02e9cbefb34e 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -27,7 +27,11 @@ elif [[ $1 == build ]]; then nix-build nixos/release.nix -A options echo "=== Checking tarball creation" - nix-build pkgs/top-level/release.nix -A tarball + if [[ $TRAVIS_OS_NAME == "osx" ]]; then + echo "Skipped, as not working on darwin" + else + nix-build pkgs/top-level/release.nix -A tarball + fi if [[ $TRAVIS_PULL_REQUEST == false ]]; then echo "=== Not a pull request" From 24afbd4c06594fca4ac965fa2d1021984e63a1f7 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:05:41 +0200 Subject: [PATCH 038/520] python35Packages.requests_toolbelt: 0.6.0 -> 0.6.2 --- 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 c17f74e01f3f..b96bb7e29289 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19234,12 +19234,12 @@ in modules // { }; requests_toolbelt = buildPythonPackage rec { - version = "0.6.0"; + version = "0.6.2"; name = "requests-toolbelt-${version}"; src = pkgs.fetchurl { url = "https://github.com/sigmavirus24/requests-toolbelt/archive/${version}.tar.gz"; - sha256 = "192pz6i1fp8vc1qasg6ccxpdsmpbqi3fqf5bgx3vpadp5x0rrz4f"; + sha256 = "0ds1b2qx0nx9bqj1sqgr4lmanb4hpchmylp1hml1l0p71qi5ha0r"; }; propagatedBuildInputs = with self; [ requests2 ]; From 3520895295e2f0e67e78a654f17cfc04886276da Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:06:05 +0200 Subject: [PATCH 039/520] python35Packages.httpauth: 0.2 -> 0.3 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index b96bb7e29289..91472da2b0af 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -6549,12 +6549,12 @@ in modules // { }; httpauth = buildPythonPackage rec { - version = "0.2"; + version = "0.3"; name = "httpauth-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/h/httpauth/${name}.tar.gz"; - sha256 = "294029b5dfed27bca5746a31e3ffb5ed99268761536705e8bbd44231b7ca15ec"; + sha256 = "0qas7876igyz978pgldp5r7n7pis8n4vf0v87gxr9l7p7if5lr3l"; }; doCheck = false; From 9711754da9d09034e132100e33d59db7706de46b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 15 May 2016 13:06:16 +0200 Subject: [PATCH 040/520] mdp: 1.0.5 -> 1.0.6 --- pkgs/applications/misc/mdp/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/mdp/default.nix b/pkgs/applications/misc/mdp/default.nix index 45b0271f693e..ad3fbad8622b 100644 --- a/pkgs/applications/misc/mdp/default.nix +++ b/pkgs/applications/misc/mdp/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, ncurses }: stdenv.mkDerivation rec { - version = "1.0.5"; + version = "1.0.6"; name = "mdp-${version}"; src = fetchurl { url = "https://github.com/visit1985/mdp/archive/${version}.tar.gz"; - sha256 = "0ckd9k5571zc7pzxdx84gv8k103d5qp49f2i477a395fy2pnq4m8"; + sha256 = "1m6qbqr9kfj27qf27gkgqr1jpf7z0xym71w61pnjwsmcryp0db19"; }; makeFlags = "PREFIX=$(out)"; From 5c439ac2c33e43bb6f4c56cf0af477eff1263e77 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 31 May 2016 12:48:23 +0100 Subject: [PATCH 041/520] perlPackages.TestCommand: init at 0.11 --- pkgs/top-level/perl-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 5c4d28ee200f..044f1fd6c225 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12046,6 +12046,19 @@ let self = _self // overrides; _self = with self; { }; }; + TestCommand = buildPerlPackage { + name = "Test-Command-0.11"; + src = fetchurl { + url = mirror://cpan/authors/id/D/DA/DANBOO/Test-Command-0.11.tar.gz; + sha256 = "0cwm3c4d49mdrbm6vgh78b3x8mk730l0zg8i7xb9z8bkx9pzr8r8"; + }; + meta = { + homepage = https://github.com/danboo/perl-test-command; + description = "Test routines for external commands "; + license = with stdenv.lib.licenses; [ artistic1 gpl1 ]; + }; + }; + TestCPANMeta = buildPerlPackage { name = "Test-CPAN-Meta-0.23"; src = fetchurl { From b50dd8e85f95b5bdd831f0935a9046d4a725bf18 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 31 May 2016 12:48:40 +0100 Subject: [PATCH 042/520] feh: 2.15.2 -> 2.15.4 --- pkgs/applications/graphics/feh/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 43aa8bfa1f58..2d7b88742466 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -1,18 +1,19 @@ { stdenv, makeWrapper, fetchurl, xlibsWrapper, imlib2, libjpeg, libpng -, libXinerama, curl, libexif }: +, libXinerama, curl, libexif, perlPackages }: stdenv.mkDerivation rec { - name = "feh-2.15.2"; + name = "feh-2.15.4"; src = fetchurl { url = "http://feh.finalrewind.org/${name}.tar.bz2"; - sha256 = "0bnfk50y2l5zkr292l4yyws1m7ibdmr398vxj7c0djh965frpj1q"; + sha256 = "b8a9c29f37b1349228b19866f712b677e2a150837bc46be8c5d6348dd4850758"; }; outputs = [ "out" "doc" ]; nativeBuildInputs = [ makeWrapper ]; - buildInputs = [ xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ]; + buildInputs = [ xlibsWrapper imlib2 libjpeg libpng libXinerama curl libexif ] + ++ stdenv.lib.optional doCheck [ perlPackages.TestCommand perlPackages.TestHarness ]; preBuild = '' makeFlags="PREFIX=$out exif=1" @@ -23,6 +24,11 @@ stdenv.mkDerivation rec { --add-flags '--theme=feh' ''; + checkPhase = '' + PERL5LIB="${perlPackages.TestCommand}/lib/perl5/site_perl" make test + ''; + doCheck = true; + meta = { description = "A light-weight image viewer"; homepage = https://derf.homelinux.org/projects/feh/; From d47dca41cedfba4b700f872b0a01a03ba6d31c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 31 May 2016 12:59:24 +0100 Subject: [PATCH 043/520] try using nox from nixpkgs (#15857) * try using nox from nixpkgs * release.nix: block on nox since otherwise travis-ci will fail hard --- .travis.yml | 8 ++------ maintainers/scripts/travis-nox-review-pr.sh | 6 +++--- pkgs/top-level/release.nix | 4 ++++ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index bfd7ca34f622..1b607991f033 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,12 @@ matrix: include: - os: linux - language: python - python: "3.4" + language: generic sudo: required dist: trusty - before_install: ./maintainers/scripts/travis-nox-review-pr.sh nix - os: osx language: generic osx_image: xcode7.3 - before_install: - - brew upgrade && brew install python - - ./maintainers/scripts/travis-nox-review-pr.sh nix +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 diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 02e9cbefb34e..ffe817bc8bea 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -17,9 +17,9 @@ if [[ $1 == nix ]]; then 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..." - git clone -q https://github.com/madjar/nox - pip --quiet install -e nox + nix-build -A nox '' elif [[ $1 == build ]]; then source $HOME/.nix-profile/etc/profile.d/nix.sh @@ -38,7 +38,7 @@ elif [[ $1 == build ]]; then else echo "=== Checking PR" - if ! nox-review pr ${TRAVIS_PULL_REQUEST}; then + 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 diff --git a/pkgs/top-level/release.nix b/pkgs/top-level/release.nix index 2211241ed3dd..5870f7abe78c 100644 --- a/pkgs/top-level/release.nix +++ b/pkgs/top-level/release.nix @@ -49,6 +49,10 @@ let jobs.python3.x86_64-linux jobs.python3.i686-linux jobs.python3.x86_64-darwin + # Needed by travis-ci to test PRs + jobs.nox.i686-linux + jobs.nox.x86_64-linux + jobs.nox.x86_64-darwin # Ensure that X11/GTK+ are in order. jobs.thunderbird.x86_64-linux jobs.thunderbird.i686-linux From 1f73d89893c78f00c84ce66619f7c586eda51a97 Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Tue, 31 May 2016 08:20:31 -0400 Subject: [PATCH 044/520] man: use man-old on non-Linux platforms This is a stopgap "fix". See #15849 for more discussion. --- pkgs/top-level/aliases.nix | 1 - pkgs/top-level/all-packages.nix | 5 +++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 3f39248d01d0..6a6ec785d7f2 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -65,7 +65,6 @@ doNotDisplayTwice rec { lttngUst = lttng-ust; # added 2014-07-31 manpages = man-pages; # added 2015-12-06 man_db = man-db; # added 2016-05 - man = man-db; # added 2016-05 midoriWrapper = midori; # added 2015-01 mlt-qt5 = qt5.mlt; # added 2015-12-19 module_init_tools = kmod; # added 2016-04-22 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dbc671c985e7..5db2afb0d827 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2387,6 +2387,11 @@ in makemkv = callPackage ../applications/video/makemkv { }; + # See https://github.com/NixOS/nixpkgs/issues/15849. I'm switching on isLinux because + # it looks like gnulib is broken on non-linux, so it seems likely that this would cause + # trouble on bsd and/or cygwin as well. + man = if stdenv.isLinux then man-db else man-old; + man-old = callPackage ../tools/misc/man { }; man-db = callPackage ../tools/misc/man-db { }; From 27899df2f5ccc08203bd3beef25b6e1978e80464 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Tue, 31 May 2016 14:27:02 +0200 Subject: [PATCH 045/520] pinta: unbreak after multiple-outputs change Missing ".out" on the gtk attribute. --- pkgs/applications/graphics/pinta/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/pinta/default.nix b/pkgs/applications/graphics/pinta/default.nix index 2fd98b5033e9..f4a4b6bb9d85 100644 --- a/pkgs/applications/graphics/pinta/default.nix +++ b/pkgs/applications/graphics/pinta/default.nix @@ -58,7 +58,7 @@ buildDotnetPackage rec { makeWrapperArgs = [ ''--prefix MONO_GAC_PREFIX ':' "${gtksharp}"'' ''--prefix LD_LIBRARY_PATH ':' "${gtksharp}/lib"'' - ''--prefix LD_LIBRARY_PATH ':' "${gtksharp.gtk}/lib"'' + ''--prefix LD_LIBRARY_PATH ':' "${gtksharp.gtk.out}/lib"'' ]; postInstall = '' From 93a371ede780fa18f4e767f882d78d0de1eff9af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 31 May 2016 09:55:55 -0300 Subject: [PATCH 046/520] runningx: init at 1.0 --- pkgs/tools/X11/runningx/default.nix | 34 +++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 36 insertions(+) create mode 100644 pkgs/tools/X11/runningx/default.nix diff --git a/pkgs/tools/X11/runningx/default.nix b/pkgs/tools/X11/runningx/default.nix new file mode 100644 index 000000000000..a4b3f05c94c1 --- /dev/null +++ b/pkgs/tools/X11/runningx/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, pkgconfig, libX11 }: + +stdenv.mkDerivation rec { + name = "runningx-${version}"; + version = "1.0"; + + src = fetchurl { + url = "http://www.fiction.net/blong/programs/mutt/autoview/RunningX.c"; + sha256 = "1mikkhrx6jsx716041qdy3nwjac08pxxvxyq2yablm8zg9hrip0d"; + }; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ libX11 ]; + + phases = [ "buildPhase" "installPhase" ]; + + buildPhase = '' + gcc -O2 -o RunningX $(pkg-config --cflags --libs x11) $src + ''; + + installPhase = '' + mkdir -p "$out"/bin + cp -vai RunningX "$out/bin" + ''; + + meta = { + homepage = http://www.fiction.net/blong/programs/mutt/; + description = "A program for testing if X is running"; + license = stdenv.lib.licenses.free; + platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dbc671c985e7..d59798b64857 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3206,6 +3206,8 @@ in rubber = callPackage ../tools/typesetting/rubber { }; + runningx = callPackage ../tools/X11/runningx { }; + runzip = callPackage ../tools/archivers/runzip { }; rxp = callPackage ../tools/text/xml/rxp { }; From 4e20fa47e09c82ca7a580dc8a437e36ca271a128 Mon Sep 17 00:00:00 2001 From: Mayeu - Cast Date: Tue, 31 May 2016 15:12:19 +0200 Subject: [PATCH 047/520] torbrowser: 5.5.5 -> 6.0 (#15854) --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index c8f9c3dae970..2103f9ccad91 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -12,13 +12,13 @@ in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "5.5.5"; + version = "6.0"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "0k6v41j880fb4zdxk1v13kmizdaz5rwvi5lskdbdi68iml4p53gj" else - "04mqjmnxwa75yi8gmdwadkzrzikgxn08bkvr50zdm7id9fj4nkza"; + "09ad2x079kaw8q7xdklgkiw3j779ann1dnvbjpf7mlr5f54ijf7n" else + "04pagchs4biw02b3wd86q1rxwsygsfagkippfsnhyykwhgy1r95m"; }; desktopItem = makeDesktopItem { From b1dda910a360ce84b18c1c531bf0781e1f11c264 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 25 May 2016 18:15:21 +0200 Subject: [PATCH 048/520] gnome3.libcroco: 0.6.8 -> 0.6.11 --- pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix b/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix index 76d9118c4b95..563a18e510f1 100644 --- a/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix +++ b/pkgs/desktops/gnome-3/3.18/core/libcroco/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, libxml2, glib }: stdenv.mkDerivation rec { - name = "libcroco-0.6.8"; + name = "libcroco-0.6.11"; src = fetchurl { url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz"; - sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa"; + sha256 = "0mm0wldbi40am5qn0nv7psisbg01k42rwzjxl3gv11l5jj554aqk"; }; outputs = [ "dev" "out" ]; From fb1d4dfabd185e7b4f2df5800c48b5104f05c2f0 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 31 May 2016 15:17:47 +0200 Subject: [PATCH 049/520] geolite-legacy: 2016-05-23 -> 2016-05-31 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index d3b5405c509e..de2ed1dde3b0 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-05-23"; + version = "2016-05-31"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "0jx4rg2zxpcwhc27ph8hbbl0vdjpdd6d8c7ifxfxrz9jdjvzz6q5"; + "1hipamfmbmw6ifw60wh2a839ns2y9whms5zrwx06n2h3rgv26a60"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "0wax1z8fnldmkv0mh35ad738daqdcszs90cabzg472d1iys937av"; + "02iy4k1khjb3rm2w2hzblvjkhphs8ykq8s4maixc28ac8hy7lg9v"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; From 2a97b337ba1f5f42522809672f9593e9c16f89b4 Mon Sep 17 00:00:00 2001 From: Lancelot SIX Date: Fri, 18 Mar 2016 12:29:54 +0100 Subject: [PATCH 050/520] pythonPackages.pyparsing: 2.0.1 -> 2.1.4 --- pkgs/top-level/python-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93fd9897a8ff..a53d8278e376 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -18011,14 +18011,15 @@ in modules // { pyparsing = buildPythonPackage rec { - name = "pyparsing-2.0.1"; + name = "pyparsing-${version}"; + version = "2.1.4"; src = pkgs.fetchurl { url = "mirror://pypi/p/pyparsing/${name}.tar.gz"; - sha256 = "1r742rjbagf2i166k2w0r192adfw7l9lnsqz7wh4mflf00zws1q0"; + sha256 = "0z3rn5cl22kglrvlkfbdjgrp7s443k6k4hcr5awlj3dmg7m4s8x9"; }; - # error: invalid command 'test' + # Not everything necessary to run the tests is included in the distribution doCheck = false; meta = { From 8b5c71264883fa076d1ebfb9924f296b4c6dcf4f Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:45:17 +0200 Subject: [PATCH 051/520] postgresql91: 9.1.20 -> 9.1.21 --- pkgs/servers/sql/postgresql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index bd7b8fd3dea0..541d716234fa 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -74,9 +74,9 @@ let in { postgresql91 = common { - version = "9.1.20"; + version = "9.1.21"; psqlSchema = "9.1"; - sha256 = "0dr9hz1a0ax30f6jvnv2rck0zzxgk9x7nh4n1xgshrf26i1nq7kd"; + sha256 = "14xkvv7ph7yh399wppqpil9lgh1vw53nyg5ynk5a8j9idw3yjvnn"; }; postgresql92 = common { From fe5e3c2e59b5dd401890e0143406b5c9abb8ce73 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:47:04 +0200 Subject: [PATCH 052/520] postgresql92: 9.2.15 -> 9.2.16 --- pkgs/servers/sql/postgresql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 541d716234fa..3c401d17347d 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -80,9 +80,9 @@ in { }; postgresql92 = common { - version = "9.2.15"; + version = "9.2.16"; psqlSchema = "9.2"; - sha256 = "0q1yahkfys78crf59avp02ibd0lp3z7h626xchyfi6cqb03livbw"; + sha256 = "048vfkq58kkhcrw5vj4vplgvxia1k0lrbhbi30b2iy3bf2w4q5nj"; }; postgresql93 = common { From f62bd73225b6d6d36d5f061b131f6f3133b955f7 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:48:50 +0200 Subject: [PATCH 053/520] postgresql93: 9.3.11 -> 9.3.12 --- pkgs/servers/sql/postgresql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 3c401d17347d..3871ca497432 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -86,9 +86,9 @@ in { }; postgresql93 = common { - version = "9.3.11"; + version = "9.3.12"; psqlSchema = "9.3"; - sha256 = "08ba951nfiy516flaw352shj1zslxg4ryx3w5k0adls1r682l8ix"; + sha256 = "0rrf24mw68lwxjjnbbaayizhhcylwnr7ij5d60vpzl467yi9wczk"; }; postgresql94 = common { From c5ab5b7750ad92bfb6987270cb26fb361775bc5e Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:50:36 +0200 Subject: [PATCH 054/520] postgresql94: 9.4.6 -> 9.4.7 --- pkgs/servers/sql/postgresql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index 3871ca497432..c28cf0aa87f9 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -92,9 +92,9 @@ in { }; postgresql94 = common { - version = "9.4.6"; + version = "9.4.7"; psqlSchema = "9.4"; - sha256 = "19j0845i195ksg9pvnk3yc2fr62i7ii2bqgbidfjq556056izknb"; + sha256 = "1q41bwwa4x1ff2qzlrsfia25ys5gfrihbqwib1z6j3mk6mn5wyfc"; }; postgresql95 = common { From 0ac6b862acaed0c9603faf5b4365fdaa987a221b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:52:23 +0200 Subject: [PATCH 055/520] postgresql: 9.5.1 -> 9.5.3, potentially fixes CVE-2016-2193, CVE-2016-3065 --- pkgs/servers/sql/postgresql/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/sql/postgresql/default.nix b/pkgs/servers/sql/postgresql/default.nix index c28cf0aa87f9..baeb30427350 100644 --- a/pkgs/servers/sql/postgresql/default.nix +++ b/pkgs/servers/sql/postgresql/default.nix @@ -98,9 +98,9 @@ in { }; postgresql95 = common { - version = "9.5.1"; + version = "9.5.3"; psqlSchema = "9.5"; - sha256 = "1ljvijaja5zy4i5b1450drbj8m3fcm3ly1zzaakp75x30s2rsc3b"; + sha256 = "1d500d2qsdzysnis6qi84xchnz5xh8kx8sjfmkbsijwaqlfw11bk"; }; From 624dcaec78de354867095bb7d918b13c635a5cbb Mon Sep 17 00:00:00 2001 From: Marc Scholten Date: Tue, 31 May 2016 15:51:30 +0200 Subject: [PATCH 056/520] iterm2: init at 2.1.4 --- pkgs/applications/misc/iterm2/default.nix | 24 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/applications/misc/iterm2/default.nix diff --git a/pkgs/applications/misc/iterm2/default.nix b/pkgs/applications/misc/iterm2/default.nix new file mode 100644 index 000000000000..4aac8ab72d2c --- /dev/null +++ b/pkgs/applications/misc/iterm2/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, unzip }: + +stdenv.mkDerivation rec { + name = "iterm2-${version}"; + version = "2.1.4"; + + src = fetchurl { + url = "https://iterm2.com/downloads/stable/iTerm2-2_1_4.zip"; + sha256 = "1kb4j1p1kxj9dcsd34709bm2870ffzpq6jig6q9ixp08g0zbhqhh"; + }; + + buildInputs = [ unzip ]; + installPhase = '' + mkdir -p "$out/Applications" + mv "$(pwd)" "$out/Applications/iTerm.app" + ''; + + meta = { + description = "A replacement for Terminal and the successor to iTerm"; + homepage = https://www.iterm2.com/; + license = stdenv.lib.licenses.gpl2; + platforms = stdenv.lib.platforms.darwin; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dbc671c985e7..157b1ae08288 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16942,4 +16942,6 @@ in tomb = callPackage ../os-specific/linux/tomb {}; imatix_gsl = callPackage ../development/tools/imatix_gsl {}; + + iterm2 = callPackage ../applications/misc/iterm2 {}; } From 0000d4029e264262dcf45a822ccf3b48bcacf209 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:13:19 +0200 Subject: [PATCH 057/520] owncloud82: 8.2.2 -> 8.2.4 --- pkgs/servers/owncloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/owncloud/default.nix b/pkgs/servers/owncloud/default.nix index 3b9b6dd859c1..fae398022c1c 100644 --- a/pkgs/servers/owncloud/default.nix +++ b/pkgs/servers/owncloud/default.nix @@ -52,8 +52,8 @@ in { }; owncloud82 = common { - versiona = "8.2.2"; - sha256 = "d5b935f904744b8b40b310f19679702387c852498d0dc7aaeda4555a3db9ad5b"; + versiona = "8.2.4"; + sha256 = "03br4lsjz9zxd083lqa0ag3f29224l1ksz59r4fdnnbafj9ixv0s"; }; owncloud90 = common { From 653b72674d1708d7dc4974d84972890a0b59d910 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:13:33 +0200 Subject: [PATCH 058/520] owncloud81: 8.1.5 -> 8.1.7 --- pkgs/servers/owncloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/owncloud/default.nix b/pkgs/servers/owncloud/default.nix index fae398022c1c..5ca60e2f474e 100644 --- a/pkgs/servers/owncloud/default.nix +++ b/pkgs/servers/owncloud/default.nix @@ -47,8 +47,8 @@ in { }; owncloud81 = common { - versiona = "8.1.5"; - sha256 = "6d8687e40af32c5ca5adfea3fee556ed987b77ad15a1ead5d40cc87a8b76f4b4"; + versiona = "8.1.7"; + sha256 = "0xl67axyh7pblsjb1j86vjd8ic42ga1f7yl3ghxy8rk2xrs8cii7"; }; owncloud82 = common { From f9e01c8b64456a5c4fc508f34b5f15030c62e5c6 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:13:46 +0200 Subject: [PATCH 059/520] owncloud80: 8.0.10 -> 8.0.12 --- pkgs/servers/owncloud/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/owncloud/default.nix b/pkgs/servers/owncloud/default.nix index 5ca60e2f474e..3e92cd848abc 100644 --- a/pkgs/servers/owncloud/default.nix +++ b/pkgs/servers/owncloud/default.nix @@ -42,8 +42,8 @@ in { }; owncloud80 = common { - versiona = "8.0.10"; - sha256 = "3054b997f258178b57efc526e14384829ac8ab94757191f2d03c13fcb0a3cd93"; + versiona = "8.0.12"; + sha256 = "04n8r9kya5w1vlib4rbchf0qcl1mrsrrjml9010a9zhh2kajg1g0"; }; owncloud81 = common { From 350259973067c94bdac12f1f30e3ab6f28e908d8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 16:01:07 +0200 Subject: [PATCH 060/520] pypy.withPackages was forgotten in https://github.com/NixOS/nixpkgs/pull/15804 --- pkgs/development/interpreters/pypy/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index f973578529f8..bc1119718c7b 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -1,6 +1,6 @@ { stdenv, fetchurl, zlib ? null, zlibSupport ? true, bzip2, pkgconfig, libffi , sqlite, openssl, ncurses, pythonFull, expat, tcl, tk, xlibsWrapper, libX11 -, makeWrapper, callPackage, self, gdbm, db }: +, makeWrapper, callPackage, self, pypyPackages, gdbm, db }: assert zlibSupport -> zlib != null; @@ -109,6 +109,7 @@ let buildEnv = callPackage ../python/wrapper.nix { python = self; }; interpreter = "${self}/bin/${executable}"; sitePackages = "site-packages"; + withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = pypyPackages; }; }; enableParallelBuilding = true; # almost no parallelization without STM From cf0c9091c41c3b5b38028ba5affee5ed94ccd964 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Tue, 31 May 2016 16:13:11 +0200 Subject: [PATCH 061/520] graylog: 2.0.1 -> 2.0.2 (#15836) --- pkgs/tools/misc/graylog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/graylog/default.nix b/pkgs/tools/misc/graylog/default.nix index 3613625b3a2f..fc56c58f138c 100644 --- a/pkgs/tools/misc/graylog/default.nix +++ b/pkgs/tools/misc/graylog/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl }: stdenv.mkDerivation rec { - version = "2.0.1"; + version = "2.0.2"; name = "graylog-${version}"; src = fetchurl { url = "https://packages.graylog2.org/releases/graylog/graylog-${version}.tgz"; - sha256 = "0i9nng361qnnws7jnk5m91nj5ifg4h78yayahsfjn37665rsrdga"; + sha256 = "08w8s33cfk7bi6g8wshqchhl0ayld647wvg4xngclc22d7l94rrm"; }; dontBuild = true; From 9dd563bb129e8dfc210bd7d80ad499189fe6bf37 Mon Sep 17 00:00:00 2001 From: Matthew Justin Bauer Date: Tue, 31 May 2016 09:59:41 -0500 Subject: [PATCH 062/520] jsoncpp: enable and fix on darwin (#15845) --- pkgs/development/libraries/jsoncpp/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/jsoncpp/default.nix b/pkgs/development/libraries/jsoncpp/default.nix index 923d8af59bf6..53df8d6e7cfc 100644 --- a/pkgs/development/libraries/jsoncpp/default.nix +++ b/pkgs/development/libraries/jsoncpp/default.nix @@ -28,6 +28,8 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ cmake python ]; + CXXFLAGS = "-Wno-shift-negative-value"; + cmakeFlags = [ "-DJSONCPP_LIB_BUILD_SHARED=ON" "-DJSONCPP_LIB_BUILD_STATIC=OFF" @@ -39,6 +41,7 @@ stdenv.mkDerivation rec { homepage = https://github.com/open-source-parsers/jsoncpp; description = "A simple API to manipulate JSON data in C++"; maintainers = with stdenv.lib.maintainers; [ ttuegel page ]; + platforms = stdenv.lib.platforms.all; license = stdenv.lib.licenses.mit; branch = "1.6"; }; From a2cb4a1d0afefbebe02f586dd2365747ecfed23c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 May 2016 16:08:52 +0200 Subject: [PATCH 063/520] gnu-efi: 3.0.3 -> 3.0.4 --- pkgs/development/libraries/gnu-efi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/gnu-efi/default.nix b/pkgs/development/libraries/gnu-efi/default.nix index e674aae2b58a..9d6b3a870347 100644 --- a/pkgs/development/libraries/gnu-efi/default.nix +++ b/pkgs/development/libraries/gnu-efi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "gnu-efi-${version}"; - version = "3.0.3"; + version = "3.0.4"; src = fetchurl { url = "mirror://sourceforge/gnu-efi/${name}.tar.bz2"; - sha256 = "1jxlypkgb8bd1c114x96i699ib0glb5aca9dv56j377x2ldg4c65"; + sha256 = "1bzq5czw5dxlvpgs9ij2iz7q6krwhja87vc982r6vffcqcl0982i"; }; buildInputs = [ pciutils ]; From 66d5ca6f420a07e90290a0e1c54817e6499e745c Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 May 2016 16:52:07 +0200 Subject: [PATCH 064/520] systemd: Build EFI image --- pkgs/os-specific/linux/systemd/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index f5dc3145b68b..26f18f9ff267 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -2,7 +2,7 @@ , zlib, xz, pam, acl, cryptsetup, libuuid, m4, utillinux, libffi , glib, kbd, libxslt, coreutils, libgcrypt, libgpgerror, libapparmor, audit, lz4 , kexectools, libmicrohttpd, linuxHeaders ? stdenv.cc.libc.linuxHeaders, libseccomp -, iptables +, iptables, gnu-efi , autoreconfHook, gettext, docbook_xsl, docbook_xml_dtd_42, docbook_xml_dtd_45 , enableKDbus ? false }: @@ -34,7 +34,7 @@ stdenv.mkDerivation rec { [ linuxHeaders pkgconfig intltool gperf libcap kmod xz pam acl /* cryptsetup */ libuuid m4 glib libxslt libgcrypt libgpgerror libmicrohttpd kexectools libseccomp libffi audit lz4 libapparmor - iptables + iptables gnu-efi /* FIXME: we may be able to prevent the following dependencies by generating an autoconf'd tarball, but that's probably not worth it. */ @@ -72,6 +72,11 @@ stdenv.mkDerivation rec { "--disable-ldconfig" "--disable-smack" + "--enable-gnuefi" + "--with-efi-libdir=${gnu-efi}/lib" + "--with-efi-includedir=${gnu-efi}/include" + "--with-efi-ldsdir=${gnu-efi}/lib" + "--with-sysvinit-path=" "--with-sysvrcnd-path=" "--with-rc-local-script-path-stop=/etc/halt.local" From f222689aba0b0f5c7c06c77406d33538d9f40cb9 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 May 2016 16:52:40 +0200 Subject: [PATCH 065/520] Use systemd-boot instead of gummiboot Gummiboot is part of systemd now so we may as well use it. --- nixos/modules/system/boot/loader/efi.nix | 7 ++----- nixos/modules/system/boot/loader/grub/grub.nix | 2 +- .../system/boot/loader/gummiboot/gummiboot-builder.py | 6 +++--- nixos/modules/system/boot/loader/gummiboot/gummiboot.nix | 6 ++++-- nixos/tests/installer.nix | 1 - 5 files changed, 10 insertions(+), 12 deletions(-) diff --git a/nixos/modules/system/boot/loader/efi.nix b/nixos/modules/system/boot/loader/efi.nix index 726634e664d7..6043c904c450 100644 --- a/nixos/modules/system/boot/loader/efi.nix +++ b/nixos/modules/system/boot/loader/efi.nix @@ -4,19 +4,16 @@ with lib; { options.boot.loader.efi = { + canTouchEfiVariables = mkOption { default = false; - type = types.bool; - - description = "Whether or not the installation process should modify efi boot variables."; + description = "Whether the installation process is allowed to modify EFI boot variables."; }; efiSysMountPoint = mkOption { default = "/boot"; - type = types.str; - description = "Where the EFI System Partition is mounted."; }; }; diff --git a/nixos/modules/system/boot/loader/grub/grub.nix b/nixos/modules/system/boot/loader/grub/grub.nix index 2e06a684f0cc..0640ec306e18 100644 --- a/nixos/modules/system/boot/loader/grub/grub.nix +++ b/nixos/modules/system/boot/loader/grub/grub.nix @@ -488,7 +488,7 @@ in } { assertion = if args.efiSysMountPoint == null then true else hasPrefix "/" args.efiSysMountPoint; - message = "Efi paths must be absolute, not ${args.efiSysMountPoint}"; + message = "EFI paths must be absolute, not ${args.efiSysMountPoint}"; } ] ++ flip map args.devices (device: { assertion = device == "nodev" || hasPrefix "/" device; diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py b/nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py index ef431a7732e1..c38af1b67f17 100644 --- a/nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py +++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py @@ -88,16 +88,16 @@ def remove_old_entries(gens): if not path in known_paths: os.unlink(path) -parser = argparse.ArgumentParser(description='Update NixOS-related gummiboot files') +parser = argparse.ArgumentParser(description='Update NixOS-related systemd-boot files') parser.add_argument('default_config', metavar='DEFAULT-CONFIG', help='The default NixOS config to boot') args = parser.parse_args() # We deserve our own env var! if os.getenv("NIXOS_INSTALL_GRUB") == "1": if "@canTouchEfiVariables@" == "1": - subprocess.check_call(["@gummiboot@/bin/gummiboot", "--path=@efiSysMountPoint@", "install"]) + subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "install"]) else: - subprocess.check_call(["@gummiboot@/bin/gummiboot", "--path=@efiSysMountPoint@", "--no-variables", "install"]) + subprocess.check_call(["@systemd@/bin/bootctl", "--path=@efiSysMountPoint@", "--no-variables", "install"]) mkdir_p("@efiSysMountPoint@/efi/nixos") mkdir_p("@efiSysMountPoint@/loader/entries") diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix index aec697da4a1a..2225df348762 100644 --- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix +++ b/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix @@ -12,7 +12,9 @@ let isExecutable = true; - inherit (pkgs) python gummiboot; + inherit (pkgs) python; + + systemd = config.systemd.package; nix = config.nix.package.out; @@ -27,7 +29,7 @@ in { type = types.bool; - description = "Whether to enable the gummiboot UEFI boot manager"; + description = "Whether to enable the systemd-boot (formerly gummiboot) EFI boot manager"; }; }; diff --git a/nixos/tests/installer.nix b/nixos/tests/installer.nix index 3fdf6510953e..44c7c738d555 100644 --- a/nixos/tests/installer.nix +++ b/nixos/tests/installer.nix @@ -208,7 +208,6 @@ let pkgs.unionfs-fuse pkgs.ntp pkgs.nixos-artwork - pkgs.gummiboot pkgs.perlPackages.XMLLibXML pkgs.perlPackages.ListCompare ] From a00e564e04833263767fb2fda1d52120c1d3ab11 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 31 May 2016 16:34:17 +0200 Subject: [PATCH 066/520] gummiboot: Remove --- pkgs/tools/misc/gummiboot/default.nix | 29 --------------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 31 deletions(-) delete mode 100644 pkgs/tools/misc/gummiboot/default.nix diff --git a/pkgs/tools/misc/gummiboot/default.nix b/pkgs/tools/misc/gummiboot/default.nix deleted file mode 100644 index 9d9b7700c90b..000000000000 --- a/pkgs/tools/misc/gummiboot/default.nix +++ /dev/null @@ -1,29 +0,0 @@ -{ stdenv, fetchurl, gnu-efi, unzip, pkgconfig, utillinux, libxslt, docbook_xsl, docbook_xml_dtd_42 }: - -stdenv.mkDerivation rec { - name = "gummiboot-48"; - - buildInputs = [ gnu-efi pkgconfig libxslt utillinux ]; - - # Sigh, gummiboot should be able to find this in buildInputs - configureFlags = [ - "--with-efi-includedir=${gnu-efi}/include" - "--with-efi-libdir=${gnu-efi}/lib" - "--with-efi-ldsdir=${gnu-efi}/lib" - ]; - - src = fetchurl { - url = http://pkgs.fedoraproject.org/repo/pkgs/gummiboot/gummiboot-48.tar.xz/05ef3951e8322b76c31f2fd14efdc185/gummiboot-48.tar.xz; - sha256 = "1bzygyglgglhb3aj77w2qcb0dz9sxgb7lq5krxf6417431h198rg"; - }; - - meta = { - description = "A simple UEFI boot manager which executes configured EFI images"; - - homepage = http://freedesktop.org/wiki/Software/gummiboot; - - license = stdenv.lib.licenses.lgpl21Plus; - - platforms = [ "x86_64-linux" "i686-linux" ]; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4cd68719e745..dfa5560a1850 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1877,8 +1877,6 @@ in gtmess = callPackage ../applications/networking/instant-messengers/gtmess { }; - gummiboot = callPackage ../tools/misc/gummiboot { }; - gup = callPackage ../development/tools/build-managers/gup {}; gupnp = callPackage ../development/libraries/gupnp { From c68e823029179a86531082dcdcfb2e820da5ddb9 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Tue, 31 May 2016 18:09:01 +0300 Subject: [PATCH 067/520] aspell-dict-uk: init at 1.4.0-0 (#15846) --- pkgs/development/libraries/aspell/dictionaries.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkgs/development/libraries/aspell/dictionaries.nix b/pkgs/development/libraries/aspell/dictionaries.nix index c0c4bf97b60c..e1a7c75ea1d7 100644 --- a/pkgs/development/libraries/aspell/dictionaries.nix +++ b/pkgs/development/libraries/aspell/dictionaries.nix @@ -203,5 +203,13 @@ in { }; }; + uk = buildDict { + shortName = "uk-1.4.0-0"; + fullName = "Ukrainian"; + src = fetchurl { + url = mirror://gnu/aspell/dict/uk/aspell6-uk-1.4.0-0.tar.bz2; + sha256 = "137i4njvnslab6l4s291s11xijr5jsy75lbdph32f9y183lagy9m"; + }; + }; } From f44e70a68bd33721384b1027f30d3d8f3a085c15 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 17:17:28 +0200 Subject: [PATCH 068/520] pypy.withPackages: fix path --- pkgs/development/interpreters/pypy/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/pypy/default.nix b/pkgs/development/interpreters/pypy/default.nix index bc1119718c7b..708c251e4aff 100644 --- a/pkgs/development/interpreters/pypy/default.nix +++ b/pkgs/development/interpreters/pypy/default.nix @@ -109,7 +109,7 @@ let buildEnv = callPackage ../python/wrapper.nix { python = self; }; interpreter = "${self}/bin/${executable}"; sitePackages = "site-packages"; - withPackages = import ../with-packages.nix { inherit buildEnv; pythonPackages = pypyPackages; }; + withPackages = import ../python/with-packages.nix { inherit buildEnv; pythonPackages = pypyPackages; }; }; enableParallelBuilding = true; # almost no parallelization without STM From 473e5a425198123eacb013840f2c8e011b4de1d5 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:20:44 +0200 Subject: [PATCH 069/520] less: 481 -> 483 --- pkgs/tools/misc/less/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/less/default.nix b/pkgs/tools/misc/less/default.nix index 75e00635320a..5f7eeba6c557 100644 --- a/pkgs/tools/misc/less/default.nix +++ b/pkgs/tools/misc/less/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, ncurses }: stdenv.mkDerivation rec { - name = "less-481"; + name = "less-483"; src = fetchurl { url = "http://www.greenwoodsoftware.com/less/${name}.tar.gz"; - sha256 = "19fxj0h10y5bhr3a1xa7kqvnwl44db3sdypz8jxl1q79yln8z8rz"; + sha256 = "07z43kwbmba2wh3q1gps09l72p8izfagygmqq1izi50s2h51mfvy"; }; # Look for ‘sysless’ in /etc. From 0120d2b898386c95065c7aa590478fedcccc98ed Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 15:11:44 +0200 Subject: [PATCH 070/520] ocaml-markup: init at 0.7.2 --- .../ocaml-modules/markup/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 33 insertions(+) create mode 100644 pkgs/development/ocaml-modules/markup/default.nix diff --git a/pkgs/development/ocaml-modules/markup/default.nix b/pkgs/development/ocaml-modules/markup/default.nix new file mode 100644 index 000000000000..ed285dc58523 --- /dev/null +++ b/pkgs/development/ocaml-modules/markup/default.nix @@ -0,0 +1,31 @@ +{ stdenv, fetchurl, ocaml, findlib, uutf, lwt }: + +stdenv.mkDerivation rec { + pname = "markup"; + version = "0.7.2"; + name = "${pname}-${version}"; + + src = fetchurl { + url = "http://github.com/aantron/markup.ml/archive/${version}.tar.gz"; + sha256 = "0d3wi22v7h0iqzq8dgl0g4fj2wb67gvmbzdckacifghinrx762k3"; + }; + + buildInputs = [ocaml findlib]; + + installPhase = "make ocamlfind-install"; + + propagatedBuildInputs = [uutf lwt]; + + createFindlibDestdir = true; + + meta = with stdenv.lib; { + homepage = https://github.com/aantron/markup.ml/; + description = "A pair of best-effort parsers implementing the HTML5 and XML specifications"; + license = licenses.bsd3; + platforms = ocaml.meta.platforms or []; + maintainers = with maintainers; [ + gal_bolle + ]; + }; + +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dfa5560a1850..ea416f730e33 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5007,6 +5007,8 @@ in magick = callPackage ../development/ocaml-modules/magick { }; + markup = callPackage ../development/ocaml-modules/markup { lwt = ocaml_lwt; }; + menhir = callPackage ../development/ocaml-modules/menhir { }; merlin = callPackage ../development/tools/ocaml/merlin { }; From 8724b716c613373ed4dd06884a6f8813489324ce Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 15:32:42 +0200 Subject: [PATCH 071/520] ocaml-re: 1.4.2 -> 1.5.0 --- pkgs/development/ocaml-modules/re/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/re/default.nix b/pkgs/development/ocaml-modules/re/default.nix index 6b7ba1a13b23..072754fc60fd 100644 --- a/pkgs/development/ocaml-modules/re/default.nix +++ b/pkgs/development/ocaml-modules/re/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchzip, ocaml, findlib, ounit }: stdenv.mkDerivation rec { - name = "ocaml-re-1.4.1"; + name = "ocaml-re-1.5.0"; src = fetchzip { url = "https://github.com/ocaml/ocaml-re/archive/${name}.tar.gz"; - sha256 = "1wmfgazydd20hc796zisqpmsw0sb5lv9g3x77ckmf50v3z8hyhvk"; + sha256 = "17avk7kwmgdjkri1sj5q4a59ykc9rj0bxj6ixxpl6i0n49br3f92"; }; buildInputs = [ ocaml findlib ounit ]; From 51fd238d80d6ba15ea2f32783f815bbb6e37256e Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 15:36:33 +0200 Subject: [PATCH 072/520] ocaml-ppx_tools: 4.02.3 -> 5.0+4.02 --- pkgs/development/ocaml-modules/ppx_tools/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/ppx_tools/default.nix b/pkgs/development/ocaml-modules/ppx_tools/default.nix index c64e84869d62..377dc32751a7 100644 --- a/pkgs/development/ocaml-modules/ppx_tools/default.nix +++ b/pkgs/development/ocaml-modules/ppx_tools/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchzip, ocaml, findlib }: stdenv.mkDerivation { - name = "ocaml-ppx_tools-4.02.3"; + name = "ocaml-ppx_tools-5.0+4.02"; src = fetchzip { - url = https://github.com/alainfrisch/ppx_tools/archive/v4.02.3.tar.gz; - sha256 = "0varkd93hgrarwwkrjp2yy735q7jqzba75sskyanmvkb576wpcxv"; + url = https://github.com/alainfrisch/ppx_tools/archive/5.0+4.02.0.tar.gz; + sha256 = "16drjk0qafjls8blng69qiv35a84wlafpk16grrg2i3x19p8dlj8"; }; buildInputs = [ ocaml findlib ]; From 7e6f5cc561a3d62893a336627b1790860ab15471 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 15:55:30 +0200 Subject: [PATCH 073/520] tyxml: 3.4.0 -> 3.6.0 --- .../ocaml-modules/tyxml/default.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/development/ocaml-modules/tyxml/default.nix b/pkgs/development/ocaml-modules/tyxml/default.nix index 64c1de13fb35..4f9644ea5be0 100644 --- a/pkgs/development/ocaml-modules/tyxml/default.nix +++ b/pkgs/development/ocaml-modules/tyxml/default.nix @@ -1,19 +1,23 @@ -{ stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4, uutf }: +{ stdenv, fetchurl, ocaml, findlib, ocaml_oasis, camlp4, uutf, markup, ppx_tools, re }: -stdenv.mkDerivation { - name = "tyxml-3.4.0"; +stdenv.mkDerivation rec { + pname = "tyxml"; + version = "3.6.0"; + name = "${pname}-${version}"; src = fetchurl { - url = http://github.com/ocsigen/tyxml/archive/3.4.0.tar.gz; - sha256 = "10hb0b2j33fjqzmx450ns7dmf4pqmx3gyvr6dk99mghqk13cj5ww"; + url = "http://github.com/ocsigen/tyxml/archive/${version}.tar.gz"; + sha256 = "1rz0f48x8p1m30723rn5v85pp7rd0spr04sd7gzryy99vn3ianga"; }; - buildInputs = [ocaml findlib ocaml_oasis camlp4]; + buildInputs = [ocaml findlib camlp4]; - propagatedBuildInputs = [uutf]; + propagatedBuildInputs = [uutf re ppx_tools markup]; createFindlibDestdir = true; + configureFlags = "--enable-syntax"; + meta = with stdenv.lib; { homepage = http://ocsigen.org/tyxml/; description = "A library that makes it almost impossible for your OCaml programs to generate wrong XML output, using static typing"; From dab153bf7290e677e57598387a879d281673cf4b Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:35:42 +0200 Subject: [PATCH 074/520] ocaml-react: 1.1.0 -> 1.2.0 --- pkgs/development/ocaml-modules/react/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/react/default.nix b/pkgs/development/ocaml-modules/react/default.nix index 943e5e1e8dc9..f9fe95b89dc2 100644 --- a/pkgs/development/ocaml-modules/react/default.nix +++ b/pkgs/development/ocaml-modules/react/default.nix @@ -1,10 +1,10 @@ {stdenv, fetchurl, ocaml, findlib, opam}: stdenv.mkDerivation { - name = "ocaml-react-1.1.0"; + name = "ocaml-react-1.2.0"; src = fetchurl { - url = http://erratique.ch/software/react/releases/react-1.1.0.tbz; + url = http://erratique.ch/software/react/releases/react-1.2.0.tbz; sha256 = "1gymn8hy7ga0l9qymmb1jcnnkqvy7l2zr87xavzqz0dfi9ci8dm7"; }; From 2ddee12a422ad6307696df7f74ec6b98f98faa01 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:36:49 +0200 Subject: [PATCH 075/520] =?UTF-8?q?ocaml-reactiveData=20:=C2=A00.1=20->=20?= =?UTF-8?q?0.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ocaml-modules/reactivedata/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/ocaml-modules/reactivedata/default.nix b/pkgs/development/ocaml-modules/reactivedata/default.nix index ef0197f60f57..4b335496500b 100644 --- a/pkgs/development/ocaml-modules/reactivedata/default.nix +++ b/pkgs/development/ocaml-modules/reactivedata/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, ocaml, findlib, ocaml_react, opam}: +{stdenv, fetchurl, ocaml, findlib, ocaml_react, camlp4, opam}: let ocamlVersion = stdenv.lib.getVersion ocaml; @@ -7,13 +7,13 @@ in assert stdenv.lib.versionAtLeast ocamlVersion "3.11"; stdenv.mkDerivation { - name = "ocaml-reactiveData-0.1"; + name = "ocaml-reactiveData-0.2"; src = fetchurl { - url = https://github.com/hhugo/reactiveData/archive/0.1.tar.gz; - sha256 = "056y9in6j6rpggdf8apailvs1m30wxizpyyrj08xyfxgv91mhxgw"; + url = https://github.com/ocsigen/reactiveData/archive/0.2.tar.gz; + sha256 = "0rskcxnyjn8sxqnncdm6rh9wm99nha5m5sc83fywgzs64xfl43fq"; }; - buildInputs = [ocaml findlib opam]; + buildInputs = [ocaml findlib opam camlp4 ]; propagatedBuildInputs = [ocaml_react]; buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true"; @@ -26,7 +26,7 @@ stdenv.mkDerivation { meta = with stdenv.lib; { description = "An OCaml module for functional reactive programming (FRP) based on React"; - homepage = https://github.com/hhugo/reactiveData; + homepage = https://github.com/ocsigen/reactiveData; license = licenses.lgpl21; platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ vbgl ]; From 527c1cba37d541011a6b53dfa5f4b0ba1fc8b865 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:45:20 +0200 Subject: [PATCH 076/520] js_of_ocaml: 2.6 -> 2.7 --- .../tools/ocaml/js_of_ocaml/default.nix | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix index 3258aaf08c2f..3f5bd770dcf0 100644 --- a/pkgs/development/tools/ocaml/js_of_ocaml/default.nix +++ b/pkgs/development/tools/ocaml/js_of_ocaml/default.nix @@ -1,24 +1,18 @@ {stdenv, fetchurl, ocaml, findlib, ocaml_lwt, menhir, ocsigen_deriving, camlp4, cmdliner, tyxml, reactivedata, cppo, which, base64}: -let camlp4_patch = fetchurl { - url = "https://github.com/FlorentBecker/js_of_ocaml/commit/3b511c5bb777d5049c49d7a04c01f142de7096b9.patch"; - sha256 = "c92eda8be504cd41eb242166fc815af496243b63d4d21b169f5b62ec5ace2d39"; - }; -in - stdenv.mkDerivation { - name = "js_of_ocaml-2.6"; + name = "js_of_ocaml-2.7"; src = fetchurl { - url = https://github.com/ocsigen/js_of_ocaml/archive/2.6.tar.gz; - sha256 = "0q34lrn70dvz41m78bwgriyq6dxk97g8gcyg80nvxii4jp86dw61"; + url = https://github.com/ocsigen/js_of_ocaml/archive/2.7.tar.gz; + sha256 = "1dali1akyd4zmkwav0d957ynxq2jj6cc94r4xiaql7ca89ajz4jj"; }; buildInputs = [ocaml findlib menhir ocsigen_deriving cmdliner tyxml reactivedata cppo which base64]; propagatedBuildInputs = [ ocaml_lwt camlp4 ]; - patches = [ ./Makefile.conf.diff camlp4_patch ]; + patches = [ ./Makefile.conf.diff ]; createFindlibDestdir = true; From 7fda41cd903e21c13e9777b2eaf822a2f779ce2c Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:46:11 +0200 Subject: [PATCH 077/520] ocsigenserver: 2.6 -> 2.7 --- pkgs/development/ocaml-modules/ocsigen-server/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/ocaml-modules/ocsigen-server/default.nix b/pkgs/development/ocaml-modules/ocsigen-server/default.nix index d2613830a7c2..e5c5439fda33 100644 --- a/pkgs/development/ocaml-modules/ocsigen-server/default.nix +++ b/pkgs/development/ocaml-modules/ocsigen-server/default.nix @@ -9,11 +9,11 @@ let mkpath = p: n: in stdenv.mkDerivation { - name = "ocsigenserver-2.6"; + name = "ocsigenserver-2.7"; src = fetchurl { - url = https://github.com/ocsigen/ocsigenserver/archive/2.6.tar.gz; - sha256 = "0638xvlr0sssvjarmdwhgh7vbgdx8wiyjwq73w1bkjfwl7qm21zp"; + url = https://github.com/ocsigen/ocsigenserver/archive/2.7.tar.gz; + sha256 = "0gv9nchsx9z74hh46gn7bd0053j4694fhxriannf13sqh2qpg901"; }; buildInputs = [ocaml which findlib ocaml_react ocaml_ssl ocaml_lwt From abfe632ce2b9a0d5cf61be273c8ade9cad6dd0da Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 17:46:49 +0200 Subject: [PATCH 078/520] eliom: 4 -> 5.0 --- .../ocaml-modules/eliom/camlp4.patch | 18 +++--------------- .../ocaml-modules/eliom/default.nix | 10 +++++----- 2 files changed, 8 insertions(+), 20 deletions(-) diff --git a/pkgs/development/ocaml-modules/eliom/camlp4.patch b/pkgs/development/ocaml-modules/eliom/camlp4.patch index 561d5305befd..06d5ba1b7ed4 100644 --- a/pkgs/development/ocaml-modules/eliom/camlp4.patch +++ b/pkgs/development/ocaml-modules/eliom/camlp4.patch @@ -1,24 +1,12 @@ --- a/src/_tags 2014-10-01 16:19:35.000000000 +0100 +++ b/src/_tags 2014-11-09 16:55:34.470663377 +0000 -@@ -39,7 +39,7 @@ +@@ -40,7 +40,7 @@ :I(src/lib/server) - : syntax(camlp4o),package(camlp4.quotations.o,camlp4.extend) + : syntax(camlp4o),package(camlp4.quotations.o,camlp4.extend,bytes) -: I(+camlp4/Camlp4Parsers) +: use_camlp4_full + : package(ppx_tools, compiler-libs.common, ppx_tools.metaquot) - : package(ocamlbuild,js_of_ocaml.ocamlbuild) - ---- a/src/lib/eliom_registration.server.ml 2014-10-01 16:19:35.000000000 +0100 -+++ b/src/lib/eliom_registration.server.ml 2014-11-09 17:26:16.093198699 +0000 -@@ -2440,7 +2440,7 @@ - (Ocaml.register_post_coservice' - ?scope ?options ?charset ?code ?content_type ?headers ?secure_session ?name - ?csrf_safe ?csrf_scope ?csrf_secure ?max_use ?timeout ?https ?error_handler -- ~post_params:Eliom_parameter.(ocaml "argument" argument_type) -+ ~post_params:(Eliom_parameter.ocaml "argument" argument_type) - (fun () argument -> f argument)) - (Eliom_wrap.create_unwrapper - (Eliom_wrap.id_of_int Eliom_common_base.server_function_unwrap_id_int)) diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index 80b5b9eae0e6..1147c3054170 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -1,25 +1,25 @@ { stdenv, fetchurl, ocaml, findlib, which, ocsigen_server, ocsigen_deriving, js_of_ocaml, ocaml_react, ocaml_lwt, calendar, cryptokit, tyxml, ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, - reactivedata, opam}: + reactivedata, opam, ppx_tools, camlp4}: assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; stdenv.mkDerivation rec { pname = "eliom"; - version = "4.2.0"; + version = "5.0.0"; name = "${pname}-${version}"; src = fetchurl { - url = https://github.com/ocsigen/eliom/archive/4.2.tar.gz; - sha256 = "0gbqzgn6xgpq6irz2sfr92qj3hjcwl45wy0inc4ps5r15nvq1l9h"; + url = "https://github.com/ocsigen/eliom/archive/${version}.tar.gz"; + sha256 = "1g9wq2qpn0sgzyb6iq0h9afq5p68il4h8pc7jppqsislk87m09k7"; }; patches = [ ./camlp4.patch ]; buildInputs = [ocaml which ocsigen_server findlib ocsigen_deriving - js_of_ocaml ocaml_optcomp opam]; + js_of_ocaml ocaml_optcomp opam ppx_tools camlp4 ]; propagatedBuildInputs = [ ocaml_lwt reactivedata tyxml ipaddr calendar cryptokit ocamlnet ocaml_react ocaml_ssl From 33a5a132e574bf2ef41a7285edb03f2a71098a19 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Mon, 30 May 2016 18:18:09 +0200 Subject: [PATCH 079/520] eliom 5.0 is only available with a ppx-enabled ocaml --- pkgs/top-level/all-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ea416f730e33..86c5329a14a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4908,7 +4908,10 @@ in eff = callPackage ../development/interpreters/eff { }; - eliom = callPackage ../development/ocaml-modules/eliom { }; + eliom = + if lib.versionAtLeast ocaml_version "4.02" + then callPackage ../development/ocaml-modules/eliom { } + else null; enumerate = callPackage ../development/ocaml-modules/enumerate { }; From 71888e7973a967bdfdfd41cdc1632e8b659752cd Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Tue, 31 May 2016 18:06:38 +0200 Subject: [PATCH 080/520] ocaml-markup: fix name and license --- pkgs/development/ocaml-modules/markup/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/markup/default.nix b/pkgs/development/ocaml-modules/markup/default.nix index ed285dc58523..d4a38d9bd9e4 100644 --- a/pkgs/development/ocaml-modules/markup/default.nix +++ b/pkgs/development/ocaml-modules/markup/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, ocaml, findlib, uutf, lwt }: stdenv.mkDerivation rec { - pname = "markup"; + pname = "ocaml-markup"; version = "0.7.2"; name = "${pname}-${version}"; @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { homepage = https://github.com/aantron/markup.ml/; description = "A pair of best-effort parsers implementing the HTML5 and XML specifications"; - license = licenses.bsd3; + license = licenses.bsd2; platforms = ocaml.meta.platforms or []; maintainers = with maintainers; [ gal_bolle From 7395020b657ccec75881d62d05a8997cadaf3304 Mon Sep 17 00:00:00 2001 From: Florent Becker Date: Tue, 31 May 2016 18:36:45 +0200 Subject: [PATCH 081/520] allow eliom with ocaml-4.01 --- pkgs/development/ocaml-modules/eliom/default.nix | 14 ++++++++++---- pkgs/top-level/all-packages.nix | 5 +---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/pkgs/development/ocaml-modules/eliom/default.nix b/pkgs/development/ocaml-modules/eliom/default.nix index 1147c3054170..219f104271d3 100644 --- a/pkgs/development/ocaml-modules/eliom/default.nix +++ b/pkgs/development/ocaml-modules/eliom/default.nix @@ -3,7 +3,11 @@ ipaddr, ocamlnet, ocaml_ssl, ocaml_pcre, ocaml_optcomp, reactivedata, opam, ppx_tools, camlp4}: -assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4"; +let ocamlVersion = (stdenv.lib.getVersion ocaml); + in + +( +assert stdenv.lib.versionAtLeast ocamlVersion "4"; stdenv.mkDerivation rec { @@ -25,9 +29,11 @@ stdenv.mkDerivation rec calendar cryptokit ocamlnet ocaml_react ocaml_ssl ocaml_pcre ]; + preConfigure = stdenv.lib.optionalString (!stdenv.lib.versionAtLeast ocamlVersion "4.02") '' + export PPX=false + ''; + installPhase = - let ocamlVersion = (builtins.parseDrvName (ocaml.name)).version; - in ''opam-installer --script --prefix=$out ${pname}.install > install.sh sh install.sh ln -s $out/lib/${pname} $out/lib/ocaml/${ocamlVersion}/site-lib/ @@ -55,4 +61,4 @@ stdenv.mkDerivation rec maintainers = [ stdenv.lib.maintainers.gal_bolle ]; }; -} +}) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 86c5329a14a8..ea416f730e33 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4908,10 +4908,7 @@ in eff = callPackage ../development/interpreters/eff { }; - eliom = - if lib.versionAtLeast ocaml_version "4.02" - then callPackage ../development/ocaml-modules/eliom { } - else null; + eliom = callPackage ../development/ocaml-modules/eliom { }; enumerate = callPackage ../development/ocaml-modules/enumerate { }; From 7d9795a0f2573a1cb9dacbc8c3b42410f91be5d4 Mon Sep 17 00:00:00 2001 From: Kridsada Thanabulpong Date: Wed, 1 Jun 2016 00:36:04 +0700 Subject: [PATCH 082/520] tmuxinator: 0.6.9 -> 0.8.1 --- pkgs/tools/misc/tmuxinator/Gemfile | 3 --- pkgs/tools/misc/tmuxinator/Gemfile.lock | 14 ---------- pkgs/tools/misc/tmuxinator/default.nix | 35 ++++++++++++++++++++----- pkgs/tools/misc/tmuxinator/gemset.nix | 27 ------------------- 4 files changed, 28 insertions(+), 51 deletions(-) delete mode 100644 pkgs/tools/misc/tmuxinator/Gemfile delete mode 100644 pkgs/tools/misc/tmuxinator/Gemfile.lock delete mode 100644 pkgs/tools/misc/tmuxinator/gemset.nix diff --git a/pkgs/tools/misc/tmuxinator/Gemfile b/pkgs/tools/misc/tmuxinator/Gemfile deleted file mode 100644 index 5fa4859adfc1..000000000000 --- a/pkgs/tools/misc/tmuxinator/Gemfile +++ /dev/null @@ -1,3 +0,0 @@ -source "https://rubygems.org" - -gem 'tmuxinator' diff --git a/pkgs/tools/misc/tmuxinator/Gemfile.lock b/pkgs/tools/misc/tmuxinator/Gemfile.lock deleted file mode 100644 index 6f05b475ff2a..000000000000 --- a/pkgs/tools/misc/tmuxinator/Gemfile.lock +++ /dev/null @@ -1,14 +0,0 @@ -GEM - remote: https://rubygems.org/ - specs: - erubis (2.7.0) - thor (0.19.1) - tmuxinator (0.6.9) - erubis (~> 2.6) - thor (~> 0.19, >= 0.15.0) - -PLATFORMS - ruby - -DEPENDENCIES - tmuxinator diff --git a/pkgs/tools/misc/tmuxinator/default.nix b/pkgs/tools/misc/tmuxinator/default.nix index f5ac891d8e64..5e8966108661 100644 --- a/pkgs/tools/misc/tmuxinator/default.nix +++ b/pkgs/tools/misc/tmuxinator/default.nix @@ -1,12 +1,33 @@ -{ stdenv, lib, bundlerEnv, ruby }: +{ lib, buildRubyGem, makeWrapper, ruby }: -bundlerEnv { - name = "tmuxinator-0.6.9"; +# Cannot use bundleEnv because bundleEnv create stub with +# BUNDLE_FROZEN='1' environment variable set, which broke everything +# that rely on Bundler that runs under Tmuxinator. +buildRubyGem rec { inherit ruby; - gemfile = ./Gemfile; - lockfile = ./Gemfile.lock; - gemset = ./gemset.nix; + name = "${gemName}-${version}"; + gemName = "tmuxinator"; + version = "0.8.1"; + sha256 = "1cpmlfa684j9r1hjya70nfcl5lzdbzmbi9hqbs5nhxha97b77qs5"; + + erubis = buildRubyGem rec { + inherit ruby; + name = "ruby${ruby.version}-${gemName}-${version}"; + gemName = "erubis"; + version = "2.7.0"; + sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; + }; + + thor = buildRubyGem rec { + inherit ruby; + name = "ruby${ruby.version}-${gemName}-${version}"; + gemName = "thor"; + version = "0.19.1"; + sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; + }; + + propagatedBuildInputs = [ erubis thor ]; meta = with lib; { description = "Manage complex tmux sessions easily"; @@ -15,4 +36,4 @@ bundlerEnv { maintainers = with maintainers; [ auntie ]; platforms = platforms.unix; }; -} +} \ No newline at end of file diff --git a/pkgs/tools/misc/tmuxinator/gemset.nix b/pkgs/tools/misc/tmuxinator/gemset.nix deleted file mode 100644 index 1b5b1605c4cc..000000000000 --- a/pkgs/tools/misc/tmuxinator/gemset.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ - "erubis" = { - version = "2.7.0"; - source = { - type = "gem"; - sha256 = "1fj827xqjs91yqsydf0zmfyw9p4l2jz5yikg3mppz6d7fi8kyrb3"; - }; - }; - "thor" = { - version = "0.19.1"; - source = { - type = "gem"; - sha256 = "08p5gx18yrbnwc6xc0mxvsfaxzgy2y9i78xq7ds0qmdm67q39y4z"; - }; - }; - "tmuxinator" = { - version = "0.6.9"; - source = { - type = "gem"; - sha256 = "0q0ld82dznjsan7ciblfsxz59brcc16fwmvr9n3c7vdcndj8rd27"; - }; - dependencies = [ - "erubis" - "thor" - ]; - }; -} \ No newline at end of file From 926c9293cb4bc0c932f7492e410441f75dc1f25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Tue, 31 May 2016 18:58:59 +0100 Subject: [PATCH 083/520] travis-ci: don't check NixOS options on darwin --- maintainers/scripts/travis-nox-review-pr.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index ffe817bc8bea..416fd03692f8 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -23,13 +23,13 @@ elif [[ $1 == nox ]]; then elif [[ $1 == build ]]; then source $HOME/.nix-profile/etc/profile.d/nix.sh - echo "=== Checking NixOS options" - nix-build nixos/release.nix -A options - - echo "=== Checking tarball creation" if [[ $TRAVIS_OS_NAME == "osx" ]]; then - echo "Skipped, as not working on darwin" + echo "Skipping NixOS things on darwin" else + echo "=== Checking NixOS options" + nix-build nixos/release.nix -A options + + echo "=== Checking tarball creation" nix-build pkgs/top-level/release.nix -A tarball fi From 8ec5adc953d6bbabbe62d7f7229f146202704e53 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 31 May 2016 06:26:22 -0500 Subject: [PATCH 084/520] cmake: use supplied RPATH instead of guessing --- .../tools/build-managers/cmake/setup-hook.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh index eaabb37f4987..adf05f1af978 100755 --- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh +++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh @@ -47,9 +47,15 @@ cmakeConfigurePhase() { cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags" cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags" - # Avoid cmake resetting the rpath of binaries, on make install - # And build always Release, to ensure optimisation flags - cmakeFlags="-DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_BUILD_RPATH=ON $cmakeFlags" + # Always build Release, to ensure optimisation flags. + cmakeFlags="-DCMAKE_BUILD_TYPE=Release $cmakeFlags" + # Do not change the RPATH between build and install, simply + # build with the correct RPATH in the first place. + cmakeFlags="-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE $cmakeFlags" + # Do not try to guess the correct RPATH based on linker flags. + cmakeFlags="-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE $cmakeFlags" + # Just use exactly our RPATH. + cmakeFlags="-DCMAKE_INSTALL_RPATH=$CMAKE_INSTALL_RPATH $cmakeFlags" echo "cmake flags: $cmakeFlags ${cmakeFlagsArray[@]}" @@ -77,6 +83,7 @@ makeCmakeFindLibs(){ ;; -L*) export CMAKE_LIBRARY_PATH="$CMAKE_LIBRARY_PATH${CMAKE_LIBRARY_PATH:+:}${flag:2}" + export CMAKE_INSTALL_RPATH="$CMAKE_INSTALL_RPATH${CMAKE_INSTALL_RPATH:+:}${flag:2}" ;; esac done From ca34e075e45b625fba536af69409711140c7daff Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 31 May 2016 06:27:18 -0500 Subject: [PATCH 085/520] qt56.qtbase: create symlink farm in one pass --- .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 27 ++++++++++++++----- .../libraries/qt-5/5.6/setup-hook.sh | 9 ++----- 2 files changed, 22 insertions(+), 14 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 d1ad9584aa7e..0e73e0d31ebf 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 @@ -112,7 +112,7 @@ EOF # Set PATH to find qmake first in a preConfigure hook # It must run after all the envHooks! - postHooks+=(_qtSetQmakePath) + preConfigureHooks+=(_qtSetQmakePath) fi qt5LinkModuleDir() { @@ -122,10 +122,23 @@ qt5LinkModuleDir() { fi } -qt5LinkModuleDir @out@ "lib" +NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@" +NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@" -qt5LinkModuleDir @dev@ "bin" -qt5LinkModuleDir @dev@ "include" -qt5LinkModuleDir @dev@ "lib" -qt5LinkModuleDir @dev@ "mkspecs" -qt5LinkModuleDir @dev@ "share" +_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) diff --git a/pkgs/development/libraries/qt-5/5.6/setup-hook.sh b/pkgs/development/libraries/qt-5/5.6/setup-hook.sh index 212ac903eeeb..e41433c11386 100644 --- a/pkgs/development/libraries/qt-5/5.6/setup-hook.sh +++ b/pkgs/development/libraries/qt-5/5.6/setup-hook.sh @@ -1,7 +1,2 @@ -qt5LinkModuleDir @out@ "lib" - -qt5LinkModuleDir @dev@ "bin" -qt5LinkModuleDir @dev@ "include" -qt5LinkModuleDir @dev@ "lib" -qt5LinkModuleDir @dev@ "mkspecs" -qt5LinkModuleDir @dev@ "share" +NIX_QT5_MODULES="${NIX_QT5_MODULES}${NIX_QT5_MODULES:+:}@out@" +NIX_QT5_MODULES_DEV="${NIX_QT5_MODULES_DEV}${NIX_QT5_MODULES_DEV:+:}@dev@" From 94fcfc9c419251046efebd477f5f6efa123ae581 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 31 May 2016 12:57:42 -0500 Subject: [PATCH 086/520] extra-cmake-modules: don't change the RPATH settings We don't need KDE upstream messing up our RPATH. --- .../kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh index 49ac5d0c8b5f..205aa0ea4f11 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh @@ -29,6 +29,7 @@ _ecmPropagateSharedData() { _ecmConfig() { # Because we need to use absolute paths here, we must set *all* the paths. + cmakeFlags+=" -DKDE_SKIP_RPATH_SETTINGS=TRUE" cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" From e428c0346f334be1371436d67c9bd525c5d2fe50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 31 May 2016 15:06:43 -0300 Subject: [PATCH 087/520] mate-themes: move to pkgs/desktops/mate/ --- pkgs/desktops/mate/default.nix | 1 + pkgs/{misc/themes => desktops/mate}/mate-themes/default.nix | 0 pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 1 insertion(+), 2 deletions(-) rename pkgs/{misc/themes => desktops/mate}/mate-themes/default.nix (100%) diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix index 8758e5a286dd..e3095b5474d5 100644 --- a/pkgs/desktops/mate/default.nix +++ b/pkgs/desktops/mate/default.nix @@ -2,4 +2,5 @@ rec { mate-common = callPackage ./mate-common { }; mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { }; + mate-themes = callPackage ./mate-themes { }; } diff --git a/pkgs/misc/themes/mate-themes/default.nix b/pkgs/desktops/mate/mate-themes/default.nix similarity index 100% rename from pkgs/misc/themes/mate-themes/default.nix rename to pkgs/desktops/mate/mate-themes/default.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dfa5560a1850..1dceceaac33b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15770,8 +15770,6 @@ in mate-icon-theme = callPackage ../misc/themes/mate-icon-theme { }; - mate-themes = callPackage ../misc/themes/mate-themes { }; - numix-gtk-theme = callPackage ../misc/themes/numix-gtk-theme { }; kde5PackagesFun = self: with self; { From f67c8782417f0004b99da6baf942d17559f6ece2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Tue, 31 May 2016 15:08:51 -0300 Subject: [PATCH 088/520] mate-icon-theme: move to pkgs/desktops/mate/ --- pkgs/desktops/mate/default.nix | 1 + pkgs/{misc/themes => desktops/mate}/mate-icon-theme/default.nix | 0 pkgs/top-level/all-packages.nix | 2 -- 3 files changed, 1 insertion(+), 2 deletions(-) rename pkgs/{misc/themes => desktops/mate}/mate-icon-theme/default.nix (100%) diff --git a/pkgs/desktops/mate/default.nix b/pkgs/desktops/mate/default.nix index e3095b5474d5..c3a49011c1d9 100644 --- a/pkgs/desktops/mate/default.nix +++ b/pkgs/desktops/mate/default.nix @@ -1,6 +1,7 @@ { callPackage, pkgs }: rec { mate-common = callPackage ./mate-common { }; + mate-icon-theme = callPackage ./mate-icon-theme { }; mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { }; mate-themes = callPackage ./mate-themes { }; } diff --git a/pkgs/misc/themes/mate-icon-theme/default.nix b/pkgs/desktops/mate/mate-icon-theme/default.nix similarity index 100% rename from pkgs/misc/themes/mate-icon-theme/default.nix rename to pkgs/desktops/mate/mate-icon-theme/default.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1dceceaac33b..577487864ccf 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15768,8 +15768,6 @@ in gnome_themes_standard = gnome3.gnome_themes_standard; - mate-icon-theme = callPackage ../misc/themes/mate-icon-theme { }; - numix-gtk-theme = callPackage ../misc/themes/numix-gtk-theme { }; kde5PackagesFun = self: with self; { From 90e8e0009705e0825d6f48b2dce2127e5ba7e1a8 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 31 May 2016 20:07:34 +0200 Subject: [PATCH 089/520] screen-message: 0.23 -> 0.24 --- pkgs/tools/X11/screen-message/default.nix | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/X11/screen-message/default.nix b/pkgs/tools/X11/screen-message/default.nix index 87487442ada9..02a35b73c1e1 100644 --- a/pkgs/tools/X11/screen-message/default.nix +++ b/pkgs/tools/X11/screen-message/default.nix @@ -1,15 +1,16 @@ -{ stdenv, fetchgit, autoreconfHook, pkgconfig, gtk3 }: +{ stdenv, fetchurl, autoreconfHook, pkgconfig, gtk3 }: -stdenv.mkDerivation { - name = "screen-message-0.23"; +stdenv.mkDerivation rec { + name = "screen-message-${version}"; + version = "0.24"; - srcs = fetchgit { - url = "git://git.nomeata.de/darcs-mirror-screen-message.debian.git"; - rev = "refs/tags/0_23-1"; - sha256 = "fddddd28703676b2908af71cca7225e6c7bdb15b2fdfd67679cac129028a431c"; + src = fetchurl { + url = "mirror://debian/pool/main/s/screen-message/screen-message_${version}.orig.tar.gz"; + sha256 = "1v03axr7471fmzxccl3ckv73j8gfcj615y5maxvm5phy0sd6rl49"; }; - buildInputs = [ autoreconfHook pkgconfig gtk3 ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; + buildInputs = [ gtk3 ]; # screen-message installs its binary in $(prefix)/games per default makeFlags = [ "execgamesdir=$(out)/bin" ]; From 6ee74b5593eb20bd45145449ac30880ba7d8ed27 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 31 May 2016 19:23:48 +0200 Subject: [PATCH 090/520] whois: 5.2.11 -> 5.2.12 --- pkgs/tools/networking/whois/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/whois/default.nix b/pkgs/tools/networking/whois/default.nix index cf755b354917..f7c94c1e72b6 100644 --- a/pkgs/tools/networking/whois/default.nix +++ b/pkgs/tools/networking/whois/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, perl, gettext }: stdenv.mkDerivation rec { - version = "5.2.11"; + version = "5.2.12"; name = "whois-${version}"; src = fetchFromGitHub { owner = "rfc1036"; repo = "whois"; rev = "v${version}"; - sha256 = "0yjzssy1nfj314hqbhfjljpb74c5aqvx5pbpsba5qsx7rrwy7n4z"; + sha256 = "1cis7zwh0r1hqbl2wa3i2x1446nrhfqfd52b2lknfml64l08rnk5"; }; buildInputs = [ perl gettext ]; From 498ff955ece1927c4e737c69f9d760595a782d0e Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 31 May 2016 19:48:04 +0200 Subject: [PATCH 091/520] sslscan: 1.11.0 -> 1.11.5 --- pkgs/tools/security/sslscan/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/security/sslscan/default.nix b/pkgs/tools/security/sslscan/default.nix index dd124c4efe6d..50cc380b970e 100644 --- a/pkgs/tools/security/sslscan/default.nix +++ b/pkgs/tools/security/sslscan/default.nix @@ -2,18 +2,17 @@ stdenv.mkDerivation rec { name = "sslscan-${version}"; - version = "1.11.0"; + version = "1.11.5"; src = fetchurl { url = "https://github.com/rbsec/sslscan/archive/${version}-rbsec.tar.gz"; - sha256 = "19d6vpcihfqs35hni4vigcpqabbnd3sndr5wyvfsladgp40vz3b9"; + sha256 = "0mcg8hyx1r9sq716bw1r554fcsf512khgcms2ixxb1c31ng6lhq6"; }; buildInputs = [ openssl ]; installFlags = [ - "BINPATH=$(out)/bin" - "MANPATH=$(out)/share/man" + "PREFIX=$(out)" ]; meta = with stdenv.lib; { From d3e08497854c1e2bb317f4648943758be1a18369 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Tue, 31 May 2016 19:53:49 +0200 Subject: [PATCH 092/520] batman-adv: 2016.0 -> 2016.1 --- pkgs/os-specific/linux/batman-adv/alfred.nix | 4 ++-- pkgs/os-specific/linux/batman-adv/batctl.nix | 4 ++-- pkgs/os-specific/linux/batman-adv/default.nix | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/os-specific/linux/batman-adv/alfred.nix b/pkgs/os-specific/linux/batman-adv/alfred.nix index 72f14ff2d68b..a461a722915f 100644 --- a/pkgs/os-specific/linux/batman-adv/alfred.nix +++ b/pkgs/os-specific/linux/batman-adv/alfred.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, pkgconfig, gpsd, libcap }: let - ver = "2016.0"; + ver = "2016.1"; in stdenv.mkDerivation rec { name = "alfred-${ver}"; src = fetchurl { url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz"; - sha256 = "1zlmcp9r1xwp6li56j5ip9x7h5gjdhh0gi6cb3f8x6ydszhynxbf"; + sha256 = "02963m1vk9skmvdyd0j3281wslb9cwzr7bdx4dg2wxyncgrgl3ky"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/os-specific/linux/batman-adv/batctl.nix b/pkgs/os-specific/linux/batman-adv/batctl.nix index c17f7beb74f1..2c8eea331cdb 100644 --- a/pkgs/os-specific/linux/batman-adv/batctl.nix +++ b/pkgs/os-specific/linux/batman-adv/batctl.nix @@ -1,14 +1,14 @@ { stdenv, fetchurl, pkgconfig, libnl }: let - ver = "2016.0"; + ver = "2016.1"; in stdenv.mkDerivation rec { name = "batctl-${ver}"; src = fetchurl { url = "http://downloads.open-mesh.org/batman/releases/batman-adv-${ver}/${name}.tar.gz"; - sha256 = "0khpw0w26j6pc1263phk086chs64p9m6a63azk62pxs1cmmbr80y"; + sha256 = "1j83dzz12c0k7qqd01vmng64h1iq36c86r8ybp8vhb6x5mxkjm68"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/os-specific/linux/batman-adv/default.nix b/pkgs/os-specific/linux/batman-adv/default.nix index b8bef1b5a9a4..6cf0883a464f 100644 --- a/pkgs/os-specific/linux/batman-adv/default.nix +++ b/pkgs/os-specific/linux/batman-adv/default.nix @@ -2,14 +2,14 @@ #assert stdenv.lib.versionOlder kernel.version "3.17"; -let base = "batman-adv-2016.0"; in +let base = "batman-adv-2016.1"; in stdenv.mkDerivation rec { name = "${base}-${kernel.version}"; src = fetchurl { url = "http://downloads.open-mesh.org/batman/releases/${base}/${base}.tar.gz"; - sha256 = "0r5faf12ifpj8h1fklkzvy4ck359cadk8xh1l3n7vimh67hxbxbz"; + sha256 = "0wm0v82kdkli713q4gcq21wbd6mirqmc7xva3kmc3z6kvwlc53ai"; }; preBuild = '' From 71c9c5dffe365dcf2f6d0b627d182e01bb2b5f96 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Tue, 31 May 2016 21:38:43 +0200 Subject: [PATCH 093/520] neovim: fix broken build (#15876) --- pkgs/applications/editors/neovim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 4665ea8a7818..864a2184cbbd 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -111,7 +111,7 @@ let install_name_tool -change libjemalloc.1.dylib \ ${jemalloc}/lib/libjemalloc.1.dylib \ $out/bin/nvim - sed -i -e "s|'xsel|'${xsel}/bin/xsel|" share/nvim/runtime/autoload/provider/clipboard.vim + sed -i -e "s|'xsel|'${xsel}/bin/xsel|" $out/share/nvim/runtime/autoload/provider/clipboard.vim '' + optionalString withPython '' ln -s ${pythonEnv}/bin/python $out/bin/nvim-python '' + optionalString withPyGUI '' From 1ce9da0aa9d26eeb6ac342aeb684484f82e5534a Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 31 May 2016 17:38:31 +0100 Subject: [PATCH 094/520] less: support --with-secure --- pkgs/tools/misc/less/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/misc/less/default.nix b/pkgs/tools/misc/less/default.nix index 5f7eeba6c557..910b4963f012 100644 --- a/pkgs/tools/misc/less/default.nix +++ b/pkgs/tools/misc/less/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, ncurses }: +{ stdenv, fetchurl, ncurses, lessSecure ? false }: stdenv.mkDerivation rec { name = "less-483"; @@ -8,10 +8,8 @@ stdenv.mkDerivation rec { sha256 = "07z43kwbmba2wh3q1gps09l72p8izfagygmqq1izi50s2h51mfvy"; }; - # Look for ‘sysless’ in /etc. - configureFlags = "--sysconfdir=/etc"; - - preConfigure = "chmod +x ./configure"; + configureFlags = [ "--sysconfdir=/etc" ] # Look for ‘sysless’ in /etc. + ++ stdenv.lib.optional lessSecure [ "--with-secure" ]; buildInputs = [ ncurses ]; From 4cea709ce0efb448a340f6aba1fb99ac47040073 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 25 May 2016 12:50:45 +0200 Subject: [PATCH 095/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-27-gc573068 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/b000a1eee65b69e922227115c28a8ab17471efed - LTS Haskell: https://github.com/fpco/lts-haskell/commit/042ef2187b44a2d6959602fe35c94b804817cf0f - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/c7757d46b6447888fec7458ffe08beb2b9c7b809 --- .../haskell-modules/configuration-lts-0.0.nix | 29 +- .../haskell-modules/configuration-lts-0.1.nix | 29 +- .../haskell-modules/configuration-lts-0.2.nix | 29 +- .../haskell-modules/configuration-lts-0.3.nix | 29 +- .../haskell-modules/configuration-lts-0.4.nix | 30 +- .../haskell-modules/configuration-lts-0.5.nix | 30 +- .../haskell-modules/configuration-lts-0.6.nix | 30 +- .../haskell-modules/configuration-lts-0.7.nix | 30 +- .../haskell-modules/configuration-lts-1.0.nix | 31 +- .../haskell-modules/configuration-lts-1.1.nix | 31 +- .../configuration-lts-1.10.nix | 33 +- .../configuration-lts-1.11.nix | 34 +- .../configuration-lts-1.12.nix | 35 +- .../configuration-lts-1.13.nix | 35 +- .../configuration-lts-1.14.nix | 35 +- .../configuration-lts-1.15.nix | 35 +- .../haskell-modules/configuration-lts-1.2.nix | 31 +- .../haskell-modules/configuration-lts-1.4.nix | 32 +- .../haskell-modules/configuration-lts-1.5.nix | 32 +- .../haskell-modules/configuration-lts-1.7.nix | 32 +- .../haskell-modules/configuration-lts-1.8.nix | 32 +- .../haskell-modules/configuration-lts-1.9.nix | 32 +- .../haskell-modules/configuration-lts-2.0.nix | 37 +- .../haskell-modules/configuration-lts-2.1.nix | 37 +- .../configuration-lts-2.10.nix | 41 +- .../configuration-lts-2.11.nix | 43 +- .../configuration-lts-2.12.nix | 43 +- .../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 | 46 +- .../haskell-modules/configuration-lts-2.2.nix | 38 +- .../configuration-lts-2.20.nix | 48 +- .../configuration-lts-2.21.nix | 48 +- .../configuration-lts-2.22.nix | 48 +- .../haskell-modules/configuration-lts-2.3.nix | 38 +- .../haskell-modules/configuration-lts-2.4.nix | 38 +- .../haskell-modules/configuration-lts-2.5.nix | 38 +- .../haskell-modules/configuration-lts-2.6.nix | 38 +- .../haskell-modules/configuration-lts-2.7.nix | 39 +- .../haskell-modules/configuration-lts-2.8.nix | 39 +- .../haskell-modules/configuration-lts-2.9.nix | 40 +- .../haskell-modules/configuration-lts-3.0.nix | 67 +- .../haskell-modules/configuration-lts-3.1.nix | 67 +- .../configuration-lts-3.10.nix | 72 +- .../configuration-lts-3.11.nix | 74 +- .../configuration-lts-3.12.nix | 76 +- .../configuration-lts-3.13.nix | 76 +- .../configuration-lts-3.14.nix | 76 +- .../configuration-lts-3.15.nix | 76 +- .../configuration-lts-3.16.nix | 78 +- .../configuration-lts-3.17.nix | 78 +- .../configuration-lts-3.18.nix | 83 +- .../configuration-lts-3.19.nix | 83 +- .../haskell-modules/configuration-lts-3.2.nix | 67 +- .../configuration-lts-3.20.nix | 83 +- .../configuration-lts-3.21.nix | 84 +- .../configuration-lts-3.22.nix | 85 +- .../haskell-modules/configuration-lts-3.3.nix | 67 +- .../haskell-modules/configuration-lts-3.4.nix | 67 +- .../haskell-modules/configuration-lts-3.5.nix | 68 +- .../haskell-modules/configuration-lts-3.6.nix | 69 +- .../haskell-modules/configuration-lts-3.7.nix | 69 +- .../haskell-modules/configuration-lts-3.8.nix | 69 +- .../haskell-modules/configuration-lts-3.9.nix | 70 +- .../haskell-modules/configuration-lts-4.0.nix | 104 +- .../haskell-modules/configuration-lts-4.1.nix | 107 +- .../haskell-modules/configuration-lts-4.2.nix | 110 +- .../haskell-modules/configuration-lts-5.0.nix | 124 +- .../haskell-modules/configuration-lts-5.1.nix | 124 +- .../configuration-lts-5.10.nix | 141 +- .../configuration-lts-5.11.nix | 143 +- .../configuration-lts-5.12.nix | 144 +- .../configuration-lts-5.13.nix | 146 +- .../configuration-lts-5.14.nix | 152 +- .../configuration-lts-5.15.nix | 153 +- .../configuration-lts-5.16.nix | 156 +- .../configuration-lts-5.17.nix | 158 +- .../configuration-lts-5.18.nix | 166 +- .../haskell-modules/configuration-lts-5.2.nix | 128 +- .../haskell-modules/configuration-lts-5.3.nix | 134 +- .../haskell-modules/configuration-lts-5.4.nix | 136 +- .../haskell-modules/configuration-lts-5.5.nix | 136 +- .../haskell-modules/configuration-lts-5.6.nix | 138 +- .../haskell-modules/configuration-lts-5.7.nix | 140 +- .../haskell-modules/configuration-lts-5.8.nix | 140 +- .../haskell-modules/configuration-lts-5.9.nix | 141 +- .../haskell-modules/configuration-lts-6.0.nix | 7968 +++++++++++ .../haskell-modules/configuration-lts-6.1.nix | 7879 +++++++++++ .../haskell-modules/hackage-packages.nix | 11019 ++++++++-------- 93 files changed, 27638 insertions(+), 5612 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.0.nix create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.1.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index e510b06f195f..a1a76f562c45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -3234,6 +3240,7 @@ self: super: { "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"; @@ -3320,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3558,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3593,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3622,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4195,6 +4202,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4335,6 +4343,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4640,6 +4649,7 @@ self: super: { "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"; @@ -5032,6 +5042,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5091,10 +5102,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5286,6 +5301,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6728,6 +6744,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7870,6 +7887,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8142,6 +8160,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8635,6 +8655,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9059,6 +9080,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9162,6 +9184,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index d42231c5687b..de99a4305798 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -3234,6 +3240,7 @@ self: super: { "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"; @@ -3320,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3558,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3593,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3622,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4195,6 +4202,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4335,6 +4343,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4640,6 +4649,7 @@ self: super: { "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"; @@ -5032,6 +5042,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5091,10 +5102,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5286,6 +5301,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6728,6 +6744,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7870,6 +7887,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8142,6 +8160,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8635,6 +8655,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9059,6 +9080,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9162,6 +9184,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index f02675f360f3..7d4890440681 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -3234,6 +3240,7 @@ self: super: { "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"; @@ -3320,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3558,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3593,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3622,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4195,6 +4202,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4335,6 +4343,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4640,6 +4649,7 @@ self: super: { "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"; @@ -5032,6 +5042,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5091,10 +5102,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5286,6 +5301,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6728,6 +6744,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7870,6 +7887,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8142,6 +8160,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8635,6 +8655,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9059,6 +9080,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9162,6 +9184,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index cee02bac22fa..442c8064c149 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -3234,6 +3240,7 @@ self: super: { "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"; @@ -3320,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3558,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3593,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3622,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4195,6 +4202,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4335,6 +4343,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4640,6 +4649,7 @@ self: super: { "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"; @@ -5032,6 +5042,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5091,10 +5102,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5286,6 +5301,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6728,6 +6744,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7870,6 +7887,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8142,6 +8160,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8635,6 +8655,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9059,6 +9080,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9162,6 +9184,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 74ccbda2caa7..aaa28d9ea69e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2694,6 +2700,7 @@ self: super: { "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"; @@ -3233,6 +3240,7 @@ self: super: { "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"; @@ -3319,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3557,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3592,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3621,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4192,6 +4200,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4332,6 +4341,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4637,6 +4647,7 @@ self: super: { "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"; @@ -5029,6 +5040,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5088,10 +5100,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5283,6 +5299,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6725,6 +6742,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7866,6 +7884,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8138,6 +8157,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8631,6 +8652,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9055,6 +9077,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9158,6 +9181,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 6454037b4227..ddc36102e55a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1816,6 +1818,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2218,6 +2221,7 @@ self: super: { "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"; @@ -2563,6 +2567,7 @@ self: super: { "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-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"; @@ -2599,6 +2604,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2694,6 +2700,7 @@ self: super: { "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"; @@ -3233,6 +3240,7 @@ self: super: { "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"; @@ -3319,6 +3327,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3557,8 +3566,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3592,7 +3599,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3621,6 +3627,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4192,6 +4200,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4332,6 +4341,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4637,6 +4647,7 @@ self: super: { "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"; @@ -5029,6 +5040,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5088,10 +5100,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5283,6 +5299,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6725,6 +6742,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7866,6 +7884,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8138,6 +8157,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8631,6 +8652,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9055,6 +9077,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9158,6 +9181,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 4192ec9ea093..a76634279526 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1815,6 +1817,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2217,6 +2220,7 @@ self: super: { "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"; @@ -2562,6 +2566,7 @@ self: super: { "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-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 +2603,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2693,6 +2699,7 @@ self: super: { "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"; @@ -3232,6 +3239,7 @@ self: super: { "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"; @@ -3318,6 +3326,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3556,8 +3565,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3591,7 +3598,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3620,6 +3626,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4191,6 +4199,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4330,6 +4339,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4635,6 +4645,7 @@ self: super: { "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"; @@ -5027,6 +5038,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5086,10 +5098,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5281,6 +5297,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6723,6 +6740,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7863,6 +7881,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8135,6 +8154,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8628,6 +8649,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9052,6 +9074,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9155,6 +9178,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 5cbc6eddaebf..0938bf86b1e1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -605,6 +605,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_1_7_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -630,6 +631,7 @@ self: super: { "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"; @@ -1815,6 +1817,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2217,6 +2220,7 @@ self: super: { "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"; @@ -2562,6 +2566,7 @@ self: super: { "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-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 +2603,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2693,6 +2699,7 @@ self: super: { "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"; @@ -3232,6 +3239,7 @@ self: super: { "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"; @@ -3318,6 +3326,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3556,8 +3565,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3591,7 +3598,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3620,6 +3626,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4191,6 +4199,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4330,6 +4339,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4635,6 +4645,7 @@ self: super: { "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"; @@ -5027,6 +5038,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5086,10 +5098,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5281,6 +5297,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6723,6 +6740,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7863,6 +7881,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8135,6 +8154,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8628,6 +8649,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9052,6 +9074,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9155,6 +9178,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index d786912d7ed3..a81b094549b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -602,6 +602,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -627,6 +628,7 @@ self: super: { "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"; @@ -749,6 +751,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1811,6 +1814,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2211,6 +2215,7 @@ self: super: { "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"; @@ -2555,6 +2560,7 @@ self: super: { "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-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 +2597,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2686,6 +2693,7 @@ self: super: { "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"; @@ -3224,6 +3232,7 @@ self: super: { "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"; @@ -3310,6 +3319,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3548,8 +3558,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3583,7 +3591,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3612,6 +3619,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4183,6 +4192,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_3"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4322,6 +4332,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4627,6 +4638,7 @@ self: super: { "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"; @@ -5018,6 +5030,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5077,10 +5090,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_3"; "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"; @@ -5272,6 +5289,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6714,6 +6732,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7853,6 +7872,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8124,6 +8144,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8617,6 +8639,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9040,6 +9063,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9143,6 +9167,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index dc5b496eaad1..b8b50fa07b74 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -602,6 +602,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -627,6 +628,7 @@ self: super: { "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"; @@ -749,6 +751,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1811,6 +1814,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2210,6 +2214,7 @@ self: super: { "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"; @@ -2553,6 +2558,7 @@ self: super: { "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-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"; @@ -2589,6 +2595,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2684,6 +2691,7 @@ self: super: { "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"; @@ -3221,6 +3229,7 @@ self: super: { "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"; @@ -3307,6 +3316,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3545,8 +3555,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3580,7 +3588,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3609,6 +3616,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4179,6 +4188,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4318,6 +4328,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4621,6 +4632,7 @@ self: super: { "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"; @@ -5012,6 +5024,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5071,10 +5084,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5266,6 +5283,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6707,6 +6725,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7845,6 +7864,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8115,6 +8135,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8605,6 +8627,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9027,6 +9050,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9130,6 +9154,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 7b7afcd41e88..eff88508dabc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3537,8 +3547,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3571,7 +3579,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3600,6 +3607,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4169,6 +4178,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4307,6 +4317,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4610,6 +4621,7 @@ self: super: { "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"; @@ -4996,6 +5008,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5055,10 +5068,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5250,6 +5267,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6282,6 +6300,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6687,6 +6706,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7822,6 +7842,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8092,6 +8113,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8578,6 +8601,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8999,6 +9023,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9102,6 +9127,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9439,6 +9465,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index b3eef1cd6408..740af97ac4b7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3299,6 +3308,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3536,8 +3546,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3570,7 +3578,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3599,6 +3606,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4168,6 +4177,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4306,6 +4316,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4609,6 +4620,7 @@ self: super: { "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"; @@ -4994,6 +5006,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5053,10 +5066,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5247,6 +5264,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5505,6 +5523,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6278,6 +6297,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6683,6 +6703,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7818,6 +7839,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8088,6 +8110,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8574,6 +8598,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8995,6 +9020,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9098,6 +9124,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9435,6 +9462,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index d51a2aaa3d6b..56ea8aaa31c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3299,6 +3308,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3536,8 +3546,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3570,7 +3578,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3599,6 +3606,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4168,6 +4177,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4306,6 +4316,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4346,6 +4357,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4608,6 +4620,7 @@ self: super: { "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"; @@ -4993,6 +5006,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5052,10 +5066,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5246,6 +5264,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5504,6 +5523,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6277,6 +6297,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6682,6 +6703,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7817,6 +7839,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8087,6 +8110,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8573,6 +8598,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8994,6 +9020,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9097,6 +9124,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9434,6 +9462,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 022b32d0e8ef..9c8da29c0427 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3299,6 +3308,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3536,8 +3546,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3570,7 +3578,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3599,6 +3606,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4167,6 +4176,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4305,6 +4315,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4345,6 +4356,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4607,6 +4619,7 @@ self: super: { "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"; @@ -4992,6 +5005,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5051,10 +5065,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5245,6 +5263,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5503,6 +5522,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6276,6 +6296,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6681,6 +6702,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7816,6 +7838,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8086,6 +8109,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8571,6 +8596,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8992,6 +9018,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9095,6 +9122,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9432,6 +9460,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 18230ecb1424..6cbe830d2a54 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -600,6 +600,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -625,6 +626,7 @@ self: super: { "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"; @@ -747,6 +749,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1808,6 +1811,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2205,6 +2209,7 @@ self: super: { "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"; @@ -2546,6 +2551,7 @@ self: super: { "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-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"; @@ -2582,6 +2588,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2677,6 +2684,7 @@ self: super: { "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"; @@ -3212,6 +3220,7 @@ self: super: { "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"; @@ -3296,6 +3305,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3533,8 +3543,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3567,7 +3575,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3596,6 +3603,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4164,6 +4173,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4302,6 +4312,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4342,6 +4353,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4604,6 +4616,7 @@ self: super: { "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"; @@ -4989,6 +5002,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5048,10 +5062,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5242,6 +5260,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5500,6 +5519,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6273,6 +6293,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6678,6 +6699,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7812,6 +7834,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8082,6 +8105,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8567,6 +8592,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8988,6 +9014,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9091,6 +9118,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9428,6 +9456,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 644c5d4ea7f7..9f6d68c7515f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -600,6 +600,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -625,6 +626,7 @@ self: super: { "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"; @@ -747,6 +749,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1807,6 +1810,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2203,6 +2207,7 @@ self: super: { "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"; @@ -2543,6 +2548,7 @@ self: super: { "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-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"; @@ -2579,6 +2585,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2674,6 +2681,7 @@ self: super: { "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"; @@ -3208,6 +3216,7 @@ self: super: { "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"; @@ -3292,6 +3301,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3529,8 +3539,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3563,7 +3571,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3592,6 +3599,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4160,6 +4169,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4298,6 +4308,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4338,6 +4349,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4600,6 +4612,7 @@ self: super: { "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"; @@ -4985,6 +4998,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5044,10 +5058,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5238,6 +5256,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5496,6 +5515,7 @@ self: super: { "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; "lens-family-core" = dontDistribute super."lens-family-core"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6267,6 +6287,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6672,6 +6693,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7805,6 +7827,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8074,6 +8097,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8558,6 +8583,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8979,6 +9005,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9082,6 +9109,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9418,6 +9446,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 5d8751bdcdba..1705a720d169 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -602,6 +602,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -627,6 +628,7 @@ self: super: { "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"; @@ -749,6 +751,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1811,6 +1814,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2209,6 +2213,7 @@ self: super: { "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"; @@ -2551,6 +2556,7 @@ self: super: { "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-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"; @@ -2587,6 +2593,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2682,6 +2689,7 @@ self: super: { "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"; @@ -3219,6 +3227,7 @@ self: super: { "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"; @@ -3305,6 +3314,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3543,8 +3553,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3577,7 +3585,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3606,6 +3613,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4176,6 +4185,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4315,6 +4325,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4618,6 +4629,7 @@ self: super: { "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"; @@ -5009,6 +5021,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5068,10 +5081,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5263,6 +5280,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6703,6 +6721,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7839,6 +7858,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8109,6 +8129,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8599,6 +8621,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9021,6 +9044,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9124,6 +9148,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 3a7b0040c7e1..e6e83a57225b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2208,6 +2212,7 @@ self: super: { "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"; @@ -2550,6 +2555,7 @@ self: super: { "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-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"; @@ -2586,6 +2592,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2681,6 +2688,7 @@ self: super: { "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"; @@ -3218,6 +3226,7 @@ self: super: { "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"; @@ -3303,6 +3312,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3541,8 +3551,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3575,7 +3583,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3604,6 +3611,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4174,6 +4183,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4312,6 +4322,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4615,6 +4626,7 @@ self: super: { "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"; @@ -5006,6 +5018,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5065,10 +5078,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5260,6 +5277,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6699,6 +6717,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7835,6 +7854,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8105,6 +8125,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8594,6 +8616,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9016,6 +9039,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9119,6 +9143,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9458,6 +9483,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 73b2395fc547..d1bdbbdf4bd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3217,6 +3225,7 @@ self: super: { "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"; @@ -3302,6 +3311,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3540,8 +3550,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3574,7 +3582,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3603,6 +3610,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4173,6 +4182,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4311,6 +4321,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4614,6 +4625,7 @@ self: super: { "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"; @@ -5005,6 +5017,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5064,10 +5077,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5259,6 +5276,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6698,6 +6716,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7834,6 +7853,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8104,6 +8124,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8592,6 +8614,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9013,6 +9036,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9116,6 +9140,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9455,6 +9480,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index b223d0148812..60bd904fb2bb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3217,6 +3225,7 @@ self: super: { "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"; @@ -3302,6 +3311,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3540,8 +3550,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3574,7 +3582,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3603,6 +3610,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4173,6 +4182,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4311,6 +4321,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4614,6 +4625,7 @@ self: super: { "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"; @@ -5000,6 +5012,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5059,10 +5072,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5254,6 +5271,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6693,6 +6711,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7829,6 +7848,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8099,6 +8119,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8587,6 +8609,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9008,6 +9031,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9111,6 +9135,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9450,6 +9475,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 8326bfcbe720..7aa8fcfbef09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3538,8 +3548,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3572,7 +3580,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3601,6 +3608,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4170,6 +4179,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4308,6 +4318,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4611,6 +4622,7 @@ self: super: { "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"; @@ -4997,6 +5009,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5056,10 +5069,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5251,6 +5268,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6689,6 +6707,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7825,6 +7844,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8095,6 +8115,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8582,6 +8604,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9003,6 +9026,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9106,6 +9130,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9445,6 +9470,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index a53d75fac5b5..ef6add61991f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -601,6 +601,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -626,6 +627,7 @@ self: super: { "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"; @@ -748,6 +750,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1810,6 +1813,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2207,6 +2211,7 @@ self: super: { "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"; @@ -2549,6 +2554,7 @@ self: super: { "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-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"; @@ -2585,6 +2591,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2680,6 +2687,7 @@ self: super: { "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"; @@ -3215,6 +3223,7 @@ self: super: { "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"; @@ -3300,6 +3309,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3537,8 +3547,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3571,7 +3579,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3600,6 +3607,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4169,6 +4178,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4307,6 +4317,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = dontDistribute super."hdocs"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4610,6 +4621,7 @@ self: super: { "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"; @@ -4996,6 +5008,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5055,10 +5068,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = dontDistribute super."include-file"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5250,6 +5267,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -6688,6 +6706,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7824,6 +7843,7 @@ self: super: { "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" = doDistribute super."snap_0_13_3_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8094,6 +8114,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8581,6 +8603,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -9002,6 +9025,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_3"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9105,6 +9129,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9444,6 +9469,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 0d799e8ae5a0..50e30368e5cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1503,6 +1506,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1798,6 +1802,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2193,6 +2198,7 @@ self: super: { "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"; @@ -2531,6 +2537,7 @@ self: super: { "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-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 +2574,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2662,6 +2670,7 @@ self: super: { "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"; @@ -3064,6 +3073,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3197,6 +3207,7 @@ self: super: { "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"; @@ -3281,6 +3292,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3516,8 +3528,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3550,7 +3560,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3579,6 +3588,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4145,6 +4156,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4283,6 +4295,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4323,6 +4336,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4583,6 +4597,7 @@ self: super: { "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"; @@ -4964,6 +4979,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5022,10 +5038,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5215,6 +5235,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5468,6 +5489,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6228,6 +6250,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6633,6 +6656,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7764,6 +7788,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_1"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8030,6 +8055,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8512,6 +8539,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8931,6 +8959,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9033,6 +9062,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9365,6 +9395,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index 01bc7cbc6205..a818df3aca52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1503,6 +1506,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1798,6 +1802,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -2192,6 +2197,7 @@ self: super: { "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"; @@ -2530,6 +2536,7 @@ self: super: { "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-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 +2573,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2661,6 +2669,7 @@ self: super: { "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"; @@ -3063,6 +3072,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3196,6 +3206,7 @@ self: super: { "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"; @@ -3280,6 +3291,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3515,8 +3527,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3549,7 +3559,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3578,6 +3587,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4144,6 +4155,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4282,6 +4294,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4322,6 +4335,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4582,6 +4596,7 @@ self: super: { "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"; @@ -4963,6 +4978,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5021,10 +5037,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5214,6 +5234,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5467,6 +5488,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6227,6 +6249,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6632,6 +6655,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7763,6 +7787,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_1"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8029,6 +8054,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8511,6 +8538,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8930,6 +8958,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9032,6 +9061,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9364,6 +9394,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index ad2dff1697ec..6d807cd07ad4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1496,6 +1500,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1789,6 +1794,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1866,6 +1872,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2181,6 +2188,7 @@ self: super: { "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"; @@ -2518,6 +2526,7 @@ self: super: { "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-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"; @@ -2554,6 +2563,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2648,6 +2658,7 @@ self: super: { "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"; @@ -3048,6 +3059,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3180,6 +3192,7 @@ self: super: { "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"; @@ -3263,6 +3276,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3498,8 +3512,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3532,7 +3544,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3561,6 +3572,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4125,6 +4138,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4263,6 +4277,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4303,6 +4318,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4563,6 +4579,7 @@ self: super: { "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"; @@ -4683,6 +4700,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4941,6 +4959,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4999,10 +5018,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5190,6 +5213,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5443,6 +5467,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6202,6 +6227,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6606,6 +6632,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6712,6 +6739,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7733,6 +7761,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_4"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7993,6 +8022,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8471,6 +8502,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8890,6 +8922,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8992,6 +9025,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9322,6 +9356,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 78498fe3b031..b6dd0c7ee7bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2180,6 +2187,7 @@ self: super: { "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"; @@ -2517,6 +2525,7 @@ self: super: { "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-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"; @@ -2553,6 +2562,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2647,6 +2657,7 @@ self: super: { "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"; @@ -3047,6 +3058,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3179,6 +3191,7 @@ self: super: { "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"; @@ -3262,6 +3275,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3497,8 +3511,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3530,7 +3542,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3559,6 +3570,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4123,6 +4136,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4244,6 +4258,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4260,6 +4275,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4300,6 +4316,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4560,6 +4577,7 @@ self: super: { "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"; @@ -4680,6 +4698,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4938,6 +4957,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4996,10 +5016,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5175,6 +5199,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5186,6 +5211,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5439,6 +5465,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6198,6 +6225,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6601,6 +6629,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6707,6 +6736,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7727,6 +7757,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_4"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7986,6 +8017,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8463,6 +8496,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8882,6 +8916,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8984,6 +9019,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9314,6 +9350,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index fe7e4bdb9935..15c5dcb6790d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2180,6 +2187,7 @@ self: super: { "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"; @@ -2517,6 +2525,7 @@ self: super: { "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-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"; @@ -2553,6 +2562,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2647,6 +2657,7 @@ self: super: { "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"; @@ -3047,6 +3058,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3179,6 +3191,7 @@ self: super: { "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"; @@ -3262,6 +3275,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3497,8 +3511,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3530,7 +3542,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3559,6 +3570,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4123,6 +4136,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4244,6 +4258,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4260,6 +4275,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4300,6 +4316,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4560,6 +4577,7 @@ self: super: { "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"; @@ -4680,6 +4698,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4938,6 +4957,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4996,10 +5016,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5175,6 +5199,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5186,6 +5211,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5439,6 +5465,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6198,6 +6225,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6601,6 +6629,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6707,6 +6736,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7726,6 +7756,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_4"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7985,6 +8016,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8462,6 +8495,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8881,6 +8915,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8983,6 +9018,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9313,6 +9349,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 075deba88588..970101491d26 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2180,6 +2187,7 @@ self: super: { "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"; @@ -2517,6 +2525,7 @@ self: super: { "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-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"; @@ -2553,6 +2562,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2647,6 +2657,7 @@ self: super: { "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"; @@ -3047,6 +3058,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3179,6 +3191,7 @@ self: super: { "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"; @@ -3262,6 +3275,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3497,8 +3511,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3530,7 +3542,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3559,6 +3570,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3896,6 +3909,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4122,6 +4136,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4243,6 +4258,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4259,6 +4275,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4299,6 +4316,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4559,6 +4577,7 @@ self: super: { "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"; @@ -4679,6 +4698,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4936,6 +4956,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4994,10 +5015,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5173,6 +5198,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5184,6 +5210,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5437,6 +5464,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6196,6 +6224,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6599,6 +6628,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6705,6 +6735,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7724,6 +7755,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7983,6 +8015,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8460,6 +8494,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8879,6 +8914,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8981,6 +9017,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9311,6 +9348,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index e8be3fd66e5b..532619c95554 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2180,6 +2187,7 @@ self: super: { "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"; @@ -2517,6 +2525,7 @@ self: super: { "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-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"; @@ -2553,6 +2562,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2647,6 +2657,7 @@ self: super: { "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"; @@ -3047,6 +3058,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3179,6 +3191,7 @@ self: super: { "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"; @@ -3261,6 +3274,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3496,8 +3510,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3529,7 +3541,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3558,6 +3569,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3895,6 +3908,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4121,6 +4135,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4242,6 +4257,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4258,6 +4274,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4298,6 +4315,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4558,6 +4576,7 @@ self: super: { "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"; @@ -4678,6 +4697,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4934,6 +4954,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4992,10 +5013,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5171,6 +5196,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5182,6 +5208,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5435,6 +5462,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6194,6 +6222,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6597,6 +6626,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6703,6 +6733,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7722,6 +7753,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7981,6 +8013,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8458,6 +8492,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8877,6 +8912,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8979,6 +9015,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9308,6 +9345,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index aae8971f934d..850d9e1f8547 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2180,6 +2187,7 @@ self: super: { "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"; @@ -2517,6 +2525,7 @@ self: super: { "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-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"; @@ -2553,6 +2562,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2647,6 +2657,7 @@ self: super: { "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"; @@ -3046,6 +3057,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3178,6 +3190,7 @@ self: super: { "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"; @@ -3260,6 +3273,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3495,8 +3509,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3528,7 +3540,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3557,6 +3568,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3894,6 +3907,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4120,6 +4134,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4241,6 +4256,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4257,6 +4273,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4297,6 +4314,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4557,6 +4575,7 @@ self: super: { "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"; @@ -4677,6 +4696,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4933,6 +4953,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4991,10 +5012,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5170,6 +5195,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5181,6 +5207,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5434,6 +5461,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6192,6 +6220,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6595,6 +6624,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6701,6 +6731,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7720,6 +7751,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7978,6 +8010,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8455,6 +8489,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8874,6 +8909,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8976,6 +9012,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9305,6 +9342,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 73ec49659702..0dc74484dec4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1495,6 +1499,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1788,6 +1793,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1865,6 +1871,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2179,6 +2186,7 @@ self: super: { "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"; @@ -2516,6 +2524,7 @@ self: super: { "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-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"; @@ -2552,6 +2561,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2646,6 +2656,7 @@ self: super: { "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"; @@ -3044,6 +3055,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3175,6 +3187,7 @@ self: super: { "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"; @@ -3257,6 +3270,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3492,8 +3506,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3525,7 +3537,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3554,6 +3565,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3891,6 +3904,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4117,6 +4131,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4238,6 +4253,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4254,6 +4270,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4294,6 +4311,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4554,6 +4572,7 @@ self: super: { "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"; @@ -4674,6 +4693,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4930,6 +4950,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4988,10 +5009,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5167,6 +5192,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5178,6 +5204,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5430,6 +5457,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6188,6 +6216,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6591,6 +6620,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6697,6 +6727,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7716,6 +7747,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7974,6 +8006,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8451,6 +8485,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8870,6 +8905,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8972,6 +9008,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9300,6 +9337,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index ea7b3316a3cc..6ea5fa61d3ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2177,6 +2184,7 @@ self: super: { "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"; @@ -2514,6 +2522,7 @@ self: super: { "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-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"; @@ -2550,6 +2559,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2644,6 +2654,7 @@ self: super: { "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"; @@ -3042,6 +3053,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3172,6 +3184,7 @@ self: super: { "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"; @@ -3253,6 +3266,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3488,8 +3502,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3521,7 +3533,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3550,6 +3561,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3887,6 +3900,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4113,6 +4127,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4234,6 +4249,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4250,6 +4266,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4290,6 +4307,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4550,6 +4568,7 @@ self: super: { "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"; @@ -4670,6 +4689,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4926,6 +4946,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4984,10 +5005,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5163,6 +5188,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5174,6 +5200,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5426,6 +5453,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6184,6 +6212,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6586,6 +6615,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6692,6 +6722,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7711,6 +7742,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7969,6 +8001,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8446,6 +8480,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8865,6 +8900,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8967,6 +9003,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9295,6 +9332,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 7986d2a0c43e..b7c191ec986b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2176,6 +2183,7 @@ self: super: { "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"; @@ -2513,6 +2521,7 @@ self: super: { "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-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"; @@ -2549,6 +2558,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2643,6 +2653,7 @@ self: super: { "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"; @@ -3040,6 +3051,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3170,6 +3182,7 @@ self: super: { "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"; @@ -3251,6 +3264,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3486,8 +3500,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3519,7 +3531,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3548,6 +3559,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3885,6 +3898,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4111,6 +4125,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4232,6 +4247,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4248,6 +4264,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4288,6 +4305,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4548,6 +4566,7 @@ self: super: { "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"; @@ -4668,6 +4687,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4924,6 +4944,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4982,10 +5003,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5161,6 +5186,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5172,6 +5198,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5424,6 +5451,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6181,6 +6209,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6583,6 +6612,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6689,6 +6719,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7708,6 +7739,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_5"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7966,6 +7998,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8442,6 +8476,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8861,6 +8896,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8963,6 +8999,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9290,6 +9327,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 64b46db97217..57f95041811c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2176,6 +2183,7 @@ self: super: { "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"; @@ -2513,6 +2521,7 @@ self: super: { "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-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"; @@ -2549,6 +2558,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2643,6 +2653,7 @@ self: super: { "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"; @@ -3040,6 +3051,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3170,6 +3182,7 @@ self: super: { "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"; @@ -3251,6 +3264,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3485,8 +3499,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3518,7 +3530,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3547,6 +3558,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3884,6 +3897,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4110,6 +4124,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4231,6 +4246,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4247,6 +4263,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4287,6 +4304,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4547,6 +4565,7 @@ self: super: { "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"; @@ -4667,6 +4686,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4923,6 +4943,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4981,10 +5002,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5160,6 +5185,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5171,6 +5197,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5423,6 +5450,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5751,6 +5779,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -6179,6 +6208,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6581,6 +6611,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6687,6 +6718,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7706,6 +7738,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7964,6 +7997,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8440,6 +8475,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8859,6 +8895,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8961,6 +8998,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9002,6 +9040,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9287,6 +9326,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index e0e4bbb13b14..e287806e6c06 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1502,6 +1505,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1797,6 +1801,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1874,6 +1879,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2189,6 +2195,7 @@ self: super: { "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"; @@ -2527,6 +2534,7 @@ self: super: { "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-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"; @@ -2563,6 +2571,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2658,6 +2667,7 @@ self: super: { "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"; @@ -3060,6 +3070,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3193,6 +3204,7 @@ self: super: { "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"; @@ -3277,6 +3289,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3512,8 +3525,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3546,7 +3557,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3575,6 +3585,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4141,6 +4153,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4279,6 +4292,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4319,6 +4333,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4579,6 +4594,7 @@ self: super: { "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"; @@ -4960,6 +4976,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5018,10 +5035,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5211,6 +5232,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5464,6 +5486,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6224,6 +6247,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6629,6 +6653,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7760,6 +7785,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8026,6 +8052,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8508,6 +8536,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8927,6 +8956,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9029,6 +9059,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9360,6 +9391,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 6f01eacd3a6c..67054c340589 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2176,6 +2183,7 @@ self: super: { "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"; @@ -2206,6 +2214,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2512,6 +2521,7 @@ self: super: { "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-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"; @@ -2548,6 +2558,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2642,6 +2653,7 @@ self: super: { "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"; @@ -3039,6 +3051,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3169,6 +3182,7 @@ self: super: { "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"; @@ -3250,6 +3264,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3484,8 +3499,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3517,7 +3530,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3546,6 +3558,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3883,6 +3897,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4109,6 +4124,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4230,6 +4246,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4246,6 +4263,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4286,6 +4304,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4546,6 +4565,7 @@ self: super: { "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"; @@ -4666,6 +4686,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4922,6 +4943,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4980,10 +5002,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5159,6 +5185,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5170,6 +5197,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5422,6 +5450,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5750,6 +5779,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -6178,6 +6208,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6580,6 +6611,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6642,6 +6674,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; @@ -6685,6 +6718,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7703,6 +7737,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7961,6 +7996,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8437,6 +8474,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8856,6 +8894,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8958,6 +8997,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8999,6 +9039,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9284,6 +9325,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index aa5514cdc83a..f1c3faa74eed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2176,6 +2183,7 @@ self: super: { "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"; @@ -2206,6 +2214,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2512,6 +2521,7 @@ self: super: { "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-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"; @@ -2548,6 +2558,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2642,6 +2653,7 @@ self: super: { "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"; @@ -3039,6 +3051,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3169,6 +3182,7 @@ self: super: { "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"; @@ -3250,6 +3264,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3484,8 +3499,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3517,7 +3530,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3546,6 +3558,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3883,6 +3897,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4109,6 +4124,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4230,6 +4246,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4246,6 +4263,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4286,6 +4304,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4546,6 +4565,7 @@ self: super: { "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"; @@ -4666,6 +4686,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4922,6 +4943,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4980,10 +5002,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5159,6 +5185,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5170,6 +5197,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5422,6 +5450,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5750,6 +5779,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -6178,6 +6208,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6580,6 +6611,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6642,6 +6674,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; @@ -6685,6 +6718,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7702,6 +7736,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7960,6 +7995,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8436,6 +8473,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8855,6 +8893,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8957,6 +8996,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8998,6 +9038,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9283,6 +9324,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 0976d65611ec..65fb5ffd1699 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1494,6 +1498,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1786,6 +1791,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1863,6 +1869,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2176,6 +2183,7 @@ self: super: { "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"; @@ -2206,6 +2214,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2512,6 +2521,7 @@ self: super: { "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-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"; @@ -2548,6 +2558,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2642,6 +2653,7 @@ self: super: { "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"; @@ -3039,6 +3051,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3169,6 +3182,7 @@ self: super: { "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"; @@ -3250,6 +3264,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3484,8 +3499,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3517,7 +3530,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3546,6 +3558,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3883,6 +3897,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -4109,6 +4124,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4230,6 +4246,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4246,6 +4263,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4286,6 +4304,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4545,6 +4564,7 @@ self: super: { "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"; @@ -4665,6 +4685,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4921,6 +4942,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -4979,10 +5001,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5158,6 +5184,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5169,6 +5196,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5421,6 +5449,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5749,6 +5778,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = dontDistribute super."matrices"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -6177,6 +6207,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6579,6 +6610,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -6641,6 +6673,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = dontDistribute super."pipes-text"; @@ -6684,6 +6717,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7701,6 +7735,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7959,6 +7994,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8435,6 +8472,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8854,6 +8892,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8956,6 +8995,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8997,6 +9037,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9282,6 +9323,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 3d10d578f401..0de46ff57ea2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1502,6 +1505,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1797,6 +1801,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1874,6 +1879,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2189,6 +2195,7 @@ self: super: { "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"; @@ -2527,6 +2534,7 @@ self: super: { "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-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"; @@ -2563,6 +2571,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2658,6 +2667,7 @@ self: super: { "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"; @@ -3060,6 +3070,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3192,6 +3203,7 @@ self: super: { "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"; @@ -3276,6 +3288,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3511,8 +3524,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3545,7 +3556,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3574,6 +3584,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4140,6 +4152,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4278,6 +4291,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4318,6 +4332,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4578,6 +4593,7 @@ self: super: { "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"; @@ -4958,6 +4974,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5016,10 +5033,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5209,6 +5230,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5462,6 +5484,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6222,6 +6245,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6627,6 +6651,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7758,6 +7783,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8024,6 +8050,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8506,6 +8534,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8925,6 +8954,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9027,6 +9057,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9358,6 +9389,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 7fd44e3ea81b..e2e6729197e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_3_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1502,6 +1505,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1796,6 +1800,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1873,6 +1878,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2188,6 +2194,7 @@ self: super: { "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"; @@ -2526,6 +2533,7 @@ self: super: { "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-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"; @@ -2562,6 +2570,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2657,6 +2666,7 @@ self: super: { "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"; @@ -3059,6 +3069,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3191,6 +3202,7 @@ self: super: { "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"; @@ -3275,6 +3287,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3510,8 +3523,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3544,7 +3555,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3573,6 +3583,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4139,6 +4151,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4277,6 +4290,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4317,6 +4331,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4577,6 +4592,7 @@ self: super: { "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"; @@ -4957,6 +4973,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5015,10 +5032,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5208,6 +5229,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5461,6 +5483,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6221,6 +6244,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6625,6 +6649,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7755,6 +7780,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8021,6 +8047,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8503,6 +8531,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8922,6 +8951,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9024,6 +9054,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9355,6 +9386,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 33b8ee13c9ad..407a6d348cf3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1502,6 +1505,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1796,6 +1800,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1873,6 +1878,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2188,6 +2194,7 @@ self: super: { "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"; @@ -2525,6 +2532,7 @@ self: super: { "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-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"; @@ -2561,6 +2569,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2656,6 +2665,7 @@ self: super: { "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"; @@ -3058,6 +3068,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3190,6 +3201,7 @@ self: super: { "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"; @@ -3274,6 +3286,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3509,8 +3522,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3543,7 +3554,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3572,6 +3582,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4138,6 +4150,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4276,6 +4289,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4316,6 +4330,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4576,6 +4591,7 @@ self: super: { "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"; @@ -4956,6 +4972,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5014,10 +5031,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5207,6 +5228,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5460,6 +5482,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6220,6 +6243,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6624,6 +6648,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7754,6 +7779,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8020,6 +8046,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8502,6 +8530,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8921,6 +8950,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9023,6 +9053,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9354,6 +9385,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 5674cea7156e..8760560699d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -597,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -622,6 +623,7 @@ self: super: { "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"; @@ -743,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1500,6 +1503,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1793,6 +1797,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1870,6 +1875,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2185,6 +2191,7 @@ self: super: { "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"; @@ -2522,6 +2529,7 @@ self: super: { "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-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"; @@ -2558,6 +2566,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2653,6 +2662,7 @@ self: super: { "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"; @@ -3055,6 +3065,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3187,6 +3198,7 @@ self: super: { "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"; @@ -3271,6 +3283,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3506,8 +3519,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3540,7 +3551,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3569,6 +3579,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4133,6 +4145,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4271,6 +4284,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4311,6 +4325,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4571,6 +4586,7 @@ self: super: { "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"; @@ -4951,6 +4967,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5009,10 +5026,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5202,6 +5223,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5455,6 +5477,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6214,6 +6237,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6618,6 +6642,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7748,6 +7773,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8014,6 +8040,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8494,6 +8522,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8913,6 +8942,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9015,6 +9045,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9346,6 +9377,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 9d6628a57c8c..73b09b7b95b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -742,6 +745,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1499,6 +1503,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1792,6 +1797,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1869,6 +1875,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2184,6 +2191,7 @@ self: super: { "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"; @@ -2521,6 +2529,7 @@ self: super: { "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-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"; @@ -2557,6 +2566,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2652,6 +2662,7 @@ self: super: { "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"; @@ -3054,6 +3065,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3186,6 +3198,7 @@ self: super: { "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"; @@ -3270,6 +3283,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3505,8 +3519,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3539,7 +3551,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3568,6 +3579,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4132,6 +4145,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4270,6 +4284,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4310,6 +4325,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4570,6 +4586,7 @@ self: super: { "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"; @@ -4950,6 +4967,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5008,10 +5026,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5201,6 +5223,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5454,6 +5477,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6214,6 +6238,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6618,6 +6643,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7748,6 +7774,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8014,6 +8041,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8494,6 +8523,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8913,6 +8943,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9015,6 +9046,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9346,6 +9378,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index dd7d230aa11b..cdf91b748052 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1498,6 +1502,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1791,6 +1796,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1868,6 +1874,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2183,6 +2190,7 @@ self: super: { "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"; @@ -2520,6 +2528,7 @@ self: super: { "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-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"; @@ -2556,6 +2565,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2651,6 +2661,7 @@ self: super: { "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"; @@ -3053,6 +3064,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3185,6 +3197,7 @@ self: super: { "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"; @@ -3268,6 +3281,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3503,8 +3517,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3537,7 +3549,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3566,6 +3577,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4130,6 +4143,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4268,6 +4282,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4308,6 +4323,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4568,6 +4584,7 @@ self: super: { "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"; @@ -4948,6 +4965,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5006,10 +5024,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5199,6 +5221,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5452,6 +5475,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_3"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6212,6 +6236,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6616,6 +6641,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7745,6 +7771,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_2"; "snap-accept" = dontDistribute super."snap-accept"; @@ -8008,6 +8035,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8488,6 +8517,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8907,6 +8937,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -9009,6 +9040,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9340,6 +9372,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 83d57b18f946..13cda9837f12 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -250,6 +250,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -596,6 +597,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -621,6 +623,7 @@ self: super: { "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"; @@ -741,6 +744,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = doDistribute super."ObjectName_1_1_0_0"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1496,6 +1500,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto" = dontDistribute super."auto"; @@ -1789,6 +1794,7 @@ self: super: { "bloodhound-amazonka-auth" = dontDistribute super."bloodhound-amazonka-auth"; "bloomfilter" = dontDistribute super."bloomfilter"; "bloomfilter-redis" = dontDistribute super."bloomfilter-redis"; + "blosum" = dontDistribute super."blosum"; "bloxorz" = dontDistribute super."bloxorz"; "blubber" = dontDistribute super."blubber"; "blubber-server" = dontDistribute super."blubber-server"; @@ -1866,6 +1872,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15"; "byteset" = dontDistribute super."byteset"; "bytestring-arbitrary" = dontDistribute super."bytestring-arbitrary"; + "bytestring-builder" = doDistribute super."bytestring-builder_0_10_6_0_0"; "bytestring-class" = dontDistribute super."bytestring-class"; "bytestring-conversion" = doDistribute super."bytestring-conversion_0_3_0"; "bytestring-csv" = dontDistribute super."bytestring-csv"; @@ -2181,6 +2188,7 @@ self: super: { "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"; @@ -2518,6 +2526,7 @@ self: super: { "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-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"; @@ -2554,6 +2563,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2649,6 +2659,7 @@ self: super: { "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"; @@ -3049,6 +3060,7 @@ self: super: { "error-util" = dontDistribute super."error-util"; "errorcall-eq-instance" = doDistribute super."errorcall-eq-instance_0_2_0_1"; "errors" = doDistribute super."errors_1_4_7"; + "ersatz" = doDistribute super."ersatz_0_3"; "ersatz-toysat" = dontDistribute super."ersatz-toysat"; "ert" = dontDistribute super."ert"; "esotericbot" = dontDistribute super."esotericbot"; @@ -3181,6 +3193,7 @@ self: super: { "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"; @@ -3264,6 +3277,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3499,8 +3513,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3533,7 +3545,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = dontDistribute super."ghc-typelits-natnormalise"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3562,6 +3573,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -4126,6 +4139,7 @@ self: super: { "haskell-packages" = doDistribute super."haskell-packages_0_2_4_4"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4264,6 +4278,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_1_3"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4304,6 +4319,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4564,6 +4580,7 @@ self: super: { "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"; @@ -4684,6 +4701,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4942,6 +4960,7 @@ self: super: { "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"; "idna2008" = dontDistribute super."idna2008"; @@ -5000,10 +5019,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -5193,6 +5216,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5446,6 +5470,7 @@ self: super: { "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; "lens-family" = dontDistribute super."lens-family"; + "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-regex" = dontDistribute super."lens-regex"; @@ -6205,6 +6230,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6609,6 +6635,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -7738,6 +7765,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_3"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7999,6 +8027,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8477,6 +8507,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8896,6 +8927,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8998,6 +9030,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -9328,6 +9361,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 0570da6a9392..585cc40ead85 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -585,6 +586,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -610,6 +612,7 @@ self: super: { "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"; @@ -730,6 +733,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1013,6 +1017,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1459,6 +1464,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1740,6 +1746,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1815,6 +1822,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2122,6 +2130,7 @@ self: super: { "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"; @@ -2152,6 +2161,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2160,6 +2170,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2455,6 +2466,7 @@ self: super: { "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-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"; @@ -2490,6 +2502,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2582,6 +2595,7 @@ self: super: { "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"; @@ -2883,6 +2897,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3096,6 +3111,7 @@ self: super: { "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"; @@ -3160,6 +3176,7 @@ self: super: { "fixed-vector" = doDistribute super."fixed-vector_0_8_0_0"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3174,6 +3191,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3406,8 +3424,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3439,7 +3455,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3468,6 +3483,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3801,6 +3818,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3861,7 +3879,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4024,6 +4044,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4144,6 +4165,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4160,6 +4182,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4200,6 +4223,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4456,6 +4480,7 @@ self: super: { "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"; @@ -4575,6 +4600,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4826,6 +4852,7 @@ self: super: { "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"; @@ -4877,10 +4904,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4896,6 +4927,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5051,6 +5083,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5062,6 +5095,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5198,6 +5232,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5299,6 +5342,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5545,6 +5589,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5619,6 +5664,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5865,6 +5911,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6037,6 +6084,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6430,6 +6478,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6486,6 +6535,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; @@ -6529,6 +6579,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7068,6 +7119,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7537,6 +7589,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7789,6 +7842,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8243,6 +8298,7 @@ self: super: { "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"; @@ -8254,6 +8310,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8667,6 +8724,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8766,6 +8824,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8806,6 +8865,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9083,6 +9143,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 9f1d101b960d..127522c53e56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -585,6 +586,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_5_3"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -610,6 +612,7 @@ self: super: { "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"; @@ -730,6 +733,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1013,6 +1017,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1458,6 +1463,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1739,6 +1745,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1814,6 +1821,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2121,6 +2129,7 @@ self: super: { "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"; @@ -2151,6 +2160,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2159,6 +2169,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2454,6 +2465,7 @@ self: super: { "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-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"; @@ -2489,6 +2501,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2581,6 +2594,7 @@ self: super: { "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"; @@ -2882,6 +2896,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3094,6 +3109,7 @@ self: super: { "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"; @@ -3158,6 +3174,7 @@ self: super: { "fixed-vector" = doDistribute super."fixed-vector_0_8_0_0"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3172,6 +3189,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3404,8 +3422,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3437,7 +3453,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3466,6 +3481,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3799,6 +3816,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3859,7 +3877,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4022,6 +4042,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4142,6 +4163,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4158,6 +4180,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4198,6 +4221,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4454,6 +4478,7 @@ self: super: { "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"; @@ -4573,6 +4598,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4824,6 +4850,7 @@ self: super: { "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"; @@ -4875,10 +4902,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4894,6 +4925,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5049,6 +5081,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5060,6 +5093,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5196,6 +5230,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5297,6 +5340,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5542,6 +5586,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5616,6 +5661,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5862,6 +5908,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6034,6 +6081,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6427,6 +6475,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6482,6 +6531,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; @@ -6525,6 +6575,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7063,6 +7114,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7532,6 +7584,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7784,6 +7837,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8238,6 +8293,7 @@ self: super: { "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"; @@ -8249,6 +8305,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8661,6 +8718,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8760,6 +8818,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8800,6 +8859,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9077,6 +9137,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 01cc9c230d31..cfad4099da79 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1805,6 +1812,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2112,6 +2120,7 @@ self: super: { "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"; @@ -2142,6 +2151,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2150,6 +2160,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2444,6 +2455,7 @@ self: super: { "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-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"; @@ -2479,6 +2491,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2571,6 +2584,7 @@ self: super: { "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"; @@ -2869,6 +2883,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3081,6 +3096,7 @@ self: super: { "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"; @@ -3143,6 +3159,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3157,6 +3174,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3389,8 +3407,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3421,7 +3437,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3450,6 +3465,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3781,6 +3798,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3841,7 +3859,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4004,6 +4024,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4123,6 +4144,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4139,6 +4161,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4179,6 +4202,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4237,6 +4261,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4433,6 +4458,7 @@ self: super: { "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"; @@ -4552,6 +4578,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4802,6 +4829,7 @@ self: super: { "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"; @@ -4851,10 +4879,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4870,6 +4902,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5025,6 +5058,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5036,6 +5070,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5085,6 +5120,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5170,6 +5206,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5270,6 +5315,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5514,6 +5560,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5588,6 +5635,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5833,6 +5881,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6002,6 +6051,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6136,6 +6186,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6393,6 +6444,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6448,6 +6500,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6491,6 +6544,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6603,6 +6657,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7024,6 +7079,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7493,6 +7549,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7741,6 +7798,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8191,6 +8250,7 @@ self: super: { "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"; @@ -8202,6 +8262,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8610,6 +8671,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8703,10 +8765,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8747,6 +8811,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9020,6 +9085,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index f539ba6f6cd6..867bf26e51a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1805,10 +1812,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2111,6 +2120,7 @@ self: super: { "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"; @@ -2141,6 +2151,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2149,6 +2160,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2443,6 +2455,7 @@ self: super: { "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-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"; @@ -2478,6 +2491,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2570,6 +2584,7 @@ self: super: { "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"; @@ -2868,6 +2883,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3079,6 +3095,7 @@ self: super: { "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"; @@ -3141,6 +3158,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3155,6 +3173,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3387,8 +3406,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3419,7 +3436,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3448,6 +3464,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3779,6 +3797,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3839,7 +3858,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4002,6 +4023,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4121,6 +4143,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4137,6 +4160,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4177,6 +4201,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4235,6 +4260,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4431,6 +4457,7 @@ self: super: { "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"; @@ -4550,6 +4577,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4800,6 +4828,7 @@ self: super: { "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"; @@ -4849,10 +4878,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4868,6 +4901,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5023,6 +5057,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5034,6 +5069,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5083,6 +5119,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5168,6 +5205,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5268,6 +5314,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5512,6 +5559,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5586,6 +5634,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5831,6 +5880,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6000,6 +6050,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6134,6 +6185,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6365,6 +6417,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1"; @@ -6390,6 +6443,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6445,6 +6499,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6488,6 +6543,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6600,6 +6656,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7021,6 +7078,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7490,6 +7548,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7738,6 +7797,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8188,6 +8249,7 @@ self: super: { "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"; @@ -8199,6 +8261,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8607,6 +8670,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8700,10 +8764,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8744,6 +8810,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9017,6 +9084,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 973b779e7822..9c6c19e9b285 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1805,10 +1812,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2110,6 +2119,7 @@ self: super: { "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"; @@ -2140,6 +2150,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2148,6 +2159,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2442,6 +2454,7 @@ self: super: { "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-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"; @@ -2477,6 +2490,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2569,6 +2583,7 @@ self: super: { "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"; @@ -2867,6 +2882,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3078,6 +3094,7 @@ self: super: { "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"; @@ -3140,6 +3157,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3154,6 +3172,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3386,8 +3405,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3418,7 +3435,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3447,6 +3463,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3777,6 +3795,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3837,7 +3856,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4000,6 +4021,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4119,6 +4141,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4135,6 +4158,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4175,6 +4199,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4233,6 +4258,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4429,6 +4455,7 @@ self: super: { "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"; @@ -4548,6 +4575,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4798,6 +4826,7 @@ self: super: { "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"; @@ -4847,10 +4876,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4866,6 +4899,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5021,6 +5055,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5032,6 +5067,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5081,6 +5117,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5166,6 +5203,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5266,6 +5312,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5510,6 +5557,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5584,6 +5632,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5829,6 +5878,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5998,6 +6048,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6132,6 +6183,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6362,6 +6414,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1"; @@ -6387,6 +6440,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6442,6 +6496,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6485,6 +6540,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6597,6 +6653,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7018,6 +7075,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7487,6 +7545,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7735,6 +7794,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8042,6 +8103,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8183,6 +8245,7 @@ self: super: { "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"; @@ -8194,6 +8257,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8602,6 +8666,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8695,10 +8760,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8739,6 +8806,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9001,6 +9069,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -9010,6 +9079,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index a312e098f726..9318b13ae7dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1805,10 +1812,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2110,6 +2119,7 @@ self: super: { "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"; @@ -2140,6 +2150,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2148,6 +2159,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2442,6 +2454,7 @@ self: super: { "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-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"; @@ -2477,6 +2490,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2569,6 +2583,7 @@ self: super: { "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"; @@ -2867,6 +2882,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3078,6 +3094,7 @@ self: super: { "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"; @@ -3140,6 +3157,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3154,6 +3172,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3386,8 +3405,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3418,7 +3435,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3447,6 +3463,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3777,6 +3795,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3837,7 +3856,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4000,6 +4021,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4119,6 +4141,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4135,6 +4158,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4175,6 +4199,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4232,6 +4257,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4428,6 +4454,7 @@ self: super: { "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"; @@ -4547,6 +4574,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4797,6 +4825,7 @@ self: super: { "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"; @@ -4846,10 +4875,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4865,6 +4898,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5020,6 +5054,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5031,6 +5066,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5080,6 +5116,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5165,6 +5202,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5264,6 +5310,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5508,6 +5555,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5582,6 +5630,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5827,6 +5876,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5996,6 +6046,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6130,6 +6181,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6359,6 +6411,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1"; @@ -6384,6 +6437,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6439,6 +6493,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6482,6 +6537,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6594,6 +6650,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7015,6 +7072,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7484,6 +7542,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7732,6 +7791,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8039,6 +8100,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8180,6 +8242,7 @@ self: super: { "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"; @@ -8191,6 +8254,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8598,6 +8662,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8691,10 +8756,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8735,6 +8802,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8997,6 +9065,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -9006,6 +9075,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index ea5f74d187d4..6766f4005290 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1804,10 +1811,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2109,6 +2118,7 @@ self: super: { "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"; @@ -2139,6 +2149,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2147,6 +2158,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2440,6 +2452,7 @@ self: super: { "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-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"; @@ -2475,6 +2488,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2567,6 +2581,7 @@ self: super: { "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"; @@ -2865,6 +2880,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3076,6 +3092,7 @@ self: super: { "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"; @@ -3138,6 +3155,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3152,6 +3170,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3384,8 +3403,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3416,7 +3433,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3445,6 +3461,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3775,6 +3793,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3835,7 +3854,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3998,6 +4019,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4117,6 +4139,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4133,6 +4156,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4173,6 +4197,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4230,6 +4255,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4426,6 +4452,7 @@ self: super: { "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"; @@ -4545,6 +4572,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4794,6 +4822,7 @@ self: super: { "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"; @@ -4843,10 +4872,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4862,6 +4895,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5017,6 +5051,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5028,6 +5063,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5077,6 +5113,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5162,6 +5199,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5261,6 +5307,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5505,6 +5552,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5579,6 +5627,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5824,6 +5873,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5993,6 +6043,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6127,6 +6178,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6356,6 +6408,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; @@ -6381,6 +6434,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6436,6 +6490,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6479,6 +6534,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6591,6 +6647,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7012,6 +7069,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7481,6 +7539,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7729,6 +7788,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8036,6 +8097,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8177,6 +8239,7 @@ self: super: { "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"; @@ -8188,6 +8251,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8595,6 +8659,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8687,10 +8752,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8731,6 +8798,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8993,6 +9061,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -9002,6 +9071,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index af06a3ce0b4f..97240611d619 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1804,10 +1811,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2109,6 +2118,7 @@ self: super: { "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"; @@ -2139,6 +2149,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2147,6 +2158,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2440,6 +2452,7 @@ self: super: { "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-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"; @@ -2475,6 +2488,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2567,6 +2581,7 @@ self: super: { "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"; @@ -2865,6 +2880,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3076,6 +3092,7 @@ self: super: { "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"; @@ -3138,6 +3155,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3152,6 +3170,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3384,8 +3403,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3416,7 +3433,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3445,6 +3461,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3775,6 +3793,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3835,7 +3854,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3997,6 +4018,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4116,6 +4138,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4132,6 +4155,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4172,6 +4196,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4229,6 +4254,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4424,6 +4450,7 @@ self: super: { "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"; @@ -4543,6 +4570,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4791,6 +4819,7 @@ self: super: { "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"; @@ -4840,10 +4869,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_4"; "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"; @@ -4859,6 +4892,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5014,6 +5048,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5025,6 +5060,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5074,6 +5110,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5159,6 +5196,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5258,6 +5304,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5502,6 +5549,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5576,6 +5624,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5821,6 +5870,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5990,6 +6040,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6124,6 +6175,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6353,6 +6405,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; @@ -6378,6 +6431,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6433,6 +6487,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6476,6 +6531,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6588,6 +6644,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7009,6 +7066,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7477,6 +7535,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7725,6 +7784,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8032,6 +8093,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8173,6 +8235,7 @@ self: super: { "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"; @@ -8184,6 +8247,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8591,6 +8655,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8683,10 +8748,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8727,6 +8794,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8989,6 +9057,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8998,6 +9067,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 2afef4539ee3..fb1fa1f8904f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_2"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -727,6 +730,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1010,6 +1014,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1451,6 +1456,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1729,6 +1735,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1803,10 +1810,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2108,6 +2117,7 @@ self: super: { "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"; @@ -2138,6 +2148,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2146,6 +2157,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2439,6 +2451,7 @@ self: super: { "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-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"; @@ -2474,6 +2487,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2566,6 +2580,7 @@ self: super: { "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"; @@ -2864,6 +2879,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2969,6 +2985,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3074,6 +3091,7 @@ self: super: { "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"; @@ -3136,6 +3154,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3150,6 +3169,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3382,8 +3402,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3414,7 +3432,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3443,6 +3460,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3736,6 +3755,7 @@ self: super: { "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"; @@ -3772,6 +3792,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3832,7 +3853,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3994,6 +4017,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4113,6 +4137,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4129,6 +4154,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4169,6 +4195,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4226,6 +4253,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4421,6 +4449,7 @@ self: super: { "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"; @@ -4540,6 +4569,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4788,6 +4818,7 @@ self: super: { "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"; @@ -4837,10 +4868,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_4"; "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"; @@ -4856,6 +4891,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5011,6 +5047,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5022,6 +5059,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5071,6 +5109,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5156,6 +5195,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5254,6 +5302,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5498,6 +5547,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5571,6 +5621,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5816,6 +5867,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5985,6 +6037,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6119,6 +6172,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6348,6 +6402,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_1"; @@ -6373,6 +6428,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6428,6 +6484,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6471,6 +6528,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6582,6 +6640,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -7002,6 +7061,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7470,6 +7530,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7718,6 +7779,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8023,6 +8086,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8163,6 +8227,7 @@ self: super: { "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"; @@ -8174,6 +8239,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8581,6 +8647,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8673,10 +8740,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8717,6 +8786,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8979,6 +9049,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8988,6 +9059,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index fcd5b4c24e0e..28aba74c754e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -727,6 +730,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1010,6 +1014,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1450,6 +1455,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1728,6 +1734,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1802,10 +1809,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -2107,6 +2116,7 @@ self: super: { "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"; @@ -2137,6 +2147,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2145,6 +2156,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2438,6 +2450,7 @@ self: super: { "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-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"; @@ -2473,6 +2486,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2565,6 +2579,7 @@ self: super: { "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"; @@ -2863,6 +2878,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2968,6 +2984,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3073,6 +3090,7 @@ self: super: { "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"; @@ -3135,6 +3153,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3149,6 +3168,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3381,8 +3401,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3413,7 +3431,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3442,6 +3459,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3735,6 +3754,7 @@ self: super: { "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"; @@ -3771,6 +3791,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3830,7 +3851,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3992,6 +4015,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4111,6 +4135,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4127,6 +4152,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4167,6 +4193,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4224,6 +4251,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4419,6 +4447,7 @@ self: super: { "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"; @@ -4538,6 +4567,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4786,6 +4816,7 @@ self: super: { "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"; @@ -4835,9 +4866,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4853,6 +4888,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5008,6 +5044,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5019,6 +5056,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5068,6 +5106,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5153,6 +5192,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5251,6 +5299,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5494,6 +5543,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5567,6 +5617,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5811,6 +5862,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5980,6 +6032,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6114,6 +6167,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6343,6 +6397,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6368,6 +6423,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6423,6 +6479,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6466,6 +6523,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6577,6 +6635,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6997,6 +7056,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7465,6 +7525,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7713,6 +7774,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8018,6 +8081,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8158,6 +8222,7 @@ self: super: { "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"; @@ -8169,6 +8234,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8576,6 +8642,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8668,10 +8735,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8712,6 +8781,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8974,6 +9044,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8983,6 +9054,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index fdff43e53371..01bb9446281b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -727,6 +730,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1010,6 +1014,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1450,6 +1455,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1728,6 +1734,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1802,10 +1809,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1881,6 +1890,7 @@ self: super: { "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"; @@ -2106,6 +2116,7 @@ self: super: { "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"; @@ -2136,6 +2147,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2144,6 +2156,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2437,6 +2450,7 @@ self: super: { "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-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"; @@ -2472,6 +2486,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2564,6 +2579,7 @@ self: super: { "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"; @@ -2862,6 +2878,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2967,6 +2984,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3072,6 +3090,7 @@ self: super: { "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"; @@ -3134,6 +3153,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3148,6 +3168,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3380,8 +3401,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3412,7 +3431,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3441,6 +3459,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3455,6 +3475,7 @@ self: super: { "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_1_2_1"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3501,6 +3522,7 @@ self: super: { "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"; @@ -3732,6 +3754,7 @@ self: super: { "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"; @@ -3741,6 +3764,7 @@ self: super: { "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"; @@ -3767,6 +3791,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3826,7 +3851,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3988,6 +4015,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4107,6 +4135,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4123,6 +4152,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4163,6 +4193,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4220,6 +4251,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4415,6 +4447,7 @@ self: super: { "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"; @@ -4534,6 +4567,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4781,6 +4815,7 @@ self: super: { "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"; @@ -4830,9 +4865,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4848,6 +4887,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5003,6 +5043,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5014,6 +5055,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5063,6 +5105,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5148,6 +5191,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5246,6 +5298,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5489,6 +5542,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5562,6 +5616,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5806,6 +5861,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5975,6 +6031,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6109,6 +6166,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6221,6 +6279,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6337,6 +6396,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6362,6 +6422,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6417,6 +6478,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6460,6 +6522,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6571,6 +6634,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6991,6 +7055,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7459,6 +7524,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7707,6 +7773,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8012,6 +8080,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8152,6 +8221,7 @@ self: super: { "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"; @@ -8163,6 +8233,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8570,6 +8641,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8662,10 +8734,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8706,6 +8780,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8968,6 +9043,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8977,6 +9053,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 4ad408e7819a..363427117dbf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -727,6 +730,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1010,6 +1014,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1449,6 +1454,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1727,6 +1733,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1800,10 +1807,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1879,6 +1888,7 @@ self: super: { "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"; @@ -2104,6 +2114,7 @@ self: super: { "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"; @@ -2134,6 +2145,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2142,6 +2154,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2434,6 +2447,7 @@ self: super: { "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-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"; @@ -2469,6 +2483,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2561,6 +2576,7 @@ self: super: { "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"; @@ -2859,6 +2875,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2964,6 +2981,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3069,6 +3087,7 @@ self: super: { "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"; @@ -3131,6 +3150,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3145,6 +3165,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3377,8 +3398,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3409,7 +3428,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3438,6 +3456,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3452,6 +3472,7 @@ self: super: { "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_1_2_1"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3498,6 +3519,7 @@ self: super: { "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"; @@ -3729,6 +3751,7 @@ self: super: { "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"; @@ -3738,6 +3761,7 @@ self: super: { "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"; @@ -3764,6 +3788,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3823,7 +3848,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3985,6 +4012,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4104,6 +4132,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4120,6 +4149,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4160,6 +4190,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4217,6 +4248,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4410,6 +4442,7 @@ self: super: { "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"; @@ -4529,6 +4562,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4776,6 +4810,7 @@ self: super: { "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"; @@ -4825,9 +4860,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4843,6 +4882,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4998,6 +5038,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5009,6 +5050,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5057,6 +5099,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5142,6 +5185,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5240,6 +5292,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5482,6 +5535,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5555,6 +5609,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5799,6 +5854,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5967,6 +6023,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6101,6 +6158,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6213,6 +6271,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6329,6 +6388,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6354,6 +6414,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6409,6 +6470,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6452,6 +6514,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6563,6 +6626,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6983,6 +7047,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7451,6 +7516,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7698,6 +7764,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8003,6 +8071,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8143,6 +8212,7 @@ self: super: { "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"; @@ -8154,6 +8224,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8561,6 +8632,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8653,10 +8725,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8697,6 +8771,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8958,6 +9033,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8967,6 +9043,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 43cbd21a44eb..2d1c4a004fc5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1456,6 +1461,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1737,6 +1743,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1812,6 +1819,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2119,6 +2127,7 @@ self: super: { "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"; @@ -2149,6 +2158,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2157,6 +2167,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2452,6 +2463,7 @@ self: super: { "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-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"; @@ -2487,6 +2499,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2579,6 +2592,7 @@ self: super: { "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"; @@ -2879,6 +2893,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3091,6 +3106,7 @@ self: super: { "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"; @@ -3155,6 +3171,7 @@ self: super: { "fixed-vector" = doDistribute super."fixed-vector_0_8_0_0"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3169,6 +3186,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3401,8 +3419,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3433,7 +3449,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3462,6 +3477,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3795,6 +3812,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3855,7 +3873,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4018,6 +4038,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4138,6 +4159,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4154,6 +4176,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4194,6 +4217,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4450,6 +4474,7 @@ self: super: { "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"; @@ -4569,6 +4594,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4820,6 +4846,7 @@ self: super: { "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"; @@ -4871,10 +4898,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4890,6 +4921,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5045,6 +5077,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5056,6 +5089,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5192,6 +5226,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5293,6 +5336,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5537,6 +5581,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5611,6 +5656,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5857,6 +5903,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6029,6 +6076,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6422,6 +6470,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6477,6 +6526,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; @@ -6520,6 +6570,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7057,6 +7108,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7526,6 +7578,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7777,6 +7830,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8231,6 +8286,7 @@ self: super: { "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"; @@ -8242,6 +8298,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8654,6 +8711,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8753,6 +8811,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8793,6 +8852,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9070,6 +9130,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index ea72256fc471..3ff47c8c80ab 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -583,6 +584,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -608,6 +610,7 @@ self: super: { "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"; @@ -726,6 +729,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1009,6 +1013,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1448,6 +1453,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1726,6 +1732,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1799,10 +1806,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1878,6 +1887,7 @@ self: super: { "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"; @@ -2103,6 +2113,7 @@ self: super: { "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"; @@ -2133,6 +2144,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2141,6 +2153,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2433,6 +2446,7 @@ self: super: { "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-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"; @@ -2468,6 +2482,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2560,6 +2575,7 @@ self: super: { "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"; @@ -2858,6 +2874,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2963,6 +2980,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3068,6 +3086,7 @@ self: super: { "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"; @@ -3130,6 +3149,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3144,6 +3164,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3376,8 +3397,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3408,7 +3427,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3437,6 +3455,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3451,6 +3471,7 @@ self: super: { "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_1_2_1"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3497,6 +3518,7 @@ self: super: { "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"; @@ -3728,6 +3750,7 @@ self: super: { "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"; @@ -3737,6 +3760,7 @@ self: super: { "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"; @@ -3763,6 +3787,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3822,7 +3847,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3984,6 +4011,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4103,6 +4131,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4119,6 +4148,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4159,6 +4189,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4216,6 +4247,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4409,6 +4441,7 @@ self: super: { "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"; @@ -4528,6 +4561,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4775,6 +4809,7 @@ self: super: { "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"; @@ -4824,9 +4859,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4842,6 +4881,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4997,6 +5037,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5008,6 +5049,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5056,6 +5098,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5141,6 +5184,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5239,6 +5291,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5481,6 +5534,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5554,6 +5608,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5798,6 +5853,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5966,6 +6022,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6100,6 +6157,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6212,6 +6270,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6328,6 +6387,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6353,6 +6413,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6408,6 +6469,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6451,6 +6513,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6562,6 +6625,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6981,6 +7045,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7449,6 +7514,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7695,6 +7761,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8000,6 +8068,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8140,6 +8209,7 @@ self: super: { "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"; @@ -8151,6 +8221,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8558,6 +8629,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8650,10 +8722,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8694,6 +8768,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8954,6 +9029,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8963,6 +9039,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index f353ba797497..6a1c012bc72b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -583,6 +584,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -608,6 +610,7 @@ self: super: { "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"; @@ -726,6 +729,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1009,6 +1013,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1448,6 +1453,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1726,6 +1732,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1799,10 +1806,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1878,6 +1887,7 @@ self: super: { "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"; @@ -2103,6 +2113,7 @@ self: super: { "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"; @@ -2133,6 +2144,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2141,6 +2153,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2432,6 +2445,7 @@ self: super: { "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-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"; @@ -2467,6 +2481,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2559,6 +2574,7 @@ self: super: { "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"; @@ -2857,6 +2873,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2962,6 +2979,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3065,6 +3083,7 @@ self: super: { "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"; @@ -3127,6 +3146,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3141,6 +3161,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3373,8 +3394,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3405,7 +3424,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3434,6 +3452,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3448,6 +3468,7 @@ self: super: { "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_1_2_1"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3494,6 +3515,7 @@ self: super: { "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"; @@ -3725,6 +3747,7 @@ self: super: { "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"; @@ -3734,6 +3757,7 @@ self: super: { "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"; @@ -3760,6 +3784,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3819,7 +3844,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3981,6 +4008,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4100,6 +4128,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4116,6 +4145,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4156,6 +4186,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4213,6 +4244,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4406,6 +4438,7 @@ self: super: { "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"; @@ -4525,6 +4558,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4770,6 +4804,7 @@ self: super: { "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"; @@ -4819,9 +4854,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4837,6 +4876,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4992,6 +5032,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5003,6 +5044,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5051,6 +5093,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5136,6 +5179,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5234,6 +5286,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5476,6 +5529,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5549,6 +5603,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5792,6 +5847,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5960,6 +6016,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6094,6 +6151,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6206,6 +6264,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6321,6 +6380,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6346,6 +6406,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6382,6 +6443,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6400,6 +6462,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6443,6 +6506,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6554,6 +6618,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6972,6 +7037,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7435,6 +7501,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7681,6 +7748,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7986,6 +8055,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8126,6 +8196,7 @@ self: super: { "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"; @@ -8137,6 +8208,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8543,6 +8615,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8634,10 +8707,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8678,6 +8753,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8938,6 +9014,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8947,6 +9024,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index a58da47a392a..50908d05544b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -583,6 +584,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -608,6 +610,7 @@ self: super: { "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"; @@ -726,6 +729,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1009,6 +1013,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1448,6 +1453,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1726,6 +1732,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1799,10 +1806,12 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_1"; "byteset" = dontDistribute super."byteset"; "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1878,6 +1887,7 @@ self: super: { "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"; @@ -2103,6 +2113,7 @@ self: super: { "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"; @@ -2133,6 +2144,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2141,6 +2153,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2432,6 +2445,7 @@ self: super: { "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-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"; @@ -2467,6 +2481,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2559,6 +2574,7 @@ self: super: { "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"; @@ -2857,6 +2873,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2962,6 +2979,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -3064,6 +3082,7 @@ self: super: { "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"; @@ -3126,6 +3145,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3140,6 +3160,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3372,8 +3393,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3404,7 +3423,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3433,6 +3451,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3447,6 +3467,7 @@ self: super: { "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_1_2_1"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3493,6 +3514,7 @@ self: super: { "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"; @@ -3724,6 +3746,7 @@ self: super: { "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"; @@ -3733,6 +3756,7 @@ self: super: { "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"; @@ -3759,6 +3783,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3818,7 +3843,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3980,6 +4007,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4099,6 +4127,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4115,6 +4144,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4124,6 +4154,7 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -4154,6 +4185,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4211,6 +4243,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4404,6 +4437,7 @@ self: super: { "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"; @@ -4523,6 +4557,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4768,6 +4803,7 @@ self: super: { "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"; @@ -4816,9 +4852,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4834,6 +4874,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4988,6 +5029,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4999,6 +5041,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5047,6 +5090,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5132,6 +5176,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5230,6 +5283,7 @@ self: super: { "lendingclub" = dontDistribute super."lendingclub"; "lens" = doDistribute super."lens_4_12_3"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5472,6 +5526,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5545,6 +5600,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5788,6 +5844,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5956,6 +6013,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6090,6 +6148,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6202,6 +6261,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6317,6 +6377,7 @@ self: super: { "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_2"; "persistent-odbc" = dontDistribute super."persistent-odbc"; "persistent-postgresql" = doDistribute super."persistent-postgresql_2_2_1_2"; @@ -6342,6 +6403,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6378,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6396,6 +6459,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6439,6 +6503,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -6550,6 +6615,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6968,6 +7034,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7431,6 +7498,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7677,6 +7745,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7982,6 +8052,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -8122,6 +8193,7 @@ self: super: { "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"; @@ -8133,6 +8205,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8539,6 +8612,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8630,10 +8704,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8674,6 +8750,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8934,6 +9011,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8943,6 +9021,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 64b928a93312..9c4d3fb457c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1456,6 +1461,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1737,6 +1743,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1812,6 +1819,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2119,6 +2127,7 @@ self: super: { "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"; @@ -2149,6 +2158,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2157,6 +2167,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2452,6 +2463,7 @@ self: super: { "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-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"; @@ -2487,6 +2499,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2579,6 +2592,7 @@ self: super: { "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"; @@ -2879,6 +2893,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3091,6 +3106,7 @@ self: super: { "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"; @@ -3154,6 +3170,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3168,6 +3185,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3400,8 +3418,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3432,7 +3448,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3461,6 +3476,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3794,6 +3811,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3854,7 +3872,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4017,6 +4037,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4137,6 +4158,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4153,6 +4175,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4193,6 +4216,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4448,6 +4472,7 @@ self: super: { "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"; @@ -4567,6 +4592,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4818,6 +4844,7 @@ self: super: { "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"; @@ -4869,10 +4896,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4888,6 +4919,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5043,6 +5075,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5054,6 +5087,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5190,6 +5224,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5291,6 +5334,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5535,6 +5579,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5609,6 +5654,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5855,6 +5901,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6027,6 +6074,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6420,6 +6468,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6475,6 +6524,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; @@ -6518,6 +6568,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7055,6 +7106,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7524,6 +7576,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7774,6 +7827,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8228,6 +8283,7 @@ self: super: { "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"; @@ -8239,6 +8295,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8650,6 +8707,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8749,6 +8807,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8789,6 +8848,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9066,6 +9126,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 8e2a0782bc65..f19e97ef85c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1456,6 +1461,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1737,6 +1743,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1812,6 +1819,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2119,6 +2127,7 @@ self: super: { "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"; @@ -2149,6 +2158,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2157,6 +2167,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2452,6 +2463,7 @@ self: super: { "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-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"; @@ -2487,6 +2499,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2579,6 +2592,7 @@ self: super: { "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"; @@ -2879,6 +2893,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3091,6 +3106,7 @@ self: super: { "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"; @@ -3154,6 +3170,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3168,6 +3185,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3400,8 +3418,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3432,7 +3448,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3461,6 +3476,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3794,6 +3811,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3854,7 +3872,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4017,6 +4037,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4137,6 +4158,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4153,6 +4175,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4193,6 +4216,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4448,6 +4472,7 @@ self: super: { "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"; @@ -4567,6 +4592,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4818,6 +4844,7 @@ self: super: { "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"; @@ -4869,10 +4896,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4888,6 +4919,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5043,6 +5075,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5054,6 +5087,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5190,6 +5224,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5291,6 +5334,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5535,6 +5579,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5609,6 +5654,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5855,6 +5901,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6027,6 +6074,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6420,6 +6468,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6475,6 +6524,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_0_16"; @@ -6518,6 +6568,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7055,6 +7106,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7524,6 +7576,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7773,6 +7826,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8227,6 +8282,7 @@ self: super: { "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"; @@ -8238,6 +8294,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8649,6 +8706,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8747,6 +8805,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8787,6 +8846,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9064,6 +9124,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index d74a7092a754..d60c54c2737e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1455,6 +1460,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1736,6 +1742,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1811,6 +1818,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2118,6 +2126,7 @@ self: super: { "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"; @@ -2148,6 +2157,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2156,6 +2166,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2451,6 +2462,7 @@ self: super: { "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-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"; @@ -2486,6 +2498,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2578,6 +2591,7 @@ self: super: { "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"; @@ -2878,6 +2892,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3090,6 +3105,7 @@ self: super: { "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"; @@ -3152,6 +3168,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3166,6 +3183,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3398,8 +3416,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3430,7 +3446,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3459,6 +3474,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3792,6 +3809,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3852,7 +3870,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4015,6 +4035,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4135,6 +4156,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4151,6 +4173,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4191,6 +4214,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4249,6 +4273,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4445,6 +4470,7 @@ self: super: { "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"; @@ -4564,6 +4590,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4814,6 +4841,7 @@ self: super: { "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"; @@ -4863,10 +4891,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4882,6 +4914,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5037,6 +5070,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5048,6 +5082,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5184,6 +5219,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5285,6 +5329,7 @@ self: super: { "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-aeson" = doDistribute super."lens-aeson_1_0_0_4"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5529,6 +5574,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5603,6 +5649,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5849,6 +5896,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6020,6 +6068,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6412,6 +6461,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6467,6 +6517,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6510,6 +6561,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7046,6 +7098,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_2"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7515,6 +7568,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7764,6 +7818,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8215,6 +8271,7 @@ self: super: { "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"; @@ -8226,6 +8283,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8637,6 +8695,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8735,6 +8794,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8775,6 +8835,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9050,6 +9111,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 50a57c953ae0..cba4bcc227b4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1455,6 +1460,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1736,6 +1742,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1811,6 +1818,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2118,6 +2126,7 @@ self: super: { "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"; @@ -2148,6 +2157,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2156,6 +2166,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2451,6 +2462,7 @@ self: super: { "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-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"; @@ -2486,6 +2498,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2578,6 +2591,7 @@ self: super: { "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"; @@ -2878,6 +2892,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3090,6 +3105,7 @@ self: super: { "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"; @@ -3152,6 +3168,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3166,6 +3183,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3398,8 +3416,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3430,7 +3446,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3459,6 +3474,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3790,6 +3807,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3850,7 +3868,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4013,6 +4033,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4133,6 +4154,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4149,6 +4171,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4189,6 +4212,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4247,6 +4271,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4443,6 +4468,7 @@ self: super: { "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"; @@ -4562,6 +4588,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4812,6 +4839,7 @@ self: super: { "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"; @@ -4861,10 +4889,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4880,6 +4912,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5035,6 +5068,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5046,6 +5080,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5095,6 +5130,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5180,6 +5216,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5280,6 +5325,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5524,6 +5570,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5598,6 +5645,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5844,6 +5892,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6015,6 +6064,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6407,6 +6457,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6462,6 +6513,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6505,6 +6557,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7041,6 +7094,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7510,6 +7564,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7759,6 +7814,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8210,6 +8267,7 @@ self: super: { "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"; @@ -8221,6 +8279,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8630,6 +8689,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8728,6 +8788,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8768,6 +8829,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9043,6 +9105,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 3fda40066c71..e37423fc1587 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1453,6 +1458,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1734,6 +1740,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1809,6 +1816,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2116,6 +2124,7 @@ self: super: { "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"; @@ -2146,6 +2155,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2154,6 +2164,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2448,6 +2459,7 @@ self: super: { "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-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"; @@ -2483,6 +2495,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2575,6 +2588,7 @@ self: super: { "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"; @@ -2875,6 +2889,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3087,6 +3102,7 @@ self: super: { "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"; @@ -3149,6 +3165,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3163,6 +3180,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3395,8 +3413,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3427,7 +3443,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3456,6 +3471,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3787,6 +3804,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3847,7 +3865,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4010,6 +4030,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4129,6 +4150,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4145,6 +4167,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4185,6 +4208,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4243,6 +4267,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4439,6 +4464,7 @@ self: super: { "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"; @@ -4558,6 +4584,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4808,6 +4835,7 @@ self: super: { "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"; @@ -4857,10 +4885,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4876,6 +4908,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5031,6 +5064,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5042,6 +5076,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5091,6 +5126,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5176,6 +5212,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5276,6 +5321,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5520,6 +5566,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5594,6 +5641,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5840,6 +5888,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6011,6 +6060,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6403,6 +6453,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6458,6 +6509,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6501,6 +6553,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7035,6 +7088,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7504,6 +7558,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7752,6 +7807,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8203,6 +8260,7 @@ self: super: { "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"; @@ -8214,6 +8272,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8623,6 +8682,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8721,6 +8781,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8761,6 +8822,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9034,6 +9096,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index adc5fd60c7aa..38bef7afa715 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -729,6 +732,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1012,6 +1016,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1453,6 +1458,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1732,6 +1738,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1807,6 +1814,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2114,6 +2122,7 @@ self: super: { "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"; @@ -2144,6 +2153,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2152,6 +2162,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2446,6 +2457,7 @@ self: super: { "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-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"; @@ -2481,6 +2493,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2573,6 +2586,7 @@ self: super: { "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"; @@ -2872,6 +2886,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3084,6 +3099,7 @@ self: super: { "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"; @@ -3146,6 +3162,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3160,6 +3177,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3392,8 +3410,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3424,7 +3440,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3453,6 +3468,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3784,6 +3801,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3844,7 +3862,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4007,6 +4027,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4126,6 +4147,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4142,6 +4164,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4182,6 +4205,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4240,6 +4264,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4436,6 +4461,7 @@ self: super: { "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"; @@ -4555,6 +4581,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4805,6 +4832,7 @@ self: super: { "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"; @@ -4854,10 +4882,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4873,6 +4905,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5028,6 +5061,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5039,6 +5073,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5088,6 +5123,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5173,6 +5209,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5273,6 +5318,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5517,6 +5563,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5591,6 +5638,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5836,6 +5884,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6007,6 +6056,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6399,6 +6449,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6454,6 +6505,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6497,6 +6549,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7031,6 +7084,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7500,6 +7554,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7748,6 +7803,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8198,6 +8255,7 @@ self: super: { "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"; @@ -8209,6 +8267,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8618,6 +8677,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8716,6 +8776,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8756,6 +8817,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9029,6 +9091,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 7109847fb94c..89928d051460 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -241,6 +241,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -584,6 +585,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_1"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = dontDistribute super."JuicyPixels-repa"; "JuicyPixels-scale-dct" = dontDistribute super."JuicyPixels-scale-dct"; "JuicyPixels-util" = dontDistribute super."JuicyPixels-util"; @@ -609,6 +611,7 @@ self: super: { "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"; @@ -728,6 +731,7 @@ self: super: { "ObjectIO" = dontDistribute super."ObjectIO"; "ObjectName" = dontDistribute super."ObjectName"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OpenAFP" = dontDistribute super."OpenAFP"; @@ -1011,6 +1015,7 @@ self: super: { "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-extras" = dontDistribute super."Win32-extras"; @@ -1452,6 +1457,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_2_2"; @@ -1730,6 +1736,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_7_0_1"; "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"; @@ -1805,6 +1812,7 @@ self: super: { "bytes" = doDistribute super."bytes_0_15_0_1"; "byteset" = dontDistribute super."byteset"; "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"; @@ -2112,6 +2120,7 @@ self: super: { "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"; @@ -2142,6 +2151,7 @@ self: super: { "commsec" = dontDistribute super."commsec"; "commsec-keyexchange" = dontDistribute super."commsec-keyexchange"; "commutative" = dontDistribute super."commutative"; + "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"; @@ -2150,6 +2160,7 @@ self: super: { "compact-string-fix" = dontDistribute super."compact-string-fix"; "compactmap" = dontDistribute super."compactmap"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2444,6 +2455,7 @@ self: super: { "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-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"; @@ -2479,6 +2491,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2571,6 +2584,7 @@ self: super: { "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"; @@ -2869,6 +2883,7 @@ self: super: { "ekg" = dontDistribute super."ekg"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = dontDistribute super."ekg-json"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -3081,6 +3096,7 @@ self: super: { "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"; @@ -3143,6 +3159,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3157,6 +3174,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3389,8 +3407,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3421,7 +3437,6 @@ self: super: { "ghc-typelits-extra" = dontDistribute super."ghc-typelits-extra"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3450,6 +3465,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3781,6 +3798,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = dontDistribute super."hOpenPGP"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3841,7 +3859,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4004,6 +4024,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4123,6 +4144,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4139,6 +4161,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4179,6 +4202,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4237,6 +4261,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = dontDistribute super."hidapi"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering" = dontDistribute super."hierarchical-clustering"; @@ -4433,6 +4458,7 @@ self: super: { "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"; @@ -4552,6 +4578,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4802,6 +4829,7 @@ self: super: { "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"; @@ -4851,10 +4879,14 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "incremental-computing" = dontDistribute super."incremental-computing"; + "incremental-maps" = dontDistribute super."incremental-maps"; "incremental-parser" = doDistribute super."incremental-parser_0_2_3_4"; "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"; @@ -4870,6 +4902,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -5025,6 +5058,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -5036,6 +5070,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -5085,6 +5120,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -5170,6 +5206,15 @@ self: super: { "lambdaBase" = dontDistribute super."lambdaBase"; "lambdaFeed" = dontDistribute super."lambdaFeed"; "lambdaLit" = dontDistribute super."lambdaLit"; + "lambdabot" = doDistribute super."lambdabot_5_0_3"; + "lambdabot-core" = doDistribute super."lambdabot-core_5_0_3"; + "lambdabot-haskell-plugins" = doDistribute super."lambdabot-haskell-plugins_5_0_3"; + "lambdabot-irc-plugins" = doDistribute super."lambdabot-irc-plugins_5_0_3"; + "lambdabot-misc-plugins" = doDistribute super."lambdabot-misc-plugins_5_0_1"; + "lambdabot-novelty-plugins" = doDistribute super."lambdabot-novelty-plugins_5_0_3"; + "lambdabot-reference-plugins" = doDistribute super."lambdabot-reference-plugins_5_0_3"; + "lambdabot-social-plugins" = doDistribute super."lambdabot-social-plugins_5_0_1"; + "lambdabot-trusted" = doDistribute super."lambdabot-trusted_5_0_2_1"; "lambdabot-utils" = dontDistribute super."lambdabot-utils"; "lambdacat" = dontDistribute super."lambdacat"; "lambdacms-core" = dontDistribute super."lambdacms-core"; @@ -5270,6 +5315,7 @@ self: super: { "lens" = doDistribute super."lens_4_12_3"; "lens-action" = doDistribute super."lens-action_0_2_0_1"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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-regex" = dontDistribute super."lens-regex"; @@ -5514,6 +5560,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5588,6 +5635,7 @@ self: super: { "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; "matrices" = doDistribute super."matrices_0_4_2"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5833,6 +5881,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -6004,6 +6053,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -6138,6 +6188,7 @@ self: super: { "only" = dontDistribute super."only"; "onu-course" = dontDistribute super."onu-course"; "oo-prototypes" = dontDistribute super."oo-prototypes"; + "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6395,6 +6446,7 @@ self: super: { "pgp-wordlist" = dontDistribute super."pgp-wordlist"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6450,6 +6502,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6493,6 +6546,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointedlist" = dontDistribute super."pointedlist"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; @@ -7027,6 +7081,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_17_1_3"; "rest-happstack" = doDistribute super."rest-happstack_0_2_10_8"; "rest-snap" = doDistribute super."rest-snap_0_1_17_18"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_1_0_8"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -7496,6 +7551,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7744,6 +7800,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -8194,6 +8252,7 @@ self: super: { "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"; @@ -8205,6 +8264,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8614,6 +8674,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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-caching" = dontDistribute super."wai-middleware-caching"; @@ -8712,6 +8773,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8752,6 +8814,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -9025,6 +9088,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = dontDistribute super."zim-parser"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index d74f552a34f6..8f288783fc10 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -239,6 +239,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -574,6 +575,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -712,6 +715,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -992,6 +996,7 @@ self: super: { "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"; @@ -1427,6 +1432,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1497,6 +1503,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_8_2"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1516,6 +1523,7 @@ self: super: { "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"; @@ -1638,6 +1646,7 @@ self: super: { "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"; @@ -1694,6 +1703,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "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"; @@ -1715,6 +1725,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1764,6 +1775,7 @@ self: super: { "bytable" = dontDistribute super."bytable"; "bytes" = doDistribute super."bytes_0_15_1"; "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"; @@ -1816,6 +1828,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-src" = doDistribute super."cabal-src_0_3_0"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; @@ -1843,6 +1856,7 @@ self: super: { "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"; @@ -2062,6 +2076,7 @@ self: super: { "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"; @@ -2091,13 +2106,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2311,6 +2329,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2384,6 +2403,7 @@ self: super: { "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-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"; @@ -2419,6 +2439,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2511,6 +2532,7 @@ self: super: { "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"; @@ -2586,6 +2608,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2801,6 +2824,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2905,6 +2929,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2976,6 +3001,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -3006,6 +3032,7 @@ self: super: { "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"; @@ -3065,6 +3092,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3079,6 +3107,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3307,8 +3336,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3337,7 +3364,6 @@ self: super: { "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3366,6 +3392,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3380,6 +3408,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3404,7 +3433,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3422,6 +3453,7 @@ self: super: { "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"; @@ -3555,6 +3587,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3642,6 +3675,7 @@ self: super: { "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"; @@ -3651,6 +3685,7 @@ self: super: { "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"; @@ -3660,6 +3695,7 @@ self: super: { "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"; @@ -3686,6 +3722,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_2_1"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3743,7 +3780,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3898,6 +3937,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4016,6 +4056,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4032,6 +4073,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4072,6 +4114,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4128,6 +4171,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4191,9 +4235,11 @@ self: super: { "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" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4207,6 +4253,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4313,6 +4360,7 @@ self: super: { "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"; @@ -4430,6 +4478,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4658,6 +4707,7 @@ self: super: { "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"; @@ -4707,9 +4757,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4725,6 +4779,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4869,6 +4924,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4879,6 +4935,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4927,6 +4984,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -4986,6 +5044,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -5062,6 +5121,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5113,7 +5173,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5148,6 +5210,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5350,6 +5413,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5420,6 +5484,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5656,6 +5721,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5818,6 +5884,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5946,6 +6013,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6056,6 +6124,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6126,6 +6195,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; "pdf-toolbox-core" = doDistribute super."pdf-toolbox-core_0_0_4_0"; "pdf-toolbox-document" = doDistribute super."pdf-toolbox-document_0_0_7_0"; @@ -6165,6 +6235,8 @@ self: super: { "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_1_2"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -6188,6 +6260,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6207,6 +6280,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6241,6 +6315,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6255,6 +6330,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6279,6 +6355,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6388,6 +6465,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6788,6 +6866,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -6921,6 +7000,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -7068,6 +7148,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7197,6 +7278,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7242,6 +7324,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7484,6 +7567,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7758,6 +7843,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7778,6 +7864,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7788,6 +7875,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift" = doDistribute super."th-lift_0_7_5"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_3"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7914,6 +8002,7 @@ self: super: { "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"; @@ -7925,6 +8014,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8078,6 +8168,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8315,6 +8406,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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"; @@ -8392,10 +8484,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8419,6 +8513,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8434,6 +8529,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8683,6 +8779,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8692,6 +8789,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 71a2b8a0752d..64628dd92b0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -239,6 +239,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -574,6 +575,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -712,6 +715,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -992,6 +996,7 @@ self: super: { "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"; @@ -1425,6 +1430,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1495,6 +1501,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_8_2"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1514,6 +1521,7 @@ self: super: { "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"; @@ -1636,6 +1644,7 @@ self: super: { "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"; @@ -1692,6 +1701,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "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"; @@ -1713,6 +1723,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1762,6 +1773,7 @@ self: super: { "bytable" = dontDistribute super."bytable"; "bytes" = doDistribute super."bytes_0_15_1"; "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"; @@ -1814,6 +1826,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-src" = doDistribute super."cabal-src_0_3_0"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; @@ -1841,6 +1854,7 @@ self: super: { "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"; @@ -2060,6 +2074,7 @@ self: super: { "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"; @@ -2089,13 +2104,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2309,6 +2327,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2382,6 +2401,7 @@ self: super: { "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-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"; @@ -2417,6 +2437,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2509,6 +2530,7 @@ self: super: { "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"; @@ -2584,6 +2606,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2774,6 +2797,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2798,6 +2822,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2901,6 +2926,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2972,6 +2998,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -3001,6 +3028,7 @@ self: super: { "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"; @@ -3060,6 +3088,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3074,6 +3103,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3302,8 +3332,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3332,7 +3360,6 @@ self: super: { "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3361,6 +3388,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3375,6 +3404,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3399,7 +3429,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3417,6 +3449,7 @@ self: super: { "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"; @@ -3550,6 +3583,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3637,6 +3671,7 @@ self: super: { "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"; @@ -3646,6 +3681,7 @@ self: super: { "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"; @@ -3655,6 +3691,7 @@ self: super: { "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"; @@ -3681,6 +3718,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_2_1"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3738,7 +3776,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3893,6 +3933,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -4011,6 +4052,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4027,6 +4069,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4036,6 +4079,7 @@ self: super: { "heaps" = doDistribute super."heaps_0_3_2_1"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -4066,6 +4110,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4122,6 +4167,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4185,9 +4231,11 @@ self: super: { "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" = dontDistribute super."hledger-ui"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4201,6 +4249,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4307,6 +4356,7 @@ self: super: { "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"; @@ -4424,6 +4474,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4650,6 +4701,7 @@ self: super: { "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"; @@ -4698,9 +4750,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4716,6 +4772,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4859,6 +4916,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4869,6 +4927,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4917,6 +4976,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -4976,6 +5036,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -5052,6 +5113,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5101,7 +5163,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5136,6 +5200,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5338,6 +5403,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_6"; @@ -5408,6 +5474,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5644,6 +5711,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5806,6 +5874,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5934,6 +6003,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6044,6 +6114,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6114,6 +6185,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; "pdf-toolbox-core" = doDistribute super."pdf-toolbox-core_0_0_4_0"; "pdf-toolbox-document" = doDistribute super."pdf-toolbox-document_0_0_7_0"; @@ -6153,6 +6225,8 @@ self: super: { "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_1_2"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -6176,6 +6250,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6195,6 +6270,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6211,6 +6287,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6228,6 +6305,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6242,6 +6320,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6266,6 +6345,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6375,6 +6455,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6775,6 +6856,7 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; @@ -6908,6 +6990,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -7055,6 +7138,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7184,6 +7268,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7229,6 +7314,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7471,6 +7557,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7745,6 +7833,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7765,6 +7854,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7775,6 +7865,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift" = doDistribute super."th-lift_0_7_5"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_3"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7901,6 +7992,7 @@ self: super: { "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"; @@ -7912,6 +8004,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8065,6 +8158,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8302,6 +8396,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_4_1"; "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"; @@ -8379,10 +8474,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8406,6 +8503,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8421,6 +8519,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8670,6 +8769,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8679,6 +8779,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 9ff899a8553d..96d57166f244 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -239,6 +239,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -574,6 +575,7 @@ self: super: { "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels" = doDistribute super."JuicyPixels_3_2_6_4"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -597,6 +599,7 @@ self: super: { "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"; @@ -712,6 +715,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -992,6 +996,7 @@ self: super: { "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"; @@ -1425,6 +1430,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_2_11"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1495,6 +1501,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_8_2"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_4_5"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1514,6 +1521,7 @@ self: super: { "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"; @@ -1636,6 +1644,7 @@ self: super: { "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"; @@ -1692,6 +1701,7 @@ self: super: { "bloodhound" = doDistribute super."bloodhound_0_10_0_0"; "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"; @@ -1713,6 +1723,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1761,6 +1772,7 @@ self: super: { "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"; @@ -1813,6 +1825,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1839,6 +1852,7 @@ self: super: { "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"; @@ -1900,6 +1914,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -2057,6 +2072,7 @@ self: super: { "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"; @@ -2086,13 +2102,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2305,6 +2324,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2378,6 +2398,7 @@ self: super: { "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-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"; @@ -2413,6 +2434,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2504,6 +2526,7 @@ self: super: { "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"; @@ -2579,6 +2602,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2769,6 +2793,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2793,6 +2818,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2896,6 +2922,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2965,6 +2992,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2993,6 +3021,7 @@ self: super: { "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"; @@ -3052,6 +3081,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3066,6 +3096,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3293,8 +3324,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3323,7 +3352,6 @@ self: super: { "ghc-typelits-extra" = doDistribute super."ghc-typelits-extra_0_1"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_3_1"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3352,6 +3380,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3366,6 +3396,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3390,7 +3421,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3407,6 +3440,7 @@ self: super: { "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"; @@ -3540,6 +3574,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3615,6 +3650,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "growler" = dontDistribute super."growler"; "gruff" = dontDistribute super."gruff"; @@ -3626,6 +3662,7 @@ self: super: { "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"; @@ -3635,6 +3672,7 @@ self: super: { "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"; @@ -3644,6 +3682,7 @@ self: super: { "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"; @@ -3670,6 +3709,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_2_1"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3727,7 +3767,9 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -3879,6 +3921,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3997,6 +4040,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -4013,6 +4057,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -4021,6 +4066,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -4051,6 +4097,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4107,6 +4154,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4170,9 +4218,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4186,6 +4236,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4292,6 +4343,7 @@ self: super: { "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"; @@ -4409,6 +4461,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4633,6 +4686,7 @@ self: super: { "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"; @@ -4681,9 +4735,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4699,6 +4757,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4840,6 +4899,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4850,6 +4910,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_11_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4898,6 +4959,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-comet" = dontDistribute super."kansas-comet"; @@ -4957,6 +5019,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -5033,6 +5096,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5082,7 +5146,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5117,6 +5183,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5319,6 +5386,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5389,6 +5457,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5623,6 +5692,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5784,6 +5854,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5912,6 +5983,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -6022,6 +6094,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_12_4_7"; "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "pango" = doDistribute super."pango_0_13_1_1"; "papillon" = dontDistribute super."papillon"; "pappy" = dontDistribute super."pappy"; "para" = dontDistribute super."para"; @@ -6092,6 +6165,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; "pdf-toolbox-core" = doDistribute super."pdf-toolbox-core_0_0_4_0"; "pdf-toolbox-document" = doDistribute super."pdf-toolbox-document_0_0_7_0"; @@ -6131,6 +6205,8 @@ self: super: { "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_1_2"; "persistent-protobuf" = dontDistribute super."persistent-protobuf"; @@ -6154,6 +6230,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6173,6 +6250,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6189,6 +6267,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6206,6 +6285,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6220,6 +6300,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6244,6 +6325,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6350,6 +6432,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6748,12 +6831,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; + "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_1"; @@ -6880,6 +6965,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -7026,6 +7112,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7151,6 +7238,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7196,6 +7284,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7437,6 +7526,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7711,6 +7802,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7731,6 +7823,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7741,6 +7834,7 @@ self: super: { "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift" = doDistribute super."th-lift_0_7_5"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_3"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7867,6 +7961,7 @@ self: super: { "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"; @@ -7878,6 +7973,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -8031,6 +8127,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8268,6 +8365,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8344,10 +8442,12 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "websockets-snap" = dontDistribute super."websockets-snap"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8371,6 +8471,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8386,6 +8487,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8635,6 +8737,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8644,6 +8747,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index cbad62943db4..ca09b1762c53 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -238,6 +238,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -324,6 +325,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -567,6 +569,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -590,6 +593,7 @@ self: super: { "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"; @@ -705,6 +709,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -984,6 +989,7 @@ self: super: { "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"; @@ -1415,6 +1421,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1485,6 +1492,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_0"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1504,6 +1512,7 @@ self: super: { "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"; @@ -1533,6 +1542,7 @@ self: super: { "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"; @@ -1622,6 +1632,7 @@ self: super: { "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"; @@ -1677,6 +1688,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1698,6 +1710,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1713,6 +1726,7 @@ self: super: { "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"; @@ -1745,10 +1759,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1779,6 +1795,7 @@ self: super: { "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_7_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1795,6 +1812,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1821,6 +1839,7 @@ self: super: { "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"; @@ -1881,6 +1900,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1891,6 +1911,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2037,6 +2058,7 @@ self: super: { "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"; @@ -2066,13 +2088,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2281,6 +2306,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2353,6 +2379,7 @@ self: super: { "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-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"; @@ -2388,6 +2415,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2477,6 +2505,7 @@ self: super: { "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"; @@ -2551,6 +2580,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2737,6 +2767,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2761,6 +2792,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2862,6 +2894,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2911,6 +2944,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2930,6 +2964,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2958,6 +2993,7 @@ self: super: { "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"; @@ -3017,6 +3053,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3031,6 +3068,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3224,8 +3262,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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_0_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; @@ -3255,8 +3295,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3282,7 +3320,6 @@ self: super: { "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3311,6 +3348,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3325,6 +3364,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3349,7 +3389,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3365,6 +3407,7 @@ self: super: { "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"; @@ -3498,6 +3541,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3571,6 +3615,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3581,6 +3626,7 @@ self: super: { "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"; @@ -3590,6 +3636,7 @@ self: super: { "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"; @@ -3599,6 +3646,7 @@ self: super: { "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"; @@ -3625,6 +3673,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_1"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3682,7 +3731,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3833,6 +3884,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3951,6 +4003,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3967,6 +4020,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3975,6 +4029,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -4005,6 +4060,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4061,6 +4117,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4124,9 +4181,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4140,6 +4199,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4246,6 +4306,7 @@ self: super: { "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"; @@ -4363,6 +4424,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4586,6 +4648,7 @@ self: super: { "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"; @@ -4634,9 +4697,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4652,6 +4719,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4792,6 +4860,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4802,6 +4871,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_0"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4850,6 +4920,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4907,6 +4978,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4983,6 +5055,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5032,7 +5105,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5067,6 +5142,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5107,6 +5183,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5268,6 +5345,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5338,6 +5416,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5570,6 +5649,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5729,6 +5809,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5856,6 +5937,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5965,6 +6047,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_16_0_1"; "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"; @@ -6034,6 +6117,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; "pdf-toolbox-core" = doDistribute super."pdf-toolbox-core_0_0_4_0"; "pdf-toolbox-document" = doDistribute super."pdf-toolbox-document_0_0_7_0"; @@ -6073,7 +6157,10 @@ self: super: { "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"; @@ -6095,6 +6182,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6114,6 +6202,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6130,6 +6219,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6146,6 +6236,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6159,6 +6250,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6183,6 +6275,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6289,6 +6382,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6340,6 +6434,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6681,12 +6776,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; + "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_1"; @@ -6789,6 +6886,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6811,6 +6909,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6956,6 +7055,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_1"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7078,6 +7178,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7123,6 +7224,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7361,6 +7463,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7631,6 +7735,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7651,6 +7756,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7660,6 +7766,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7670,6 +7777,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7785,6 +7893,7 @@ self: super: { "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"; @@ -7796,6 +7905,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7948,6 +8058,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8183,6 +8294,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8259,9 +8371,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8285,6 +8399,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8300,6 +8415,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8549,6 +8665,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8558,6 +8675,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 413f61b72dab..f9a10509e0a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -238,6 +238,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -324,6 +325,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -566,6 +568,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -589,6 +592,7 @@ self: super: { "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"; @@ -704,6 +708,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -983,6 +988,7 @@ self: super: { "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"; @@ -1413,6 +1419,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1483,6 +1490,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_0"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1502,6 +1510,7 @@ self: super: { "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"; @@ -1531,6 +1540,7 @@ self: super: { "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"; @@ -1620,6 +1630,7 @@ self: super: { "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"; @@ -1674,6 +1685,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1695,6 +1707,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1710,6 +1723,7 @@ self: super: { "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"; @@ -1741,10 +1755,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1775,6 +1791,7 @@ self: super: { "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_7_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1791,6 +1808,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1817,6 +1835,7 @@ self: super: { "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"; @@ -1877,6 +1896,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1887,6 +1907,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2032,6 +2053,7 @@ self: super: { "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"; @@ -2061,13 +2083,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2276,6 +2301,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2348,6 +2374,7 @@ self: super: { "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-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"; @@ -2383,6 +2410,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2472,6 +2500,7 @@ self: super: { "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"; @@ -2546,6 +2575,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2732,6 +2762,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2756,6 +2787,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2857,6 +2889,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2906,6 +2939,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2925,6 +2959,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2953,6 +2988,7 @@ self: super: { "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"; @@ -3012,6 +3048,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3026,6 +3063,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3219,8 +3257,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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_0_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; @@ -3250,8 +3290,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3277,7 +3315,6 @@ self: super: { "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-typelits-natnormalise" = doDistribute super."ghc-typelits-natnormalise_0_4"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3306,6 +3343,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3320,6 +3359,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3344,7 +3384,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3360,6 +3402,7 @@ self: super: { "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"; @@ -3493,6 +3536,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3566,6 +3610,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3576,6 +3621,7 @@ self: super: { "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"; @@ -3585,6 +3631,7 @@ self: super: { "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"; @@ -3594,6 +3641,7 @@ self: super: { "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"; @@ -3620,6 +3668,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_1"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3677,7 +3726,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3828,6 +3879,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3946,6 +3998,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3962,6 +4015,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3970,6 +4024,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -4000,6 +4055,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4056,6 +4112,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4119,9 +4176,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4135,6 +4194,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4241,6 +4301,7 @@ self: super: { "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"; @@ -4358,6 +4419,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4580,6 +4642,7 @@ self: super: { "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"; @@ -4628,9 +4691,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4646,6 +4713,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4786,6 +4854,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4796,6 +4865,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_0"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4844,6 +4914,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4901,6 +4972,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4977,6 +5049,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5026,7 +5099,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5061,6 +5136,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5101,6 +5177,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5262,6 +5339,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5332,6 +5410,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5563,6 +5642,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5722,6 +5802,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5849,6 +5930,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5958,6 +6040,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_16_0_1"; "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"; @@ -6027,6 +6110,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-content" = doDistribute super."pdf-toolbox-content_0_0_5_0"; "pdf-toolbox-core" = doDistribute super."pdf-toolbox-core_0_0_4_0"; "pdf-toolbox-document" = doDistribute super."pdf-toolbox-document_0_0_7_0"; @@ -6066,7 +6150,10 @@ self: super: { "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"; @@ -6088,6 +6175,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6107,6 +6195,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6123,6 +6212,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6139,6 +6229,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; "pipes-text" = doDistribute super."pipes-text_0_0_1_0"; @@ -6152,6 +6243,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6176,6 +6268,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6282,6 +6375,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6333,6 +6427,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6673,12 +6768,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; + "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_1"; @@ -6781,6 +6878,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6803,6 +6901,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6947,6 +7046,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7069,6 +7169,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7114,6 +7215,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7352,6 +7454,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7622,6 +7726,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7642,6 +7747,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7651,6 +7757,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7661,6 +7768,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7776,6 +7884,7 @@ self: super: { "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"; @@ -7787,6 +7896,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7939,6 +8049,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8173,6 +8284,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8249,9 +8361,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8275,6 +8389,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8290,6 +8405,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8539,6 +8655,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8548,6 +8665,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index ffbe906c581b..553b2a43f3d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -559,6 +562,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -582,6 +586,7 @@ self: super: { "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"; @@ -697,6 +702,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -975,6 +981,7 @@ self: super: { "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"; @@ -1402,6 +1409,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1472,6 +1480,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1491,6 +1500,7 @@ self: super: { "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"; @@ -1520,6 +1530,7 @@ self: super: { "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"; @@ -1608,6 +1619,7 @@ self: super: { "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"; @@ -1630,6 +1642,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1661,6 +1674,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1682,6 +1696,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1697,6 +1712,7 @@ self: super: { "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"; @@ -1727,10 +1743,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1761,7 +1779,9 @@ self: super: { "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"; @@ -1776,6 +1796,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1802,6 +1823,7 @@ self: super: { "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"; @@ -1842,6 +1864,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1860,6 +1883,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1870,6 +1894,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -2009,6 +2034,7 @@ self: super: { "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"; @@ -2038,13 +2064,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2250,6 +2279,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2322,6 +2352,7 @@ self: super: { "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-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"; @@ -2356,6 +2387,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2445,6 +2477,7 @@ self: super: { "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"; @@ -2516,6 +2549,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2698,6 +2732,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2719,8 +2754,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2818,6 +2856,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2867,6 +2906,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2885,6 +2925,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2911,6 +2952,7 @@ self: super: { "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"; @@ -2969,6 +3011,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2983,6 +3026,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3175,7 +3219,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3204,8 +3250,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3229,7 +3273,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3258,6 +3301,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3272,6 +3317,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3294,7 +3341,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3310,6 +3359,7 @@ self: super: { "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"; @@ -3443,6 +3493,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3516,6 +3567,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3526,6 +3578,7 @@ self: super: { "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"; @@ -3535,6 +3588,7 @@ self: super: { "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"; @@ -3544,6 +3598,7 @@ self: super: { "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"; @@ -3569,6 +3624,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3626,7 +3682,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3775,6 +3833,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3892,6 +3951,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3908,6 +3968,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_1"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3915,6 +3976,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3945,6 +4007,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4000,6 +4063,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4062,9 +4126,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4078,6 +4144,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4109,6 +4176,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4182,6 +4250,7 @@ self: super: { "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"; @@ -4298,6 +4367,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4325,6 +4395,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4516,6 +4587,7 @@ self: super: { "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"; @@ -4561,9 +4633,13 @@ self: super: { "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"; @@ -4579,6 +4655,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4717,6 +4794,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4727,6 +4805,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4775,6 +4854,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4831,6 +4911,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4906,6 +4987,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4955,7 +5037,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4990,6 +5074,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5030,6 +5115,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5188,6 +5274,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5258,6 +5345,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5383,6 +5471,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5398,6 +5487,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5440,6 +5530,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5477,6 +5568,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5634,6 +5726,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5757,6 +5850,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5862,6 +5956,7 @@ self: super: { "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"; @@ -5929,6 +6024,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5956,6 +6052,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5964,10 +6061,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5985,6 +6086,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6004,6 +6106,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6018,6 +6121,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6034,8 +6138,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6046,6 +6152,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6070,6 +6177,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6176,6 +6284,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6227,6 +6336,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6562,12 +6672,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6669,6 +6781,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6691,6 +6804,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6833,6 +6947,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6954,6 +7069,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6997,6 +7113,7 @@ self: super: { "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"; @@ -7233,6 +7350,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7498,6 +7617,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7518,6 +7638,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7527,6 +7648,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7537,6 +7659,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7651,6 +7774,7 @@ self: super: { "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"; @@ -7662,6 +7786,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7811,6 +7936,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8042,6 +8168,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8058,6 +8185,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8099,6 +8227,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8111,9 +8240,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8137,6 +8268,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8151,6 +8283,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8399,6 +8532,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8408,6 +8542,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 8f59fcc4f309..31ee37f13bd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -558,6 +561,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -581,6 +585,7 @@ self: super: { "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"; @@ -696,6 +701,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -974,6 +980,7 @@ self: super: { "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"; @@ -1400,6 +1407,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1469,6 +1477,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1488,6 +1497,7 @@ self: super: { "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"; @@ -1517,6 +1527,7 @@ self: super: { "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"; @@ -1604,6 +1615,7 @@ self: super: { "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"; @@ -1626,6 +1638,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1657,6 +1670,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1678,6 +1692,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1693,6 +1708,7 @@ self: super: { "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"; @@ -1723,10 +1739,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1757,7 +1775,9 @@ self: super: { "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"; @@ -1772,6 +1792,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1798,6 +1819,7 @@ self: super: { "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"; @@ -1838,6 +1860,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1856,6 +1879,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1866,6 +1890,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -2001,9 +2026,11 @@ self: super: { "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"; @@ -2033,13 +2060,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2244,6 +2274,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2316,6 +2347,7 @@ self: super: { "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-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"; @@ -2350,6 +2382,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2439,6 +2472,7 @@ self: super: { "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"; @@ -2510,6 +2544,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2692,6 +2727,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2713,8 +2749,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2812,6 +2851,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2860,6 +2900,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2878,6 +2919,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2904,6 +2946,7 @@ self: super: { "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"; @@ -2962,6 +3005,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2976,6 +3020,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2987,6 +3032,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3167,7 +3213,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3196,8 +3244,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3221,7 +3267,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3250,6 +3295,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3264,6 +3311,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3286,7 +3335,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3302,6 +3353,7 @@ self: super: { "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"; @@ -3435,6 +3487,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3508,6 +3561,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3518,6 +3572,7 @@ self: super: { "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"; @@ -3527,6 +3582,7 @@ self: super: { "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"; @@ -3536,6 +3592,7 @@ self: super: { "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"; @@ -3561,6 +3618,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3618,7 +3676,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3767,6 +3827,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3884,6 +3945,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3900,6 +3962,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_1"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3907,6 +3970,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3937,6 +4001,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3992,6 +4057,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4054,9 +4120,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4070,6 +4138,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4101,6 +4170,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4173,6 +4243,7 @@ self: super: { "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"; @@ -4289,6 +4360,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4313,6 +4385,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4503,6 +4576,7 @@ self: super: { "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"; @@ -4548,9 +4622,13 @@ self: super: { "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"; @@ -4566,6 +4644,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4704,6 +4783,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4714,6 +4794,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_2"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4762,6 +4843,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4818,6 +4900,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4893,6 +4976,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4942,7 +5026,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4977,6 +5063,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5017,6 +5104,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5175,6 +5263,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_10"; @@ -5245,6 +5334,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5370,6 +5460,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5385,6 +5476,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5427,6 +5519,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5464,6 +5557,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5621,6 +5715,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5744,6 +5839,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5849,6 +5945,7 @@ self: super: { "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"; @@ -5916,6 +6013,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5943,6 +6041,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5951,10 +6050,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5972,6 +6075,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5991,6 +6095,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6005,6 +6110,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6021,8 +6127,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6033,6 +6141,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6057,6 +6166,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6162,6 +6272,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6213,6 +6324,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6548,12 +6660,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6655,6 +6769,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6677,6 +6792,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6819,6 +6935,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6940,6 +7057,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6983,6 +7101,7 @@ self: super: { "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"; @@ -7219,6 +7338,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7482,6 +7603,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7502,6 +7624,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7511,6 +7634,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7521,6 +7645,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7635,6 +7760,7 @@ self: super: { "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"; @@ -7646,6 +7772,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7795,6 +7922,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8023,6 +8151,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8039,6 +8168,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8080,6 +8210,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8092,9 +8223,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8118,6 +8251,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8132,6 +8266,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8379,6 +8514,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8388,6 +8524,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 5ec01e2d2342..c437c0b87d4d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -557,6 +560,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -580,6 +584,7 @@ self: super: { "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"; @@ -695,6 +700,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -973,6 +979,7 @@ self: super: { "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"; @@ -1399,6 +1406,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1468,6 +1476,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1487,6 +1496,7 @@ self: super: { "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"; @@ -1516,6 +1526,7 @@ self: super: { "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"; @@ -1603,6 +1614,7 @@ self: super: { "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"; @@ -1625,6 +1637,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1656,6 +1669,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1677,6 +1691,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1692,6 +1707,7 @@ self: super: { "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"; @@ -1722,10 +1738,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1756,7 +1774,9 @@ self: super: { "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"; @@ -1771,6 +1791,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1797,6 +1818,7 @@ self: super: { "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"; @@ -1837,6 +1859,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1855,6 +1878,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1865,6 +1889,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1996,9 +2021,11 @@ self: super: { "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"; @@ -2028,13 +2055,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2239,6 +2269,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2311,6 +2342,7 @@ self: super: { "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-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"; @@ -2345,6 +2377,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2434,6 +2467,7 @@ self: super: { "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"; @@ -2505,6 +2539,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2686,6 +2721,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2707,8 +2743,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2806,6 +2845,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2853,6 +2893,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2871,6 +2912,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_2"; @@ -2897,6 +2939,7 @@ self: super: { "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"; @@ -2955,6 +2998,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2969,6 +3013,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2980,6 +3025,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3160,7 +3206,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3189,8 +3237,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3214,7 +3260,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3243,6 +3288,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3257,6 +3304,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3279,7 +3328,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3295,6 +3346,7 @@ self: super: { "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"; @@ -3428,6 +3480,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3501,6 +3554,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3511,6 +3565,7 @@ self: super: { "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"; @@ -3520,6 +3575,7 @@ self: super: { "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"; @@ -3529,6 +3585,7 @@ self: super: { "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"; @@ -3554,6 +3611,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3611,7 +3669,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3760,6 +3820,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3877,6 +3938,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3893,6 +3955,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3900,6 +3963,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3930,6 +3994,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3985,6 +4050,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4047,9 +4113,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4063,6 +4131,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4094,6 +4163,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4166,6 +4236,7 @@ self: super: { "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"; @@ -4282,6 +4353,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4306,6 +4378,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4495,6 +4568,7 @@ self: super: { "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"; @@ -4540,9 +4614,13 @@ self: super: { "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"; @@ -4558,6 +4636,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4696,6 +4775,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4706,6 +4786,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4754,6 +4835,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4810,6 +4892,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4885,6 +4968,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4934,7 +5018,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4969,6 +5055,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5009,6 +5096,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5167,6 +5255,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-zlib" = dontDistribute super."machines-zlib"; @@ -5234,6 +5323,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5356,6 +5446,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5371,6 +5462,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5413,6 +5505,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5450,6 +5543,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5607,6 +5701,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5730,6 +5825,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5835,6 +5931,7 @@ self: super: { "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"; @@ -5902,6 +5999,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5929,6 +6027,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5937,10 +6036,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5958,6 +6061,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5977,6 +6081,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5991,6 +6096,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6005,8 +6111,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6017,6 +6125,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6041,6 +6150,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6146,6 +6256,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6197,6 +6308,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6532,12 +6644,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6639,6 +6753,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6661,6 +6776,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6802,6 +6918,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6923,6 +7040,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6965,6 +7083,7 @@ self: super: { "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"; @@ -7201,6 +7320,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7392,6 +7513,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7461,6 +7583,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7481,6 +7604,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7490,6 +7614,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7500,6 +7625,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7614,6 +7740,7 @@ self: super: { "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"; @@ -7625,6 +7752,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7774,6 +7902,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8002,6 +8131,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8018,6 +8148,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8059,6 +8190,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8071,9 +8203,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8097,6 +8231,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8111,6 +8246,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8358,6 +8494,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8367,6 +8504,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index f722a30bf511..a8af96375789 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -557,6 +560,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -580,6 +584,7 @@ self: super: { "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"; @@ -695,6 +700,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -972,6 +978,7 @@ self: super: { "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"; @@ -1397,6 +1404,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1465,6 +1473,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1483,6 +1492,7 @@ self: super: { "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"; @@ -1512,6 +1522,7 @@ self: super: { "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"; @@ -1598,6 +1609,7 @@ self: super: { "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"; @@ -1620,6 +1632,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1651,6 +1664,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1672,6 +1686,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1687,6 +1702,7 @@ self: super: { "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"; @@ -1717,10 +1733,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1751,7 +1769,9 @@ self: super: { "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"; @@ -1766,6 +1786,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1792,6 +1813,7 @@ self: super: { "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"; @@ -1832,6 +1854,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1850,6 +1873,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1860,6 +1884,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1988,9 +2013,11 @@ self: super: { "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"; @@ -2020,13 +2047,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2231,6 +2261,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2303,6 +2334,7 @@ self: super: { "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-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"; @@ -2337,6 +2369,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2426,6 +2459,7 @@ self: super: { "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"; @@ -2497,6 +2531,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2677,6 +2712,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2698,8 +2734,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2797,6 +2836,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2844,6 +2884,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2862,6 +2903,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_3"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_3"; @@ -2888,6 +2930,7 @@ self: super: { "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"; @@ -2946,6 +2989,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2960,6 +3004,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2971,6 +3016,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3151,7 +3197,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3180,8 +3228,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3205,7 +3251,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3234,6 +3279,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3248,6 +3295,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3270,7 +3319,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3286,6 +3337,7 @@ self: super: { "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"; @@ -3419,6 +3471,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3492,6 +3545,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3502,6 +3556,7 @@ self: super: { "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"; @@ -3511,6 +3566,7 @@ self: super: { "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"; @@ -3520,6 +3576,7 @@ self: super: { "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"; @@ -3545,6 +3602,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3602,7 +3660,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3751,6 +3811,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3868,6 +3929,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3884,6 +3946,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3891,6 +3954,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3921,6 +3985,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3976,6 +4041,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4038,9 +4104,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4054,6 +4122,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4085,6 +4154,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4157,6 +4227,7 @@ self: super: { "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"; @@ -4273,6 +4344,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4297,6 +4369,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4483,6 +4556,7 @@ self: super: { "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"; @@ -4528,9 +4602,13 @@ self: super: { "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"; @@ -4546,6 +4624,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4602,6 +4681,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4682,6 +4762,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4692,6 +4773,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4740,6 +4822,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4796,6 +4879,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4871,6 +4955,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4920,7 +5005,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4955,6 +5042,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4995,6 +5083,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5153,6 +5242,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5219,6 +5309,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5341,6 +5432,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5356,6 +5448,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5397,6 +5490,7 @@ self: super: { "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_4"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5434,6 +5528,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5591,6 +5686,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5714,6 +5810,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5818,6 +5915,7 @@ self: super: { "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"; @@ -5885,6 +5983,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5912,6 +6011,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5920,10 +6020,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5941,6 +6045,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5960,6 +6065,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5972,6 +6078,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5986,8 +6093,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5998,6 +6107,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6022,6 +6132,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6127,6 +6238,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6178,6 +6290,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6513,12 +6626,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6620,6 +6735,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6642,6 +6758,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6783,6 +6900,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6904,6 +7022,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6946,6 +7065,7 @@ self: super: { "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"; @@ -7182,6 +7302,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7373,6 +7495,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7442,6 +7565,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7462,6 +7586,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7471,6 +7596,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7481,6 +7607,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7595,6 +7722,7 @@ self: super: { "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"; @@ -7606,6 +7734,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7755,6 +7884,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7960,6 +8090,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7980,6 +8111,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -7996,6 +8128,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8037,6 +8170,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8049,9 +8183,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8075,6 +8211,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8089,6 +8226,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8334,6 +8472,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8343,6 +8482,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index d1a5d43a4855..0495d4ccab5b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -556,6 +559,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -579,6 +583,7 @@ self: super: { "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"; @@ -693,6 +698,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -970,6 +976,7 @@ self: super: { "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"; @@ -1393,6 +1400,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3_1"; @@ -1461,6 +1469,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1479,6 +1488,7 @@ self: super: { "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"; @@ -1508,6 +1518,7 @@ self: super: { "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"; @@ -1594,6 +1605,7 @@ self: super: { "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"; @@ -1616,6 +1628,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1646,6 +1659,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1667,6 +1681,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1682,6 +1697,7 @@ self: super: { "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"; @@ -1712,10 +1728,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1746,7 +1764,9 @@ self: super: { "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"; @@ -1761,6 +1781,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1787,6 +1808,7 @@ self: super: { "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"; @@ -1827,6 +1849,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1845,6 +1868,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1855,6 +1879,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1982,9 +2007,11 @@ self: super: { "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"; @@ -2014,13 +2041,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2221,6 +2251,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2293,6 +2324,7 @@ self: super: { "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-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"; @@ -2327,6 +2359,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2416,6 +2449,7 @@ self: super: { "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"; @@ -2487,6 +2521,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2667,6 +2702,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2688,8 +2724,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2787,6 +2826,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2834,6 +2874,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2852,6 +2893,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_4"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_5"; @@ -2878,6 +2920,7 @@ self: super: { "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"; @@ -2935,6 +2978,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2949,6 +2993,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2960,6 +3005,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3140,7 +3186,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3168,8 +3216,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3193,7 +3239,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3222,6 +3267,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3236,6 +3283,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3258,7 +3307,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3274,6 +3325,7 @@ self: super: { "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"; @@ -3407,6 +3459,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3480,6 +3533,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3490,6 +3544,7 @@ self: super: { "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"; @@ -3499,6 +3554,7 @@ self: super: { "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"; @@ -3508,6 +3564,7 @@ self: super: { "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"; @@ -3533,6 +3590,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3590,7 +3648,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3739,6 +3799,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3856,6 +3917,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3872,6 +3934,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3879,6 +3942,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3909,6 +3973,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3964,6 +4029,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4025,9 +4091,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4041,6 +4109,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4072,6 +4141,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4144,6 +4214,7 @@ self: super: { "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"; @@ -4260,6 +4331,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4284,6 +4356,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4470,6 +4543,7 @@ self: super: { "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"; @@ -4515,9 +4589,13 @@ self: super: { "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"; @@ -4533,6 +4611,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4589,6 +4668,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4669,6 +4749,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4679,6 +4760,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4727,6 +4809,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4783,6 +4866,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4858,6 +4942,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4906,7 +4991,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4941,6 +5028,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4981,6 +5069,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5139,6 +5228,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5205,6 +5295,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5326,6 +5417,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5341,6 +5433,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5382,6 +5475,7 @@ self: super: { "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_4"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5419,6 +5513,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5575,6 +5670,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5698,6 +5794,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5802,6 +5899,7 @@ self: super: { "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"; @@ -5868,6 +5966,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5895,6 +5994,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5903,10 +6003,14 @@ self: super: { "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"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5924,6 +6028,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5943,6 +6048,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5955,6 +6061,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5969,8 +6076,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5981,6 +6090,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6005,6 +6115,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6110,6 +6221,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6161,6 +6273,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6495,11 +6608,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_4"; + "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_1"; @@ -6601,6 +6717,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6623,6 +6740,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6764,6 +6882,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6882,6 +7001,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6923,6 +7043,7 @@ self: super: { "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"; @@ -7101,6 +7222,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7158,6 +7280,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7348,6 +7472,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7398,6 +7523,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_2"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; @@ -7415,6 +7541,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7435,6 +7562,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7444,6 +7572,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7454,6 +7583,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7568,6 +7698,7 @@ self: super: { "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"; @@ -7579,6 +7710,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7627,6 +7759,7 @@ self: super: { "turingMachine" = dontDistribute super."turingMachine"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_7"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7727,6 +7860,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7930,6 +8064,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7948,6 +8083,7 @@ self: super: { "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "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"; @@ -7964,8 +8100,10 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -8004,6 +8142,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8016,9 +8155,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8042,6 +8183,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8056,6 +8198,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8209,6 +8352,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8293,6 +8437,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8302,6 +8447,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 6f3045f04253..3d2668401f7f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -236,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -313,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -321,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -555,6 +558,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -578,6 +582,7 @@ self: super: { "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"; @@ -692,6 +697,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -969,6 +975,7 @@ self: super: { "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"; @@ -1392,6 +1399,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3_1"; @@ -1460,6 +1468,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1478,6 +1487,7 @@ self: super: { "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"; @@ -1507,6 +1517,7 @@ self: super: { "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"; @@ -1593,6 +1604,7 @@ self: super: { "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"; @@ -1615,6 +1627,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1645,6 +1658,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1666,6 +1680,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1681,6 +1696,7 @@ self: super: { "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"; @@ -1711,10 +1727,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1745,7 +1763,9 @@ self: super: { "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"; @@ -1760,6 +1780,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1786,6 +1807,7 @@ self: super: { "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"; @@ -1826,6 +1848,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1844,6 +1867,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1854,6 +1878,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1981,9 +2006,11 @@ self: super: { "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"; @@ -2013,13 +2040,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2219,6 +2249,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2290,6 +2321,7 @@ self: super: { "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-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"; @@ -2324,6 +2356,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2413,6 +2446,7 @@ self: super: { "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"; @@ -2484,6 +2518,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2664,6 +2699,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2684,8 +2720,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2783,6 +2822,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2830,6 +2870,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_5"; "extractelf" = dontDistribute super."extractelf"; @@ -2848,6 +2889,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_4"; "fast-digits" = dontDistribute super."fast-digits"; "fast-math" = dontDistribute super."fast-math"; @@ -2873,6 +2915,7 @@ self: super: { "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"; @@ -2930,6 +2973,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2944,6 +2988,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2955,6 +3000,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3135,7 +3181,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3163,8 +3211,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3188,7 +3234,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3217,6 +3262,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3231,6 +3278,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3253,7 +3302,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3269,6 +3320,7 @@ self: super: { "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"; @@ -3402,6 +3454,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3475,6 +3528,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3485,6 +3539,7 @@ self: super: { "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"; @@ -3494,6 +3549,7 @@ self: super: { "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"; @@ -3503,6 +3559,7 @@ self: super: { "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"; @@ -3528,6 +3585,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3585,7 +3643,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3734,6 +3794,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3850,6 +3911,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3866,6 +3928,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3873,6 +3936,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3902,6 +3966,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3957,6 +4022,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4018,9 +4084,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4034,6 +4102,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4065,6 +4134,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4137,6 +4207,7 @@ self: super: { "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"; @@ -4253,6 +4324,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4277,6 +4349,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4463,6 +4536,7 @@ self: super: { "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"; @@ -4508,9 +4582,13 @@ self: super: { "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"; @@ -4526,6 +4604,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4582,6 +4661,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4662,6 +4742,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4672,6 +4753,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4720,6 +4802,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4776,6 +4859,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4851,6 +4935,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4899,7 +4984,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4933,6 +5020,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4973,6 +5061,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5131,6 +5220,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5197,6 +5287,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5318,6 +5409,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5333,6 +5425,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5374,6 +5467,7 @@ self: super: { "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_4"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5411,6 +5505,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5567,6 +5662,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5690,6 +5786,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5794,6 +5891,7 @@ self: super: { "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"; @@ -5860,6 +5958,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5887,6 +5986,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5895,10 +5995,14 @@ self: super: { "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"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5916,6 +6020,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5935,6 +6040,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5947,6 +6053,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5961,8 +6068,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5973,6 +6082,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5997,6 +6107,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6058,6 +6169,7 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; @@ -6099,6 +6211,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6150,6 +6263,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6484,11 +6598,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; + "rethinkdb" = doDistribute super."rethinkdb_2_2_0_4"; + "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_1"; @@ -6590,6 +6707,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6612,6 +6730,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6753,6 +6872,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6871,6 +6991,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6912,6 +7033,7 @@ self: super: { "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"; @@ -7090,6 +7212,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7147,6 +7270,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7336,6 +7461,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7386,6 +7512,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_2"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; @@ -7403,6 +7530,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7423,6 +7551,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7432,6 +7561,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4_1"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7442,6 +7572,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7556,6 +7687,7 @@ self: super: { "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"; @@ -7566,6 +7698,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7614,6 +7747,7 @@ self: super: { "turingMachine" = dontDistribute super."turingMachine"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_7"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7714,6 +7848,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7917,6 +8052,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7935,6 +8071,7 @@ self: super: { "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "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"; @@ -7951,8 +8088,10 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7991,6 +8130,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8003,9 +8143,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8029,6 +8171,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8043,6 +8186,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8195,6 +8339,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8279,6 +8424,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8288,6 +8434,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index c1eca86682d0..a26b96eb3009 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.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_2_3"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -235,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -312,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -320,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -553,6 +557,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -576,6 +581,7 @@ self: super: { "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"; @@ -690,6 +696,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -967,7 +974,6 @@ self: super: { "Webrexp" = dontDistribute super."Webrexp"; "Wheb" = dontDistribute super."Wheb"; "WikimediaParser" = dontDistribute super."WikimediaParser"; - "Win32" = doDistribute super."Win32_2_3_1_1"; "Win32-dhcp-server" = dontDistribute super."Win32-dhcp-server"; "Win32-errors" = dontDistribute super."Win32-errors"; "Win32-junction-point" = dontDistribute super."Win32-junction-point"; @@ -1388,6 +1394,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "autoexporter" = dontDistribute super."autoexporter"; @@ -1453,6 +1460,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1471,6 +1479,7 @@ self: super: { "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"; @@ -1500,6 +1509,7 @@ self: super: { "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"; @@ -1586,6 +1596,7 @@ self: super: { "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"; @@ -1608,6 +1619,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1638,6 +1650,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1659,6 +1672,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1674,6 +1688,7 @@ self: super: { "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"; @@ -1704,10 +1719,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1738,7 +1755,9 @@ self: super: { "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"; @@ -1752,6 +1771,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1778,6 +1798,7 @@ self: super: { "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"; @@ -1818,6 +1839,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1836,6 +1858,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1846,6 +1869,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1973,9 +1997,11 @@ self: super: { "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"; @@ -2005,13 +2031,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2208,6 +2237,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2279,6 +2309,7 @@ self: super: { "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-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"; @@ -2313,6 +2344,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2402,6 +2434,7 @@ self: super: { "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"; @@ -2464,6 +2497,7 @@ self: super: { "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"; @@ -2644,6 +2678,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2663,8 +2698,11 @@ self: super: { "eibd-client-simple" = dontDistribute super."eibd-client-simple"; "eigen" = dontDistribute super."eigen"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2762,6 +2800,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2809,6 +2848,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_5"; "extractelf" = dontDistribute super."extractelf"; @@ -2827,6 +2867,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_4"; "fast-digits" = dontDistribute super."fast-digits"; "fast-math" = dontDistribute super."fast-math"; @@ -2852,6 +2893,7 @@ self: super: { "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"; @@ -2909,6 +2951,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2923,6 +2966,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2934,6 +2978,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3113,7 +3158,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3141,8 +3188,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3166,7 +3211,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3195,6 +3239,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3209,6 +3255,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3231,7 +3279,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3247,6 +3297,7 @@ self: super: { "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"; @@ -3380,6 +3431,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3453,6 +3505,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3463,6 +3516,7 @@ self: super: { "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"; @@ -3472,6 +3526,7 @@ self: super: { "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"; @@ -3481,6 +3536,7 @@ self: super: { "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"; @@ -3506,6 +3562,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3563,7 +3620,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3711,6 +3770,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3826,6 +3886,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3842,6 +3903,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3849,6 +3911,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3878,6 +3941,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3933,6 +3997,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -3994,9 +4059,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4010,6 +4077,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4041,6 +4109,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4113,6 +4182,7 @@ self: super: { "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"; @@ -4229,6 +4299,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4253,6 +4324,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4438,6 +4510,7 @@ self: super: { "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"; @@ -4483,9 +4556,13 @@ self: super: { "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"; @@ -4501,6 +4578,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4557,6 +4635,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4637,6 +4716,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4647,6 +4727,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4694,6 +4775,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4750,6 +4832,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4825,6 +4908,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4873,7 +4957,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4906,6 +4992,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4946,6 +5033,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5104,6 +5192,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5169,6 +5258,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5290,6 +5380,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5305,6 +5396,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5346,6 +5438,7 @@ self: super: { "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"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; @@ -5382,6 +5475,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5537,6 +5631,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5660,6 +5755,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5764,6 +5860,7 @@ self: super: { "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"; @@ -5830,6 +5927,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5857,6 +5955,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5865,10 +5964,14 @@ self: super: { "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"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5886,6 +5989,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5905,6 +6009,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5916,6 +6021,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5927,10 +6033,13 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5941,6 +6050,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5965,6 +6075,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6026,6 +6137,7 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; @@ -6066,6 +6178,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6117,6 +6230,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6447,12 +6561,16 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "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_4"; + "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_2"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6551,6 +6669,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6573,6 +6692,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6714,6 +6834,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6832,6 +6953,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6872,6 +6994,7 @@ self: super: { "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"; @@ -7046,6 +7169,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7103,6 +7227,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7290,6 +7416,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7340,6 +7467,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_2"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; @@ -7357,6 +7485,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7377,6 +7506,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7386,6 +7516,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "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"; @@ -7395,6 +7526,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7509,6 +7641,7 @@ self: super: { "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"; @@ -7519,6 +7652,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7567,6 +7701,7 @@ self: super: { "turingMachine" = dontDistribute super."turingMachine"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_7"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7665,6 +7800,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7868,6 +8004,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7886,6 +8023,7 @@ self: super: { "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "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"; @@ -7902,8 +8040,10 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7942,6 +8082,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -7954,9 +8095,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -7980,6 +8123,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -7994,6 +8138,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8146,6 +8291,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8229,6 +8375,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8237,6 +8384,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index aa82643c72cf..703373890846 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.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_2_3"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -235,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -312,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -320,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -551,6 +555,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -574,6 +579,7 @@ self: super: { "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"; @@ -688,6 +694,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -964,6 +971,7 @@ self: super: { "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"; @@ -1384,6 +1392,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "autoexporter" = dontDistribute super."autoexporter"; @@ -1449,6 +1458,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1466,6 +1476,7 @@ self: super: { "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"; @@ -1495,6 +1506,7 @@ self: super: { "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"; @@ -1581,6 +1593,7 @@ self: super: { "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"; @@ -1603,6 +1616,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1633,6 +1647,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1654,6 +1669,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1669,6 +1685,7 @@ self: super: { "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"; @@ -1699,10 +1716,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1732,7 +1751,9 @@ self: super: { "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"; @@ -1746,6 +1767,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1772,6 +1794,7 @@ self: super: { "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"; @@ -1812,6 +1835,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1830,6 +1854,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1840,6 +1865,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1967,9 +1993,11 @@ self: super: { "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"; @@ -1999,13 +2027,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2202,6 +2233,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2273,6 +2305,7 @@ self: super: { "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-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"; @@ -2307,6 +2340,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2396,6 +2430,7 @@ self: super: { "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"; @@ -2458,6 +2493,7 @@ self: super: { "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"; @@ -2638,6 +2674,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2657,8 +2694,11 @@ self: super: { "eibd-client-simple" = dontDistribute super."eibd-client-simple"; "eigen" = dontDistribute super."eigen"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2756,6 +2796,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2803,6 +2844,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_6"; "extractelf" = dontDistribute super."extractelf"; @@ -2821,6 +2863,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_4"; "fast-digits" = dontDistribute super."fast-digits"; "fast-math" = dontDistribute super."fast-math"; @@ -2846,6 +2889,7 @@ self: super: { "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"; @@ -2903,6 +2947,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2917,6 +2962,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2928,6 +2974,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3107,7 +3154,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3135,8 +3184,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3160,7 +3207,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3189,6 +3235,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3203,6 +3251,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3225,7 +3275,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3241,6 +3293,7 @@ self: super: { "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"; @@ -3374,6 +3427,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3447,6 +3501,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3457,6 +3512,7 @@ self: super: { "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"; @@ -3466,6 +3522,7 @@ self: super: { "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"; @@ -3475,6 +3532,7 @@ self: super: { "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"; @@ -3500,6 +3558,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3557,7 +3616,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3705,6 +3766,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3819,6 +3881,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3834,6 +3897,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3841,6 +3905,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3870,6 +3935,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3925,6 +3991,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -3986,9 +4053,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4002,6 +4071,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4033,6 +4103,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4105,6 +4176,7 @@ self: super: { "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"; @@ -4221,6 +4293,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4245,6 +4318,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4430,6 +4504,7 @@ self: super: { "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"; @@ -4475,9 +4550,13 @@ self: super: { "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"; @@ -4493,6 +4572,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4549,6 +4629,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4629,6 +4710,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4639,6 +4721,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_3"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4686,6 +4769,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4742,6 +4826,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4817,6 +4902,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4865,7 +4951,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4898,6 +4986,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4938,6 +5027,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5096,6 +5186,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5160,6 +5251,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5281,6 +5373,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5296,6 +5389,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5337,6 +5431,7 @@ self: super: { "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"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; @@ -5373,6 +5468,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5527,6 +5623,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5650,6 +5747,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5754,6 +5852,7 @@ self: super: { "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"; @@ -5819,6 +5918,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5846,6 +5946,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5854,10 +5955,15 @@ self: super: { "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"; @@ -5874,6 +5980,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5893,6 +6000,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5904,6 +6012,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5915,10 +6024,13 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5929,6 +6041,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5953,6 +6066,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6014,6 +6128,7 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; @@ -6054,6 +6169,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6105,6 +6221,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6434,12 +6551,16 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "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_4"; + "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_2"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6538,6 +6659,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6560,6 +6682,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6701,6 +6824,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6819,6 +6943,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6859,6 +6984,7 @@ self: super: { "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"; @@ -7033,6 +7159,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7062,6 +7189,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-containers" = doDistribute super."stm-containers_0_2_11"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7089,6 +7217,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7275,6 +7405,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7325,6 +7456,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_2"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; @@ -7342,6 +7474,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7362,6 +7495,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7371,6 +7505,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "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"; @@ -7380,6 +7515,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7493,6 +7629,7 @@ self: super: { "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"; @@ -7503,6 +7640,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7550,6 +7688,7 @@ self: super: { "turingMachine" = dontDistribute super."turingMachine"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_7"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7648,6 +7787,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7851,6 +7991,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7869,6 +8010,7 @@ self: super: { "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "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"; @@ -7885,8 +8027,10 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7925,6 +8069,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -7937,9 +8082,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -7963,6 +8110,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -7977,6 +8125,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8128,6 +8277,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8211,6 +8361,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8219,6 +8370,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index 4b25949f41f2..a9fd71590161 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.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_2_3"; "BluePrintCSS" = dontDistribute super."BluePrintCSS"; "Blueprint" = dontDistribute super."Blueprint"; "Bookshelf" = dontDistribute super."Bookshelf"; @@ -235,6 +236,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -312,6 +314,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -320,6 +323,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -551,6 +555,7 @@ self: super: { "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"; @@ -573,6 +578,7 @@ self: super: { "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"; @@ -622,6 +628,7 @@ self: super: { "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"; @@ -686,6 +693,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -962,6 +970,7 @@ self: super: { "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"; @@ -1382,6 +1391,7 @@ self: super: { "aur" = dontDistribute super."aur"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "autoexporter" = dontDistribute super."autoexporter"; @@ -1447,6 +1457,7 @@ self: super: { "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"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; "base58-bytestring" = dontDistribute super."base58-bytestring"; @@ -1464,6 +1475,7 @@ self: super: { "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"; @@ -1493,6 +1505,7 @@ self: super: { "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"; @@ -1579,6 +1592,7 @@ self: super: { "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"; @@ -1601,6 +1615,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1631,6 +1646,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1652,6 +1668,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1667,6 +1684,7 @@ self: super: { "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"; @@ -1677,6 +1695,7 @@ self: super: { "bspack" = dontDistribute super."bspack"; "bsparse" = dontDistribute super."bsparse"; "btree-concurrent" = dontDistribute super."btree-concurrent"; + "buffer-builder" = doDistribute super."buffer-builder_0_2_4_2"; "buffer-builder-aeson" = dontDistribute super."buffer-builder-aeson"; "buffer-pipe" = dontDistribute super."buffer-pipe"; "buffon" = dontDistribute super."buffon"; @@ -1696,10 +1715,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1729,7 +1750,9 @@ self: super: { "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"; @@ -1743,6 +1766,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1769,6 +1793,7 @@ self: super: { "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"; @@ -1808,6 +1833,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1826,6 +1852,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1836,6 +1863,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -1962,9 +1990,11 @@ self: super: { "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"; @@ -1994,13 +2024,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2197,6 +2230,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2268,6 +2302,7 @@ self: super: { "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-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"; @@ -2302,6 +2337,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2391,6 +2427,7 @@ self: super: { "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"; @@ -2450,6 +2487,7 @@ self: super: { "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"; @@ -2629,6 +2667,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2648,8 +2687,11 @@ self: super: { "eibd-client-simple" = dontDistribute super."eibd-client-simple"; "eigen" = dontDistribute super."eigen"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2747,6 +2789,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2793,7 +2836,9 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_7"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2810,6 +2855,8 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; + "fast-builder" = doDistribute super."fast-builder_0_0_0_5"; "fast-digits" = dontDistribute super."fast-digits"; "fast-math" = dontDistribute super."fast-math"; "fast-tags" = dontDistribute super."fast-tags"; @@ -2834,6 +2881,7 @@ self: super: { "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"; @@ -2891,6 +2939,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2905,6 +2954,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -2916,6 +2966,7 @@ self: super: { "float-binstring" = dontDistribute super."float-binstring"; "floating-bits" = dontDistribute super."floating-bits"; "floatshow" = dontDistribute super."floatshow"; + "flow" = doDistribute super."flow_1_0_6"; "flow2dot" = dontDistribute super."flow2dot"; "flowdock-api" = dontDistribute super."flowdock-api"; "flowdock-rest" = dontDistribute super."flowdock-rest"; @@ -3094,7 +3145,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3122,8 +3175,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3147,7 +3198,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3176,6 +3226,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3190,10 +3242,13 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "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"; @@ -3211,7 +3266,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3227,6 +3284,7 @@ self: super: { "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"; @@ -3360,6 +3418,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3432,6 +3491,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3442,6 +3502,7 @@ self: super: { "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"; @@ -3451,6 +3512,7 @@ self: super: { "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"; @@ -3460,6 +3522,7 @@ self: super: { "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"; @@ -3485,6 +3548,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3542,7 +3606,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3690,6 +3756,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3804,6 +3871,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3819,6 +3887,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_2"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3826,6 +3895,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3855,6 +3925,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -3910,6 +3981,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; "hierarchical-exceptions" = dontDistribute super."hierarchical-exceptions"; @@ -3970,9 +4042,12 @@ self: super: { "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"; @@ -3985,6 +4060,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4016,6 +4092,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4088,6 +4165,7 @@ self: super: { "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"; @@ -4204,6 +4282,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4228,6 +4307,7 @@ self: super: { "hspec-expectations-pretty" = dontDistribute super."hspec-expectations-pretty"; "hspec-experimental" = dontDistribute super."hspec-experimental"; "hspec-laws" = dontDistribute super."hspec-laws"; + "hspec-megaparsec" = 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"; @@ -4411,6 +4491,7 @@ self: super: { "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"; @@ -4456,9 +4537,13 @@ self: super: { "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"; @@ -4474,6 +4559,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4529,6 +4615,7 @@ self: super: { "iotransaction" = dontDistribute super."iotransaction"; "ip" = dontDistribute super."ip"; "ip-quoter" = dontDistribute super."ip-quoter"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; "ipatch" = dontDistribute super."ipatch"; "ipc" = dontDistribute super."ipc"; "ipcvar" = dontDistribute super."ipcvar"; @@ -4609,6 +4696,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4618,6 +4706,7 @@ self: super: { "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4665,6 +4754,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4721,6 +4811,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4796,6 +4887,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4844,7 +4936,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4877,6 +4971,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -4917,6 +5012,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5075,6 +5171,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-zlib" = dontDistribute super."machines-zlib"; "macho" = dontDistribute super."macho"; @@ -5094,6 +5191,7 @@ self: super: { "make-hard-links" = dontDistribute super."make-hard-links"; "make-package" = dontDistribute super."make-package"; "makedo" = dontDistribute super."makedo"; + "managed" = doDistribute super."managed_1_0_4"; "manatee" = dontDistribute super."manatee"; "manatee-all" = dontDistribute super."manatee-all"; "manatee-anything" = dontDistribute super."manatee-anything"; @@ -5138,6 +5236,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5259,6 +5358,7 @@ self: super: { "monad-classes" = dontDistribute super."monad-classes"; "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5273,6 +5373,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-ran" = dontDistribute super."monad-ran"; @@ -5313,6 +5414,7 @@ self: super: { "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"; "monoidplus" = dontDistribute super."monoidplus"; "monoids" = dontDistribute super."monoids"; @@ -5348,6 +5450,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5501,6 +5604,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5623,6 +5727,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5727,6 +5832,7 @@ self: super: { "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"; @@ -5792,6 +5898,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5819,6 +5926,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5827,10 +5935,15 @@ self: super: { "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"; @@ -5847,6 +5960,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -5866,6 +5980,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -5877,6 +5992,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -5888,10 +6004,13 @@ self: super: { "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -5902,6 +6021,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -5926,6 +6046,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -5987,6 +6108,7 @@ self: super: { "postgresql-cube" = dontDistribute super."postgresql-cube"; "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; "postgresql-simple-migration" = dontDistribute super."postgresql-simple-migration"; "postgresql-simple-sop" = dontDistribute super."postgresql-simple-sop"; "postgresql-simple-typed" = dontDistribute super."postgresql-simple-typed"; @@ -6026,6 +6148,7 @@ self: super: { "pretty-compact" = dontDistribute super."pretty-compact"; "pretty-error" = dontDistribute super."pretty-error"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6077,6 +6200,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6406,12 +6530,16 @@ self: super: { "rest-core" = doDistribute super."rest-core_0_37"; "rest-example" = dontDistribute super."rest-example"; "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "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_4"; + "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_2"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6510,6 +6638,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6532,6 +6661,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6673,6 +6803,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6791,6 +6922,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -6831,6 +6963,7 @@ self: super: { "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"; @@ -6912,6 +7045,7 @@ self: super: { "sophia" = dontDistribute super."sophia"; "sort-by-pinyin" = dontDistribute super."sort-by-pinyin"; "sorted" = dontDistribute super."sorted"; + "sorted-list" = doDistribute super."sorted-list_0_1_5_0"; "sorting" = dontDistribute super."sorting"; "sorty" = dontDistribute super."sorty"; "sound-collage" = dontDistribute super."sound-collage"; @@ -7004,6 +7138,7 @@ self: super: { "stash" = dontDistribute super."stash"; "state" = dontDistribute super."state"; "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; "statechart" = dontDistribute super."statechart"; "stateful-mtl" = dontDistribute super."stateful-mtl"; "statethread" = dontDistribute super."statethread"; @@ -7033,6 +7168,7 @@ self: super: { "stm-channelize" = dontDistribute super."stm-channelize"; "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; "stm-conduit" = doDistribute super."stm-conduit_2_7_0"; + "stm-containers" = doDistribute super."stm-containers_0_2_11"; "stm-firehose" = dontDistribute super."stm-firehose"; "stm-io-hooks" = dontDistribute super."stm-io-hooks"; "stm-lifted" = dontDistribute super."stm-lifted"; @@ -7060,6 +7196,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7246,6 +7384,7 @@ self: super: { "telegram" = dontDistribute super."telegram"; "telegram-api" = dontDistribute super."telegram-api"; "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; "template-hsml" = dontDistribute super."template-hsml"; @@ -7296,6 +7435,7 @@ self: super: { "testrunner" = dontDistribute super."testrunner"; "tetris" = dontDistribute super."tetris"; "tex2txt" = dontDistribute super."tex2txt"; + "texmath" = doDistribute super."texmath_0_8_6_2"; "texrunner" = dontDistribute super."texrunner"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-conversions" = dontDistribute super."text-conversions"; @@ -7313,6 +7453,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7333,6 +7474,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; "th-inline-io-action" = dontDistribute super."th-inline-io-action"; @@ -7341,6 +7483,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "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"; @@ -7350,6 +7493,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7463,6 +7607,7 @@ self: super: { "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"; @@ -7473,6 +7618,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7520,6 +7666,7 @@ self: super: { "turingMachine" = dontDistribute super."turingMachine"; "turkish-deasciifier" = dontDistribute super."turkish-deasciifier"; "turni" = dontDistribute super."turni"; + "turtle" = doDistribute super."turtle_1_2_7"; "turtle-options" = dontDistribute super."turtle-options"; "tweak" = dontDistribute super."tweak"; "twee" = dontDistribute super."twee"; @@ -7616,6 +7763,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -7819,6 +7967,7 @@ self: super: { "vulkan" = dontDistribute super."vulkan"; "wacom-daemon" = dontDistribute super."wacom-daemon"; "waddle" = dontDistribute super."waddle"; + "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-devel" = dontDistribute super."wai-devel"; @@ -7836,6 +7985,7 @@ self: super: { "wai-lens" = dontDistribute super."wai-lens"; "wai-lite" = dontDistribute super."wai-lite"; "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"; @@ -7852,8 +8002,10 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; "wai-static-cache" = dontDistribute super."wai-static-cache"; "wai-static-pages" = dontDistribute super."wai-static-pages"; @@ -7891,6 +8043,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -7903,9 +8056,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -7929,6 +8084,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -7943,6 +8099,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8094,6 +8251,7 @@ self: super: { "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; "yesod-comments" = dontDistribute super."yesod-comments"; "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; @@ -8177,6 +8335,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8185,6 +8344,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index c60a485d1719..65f0abd36319 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -238,6 +238,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -324,6 +325,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -565,6 +567,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -588,6 +591,7 @@ self: super: { "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"; @@ -703,6 +707,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -982,6 +987,7 @@ self: super: { "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"; @@ -1412,6 +1418,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1482,6 +1489,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_1"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1501,6 +1509,7 @@ self: super: { "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"; @@ -1530,6 +1539,7 @@ self: super: { "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"; @@ -1619,6 +1629,7 @@ self: super: { "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"; @@ -1673,6 +1684,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1694,6 +1706,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1709,6 +1722,7 @@ self: super: { "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"; @@ -1740,10 +1754,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1774,6 +1790,7 @@ self: super: { "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_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1790,6 +1807,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1816,6 +1834,7 @@ self: super: { "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"; @@ -1876,6 +1895,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1886,6 +1906,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2031,6 +2052,7 @@ self: super: { "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"; @@ -2060,13 +2082,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2275,6 +2300,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2347,6 +2373,7 @@ self: super: { "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-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"; @@ -2382,6 +2409,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2471,6 +2499,7 @@ self: super: { "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"; @@ -2545,6 +2574,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2730,6 +2760,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2754,6 +2785,7 @@ self: super: { "ekg" = doDistribute super."ekg_0_4_0_8"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; "ekg-json" = doDistribute super."ekg-json_0_1_0_0"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; @@ -2854,6 +2886,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2903,6 +2936,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2922,6 +2956,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2949,6 +2984,7 @@ self: super: { "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"; @@ -3008,6 +3044,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3022,6 +3059,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3215,8 +3253,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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_0_0"; "generics-sop-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; @@ -3246,8 +3286,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3272,7 +3310,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3301,6 +3338,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3315,6 +3354,7 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; @@ -3338,7 +3378,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3354,6 +3396,7 @@ self: super: { "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"; @@ -3487,6 +3530,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3560,6 +3604,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3570,6 +3615,7 @@ self: super: { "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"; @@ -3579,6 +3625,7 @@ self: super: { "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"; @@ -3588,6 +3635,7 @@ self: super: { "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"; @@ -3614,6 +3662,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3671,7 +3720,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3822,6 +3873,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3940,6 +3992,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3956,6 +4009,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3964,6 +4018,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3994,6 +4049,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4050,6 +4106,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4113,9 +4170,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4129,6 +4188,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4235,6 +4295,7 @@ self: super: { "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"; @@ -4352,6 +4413,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4573,6 +4635,7 @@ self: super: { "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"; @@ -4621,9 +4684,13 @@ self: super: { "inch" = dontDistribute super."inch"; "include-file" = doDistribute super."include-file_0_1_0_2"; "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"; @@ -4639,6 +4706,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4778,6 +4846,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4788,6 +4857,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_0"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4836,6 +4906,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4893,6 +4964,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4969,6 +5041,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5018,7 +5091,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5053,6 +5128,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5093,6 +5169,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5254,6 +5331,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5324,6 +5402,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5454,6 +5533,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5469,6 +5549,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5512,6 +5593,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5549,6 +5631,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5708,6 +5791,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5835,6 +5919,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5944,6 +6029,7 @@ self: super: { "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; "pandoc-types" = doDistribute super."pandoc-types_1_16_0_1"; "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"; @@ -6013,6 +6099,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -6049,7 +6136,10 @@ self: super: { "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"; @@ -6071,6 +6161,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6090,6 +6181,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6106,6 +6198,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6122,8 +6215,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6134,6 +6229,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6158,6 +6254,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6264,6 +6361,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6315,6 +6413,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6654,12 +6753,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_2"; + "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_1"; @@ -6761,6 +6862,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6783,6 +6885,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6927,6 +7030,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7049,6 +7153,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7094,6 +7199,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7332,6 +7438,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7601,6 +7709,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7621,6 +7730,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7630,6 +7740,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7640,6 +7751,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7755,6 +7867,7 @@ self: super: { "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"; @@ -7766,6 +7879,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7918,6 +8032,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8152,6 +8267,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8228,9 +8344,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8254,6 +8372,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8269,6 +8388,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8518,6 +8638,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8527,6 +8648,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index f4e2dbd81502..088932e94fdc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -562,6 +565,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -585,6 +589,7 @@ self: super: { "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"; @@ -700,6 +705,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -979,6 +985,7 @@ self: super: { "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"; @@ -1408,6 +1415,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1478,6 +1486,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_1"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1497,6 +1506,7 @@ self: super: { "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"; @@ -1526,6 +1536,7 @@ self: super: { "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"; @@ -1614,6 +1625,7 @@ self: super: { "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"; @@ -1668,6 +1680,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1689,6 +1702,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1704,6 +1718,7 @@ self: super: { "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"; @@ -1735,10 +1750,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1769,6 +1786,7 @@ self: super: { "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_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1785,6 +1803,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1811,6 +1830,7 @@ self: super: { "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"; @@ -1852,6 +1872,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1870,6 +1891,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1880,6 +1902,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2025,6 +2048,7 @@ self: super: { "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"; @@ -2054,13 +2078,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2268,6 +2295,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2340,6 +2368,7 @@ self: super: { "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-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"; @@ -2374,6 +2403,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2463,6 +2493,7 @@ self: super: { "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"; @@ -2537,6 +2568,7 @@ self: super: { "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-solve" = doDistribute super."diagrams-solve_0_1"; + "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"; @@ -2721,6 +2753,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2742,8 +2775,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2841,6 +2877,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2890,6 +2927,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2908,6 +2946,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2935,6 +2974,7 @@ self: super: { "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"; @@ -2993,6 +3033,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -3007,6 +3048,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3200,8 +3242,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3230,8 +3274,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3256,7 +3298,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3285,6 +3326,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3299,6 +3342,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3321,7 +3366,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3337,6 +3384,7 @@ self: super: { "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"; @@ -3470,6 +3518,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3543,6 +3592,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3553,6 +3603,7 @@ self: super: { "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"; @@ -3562,6 +3613,7 @@ self: super: { "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"; @@ -3571,6 +3623,7 @@ self: super: { "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"; @@ -3597,6 +3650,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3654,7 +3708,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3805,6 +3861,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3923,6 +3980,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3939,6 +3997,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3947,6 +4006,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3977,6 +4037,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4033,6 +4094,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4096,9 +4158,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4112,6 +4176,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4218,6 +4283,7 @@ self: super: { "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"; @@ -4335,6 +4401,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4556,6 +4623,7 @@ self: super: { "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"; @@ -4603,9 +4671,13 @@ self: super: { "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"; @@ -4621,6 +4693,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4760,6 +4833,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4770,6 +4844,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_0"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4818,6 +4893,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4875,6 +4951,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4951,6 +5028,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -5000,7 +5078,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5035,6 +5115,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5075,6 +5156,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5235,6 +5317,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5305,6 +5388,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5434,6 +5518,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5449,6 +5534,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5492,6 +5578,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5529,6 +5616,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5688,6 +5776,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5815,6 +5904,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5923,6 +6013,7 @@ self: super: { "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"; @@ -5992,6 +6083,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -6028,7 +6120,10 @@ self: super: { "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"; @@ -6050,6 +6145,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6069,6 +6165,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6085,6 +6182,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6101,8 +6199,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6113,6 +6213,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6137,6 +6238,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6243,6 +6345,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6294,6 +6397,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6630,12 +6734,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6737,6 +6843,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6759,6 +6866,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6903,6 +7011,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7025,6 +7134,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7068,6 +7178,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7305,6 +7416,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7574,6 +7687,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7594,6 +7708,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7603,6 +7718,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7613,6 +7729,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7728,6 +7845,7 @@ self: super: { "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"; @@ -7739,6 +7857,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7891,6 +8010,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8124,6 +8244,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8142,6 +8263,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8197,9 +8319,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8223,6 +8347,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8238,6 +8363,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8487,6 +8613,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8496,6 +8623,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 699de394bb2a..a252a63a5439 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -561,6 +564,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -584,6 +588,7 @@ self: super: { "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"; @@ -699,6 +704,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -978,6 +984,7 @@ self: super: { "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"; @@ -1406,6 +1413,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1476,6 +1484,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_1"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1495,6 +1504,7 @@ self: super: { "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"; @@ -1524,6 +1534,7 @@ self: super: { "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"; @@ -1612,6 +1623,7 @@ self: super: { "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"; @@ -1666,6 +1678,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1687,6 +1700,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1702,6 +1716,7 @@ self: super: { "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"; @@ -1733,10 +1748,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1767,6 +1784,7 @@ self: super: { "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_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1783,6 +1801,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1809,6 +1828,7 @@ self: super: { "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"; @@ -1850,6 +1870,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1868,6 +1889,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1878,6 +1900,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2022,6 +2045,7 @@ self: super: { "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"; @@ -2051,13 +2075,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2264,6 +2291,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2336,6 +2364,7 @@ self: super: { "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-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"; @@ -2370,6 +2399,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2459,6 +2489,7 @@ self: super: { "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"; @@ -2531,6 +2562,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2713,6 +2745,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2734,8 +2767,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2833,6 +2869,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2882,6 +2919,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2900,6 +2938,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2926,6 +2965,7 @@ self: super: { "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"; @@ -2984,6 +3024,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2998,6 +3039,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3191,8 +3233,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3221,8 +3265,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3246,7 +3288,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3275,6 +3316,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3289,6 +3332,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3311,7 +3356,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3327,6 +3374,7 @@ self: super: { "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"; @@ -3460,6 +3508,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3533,6 +3582,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3543,6 +3593,7 @@ self: super: { "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"; @@ -3552,6 +3603,7 @@ self: super: { "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"; @@ -3561,6 +3613,7 @@ self: super: { "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"; @@ -3587,6 +3640,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3644,7 +3698,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3795,6 +3851,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3913,6 +3970,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3929,6 +3987,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3937,6 +3996,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3967,6 +4027,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4023,6 +4084,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4086,9 +4148,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4102,6 +4166,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4133,6 +4198,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4207,6 +4273,7 @@ self: super: { "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"; @@ -4324,6 +4391,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4352,6 +4420,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4544,6 +4613,7 @@ self: super: { "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"; @@ -4591,9 +4661,13 @@ self: super: { "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"; @@ -4609,6 +4683,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4748,6 +4823,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4758,6 +4834,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_0"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4806,6 +4883,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4863,6 +4941,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4939,6 +5018,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4988,7 +5068,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5023,6 +5105,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5063,6 +5146,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5222,6 +5306,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5292,6 +5377,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5421,6 +5507,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5436,6 +5523,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5478,6 +5566,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5515,6 +5604,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5673,6 +5763,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5798,6 +5889,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5905,6 +5997,7 @@ self: super: { "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"; @@ -5974,6 +6067,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -6010,7 +6104,10 @@ self: super: { "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"; @@ -6032,6 +6129,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6051,6 +6149,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6066,6 +6165,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6082,8 +6182,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6094,6 +6196,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6118,6 +6221,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6224,6 +6328,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6275,6 +6380,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6610,12 +6716,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6717,6 +6825,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6739,6 +6848,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6883,6 +6993,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7005,6 +7116,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7048,6 +7160,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7285,6 +7398,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7553,6 +7668,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7573,6 +7689,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7582,6 +7699,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7592,6 +7710,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7707,6 +7826,7 @@ self: super: { "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"; @@ -7718,6 +7838,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7869,6 +7990,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8102,6 +8224,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8120,6 +8243,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8175,9 +8299,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8201,6 +8327,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8216,6 +8343,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8465,6 +8593,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8474,6 +8603,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 1843f1160d57..9a3818c04615 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -561,6 +564,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -584,6 +588,7 @@ self: super: { "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"; @@ -699,6 +704,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -978,6 +984,7 @@ self: super: { "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"; @@ -1406,6 +1413,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1476,6 +1484,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_2"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1495,6 +1504,7 @@ self: super: { "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"; @@ -1524,6 +1534,7 @@ self: super: { "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"; @@ -1612,6 +1623,7 @@ self: super: { "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"; @@ -1666,6 +1678,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1687,6 +1700,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1702,6 +1716,7 @@ self: super: { "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"; @@ -1732,10 +1747,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1766,6 +1783,7 @@ self: super: { "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_8_0"; "cabal-install-bundle" = dontDistribute super."cabal-install-bundle"; @@ -1782,6 +1800,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1808,6 +1827,7 @@ self: super: { "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"; @@ -1849,6 +1869,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1867,6 +1888,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1877,6 +1899,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2019,6 +2042,7 @@ self: super: { "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"; @@ -2048,13 +2072,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2261,6 +2288,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2333,6 +2361,7 @@ self: super: { "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-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"; @@ -2367,6 +2396,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2456,6 +2486,7 @@ self: super: { "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"; @@ -2528,6 +2559,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2710,6 +2742,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2731,8 +2764,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2830,6 +2866,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2879,6 +2916,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2897,6 +2935,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2923,6 +2962,7 @@ self: super: { "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"; @@ -2981,6 +3021,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2995,6 +3036,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3188,8 +3230,10 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "generic-trie" = doDistribute super."generic-trie_0_3_0_1"; "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3218,8 +3262,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3243,7 +3285,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3272,6 +3313,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3286,6 +3329,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3308,7 +3353,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3324,6 +3371,7 @@ self: super: { "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"; @@ -3457,6 +3505,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3530,6 +3579,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3540,6 +3590,7 @@ self: super: { "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"; @@ -3549,6 +3600,7 @@ self: super: { "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"; @@ -3558,6 +3610,7 @@ self: super: { "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"; @@ -3584,6 +3637,7 @@ self: super: { "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_4_3"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3641,7 +3695,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3791,6 +3847,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3909,6 +3966,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3925,6 +3983,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3933,6 +3992,7 @@ self: super: { "heap" = doDistribute super."heap_1_0_2"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3963,6 +4023,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4019,6 +4080,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4082,9 +4144,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4098,6 +4162,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4129,6 +4194,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4202,6 +4268,7 @@ self: super: { "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"; @@ -4319,6 +4386,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4347,6 +4415,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4539,6 +4608,7 @@ self: super: { "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"; @@ -4586,9 +4656,13 @@ self: super: { "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"; @@ -4604,6 +4678,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4743,6 +4818,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4753,6 +4829,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4801,6 +4878,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4858,6 +4936,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4934,6 +5013,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4983,7 +5063,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5018,6 +5100,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5058,6 +5141,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5217,6 +5301,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5287,6 +5372,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5416,6 +5502,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5431,6 +5518,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5473,6 +5561,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5510,6 +5599,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5668,6 +5758,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5793,6 +5884,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5900,6 +5992,7 @@ self: super: { "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"; @@ -5969,6 +6062,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -6005,7 +6099,10 @@ self: super: { "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"; @@ -6027,6 +6124,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6046,6 +6144,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6061,6 +6160,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6077,8 +6177,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6089,6 +6191,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6113,6 +6216,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6219,6 +6323,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6270,6 +6375,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6605,12 +6711,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6712,6 +6820,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6734,6 +6843,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6878,6 +6988,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -7000,6 +7111,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7043,6 +7155,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7280,6 +7393,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7548,6 +7663,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7568,6 +7684,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7577,6 +7694,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7587,6 +7705,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7702,6 +7821,7 @@ self: super: { "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"; @@ -7713,6 +7833,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7864,6 +7985,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8095,6 +8217,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8113,6 +8236,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8167,9 +8291,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8193,6 +8319,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witherable" = doDistribute super."witherable_0_1_3_2"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; @@ -8208,6 +8335,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8457,6 +8585,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8466,6 +8595,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 9635c9adee09..2ae05e7ee39d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -560,6 +563,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -583,6 +587,7 @@ self: super: { "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"; @@ -698,6 +703,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -977,6 +983,7 @@ self: super: { "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"; @@ -1405,6 +1412,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1475,6 +1483,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1494,6 +1503,7 @@ self: super: { "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"; @@ -1523,6 +1533,7 @@ self: super: { "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"; @@ -1611,6 +1622,7 @@ self: super: { "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"; @@ -1633,6 +1645,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1664,6 +1677,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1685,6 +1699,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1700,6 +1715,7 @@ self: super: { "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"; @@ -1730,10 +1746,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1764,7 +1782,9 @@ self: super: { "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"; @@ -1779,6 +1799,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1805,6 +1826,7 @@ self: super: { "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"; @@ -1846,6 +1868,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1864,6 +1887,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1874,6 +1898,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-conduit" = doDistribute super."cereal-conduit_0_7_2_5"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; @@ -2016,6 +2041,7 @@ self: super: { "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"; @@ -2045,13 +2071,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2257,6 +2286,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2329,6 +2359,7 @@ self: super: { "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-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"; @@ -2363,6 +2394,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2452,6 +2484,7 @@ self: super: { "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"; @@ -2524,6 +2557,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2706,6 +2740,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2727,8 +2762,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2826,6 +2864,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2875,6 +2914,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2893,6 +2933,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2919,6 +2960,7 @@ self: super: { "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"; @@ -2977,6 +3019,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2991,6 +3034,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3183,7 +3227,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3212,8 +3258,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3237,7 +3281,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3266,6 +3309,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3280,6 +3325,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3302,7 +3349,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3318,6 +3367,7 @@ self: super: { "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"; @@ -3451,6 +3501,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3524,6 +3575,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3534,6 +3586,7 @@ self: super: { "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"; @@ -3543,6 +3596,7 @@ self: super: { "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"; @@ -3552,6 +3606,7 @@ self: super: { "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"; @@ -3577,6 +3632,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3634,7 +3690,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3784,6 +3842,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3902,6 +3961,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3918,6 +3978,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3925,6 +3986,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3955,6 +4017,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4011,6 +4074,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4074,9 +4138,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4090,6 +4156,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4121,6 +4188,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4194,6 +4262,7 @@ self: super: { "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"; @@ -4311,6 +4380,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4339,6 +4409,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4531,6 +4602,7 @@ self: super: { "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"; @@ -4578,9 +4650,13 @@ self: super: { "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"; @@ -4596,6 +4672,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4735,6 +4812,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4745,6 +4823,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4793,6 +4872,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4850,6 +4930,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4925,6 +5006,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4974,7 +5056,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5009,6 +5093,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5049,6 +5134,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5207,6 +5293,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5277,6 +5364,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5406,6 +5494,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5421,6 +5510,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5463,6 +5553,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5500,6 +5591,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5657,6 +5749,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5782,6 +5875,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5889,6 +5983,7 @@ self: super: { "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"; @@ -5957,6 +6052,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5993,7 +6089,10 @@ self: super: { "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"; @@ -6015,6 +6114,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6034,6 +6134,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6048,6 +6149,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6064,8 +6166,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6076,6 +6180,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6100,6 +6205,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6206,6 +6312,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6257,6 +6364,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6592,12 +6700,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6699,6 +6809,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6721,6 +6832,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6865,6 +6977,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6987,6 +7100,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7030,6 +7144,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7267,6 +7382,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7535,6 +7652,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7555,6 +7673,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7564,6 +7683,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7574,6 +7694,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7688,6 +7809,7 @@ self: super: { "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"; @@ -7699,6 +7821,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7850,6 +7973,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8081,6 +8205,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8098,6 +8223,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8152,9 +8278,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8178,6 +8306,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8192,6 +8321,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8441,6 +8571,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8450,6 +8581,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index b7a9a1dd2ec8..49297c4c48b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -560,6 +563,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -583,6 +587,7 @@ self: super: { "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"; @@ -698,6 +703,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -977,6 +983,7 @@ self: super: { "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"; @@ -1405,6 +1412,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1475,6 +1483,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1494,6 +1503,7 @@ self: super: { "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"; @@ -1523,6 +1533,7 @@ self: super: { "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"; @@ -1611,6 +1622,7 @@ self: super: { "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"; @@ -1633,6 +1645,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1664,6 +1677,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1685,6 +1699,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1700,6 +1715,7 @@ self: super: { "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"; @@ -1730,10 +1746,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1764,7 +1782,9 @@ self: super: { "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"; @@ -1779,6 +1799,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1805,6 +1826,7 @@ self: super: { "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"; @@ -1846,6 +1868,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1864,6 +1887,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1874,6 +1898,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -2013,6 +2038,7 @@ self: super: { "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"; @@ -2042,13 +2068,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2254,6 +2283,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2326,6 +2356,7 @@ self: super: { "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-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"; @@ -2360,6 +2391,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2449,6 +2481,7 @@ self: super: { "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"; @@ -2521,6 +2554,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2703,6 +2737,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2724,8 +2759,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2823,6 +2861,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2872,6 +2911,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2890,6 +2930,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2916,6 +2957,7 @@ self: super: { "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"; @@ -2974,6 +3016,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2988,6 +3031,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3180,7 +3224,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3209,8 +3255,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3234,7 +3278,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3263,6 +3306,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3277,6 +3322,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3299,7 +3346,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3315,6 +3364,7 @@ self: super: { "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"; @@ -3448,6 +3498,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3521,6 +3572,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3531,6 +3583,7 @@ self: super: { "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"; @@ -3540,6 +3593,7 @@ self: super: { "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"; @@ -3549,6 +3603,7 @@ self: super: { "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"; @@ -3574,6 +3629,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3631,7 +3687,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3781,6 +3839,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3899,6 +3958,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3915,6 +3975,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3922,6 +3983,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3952,6 +4014,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4007,6 +4070,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4070,9 +4134,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4086,6 +4152,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4117,6 +4184,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4190,6 +4258,7 @@ self: super: { "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"; @@ -4306,6 +4375,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4334,6 +4404,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4526,6 +4597,7 @@ self: super: { "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"; @@ -4573,9 +4645,13 @@ self: super: { "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"; @@ -4591,6 +4667,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4730,6 +4807,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4740,6 +4818,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4788,6 +4867,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4845,6 +4925,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4920,6 +5001,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4969,7 +5051,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5004,6 +5088,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5044,6 +5129,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5202,6 +5288,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5272,6 +5359,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5400,6 +5488,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5415,6 +5504,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5457,6 +5547,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5494,6 +5585,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5651,6 +5743,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5776,6 +5869,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5883,6 +5977,7 @@ self: super: { "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"; @@ -5951,6 +6046,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5978,6 +6074,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5986,10 +6083,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6007,6 +6108,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6026,6 +6128,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6040,6 +6143,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6056,8 +6160,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6068,6 +6174,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6092,6 +6199,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6198,6 +6306,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6249,6 +6358,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6584,12 +6694,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6691,6 +6803,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6713,6 +6826,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6856,6 +6970,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6978,6 +7093,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7021,6 +7137,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7258,6 +7375,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7524,6 +7643,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7544,6 +7664,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7553,6 +7674,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7563,6 +7685,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7677,6 +7800,7 @@ self: super: { "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"; @@ -7688,6 +7812,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7838,6 +7963,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8069,6 +8195,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8086,6 +8213,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8140,9 +8268,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8166,6 +8296,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = dontDistribute super."with-location"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8180,6 +8311,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8429,6 +8561,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8438,6 +8571,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index e6b94dae9952..f70ef10b1d7b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -560,6 +563,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -583,6 +587,7 @@ self: super: { "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"; @@ -698,6 +703,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -977,6 +983,7 @@ self: super: { "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"; @@ -1405,6 +1412,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1475,6 +1483,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1494,6 +1503,7 @@ self: super: { "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"; @@ -1523,6 +1533,7 @@ self: super: { "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"; @@ -1611,6 +1622,7 @@ self: super: { "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"; @@ -1633,6 +1645,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1664,6 +1677,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1685,6 +1699,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1700,6 +1715,7 @@ self: super: { "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"; @@ -1730,10 +1746,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1764,7 +1782,9 @@ self: super: { "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"; @@ -1779,6 +1799,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1805,6 +1826,7 @@ self: super: { "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"; @@ -1846,6 +1868,7 @@ self: super: { "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; "case-insensitive" = doDistribute super."case-insensitive_1_2_0_5"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1864,6 +1887,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1874,6 +1898,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -2013,6 +2038,7 @@ self: super: { "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"; @@ -2042,13 +2068,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2254,6 +2283,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2326,6 +2356,7 @@ self: super: { "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-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"; @@ -2360,6 +2391,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2449,6 +2481,7 @@ self: super: { "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"; @@ -2521,6 +2554,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2703,6 +2737,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2724,8 +2759,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2823,6 +2861,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2872,6 +2911,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2890,6 +2930,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2916,6 +2957,7 @@ self: super: { "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"; @@ -2974,6 +3016,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2988,6 +3031,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3180,7 +3224,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3209,8 +3255,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3234,7 +3278,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3263,6 +3306,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3277,6 +3322,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3299,7 +3346,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3315,6 +3364,7 @@ self: super: { "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"; @@ -3448,6 +3498,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3521,6 +3572,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3531,6 +3583,7 @@ self: super: { "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"; @@ -3540,6 +3593,7 @@ self: super: { "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"; @@ -3549,6 +3603,7 @@ self: super: { "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"; @@ -3574,6 +3629,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3631,7 +3687,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3781,6 +3839,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3899,6 +3958,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3915,6 +3975,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_0"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3922,6 +3983,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3952,6 +4014,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4007,6 +4070,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4070,9 +4134,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4086,6 +4152,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4117,6 +4184,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4190,6 +4258,7 @@ self: super: { "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"; @@ -4306,6 +4375,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4334,6 +4404,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4526,6 +4597,7 @@ self: super: { "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"; @@ -4573,9 +4645,13 @@ self: super: { "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"; @@ -4591,6 +4667,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4730,6 +4807,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4740,6 +4818,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4788,6 +4867,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4845,6 +4925,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4920,6 +5001,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4969,7 +5051,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -5004,6 +5088,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5044,6 +5129,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5202,6 +5288,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5272,6 +5359,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5400,6 +5488,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5415,6 +5504,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5457,6 +5547,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5494,6 +5585,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5651,6 +5743,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5776,6 +5869,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5883,6 +5977,7 @@ self: super: { "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"; @@ -5951,6 +6046,7 @@ self: super: { "pcre-heavy" = doDistribute super."pcre-heavy_1_0_0_1"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5978,6 +6074,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5986,10 +6083,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -6007,6 +6108,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6026,6 +6128,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6040,6 +6143,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6056,8 +6160,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6068,6 +6174,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6092,6 +6199,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6198,6 +6306,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6249,6 +6358,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6584,12 +6694,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6691,6 +6803,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6713,6 +6826,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6856,6 +6970,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6978,6 +7093,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7021,6 +7137,7 @@ self: super: { "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" = doDistribute super."snap_0_14_0_6"; "snap-accept" = dontDistribute super."snap-accept"; @@ -7258,6 +7375,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7524,6 +7643,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7544,6 +7664,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7553,6 +7674,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7563,6 +7685,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7677,6 +7800,7 @@ self: super: { "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"; @@ -7688,6 +7812,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7838,6 +7963,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8069,6 +8195,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8085,6 +8212,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8139,9 +8267,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8165,6 +8295,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8179,6 +8310,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8428,6 +8560,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8437,6 +8570,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 86967cf60af9..9d8b36c2da71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -237,6 +237,7 @@ self: super: { "DefendTheKing" = dontDistribute super."DefendTheKing"; "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"; @@ -314,6 +315,7 @@ self: super: { "Flippi" = dontDistribute super."Flippi"; "Focus" = dontDistribute super."Focus"; "Folly" = dontDistribute super."Folly"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; "ForSyDe" = dontDistribute super."ForSyDe"; "ForestStructures" = dontDistribute super."ForestStructures"; "ForkableT" = dontDistribute super."ForkableT"; @@ -322,6 +324,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_2_1"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -560,6 +563,7 @@ self: super: { "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; "JunkDB" = dontDistribute super."JunkDB"; "JunkDB-driver-gdbm" = dontDistribute super."JunkDB-driver-gdbm"; @@ -583,6 +587,7 @@ self: super: { "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"; @@ -698,6 +703,7 @@ self: super: { "Object" = dontDistribute super."Object"; "ObjectIO" = dontDistribute super."ObjectIO"; "Obsidian" = dontDistribute super."Obsidian"; + "Octree" = doDistribute super."Octree_0_5_4_2"; "OddWord" = dontDistribute super."OddWord"; "Omega" = dontDistribute super."Omega"; "OneTuple" = dontDistribute super."OneTuple"; @@ -977,6 +983,7 @@ self: super: { "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"; @@ -1404,6 +1411,7 @@ self: super: { "authenticate" = doDistribute super."authenticate_1_3_3"; "authenticate-kerberos" = dontDistribute super."authenticate-kerberos"; "authenticate-ldap" = dontDistribute super."authenticate-ldap"; + "authenticate-oauth" = doDistribute super."authenticate-oauth_1_5_1_1"; "authinfo-hs" = dontDistribute super."authinfo-hs"; "authoring" = dontDistribute super."authoring"; "auto-update" = doDistribute super."auto-update_0_1_3"; @@ -1474,6 +1482,7 @@ self: super: { "base-compat" = doDistribute super."base-compat_0_9_0"; "base-generics" = dontDistribute super."base-generics"; "base-io-access" = dontDistribute super."base-io-access"; + "base-noprelude" = doDistribute super."base-noprelude_4_8_2_0"; "base-orphans" = doDistribute super."base-orphans_0_5_3"; "base-prelude" = doDistribute super."base-prelude_0_1_21"; "base32-bytestring" = dontDistribute super."base32-bytestring"; @@ -1493,6 +1502,7 @@ self: super: { "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"; @@ -1522,6 +1532,7 @@ self: super: { "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"; @@ -1610,6 +1621,7 @@ self: super: { "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"; @@ -1632,6 +1644,7 @@ self: super: { "bitstring" = dontDistribute super."bitstring"; "bittorrent" = dontDistribute super."bittorrent"; "bitvec" = dontDistribute super."bitvec"; + "bitwise" = doDistribute super."bitwise_0_1_1"; "bitx-bitcoin" = dontDistribute super."bitx-bitcoin"; "bk-tree" = dontDistribute super."bk-tree"; "bkr" = dontDistribute super."bkr"; @@ -1663,6 +1676,7 @@ self: super: { "bloodhound" = dontDistribute super."bloodhound"; "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"; @@ -1684,6 +1698,7 @@ self: super: { "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; "botpp" = dontDistribute super."botpp"; "bound-gen" = dontDistribute super."bound-gen"; "bounded-tchan" = dontDistribute super."bounded-tchan"; @@ -1699,6 +1714,7 @@ self: super: { "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"; @@ -1729,10 +1745,12 @@ self: super: { "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; @@ -1763,7 +1781,9 @@ self: super: { "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"; @@ -1778,6 +1798,7 @@ self: super: { "cabal-scripts" = dontDistribute super."cabal-scripts"; "cabal-setup" = dontDistribute super."cabal-setup"; "cabal-sign" = dontDistribute super."cabal-sign"; + "cabal-sort" = doDistribute super."cabal-sort_0_0_5_2"; "cabal-test" = dontDistribute super."cabal-test"; "cabal-test-bin" = dontDistribute super."cabal-test-bin"; "cabal-test-compat" = dontDistribute super."cabal-test-compat"; @@ -1804,6 +1825,7 @@ self: super: { "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"; @@ -1844,6 +1866,7 @@ self: super: { "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; "cascading" = dontDistribute super."cascading"; "case-conversion" = dontDistribute super."case-conversion"; + "cases" = doDistribute super."cases_0_1_3"; "cash" = dontDistribute super."cash"; "casing" = dontDistribute super."casing"; "casr-logbook" = dontDistribute super."casr-logbook"; @@ -1862,6 +1885,7 @@ self: super: { "category-extras" = dontDistribute super."category-extras"; "category-printf" = dontDistribute super."category-printf"; "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; "cayley-dickson" = dontDistribute super."cayley-dickson"; "cblrepo" = dontDistribute super."cblrepo"; "cci" = dontDistribute super."cci"; @@ -1872,6 +1896,7 @@ self: super: { "ceilometer-common" = dontDistribute super."ceilometer-common"; "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; "cerberus" = dontDistribute super."cerberus"; + "cereal" = doDistribute super."cereal_0_5_1_0"; "cereal-derive" = dontDistribute super."cereal-derive"; "cereal-enumerator" = dontDistribute super."cereal-enumerator"; "cereal-ieee754" = dontDistribute super."cereal-ieee754"; @@ -2011,6 +2036,7 @@ self: super: { "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"; @@ -2040,13 +2066,16 @@ self: super: { "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"; + "compactmap" = doDistribute super."compactmap_0_1_3_1"; "compare-type" = dontDistribute super."compare-type"; + "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; "compdata-dags" = dontDistribute super."compdata-dags"; "compdata-param" = dontDistribute super."compdata-param"; @@ -2252,6 +2281,7 @@ self: super: { "csp" = dontDistribute super."csp"; "cspmchecker" = dontDistribute super."cspmchecker"; "css" = dontDistribute super."css"; + "css-syntax" = doDistribute super."css-syntax_0_0_4"; "csv-enumerator" = dontDistribute super."csv-enumerator"; "csv-nptools" = dontDistribute super."csv-nptools"; "csv-table" = dontDistribute super."csv-table"; @@ -2324,6 +2354,7 @@ self: super: { "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-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"; @@ -2358,6 +2389,7 @@ self: super: { "data-lens" = dontDistribute super."data-lens"; "data-lens-fd" = dontDistribute super."data-lens-fd"; "data-lens-ixset" = dontDistribute super."data-lens-ixset"; + "data-lens-light" = doDistribute super."data-lens-light_0_1_2_1"; "data-lens-template" = dontDistribute super."data-lens-template"; "data-list-sequences" = dontDistribute super."data-list-sequences"; "data-map-multikey" = dontDistribute super."data-map-multikey"; @@ -2447,6 +2479,7 @@ self: super: { "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"; @@ -2518,6 +2551,7 @@ self: super: { "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_5"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; + "diagrams-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"; @@ -2700,6 +2734,7 @@ self: super: { "edentv" = dontDistribute super."edentv"; "edge" = dontDistribute super."edge"; "edis" = dontDistribute super."edis"; + "edit-distance-vector" = doDistribute super."edit-distance-vector_1_0_0_3"; "edit-lenses" = dontDistribute super."edit-lenses"; "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; "editable" = dontDistribute super."editable"; @@ -2721,8 +2756,11 @@ self: super: { "eigen" = dontDistribute super."eigen"; "either" = doDistribute super."either_4_4_1"; "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; "ekg-bosun" = dontDistribute super."ekg-bosun"; "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; "ekg-log" = dontDistribute super."ekg-log"; "ekg-push" = dontDistribute super."ekg-push"; "ekg-rrd" = dontDistribute super."ekg-rrd"; @@ -2820,6 +2858,7 @@ self: super: { "euler" = dontDistribute super."euler"; "euphoria" = dontDistribute super."euphoria"; "eurofxref" = dontDistribute super."eurofxref"; + "event" = doDistribute super."event_0_1_3"; "event-driven" = dontDistribute super."event-driven"; "event-handlers" = dontDistribute super."event-handlers"; "event-list" = dontDistribute super."event-list"; @@ -2869,6 +2908,7 @@ self: super: { "extended-reals" = dontDistribute super."extended-reals"; "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; "extractelf" = dontDistribute super."extractelf"; @@ -2887,6 +2927,7 @@ self: super: { "falling-turnip" = dontDistribute super."falling-turnip"; "fallingblocks" = dontDistribute super."fallingblocks"; "family-tree" = dontDistribute super."family-tree"; + "farmhash" = doDistribute super."farmhash_0_1_0_4"; "fast-builder" = doDistribute super."fast-builder_0_0_0_2"; "fast-digits" = dontDistribute super."fast-digits"; "fast-logger" = doDistribute super."fast-logger_2_4_1"; @@ -2913,6 +2954,7 @@ self: super: { "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"; @@ -2971,6 +3013,7 @@ self: super: { "fixed-storable-array" = dontDistribute super."fixed-storable-array"; "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; "fixedprec" = dontDistribute super."fixedprec"; "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; "fixfile" = dontDistribute super."fixfile"; @@ -2985,6 +3028,7 @@ self: super: { "flat-maybe" = dontDistribute super."flat-maybe"; "flat-mcmc" = dontDistribute super."flat-mcmc"; "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; "flexible-time" = dontDistribute super."flexible-time"; "flexible-unlit" = dontDistribute super."flexible-unlit"; "flexiwrap" = dontDistribute super."flexiwrap"; @@ -3177,7 +3221,9 @@ self: super: { "generic-server" = dontDistribute super."generic-server"; "generic-storable" = dontDistribute super."generic-storable"; "generic-tree" = dontDistribute super."generic-tree"; + "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-lens" = dontDistribute super."generics-sop-lens"; "genericserialize" = dontDistribute super."genericserialize"; "genetics" = dontDistribute super."genetics"; @@ -3206,8 +3252,6 @@ self: super: { "getopt-simple" = dontDistribute super."getopt-simple"; "gf" = dontDistribute super."gf"; "ggtsTC" = dontDistribute super."ggtsTC"; - "ghc-boot" = dontDistribute super."ghc-boot"; - "ghc-boot-th" = dontDistribute super."ghc-boot-th"; "ghc-core" = dontDistribute super."ghc-core"; "ghc-core-html" = dontDistribute super."ghc-core-html"; "ghc-datasize" = dontDistribute super."ghc-datasize"; @@ -3231,7 +3275,6 @@ self: super: { "ghc-syb" = dontDistribute super."ghc-syb"; "ghc-time-alloc-prof" = dontDistribute super."ghc-time-alloc-prof"; "ghc-vis" = dontDistribute super."ghc-vis"; - "ghci" = dontDistribute super."ghci"; "ghci-diagrams" = dontDistribute super."ghci-diagrams"; "ghci-haskeline" = dontDistribute super."ghci-haskeline"; "ghci-lib" = dontDistribute super."ghci-lib"; @@ -3260,6 +3303,8 @@ self: super: { "gi-gstbase" = dontDistribute super."gi-gstbase"; "gi-gstvideo" = dontDistribute super."gi-gstvideo"; "gi-gtk" = dontDistribute super."gi-gtk"; + "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"; @@ -3274,6 +3319,8 @@ self: super: { "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"; "giphy-api" = dontDistribute super."giphy-api"; "gist" = dontDistribute super."gist"; "git" = dontDistribute super."git"; @@ -3296,7 +3343,9 @@ self: super: { "github-backup" = dontDistribute super."github-backup"; "github-post-receive" = dontDistribute super."github-post-receive"; "github-release" = dontDistribute super."github-release"; + "github-types" = doDistribute super."github-types_0_2_0"; "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; "gitignore" = dontDistribute super."gitignore"; "gitit" = dontDistribute super."gitit"; "gitlib-cmdline" = dontDistribute super."gitlib-cmdline"; @@ -3312,6 +3361,7 @@ self: super: { "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"; @@ -3445,6 +3495,7 @@ self: super: { "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; "google-dictionary" = dontDistribute super."google-dictionary"; "google-drive" = dontDistribute super."google-drive"; "google-html5-slide" = dontDistribute super."google-html5-slide"; @@ -3518,6 +3569,7 @@ self: super: { "groundhog-converters" = dontDistribute super."groundhog-converters"; "groundhog-inspector" = dontDistribute super."groundhog-inspector"; "group-with" = dontDistribute super."group-with"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; "groupoid" = dontDistribute super."groupoid"; "gruff" = dontDistribute super."gruff"; "gruff-examples" = dontDistribute super."gruff-examples"; @@ -3528,6 +3580,7 @@ self: super: { "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"; @@ -3537,6 +3590,7 @@ self: super: { "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"; @@ -3546,6 +3600,7 @@ self: super: { "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"; @@ -3571,6 +3626,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_4"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3628,7 +3684,9 @@ self: super: { "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"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; "hadoop-tools" = dontDistribute super."hadoop-tools"; @@ -3777,6 +3835,7 @@ self: super: { "haskell-openflow" = dontDistribute super."haskell-openflow"; "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-qrencode" = dontDistribute super."haskell-qrencode"; "haskell-read-editor" = dontDistribute super."haskell-read-editor"; @@ -3894,6 +3953,7 @@ self: super: { "hcron" = dontDistribute super."hcron"; "hcube" = dontDistribute super."hcube"; "hcwiid" = dontDistribute super."hcwiid"; + "hdaemonize" = doDistribute super."hdaemonize_0_5_0_1"; "hdaemonize-buildfix" = dontDistribute super."hdaemonize-buildfix"; "hdbc-aeson" = dontDistribute super."hdbc-aeson"; "hdbc-postgresql-hstore" = dontDistribute super."hdbc-postgresql-hstore"; @@ -3910,6 +3970,7 @@ self: super: { "hdis86" = dontDistribute super."hdis86"; "hdiscount" = dontDistribute super."hdiscount"; "hdm" = dontDistribute super."hdm"; + "hdo" = dontDistribute super."hdo"; "hdocs" = doDistribute super."hdocs_0_4_4_1"; "hdph" = dontDistribute super."hdph"; "hdph-closure" = dontDistribute super."hdph-closure"; @@ -3917,6 +3978,7 @@ self: super: { "headergen" = dontDistribute super."headergen"; "heapsort" = dontDistribute super."heapsort"; "hecc" = dontDistribute super."hecc"; + "hedis" = doDistribute super."hedis_0_6_10"; "hedis-config" = dontDistribute super."hedis-config"; "hedis-monadic" = dontDistribute super."hedis-monadic"; "hedis-pile" = dontDistribute super."hedis-pile"; @@ -3947,6 +4009,7 @@ self: super: { "her-lexer" = dontDistribute super."her-lexer"; "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; "heredocs" = dontDistribute super."heredocs"; "herf-time" = dontDistribute super."herf-time"; "hermit" = dontDistribute super."hermit"; @@ -4002,6 +4065,7 @@ self: super: { "hi3status" = dontDistribute super."hi3status"; "hiccup" = dontDistribute super."hiccup"; "hichi" = dontDistribute super."hichi"; + "hid" = doDistribute super."hid_0_2_1_1"; "hidapi" = doDistribute super."hidapi_0_1_3"; "hieraclus" = dontDistribute super."hieraclus"; "hierarchical-clustering-diagrams" = dontDistribute super."hierarchical-clustering-diagrams"; @@ -4064,9 +4128,11 @@ self: super: { "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_3"; "hledger-vty" = dontDistribute super."hledger-vty"; "hlibBladeRF" = dontDistribute super."hlibBladeRF"; @@ -4080,6 +4146,7 @@ self: super: { "hly" = dontDistribute super."hly"; "hmark" = dontDistribute super."hmark"; "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; "hmatrix-banded" = dontDistribute super."hmatrix-banded"; "hmatrix-csv" = dontDistribute super."hmatrix-csv"; "hmatrix-glpk" = dontDistribute super."hmatrix-glpk"; @@ -4111,6 +4178,7 @@ self: super: { "hnop" = dontDistribute super."hnop"; "ho-rewriting" = dontDistribute super."ho-rewriting"; "hoauth" = dontDistribute super."hoauth"; + "hoauth2" = doDistribute super."hoauth2_0_5_3"; "hob" = dontDistribute super."hob"; "hobbes" = dontDistribute super."hobbes"; "hobbits" = dontDistribute super."hobbits"; @@ -4184,6 +4252,7 @@ self: super: { "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"; @@ -4300,6 +4369,7 @@ self: super: { "hslackbuilder" = dontDistribute super."hslackbuilder"; "hslibsvm" = dontDistribute super."hslibsvm"; "hslinks" = dontDistribute super."hslinks"; + "hslogger" = doDistribute super."hslogger_1_2_9"; "hslogger-reader" = dontDistribute super."hslogger-reader"; "hslogger-template" = dontDistribute super."hslogger-template"; "hslogger4j" = dontDistribute super."hslogger4j"; @@ -4328,6 +4398,7 @@ self: super: { "hspec-expectations-pretty-diff" = doDistribute super."hspec-expectations-pretty-diff_0_7_2_3"; "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"; @@ -4520,6 +4591,7 @@ self: super: { "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"; @@ -4565,9 +4637,13 @@ self: super: { "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"; @@ -4583,6 +4659,7 @@ self: super: { "infinite-search" = dontDistribute super."infinite-search"; "infinity" = dontDistribute super."infinity"; "infix" = dontDistribute super."infix"; + "inflections" = doDistribute super."inflections_0_2_0_0"; "inflist" = dontDistribute super."inflist"; "influxdb" = dontDistribute super."influxdb"; "informative" = dontDistribute super."informative"; @@ -4721,6 +4798,7 @@ self: super: { "jcdecaux-vls" = dontDistribute super."jcdecaux-vls"; "jdi" = dontDistribute super."jdi"; "jespresso" = dontDistribute super."jespresso"; + "jmacro" = doDistribute super."jmacro_0_6_13"; "jobqueue" = dontDistribute super."jobqueue"; "join" = dontDistribute super."join"; "joinlist" = dontDistribute super."joinlist"; @@ -4731,6 +4809,7 @@ self: super: { "js-good-parts" = dontDistribute super."js-good-parts"; "js-jquery" = doDistribute super."js-jquery_1_12_1"; "jsaddle" = dontDistribute super."jsaddle"; + "jsaddle-dom" = dontDistribute super."jsaddle-dom"; "jsaddle-hello" = dontDistribute super."jsaddle-hello"; "jsc" = dontDistribute super."jsc"; "jsmw" = dontDistribute super."jsmw"; @@ -4779,6 +4858,7 @@ self: super: { "jwt" = doDistribute super."jwt_0_6_0"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; + "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; "kangaroo" = dontDistribute super."kangaroo"; "kanji" = dontDistribute super."kanji"; "kansas-lava" = dontDistribute super."kansas-lava"; @@ -4836,6 +4916,7 @@ self: super: { "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; "korfu" = dontDistribute super."korfu"; "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; "krpc" = dontDistribute super."krpc"; "ks-test" = dontDistribute super."ks-test"; "ktx" = dontDistribute super."ktx"; @@ -4911,6 +4992,7 @@ self: super: { "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; "language-mixal" = dontDistribute super."language-mixal"; + "language-nix" = doDistribute super."language-nix_2_1"; "language-objc" = dontDistribute super."language-objc"; "language-openscad" = dontDistribute super."language-openscad"; "language-pig" = dontDistribute super."language-pig"; @@ -4960,7 +5042,9 @@ self: super: { "leksah" = dontDistribute super."leksah"; "leksah-server" = dontDistribute super."leksah-server"; "lendingclub" = dontDistribute super."lendingclub"; + "lens" = doDistribute super."lens_4_13"; "lens-datetime" = dontDistribute super."lens-datetime"; + "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"; @@ -4995,6 +5079,7 @@ self: super: { "libffi" = dontDistribute super."libffi"; "libgraph" = dontDistribute super."libgraph"; "libhbb" = dontDistribute super."libhbb"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; "libjenkins" = dontDistribute super."libjenkins"; "liblastfm" = dontDistribute super."liblastfm"; "liblinear-enumerator" = dontDistribute super."liblinear-enumerator"; @@ -5035,6 +5120,7 @@ self: super: { "lindenmayer" = dontDistribute super."lindenmayer"; "line-break" = dontDistribute super."line-break"; "line2pdf" = dontDistribute super."line2pdf"; + "linear" = doDistribute super."linear_1_20_4"; "linear-algebra-cblas" = dontDistribute super."linear-algebra-cblas"; "linear-circuit" = dontDistribute super."linear-circuit"; "linear-grammar" = dontDistribute super."linear-grammar"; @@ -5193,6 +5279,7 @@ self: super: { "macbeth-lib" = dontDistribute super."macbeth-lib"; "maccatcher" = dontDistribute super."maccatcher"; "machinecell" = dontDistribute super."machinecell"; + "machines" = doDistribute super."machines_0_5_1"; "machines-binary" = dontDistribute super."machines-binary"; "machines-directory" = doDistribute super."machines-directory_0_2_0_6"; "machines-io" = doDistribute super."machines-io_0_2_0_8"; @@ -5263,6 +5350,7 @@ self: super: { "mathista" = dontDistribute super."mathista"; "mathlink" = dontDistribute super."mathlink"; "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; "matrix-market" = dontDistribute super."matrix-market"; "matrix-market-pure" = dontDistribute super."matrix-market-pure"; "matsuri" = dontDistribute super."matsuri"; @@ -5391,6 +5479,7 @@ self: super: { "monad-codec" = dontDistribute super."monad-codec"; "monad-connect" = dontDistribute super."monad-connect"; "monad-control" = doDistribute super."monad-control_1_0_0_5"; + "monad-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; "monad-dijkstra" = dontDistribute super."monad-dijkstra"; "monad-exception" = dontDistribute super."monad-exception"; "monad-fork" = dontDistribute super."monad-fork"; @@ -5406,6 +5495,7 @@ self: super: { "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; "monad-open" = dontDistribute super."monad-open"; "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; "monad-param" = dontDistribute super."monad-param"; "monad-peel" = doDistribute super."monad-peel_0_2"; @@ -5448,6 +5538,7 @@ self: super: { "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_3"; "monoidplus" = dontDistribute super."monoidplus"; @@ -5485,6 +5576,7 @@ self: super: { "mtgoxapi" = dontDistribute super."mtgoxapi"; "mtl-c" = dontDistribute super."mtl-c"; "mtl-evil-instances" = dontDistribute super."mtl-evil-instances"; + "mtl-prelude" = doDistribute super."mtl-prelude_2_0_2"; "mtl-tf" = dontDistribute super."mtl-tf"; "mtl-unleashed" = dontDistribute super."mtl-unleashed"; "mtlparse" = dontDistribute super."mtlparse"; @@ -5642,6 +5734,7 @@ self: super: { "network-rpca" = dontDistribute super."network-rpca"; "network-server" = dontDistribute super."network-server"; "network-service" = dontDistribute super."network-service"; + "network-simple" = doDistribute super."network-simple_0_4_0_4"; "network-simple-sockaddr" = dontDistribute super."network-simple-sockaddr"; "network-simple-tls" = dontDistribute super."network-simple-tls"; "network-socket-options" = dontDistribute super."network-socket-options"; @@ -5766,6 +5859,7 @@ self: super: { "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"; "opaleye-trans" = dontDistribute super."opaleye-trans"; @@ -5871,6 +5965,7 @@ self: super: { "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"; @@ -5938,6 +6033,7 @@ self: super: { "pcg-random" = dontDistribute super."pcg-random"; "pcre-less" = dontDistribute super."pcre-less"; "pcre-light-extra" = dontDistribute super."pcre-light-extra"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; "pdf-toolbox-viewer" = dontDistribute super."pdf-toolbox-viewer"; "pdf2line" = dontDistribute super."pdf2line"; "pdfsplit" = dontDistribute super."pdfsplit"; @@ -5965,6 +6061,7 @@ self: super: { "persist2er" = dontDistribute super."persist2er"; "persistable-record" = dontDistribute super."persistable-record"; "persistable-types-HDBC-pg" = dontDistribute super."persistable-types-HDBC-pg"; + "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"; @@ -5973,10 +6070,14 @@ self: super: { "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_6"; "persistent-vector" = dontDistribute super."persistent-vector"; "persistent-zookeeper" = dontDistribute super."persistent-zookeeper"; @@ -5994,6 +6095,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; "phasechange" = dontDistribute super."phasechange"; "phizzle" = dontDistribute super."phizzle"; "phoityne" = dontDistribute super."phoityne"; @@ -6013,6 +6115,7 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_0"; "pinchot" = doDistribute super."pinchot_0_6_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; @@ -6027,6 +6130,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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; "pipes-conduit" = dontDistribute super."pipes-conduit"; "pipes-core" = dontDistribute super."pipes-core"; "pipes-courier" = dontDistribute super."pipes-courier"; @@ -6043,8 +6147,10 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; "pipes-transduce" = dontDistribute super."pipes-transduce"; "pipes-vector" = dontDistribute super."pipes-vector"; "pipes-websockets" = dontDistribute super."pipes-websockets"; @@ -6055,6 +6161,7 @@ self: super: { "pitchtrack" = dontDistribute super."pitchtrack"; "pivotal-tracker" = dontDistribute super."pivotal-tracker"; "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; "pkcs7" = dontDistribute super."pkcs7"; "pkggraph" = dontDistribute super."pkggraph"; "pktree" = dontDistribute super."pktree"; @@ -6079,6 +6186,7 @@ self: super: { "pngload-fixed" = dontDistribute super."pngload-fixed"; "pnm" = dontDistribute super."pnm"; "pocket-dns" = dontDistribute super."pocket-dns"; + "pointed" = doDistribute super."pointed_4_2_0_2"; "pointfree" = dontDistribute super."pointfree"; "pointful" = dontDistribute super."pointful"; "pointless-fun" = dontDistribute super."pointless-fun"; @@ -6185,6 +6293,7 @@ self: super: { "pretty-error" = dontDistribute super."pretty-error"; "pretty-hex" = dontDistribute super."pretty-hex"; "pretty-ncols" = dontDistribute super."pretty-ncols"; + "pretty-show" = doDistribute super."pretty-show_1_6_9"; "pretty-sop" = dontDistribute super."pretty-sop"; "pretty-tree" = dontDistribute super."pretty-tree"; "prettyFunctionComposing" = dontDistribute super."prettyFunctionComposing"; @@ -6236,6 +6345,7 @@ self: super: { "prometheus" = dontDistribute super."prometheus"; "promise" = dontDistribute super."promise"; "promises" = dontDistribute super."promises"; + "prompt" = doDistribute super."prompt_0_1_1_0"; "propane" = dontDistribute super."propane"; "propellor" = dontDistribute super."propellor"; "properties" = dontDistribute super."properties"; @@ -6571,12 +6681,14 @@ self: super: { "rest-gen" = doDistribute super."rest-gen_0_19_0_1"; "rest-happstack" = doDistribute super."rest-happstack_0_3_1"; "rest-snap" = doDistribute super."rest-snap_0_2"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; "rest-wai" = doDistribute super."rest-wai_0_2"; "restful-snap" = dontDistribute super."restful-snap"; "restricted-workers" = dontDistribute super."restricted-workers"; "restyle" = dontDistribute super."restyle"; "resumable-exceptions" = dontDistribute super."resumable-exceptions"; "rethinkdb" = doDistribute super."rethinkdb_2_2_0_3"; + "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_1"; @@ -6678,6 +6790,7 @@ self: super: { "safe-length" = dontDistribute super."safe-length"; "safe-plugins" = dontDistribute super."safe-plugins"; "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; "safeint" = dontDistribute super."safeint"; "safer-file-handles" = dontDistribute super."safer-file-handles"; "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; @@ -6700,6 +6813,7 @@ self: super: { "samtools-enumerator" = dontDistribute super."samtools-enumerator"; "samtools-iteratee" = dontDistribute super."samtools-iteratee"; "sandlib" = dontDistribute super."sandlib"; + "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; "sarsi" = dontDistribute super."sarsi"; "sasl" = dontDistribute super."sasl"; @@ -6842,6 +6956,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6963,6 +7078,7 @@ self: super: { "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"; "sirkel" = dontDistribute super."sirkel"; "sitemap" = dontDistribute super."sitemap"; @@ -7006,6 +7122,7 @@ self: super: { "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"; @@ -7242,6 +7359,8 @@ self: super: { "str" = dontDistribute super."str"; "stratosphere" = dontDistribute super."stratosphere"; "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; "stream" = dontDistribute super."stream"; "stream-fusion" = dontDistribute super."stream-fusion"; "stream-monad" = dontDistribute super."stream-monad"; @@ -7507,6 +7626,7 @@ self: super: { "text-region" = dontDistribute super."text-region"; "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"; @@ -7527,6 +7647,7 @@ self: super: { "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-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; "th-fold" = dontDistribute super."th-fold"; @@ -7536,6 +7657,7 @@ self: super: { "th-kinds" = dontDistribute super."th-kinds"; "th-kinds-fork" = dontDistribute super."th-kinds-fork"; "th-lift-instances" = dontDistribute super."th-lift-instances"; + "th-orphans" = doDistribute super."th-orphans_0_13_0"; "th-printf" = dontDistribute super."th-printf"; "th-reify-many" = doDistribute super."th-reify-many_0_1_4"; "th-sccs" = dontDistribute super."th-sccs"; @@ -7546,6 +7668,7 @@ self: super: { "themplate" = dontDistribute super."themplate"; "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"; @@ -7660,6 +7783,7 @@ self: super: { "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"; @@ -7671,6 +7795,7 @@ self: super: { "transient-universe" = dontDistribute super."transient-universe"; "translatable-intset" = dontDistribute super."translatable-intset"; "translate" = dontDistribute super."translate"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; "travis" = dontDistribute super."travis"; "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; "trawl" = dontDistribute super."trawl"; @@ -7821,6 +7946,7 @@ self: super: { "unamb" = dontDistribute super."unamb"; "unamb-custom" = dontDistribute super."unamb-custom"; "unbound" = dontDistribute super."unbound"; + "unbound-generics" = doDistribute super."unbound-generics_0_3"; "unbounded-delays-units" = dontDistribute super."unbounded-delays-units"; "unboxed-containers" = dontDistribute super."unboxed-containers"; "unbreak" = dontDistribute super."unbreak"; @@ -8052,6 +8178,7 @@ self: super: { "wai-lite" = dontDistribute super."wai-lite"; "wai-logger" = doDistribute super."wai-logger_2_2_5"; "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"; @@ -8068,6 +8195,7 @@ self: super: { "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; "wai-session-alt" = dontDistribute super."wai-session-alt"; "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_4"; @@ -8109,6 +8237,7 @@ self: super: { "webcrank" = dontDistribute super."webcrank"; "webcrank-dispatch" = dontDistribute super."webcrank-dispatch"; "webcrank-wai" = dontDistribute super."webcrank-wai"; + "webdriver" = doDistribute super."webdriver_0_8_2"; "webdriver-angular" = doDistribute super."webdriver-angular_0_1_9"; "webdriver-snoy" = dontDistribute super."webdriver-snoy"; "webfinger-client" = dontDistribute super."webfinger-client"; @@ -8121,9 +8250,11 @@ self: super: { "webrtc-vad" = dontDistribute super."webrtc-vad"; "webserver" = dontDistribute super."webserver"; "websnap" = dontDistribute super."websnap"; + "websockets" = doDistribute super."websockets_0_9_6_1"; "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; @@ -8147,6 +8278,7 @@ self: super: { "winio" = dontDistribute super."winio"; "wiring" = dontDistribute super."wiring"; "with-location" = doDistribute super."with-location_0_0_0"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; "witness" = dontDistribute super."witness"; "witty" = dontDistribute super."witty"; "wkt" = dontDistribute super."wkt"; @@ -8161,6 +8293,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; @@ -8409,6 +8542,7 @@ self: super: { "zenc" = dontDistribute super."zenc"; "zendesk-api" = dontDistribute super."zendesk-api"; "zeno" = dontDistribute super."zeno"; + "zero" = doDistribute super."zero_0_1_3_1"; "zerobin" = dontDistribute super."zerobin"; "zeromq-haskell" = dontDistribute super."zeromq-haskell"; "zeromq3-conduit" = dontDistribute super."zeromq3-conduit"; @@ -8418,6 +8552,7 @@ self: super: { "zigbee-znet25" = dontDistribute super."zigbee-znet25"; "zim-parser" = doDistribute super."zim-parser_0_1_0_0"; "zip" = dontDistribute super."zip"; + "zip-archive" = doDistribute super."zip-archive_0_2_3_7"; "zip-conduit" = dontDistribute super."zip-conduit"; "zipedit" = dontDistribute super."zipedit"; "zipkin" = dontDistribute super."zipkin"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix new file mode 100644 index 000000000000..fefaa0006f8a --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -0,0 +1,7968 @@ +{ 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.0 packages + "3d-graphics-examples" = dontDistribute super."3d-graphics-examples"; + "3dmodels" = dontDistribute super."3dmodels"; + "4Blocks" = dontDistribute super."4Blocks"; + "AAI" = dontDistribute super."AAI"; + "ABList" = dontDistribute super."ABList"; + "AC-Angle" = dontDistribute super."AC-Angle"; + "AC-Boolean" = dontDistribute super."AC-Boolean"; + "AC-BuildPlatform" = dontDistribute super."AC-BuildPlatform"; + "AC-Colour" = dontDistribute super."AC-Colour"; + "AC-EasyRaster-GTK" = dontDistribute super."AC-EasyRaster-GTK"; + "AC-HalfInteger" = dontDistribute super."AC-HalfInteger"; + "AC-MiniTest" = dontDistribute super."AC-MiniTest"; + "AC-PPM" = dontDistribute super."AC-PPM"; + "AC-Random" = dontDistribute super."AC-Random"; + "AC-Terminal" = dontDistribute super."AC-Terminal"; + "AC-VanillaArray" = dontDistribute super."AC-VanillaArray"; + "AC-Vector-Fancy" = dontDistribute super."AC-Vector-Fancy"; + "ACME" = dontDistribute super."ACME"; + "ADPfusion" = dontDistribute super."ADPfusion"; + "AERN-Basics" = dontDistribute super."AERN-Basics"; + "AERN-Net" = dontDistribute super."AERN-Net"; + "AERN-Real" = dontDistribute super."AERN-Real"; + "AERN-Real-Double" = dontDistribute super."AERN-Real-Double"; + "AERN-Real-Interval" = dontDistribute super."AERN-Real-Interval"; + "AERN-RnToRm" = dontDistribute super."AERN-RnToRm"; + "AERN-RnToRm-Plot" = dontDistribute super."AERN-RnToRm-Plot"; + "AES" = dontDistribute super."AES"; + "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-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_2_3"; + "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"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "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"; + "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"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; + "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"; + "Frames" = doDistribute super."Frames_0_1_2_1"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "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"; + "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"; + "NoTrace" = doDistribute super."NoTrace_0_3_0_0"; + "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"; + "Octree" = doDistribute super."Octree_0_5_4_2"; + "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"; + "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"; + "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"; + "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"; + "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-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-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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-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-dejafu" = doDistribute super."async-dejafu_0_1_2_1"; + "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-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"; + "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"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "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"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "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-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"; + "bitwise" = doDistribute super."bitwise_0_1_1"; + "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"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "both" = doDistribute super."both_0_1_0_0"; + "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" = doDistribute super."buffer-builder_0_2_4_2"; + "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-handle" = doDistribute super."bytestring-handle_0_1_0_3"; + "bytestring-nums" = dontDistribute super."bytestring-nums"; + "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-rematch" = dontDistribute super."bytestring-rematch"; + "bytestring-short" = dontDistribute super."bytestring-short"; + "bytestring-show" = dontDistribute super."bytestring-show"; + "bytestring-tree-builder" = doDistribute super."bytestring-tree-builder_0_2_6"; + "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-sort" = doDistribute super."cabal-sort_0_0_5_2"; + "cabal-test" = dontDistribute super."cabal-test"; + "cabal-test-bin" = dontDistribute super."cabal-test-bin"; + "cabal-test-compat" = dontDistribute super."cabal-test-compat"; + "cabal-test-quickcheck" = dontDistribute super."cabal-test-quickcheck"; + "cabal-uninstall" = dontDistribute super."cabal-uninstall"; + "cabal-upload" = dontDistribute super."cabal-upload"; + "cabal2arch" = dontDistribute super."cabal2arch"; + "cabal2doap" = dontDistribute super."cabal2doap"; + "cabal2ebuild" = dontDistribute super."cabal2ebuild"; + "cabal2ghci" = dontDistribute super."cabal2ghci"; + "cabal2nix" = dontDistribute super."cabal2nix"; + "cabal2spec" = dontDistribute super."cabal2spec"; + "cabalQuery" = dontDistribute super."cabalQuery"; + "cabalg" = dontDistribute super."cabalg"; + "cabalgraph" = dontDistribute super."cabalgraph"; + "cabalmdvrpm" = dontDistribute super."cabalmdvrpm"; + "cabalrpmdeps" = dontDistribute super."cabalrpmdeps"; + "cabalvchk" = dontDistribute super."cabalvchk"; + "cabin" = dontDistribute super."cabin"; + "cabocha" = dontDistribute super."cabocha"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = 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"; + "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"; + "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"; + "cases" = doDistribute super."cases_0_1_3"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-client" = doDistribute super."cayley-client_0_1_5_0"; + "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" = doDistribute super."cereal_0_5_1_0"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-undecidable" = dontDistribute super."cgi-undecidable"; + "cgi-utils" = dontDistribute super."cgi-utils"; + "cgrep" = dontDistribute super."cgrep"; + "chain-codes" = dontDistribute super."chain-codes"; + "chalk" = dontDistribute super."chalk"; + "chalkboard" = dontDistribute super."chalkboard"; + "chalkboard-viewer" = dontDistribute super."chalkboard-viewer"; + "chalmers-lava2000" = dontDistribute super."chalmers-lava2000"; + "chan-split" = dontDistribute super."chan-split"; + "change-monger" = dontDistribute super."change-monger"; + "charade" = dontDistribute super."charade"; + "charsetdetect" = dontDistribute super."charsetdetect"; + "chart-histogram" = dontDistribute super."chart-histogram"; + "chaselev-deque" = dontDistribute super."chaselev-deque"; + "chatter" = dontDistribute super."chatter"; + "chatty" = dontDistribute super."chatty"; + "chatty-text" = dontDistribute super."chatty-text"; + "chatty-utils" = dontDistribute super."chatty-utils"; + "cheapskate-terminal" = dontDistribute super."cheapskate-terminal"; + "check-pvp" = dontDistribute super."check-pvp"; + "checked" = dontDistribute super."checked"; + "chell-hunit" = dontDistribute super."chell-hunit"; + "chesshs" = dontDistribute super."chesshs"; + "chevalier-common" = dontDistribute super."chevalier-common"; + "chorale" = dontDistribute super."chorale"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "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"; + "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" = doDistribute super."compdata_0_10"; + "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-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"; + "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"; + "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-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"; + "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-syntax" = doDistribute super."css-syntax_0_0_4"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-function-meld" = dontDistribute super."data-function-meld"; + "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-light" = doDistribute super."data-lens-light_0_1_2_1"; + "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-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"; + "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"; + "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"; + "dejafu" = doDistribute super."dejafu_0_3_1_0"; + "deka" = dontDistribute super."deka"; + "deka-tests" = dontDistribute super."deka-tests"; + "delaunay" = dontDistribute super."delaunay"; + "delay" = dontDistribute super."delay"; + "delicious" = dontDistribute super."delicious"; + "delimited-text" = dontDistribute super."delimited-text"; + "delimiter-separated" = dontDistribute super."delimiter-separated"; + "delta" = dontDistribute super."delta"; + "delta-h" = dontDistribute super."delta-h"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "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"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "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-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"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download-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_0"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg" = doDistribute super."ekg_0_4_0_9"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-core" = doDistribute super."ekg-core_0_1_1_0"; + "ekg-json" = doDistribute super."ekg-json_0_1_0_1"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "ekg-statsd" = doDistribute super."ekg-statsd_0_2_0_3"; + "electrum-mnemonic" = dontDistribute super."electrum-mnemonic"; + "elerea" = dontDistribute super."elerea"; + "elerea-examples" = dontDistribute super."elerea-examples"; + "elerea-sdl" = dontDistribute super."elerea-sdl"; + "elevator" = dontDistribute super."elevator"; + "elf" = dontDistribute super."elf"; + "elision" = dontDistribute super."elision"; + "elm-bridge" = doDistribute super."elm-bridge_0_3_0_0"; + "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-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"; + "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" = doDistribute super."event_0_1_3"; + "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"; + "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"; + "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; + "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_7"; + "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"; + "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"; + "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"; + "fixed-vector-hetero" = doDistribute super."fixed-vector-hetero_0_3_1_0"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; + "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" = doDistribute super."flow_1_0_6"; + "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" = doDistribute super."foldl_1_2_0"; + "foldl-incremental" = dontDistribute super."foldl-incremental"; + "foldl-transduce" = dontDistribute super."foldl-transduce"; + "foldl-transduce-attoparsec" = dontDistribute super."foldl-transduce-attoparsec"; + "folds" = dontDistribute super."folds"; + "folds-common" = dontDistribute super."folds-common"; + "follower" = dontDistribute super."follower"; + "foma" = dontDistribute super."foma"; + "font-opengl-basic4x6" = dontDistribute super."font-opengl-basic4x6"; + "foo" = dontDistribute super."foo"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "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"; + "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-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-eot" = doDistribute super."generics-eot_0_2_1"; + "generics-sop-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geojson-types" = dontDistribute super."geojson-types"; + "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-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-hplay" = dontDistribute super."ghcjs-hplay"; + "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" = doDistribute super."gi-gtk_3_0_3"; + "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"; + "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-release" = doDistribute super."github-release_0_1_8"; + "github-types" = doDistribute super."github-types_0_2_0"; + "github-utils" = dontDistribute super."github-utils"; + "github-webhook-handler" = doDistribute super."github-webhook-handler_0_0_7"; + "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-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-cloud" = doDistribute super."google-cloud_0_0_3"; + "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"; + "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"; + "grouped-list" = doDistribute super."grouped-list_0_2_1_1"; + "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"; + "hPDB" = doDistribute super."hPDB_1_2_0_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"; + "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-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"; + "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"; + "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-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-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-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-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" = doDistribute super."hdaemonize_0_5_0_1"; + "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"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "here" = doDistribute super."here_1_2_7"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "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"; + "hid" = doDistribute super."hid_0_2_1_1"; + "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_1"; + "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"; + "hlint" = doDistribute super."hlint_1_9_32"; + "hlogger" = dontDistribute super."hlogger"; + "hlongurl" = dontDistribute super."hlongurl"; + "hls" = dontDistribute super."hls"; + "hlwm" = dontDistribute super."hlwm"; + "hly" = dontDistribute super."hly"; + "hmark" = dontDistribute super."hmark"; + "hmarkup" = dontDistribute super."hmarkup"; + "hmatrix" = doDistribute super."hmatrix_0_17_0_1"; + "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"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "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-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" = doDistribute super."hslogger_1_2_9"; + "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"; + "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-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; + "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; + "httpspec" = dontDistribute super."httpspec"; + "htune" = dontDistribute super."htune"; + "htzaar" = dontDistribute super."htzaar"; + "hub" = dontDistribute super."hub"; + "hubigraph" = dontDistribute super."hubigraph"; + "hubris" = dontDistribute super."hubris"; + "huckleberry" = dontDistribute super."huckleberry"; + "huffman" = dontDistribute super."huffman"; + "hugs2yc" = dontDistribute super."hugs2yc"; + "hulk" = dontDistribute super."hulk"; + "hums" = dontDistribute super."hums"; + "hunch" = dontDistribute super."hunch"; + "hunit-dejafu" = doDistribute super."hunit-dejafu_0_3_0_0"; + "hunit-gui" = dontDistribute super."hunit-gui"; + "hunit-parsec" = dontDistribute super."hunit-parsec"; + "hunit-rematch" = dontDistribute super."hunit-rematch"; + "hunp" = dontDistribute super."hunp"; + "hunt-searchengine" = dontDistribute super."hunt-searchengine"; + "hunt-server" = dontDistribute super."hunt-server"; + "hunt-server-cli" = dontDistribute super."hunt-server-cli"; + "hurdle" = dontDistribute super."hurdle"; + "husk-scheme" = dontDistribute super."husk-scheme"; + "husk-scheme-libs" = dontDistribute super."husk-scheme-libs"; + "husky" = dontDistribute super."husky"; + "hutton" = dontDistribute super."hutton"; + "huttons-razor" = dontDistribute super."huttons-razor"; + "huzzy" = dontDistribute super."huzzy"; + "hw-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"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-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"; + "inflections" = doDistribute super."inflections_0_2_0_0"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "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"; + "ip6addr" = doDistribute super."ip6addr_0_5_1_0"; + "ipatch" = dontDistribute super."ipatch"; + "ipc" = dontDistribute super."ipc"; + "ipcvar" = dontDistribute super."ipcvar"; + "ipopt-hs" = dontDistribute super."ipopt-hs"; + "ipprint" = dontDistribute super."ipprint"; + "iptables-helpers" = dontDistribute super."iptables-helpers"; + "iptadmin" = dontDistribute super."iptadmin"; + "irc-bytestring" = dontDistribute super."irc-bytestring"; + "irc-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-dcc" = doDistribute super."irc-dcc_1_2_0"; + "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"; + "jmacro" = doDistribute super."jmacro_0_6_13"; + "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"; + "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-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-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"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "kraken" = doDistribute super."kraken_0_0_1"; + "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-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-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-nix" = doDistribute super."language-nix_2_1"; + "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"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "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"; + "libinfluxdb" = doDistribute super."libinfluxdb_0_0_3"; + "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-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" = doDistribute super."linear_1_20_4"; + "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-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "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"; + "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"; + "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"; + "managed" = doDistribute super."managed_1_0_4"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "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"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix" = doDistribute super."matrix_0_3_4_4"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-coroutine" = doDistribute super."monad-coroutine_0_9_0_2"; + "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-log" = dontDistribute super."monad-log"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel" = doDistribute super."monad-parallel_0_7_2_1"; + "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-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-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "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"; + "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-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" = doDistribute super."network-simple_0_4_0_4"; + "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"; + "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"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye" = 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-generic" = doDistribute super."optparse-generic_1_1_0"; + "optparse-helper" = doDistribute super."optparse-helper_0_2_0_0"; + "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"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "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"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_7"; + "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"; + "phantom-state" = doDistribute super."phantom-state_0_2_0_2"; + "phasechange" = dontDistribute super."phasechange"; + "phash" = dontDistribute super."phash"; + "phizzle" = dontDistribute super."phizzle"; + "phoityne" = dontDistribute super."phoityne"; + "phoityne-vscode" = dontDistribute super."phoityne-vscode"; + "phone-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pinchot" = doDistribute super."pinchot_0_18_0_0"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-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-concurrency" = doDistribute super."pipes-concurrency_2_0_5"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-parse" = doDistribute super."pipes-parse_3_0_6"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs10" = doDistribute super."pkcs10_0_1_0_5"; + "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"; + "pointed" = doDistribute super."pointed_4_2_0_2"; + "pointfree" = dontDistribute super."pointfree"; + "pointful" = doDistribute super."pointful_1_0_7"; + "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"; + "ponder" = dontDistribute super."ponder"; + "pong-server" = dontDistribute super."pong-server"; + "pontarius-mediaserver" = dontDistribute super."pontarius-mediaserver"; + "pontarius-xmpp" = dontDistribute super."pontarius-xmpp"; + "pontarius-xpmn" = dontDistribute super."pontarius-xpmn"; + "pony" = dontDistribute super."pony"; + "pool" = dontDistribute super."pool"; + "pool-conduit" = dontDistribute super."pool-conduit"; + "pooled-io" = dontDistribute super."pooled-io"; + "pop3-client" = dontDistribute super."pop3-client"; + "popenhs" = dontDistribute super."popenhs"; + "poppler" = dontDistribute super."poppler"; + "populate-setup-exe-cache" = dontDistribute super."populate-setup-exe-cache"; + "portable-lines" = dontDistribute super."portable-lines"; + "portaudio" = dontDistribute super."portaudio"; + "porte" = dontDistribute super."porte"; + "porter" = dontDistribute super."porter"; + "ports" = dontDistribute super."ports"; + "ports-tools" = dontDistribute super."ports-tools"; + "positive" = dontDistribute super."positive"; + "posix-acl" = dontDistribute super."posix-acl"; + "posix-escape" = dontDistribute super."posix-escape"; + "posix-filelock" = dontDistribute super."posix-filelock"; + "posix-paths" = dontDistribute super."posix-paths"; + "posix-pty" = dontDistribute super."posix-pty"; + "posix-timer" = dontDistribute super."posix-timer"; + "posix-waitpid" = dontDistribute super."posix-waitpid"; + "possible" = dontDistribute super."possible"; + "postcodes" = dontDistribute super."postcodes"; + "postgresql-binary" = doDistribute super."postgresql-binary_0_9"; + "postgresql-config" = dontDistribute super."postgresql-config"; + "postgresql-connector" = dontDistribute super."postgresql-connector"; + "postgresql-copy-escape" = dontDistribute super."postgresql-copy-escape"; + "postgresql-cube" = dontDistribute super."postgresql-cube"; + "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; + "postgresql-query" = dontDistribute super."postgresql-query"; + "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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-show" = doDistribute super."pretty-show_1_6_9"; + "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"; + "processor-creative-kit" = dontDistribute super."processor-creative-kit"; + "procrastinating-structure" = dontDistribute super."procrastinating-structure"; + "procrastinating-variable" = dontDistribute super."procrastinating-variable"; + "procstat" = dontDistribute super."procstat"; + "proctest" = dontDistribute super."proctest"; + "product-profunctors" = doDistribute super."product-profunctors_0_7_0_2"; + "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"; + "prompt" = doDistribute super."prompt_0_1_1_0"; + "propane" = dontDistribute super."propane"; + "propellor" = dontDistribute super."propellor"; + "properties" = dontDistribute super."properties"; + "property-list" = dontDistribute super."property-list"; + "proplang" = dontDistribute super."proplang"; + "props" = dontDistribute super."props"; + "prosper" = dontDistribute super."prosper"; + "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf-native" = dontDistribute super."protobuf-native"; + "protocol-buffers" = doDistribute super."protocol-buffers_2_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-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-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-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"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "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"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "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-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" = doDistribute super."relational-record_0_1_4_0"; + "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"; + "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"; + "rest-types" = doDistribute super."rest-types_1_14_0_1"; + "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_4"; + "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_2"; + "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"; + "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"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "scalpel" = doDistribute super."scalpel_0_3_0_1"; + "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"; + "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-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = 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-syntax" = dontDistribute super."semigroupoids-syntax"; + "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"; + "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-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-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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-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"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "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"; + "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_5_0"; + "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"; + "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"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "stateWriter" = doDistribute super."stateWriter_0_2_7"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "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"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-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"; + "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"; + "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-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-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"; + "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-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "target" = dontDistribute super."target"; + "task" = dontDistribute super."task"; + "task-distribution" = dontDistribute super."task-distribution"; + "taskpool" = dontDistribute super."taskpool"; + "tasty-dejafu" = doDistribute super."tasty-dejafu_0_3_0_0"; + "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; + "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; + "tasty-integrate" = dontDistribute super."tasty-integrate"; + "tasty-laws" = dontDistribute super."tasty-laws"; + "tasty-lens" = dontDistribute super."tasty-lens"; + "tasty-program" = dontDistribute super."tasty-program"; + "tateti-tateti" = dontDistribute super."tateti-tateti"; + "tau" = dontDistribute super."tau"; + "tbox" = dontDistribute super."tbox"; + "tcache-AWS" = dontDistribute super."tcache-AWS"; + "tccli" = dontDistribute super."tccli"; + "tce-conf" = dontDistribute super."tce-conf"; + "tconfig" = dontDistribute super."tconfig"; + "tcp" = dontDistribute super."tcp"; + "tdd-util" = dontDistribute super."tdd-util"; + "tdoc" = dontDistribute super."tdoc"; + "teams" = dontDistribute super."teams"; + "teeth" = dontDistribute super."teeth"; + "telegram" = dontDistribute super."telegram"; + "teleport" = dontDistribute super."teleport"; + "tellbot" = doDistribute super."tellbot_0_6_0_12"; + "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"; + "texmath" = doDistribute super."texmath_0_8_6_2"; + "texrunner" = dontDistribute super."texrunner"; + "text-and-plots" = dontDistribute super."text-and-plots"; + "text-conversions" = dontDistribute super."text-conversions"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-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"; + "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" = dontDistribute super."th-lift-instances"; + "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"; + "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"; + "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-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"; + "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"; + "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"; + "traverse-with-class" = doDistribute super."traverse-with-class_0_2_0_3"; + "travis" = dontDistribute super."travis"; + "travis-meta-yaml" = dontDistribute super."travis-meta-yaml"; + "trawl" = dontDistribute super."trawl"; + "traypoweroff" = dontDistribute super."traypoweroff"; + "tree-monad" = dontDistribute super."tree-monad"; + "treemap-html" = dontDistribute super."treemap-html"; + "treemap-html-tools" = dontDistribute super."treemap-html-tools"; + "treersec" = dontDistribute super."treersec"; + "treeviz" = dontDistribute super."treeviz"; + "tremulous-query" = dontDistribute super."tremulous-query"; + "trhsx" = dontDistribute super."trhsx"; + "triangulation" = dontDistribute super."triangulation"; + "trimpolya" = dontDistribute super."trimpolya"; + "tripLL" = dontDistribute super."tripLL"; + "trivia" = dontDistribute super."trivia"; + "trivial-constraint" = dontDistribute super."trivial-constraint"; + "tropical" = dontDistribute super."tropical"; + "truelevel" = dontDistribute super."truelevel"; + "trurl" = dontDistribute super."trurl"; + "truthful" = dontDistribute super."truthful"; + "tsession" = dontDistribute super."tsession"; + "tsession-happstack" = dontDistribute super."tsession-happstack"; + "tskiplist" = dontDistribute super."tskiplist"; + "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"; + "turtle" = doDistribute super."turtle_1_2_7"; + "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-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"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vcswrapper" = doDistribute super."vcswrapper_0_1_2"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "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-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-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-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-routes" = doDistribute super."wai-routes_0_9_7"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-postgresql" = doDistribute super."wai-session-postgresql_0_2_0_5"; + "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" = doDistribute super."webdriver_0_8_2"; + "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"; + "websockets" = doDistribute super."websockets_0_9_6_1"; + "webwire" = dontDistribute super."webwire"; + "wedding-announcement" = dontDistribute super."wedding-announcement"; + "wedged" = dontDistribute super."wedged"; + "weigh" = dontDistribute super."weigh"; + "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"; + "wiring" = dontDistribute super."wiring"; + "withdependencies" = doDistribute super."withdependencies_0_2_2_1"; + "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"; + "wordpass" = doDistribute super."wordpass_1_0_0_4"; + "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"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdcc" = doDistribute super."xdcc_1_0_2"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "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-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bin" = doDistribute super."yesod-bin_1_4_18_1"; + "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"; + "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"; + "zero" = doDistribute super."zero_0_1_3_1"; + "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/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix new file mode 100644 index 000000000000..53faa9e98f86 --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -0,0 +1,7879 @@ +{ 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.1 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-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"; + "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"; + "ConcurrentUtils" = dontDistribute super."ConcurrentUtils"; + "Concurrential" = dontDistribute super."Concurrential"; + "Condor" = dontDistribute super."Condor"; + "ConfigFileTH" = dontDistribute super."ConfigFileTH"; + "Configger" = dontDistribute super."Configger"; + "Configurable" = dontDistribute super."Configurable"; + "ConsStream" = dontDistribute super."ConsStream"; + "Conscript" = dontDistribute super."Conscript"; + "ConstraintKinds" = dontDistribute super."ConstraintKinds"; + "Consumer" = dontDistribute super."Consumer"; + "ContArrow" = dontDistribute super."ContArrow"; + "ContextAlgebra" = dontDistribute super."ContextAlgebra"; + "Contract" = dontDistribute super."Contract"; + "Control-Engine" = dontDistribute super."Control-Engine"; + "Control-Monad-MultiPass" = dontDistribute super."Control-Monad-MultiPass"; + "Control-Monad-ST2" = dontDistribute super."Control-Monad-ST2"; + "CoreDump" = dontDistribute super."CoreDump"; + "CoreErlang" = dontDistribute super."CoreErlang"; + "CoreFoundation" = dontDistribute super."CoreFoundation"; + "Coroutine" = dontDistribute super."Coroutine"; + "CouchDB" = dontDistribute super."CouchDB"; + "Craft3e" = dontDistribute super."Craft3e"; + "Crypto" = dontDistribute super."Crypto"; + "CurryDB" = dontDistribute super."CurryDB"; + "DAG-Tournament" = dontDistribute super."DAG-Tournament"; + "DBlimited" = dontDistribute super."DBlimited"; + "DBus" = dontDistribute super."DBus"; + "DCFL" = dontDistribute super."DCFL"; + "DMuCheck" = dontDistribute super."DMuCheck"; + "DOM" = dontDistribute super."DOM"; + "DP" = dontDistribute super."DP"; + "DPM" = dontDistribute super."DPM"; + "DSA" = dontDistribute super."DSA"; + "DSH" = dontDistribute super."DSH"; + "DSTM" = dontDistribute super."DSTM"; + "DTC" = dontDistribute super."DTC"; + "Dangerous" = dontDistribute super."Dangerous"; + "Dao" = dontDistribute super."Dao"; + "DarcsHelpers" = dontDistribute super."DarcsHelpers"; + "Data-Hash-Consistent" = dontDistribute super."Data-Hash-Consistent"; + "Data-Rope" = dontDistribute super."Data-Rope"; + "DataTreeView" = dontDistribute super."DataTreeView"; + "Deadpan-DDP" = dontDistribute super."Deadpan-DDP"; + "DebugTraceHelpers" = dontDistribute super."DebugTraceHelpers"; + "DecisionTree" = dontDistribute super."DecisionTree"; + "DeepArrow" = dontDistribute super."DeepArrow"; + "DefendTheKing" = dontDistribute super."DefendTheKing"; + "DescriptiveKeys" = dontDistribute super."DescriptiveKeys"; + "Dflow" = dontDistribute super."Dflow"; + "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"; + "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"; + "FontyFruity" = doDistribute super."FontyFruity_0_5_3_1"; + "ForSyDe" = dontDistribute super."ForSyDe"; + "ForestStructures" = dontDistribute super."ForestStructures"; + "ForkableT" = dontDistribute super."ForkableT"; + "FormalGrammars" = dontDistribute super."FormalGrammars"; + "Foster" = dontDistribute super."Foster"; + "FpMLv53" = dontDistribute super."FpMLv53"; + "FractalArt" = dontDistribute super."FractalArt"; + "Fractaler" = dontDistribute super."Fractaler"; + "Frank" = dontDistribute super."Frank"; + "FreeTypeGL" = dontDistribute super."FreeTypeGL"; + "FunGEn" = dontDistribute super."FunGEn"; + "Fungi" = dontDistribute super."Fungi"; + "GA" = dontDistribute super."GA"; + "GGg" = dontDistribute super."GGg"; + "GHood" = dontDistribute super."GHood"; + "GLFW" = dontDistribute super."GLFW"; + "GLFW-OGL" = dontDistribute super."GLFW-OGL"; + "GLFW-b-demo" = dontDistribute super."GLFW-b-demo"; + "GLFW-task" = dontDistribute super."GLFW-task"; + "GLHUI" = dontDistribute super."GLHUI"; + "GLM" = dontDistribute super."GLM"; + "GLMatrix" = dontDistribute super."GLMatrix"; + "GLUtil" = dontDistribute super."GLUtil"; + "GPX" = dontDistribute super."GPX"; + "GPipe-Collada" = dontDistribute super."GPipe-Collada"; + "GPipe-Examples" = dontDistribute super."GPipe-Examples"; + "GPipe-TextureLoad" = dontDistribute super."GPipe-TextureLoad"; + "GTALib" = dontDistribute super."GTALib"; + "Gamgine" = dontDistribute super."Gamgine"; + "Ganymede" = dontDistribute super."Ganymede"; + "GaussQuadIntegration" = dontDistribute super."GaussQuadIntegration"; + "GeBoP" = dontDistribute super."GeBoP"; + "GenI" = dontDistribute super."GenI"; + "GenSmsPdu" = dontDistribute super."GenSmsPdu"; + "GeneralTicTacToe" = dontDistribute super."GeneralTicTacToe"; + "GenussFold" = dontDistribute super."GenussFold"; + "GeoIp" = dontDistribute super."GeoIp"; + "GeocoderOpenCage" = dontDistribute super."GeocoderOpenCage"; + "Geodetic" = dontDistribute super."Geodetic"; + "GeomPredicates" = dontDistribute super."GeomPredicates"; + "GeomPredicates-SSE" = dontDistribute super."GeomPredicates-SSE"; + "GiST" = dontDistribute super."GiST"; + "Gifcurry" = dontDistribute super."Gifcurry"; + "GiveYouAHead" = dontDistribute super."GiveYouAHead"; + "GlomeTrace" = dontDistribute super."GlomeTrace"; + "GlomeVec" = dontDistribute super."GlomeVec"; + "GlomeView" = dontDistribute super."GlomeView"; + "GoogleChart" = dontDistribute super."GoogleChart"; + "GoogleDirections" = dontDistribute super."GoogleDirections"; + "GoogleSB" = dontDistribute super."GoogleSB"; + "GoogleSuggest" = dontDistribute super."GoogleSuggest"; + "GoogleTranslate" = dontDistribute super."GoogleTranslate"; + "GotoT-transformers" = dontDistribute super."GotoT-transformers"; + "GrammarProducts" = dontDistribute super."GrammarProducts"; + "Graph500" = dontDistribute super."Graph500"; + "GraphHammer" = dontDistribute super."GraphHammer"; + "GraphHammer-examples" = dontDistribute super."GraphHammer-examples"; + "Graphalyze" = dontDistribute super."Graphalyze"; + "Grempa" = dontDistribute super."Grempa"; + "GroteTrap" = dontDistribute super."GroteTrap"; + "Grow" = dontDistribute super."Grow"; + "GrowlNotify" = dontDistribute super."GrowlNotify"; + "Gtk2hsGenerics" = dontDistribute super."Gtk2hsGenerics"; + "GtkGLTV" = dontDistribute super."GtkGLTV"; + "GtkTV" = dontDistribute super."GtkTV"; + "GuiHaskell" = dontDistribute super."GuiHaskell"; + "GuiTV" = dontDistribute super."GuiTV"; + "HARM" = dontDistribute super."HARM"; + "HAppS-Data" = dontDistribute super."HAppS-Data"; + "HAppS-IxSet" = dontDistribute super."HAppS-IxSet"; + "HAppS-Server" = dontDistribute super."HAppS-Server"; + "HAppS-State" = dontDistribute super."HAppS-State"; + "HAppS-Util" = dontDistribute super."HAppS-Util"; + "HAppSHelpers" = dontDistribute super."HAppSHelpers"; + "HCL" = dontDistribute super."HCL"; + "HCard" = dontDistribute super."HCard"; + "HDBC-mysql" = dontDistribute super."HDBC-mysql"; + "HDBC-odbc" = dontDistribute super."HDBC-odbc"; + "HDBC-postgresql-hstore" = dontDistribute super."HDBC-postgresql-hstore"; + "HDRUtils" = dontDistribute super."HDRUtils"; + "HERA" = dontDistribute super."HERA"; + "HFrequencyQueue" = dontDistribute super."HFrequencyQueue"; + "HFuse" = dontDistribute super."HFuse"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "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"; + "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"; + "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"; + "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"; + "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"; + "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-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-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "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-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-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"; + "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"; + "awesome-prelude" = dontDistribute super."awesome-prelude"; + "awesomium" = dontDistribute super."awesomium"; + "awesomium-glut" = dontDistribute super."awesomium-glut"; + "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; + "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; + "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; + "aws-dynamodb-streams" = dontDistribute super."aws-dynamodb-streams"; + "aws-ec2" = dontDistribute super."aws-ec2"; + "aws-elastic-transcoder" = dontDistribute super."aws-elastic-transcoder"; + "aws-general" = dontDistribute super."aws-general"; + "aws-kinesis" = dontDistribute super."aws-kinesis"; + "aws-kinesis-client" = dontDistribute super."aws-kinesis-client"; + "aws-kinesis-reshard" = dontDistribute super."aws-kinesis-reshard"; + "aws-lambda" = dontDistribute super."aws-lambda"; + "aws-performance-tests" = dontDistribute super."aws-performance-tests"; + "aws-route53" = dontDistribute super."aws-route53"; + "aws-sdk" = dontDistribute super."aws-sdk"; + "aws-sdk-text-converter" = dontDistribute super."aws-sdk-text-converter"; + "aws-sdk-xml-unordered" = dontDistribute super."aws-sdk-xml-unordered"; + "aws-sign4" = dontDistribute super."aws-sign4"; + "aws-sns" = dontDistribute super."aws-sns"; + "azure-acs" = dontDistribute super."azure-acs"; + "azure-service-api" = dontDistribute super."azure-service-api"; + "azure-servicebus" = dontDistribute super."azure-servicebus"; + "azurify" = dontDistribute super."azurify"; + "b-tree" = dontDistribute super."b-tree"; + "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"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "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-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"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "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"; + "cached-io" = dontDistribute super."cached-io"; + "cached-traversable" = dontDistribute super."cached-traversable"; + "caf" = dontDistribute super."caf"; + "cafeteria-prelude" = dontDistribute super."cafeteria-prelude"; + "caffegraph" = dontDistribute super."caffegraph"; + "cairo" = 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"; + "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"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-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"; + "chp" = dontDistribute super."chp"; + "chp-mtl" = dontDistribute super."chp-mtl"; + "chp-plus" = dontDistribute super."chp-plus"; + "chp-spec" = dontDistribute super."chp-spec"; + "chp-transformers" = dontDistribute super."chp-transformers"; + "chronograph" = dontDistribute super."chronograph"; + "chu2" = dontDistribute super."chu2"; + "chuchu" = dontDistribute super."chuchu"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "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"; + "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" = doDistribute super."compdata_0_10"; + "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-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"; + "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"; + "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-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"; + "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; + "cryptsy-api" = dontDistribute super."cryptsy-api"; + "crystalfontz" = dontDistribute super."crystalfontz"; + "cse-ghc-plugin" = dontDistribute super."cse-ghc-plugin"; + "csound-catalog" = dontDistribute super."csound-catalog"; + "csound-expression" = dontDistribute super."csound-expression"; + "csound-expression-dynamic" = dontDistribute super."csound-expression-dynamic"; + "csound-expression-opcodes" = dontDistribute super."csound-expression-opcodes"; + "csound-expression-typed" = dontDistribute super."csound-expression-typed"; + "csound-sampler" = dontDistribute super."csound-sampler"; + "csp" = dontDistribute super."csp"; + "cspmchecker" = dontDistribute super."cspmchecker"; + "css" = dontDistribute super."css"; + "csv-enumerator" = dontDistribute super."csv-enumerator"; + "csv-nptools" = dontDistribute super."csv-nptools"; + "csv-table" = dontDistribute super."csv-table"; + "csv-to-qif" = dontDistribute super."csv-to-qif"; + "ctemplate" = dontDistribute super."ctemplate"; + "ctkl" = dontDistribute super."ctkl"; + "ctpl" = dontDistribute super."ctpl"; + "cube" = dontDistribute super."cube"; + "cubical" = dontDistribute super."cubical"; + "cubicbezier" = dontDistribute super."cubicbezier"; + "cublas" = dontDistribute super."cublas"; + "cuboid" = dontDistribute super."cuboid"; + "cuda" = dontDistribute super."cuda"; + "cudd" = dontDistribute super."cudd"; + "cufft" = dontDistribute super."cufft"; + "curl-aeson" = dontDistribute super."curl-aeson"; + "curlhs" = dontDistribute super."curlhs"; + "currency" = dontDistribute super."currency"; + "current-locale" = dontDistribute super."current-locale"; + "curry-base" = dontDistribute super."curry-base"; + "curry-frontend" = dontDistribute super."curry-frontend"; + "cursedcsv" = dontDistribute super."cursedcsv"; + "curve25519" = dontDistribute super."curve25519"; + "curves" = dontDistribute super."curves"; + "custom-prelude" = dontDistribute super."custom-prelude"; + "cv-combinators" = dontDistribute super."cv-combinators"; + "cyclotomic" = dontDistribute super."cyclotomic"; + "cypher" = dontDistribute super."cypher"; + "d-bus" = dontDistribute super."d-bus"; + "d3d11binding" = dontDistribute super."d3d11binding"; + "d3js" = dontDistribute super."d3js"; + "daemonize-doublefork" = dontDistribute super."daemonize-doublefork"; + "daemons" = dontDistribute super."daemons"; + "dag" = dontDistribute super."dag"; + "damnpacket" = dontDistribute super."damnpacket"; + "danibot" = dontDistribute super."danibot"; + "dao" = dontDistribute super."dao"; + "dapi" = dontDistribute super."dapi"; + "darcs-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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-function-meld" = dontDistribute super."data-function-meld"; + "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-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"; + "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"; + "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"; + "demarcate" = dontDistribute super."demarcate"; + "denominate" = dontDistribute super."denominate"; + "dependent-state" = dontDistribute super."dependent-state"; + "depends" = dontDistribute super."depends"; + "dephd" = dontDistribute super."dephd"; + "dequeue" = dontDistribute super."dequeue"; + "derangement" = dontDistribute super."derangement"; + "derivation-trees" = dontDistribute super."derivation-trees"; + "derive-IG" = dontDistribute super."derive-IG"; + "derive-enumerable" = dontDistribute super."derive-enumerable"; + "derive-gadt" = dontDistribute super."derive-gadt"; + "derive-monoid" = dontDistribute super."derive-monoid"; + "derive-topdown" = dontDistribute super."derive-topdown"; + "derive-trie" = dontDistribute super."derive-trie"; + "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"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "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-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"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "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-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"; + "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"; + "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"; + "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"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-defaults" = doDistribute super."flexible-defaults_0_0_1_1"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock" = 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"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "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"; + "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-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-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geojson-types" = dontDistribute super."geojson-types"; + "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-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-hplay" = dontDistribute super."ghcjs-hplay"; + "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" = doDistribute super."gi-gtk_3_0_3"; + "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"; + "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-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "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"; + "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"; + "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"; + "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-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"; + "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"; + "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-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-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-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-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"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-map" = dontDistribute super."hetero-map"; + "hetris" = dontDistribute super."hetris"; + "heukarya" = dontDistribute super."heukarya"; + "hevolisa" = dontDistribute super."hevolisa"; + "hevolisa-dph" = dontDistribute super."hevolisa-dph"; + "hexdump" = dontDistribute super."hexdump"; + "hexif" = dontDistribute super."hexif"; + "hexpat-iteratee" = dontDistribute super."hexpat-iteratee"; + "hexpat-lens" = dontDistribute super."hexpat-lens"; + "hexpat-pickle" = dontDistribute super."hexpat-pickle"; + "hexpat-pickle-generic" = dontDistribute super."hexpat-pickle-generic"; + "hexpat-tagsoup" = dontDistribute super."hexpat-tagsoup"; + "hexpr" = dontDistribute super."hexpr"; + "hexquote" = dontDistribute super."hexquote"; + "heyefi" = dontDistribute super."heyefi"; + "hfann" = dontDistribute super."hfann"; + "hfd" = dontDistribute super."hfd"; + "hfiar" = dontDistribute super."hfiar"; + "hfmt" = dontDistribute super."hfmt"; + "hfoil" = dontDistribute super."hfoil"; + "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-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"; + "hlint" = doDistribute super."hlint_1_9_32"; + "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"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "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-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"; + "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-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "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"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-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"; + "inflections" = doDistribute super."inflections_0_2_0_0"; + "inflist" = dontDistribute super."inflist"; + "influxdb" = dontDistribute super."influxdb"; + "informative" = dontDistribute super."informative"; + "inilist" = dontDistribute super."inilist"; + "inject" = dontDistribute super."inject"; + "inject-function" = dontDistribute super."inject-function"; + "inline-c-win32" = dontDistribute super."inline-c-win32"; + "inline-java" = dontDistribute super."inline-java"; + "inquire" = dontDistribute super."inquire"; + "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-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "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"; + "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-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-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"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "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-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-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"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "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-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" = doDistribute super."linear_1_20_4"; + "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-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "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"; + "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"; + "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"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "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"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-log" = dontDistribute super."monad-log"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-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-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-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "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"; + "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-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"; + "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"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye" = 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"; + "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"; + "pagure-hook-receiver" = dontDistribute super."pagure-hook-receiver"; + "palindromes" = dontDistribute super."palindromes"; + "pam" = dontDistribute super."pam"; + "panda" = dontDistribute super."panda"; + "pandoc-citeproc-preamble" = dontDistribute super."pandoc-citeproc-preamble"; + "pandoc-crossref" = dontDistribute super."pandoc-crossref"; + "pandoc-csv2table" = dontDistribute super."pandoc-csv2table"; + "pandoc-include" = dontDistribute super."pandoc-include"; + "pandoc-japanese-filters" = dontDistribute super."pandoc-japanese-filters"; + "pandoc-lens" = dontDistribute super."pandoc-lens"; + "pandoc-placetable" = dontDistribute super."pandoc-placetable"; + "pandoc-plantuml-diagrams" = dontDistribute super."pandoc-plantuml-diagrams"; + "pandoc-unlit" = dontDistribute super."pandoc-unlit"; + "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"; + "pcre-utils" = doDistribute super."pcre-utils_0_1_8"; + "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-numbers" = dontDistribute super."phone-numbers"; + "phone-push" = dontDistribute super."phone-push"; + "phonetic-code" = dontDistribute super."phonetic-code"; + "phooey" = dontDistribute super."phooey"; + "photoname" = dontDistribute super."photoname"; + "phraskell" = dontDistribute super."phraskell"; + "phybin" = dontDistribute super."phybin"; + "pi-calculus" = dontDistribute super."pi-calculus"; + "pia-forward" = dontDistribute super."pia-forward"; + "pianola" = dontDistribute super."pianola"; + "picologic" = dontDistribute super."picologic"; + "picosat" = dontDistribute super."picosat"; + "piet" = dontDistribute super."piet"; + "piki" = dontDistribute super."piki"; + "pinboard" = dontDistribute super."pinboard"; + "pipe-enumerator" = dontDistribute super."pipe-enumerator"; + "pipeclip" = dontDistribute super."pipeclip"; + "pipes-async" = dontDistribute super."pipes-async"; + "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; + "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cellular" = dontDistribute super."pipes-cellular"; + "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; + "pipes-cereal" = dontDistribute super."pipes-cereal"; + "pipes-cereal-plus" = dontDistribute super."pipes-cereal-plus"; + "pipes-conduit" = dontDistribute super."pipes-conduit"; + "pipes-core" = dontDistribute super."pipes-core"; + "pipes-courier" = dontDistribute super."pipes-courier"; + "pipes-errors" = dontDistribute super."pipes-errors"; + "pipes-extra" = dontDistribute super."pipes-extra"; + "pipes-files" = dontDistribute super."pipes-files"; + "pipes-interleave" = dontDistribute super."pipes-interleave"; + "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-network-tls" = dontDistribute super."pipes-network-tls"; + "pipes-p2p" = dontDistribute super."pipes-p2p"; + "pipes-p2p-examples" = dontDistribute super."pipes-p2p-examples"; + "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; + "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-shell" = dontDistribute super."pipes-shell"; + "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; + "pipes-text" = doDistribute super."pipes-text_0_0_2_1"; + "pipes-vector" = dontDistribute super."pipes-vector"; + "pipes-websockets" = dontDistribute super."pipes-websockets"; + "pipes-zeromq4" = dontDistribute super."pipes-zeromq4"; + "pipes-zlib" = dontDistribute super."pipes-zlib"; + "pisigma" = dontDistribute super."pisigma"; + "pit" = dontDistribute super."pit"; + "pitchtrack" = dontDistribute super."pitchtrack"; + "pivotal-tracker" = dontDistribute super."pivotal-tracker"; + "pkcs1" = dontDistribute super."pkcs1"; + "pkcs7" = dontDistribute super."pkcs7"; + "pkggraph" = dontDistribute super."pkggraph"; + "pktree" = dontDistribute super."pktree"; + "plailude" = dontDistribute super."plailude"; + "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"; + "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"; + "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-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"; + "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"; + "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-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-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-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"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "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"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "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-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"; + "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-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"; + "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"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safecopy" = doDistribute super."safecopy_0_9_0_1"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "sarsi" = dontDistribute super."sarsi"; + "sasl" = dontDistribute super."sasl"; + "sat" = dontDistribute super."sat"; + "sat-micro-hs" = dontDistribute super."sat-micro-hs"; + "satchmo" = dontDistribute super."satchmo"; + "satchmo-backends" = dontDistribute super."satchmo-backends"; + "satchmo-examples" = dontDistribute super."satchmo-examples"; + "satchmo-funsat" = dontDistribute super."satchmo-funsat"; + "satchmo-minisat" = dontDistribute super."satchmo-minisat"; + "satchmo-toysat" = dontDistribute super."satchmo-toysat"; + "sbp" = dontDistribute super."sbp"; + "sbvPlugin" = dontDistribute super."sbvPlugin"; + "sc3-rdu" = dontDistribute super."sc3-rdu"; + "scalable-server" = dontDistribute super."scalable-server"; + "scaleimage" = dontDistribute super."scaleimage"; + "scalp-webhooks" = dontDistribute super."scalp-webhooks"; + "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"; + "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-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = 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-syntax" = dontDistribute super."semigroupoids-syntax"; + "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"; + "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-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-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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-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"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "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"; + "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"; + "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"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "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"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "stratux-types" = dontDistribute super."stratux-types"; + "stream" = dontDistribute super."stream"; + "stream-fusion" = dontDistribute super."stream-fusion"; + "stream-monad" = dontDistribute super."stream-monad"; + "streamed" = dontDistribute super."streamed"; + "streaming-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-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"; + "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"; + "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-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-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"; + "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-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "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"; + "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-and-plots" = dontDistribute super."text-and-plots"; + "text-conversions" = dontDistribute super."text-conversions"; + "text-format-simple" = dontDistribute super."text-format-simple"; + "text-icu-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "text-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"; + "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" = dontDistribute super."th-lift-instances"; + "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"; + "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"; + "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-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"; + "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"; + "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"; + "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-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"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "unit-constraint" = dontDistribute super."unit-constraint"; + "units" = dontDistribute super."units"; + "units-attoparsec" = dontDistribute super."units-attoparsec"; + "units-defs" = dontDistribute super."units-defs"; + "units-parser" = dontDistribute super."units-parser"; + "unittyped" = dontDistribute super."unittyped"; + "universal-binary" = dontDistribute super."universal-binary"; + "universe-th" = dontDistribute super."universe-th"; + "unix-fcntl" = dontDistribute super."unix-fcntl"; + "unix-handle" = dontDistribute super."unix-handle"; + "unix-io-extra" = dontDistribute super."unix-io-extra"; + "unix-memory" = dontDistribute super."unix-memory"; + "unix-process-conduit" = dontDistribute super."unix-process-conduit"; + "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = dontDistribute super."unlambda"; + "unlit" = dontDistribute super."unlit"; + "unm-hip" = dontDistribute super."unm-hip"; + "unordered-containers-rematch" = dontDistribute super."unordered-containers-rematch"; + "unordered-graphs" = dontDistribute super."unordered-graphs"; + "unpack-funcs" = dontDistribute super."unpack-funcs"; + "unroll-ghc-plugin" = dontDistribute super."unroll-ghc-plugin"; + "unsafe" = dontDistribute super."unsafe"; + "unsafe-promises" = dontDistribute super."unsafe-promises"; + "unsafely" = dontDistribute super."unsafely"; + "unsafeperformst" = dontDistribute super."unsafeperformst"; + "unscramble" = dontDistribute super."unscramble"; + "unsequential" = dontDistribute super."unsequential"; + "unusable-pkg" = dontDistribute super."unusable-pkg"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "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-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-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-request-spec" = dontDistribute super."wai-request-spec"; + "wai-responsible" = dontDistribute super."wai-responsible"; + "wai-router" = dontDistribute super."wai-router"; + "wai-session-alt" = dontDistribute super."wai-session-alt"; + "wai-session-clientsession" = dontDistribute super."wai-session-clientsession"; + "wai-session-tokyocabinet" = dontDistribute super."wai-session-tokyocabinet"; + "wai-static-cache" = dontDistribute super."wai-static-cache"; + "wai-static-pages" = dontDistribute super."wai-static-pages"; + "wai-test" = dontDistribute super."wai-test"; + "wai-thrift" = dontDistribute super."wai-thrift"; + "wai-throttler" = dontDistribute super."wai-throttler"; + "wait-handle" = dontDistribute super."wait-handle"; + "waitfree" = dontDistribute super."waitfree"; + "warc" = dontDistribute super."warc"; + "warp-dynamic" = dontDistribute super."warp-dynamic"; + "warp-static" = dontDistribute super."warp-static"; + "warp-tls-uid" = dontDistribute super."warp-tls-uid"; + "watchdog" = dontDistribute super."watchdog"; + "watcher" = dontDistribute super."watcher"; + "watchit" = dontDistribute super."watchit"; + "wavconvert" = dontDistribute super."wavconvert"; + "wavesurfer" = dontDistribute super."wavesurfer"; + "wavy" = dontDistribute super."wavy"; + "wcwidth" = dontDistribute super."wcwidth"; + "weather-api" = dontDistribute super."weather-api"; + "web-browser-in-haskell" = dontDistribute super."web-browser-in-haskell"; + "web-css" = dontDistribute super."web-css"; + "web-encodings" = dontDistribute super."web-encodings"; + "web-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"; + "weigh" = dontDistribute super."weigh"; + "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"; + "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"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "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-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-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"; + "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 4cfc9a7b4e67..eb10cce23d9f 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -17,7 +17,6 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/3d-graphics-examples"; description = "Examples of 3D graphics programming with OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "3dmodels" = callPackage @@ -33,7 +32,6 @@ self: { homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "4Blocks" = callPackage @@ -51,7 +49,6 @@ self: { homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AAI" = callPackage @@ -61,6 +58,7 @@ self: { version = "0.2.0.1"; sha256 = "d0f14c6e9040c1947c63bf82b5e3f68389e7ebf4d12177575285aecb3404b86d"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Abstract Application Interface"; license = stdenv.lib.licenses.mit; }) {}; @@ -113,7 +111,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Colour" = callPackage @@ -136,7 +133,6 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-HalfInteger" = callPackage @@ -148,7 +144,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-MiniTest" = callPackage @@ -160,7 +155,6 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-PPM" = callPackage @@ -194,7 +188,6 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-VanillaArray" = callPackage @@ -207,7 +200,6 @@ self: { jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AC-Vector" = callPackage @@ -246,7 +238,6 @@ self: { homepage = "http://alkalisoftware.net"; description = "Essential features"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ADPfusion" = callPackage @@ -270,10 +261,10 @@ self: { base bits OrderedBits PrimitiveArray QuickCheck strict test-framework test-framework-quickcheck2 test-framework-th vector ]; + jailbreak = true; homepage = "https://github.com/choener/ADPfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -295,7 +286,6 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Net" = callPackage @@ -313,7 +303,6 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -332,7 +321,6 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -358,7 +346,6 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -377,7 +364,6 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -396,7 +382,6 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -416,7 +401,6 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AES" = callPackage @@ -446,7 +430,6 @@ self: { homepage = "https://github.com/PseudoPower/AFSM"; description = "Arrowized functional state machines"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AGI" = callPackage @@ -461,7 +444,6 @@ self: { homepage = "http://src.seereason.com/haskell-agi"; description = "A library for writing AGI scripts for Asterisk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ALUT" = callPackage @@ -480,7 +462,6 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding for the OpenAL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freealut;}; "AMI" = callPackage @@ -497,7 +478,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/ami"; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ANum" = callPackage @@ -588,6 +568,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "http://github.com/gcross/AbortT-transformers"; description = "A monad and monadic transformer providing \"abort\" functionality"; license = stdenv.lib.licenses.bsd3; @@ -616,7 +597,6 @@ self: { homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive" = callPackage @@ -633,7 +613,6 @@ self: { jailbreak = true; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -647,7 +626,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Advgame" = callPackage @@ -662,7 +640,6 @@ self: { jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -681,7 +658,6 @@ self: { homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agata" = callPackage @@ -698,7 +674,6 @@ self: { jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Agda_2_4_2_3" = callPackage @@ -847,7 +822,13 @@ self: { ]; executableToolDepends = [ emacs ]; postInstall = '' - $out/bin/agda -c --no-main $(find $out/share -name Primitive.agda) + files=($out/share/*-ghc-*/Agda-*/lib/prim/Agda/{Primitive.agda,Builtin/*.agda}) + for f in "''${files[@]}" ; do + $out/bin/agda $f + done + for f in "''${files[@]}" ; do + $out/bin/agda -c --no-main $f + done $out/bin/agda-mode compile ''; homepage = "http://wiki.portal.chalmers.se/agda/"; @@ -869,7 +850,6 @@ self: { homepage = "http://wiki.portal.chalmers.se/agda/"; description = "Command-line program for type-checking and compiling Agda programs"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AhoCorasick" = callPackage @@ -885,7 +865,6 @@ self: { homepage = "http://github.com/lymar/AhoCorasick"; description = "Aho-Corasick string matching algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AlgorithmW" = callPackage @@ -897,6 +876,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers mtl pretty ]; + jailbreak = true; homepage = "https://github.com/mgrabmueller/AlgorithmW"; description = "Example implementation of Algorithm W for Hindley-Milner type inference"; license = stdenv.lib.licenses.bsd3; @@ -918,7 +898,6 @@ self: { homepage = "https://github.com/choener/AlignmentAlgorithms"; description = "Collection of alignment algorithms"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Allure" = callPackage @@ -942,7 +921,6 @@ self: { homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AndroidViewHierarchyImporter" = callPackage @@ -963,7 +941,6 @@ self: { jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Animas" = callPackage @@ -976,7 +953,6 @@ self: { homepage = "https://github.com/eamsden/Animas"; description = "Updated version of Yampa: a library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Annotations" = callPackage @@ -1021,7 +997,6 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AppleScript" = callPackage @@ -1035,7 +1010,6 @@ self: { homepage = "https://github.com/reinerp/haskell-AppleScript"; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ApproxFun-hs" = callPackage @@ -1061,7 +1035,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/ArrayRef"; description = "Unboxed references, dynamic arrays and more"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ArrowVHDL" = callPackage @@ -1075,7 +1048,6 @@ self: { homepage = "https://github.com/frosch03/arrowVHDL"; description = "A library to generate Netlist code from Arrow descriptions"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AspectAG" = callPackage @@ -1093,7 +1065,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG"; description = "Attribute Grammars in the form of an EDSL"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoBencode" = callPackage @@ -1133,7 +1104,6 @@ self: { homepage = "http://github.com/konn/AttoJSON"; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Attrac" = callPackage @@ -1151,7 +1121,6 @@ self: { homepage = "http://patch-tag.com/r/rhz/StrangeAttractors"; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Aurochs" = callPackage @@ -1165,7 +1134,6 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AutoForms" = callPackage @@ -1182,7 +1150,6 @@ self: { homepage = "http://autoforms.sourceforge.net/"; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1194,7 +1161,6 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BASIC" = callPackage @@ -1206,7 +1172,6 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1233,7 +1198,6 @@ self: { ]; description = "Big Contact Map Tools"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BNFC" = callPackage @@ -1273,6 +1237,7 @@ self: { alex-meta array base happy-meta haskell-src-meta syb template-haskell ]; + jailbreak = true; description = "Deriving Parsers and Quasi-Quoters from BNF Grammars"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -1290,7 +1255,6 @@ self: { homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins"; description = "Tools for self-assembly"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bang" = callPackage @@ -1308,7 +1272,6 @@ self: { homepage = "https://github.com/5outh/Bang/"; description = "A Drum Machine DSL for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Barracuda" = callPackage @@ -1338,7 +1301,6 @@ self: { homepage = "http://sep07.mroot.net/"; description = "An ad-hoc P2P chat program"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Befunge93" = callPackage @@ -1354,7 +1316,6 @@ self: { homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BenchmarkHistory" = callPackage @@ -1370,6 +1331,7 @@ self: { libraryHaskellDepends = [ base bytestring cassava deepseq directory statistics time vector ]; + jailbreak = true; homepage = "https://github.com/choener/BenchmarkHistory"; description = "Benchmark functions with history"; license = stdenv.lib.licenses.gpl3; @@ -1401,7 +1363,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML"; description = "Berkeley DB XML binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc; inherit (pkgs) xqilla;}; @@ -1426,6 +1387,7 @@ self: { libraryHaskellDepends = [ base containers mtl pretty template-haskell ]; + jailbreak = true; homepage = "http://www.prg.nii.ac.jp/project/bigul/"; description = "The Bidirectional Generic Update Language"; license = stdenv.lib.licenses.publicDomain; @@ -1443,7 +1405,6 @@ self: { homepage = "https://github.com/mchakravarty/BigPixel"; description = "Image editor for pixel art"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Binpack" = callPackage @@ -1478,7 +1439,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseBlast" = callPackage @@ -1491,7 +1451,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "BLAST-related tools"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1504,7 +1463,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Vienna / DotBracket / ExtSS parsers"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1522,7 +1480,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1543,7 +1500,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseInfernal" = callPackage @@ -1565,7 +1521,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseMAF" = callPackage @@ -1578,7 +1533,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Multiple Alignment Format"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseNewick" = callPackage @@ -1624,7 +1578,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTurner" = callPackage @@ -1643,7 +1596,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Turner RNA parameters"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1670,7 +1622,6 @@ self: { homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1687,7 +1638,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Vienna energy parameters"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1713,7 +1663,6 @@ self: { homepage = "https://github.com/choener/BiobaseXNA"; description = "Efficient RNA/DNA representations"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BirdPP" = callPackage @@ -1728,7 +1677,6 @@ self: { jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BitSyntax" = callPackage @@ -1755,7 +1703,6 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A library to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlastHTTP_1_0_1" = callPackage @@ -1816,7 +1763,6 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/"; description = "Diagram editor"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately_0_7_1_7" = callPackage @@ -2003,6 +1949,7 @@ self: { process split strict tagsoup temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -2029,6 +1976,33 @@ self: { process split strict tagsoup temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; + homepage = "http://byorgey.wordpress.com/blogliterately/"; + description = "A tool for posting Haskelly articles to blogs"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "BlogLiterately_0_8_2_3" = 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.2.3"; + sha256 = "2f730bad3df890f883039b8a6928e7352bfc3dc9128e2d0f5ed8d5e71195080e"; + 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"; @@ -2044,8 +2018,8 @@ self: { }: mkDerivation { pname = "BlogLiterately"; - version = "0.8.2.3"; - sha256 = "2f730bad3df890f883039b8a6928e7352bfc3dc9128e2d0f5ed8d5e71195080e"; + version = "0.8.3"; + sha256 = "db24d6c285eb7aea603a7aabff54c256c9a4b1a4f36ce9c1331c8eb29c47e844"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -2143,9 +2117,9 @@ self: { diagrams-rasterific directory filepath JuicyPixels pandoc safe ]; executableHaskellDepends = [ base BlogLiterately ]; + jailbreak = true; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "BluePrintCSS" = callPackage @@ -2170,7 +2144,6 @@ self: { homepage = "http://github.com/gcross/Blueprint"; description = "Preview of a new build system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Bookshelf" = callPackage @@ -2231,7 +2204,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BufferedSocket" = callPackage @@ -2269,7 +2241,6 @@ self: { homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CBOR" = callPackage @@ -2291,7 +2262,6 @@ self: { homepage = "https://github.com/orclev/CBOR"; description = "Encode/Decode values to/from CBOR"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont" = callPackage @@ -2304,7 +2274,6 @@ self: { homepage = "http://code.haskell.org/~dolio/CC-delcont"; description = "Delimited continuations and dynamically scoped variables"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-alt" = callPackage @@ -2322,7 +2291,6 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-cxe" = callPackage @@ -2334,7 +2302,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-exc" = callPackage @@ -2346,7 +2313,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref" = callPackage @@ -2358,7 +2324,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2370,7 +2335,6 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CCA" = callPackage @@ -2420,7 +2384,6 @@ self: { homepage = "http://www.zonetora.co.uk/clase/"; description = "Cursor Library for A Structured Editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CLI" = callPackage @@ -2454,7 +2417,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CMQ" = callPackage @@ -2483,7 +2445,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPBrainfuck" = callPackage @@ -2497,7 +2458,6 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPL" = callPackage @@ -2541,7 +2501,6 @@ self: { jailbreak = true; description = "Firing rules semantic of CSPM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CSPM-Frontend" = callPackage @@ -2619,7 +2578,6 @@ self: { jailbreak = true; description = "cspm command line tool for analyzing CSPM specifications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CTRex" = callPackage @@ -2666,7 +2624,6 @@ self: { homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2693,6 +2650,7 @@ self: { test-framework-quickcheck2 unix ]; jailbreak = true; + doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; @@ -2719,6 +2677,7 @@ self: { test-framework-quickcheck2 unix ]; jailbreak = true; + doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; @@ -2801,6 +2760,7 @@ self: { HUnit old-time process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; @@ -2828,6 +2788,7 @@ self: { HUnit old-time process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; @@ -2855,6 +2816,7 @@ self: { HUnit old-time process QuickCheck regex-posix test-framework test-framework-hunit test-framework-quickcheck2 unix ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; @@ -2881,6 +2843,7 @@ self: { pretty process QuickCheck regex-posix tagged tasty tasty-hunit tasty-quickcheck transformers unix ]; + doCheck = false; homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; @@ -2945,7 +2908,6 @@ self: { homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Cardinality" = callPackage @@ -2995,6 +2957,7 @@ self: { version = "0.2.1.0"; sha256 = "b9a611298eab7e2da27a300124d4522c7dae77dd1c19ad73f4b5c781dab718d6"; libraryHaskellDepends = [ base lens template-haskell ]; + jailbreak = true; description = "Coordinate systems"; license = stdenv.lib.licenses.mit; }) {}; @@ -3010,7 +2973,6 @@ self: { homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Catana" = callPackage @@ -3022,7 +2984,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChannelT" = callPackage @@ -3125,13 +3086,14 @@ self: { array base colour data-default-class lens mtl old-locale operational time vector ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart" = callPackage + "Chart_1_6" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -3143,12 +3105,14 @@ self: { array base colour data-default-class lens mtl old-locale operational time vector ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart_1_7_1" = callPackage + "Chart" = callPackage ({ mkDerivation, array, base, colour, data-default-class, lens, mtl , old-locale, operational, time, vector }: @@ -3163,7 +3127,6 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A library for generating 2D Charts and Plots"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-cairo_1_5_1" = callPackage @@ -3204,7 +3167,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo" = callPackage + "Chart-cairo_1_6" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -3216,12 +3179,14 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-cairo_1_7_1" = callPackage + "Chart-cairo" = callPackage ({ mkDerivation, array, base, cairo, Chart, colour , data-default-class, lens, mtl, old-locale, operational, time }: @@ -3233,11 +3198,9 @@ self: { array base cairo Chart colour data-default-class lens mtl old-locale operational time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Cairo backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-diagrams_1_3_2" = callPackage @@ -3332,7 +3295,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams" = callPackage + "Chart-diagrams_1_6" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, lucid-svg, mtl @@ -3348,12 +3311,14 @@ self: { diagrams-svg lens lucid-svg mtl old-locale operational SVGFonts text time ]; + jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Chart-diagrams_1_7_1" = callPackage + "Chart-diagrams" = callPackage ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour , containers, data-default-class, diagrams-core, diagrams-lib , diagrams-postscript, diagrams-svg, lens, mtl, old-locale @@ -3369,11 +3334,9 @@ self: { diagrams-svg lens mtl old-locale operational svg-builder SVGFonts text time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -3388,11 +3351,9 @@ self: { array base cairo Chart Chart-cairo colour data-default-class gtk mtl old-locale time ]; - jailbreak = true; homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Utility functions for using the chart library with GTK"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Chart-simple" = callPackage @@ -3411,7 +3372,6 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "A wrapper for the chart library to assist with basic plots (Deprecated - use the Easy module instead)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ChasingBottoms_1_3_0_8" = callPackage @@ -3514,6 +3474,7 @@ self: { testHaskellDepends = [ array base containers mtl QuickCheck random syb ]; + jailbreak = true; description = "For testing partial and infinite values"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -3575,7 +3536,6 @@ self: { homepage = "https://github.com/ckkashyap/Chitra"; description = "A platform independent mechanism to render graphics using vnc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ChristmasTree" = callPackage @@ -3593,7 +3553,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS"; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CirruParser" = callPackage @@ -3619,7 +3578,6 @@ self: { homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ClassyPrelude" = callPackage @@ -3631,7 +3589,6 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clean" = callPackage @@ -3644,7 +3601,6 @@ self: { jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Clipboard" = callPackage @@ -3676,6 +3632,24 @@ self: { license = "GPL"; }) {}; + "ClustalParser_1_1_4" = callPackage + ({ mkDerivation, base, cmdargs, either-unwrap, hspec, parsec + , vector + }: + mkDerivation { + pname = "ClustalParser"; + version = "1.1.4"; + sha256 = "d32db29dd58b9fe305b76dbdde6d0b2b328a526b63872e02177600f6832cc48f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base parsec vector ]; + executableHaskellDepends = [ base cmdargs either-unwrap ]; + testHaskellDepends = [ base hspec parsec ]; + description = "Libary for parsing Clustal tools output"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "Coadjute" = callPackage ({ mkDerivation, array, base, bytestring, bytestring-csv , containers, directory, fgl, filepath, mtl, old-time, pretty @@ -3693,7 +3667,6 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Codec-Compression-LZF" = callPackage @@ -3718,7 +3691,6 @@ self: { librarySystemDepends = [ libdevil ]; description = "An FFI interface to the DevIL library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "Combinatorrent" = callPackage @@ -3743,7 +3715,6 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Command" = callPackage @@ -3780,7 +3751,6 @@ self: { homepage = "https://github.com/sordina/Commando"; description = "Watch some files; Rerun a command"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ComonadSheet" = callPackage @@ -3820,7 +3790,6 @@ self: { homepage = "http://alkalisoftware.net"; description = "Concurrent utilities"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Concurrential" = callPackage @@ -3857,7 +3826,6 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ConfigFile" = callPackage @@ -3896,7 +3864,6 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3949,7 +3916,6 @@ self: { jailbreak = true; description = "Repackages standard type classes with the ConstraintKinds extension"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Consumer" = callPackage @@ -3962,7 +3928,6 @@ self: { homepage = "http://src.seereason.com/ghc6103/haskell-consumer"; description = "A monad and monad transformer for consuming streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ContArrow" = callPackage @@ -3999,7 +3964,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html"; description = "Practical typed lazy contracts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Engine" = callPackage @@ -4033,7 +3997,6 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass"; description = "A Library for Writing Multi-Pass Algorithms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Monad-ST2" = callPackage @@ -4052,7 +4015,6 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-ST2"; description = "A variation on the ST monad with two type parameters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CoreDump" = callPackage @@ -4062,6 +4024,7 @@ self: { version = "0.1.2.0"; sha256 = "240a9a03ba1643cd48a3eaab22825d0ab88931c9da0022d165fab30e23e4e0e4"; libraryHaskellDepends = [ base ghc pretty pretty-show ]; + jailbreak = true; description = "A GHC plugin for printing GHC's internal Core data structures"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -4073,6 +4036,7 @@ self: { version = "0.0.3"; sha256 = "cc0eb5184c11d7bda4352a80ceadbe1761d94b85cef692535d43397bb9082084"; libraryHaskellDepends = [ base parsec pretty ]; + jailbreak = true; homepage = "http://github.com/amtal/CoreErlang"; description = "Manipulating Core Erlang source code"; license = stdenv.lib.licenses.bsd3; @@ -4096,7 +4060,6 @@ self: { homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -4108,7 +4071,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CouchDB" = callPackage @@ -4130,7 +4092,6 @@ self: { homepage = "http://github.com/hsenag/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Craft3e" = callPackage @@ -4149,7 +4110,6 @@ self: { homepage = "http://www.haskellcraft.com/"; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Crypto" = callPackage @@ -4198,7 +4158,6 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAG-Tournament" = callPackage @@ -4216,7 +4175,6 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DAV_1_0_3" = callPackage @@ -4366,7 +4324,6 @@ self: { homepage = "https://github.com/alexkay/hdbus"; description = "D-Bus bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DCFL" = callPackage @@ -4413,7 +4370,6 @@ self: { jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DP" = callPackage @@ -4431,7 +4387,6 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DPM" = callPackage @@ -4456,7 +4411,6 @@ self: { jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DRBG_0_5_4" = callPackage @@ -4560,7 +4514,6 @@ self: { ]; description = "Database Supported Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DSTM" = callPackage @@ -4581,7 +4534,6 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DTC" = callPackage @@ -4594,7 +4546,6 @@ self: { homepage = "https://github.com/Daniel-Diaz/DTC"; description = "Data To Class transformation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dangerous" = callPackage @@ -4606,7 +4557,6 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dao" = callPackage @@ -4637,7 +4587,6 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DarcsHelpers" = callPackage @@ -4650,7 +4599,6 @@ self: { jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Data-Hash-Consistent" = callPackage @@ -4678,7 +4626,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DataTreeView" = callPackage @@ -4696,7 +4643,6 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Deadpan-DDP" = callPackage @@ -4767,7 +4713,6 @@ self: { homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html"; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DeepArrow" = callPackage @@ -4799,7 +4744,6 @@ self: { homepage = "http://github.com/yairchu/defend/tree"; description = "A simple RTS game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DescriptiveKeys" = callPackage @@ -4828,7 +4772,6 @@ self: { ]; description = "Processing Real-time event streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Diff_0_3_0" = callPackage @@ -4859,7 +4802,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Diff" = callPackage + "Diff_0_3_2" = callPackage ({ mkDerivation, array, base, pretty }: mkDerivation { pname = "Diff"; @@ -4870,9 +4813,10 @@ self: { libraryHaskellDepends = [ array base pretty ]; description = "O(ND) diff algorithm in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Diff_0_3_4" = callPackage + "Diff" = callPackage ({ mkDerivation, array, base, directory, pretty, process , QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -4887,7 +4831,6 @@ self: { ]; description = "O(ND) diff algorithm in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DifferenceLogic" = callPackage @@ -4903,7 +4846,6 @@ self: { homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DifferentialEvolution" = callPackage @@ -4921,7 +4863,6 @@ self: { homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Digit" = callPackage @@ -4958,7 +4899,6 @@ self: { jailbreak = true; description = "A client library for the DigitalOcean API"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DimensionalHash" = callPackage @@ -4970,7 +4910,6 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DirectSound" = callPackage @@ -5005,7 +4944,6 @@ self: { homepage = "http://distract.wellquite.org/"; description = "Distributed Bug Tracking System"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -5109,7 +5047,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DocTest" = callPackage @@ -5129,7 +5066,6 @@ self: { homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Docs" = callPackage @@ -5162,7 +5098,6 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT" = callPackage @@ -5180,7 +5115,6 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DrIFT-cabalized" = callPackage @@ -5195,7 +5129,6 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dung" = callPackage @@ -5235,7 +5168,6 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -5262,7 +5194,6 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -5287,7 +5218,6 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -5309,7 +5239,6 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -5329,7 +5258,6 @@ self: { homepage = "https://github.com/zombiecalypse/DynamicTimeWarp"; description = "Dynamic time warping of sequences"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP" = callPackage @@ -5356,7 +5284,6 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Cairo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DysFRP-Craftwerk" = callPackage @@ -5374,7 +5301,6 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Craftwerk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EEConfig" = callPackage @@ -5386,7 +5312,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Earley_0_9_0" = callPackage @@ -5402,6 +5327,7 @@ self: { libraryHaskellDepends = [ base ListLike ]; executableHaskellDepends = [ base unordered-containers ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; description = "Parsing all context-free grammars using Earley's algorithm"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -5508,7 +5434,6 @@ self: { homepage = "http://github.com/bspaans/EditTimeReport"; description = "Query language and report generator for edit logs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EitherT" = callPackage @@ -5527,7 +5452,6 @@ self: { jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Elm" = callPackage @@ -5585,15 +5509,14 @@ self: { homepage = "http://www.muitovar.com"; description = "derives heuristic rules from nominal data"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Encode" = callPackage ({ mkDerivation, base, Cabal, containers, mtl }: mkDerivation { pname = "Encode"; - version = "1.3.7"; - sha256 = "653df7d535fe886b43d951c1852331d31fd7e8a8adb0d22586e6ca7d696b3190"; + version = "1.3.8"; + sha256 = "9f7c637e75f413fd7ba4c1d6f8592e87f74220a2ffe34ccba1b65b5d58690891"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base Cabal containers mtl ]; @@ -5601,7 +5524,6 @@ self: { homepage = "http://otakar-smrz.users.sf.net/"; description = "Encoding character data"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EntrezHTTP" = callPackage @@ -5616,6 +5538,7 @@ self: { base biocore bytestring conduit HTTP http-conduit hxt mtl network Taxonomy transformers ]; + jailbreak = true; homepage = "https://github.com/eggzilla/EntrezHTTP"; description = "Libary to interface with the NCBI Entrez REST service"; license = stdenv.lib.licenses.gpl3; @@ -5643,7 +5566,6 @@ self: { jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eq" = callPackage @@ -5663,7 +5585,6 @@ self: { jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EqualitySolver" = callPackage @@ -5699,7 +5620,6 @@ self: { homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5737,7 +5657,6 @@ self: { homepage = "http://verement.github.io/etamoo"; description = "A new implementation of the LambdaMOO server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pcre;}; "Etage" = callPackage @@ -5754,7 +5673,6 @@ self: { homepage = "http://mitar.tnode.com"; description = "A general data-flow framework"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etage-Graph" = callPackage @@ -5775,7 +5693,6 @@ self: { homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Eternal10Seconds" = callPackage @@ -5790,7 +5707,6 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Etherbunny" = callPackage @@ -5813,7 +5729,6 @@ self: { homepage = "http://etherbunny.anytini.com/"; description = "A network analysis toolkit for Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libpcap;}; "EuroIT" = callPackage @@ -5845,7 +5760,6 @@ self: { homepage = "http://www.euterpea.com"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EventSocket" = callPackage @@ -5861,7 +5775,6 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Extra" = callPackage @@ -5908,7 +5821,6 @@ self: { jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FM-SBLEX" = callPackage @@ -5923,7 +5835,6 @@ self: { homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex"; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5937,7 +5848,6 @@ self: { homepage = "https://github.com/skypers/hsFModEx"; description = "The Haskell FModEx raw API"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5962,7 +5872,6 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTGL-bytestring" = callPackage @@ -5979,7 +5888,6 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -6025,7 +5933,6 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FastxPipe" = callPackage @@ -6106,7 +6013,6 @@ self: { homepage = "http://www.scannedinavian.com/"; description = "Annotate ps and pdf documents"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FerryCore" = callPackage @@ -6123,7 +6029,6 @@ self: { ]; description = "Ferry Core Components"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Feval" = callPackage @@ -6156,7 +6061,6 @@ self: { homepage = "http://haskell.org/haskellwiki/FieldTrip"; description = "Functional 3D"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManip" = callPackage @@ -6172,7 +6076,6 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManipCompat" = callPackage @@ -6188,7 +6091,6 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FilePather" = callPackage @@ -6223,7 +6125,6 @@ self: { homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -6240,7 +6141,6 @@ self: { homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml"; description = "Obtain quote data from finance.yahoo.com"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Finance-Treasury" = callPackage @@ -6258,7 +6158,6 @@ self: { homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FindBin" = callPackage @@ -6282,7 +6181,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = stdenv.lib.licenses.bsdOriginal; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -6295,7 +6193,6 @@ self: { jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FixedPoint-simple" = callPackage @@ -6326,7 +6223,6 @@ self: { homepage = "http://www.flippac.org/projects/flippi/"; description = "Wiki"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Focus" = callPackage @@ -6367,6 +6263,7 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6384,6 +6281,7 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6401,6 +6299,7 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6418,6 +6317,7 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -6435,12 +6335,13 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "FontyFruity" = callPackage + "FontyFruity_0_5_3_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , directory, filepath, text, vector }: @@ -6452,6 +6353,24 @@ self: { base binary bytestring containers deepseq directory filepath text vector ]; + jailbreak = true; + description = "A true type file format loader"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "FontyFruity" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , directory, filepath, text, vector, xml + }: + mkDerivation { + pname = "FontyFruity"; + version = "0.5.3.2"; + sha256 = "87196e6f40bd60eafa415ac503a62d8dd7c318126bbb7cd1731821312e2ac515"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq directory filepath text + vector xml + ]; description = "A true type file format loader"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -6473,7 +6392,6 @@ self: { homepage = "http://www.ict.kth.se/forsyde/"; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ForestStructures" = callPackage @@ -6492,6 +6410,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/ForestStructures"; description = "Tree- and forest structures"; license = stdenv.lib.licenses.bsd3; @@ -6531,7 +6450,6 @@ self: { homepage = "https://github.com/choener/FormalGrammars"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Foster" = callPackage @@ -6550,7 +6468,6 @@ self: { jailbreak = true; description = "Utilities to generate and solve puzzles"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FpMLv53" = callPackage @@ -6583,7 +6500,6 @@ self: { homepage = "https://github.com/TomSmeets/FractalArt"; description = "Generates colorful wallpapers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "Fractaler" = callPackage @@ -6601,6 +6517,25 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.mit; + }) {}; + + "Frames_0_1_2_1" = callPackage + ({ mkDerivation, base, ghc-prim, pipes, primitive, readable + , template-haskell, text, transformers, vector, vinyl + }: + mkDerivation { + pname = "Frames"; + version = "0.1.2.1"; + sha256 = "3e98ce3aa849d7912b955f6f0e4898fd3f59d2e2961189c02d7a4c6c0174816f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base ghc-prim pipes primitive readable template-haskell text + transformers vector vinyl + ]; + jailbreak = true; + description = "Data frames For working with tabular data files"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -6610,8 +6545,8 @@ self: { }: mkDerivation { pname = "Frames"; - version = "0.1.2.1"; - sha256 = "3e98ce3aa849d7912b955f6f0e4898fd3f59d2e2961189c02d7a4c6c0174816f"; + version = "0.1.3"; + sha256 = "8bf6f8b64e377c25becf697de4707e4dbcaaba8fd7fa62b526faf89ae7082cc1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -6634,7 +6569,6 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/"; description = "An experimental programming language with typed algebraic effects"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FreeTypeGL" = callPackage @@ -6649,7 +6583,6 @@ self: { jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FunGEn" = callPackage @@ -6668,7 +6601,6 @@ self: { homepage = "http://joyful.com/fungen"; description = "A lightweight, cross-platform, OpenGL/GLUT-based game engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Fungi" = callPackage @@ -6742,7 +6674,6 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLFW-OGL" = callPackage @@ -6756,7 +6687,6 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; description = "A binding for GLFW (OGL)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b_1_4_7_3" = callPackage @@ -6794,7 +6724,6 @@ self: { doCheck = false; description = "Bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-b-demo" = callPackage @@ -6813,7 +6742,6 @@ self: { jailbreak = true; description = "GLFW-b demo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLFW-task" = callPackage @@ -6829,7 +6757,6 @@ self: { homepage = "http://github.com/ninegua/GLFW-task"; description = "GLFW utility functions to use together with monad-task"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLHUI" = callPackage @@ -6842,7 +6769,6 @@ self: { librarySystemDepends = [ libX11 mesa ]; description = "Open OpenGL context windows in X11 with libX11"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLM" = callPackage @@ -6885,7 +6811,6 @@ self: { homepage = "https://github.com/fiendfan1/GLMatrix"; description = "Utilities for working with OpenGL matrices"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GLURaw_1_4_0_1" = callPackage @@ -6993,7 +6918,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "GLUT_2_5_1_1" = callPackage @@ -7143,7 +7067,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLUtil" = callPackage @@ -7161,7 +7084,6 @@ self: { ]; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPX" = callPackage @@ -7180,7 +7102,6 @@ self: { homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe_2_1_5" = callPackage @@ -7195,6 +7116,7 @@ self: { base Boolean containers exception-transformers gl hashtables linear transformers ]; + jailbreak = true; homepage = "http://tobbebex.blogspot.se/"; description = "Typesafe functional GPU graphics programming"; license = stdenv.lib.licenses.mit; @@ -7213,6 +7135,7 @@ self: { base Boolean containers exception-transformers gl hashtables linear transformers ]; + jailbreak = true; homepage = "http://tobbebex.blogspot.se/"; description = "Typesafe functional GPU graphics programming"; license = stdenv.lib.licenses.mit; @@ -7231,10 +7154,10 @@ self: { base Boolean containers exception-transformers gl hashtables linear transformers ]; + jailbreak = true; homepage = "http://tobbebex.blogspot.se/"; description = "Typesafe functional GPU graphics programming"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-Collada" = callPackage @@ -7250,7 +7173,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-Examples" = callPackage @@ -7268,7 +7190,6 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-GLFW_1_2_1" = callPackage @@ -7278,6 +7199,7 @@ self: { version = "1.2.1"; sha256 = "36b49d8350c205633e3dd3f2061553154f7a397c63bfa03be4c84bb8cc946a4a"; libraryHaskellDepends = [ base GLFW-b GPipe transformers ]; + jailbreak = true; homepage = "https://github.com/plredmond/GPipe-GLFW"; description = "GLFW OpenGL context creation for GPipe"; license = stdenv.lib.licenses.mit; @@ -7291,10 +7213,10 @@ self: { version = "1.2.2"; sha256 = "b2c2764511504225550b7e03badba80ba6e264eb86bee3fcc2f7d54e2e11d652"; libraryHaskellDepends = [ base GLFW-b GPipe transformers ]; + jailbreak = true; homepage = "https://github.com/plredmond/GPipe-GLFW"; description = "GLFW OpenGL context creation for GPipe"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GPipe-TextureLoad" = callPackage @@ -7307,7 +7229,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe textures from filesystem"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GTALib" = callPackage @@ -7328,7 +7249,6 @@ self: { homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gamgine" = callPackage @@ -7349,7 +7269,6 @@ self: { jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ganymede" = callPackage @@ -7369,7 +7288,6 @@ self: { homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GaussQuadIntegration" = callPackage @@ -7397,7 +7315,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GenI" = callPackage @@ -7432,7 +7349,6 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenSmsPdu" = callPackage @@ -7446,7 +7362,6 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Genbank" = callPackage @@ -7480,7 +7395,6 @@ self: { homepage = "http://afonso.xyz"; description = "A general TicTacToe game implementation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenericPretty" = callPackage @@ -7522,7 +7436,6 @@ self: { homepage = "https://github.com/choener/GenussFold"; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeoIp" = callPackage @@ -7534,7 +7447,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeocoderOpenCage" = callPackage @@ -7548,7 +7460,6 @@ self: { homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Geodetic" = callPackage @@ -7583,7 +7494,6 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GiST" = callPackage @@ -7611,10 +7521,10 @@ self: { executableHaskellDepends = [ base cmdargs directory gtk3 process temporary ]; + jailbreak = true; homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GiveYouAHead" = callPackage @@ -7657,7 +7567,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Ray Tracing Library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GlomeVec" = callPackage @@ -7689,7 +7598,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleChart" = callPackage @@ -7718,7 +7626,6 @@ self: { homepage = "https://github.com/favilo/GoogleDirections.git"; description = "Haskell Interface to Google Directions API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSB" = callPackage @@ -7734,7 +7641,6 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7762,7 +7668,6 @@ self: { ]; description = "Interface to Google Translate API"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GotoT-transformers" = callPackage @@ -7795,10 +7700,10 @@ self: { FormalGrammars lens newtype parsers PrimitiveArray semigroups template-haskell transformers trifecta ]; + jailbreak = true; homepage = "https://github.com/choener/GrammarProducts"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7817,7 +7722,6 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer" = callPackage @@ -7832,7 +7736,6 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7850,7 +7753,6 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphSCC" = callPackage @@ -7880,7 +7782,6 @@ self: { jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Grempa" = callPackage @@ -7896,7 +7797,6 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GroteTrap" = callPackage @@ -7933,7 +7833,6 @@ self: { homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GrowlNotify" = callPackage @@ -7954,7 +7853,6 @@ self: { ]; description = "Notification utility for Growl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gtk2hsGenerics" = callPackage @@ -7970,7 +7868,6 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7986,7 +7883,6 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkTV" = callPackage @@ -8001,7 +7897,6 @@ self: { homepage = "http://haskell.org/haskellwiki/GtkTV"; description = "Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GuiHaskell" = callPackage @@ -8021,7 +7916,6 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/"; description = "A graphical REPL and development environment for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiTV" = callPackage @@ -8034,7 +7928,6 @@ self: { homepage = "http://haskell.org/haskellwiki/GuiTV"; description = "GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "H" = callPackage @@ -8059,7 +7952,6 @@ self: { doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "HARM" = callPackage @@ -8075,7 +7967,6 @@ self: { homepage = "http://www.engr.uconn.edu/~jeffm/Classes/CSE240-Spring-2001/Lectures/index.html"; description = "A simple ARM emulator in haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Data" = callPackage @@ -8093,7 +7984,6 @@ self: { jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -8109,7 +7999,6 @@ self: { syb-with-class template-haskell ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -8131,7 +8020,6 @@ self: { jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -8152,7 +8040,6 @@ self: { jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -8169,7 +8056,6 @@ self: { ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppSHelpers" = callPackage @@ -8199,7 +8085,6 @@ self: { homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCard" = callPackage @@ -8214,7 +8099,6 @@ self: { homepage = "http://patch-tag.com/publicrepos/HCard"; description = "A library for implementing a Deck of Cards"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HCodecs" = callPackage @@ -8246,6 +8130,7 @@ self: { base bytestring containers convertible mtl old-time text time utf8-string ]; + jailbreak = true; homepage = "https://github.com/hdbc/hdbc"; description = "Haskell Database Connectivity"; license = stdenv.lib.licenses.bsd3; @@ -8261,7 +8146,6 @@ self: { homepage = "http://github.com/bos/hdbc-mysql"; description = "MySQL driver for HDBC"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HDBC-odbc" = callPackage @@ -8299,6 +8183,7 @@ self: { ]; librarySystemDepends = [ postgresql ]; executableSystemDepends = [ postgresql ]; + jailbreak = true; homepage = "http://github.com/hdbc/hdbc-postgresql"; description = "PostgreSQL driver for HDBC"; license = stdenv.lib.licenses.bsd3; @@ -8360,7 +8245,6 @@ self: { homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -8372,7 +8256,6 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "HFrequencyQueue" = callPackage @@ -8386,7 +8269,6 @@ self: { homepage = "https://github.com/Bellaz/HfrequencyList"; description = "A Queue with a random (weighted) pick function"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HFuse" = callPackage @@ -8405,7 +8287,6 @@ self: { homepage = "https://github.com/m15k/hfuse"; description = "HFuse is a binding for the Linux FUSE library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fuse;}; "HGL" = callPackage @@ -8435,7 +8316,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-API" = callPackage @@ -8454,7 +8334,6 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -8471,7 +8350,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -8484,7 +8362,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -8500,7 +8377,6 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -8518,7 +8394,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -8537,7 +8412,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Data" = callPackage @@ -8554,7 +8428,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -8568,7 +8441,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Enet Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -8586,7 +8458,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -8607,7 +8478,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-InputSystem" = callPackage @@ -8625,7 +8495,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Network" = callPackage @@ -8642,7 +8511,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Networking Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -8661,7 +8529,6 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8681,7 +8548,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Ogre Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8701,7 +8567,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SDL2 Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8720,7 +8585,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SFML Binding for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8738,7 +8602,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Wire" = callPackage @@ -8758,7 +8621,6 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGraphStorage" = callPackage @@ -8784,7 +8646,6 @@ self: { homepage = "https://github.com/JPMoresmau/HGraphStorage"; description = "Graph database stored on disk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HHDL" = callPackage @@ -8798,7 +8659,6 @@ self: { homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HJScript" = callPackage @@ -8834,7 +8694,6 @@ self: { homepage = "https://github.com/JPMoresmau/HJVM"; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "HJavaScript" = callPackage @@ -8867,7 +8726,6 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-approximation" = callPackage @@ -8886,7 +8744,6 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-classification" = callPackage @@ -8911,7 +8768,6 @@ self: { jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-datastructures" = callPackage @@ -8927,7 +8783,6 @@ self: { MonadRandom QuickCheck vector ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HLearn-distributions" = callPackage @@ -8952,7 +8807,6 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Distributions for use with the HLearn library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HList_0_4_1_0" = callPackage @@ -8971,6 +8825,7 @@ self: { array base cmdargs directory doctest filepath hspec lens mtl process QuickCheck syb template-haskell ]; + jailbreak = true; doCheck = false; description = "Heterogeneous lists"; license = stdenv.lib.licenses.mit; @@ -8994,6 +8849,7 @@ self: { array base cmdargs directory doctest filepath hspec lens mtl process QuickCheck syb template-haskell ]; + jailbreak = true; doCheck = false; description = "Heterogeneous lists"; license = stdenv.lib.licenses.mit; @@ -9010,6 +8866,7 @@ self: { executableHaskellDepends = [ applicative-quoters base regex-applicative ]; + jailbreak = true; homepage = "http://code.haskell.org/~aavogt/HListPP"; description = "A preprocessor for HList labelable labels"; license = stdenv.lib.licenses.bsd3; @@ -9029,7 +8886,6 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMM" = callPackage @@ -9041,7 +8897,6 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HMap" = callPackage @@ -9058,7 +8913,6 @@ self: { homepage = "https://github.com/atzeus/HMap"; description = "Fast heterogeneous maps and unconstrained typeable like functionality"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HNM" = callPackage @@ -9081,7 +8935,6 @@ self: { homepage = "http://sert.homedns.org/hs/hnm/"; description = "Happy Network Manager"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HODE" = callPackage @@ -9094,7 +8947,6 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -9111,7 +8963,6 @@ self: { executablePkgconfigDepends = [ opencv ]; description = "A binding for the OpenCV computer vision library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) opencv;}; "HPDF" = callPackage @@ -9154,7 +9005,6 @@ self: { homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HPi" = callPackage @@ -9168,7 +9018,6 @@ self: { homepage = "https://github.com/WJWH/HPi"; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -9188,7 +9037,6 @@ self: { homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {plplotd-gnome2 = null;}; "HPong" = callPackage @@ -9207,7 +9055,6 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/"; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT" = callPackage @@ -9227,7 +9074,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT RooFit modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -9240,7 +9086,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Core modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-graf" = callPackage @@ -9255,7 +9100,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Graf modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -9268,7 +9112,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Hist modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -9281,7 +9124,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT IO modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -9294,7 +9136,6 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Math modules"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HRay" = callPackage @@ -9309,7 +9150,6 @@ self: { homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; description = "Haskell raytracer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSFFIG" = callPackage @@ -9332,7 +9172,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSGEP" = callPackage @@ -9352,7 +9191,6 @@ self: { homepage = "http://github.com/mjsottile/hsgep/"; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSH" = callPackage @@ -9391,7 +9229,6 @@ self: { jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSet" = callPackage @@ -9434,7 +9271,6 @@ self: { homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSoundFile" = callPackage @@ -9451,7 +9287,6 @@ self: { homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HStringTemplate_0_7_3" = callPackage @@ -9530,7 +9365,6 @@ self: { homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers"; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSvm" = callPackage @@ -9542,7 +9376,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell Bindings for libsvm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTF_0_12_2_3" = callPackage @@ -9835,6 +9668,7 @@ self: { http-types httpd-shed HUnit mtl network network-uri pureMD5 split test-framework test-framework-hunit wai warp ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/haskell/HTTP"; description = "A library for client-side HTTP"; @@ -9860,6 +9694,7 @@ self: { http-types httpd-shed HUnit mtl network network-uri pureMD5 split test-framework test-framework-hunit wai warp ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/haskell/HTTP"; description = "A library for client-side HTTP"; @@ -9920,7 +9755,6 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HTicTacToe" = callPackage @@ -9938,7 +9772,6 @@ self: { homepage = "http://github.com/snkkid/HTicTacToe"; description = "An SDL tic-tac-toe game"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit_1_2_5_2" = callPackage @@ -9964,6 +9797,7 @@ self: { editedCabalFile = "23bdbafd3d38f0ae610df6e9768eddef4fdd902de5a6d9b51f23aab1ab22595d"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq filepath ]; + jailbreak = true; homepage = "http://hunit.sourceforge.net/"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -9992,6 +9826,7 @@ self: { sha256 = "93e5fc4290ab685b469209f04d9858338ffff486e15c23a11260c47e32da8ef8"; libraryHaskellDepends = [ base deepseq ]; testHaskellDepends = [ base deepseq filepath ]; + doCheck = false; homepage = "https://github.com/hspec/HUnit#readme"; description = "A unit testing framework for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -10008,7 +9843,6 @@ self: { homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-Plus" = callPackage @@ -10030,7 +9864,6 @@ self: { homepage = "https://github.com/emc2/HUnit-Plus"; description = "A test framework building on HUnit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-approx" = callPackage @@ -10072,7 +9905,6 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HXQ" = callPackage @@ -10104,7 +9936,6 @@ self: { homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; description = "HaLeX enables modelling, manipulation and animation of regular languages"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaMinitel" = callPackage @@ -10127,6 +9958,7 @@ self: { version = "0.1.1.1"; sha256 = "9fd74b2ce999bbf8b52cc2dbe2b17c84ee2804a09a74d7426407cf7bc4242052"; libraryHaskellDepends = [ base template-haskell th-lift ]; + jailbreak = true; homepage = "https://github.com/sakana/HaPy"; description = "Haskell bindings for Python"; license = stdenv.lib.licenses.mit; @@ -10169,6 +10001,7 @@ self: { Strafunski-StrategyLib stringbuilder syb syz time transformers transformers-base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; @@ -10258,11 +10091,11 @@ self: { Strafunski-StrategyLib stringbuilder syb syz time transformers transformers-base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HaTeX_3_15_0_0" = callPackage @@ -10281,6 +10114,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "http://wrongurl.net/haskell/HaTeX"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; @@ -10303,6 +10137,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "http://wrongurl.net/haskell/HaTeX"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; @@ -10325,6 +10160,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "http://wrongurl.net/haskell/HaTeX"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; @@ -10347,6 +10183,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; @@ -10391,7 +10228,6 @@ self: { jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaTeX-qq" = callPackage @@ -10429,7 +10265,6 @@ self: { jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaXml_1_24_1" = callPackage @@ -10529,7 +10364,6 @@ self: { homepage = "http://github.com/dmalikov/HaCh"; description = "Simple chat"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HackMail" = callPackage @@ -10551,7 +10385,6 @@ self: { homepage = "http://patch-tag.com/publicrepos/Hackmail"; description = "A Procmail Replacement as Haskell EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haggressive" = callPackage @@ -10570,7 +10403,6 @@ self: { homepage = "https://github.com/Pold87/Haggressive"; description = "Aggression analysis for Tweets on Twitter"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HandlerSocketClient" = callPackage @@ -10671,7 +10503,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HarmTrace-Base" = callPackage @@ -10692,7 +10523,6 @@ self: { homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HasGP" = callPackage @@ -10710,7 +10540,6 @@ self: { homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -10730,7 +10559,6 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo"; description = "Minimalist R5RS Scheme interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hashell" = callPackage @@ -10750,7 +10578,6 @@ self: { jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskRel" = callPackage @@ -10764,6 +10591,7 @@ self: { libraryHaskellDepends = [ base containers directory ghc-prim HList tagged ]; + jailbreak = true; description = "HaskRel, Haskell as a DBMS with support for the relational algebra"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -10789,7 +10617,6 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNN" = callPackage @@ -10801,7 +10628,6 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNet_0_4_2" = callPackage @@ -10964,7 +10790,6 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellTutorials" = callPackage @@ -10999,7 +10824,6 @@ self: { homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hate" = callPackage @@ -11025,7 +10849,6 @@ self: { homepage = "http://github.com/bananu7/Hate"; description = "A small 2D game framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hawk" = callPackage @@ -11048,7 +10871,6 @@ self: { jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hayoo" = callPackage @@ -11077,7 +10899,6 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hclip" = callPackage @@ -11111,7 +10932,6 @@ self: { ]; description = "Line oriented editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HerbiePlugin" = callPackage @@ -11127,6 +10947,7 @@ self: { template-haskell text ]; testHaskellDepends = [ base linear subhask ]; + jailbreak = true; homepage = "github.com/mikeizbicki/herbie-haskell"; description = "automatically improve your code's numeric stability"; license = stdenv.lib.licenses.bsd3; @@ -11149,7 +10970,6 @@ self: { jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hieroglyph" = callPackage @@ -11169,7 +10989,6 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HiggsSet" = callPackage @@ -11187,7 +11006,6 @@ self: { homepage = "http://github.com/lpeterse/HiggsSet"; description = "A multi-index set with advanced query capabilites"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hipmunk" = callPackage @@ -11202,7 +11020,6 @@ self: { homepage = "https://github.com/meteficha/Hipmunk"; description = "A Haskell binding for Chipmunk"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "HipmunkPlayground" = callPackage @@ -11222,7 +11039,6 @@ self: { homepage = "https://github.com/meteficha/HipmunkPlayground"; description = "A playground for testing Hipmunk"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Hish" = callPackage @@ -11244,7 +11060,6 @@ self: { jailbreak = true; homepage = "https://github.com/jaiyalas/Hish"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Histogram" = callPackage @@ -11272,7 +11087,6 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hoed" = callPackage @@ -11295,7 +11109,6 @@ self: { homepage = "https://wiki.haskell.org/Hoed"; description = "Lightweight algorithmic debugging"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -11328,7 +11141,6 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "intra- and inter-program communication"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -11351,7 +11163,6 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed MapReduce framework"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -11373,7 +11184,6 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Storage" = callPackage @@ -11394,7 +11204,6 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed storage system"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Homology" = callPackage @@ -11427,7 +11236,6 @@ self: { jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HostAndPort" = callPackage @@ -11456,7 +11264,6 @@ self: { homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hs2lib" = callPackage @@ -11485,7 +11292,6 @@ self: { homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsASA" = callPackage @@ -11509,7 +11315,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsHyperEstraier" = callPackage @@ -11528,7 +11333,6 @@ self: { homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -11542,7 +11346,6 @@ self: { homepage = "http://www.pugscode.org/"; description = "Judy bindings, and some nice APIs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -11603,7 +11406,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSVN" = callPackage @@ -11617,7 +11419,6 @@ self: { homepage = "https://github.com/phonohawk/HsSVN"; description = "Partial Subversion (SVN) binding for Haskell"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HsSyck" = callPackage @@ -11665,7 +11466,6 @@ self: { homepage = "http://github.com/rukav/Hsed"; description = "Stream Editor in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsmtlib" = callPackage @@ -11685,7 +11485,6 @@ self: { homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HueAPI" = callPackage @@ -11699,6 +11498,7 @@ self: { libraryHaskellDepends = [ aeson base containers lens lens-aeson mtl transformers wreq ]; + jailbreak = true; homepage = "https://github.com/sjoerdvisscher/HueAPI"; description = "API for controlling Philips Hue lights"; license = stdenv.lib.licenses.bsd3; @@ -11720,7 +11520,6 @@ self: { homepage = "http://github.com/tobs169/HulkImport#readme"; description = "Easily bulk import CSV data to SQL Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hungarian-Munkres" = callPackage @@ -11749,7 +11548,6 @@ self: { jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IFS" = callPackage @@ -11766,7 +11564,6 @@ self: { homepage = "http://www.alpheccar.org"; description = "Iterated Function System generation for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "INblobs" = callPackage @@ -11786,7 +11583,6 @@ self: { homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOR" = callPackage @@ -11798,7 +11594,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IORefCAS" = callPackage @@ -11816,7 +11611,6 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki"; description = "Atomic compare and swap for IORefs and STRefs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOSpec" = callPackage @@ -11914,7 +11708,6 @@ self: { homepage = "https://github.com/mmirman/ImperativeHaskell"; description = "A library for writing Imperative style haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IndentParser" = callPackage @@ -11951,7 +11744,6 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -12035,7 +11827,6 @@ self: { homepage = "https://github.com/yunxing/Irc"; description = "DSL for IRC bots"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IrrHaskell" = callPackage @@ -12086,7 +11877,6 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSON-Combinator-Examples" = callPackage @@ -12100,7 +11890,6 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JSONb" = callPackage @@ -12127,7 +11916,6 @@ self: { homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JYU-Utils" = callPackage @@ -12148,7 +11936,6 @@ self: { jailbreak = true; description = "Some utility functions for JYU projects"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JackMiniMix" = callPackage @@ -12161,7 +11948,6 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javasf" = callPackage @@ -12178,7 +11964,6 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -12192,7 +11977,6 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsContracts" = callPackage @@ -12216,7 +12000,6 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JsonGrammar" = callPackage @@ -12239,7 +12022,6 @@ self: { homepage = "https://github.com/MedeaMelana/JsonGrammar2"; description = "Combinators for bidirectional JSON parsing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels_3_1_7_1" = callPackage @@ -12418,6 +12200,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -12436,6 +12219,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -12454,6 +12238,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -12472,6 +12257,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -12492,6 +12278,7 @@ self: { base binary bytestring containers deepseq mtl primitive transformers vector zlib ]; + jailbreak = true; homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; @@ -12515,6 +12302,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "JuicyPixels_3_2_7_1" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl + , primitive, transformers, vector, zlib + }: + mkDerivation { + pname = "JuicyPixels"; + version = "3.2.7.1"; + sha256 = "cbab0963646845a4cacf313837eb4e8403d10c427d2ce2144c04d33bd87b64f4"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq mtl primitive + transformers vector zlib + ]; + homepage = "https://github.com/Twinside/Juicy.Pixels"; + description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "JuicyPixels-canvas" = callPackage ({ mkDerivation, base, containers, JuicyPixels }: mkDerivation { @@ -12528,6 +12333,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "JuicyPixels-extra" = callPackage + ({ mkDerivation, base, hspec, JuicyPixels }: + mkDerivation { + pname = "JuicyPixels-extra"; + version = "0.1.0"; + sha256 = "67f7b072929a5cf6bfb95d1b5c0d8f8ea7788cf0801a4d6d2fc2df4271947f84"; + libraryHaskellDepends = [ base JuicyPixels ]; + testHaskellDepends = [ base hspec JuicyPixels ]; + homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; + description = "Efficiently scale, crop, flip images with JuicyPixels"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "JuicyPixels-repa_0_7" = callPackage ({ mkDerivation, base, bytestring, JuicyPixels, repa, vector }: mkDerivation { @@ -12634,7 +12452,6 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -12733,7 +12550,6 @@ self: { homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS" = callPackage @@ -12759,7 +12575,6 @@ self: { homepage = "http://www.curry-language.org"; description = "A compiler from Curry to Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {kics = null;}; "KiCS-debugger" = callPackage @@ -12782,7 +12597,6 @@ self: { homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS-prophecy" = callPackage @@ -12799,7 +12613,6 @@ self: { homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kleislify" = callPackage @@ -12824,7 +12637,6 @@ self: { homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kriens" = callPackage @@ -12834,6 +12646,7 @@ self: { version = "0.1.0.1"; sha256 = "5c8fa68abb1db66c234dcb378cf0de08b21e3e6a2daaf888feda5a0c0c22d9ac"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/matteoprovenzano/kriens-hs.git"; description = "Category for Continuation Passing Style"; license = stdenv.lib.licenses.bsd3; @@ -12852,7 +12665,6 @@ self: { homepage = "https://code.google.com/p/kyotocabinet-hs/"; description = "Kyoto Cabinet DB bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -12872,7 +12684,6 @@ self: { homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LATS" = callPackage @@ -12946,7 +12757,22 @@ self: { ]; description = "A basic lambda calculator with beta reduction and a REPL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "LambdaDB" = callPackage + ({ mkDerivation, base, containers, QuickCheck, transformers }: + mkDerivation { + pname = "LambdaDB"; + version = "0.0.0.6"; + sha256 = "03a00a4282e5770270443f5038f6e64975940ee7d74d981bba1e50b4de92bf81"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers transformers ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base QuickCheck ]; + homepage = "https://github.com/ailrun/LambdaDB/blob/master/README.md"; + description = "On-memory Database using Lambda Function environment"; + license = stdenv.lib.licenses.bsd3; }) {}; "LambdaHack" = callPackage @@ -12989,7 +12815,6 @@ self: { homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "LambdaINet" = callPackage @@ -13009,7 +12834,6 @@ self: { homepage = "not available"; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaNet" = callPackage @@ -13026,7 +12850,6 @@ self: { jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaPrettyQuote" = callPackage @@ -13052,7 +12875,6 @@ self: { homepage = "http://github.com/jfischoff/LambdaPrettyQuote"; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -13071,7 +12893,6 @@ self: { homepage = "http://rwd.rdockins.name/lambda/home/"; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lambdajudge" = callPackage @@ -13131,7 +12952,6 @@ self: { homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lattices" = callPackage @@ -13164,7 +12984,6 @@ self: { ]; description = "Lazy PBKDF2 generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "LazyVault" = callPackage @@ -13195,7 +13014,6 @@ self: { homepage = "http://quasimal.com/projects/level_0.html"; description = "A Snake II clone written using SDL"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "LibClang" = callPackage @@ -13217,7 +13035,6 @@ self: { homepage = "https://github.com/chetant/LibClang/issues"; description = "Haskell bindings for libclang (a C++ parsing library)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "LibZip_0_10_2" = callPackage @@ -13256,7 +13073,6 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Bindings to libzip, a library for manipulating zip archives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Limit" = callPackage @@ -13268,7 +13084,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinearSplit" = callPackage @@ -13283,7 +13098,6 @@ self: { homepage = "http://github.com/rukav/LinearSplit"; description = "Partition the sequence of items to the subsequences in the order given"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -13309,7 +13123,6 @@ self: { homepage = "https://github.com/choener/LinguisticsTypes"; description = "Collection of types for natural language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinkChecker" = callPackage @@ -13328,7 +13141,6 @@ self: { homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/"; description = "Check a bunch of local html files for broken links"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "List" = callPackage @@ -13474,7 +13286,6 @@ self: { jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -13501,7 +13312,6 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -13528,9 +13338,9 @@ self: { base hslogger hslogger-template HUnit LogicGrowsOnTrees network random stm test-framework test-framework-hunit transformers ]; + jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -13560,7 +13370,6 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -13583,7 +13392,6 @@ self: { homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lucu" = callPackage @@ -13606,7 +13414,6 @@ self: { homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MASMGen" = callPackage @@ -13617,6 +13424,7 @@ self: { sha256 = "ec88b0727eb25a3f9a7d5d71dbc3fe9e935cd11a1be698422d7b952a129bbab9"; libraryHaskellDepends = [ base containers mtl ]; testHaskellDepends = [ base containers mtl ]; + jailbreak = true; description = "Generate MASM code from haskell"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -13638,7 +13446,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MFlow_0_4_5_9" = callPackage @@ -13703,7 +13510,6 @@ self: { homepage = "https://github.com/DanBurton/MHask#readme"; description = "The category of monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MSQueue" = callPackage @@ -13728,6 +13534,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers mtl parsec ]; + jailbreak = true; description = "Builds decks out of a meta"; license = stdenv.lib.licenses.mit; }) {}; @@ -13759,7 +13566,6 @@ self: { homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MailchimpSimple" = callPackage @@ -13776,6 +13582,7 @@ self: { directory filepath http-conduit http-types lens safe text time transformers vector ]; + jailbreak = true; homepage = "https://github.com/Dananji/MailchimpSimple"; description = "Haskell library to interact with Mailchimp JSON API Version 3.0"; license = stdenv.lib.licenses.bsd3; @@ -13793,7 +13600,6 @@ self: { jailbreak = true; description = "MaybeT monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-monads-tf" = callPackage @@ -13806,7 +13612,6 @@ self: { jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-transformers" = callPackage @@ -13819,7 +13624,6 @@ self: { jailbreak = true; description = "MaybeT monad transformer using transformers instead of mtl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MazesOfMonad" = callPackage @@ -13838,7 +13642,6 @@ self: { ]; description = "Console-based Role Playing Game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MeanShift" = callPackage @@ -13863,7 +13666,6 @@ self: { jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MemoTrie_0_6_2" = callPackage @@ -13906,6 +13708,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base ]; + doHaddock = false; homepage = "https://github.com/conal/MemoTrie"; description = "Trie-based memo functions"; license = stdenv.lib.licenses.bsd3; @@ -13949,7 +13752,6 @@ self: { homepage = "http://github.com/benhamner/Metrics/"; description = "Evaluation metrics commonly used in supervised machine learning"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Mhailist" = callPackage @@ -13969,7 +13771,6 @@ self: { jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Michelangelo" = callPackage @@ -13984,9 +13785,9 @@ self: { base bytestring containers GLUtil lens linear OpenGL OpenGLRaw WaveFront ]; + jailbreak = true; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MicrosoftTranslator" = callPackage @@ -14024,7 +13825,6 @@ self: { homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MissingH_1_3_0_1" = callPackage @@ -14048,6 +13848,33 @@ self: { hslogger HUnit mtl network old-locale old-time parsec process QuickCheck random regex-compat testpack time unix ]; + jailbreak = true; + doCheck = false; + homepage = "http://software.complete.org/missingh"; + description = "Large utility library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "MissingH_1_3_0_2" = callPackage + ({ mkDerivation, array, base, containers, directory + , errorcall-eq-instance, filepath, hslogger, HUnit, mtl, network + , old-locale, old-time, parsec, process, QuickCheck, random + , regex-compat, testpack, time, unix + }: + mkDerivation { + pname = "MissingH"; + version = "1.3.0.2"; + sha256 = "64b870214f406d83e48fa13f58f9e4ebf8b69ae898c99788d2d0f3ebfed55ab2"; + libraryHaskellDepends = [ + array base containers directory filepath hslogger HUnit mtl network + old-locale old-time parsec process random regex-compat time unix + ]; + testHaskellDepends = [ + array base containers directory errorcall-eq-instance filepath + hslogger HUnit mtl network old-locale old-time parsec process + QuickCheck random regex-compat testpack time unix + ]; doCheck = false; homepage = "http://software.complete.org/missingh"; description = "Large utility library"; @@ -14063,8 +13890,8 @@ self: { }: mkDerivation { pname = "MissingH"; - version = "1.3.0.2"; - sha256 = "64b870214f406d83e48fa13f58f9e4ebf8b69ae898c99788d2d0f3ebfed55ab2"; + version = "1.4.0.0"; + sha256 = "e7bfd371a3504cf6be9fb3e549514119f30d012be5ebb10ace84e00de27688dc"; libraryHaskellDepends = [ array base containers directory filepath hslogger HUnit mtl network old-locale old-time parsec process random regex-compat time unix @@ -14119,7 +13946,6 @@ self: { homepage = "http://github.com/softmechanics/missingpy"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Modulo" = callPackage @@ -14145,7 +13971,6 @@ self: { executableHaskellDepends = [ base GLUT random ]; description = "A FRP library based on signal functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "MoeDict" = callPackage @@ -14162,7 +13987,6 @@ self: { homepage = "https://github.com/audreyt/MoeDict.hs"; description = "Utilities working with MoeDict.tw JSON dataset"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-mtl" = callPackage @@ -14192,7 +14016,6 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCatchIO-transformers_0_3_1_2" = callPackage @@ -14225,6 +14048,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions monads-tf transformers ]; + jailbreak = true; description = "Monad-transformer compatible version of the Control.Exception module"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -14243,7 +14067,6 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadCompose" = callPackage @@ -14259,6 +14082,7 @@ self: { base data-default ghc-prim kan-extensions mmorph monad-products mtl parallel random transformers transformers-compat ]; + jailbreak = true; homepage = "http://alkalisoftware.net"; description = "Methods for composing monads"; license = stdenv.lib.licenses.bsd3; @@ -14278,7 +14102,6 @@ self: { homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; description = "Automatically generate layered monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadPrompt" = callPackage @@ -14301,6 +14124,7 @@ self: { revision = "2"; editedCabalFile = "51fe20cc3b144ba6d33bb082f1eb387ee41de06d9f694d4fc368ff1785637db1"; libraryHaskellDepends = [ base mtl random transformers ]; + jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -14319,6 +14143,7 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; + jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -14337,6 +14162,7 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; + jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -14353,6 +14179,7 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; + jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -14369,6 +14196,7 @@ self: { libraryHaskellDepends = [ base mtl random transformers transformers-compat ]; + jailbreak = true; description = "Random-number generation monad"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; @@ -14423,6 +14251,7 @@ self: { version = "0.1.0.3"; sha256 = "9fbd6311057ae23e48894ea61b87b8af2a263c1ffc91f2abc563d7de4e60563b"; libraryHaskellDepends = [ base mtl ]; + jailbreak = true; homepage = "https://github.com/bhurt/MonadStack"; description = "Generalizing lift to monad stacks"; license = stdenv.lib.licenses.bsd2; @@ -14440,7 +14269,6 @@ self: { homepage = "http://www.geocities.jp/takascience/haskell/monadius_en.html"; description = "2-D arcade scroller"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monaris" = callPackage @@ -14459,7 +14287,6 @@ self: { homepage = "https://github.com/fumieval/Monaris/"; description = "A simple tetris clone"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron" = callPackage @@ -14471,7 +14298,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monatron-IO" = callPackage @@ -14485,7 +14311,6 @@ self: { homepage = "https://github.com/kreuzschlitzschraubenzieher/Monatron-IO"; description = "MonadIO instances for the Monatron transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Monocle" = callPackage @@ -14497,7 +14322,6 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -14717,7 +14541,6 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NTRU" = callPackage @@ -14735,7 +14558,6 @@ self: { jailbreak = true; description = "NTRU Cryptography"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "NXT" = callPackage @@ -14761,7 +14583,6 @@ self: { homepage = "http://mitar.tnode.com"; description = "A Haskell interface to Lego Mindstorms NXT"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -14781,7 +14602,6 @@ self: { homepage = "https://github.com/agrafix/legoDSL"; description = "Generate NXC Code from DSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NanoProlog" = callPackage @@ -14825,7 +14645,6 @@ self: { homepage = "https://github.com/choener/NaturalLanguageAlphabets"; description = "Simple scoring schemes for word alignments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -14913,15 +14732,14 @@ self: { ({ mkDerivation, base, bytestring, HUnit, net_snmp, process }: mkDerivation { pname = "NetSNMP"; - version = "0.3.2.1"; - sha256 = "b6a3643f67ce621f399aa0e68bcc63f8693efcd902996dd405fdb4bedff35f30"; + version = "0.3.2.2"; + sha256 = "7f29640168103c6a6194b37737a62057e7bb8cff3e8503e9dd1e46bb60552c9b"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ net_snmp ]; testHaskellDepends = [ base bytestring HUnit process ]; homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) net_snmp;}; "Network-NineP" = callPackage @@ -14940,6 +14758,7 @@ self: { monad-loops monad-peel mstate mtl network NineP regex-posix stateref transformers ]; + jailbreak = true; description = "High-level abstraction over 9P protocol"; license = "unknown"; }) {}; @@ -14987,7 +14806,6 @@ self: { homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoSlow" = callPackage @@ -15009,10 +14827,9 @@ self: { homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "NoTrace" = callPackage + "NoTrace_0_3_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "NoTrace"; @@ -15020,12 +14837,14 @@ self: { sha256 = "6ffdd65376971c4fa4faea10dacaeaf1b6ada23870c8dc9cb278dc3250e40e81"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/CindyLinz/Haskell-NoTrace"; description = "Remove all the functions come from Debug.Trace after debugging"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "NoTrace_0_3_0_1" = callPackage + "NoTrace" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "NoTrace"; @@ -15036,7 +14855,6 @@ self: { homepage = "https://github.com/CindyLinz/Haskell-NoTrace"; description = "Remove all the functions come from Debug.Trace after debugging"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Noise" = callPackage @@ -15069,7 +14887,6 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Core" = callPackage @@ -15097,7 +14914,6 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -15118,7 +14934,6 @@ self: { homepage = "http://www.nomyx.net"; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -15135,7 +14950,6 @@ self: { ]; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -15161,7 +14975,6 @@ self: { homepage = "http://www.nomyx.net"; description = "Web gui for Nomyx"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -15190,7 +15003,6 @@ self: { homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -15226,7 +15038,6 @@ self: { homepage = "http://patch-tag.com/r/lpsmith/NumberSieves"; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumberTheory" = callPackage @@ -15270,7 +15081,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nutri" = callPackage @@ -15296,7 +15106,6 @@ self: { homepage = "http://haskell.org/haskellwiki/OGL"; description = "A context aware binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OSM" = callPackage @@ -15313,7 +15122,6 @@ self: { homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OTP" = callPackage @@ -15339,7 +15147,6 @@ self: { homepage = "https://github.com/yokto/object"; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ObjectIO" = callPackage @@ -15355,7 +15162,6 @@ self: { winspool ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -15367,6 +15173,7 @@ self: { version = "1.1.0.0"; sha256 = "afa91a31b325d2d70b27c367cf0447410f31f8e80bb851b5cbe6a9e9d372054e"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "https://github.com/svenpanne/ObjectName"; description = "Explicitly handled object names"; license = stdenv.lib.licenses.bsd3; @@ -15441,7 +15248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Octree" = callPackage + "Octree_0_5_4_2" = callPackage ({ mkDerivation, AC-Vector, base, markdown-unlit, QuickCheck }: mkDerivation { pname = "Octree"; @@ -15449,13 +15256,15 @@ self: { sha256 = "0207ac1cff400bf548f76dc4bf0eec7bb31ce61d660d28c6b5fbbdb2a9970760"; libraryHaskellDepends = [ AC-Vector base QuickCheck ]; testHaskellDepends = [ AC-Vector base markdown-unlit QuickCheck ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/mgajda/octree"; description = "Simple unbalanced Octree for storing data about 3D points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Octree_0_5_4_3" = callPackage + "Octree" = callPackage ({ mkDerivation, AC-Vector, base, markdown-unlit, QuickCheck }: mkDerivation { pname = "Octree"; @@ -15466,7 +15275,6 @@ self: { homepage = "https://github.com/mgajda/octree"; description = "Simple unbalanced Octree for storing data about 3D points"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OddWord" = callPackage @@ -15480,7 +15288,6 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Omega" = callPackage @@ -15493,7 +15300,6 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OneTuple" = callPackage @@ -15522,7 +15328,6 @@ self: { homepage = "https://github.com/audreyt/openafp/"; description = "IBM AFP document format parser and generator"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAFP-Utils" = callPackage @@ -15543,7 +15348,6 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenAL" = callPackage @@ -15564,7 +15368,6 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding to the OpenAL cross-platform 3D audio API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) openal;}; "OpenCL" = callPackage @@ -15581,7 +15384,6 @@ self: { homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -15595,7 +15397,6 @@ self: { homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenCLWrappers" = callPackage @@ -15737,7 +15538,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "OpenGLCheck" = callPackage @@ -15751,7 +15551,6 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenGLRaw_1_5_0_0" = callPackage @@ -15790,6 +15589,7 @@ self: { sha256 = "546eb00e2b25347e4ab8f3fe9124263020d20c5fca6e91492838c0bae5783376"; libraryHaskellDepends = [ base transformers ]; librarySystemDepends = [ mesa ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; @@ -15847,7 +15647,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Opengl"; description = "A raw binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "OpenGLRaw21" = callPackage @@ -15860,7 +15659,6 @@ self: { jailbreak = true; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenSCAD" = callPackage @@ -15881,7 +15679,6 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/"; description = "ADT wrapper and renderer for OpenSCAD models"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVG" = callPackage @@ -15894,7 +15691,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "OpenVG (ShivaVG-0.2.1) binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenVGRaw" = callPackage @@ -15908,7 +15704,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Operads" = callPackage @@ -15922,7 +15717,6 @@ self: { homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OptDir" = callPackage @@ -15968,10 +15762,10 @@ self: { aeson base bytestring HTTP http-conduit http-types lifted-base random ]; + jailbreak = true; homepage = "https://github.com/dwd31415/Haskell-OrchestrateDB"; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OrderedBits" = callPackage @@ -15990,6 +15784,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th vector ]; + jailbreak = true; homepage = "https://github.com/choener/OrderedBits"; description = "Efficient ordered (by popcount) enumeration of bits"; license = stdenv.lib.licenses.bsd3; @@ -16028,6 +15823,7 @@ self: { revision = "1"; editedCabalFile = "6e8829aa00d16484705a23417f548b237aa1bd152c864a7cfa6948996584db3e"; libraryHaskellDepends = [ base binary bytestring Crypto random ]; + jailbreak = true; description = "Make password-based security schemes more secure"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -16044,7 +15840,6 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT"; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PCLT-DB" = callPackage @@ -16062,7 +15857,6 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT-DB"; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PDBtools" = callPackage @@ -16122,9 +15916,9 @@ self: { persistent persistent-sqlite persistent-template pwstore-fast random smtp-mail text time transformers ]; + jailbreak = true; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PageIO" = callPackage @@ -16151,7 +15945,6 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paillier" = callPackage @@ -16171,7 +15964,6 @@ self: { jailbreak = true; description = "a simple Paillier cryptosystem"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PandocAgda" = callPackage @@ -16192,7 +15984,6 @@ self: { jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paraiso" = callPackage @@ -16218,7 +16009,6 @@ self: { homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Parry" = callPackage @@ -16237,7 +16027,6 @@ self: { homepage = "http://parry.lif.univ-mrs.fr"; description = "A proven synchronization server for high performance computing"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ParsecTools" = callPackage @@ -16312,7 +16101,6 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -16352,7 +16140,6 @@ self: { librarySystemDepends = [ cmph ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -16366,7 +16153,6 @@ self: { homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Phsu" = callPackage @@ -16393,7 +16179,6 @@ self: { homepage = "localhost:9119"; description = "Personal Happstack Server Utils"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pipe" = callPackage @@ -16406,7 +16191,6 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/pipe/"; description = "Process piping library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Piso" = callPackage @@ -16474,7 +16258,6 @@ self: { executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "PlslTools" = callPackage @@ -16494,7 +16277,6 @@ self: { homepage = "LLayland.wordpress.com"; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Plural" = callPackage @@ -16519,7 +16301,6 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PortFusion" = callPackage @@ -16547,7 +16328,6 @@ self: { homepage = "http://haskell.org/haskellwiki/PortMidi"; description = "A binding for PortMedia/PortMidi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "PostgreSQL" = callPackage @@ -16559,7 +16339,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PrimitiveArray" = callPackage @@ -16585,7 +16364,6 @@ self: { homepage = "https://github.com/choener/PrimitiveArray"; description = "Efficient multidimensional arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PrimitiveArray-Pretty" = callPackage @@ -16605,6 +16383,7 @@ self: { base QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/choener/PrimitiveArray-Pretty"; description = "Pretty-printing for primitive arrays"; license = stdenv.lib.licenses.bsd3; @@ -16618,7 +16397,6 @@ self: { sha256 = "7ddb98d79c320b71c5ffd9f2a0eda2f1898f31ff53ee5f84dfc95c108ada2f58"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -16630,7 +16408,6 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProbabilityMonads" = callPackage @@ -16642,7 +16419,6 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PropLogic" = callPackage @@ -16673,7 +16449,6 @@ self: { homepage = "https://github.com/dillonhuff/Proper"; description = "An implementation of propositional logic in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ProxN" = callPackage @@ -16710,7 +16485,6 @@ self: { homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events" = callPackage @@ -16763,7 +16537,6 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pup-Events-PQueue" = callPackage @@ -16802,7 +16575,6 @@ self: { homepage = "http://www.cs.nott.ac.uk/~asg/QIO/"; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QLearn" = callPackage @@ -16812,6 +16584,7 @@ self: { version = "0.1.0.0"; sha256 = "87d899997011c59e0f1f1a7efa434aa026e5c67f13681cdbe68ac8d300db736d"; libraryHaskellDepends = [ base random vector ]; + jailbreak = true; homepage = "poincare.github.io/QLearn"; description = "A library for fast, easy-to-use Q-learning"; license = stdenv.lib.licenses.mit; @@ -16826,7 +16599,6 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuadTree" = callPackage @@ -16876,7 +16648,6 @@ self: { homepage = "http://gowthamk.github.io/Quelea"; description = "Programming with Eventual Consistency over Cassandra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickAnnotate" = callPackage @@ -16893,7 +16664,6 @@ self: { homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck_1_2_0_1" = callPackage @@ -16985,7 +16755,6 @@ self: { homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "QuickCheck-safe" = callPackage @@ -17020,7 +16789,6 @@ self: { homepage = "http://github.com/tepf/QuickPlot#readme"; description = "Quick and easy data visualization with Haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Quickson" = callPackage @@ -17036,7 +16804,6 @@ self: { homepage = "https://github.com/ssadler/quickson"; description = "Quick JSON extractions with Aeson"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "R-pandoc" = callPackage @@ -17056,7 +16823,6 @@ self: { jailbreak = true; description = "A pandoc filter to express R plots inside markdown"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RANSAC" = callPackage @@ -17102,7 +16868,6 @@ self: { jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -17137,7 +16902,6 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RMP" = callPackage @@ -17158,7 +16922,6 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -17182,7 +16945,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "RNA secondary structure prediction"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -17203,7 +16965,6 @@ self: { jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -17229,7 +16990,6 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdraw" = callPackage @@ -17250,7 +17010,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Draw RNA secondary structures"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAlien_1_0_0" = callPackage @@ -17308,6 +17067,7 @@ self: { directory either-unwrap filepath process random split time vector ViennaRNAParser ]; + jailbreak = true; description = "Unsupervized construction of RNA family models"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -17332,7 +17092,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSA_2_1_0_1" = callPackage @@ -17414,7 +17173,6 @@ self: { homepage = "http://raincat.bysusanlin.com/"; description = "A puzzle game written in Haskell with a cat in lead role"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Random123" = callPackage @@ -17444,7 +17202,6 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Randometer" = callPackage @@ -17499,7 +17256,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/ranka"; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasenschach" = callPackage @@ -17520,7 +17276,6 @@ self: { homepage = "http://hub.darcs.net/martingw/Rasenschach"; description = "Soccer simulation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasterific_0_4" = callPackage @@ -17607,6 +17362,7 @@ self: { base dlist FontyFruity free JuicyPixels mtl primitive vector vector-algorithms ]; + jailbreak = true; doCheck = false; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; @@ -17625,6 +17381,7 @@ self: { base dlist FontyFruity free JuicyPixels mtl primitive vector vector-algorithms ]; + jailbreak = true; doCheck = false; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; @@ -17643,6 +17400,7 @@ self: { base bytestring containers dlist FontyFruity free JuicyPixels mtl primitive vector vector-algorithms ]; + jailbreak = true; doCheck = false; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; @@ -17689,7 +17447,6 @@ self: { homepage = "https://github.com/lookunder/RedmineHs"; description = "Library to access Redmine's REST services"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ref" = callPackage @@ -17703,7 +17460,6 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -17757,7 +17513,6 @@ self: { homepage = "https://github.com/pablocouto/Referees"; description = "A utility for computing distributions of material to review among reviewers"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RepLib" = callPackage @@ -17771,6 +17526,7 @@ self: { libraryHaskellDepends = [ base containers mtl template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/sweirich/replib"; description = "Generic programming library with representation types"; license = stdenv.lib.licenses.bsd3; @@ -17804,7 +17560,6 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RichConditional" = callPackage @@ -17866,7 +17621,6 @@ self: { ]; description = "Limits the size of a directory's contents"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RoyalMonad" = callPackage @@ -17891,7 +17645,6 @@ self: { homepage = "https://github.com/jspahrsummers/RxHaskell"; description = "Reactive Extensions for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SBench" = callPackage @@ -17909,7 +17662,6 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SConfig" = callPackage @@ -17948,7 +17700,6 @@ self: { librarySystemDepends = [ SDL_gfx ]; description = "Binding to libSDL_gfx"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_gfx;}; "SDL-image" = callPackage @@ -17963,7 +17714,6 @@ self: { librarySystemDepends = [ SDL_image ]; description = "Binding to libSDL_image"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_image;}; "SDL-mixer" = callPackage @@ -17978,7 +17728,6 @@ self: { librarySystemDepends = [ SDL_mixer ]; description = "Binding to libSDL_mixer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_mixer;}; "SDL-mpeg" = callPackage @@ -17991,7 +17740,6 @@ self: { librarySystemDepends = [ smpeg ]; description = "Binding to the SMPEG library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) smpeg;}; "SDL-ttf" = callPackage @@ -18004,7 +17752,6 @@ self: { librarySystemDepends = [ SDL_ttf ]; description = "Binding to libSDL_ttf"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL_ttf;}; "SDL2-ttf" = callPackage @@ -18038,7 +17785,6 @@ self: { homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -18054,7 +17800,6 @@ self: { homepage = "https://github.com/SFML-haskell/SFML-control"; description = "Higher level library on top of SFML"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SFont" = callPackage @@ -18067,7 +17812,6 @@ self: { homepage = "http://liamoc.net/static/SFont"; description = "SFont SDL Bitmap Fonts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SG" = callPackage @@ -18079,7 +17823,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SGdemo" = callPackage @@ -18094,7 +17837,6 @@ self: { jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SHA_1_6_4_1" = callPackage @@ -18176,7 +17918,6 @@ self: { homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SQLDeps" = callPackage @@ -18234,7 +17975,6 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGFonts_1_4_0_3" = callPackage @@ -18361,7 +18101,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -18423,7 +18162,6 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Scurry" = callPackage @@ -18443,7 +18181,6 @@ self: { homepage = "http://code.google.com/p/scurry/"; description = "A cross platform P2P VPN application built using Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SegmentTree" = callPackage @@ -18476,7 +18213,6 @@ self: { jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Semigroup" = callPackage @@ -18500,7 +18236,6 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SessionLogger" = callPackage @@ -18517,7 +18252,6 @@ self: { jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShellCheck" = callPackage @@ -18555,7 +18289,6 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-compatline" = callPackage @@ -18568,7 +18301,6 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -18581,7 +18313,6 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -18594,7 +18325,6 @@ self: { jailbreak = true; description = "Haskeline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -18607,7 +18337,6 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShowF" = callPackage @@ -18645,7 +18374,6 @@ self: { homepage = "http://www.geocities.jp/takascience/index_en.html"; description = "A vector shooter game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleAES" = callPackage @@ -18686,7 +18414,6 @@ self: { jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -18704,7 +18431,6 @@ self: { jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleLog" = callPackage @@ -18725,7 +18451,6 @@ self: { homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -18744,6 +18469,7 @@ self: { executableHaskellDepends = [ base cmdargs dyre transformers wai-routes warp ]; + jailbreak = true; description = "A simple static file server, for when apache is overkill"; license = stdenv.lib.licenses.mit; }) {}; @@ -18771,6 +18497,7 @@ self: { base colour diagrams-lib diagrams-svg file-embed regex-applicative ]; testHaskellDepends = [ base file-embed ]; + jailbreak = true; description = "Generate slides from Haskell code"; license = stdenv.lib.licenses.mit; }) {}; @@ -18789,7 +18516,6 @@ self: { jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SmtLib" = callPackage @@ -18827,7 +18553,6 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -18846,7 +18571,6 @@ self: { homepage = "http://www.soos-project.eu/"; description = "Abstract full system simulator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFun" = callPackage @@ -18867,7 +18591,6 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SoccerFunGL" = callPackage @@ -18888,7 +18611,6 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sonnex" = callPackage @@ -18922,7 +18644,6 @@ self: { jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Southpaw" = callPackage @@ -18955,7 +18676,6 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Video game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "SpacePrivateers" = callPackage @@ -18978,7 +18698,6 @@ self: { homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SpinCounter" = callPackage @@ -19260,7 +18979,6 @@ self: { homepage = "http://www.spock.li"; description = "Another Haskell web framework for rapid development"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-auth" = callPackage @@ -19274,7 +18992,6 @@ self: { homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock-digestive_0_1_0_0" = callPackage @@ -19328,7 +19045,6 @@ self: { homepage = "https://github.com/agrafix/Spock-digestive"; description = "Digestive functors support for Spock"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-lucid" = callPackage @@ -19343,7 +19059,6 @@ self: { homepage = "http://github.com/aelve/Spock-lucid"; description = "Lucid support for Spock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-worker_0_2_1_3" = callPackage @@ -19381,7 +19096,6 @@ self: { homepage = "http://github.com/agrafix/Spock-worker"; description = "Background workers for Spock"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "SpreadsheetML" = callPackage @@ -19405,7 +19119,6 @@ self: { homepage = "http://liamoc.net/static/Sprig"; description = "Binding to Sprig"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Stasis" = callPackage @@ -19431,6 +19144,7 @@ self: { version = "1.1.0.0"; sha256 = "a19963f014d45163035a3c54e5266b31dfe53a640e53d869ee946efcf9793d7e"; libraryHaskellDepends = [ base stm transformers ]; + jailbreak = true; homepage = "https://github.com/haskell-opengl/StateVar"; description = "State variables"; license = stdenv.lib.licenses.bsd3; @@ -19444,6 +19158,7 @@ self: { version = "1.1.0.1"; sha256 = "0eae79ccc58509f2302cb90f2306d6bb2f1805a2847058fa643d18cc370be5aa"; libraryHaskellDepends = [ base stm transformers ]; + jailbreak = true; homepage = "https://github.com/haskell-opengl/StateVar"; description = "State variables"; license = stdenv.lib.licenses.bsd3; @@ -19526,7 +19241,6 @@ self: { homepage = "http://github.com/rukav/Stomp"; description = "Client library for Stomp brokers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-ATermLib" = callPackage @@ -19558,7 +19272,6 @@ self: { jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Strafunski-StrategyLib" = callPackage @@ -19568,6 +19281,7 @@ self: { version = "5.0.0.8"; sha256 = "4c552011c167dc361bb9665c3bc889a9937702af863dc5fdb946fe9633a36926"; libraryHaskellDepends = [ base directory mtl syb transformers ]; + jailbreak = true; description = "Library for strategic programming"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19623,7 +19337,6 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; description = "Benchmarking code through strict evaluation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SuffixStructures" = callPackage @@ -19648,7 +19361,6 @@ self: { homepage = "http://www.bioinf.uni-leipzig.de/~choener/"; description = "Suffix array construction"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SybWidget" = callPackage @@ -19682,7 +19394,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree"; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -19701,7 +19412,6 @@ self: { homepage = "http://github.com/rukav/Sysmon"; description = "Sybase 15 sysmon reports processor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBC" = callPackage @@ -19722,7 +19432,6 @@ self: { ]; description = "Testing By Convention"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TBit" = callPackage @@ -19740,7 +19449,6 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TCache" = callPackage @@ -19766,6 +19474,7 @@ self: { version = "0.1.1.0"; sha256 = "545725746fa7ea7d77cdb1447a1f2564ddfe36624c8a3118a7e8d0b009ef2462"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; description = "TH implementation of effects"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -19807,7 +19516,6 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TableAlgebra" = callPackage @@ -19837,7 +19545,6 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tablify" = callPackage @@ -19898,7 +19605,6 @@ self: { executableHaskellDepends = [ base mtl old-time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tape" = callPackage @@ -19964,7 +19670,6 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tensor" = callPackage @@ -20021,7 +19726,6 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -20033,7 +19737,6 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ThreadObjects" = callPackage @@ -20063,7 +19766,6 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tic-Tac-Toe" = callPackage @@ -20094,7 +19796,6 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TigerHash" = callPackage @@ -20128,7 +19829,6 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyLaunchbury" = callPackage @@ -20140,7 +19840,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TinyURL" = callPackage @@ -20152,7 +19851,6 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Titim" = callPackage @@ -20167,7 +19865,6 @@ self: { jailbreak = true; description = "Game for Lounge Marmelade"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Top" = callPackage @@ -20183,7 +19880,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Tournament" = callPackage @@ -20203,7 +19899,6 @@ self: { homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TraceUtils" = callPackage @@ -20227,6 +19922,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers mtl ]; + jailbreak = true; homepage = "https://github.com/mgrabmueller/TransformersStepByStep"; description = "Tutorial on monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -20308,7 +20004,6 @@ self: { jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TrieMap" = callPackage @@ -20326,7 +20021,6 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Twofish" = callPackage @@ -20366,7 +20060,6 @@ self: { jailbreak = true; description = "Typing speed game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeCompose" = callPackage @@ -20393,7 +20086,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/"; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeNat" = callPackage @@ -20403,6 +20095,7 @@ self: { version = "0.4.0.1"; sha256 = "e62ef42bad43ca0487d59fe7840313e31fe47a05f210cf37786dd6f5897504f3"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/avieth/TypeNat"; description = "Some Nat-indexed types for GHC"; license = stdenv.lib.licenses.mit; @@ -20436,7 +20129,6 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "Library for Arrowized Graphical User Interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "UMM" = callPackage @@ -20455,7 +20147,6 @@ self: { homepage = "http://www.korgwal.com/umm/"; description = "A small command-line accounting tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLT" = callPackage @@ -20473,7 +20164,6 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLb" = callPackage @@ -20511,7 +20201,6 @@ self: { homepage = "http://github.com/cirquit/UTFTConverter"; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Unique" = callPackage @@ -20556,7 +20245,6 @@ self: { homepage = "http://src.seereason.com/haskell-unixutils-shadow"; description = "A simple interface to shadow passwords (aka, shadow.h)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Updater" = callPackage @@ -20582,7 +20270,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Useful" = callPackage @@ -20617,8 +20304,8 @@ self: { }: mkDerivation { pname = "VKHS"; - version = "1.6.1"; - sha256 = "9a744578cdde23d4ffd477ef44443e52abf862ad48f5c328af229582b5f4c94a"; + version = "1.6.4"; + sha256 = "fb20e23dfa180c5ac4cbc91396fa97563da7cb28c93d283988bf9018d83233fd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -20631,7 +20318,6 @@ self: { homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Validation" = callPackage @@ -20671,7 +20357,6 @@ self: { jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-OpenGLRaw" = callPackage @@ -20684,7 +20369,6 @@ self: { homepage = "http://www.downstairspeople.org/darcs/Vec-opengl"; description = "Instances and functions to interoperate Vec and OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Vec-Transform" = callPackage @@ -20697,7 +20381,6 @@ self: { homepage = "https://github.com/tobbebex/Vec-Transform"; description = "This package is obsolete"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "VecN" = callPackage @@ -20720,6 +20403,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base containers matrix ]; + jailbreak = true; description = "A solver for the WordBrain game"; license = stdenv.lib.licenses.mit; }) {}; @@ -20818,7 +20502,6 @@ self: { jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -20854,7 +20537,6 @@ self: { jailbreak = true; description = "WebMoney authentication module"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "WURFL" = callPackage @@ -20866,7 +20548,6 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -20879,7 +20560,6 @@ self: { homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -20900,7 +20580,6 @@ self: { homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -20914,9 +20593,9 @@ self: { libraryHaskellDepends = [ base Cartesian containers filepath GLUtil lens linear OpenGL ]; + jailbreak = true; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Weather" = callPackage @@ -20962,7 +20641,6 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebBits-multiplate" = callPackage @@ -20979,7 +20657,6 @@ self: { jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WebCont" = callPackage @@ -20999,7 +20676,6 @@ self: { homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty"; description = "Continuation based web programming for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -21043,7 +20719,6 @@ self: { jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wheb" = callPackage @@ -21070,7 +20745,6 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WikimediaParser" = callPackage @@ -21082,10 +20756,9 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Win32" = callPackage + "Win32_2_3_1_0" = callPackage ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 , shfolder, user32, winmm }: @@ -21104,7 +20777,7 @@ self: { }) {advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; - "Win32_2_3_1_1" = callPackage + "Win32" = callPackage ({ mkDerivation, advapi32, base, bytestring, gdi32, shell32 , shfolder, user32, winmm }: @@ -21130,6 +20803,7 @@ self: { version = "0.3.2"; sha256 = "3f6fd5dcd65f0883f40a5e3ee9467df0039abf7fc4f5cf0a119c56696d120664"; libraryHaskellDepends = [ base text Win32 Win32-errors ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/win32-dhcp-server"; description = "Win32 DHCP Server Management API"; license = stdenv.lib.licenses.bsd3; @@ -21143,6 +20817,7 @@ self: { version = "0.2.2.1"; sha256 = "61803f36a418726540f230df294b8a86331a8ffa1b79d04e3398064af7a9efec"; libraryHaskellDepends = [ base template-haskell text Win32 ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/win32-errors"; description = "Alternative error handling for Win32 foreign calls"; license = stdenv.lib.licenses.bsd3; @@ -21170,6 +20845,7 @@ self: { version = "0.2.1.1"; sha256 = "81a4c662c07ca698434775c9fdfdaf6d80eff3ccb0515bec449f71721bdc74df"; libraryHaskellDepends = [ base text Win32 Win32-errors ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/Win32-junction-point"; description = "Support for manipulating NTFS junction points"; license = stdenv.lib.licenses.bsd3; @@ -21214,6 +20890,7 @@ self: { sha256 = "5aa626c00d3c255a0d20fad34f2c96661d31825f12e19f8a7848144d4ef16b1f"; libraryHaskellDepends = [ base Win32 Win32-errors ]; librarySystemDepends = [ Advapi32 ]; + jailbreak = true; homepage = "http://github.com/mikesteele81/win32-services"; description = "Windows service applications"; license = stdenv.lib.licenses.bsd3; @@ -21231,6 +20908,7 @@ self: { libraryHaskellDepends = [ base directory filepath Win32 Win32-errors Win32-services ]; + jailbreak = true; description = "Wrapper code for making a Win32 service"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -21250,7 +20928,6 @@ self: { homepage = "http://www.cse.chalmers.se/~emax/wired/"; description = "Wire-aware hardware description"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "WordAlignment" = callPackage @@ -21291,7 +20968,6 @@ self: { homepage = "https://github.com/choener/WordAlignment"; description = "Bigram word pair alignments"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet" = callPackage @@ -21303,7 +20979,6 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet-ghc74" = callPackage @@ -21315,7 +20990,6 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Wordlint" = callPackage @@ -21332,7 +21006,6 @@ self: { homepage = "https://github.com/gbgar/Wordlint"; description = "Plaintext prose redundancy linter"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Workflow_0_8_1" = callPackage @@ -21386,7 +21059,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "X11" = callPackage @@ -21421,7 +21093,6 @@ self: { jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -21433,7 +21104,6 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11-xdamage" = callPackage @@ -21447,7 +21117,6 @@ self: { homepage = "http://darcs.haskell.org/X11-xdamage"; description = "A binding to the Xdamage X11 extension library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -21461,7 +21130,6 @@ self: { homepage = "https://github.com/reacocard/x11-xfixes"; description = "A binding to the Xfixes X11 extension library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -21524,7 +21192,6 @@ self: { homepage = "http://kawais.org.ua/XMMS/"; description = "XMMS2 client library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -21542,7 +21209,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -21567,7 +21233,6 @@ self: { homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xauth" = callPackage @@ -21598,7 +21263,6 @@ self: { ]; description = "Gtk command launcher with identicon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XmlHtmlWriter" = callPackage @@ -21611,7 +21275,6 @@ self: { homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter"; description = "A library for writing XML and HTML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xorshift128Plus" = callPackage @@ -21621,6 +21284,7 @@ self: { version = "0.1.0.1"; sha256 = "bd09b98dfbb9125a21684e9495d4a624f34ae4912337fb658101edc46e7ce185"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/kanaihiroki/Xorshift128Plus"; description = "Pure haskell implementation of xorshift128plus random number generator"; license = stdenv.lib.licenses.publicDomain; @@ -21644,7 +21308,6 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YFrob" = callPackage @@ -21657,7 +21320,6 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Yampa-based library for programming robots"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yablog" = callPackage @@ -21693,7 +21355,6 @@ self: { homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YamlReference" = callPackage @@ -21719,7 +21380,6 @@ self: { homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Yampa_0_9_6" = callPackage @@ -21815,7 +21475,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yampa"; description = "Library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yampa-core" = callPackage @@ -21850,7 +21509,6 @@ self: { homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; description = "Software synthesizer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yocto" = callPackage @@ -21880,7 +21538,6 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yogurt-Standalone" = callPackage @@ -21901,7 +21558,6 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A functional MUD client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) readline;}; "ZEBEDDE" = callPackage @@ -21913,6 +21569,7 @@ self: { revision = "3"; editedCabalFile = "bd302015dbeab652042fed7c86f942d1cdf28d365de82e742290d5aac13d97c2"; libraryHaskellDepends = [ base vect ]; + jailbreak = true; description = "Polymer growth simulation method"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -21931,7 +21588,6 @@ self: { homepage = "https://github.com/jkarni/ZipperFS"; description = "Oleg's Zipper FS"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZMachine" = callPackage @@ -21945,7 +21601,6 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ZipFold" = callPackage @@ -22000,7 +21655,6 @@ self: { homepage = "https://github.com/MedeaMelana/Zwaluw"; description = "Combinators for bidirectional URL routing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "a50" = callPackage @@ -22050,7 +21704,6 @@ self: { homepage = "https://github.com/pa-ba/abc-puzzle"; description = "Generate instances of the ABC Logic Puzzle"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "abcBridge" = callPackage @@ -22076,7 +21729,6 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) abc;}; "abcnotation" = callPackage @@ -22088,6 +21740,7 @@ self: { libraryHaskellDepends = [ base parsec prettify process semigroups ]; + jailbreak = true; description = "Haskell representation and parser for ABC notation"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22170,7 +21823,6 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "abt" = callPackage @@ -22250,6 +21902,7 @@ self: { array base containers fclabels ghc-prim hashable hashtables pretty template-haskell unordered-containers ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate/"; description = "An embedded language for accelerated array processing"; license = stdenv.lib.licenses.bsd3; @@ -22271,7 +21924,6 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-arithmetic/"; description = "Linear algebra and interpolation using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-cublas" = callPackage @@ -22317,6 +21969,7 @@ self: { mainland-pretty mtl old-time pretty process SafeSemaphore srcloc template-haskell text transformers unix unordered-containers ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-cuda/"; description = "Accelerate backend for NVIDIA GPUs"; license = stdenv.lib.licenses.bsd3; @@ -22393,6 +22046,7 @@ self: { libraryHaskellDepends = [ accelerate accelerate-cuda base cuda cufft ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-fft"; description = "FFT using the Accelerate library"; license = stdenv.lib.licenses.bsd3; @@ -22437,7 +22091,6 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fourier/"; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fourier-benchmark" = callPackage @@ -22472,6 +22125,7 @@ self: { libraryHaskellDepends = [ accelerate array base bmp bytestring repa vector ]; + jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -22484,6 +22138,7 @@ self: { version = "0.15.0.0"; sha256 = "6d2600b2b4eac2246658e926a088447b1aa8add76994071a3cf8a5c455081ef3"; libraryHaskellDepends = [ accelerate base mwc-random ]; + jailbreak = true; description = "Generate Accelerate arrays filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -22521,7 +22176,6 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-utility/"; description = "Utility functions for the Accelerate framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accentuateus" = callPackage @@ -22535,7 +22189,6 @@ self: { homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "access-time" = callPackage @@ -22549,7 +22202,6 @@ self: { homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ace" = callPackage @@ -22634,7 +22286,6 @@ self: { jailbreak = true; description = "A replication backend for acid-state"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acid-state-tls" = callPackage @@ -22772,6 +22423,7 @@ self: { version = "0"; sha256 = "a71c3bd27e878d2501bc2eeee2a426cceebda53e36bfd9dc218fa963187f85f6"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/jystic/acme-flipping-tables"; description = "Stop execution with rage"; license = stdenv.lib.licenses.bsd3; @@ -22799,7 +22451,6 @@ self: { homepage = "http://github.com/joeyadams/haskell-acme-hq9plus"; description = "An embedded DSL for the HQ9+ programming language"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-http" = callPackage @@ -22833,7 +22484,6 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-io" = callPackage @@ -22856,6 +22506,7 @@ self: { version = "3.0"; sha256 = "acbac093f071fc08b8cd4081c3e3675d369304626bcba85ef011ddc169f9370d"; libraryHaskellDepends = [ base text ]; + jailbreak = true; description = "free your haskell from the tyranny of npm!"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -22952,7 +22603,6 @@ self: { jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-omitted" = callPackage @@ -22987,6 +22637,7 @@ self: { version = "0.2.0.0"; sha256 = "3c80f60d4add0170b1a0a94d53abfc6d14a2a4efc7c3dd9ecf5a840d6f14c1f1"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/phadej/acme-operators#readme"; description = "Operators of base, all in one place!"; license = stdenv.lib.licenses.bsd3; @@ -23053,7 +22704,6 @@ self: { ]; description = "Proper names for curry and uncurry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-strfry" = callPackage @@ -23127,7 +22777,6 @@ self: { homepage = "https://github.com/ion1/acme-zero-one"; description = "The absorbing element of package dependencies"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "action-permutations" = callPackage @@ -23255,6 +22904,7 @@ self: { testHaskellDepends = [ base lens linear QuickCheck semigroupoids semigroups vector ]; + jailbreak = true; description = "Abstractions for animation"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -23302,7 +22952,6 @@ self: { jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "activehs-base" = callPackage @@ -23341,7 +22990,6 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; description = "Actors with multi-headed receive clauses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ad_4_2_1_1" = callPackage @@ -23482,7 +23130,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/adaptive-containers"; description = "Self optimizing container types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adaptive-tuple" = callPackage @@ -23495,7 +23142,6 @@ self: { homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adb" = callPackage @@ -23563,7 +23209,6 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Ad-hoc P2P network protocol"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adict" = callPackage @@ -23584,7 +23229,6 @@ self: { homepage = "https://github.com/kawu/adict"; description = "Approximate dictionary searching"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adjunctions_4_2" = callPackage @@ -23620,6 +23264,7 @@ self: { array base comonad containers contravariant distributive free mtl profunctors semigroupoids semigroups tagged transformers void ]; + jailbreak = true; homepage = "http://github.com/ekmett/adjunctions/"; description = "Adjunctions and representable functors"; license = stdenv.lib.licenses.bsd3; @@ -23639,6 +23284,7 @@ self: { array base comonad containers contravariant distributive free mtl profunctors semigroupoids semigroups tagged transformers void ]; + jailbreak = true; homepage = "http://github.com/ekmett/adjunctions/"; description = "Adjunctions and representable functors"; license = stdenv.lib.licenses.bsd3; @@ -23700,7 +23346,6 @@ self: { homepage = "https://github.com/stepcut/ase2css"; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi" = callPackage @@ -23723,7 +23368,6 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adp-multi-monadiccp" = callPackage @@ -23745,7 +23389,6 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson_0_7_0_6" = callPackage @@ -23801,6 +23444,7 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; license = stdenv.lib.licenses.bsd3; @@ -23861,6 +23505,7 @@ self: { template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/bos/aeson"; description = "Fast JSON parsing and encoding"; @@ -23871,8 +23516,8 @@ self: { "aeson" = callPackage ({ mkDerivation, attoparsec, base, base-orphans, bytestring , containers, deepseq, dlist, fail, ghc-prim, hashable, HUnit, mtl - , QuickCheck, quickcheck-instances, scientific, semigroups, syb - , tagged, template-haskell, test-framework, test-framework-hunit + , QuickCheck, quickcheck-instances, scientific, syb, tagged + , template-haskell, test-framework, test-framework-hunit , test-framework-quickcheck2, text, time, transformers , unordered-containers, vector }: @@ -23882,12 +23527,12 @@ self: { sha256 = "447a454b51b8d6ca9e3b59bc5918115a880a9320afeb9030000fe6c87fd2285e"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim - hashable mtl scientific semigroups syb tagged template-haskell text - time transformers unordered-containers vector + hashable mtl scientific syb tagged template-haskell text time + transformers unordered-containers vector ]; testHaskellDepends = [ attoparsec base base-orphans bytestring containers ghc-prim - hashable HUnit QuickCheck quickcheck-instances semigroups tagged + hashable HUnit QuickCheck quickcheck-instances tagged template-haskell test-framework test-framework-hunit test-framework-quickcheck2 text time unordered-containers vector ]; @@ -23961,7 +23606,6 @@ self: { jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-casing" = callPackage @@ -24115,10 +23759,10 @@ 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-extra_0_2_1_0" = callPackage @@ -24289,6 +23933,7 @@ self: { tasty-hunit tasty-quickcheck template-haskell text these time time-parsers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; @@ -24306,6 +23951,7 @@ self: { aeson base bytestring text unordered-containers ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/deviant-logic/aeson-filthy"; description = "Several newtypes and combinators for dealing with less-than-cleanly JSON input"; license = stdenv.lib.licenses.bsd3; @@ -24387,7 +24033,6 @@ self: { homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-parsec-picky" = callPackage @@ -24567,7 +24212,6 @@ self: { homepage = "https://github.com/Fuuzetsu/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-serialize" = callPackage @@ -24598,7 +24242,6 @@ self: { homepage = "https://github.com/lassoinc/aeson-smart"; description = "Smart derivation of Aeson instances"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-streams" = callPackage @@ -24807,7 +24450,6 @@ self: { homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ag-pictgen" = callPackage @@ -24841,7 +24483,6 @@ self: { ]; description = "Http server for Agda (prototype)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets" = callPackage @@ -24858,10 +24499,10 @@ self: { Agda base containers mtl network-uri xhtml ]; executableHaskellDepends = [ Agda base network-uri transformers ]; + jailbreak = true; homepage = "http://github.com/liamoc/agda-snippets#readme"; description = "Render just the Agda snippets of a literate Agda file to HTML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets-hakyll" = callPackage @@ -24876,10 +24517,10 @@ self: { agda-snippets base directory filepath hakyll network-uri pandoc pandoc-types ]; + jailbreak = true; homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agentx" = callPackage @@ -24904,6 +24545,7 @@ self: { fclabels mtl network pipes pipes-concurrency pipes-network safe snmp time transformers unix ]; + jailbreak = true; description = "AgentX protocol for write SNMP subagents"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25008,7 +24650,6 @@ self: { homepage = "https://github.com/joelteon/airbrake"; description = "An Airbrake notifier for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "airship_0_4_1_0" = callPackage @@ -25024,6 +24665,8 @@ self: { pname = "airship"; version = "0.4.1.0"; sha256 = "6706b25bde3a243ed54020dc6967ee247a2136a59a7665c6a142116ab36e9a51"; + revision = "1"; + editedCabalFile = "fd35cf7734e895c2de2d327fc1453eefe0f5e6e9b5b95ba5f1b2cc7427f3cfb3"; libraryHaskellDepends = [ attoparsec base base64-bytestring blaze-builder bytestring bytestring-trie case-insensitive cryptohash directory either @@ -25056,6 +24699,8 @@ self: { pname = "airship"; version = "0.4.2.0"; sha256 = "d8638e31ee1087c33e6592488d8dc33642ba3d3a14f78f3a077a4dc27bbd1597"; + revision = "1"; + editedCabalFile = "1e1499571adf2d858ed37047862a0493186e02b7084846b61a0291c848bb0166"; libraryHaskellDepends = [ attoparsec base base64-bytestring blaze-builder bytestring bytestring-trie case-insensitive cryptohash directory either @@ -25088,6 +24733,42 @@ self: { pname = "airship"; version = "0.4.3.0"; sha256 = "1b7b3e5b66c853b7d84bce08c7cb92e7b40d69e02dbd28cd95bcb39dba9a6544"; + revision = "1"; + editedCabalFile = "67b8c25c1262bed70daf0fb45989f2cc2af1975d2a1c5afcd1e33c206011a943"; + libraryHaskellDepends = [ + attoparsec base base64-bytestring blaze-builder bytestring + bytestring-trie case-insensitive cryptohash directory either + filepath http-date http-media http-types lifted-base microlens + mime-types mmorph monad-control mtl network old-locale random text + time transformers transformers-base unix unordered-containers wai + wai-extra + ]; + testHaskellDepends = [ + base bytestring tasty tasty-hunit tasty-quickcheck text + transformers wai + ]; + jailbreak = true; + homepage = "https://github.com/helium/airship/"; + description = "A Webmachine-inspired HTTP library"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "airship_0_5_0" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder + , bytestring, bytestring-trie, case-insensitive, cryptohash + , directory, either, filepath, http-date, http-media, http-types + , lifted-base, microlens, mime-types, mmorph, monad-control, mtl + , network, old-locale, random, tasty, tasty-hunit, tasty-quickcheck + , text, time, transformers, transformers-base, unix + , unordered-containers, wai, wai-extra + }: + mkDerivation { + pname = "airship"; + version = "0.5.0"; + sha256 = "f42e81e118a419125ed559f6041a7c17fd07020d2bb5052d1649301049689951"; + revision = "1"; + editedCabalFile = "ab014ad2f1fe2d23bb67c980755c67622843dd6b1a591470de4f7773668fffd2"; libraryHaskellDepends = [ attoparsec base base64-bytestring blaze-builder bytestring bytestring-trie case-insensitive cryptohash directory either @@ -25109,24 +24790,24 @@ self: { "airship" = callPackage ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, bytestring-trie, case-insensitive, cryptohash - , directory, either, filepath, http-date, http-media, http-types - , lifted-base, microlens, mime-types, mmorph, monad-control, mtl - , network, old-locale, random, tasty, tasty-hunit, tasty-quickcheck - , text, time, transformers, transformers-base, unix - , unordered-containers, wai, wai-extra + , bytestring, bytestring-trie, case-insensitive, containers + , cryptohash, directory, either, filepath, http-date, http-media + , http-types, lifted-base, microlens, mime-types, mmorph + , monad-control, mtl, network, old-locale, random, tasty + , tasty-hunit, tasty-quickcheck, text, time, transformers + , transformers-base, unix, unordered-containers, wai, wai-extra }: mkDerivation { pname = "airship"; - version = "0.5.0"; - sha256 = "f42e81e118a419125ed559f6041a7c17fd07020d2bb5052d1649301049689951"; + version = "0.6.0"; + sha256 = "e4ca2be5c5dfcd51dfd95449b108ed9bb463b3fdeae45449ecba9f8271051fd6"; libraryHaskellDepends = [ attoparsec base base64-bytestring blaze-builder bytestring - bytestring-trie case-insensitive cryptohash directory either - filepath http-date http-media http-types lifted-base microlens - mime-types mmorph monad-control mtl network old-locale random text - time transformers transformers-base unix unordered-containers wai - wai-extra + bytestring-trie case-insensitive containers cryptohash directory + either filepath http-date http-media http-types lifted-base + microlens mime-types mmorph monad-control mtl network old-locale + random text time transformers transformers-base unix + unordered-containers wai wai-extra ]; testHaskellDepends = [ base bytestring tasty tasty-hunit tasty-quickcheck text @@ -25141,13 +24822,13 @@ self: { ({ mkDerivation, array, base, containers, mtl, random, vector }: mkDerivation { pname = "aivika"; - version = "4.3.4"; - sha256 = "4d533b39360fef397d948d8e48faed1d526799487f01f60821a7784c727fa8f8"; + version = "4.3.5"; + sha256 = "0fc1120a7f3ff97d4200b2149cb61c8a3182d05479fdd338306069236d9e2259"; libraryHaskellDepends = [ array base containers mtl random vector ]; homepage = "http://www.aivikasoft.com/en/products/aivika.html"; - description = "A multi-paradigm simulation library"; + description = "A multi-method simulation library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25259,8 +24940,8 @@ self: { }: mkDerivation { pname = "aivika-transformers"; - version = "4.3.4"; - sha256 = "dbce6da57d88824135fafcf81c97f1e1905aea9fbd78241fac7f835491fa8ea9"; + version = "4.3.5"; + sha256 = "8903fc269b790233425684167ed193c2195a33a8134e8351ba98df69058ec6e7"; libraryHaskellDepends = [ aivika array base containers mtl random vector ]; @@ -25294,7 +24975,6 @@ self: { homepage = "http://ajhc.metasepi.org/"; description = "Haskell compiler that produce binary through C language"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "al" = callPackage @@ -25309,7 +24989,6 @@ self: { homepage = "http://github.com/phaazon/al"; description = "OpenAL 1.1 raw API."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openal;}; "alarmclock_0_2_0_5" = callPackage @@ -25335,6 +25014,7 @@ self: { sha256 = "01b361e8fb982ce1c809ae92f0427e40da37b05aefcd69590bf899ff72bf24cb"; libraryHaskellDepends = [ base stm time unbounded-delays ]; testHaskellDepends = [ base time ]; + jailbreak = true; homepage = "https://bitbucket.org/davecturner/alarmclock"; description = "Wake up and perform an action at a certain time"; license = stdenv.lib.licenses.bsd3; @@ -25349,6 +25029,7 @@ self: { sha256 = "cee02d5065e4407ca5716ef0cfaf0eac9f49271208aef7cf67cd7870975d06bc"; libraryHaskellDepends = [ base stm time unbounded-delays ]; testHaskellDepends = [ base time ]; + jailbreak = true; homepage = "https://bitbucket.org/davecturner/alarmclock"; description = "Wake up and perform an action at a certain time"; license = stdenv.lib.licenses.bsd3; @@ -25365,6 +25046,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base stm time unbounded-delays ]; executableHaskellDepends = [ base time ]; + jailbreak = true; homepage = "https://bitbucket.org/davecturner/alarmclock"; description = "Wake up and perform an action at a certain time"; license = stdenv.lib.licenses.bsd3; @@ -25384,7 +25066,6 @@ self: { homepage = "https://github.com/Rnhmjoj/alea"; description = "a diceware passphrase generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alex_3_1_3" = callPackage @@ -25513,6 +25194,7 @@ self: { array base containers haskell-src-meta QuickCheck template-haskell ]; libraryToolDepends = [ alex happy ]; + jailbreak = true; description = "Quasi-quoter for Alex lexers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -25561,10 +25243,10 @@ self: { base containers hxt megaparsec mtl QuickCheck random test-framework test-framework-quickcheck2 text tf-random transformers ]; + jailbreak = true; homepage = "https://github.com/mrkkrp/alga"; description = "Algorithmic automation for various DAWs"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "algebra" = callPackage @@ -25626,7 +25308,6 @@ self: { ]; description = "Relational Algebra and SQL Code Generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic" = callPackage @@ -25640,7 +25321,6 @@ self: { homepage = "https://github.com/wdanilo/algebraic"; description = "General linear algebra structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "algebraic-classes" = callPackage @@ -25758,7 +25438,6 @@ self: { homepage = "http://www.ccs.neu.edu/~tov/pubs/alms/"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpha" = callPackage @@ -25781,7 +25460,6 @@ self: { homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpino-tools" = callPackage @@ -25806,7 +25484,6 @@ self: { homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa" = callPackage @@ -25825,7 +25502,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -25839,7 +25515,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (Exceptions)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-gui" = callPackage @@ -25859,7 +25534,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Some simple interactive programs for sending MIDI control messages via ALSA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "alsa-midi" = callPackage @@ -25881,7 +25555,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -25896,7 +25569,6 @@ self: { homepage = "https://github.com/ttuegel/alsa-mixer"; description = "Bindings to the ALSA simple mixer API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm" = callPackage @@ -25917,7 +25589,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (PCM audio)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-pcm-tests" = callPackage @@ -25931,7 +25602,6 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alsa-seq" = callPackage @@ -25953,7 +25623,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API (MIDI sequencer)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) alsaLib;}; "alsa-seq-tests" = callPackage @@ -25968,7 +25637,6 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "altcomposition" = callPackage @@ -25978,6 +25646,7 @@ self: { version = "0.2.2.0"; sha256 = "a9051c75339d16d6d3b875145f98c704127a5caba615280be5be36be04402321"; libraryHaskellDepends = [ base composition ]; + jailbreak = true; homepage = "https://github.com/jcristovao/altcomposition"; description = "Alternative combinators for unorthodox function composition"; license = stdenv.lib.licenses.bsd3; @@ -25996,6 +25665,7 @@ self: { libraryHaskellDepends = [ base lifted-base monad-control transformers transformers-base ]; + jailbreak = true; description = "IO as Alternative instance (deprecated)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -26010,7 +25680,6 @@ self: { homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alure" = callPackage @@ -26023,7 +25692,6 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alure;}; "amazon-emailer" = callPackage @@ -26045,7 +25713,6 @@ self: { homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazon-emailer-client-snap" = callPackage @@ -26089,7 +25756,6 @@ self: { homepage = "https://github.com/AndrewRademacher/hs-amazon-products"; description = "Connector for Amazon Products API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka_0_3_3_1" = callPackage @@ -27537,6 +27203,7 @@ self: { quickcheck-unicode tasty tasty-hunit tasty-quickcheck template-haskell text time ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core data types and functionality for Amazonka libraries"; license = "unknown"; @@ -27568,6 +27235,7 @@ self: { quickcheck-unicode tasty tasty-hunit tasty-quickcheck template-haskell text time ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Core data types and functionality for Amazonka libraries"; license = "unknown"; @@ -29531,7 +29199,6 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-redshift_0_3_3" = callPackage @@ -30188,7 +29855,6 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "amazonka-ssm_0_3_3" = callPackage @@ -30758,7 +30424,6 @@ self: { homepage = "http://wiki.tarski.nl"; description = "Toolsuite for automated design of business processes"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amqp_0_10_1" = callPackage @@ -30955,6 +30620,7 @@ self: { base bytestring http-conduit MonadCatchIO-transformers mtl snap snap-core time ]; + jailbreak = true; homepage = "https://github.com/dbp/analyze-client"; description = "Client for analyze service"; license = stdenv.lib.licenses.bsd3; @@ -31014,7 +30680,6 @@ self: { homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anatomy" = callPackage @@ -31041,7 +30706,6 @@ self: { homepage = "http://atomo-lang.org/"; description = "Anatomy: Atomo documentation system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "android" = callPackage @@ -31051,6 +30715,7 @@ self: { version = "0.0.2"; sha256 = "85b112bebb356f4def496e61421651b9e81060af8cab107dbadaf075ae9ac0f2"; libraryHaskellDepends = [ base process ]; + jailbreak = true; homepage = "https://github.com/keera-studios/android-haskell"; description = "Android methods exposed to Haskell"; license = stdenv.lib.licenses.gpl3; @@ -31078,10 +30743,10 @@ self: { testHaskellDepends = [ base basic-prelude directory hspec hxt QuickCheck stringable ]; + jailbreak = true; homepage = "https://github.com/passy/android-lint-summary"; description = "A pretty printer for Android Lint errors"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "angel" = callPackage @@ -31142,6 +30807,7 @@ self: { executableHaskellDepends = [ base morte optparse-applicative system-fileio system-filepath text ]; + jailbreak = true; description = "Medium-level language that desugars to Morte"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -31335,6 +31001,7 @@ self: { version = "0.1.0.0"; sha256 = "ba653a0c6fe36488714fce8a77e553b1c3cadbcbd5e6c6fe53449f25bdae8a40"; libraryHaskellDepends = [ ansi-terminal base ]; + jailbreak = true; homepage = "https://github.com/BlackBrane/ansigraph"; description = "Terminal-based graphing via ANSI and Unicode"; license = stdenv.lib.licenses.mit; @@ -31359,6 +31026,7 @@ self: { antisplice base chatty chatty-utils ironforge mtl shakespeare text time time-locale-compat yesod yesod-auth ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A web interface to Antisplice dungeons"; license = stdenv.lib.licenses.agpl3; @@ -31385,7 +31053,6 @@ self: { homepage = "http://hub.darcs.net/kowey/antfarm"; description = "Referring expressions for definitions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anticiv" = callPackage @@ -31410,7 +31077,6 @@ self: { jailbreak = true; description = "This is an IRC bot for Mafia and Resistance"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antigate" = callPackage @@ -31429,7 +31095,6 @@ self: { homepage = "https://github.com/exbb2/antigate"; description = "Interface for antigate.com captcha recognition API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antimirov" = callPackage @@ -31444,7 +31109,6 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "antiquoter" = callPackage @@ -31470,6 +31134,7 @@ self: { base chatty chatty-utils haskeline mtl template-haskell text time transformers ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "An engine for text-based dungeons"; license = stdenv.lib.licenses.agpl3; @@ -31494,7 +31159,6 @@ self: { homepage = "https://github.com/markwright/antlrc"; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {antlr3c = null;}; "anydbm" = callPackage @@ -31510,7 +31174,6 @@ self: { homepage = "http://software.complete.org/anydbm"; description = "Interface for DBM-like database systems"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aosd" = callPackage @@ -31531,7 +31194,6 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {libaosd = null;}; "ap-reflect" = callPackage @@ -31588,7 +31250,6 @@ self: { homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "api-builder" = callPackage @@ -31683,7 +31344,6 @@ self: { homepage = "http://github.com/iconnect/api-tools"; description = "DSL for generating API boilerplate and docs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary_1_4_3" = callPackage @@ -31747,6 +31407,7 @@ self: { base bytestring http-types HUnit mtl tasty tasty-hunit tasty-quickcheck wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "Simple and type safe web framework that generate web API documentation"; license = stdenv.lib.licenses.mit; @@ -31779,6 +31440,7 @@ self: { aeson base bytestring directory http-types HUnit mtl tasty tasty-hunit tasty-quickcheck wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "Simple and type safe web framework that generate web API documentation"; license = stdenv.lib.licenses.mit; @@ -31801,6 +31463,7 @@ self: { cereal data-default-class http-client http-client-tls http-types monad-control resourcet text types-compat wai web-routing ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "authenticate support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31821,6 +31484,7 @@ self: { apiary apiary-cookie apiary-session base bytestring cereal clientsession data-default-class time unix-compat vault ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "clientsession support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31840,6 +31504,7 @@ self: { apiary base blaze-builder blaze-html bytestring cookie time types-compat wai web-routing ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "Cookie support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31854,6 +31519,7 @@ self: { revision = "2"; editedCabalFile = "0ffc00bdbd735fd5ee59130daa2b6800dc66306bc3da2fccb48145961b04cc95"; libraryHaskellDepends = [ apiary base blaze-builder wai-extra ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "eventsource support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31878,7 +31544,6 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "helics support for apiary web framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-http-client" = callPackage @@ -31894,6 +31559,7 @@ self: { apiary base bytestring bytestring-builder data-default-class http-client http-types text transformers types-compat wai ]; + jailbreak = true; homepage = "https://github.com/winterland1989/apiary-http-client"; description = "A http client for Apiary"; license = stdenv.lib.licenses.mit; @@ -31915,6 +31581,7 @@ self: { monad-control monad-logger transformers transformers-base types-compat ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "fast-logger support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31934,6 +31601,7 @@ self: { apiary base bytestring data-default-class memcached-binary monad-control text transformers types-compat ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "memcached client for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31954,6 +31622,7 @@ self: { apiary base bson data-default-class lifted-base monad-control mongoDB resource-pool text time transformers types-compat ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "mongoDB support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31975,6 +31644,7 @@ self: { resource-pool resourcet transformers transformers-base types-compat web-routing ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "persistent support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -31999,7 +31669,6 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary-session" = callPackage @@ -32013,6 +31682,7 @@ self: { libraryHaskellDepends = [ apiary base types-compat wai web-routing ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "session support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -32031,6 +31701,7 @@ self: { libraryHaskellDepends = [ apiary base wai-websockets web-routing websockets ]; + jailbreak = true; homepage = "https://github.com/philopon/apiary"; description = "websockets support for apiary web framework"; license = stdenv.lib.licenses.mit; @@ -32056,7 +31727,6 @@ self: { homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apotiki" = callPackage @@ -32088,7 +31758,6 @@ self: { homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-lens" = callPackage @@ -32102,7 +31771,6 @@ self: { homepage = "https://bitbucket.org/kztk/app-lens"; description = "applicative (functional) bidirectional programming beyond composition chains"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "app-settings" = callPackage @@ -32156,9 +31824,9 @@ self: { testHaskellDepends = [ aeson base hspec hspec-smallcheck semver smallcheck text uuid ]; + jailbreak = true; description = "app container types and tools"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "applicative-extras" = callPackage @@ -32275,6 +31943,7 @@ self: { tasty-expected-failure tasty-golden temporary-rc transformers unix-compat ]; + jailbreak = true; description = "Perform refactorings specified by the refact library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -32307,9 +31976,9 @@ self: { tasty-expected-failure tasty-golden temporary transformers unix-compat ]; + jailbreak = true; description = "Perform refactorings specified by the refact library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "apportionment" = callPackage @@ -32354,7 +32023,6 @@ self: { homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate_0_2_1_1" = callPackage @@ -32476,6 +32144,7 @@ self: { testHaskellDepends = [ base directory doctest filepath semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; @@ -32527,10 +32196,10 @@ self: { testHaskellDepends = [ base containers QuickCheck tasty tasty-quickcheck vector ]; + jailbreak = true; homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arbb-vm" = callPackage @@ -32548,7 +32217,6 @@ self: { homepage = "https://github.com/svenssonjoel/arbb-vm/wiki"; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {arbb_dev = null;}; "arbtt_0_8_1_4" = callPackage @@ -32761,6 +32429,7 @@ self: { pcre-light process-extras tasty tasty-golden tasty-hunit time transformers unix utf8-string ]; + jailbreak = true; homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; @@ -32805,7 +32474,6 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux" = callPackage @@ -32822,7 +32490,6 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Support for working with Arch Linux packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archlinux-web" = callPackage @@ -32849,7 +32516,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/archlinux"; description = "Website maintenance for Arch Linux packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "archnews" = callPackage @@ -32886,10 +32552,8 @@ self: { testHaskellDepends = [ base bytes containers directory mtl semigroups ]; - jailbreak = true; description = "A journaled data store"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arff" = callPackage @@ -32908,7 +32572,6 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/arff"; description = "Generate Attribute-Relation File Format (ARFF) files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arghwxhaskell" = callPackage @@ -32920,10 +32583,10 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base directory wx ]; + jailbreak = true; homepage = "https://wiki.haskell.org/Argh!"; description = "An interpreter for the Argh! programming language in wxHaskell"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "argon_0_4_0_0" = callPackage @@ -32981,6 +32644,7 @@ self: { aeson ansi-terminal base filepath ghc hlint hspec pipes pipes-safe QuickCheck ]; + jailbreak = true; homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; @@ -32998,10 +32662,10 @@ self: { testHaskellDepends = [ base bytestring QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/ocharles/argon2.git"; description = "Haskell bindings to libargon2 - the reference implementation of the Argon2 password-hashing function"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "argparser" = callPackage @@ -33014,7 +32678,6 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arguedit" = callPackage @@ -33033,7 +32696,6 @@ self: { jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ariadne" = callPackage @@ -33062,7 +32724,6 @@ self: { homepage = "https://github.com/feuerbach/ariadne"; description = "Go-to-definition for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arion" = callPackage @@ -33087,7 +32748,6 @@ self: { homepage = "http://github.com/karun012/arion"; description = "Watcher and runner for Hspec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arith-encode" = callPackage @@ -33109,7 +32769,6 @@ self: { homepage = "https://github.com/emc2/arith-encode"; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -33148,7 +32807,6 @@ self: { ]; description = "Natural number arithmetic"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "arithmoi_0_4_1_1" = callPackage @@ -33204,10 +32862,10 @@ self: { array base containers ghc-prim integer-gmp mtl random ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "https://github.com/cartazio/arithmoi"; description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "armada" = callPackage @@ -33221,7 +32879,6 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arpa" = callPackage @@ -33276,7 +32933,6 @@ self: { jailbreak = true; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "array-memoize" = callPackage @@ -33302,6 +32958,7 @@ self: { testHaskellDepends = [ base ghc-prim QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; description = "Extra foreign primops for primitive arrays"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33331,7 +32988,6 @@ self: { homepage = "https://github.com/prophile/arrow-improve/"; description = "Improved arrows"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrow-list_0_6_1_5" = callPackage @@ -33368,7 +33024,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrowp" = callPackage @@ -33383,7 +33038,6 @@ self: { homepage = "http://www.haskell.org/arrows/"; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arrows" = callPackage @@ -33489,6 +33143,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base ]; executableHaskellDepends = [ base text ]; + jailbreak = true; homepage = "https://github.com/danchoi/ascii-flatten"; description = "Flattens European non-ASCII characaters into ASCII"; license = stdenv.lib.licenses.mit; @@ -33571,7 +33226,6 @@ self: { jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asciidiagram_1_1_1_1" = callPackage @@ -33618,6 +33272,7 @@ self: { base bytestring directory filepath FontyFruity JuicyPixels optparse-applicative rasterific-svg svg-tree text ]; + jailbreak = true; description = "Pretty rendering of Ascii diagram into svg or png"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -33634,7 +33289,6 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Compiler"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asil" = callPackage @@ -33654,7 +33308,6 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "asn1-data_0_7_1" = callPackage @@ -33927,7 +33580,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) assimp;}; "astar" = callPackage @@ -33961,7 +33613,6 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview" = callPackage @@ -33981,7 +33632,6 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = stdenv.lib.licenses.bsdOriginal; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview-utils" = callPackage @@ -34026,6 +33676,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/simonmar/async"; description = "Run IO operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; @@ -34063,7 +33714,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "async-dejafu" = callPackage + "async-dejafu_0_1_2_1" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: mkDerivation { pname = "async-dejafu"; @@ -34074,6 +33725,20 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Run MonadConc operations asynchronously and wait for their results"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "async-dejafu" = callPackage + ({ mkDerivation, base, dejafu, exceptions, HUnit, hunit-dejafu }: + mkDerivation { + pname = "async-dejafu"; + version = "0.1.2.2"; + sha256 = "ff459f69420e8ef8c26d5c7f2158d49501d1ee06a4c3a664b8826fb90f517db0"; + libraryHaskellDepends = [ base dejafu exceptions ]; + testHaskellDepends = [ base dejafu HUnit hunit-dejafu ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Run MonadConc operations asynchronously and wait for their results"; + license = stdenv.lib.licenses.bsd3; }) {}; "async-extras" = callPackage @@ -34091,7 +33756,6 @@ self: { homepage = "http://github.com/jfischoff/async-extras"; description = "Extra Utilities for the Async Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "async-manager" = callPackage @@ -34168,7 +33832,6 @@ self: { homepage = "https://github.com/GaloisInc/aterm-utils"; description = "Utility functions for working with aterms as generated by Minitermite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atl" = callPackage @@ -34205,7 +33868,6 @@ self: { homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -34228,7 +33890,6 @@ self: { jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atmos" = callPackage @@ -34359,7 +34020,6 @@ self: { homepage = "https://github.com/eightyeight/atom-msp430"; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" ]; }) {}; "atomic-primops_0_8" = callPackage @@ -34369,6 +34029,7 @@ self: { version = "0.8"; sha256 = "c0e19e8005bb7320a0a9f6eaa5b464adb14aa88308e9922249305eeaa42f6471"; libraryHaskellDepends = [ base ghc-prim primitive ]; + jailbreak = true; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -34382,6 +34043,7 @@ self: { version = "0.8.0.2"; sha256 = "6684b0f7f11922a5a8d038155e634ecffa32c95800326fbe6f2a45eadf07f0a0"; libraryHaskellDepends = [ base ghc-prim primitive ]; + jailbreak = true; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -34395,6 +34057,7 @@ self: { version = "0.8.0.3"; sha256 = "1dbf0ac681bec29ee51125be1303536f54dc8640af9d57a92fc184152a38c997"; libraryHaskellDepends = [ base ghc-prim primitive ]; + jailbreak = true; homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "A safe approach to CAS and other atomic ops in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -34431,7 +34094,6 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-primops-vector" = callPackage @@ -34445,7 +34107,6 @@ self: { jailbreak = true; description = "Atomic operations on Data.Vector types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-write" = callPackage @@ -34491,7 +34152,6 @@ self: { homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -34765,7 +34425,6 @@ self: { homepage = "https://github.com/robinbb/attoparsec-csv"; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-enumerator_0_3_3" = callPackage @@ -34837,7 +34496,6 @@ self: { homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -34867,7 +34525,6 @@ self: { homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-text-enumerator" = callPackage @@ -34880,7 +34537,6 @@ self: { jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-trans" = callPackage @@ -34890,6 +34546,7 @@ self: { version = "0.1.1.0"; sha256 = "472999fbb9ba157b4cdabb3fd933b9e3c8414879843963ab1c21e708e1a14b53"; libraryHaskellDepends = [ attoparsec base transformers ]; + jailbreak = true; homepage = "https://github.com/srijs/haskell-attoparsec-trans"; description = "Interleaved effects for attoparsec parsers"; license = stdenv.lib.licenses.mit; @@ -34922,7 +34579,6 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "audacity" = callPackage @@ -34934,6 +34590,7 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base deepseq utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/audacity"; description = "Interchange with the Audacity sound signal editor"; license = stdenv.lib.licenses.bsd3; @@ -34958,7 +34615,6 @@ self: { homepage = "https://github.com/fumieval/audiovisual"; description = "A battery-included audiovisual framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "augeas" = callPackage @@ -34978,7 +34634,6 @@ self: { homepage = "http://trac.haskell.org/augeas"; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -34998,7 +34653,6 @@ self: { jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aur" = callPackage @@ -35013,10 +34667,10 @@ self: { aeson base http-client http-client-tls mtl servant servant-client text transformers ]; + jailbreak = true; homepage = "https://github.com/fosskers/haskell-aur"; description = "Access metadata from the Arch Linux User Repository"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "authenticate_1_3_2_10" = callPackage @@ -35131,7 +34785,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "authenticate-oauth" = callPackage + "authenticate-oauth_1_5_1_1" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring , crypto-pubkey-types, data-default, http-client, http-types , random, RSA, SHA, time, transformers @@ -35147,12 +34801,14 @@ self: { data-default http-client http-types random RSA SHA time transformers ]; + jailbreak = true; homepage = "http://github.com/yesodweb/authenticate"; description = "Library to authenticate with OAuth for Haskell web applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "authenticate-oauth_1_5_1_2" = callPackage + "authenticate-oauth" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring , crypto-pubkey-types, data-default, http-client, http-types , random, RSA, SHA, time, transformers @@ -35169,7 +34825,6 @@ self: { homepage = "http://github.com/yesodweb/authenticate"; description = "Library to authenticate with OAuth for Haskell web applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "authinfo-hs" = callPackage @@ -35201,7 +34856,6 @@ self: { homepage = "http://github.com/nushio3/authoring"; description = "A library for writing papers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "auto" = callPackage @@ -35368,7 +35022,6 @@ self: { ]; description = "Library for Nix expression dependency generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autonix-deps-kf5" = callPackage @@ -35390,7 +35043,6 @@ self: { ]; description = "Generate dependencies for KDE 5 Nix expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "autoproc" = callPackage @@ -35405,7 +35057,6 @@ self: { homepage = "http://code.haskell.org/autoproc"; description = "EDSL for Procmail scripts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avahi" = callPackage @@ -35417,7 +35068,6 @@ self: { libraryHaskellDepends = [ base dbus-core text ]; description = "Minimal DBus bindings for Avahi daemon (http://avahi.org)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avatar-generator" = callPackage @@ -35601,7 +35251,6 @@ self: { homepage = "http://github.com/wereHamster/avers-api"; description = "Types describing the core and extended Avers APIs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avers-server_0_0_1" = callPackage @@ -35693,7 +35342,6 @@ self: { homepage = "http://github.com/wereHamster/avers-server"; description = "Server implementation of the Avers API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avl-static" = callPackage @@ -35733,6 +35381,7 @@ self: { version = "0.1.0.0"; sha256 = "cf5edb7500a02aaba7400f3baab984680898dbedc0cf5b09ded2ca40568e6e57"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://notabug.org/koz.ross/awesome-prelude"; description = "A prelude which I can be happy with. Based on base-prelude."; license = stdenv.lib.licenses.gpl3; @@ -35751,7 +35400,6 @@ self: { ]; description = "High-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -35763,7 +35411,6 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -35777,7 +35424,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {awesomium = null;}; "aws_0_11" = callPackage @@ -36013,6 +35659,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"; @@ -36053,7 +35700,6 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-dynamodb-conduit" = callPackage @@ -36096,7 +35742,6 @@ self: { jailbreak = true; description = "Haskell bindings for Amazon DynamoDB Streams"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-ec2" = callPackage @@ -36149,7 +35794,6 @@ self: { homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-general" = callPackage @@ -36176,7 +35820,6 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-general"; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis" = callPackage @@ -36203,7 +35846,6 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis"; description = "Bindings for Amazon Kinesis"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-client" = callPackage @@ -36239,7 +35881,6 @@ self: { jailbreak = true; description = "A producer & consumer client library for AWS Kinesis"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-kinesis-reshard" = callPackage @@ -36270,7 +35911,6 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-lambda" = callPackage @@ -36292,7 +35932,6 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-lambda"; description = "Haskell bindings for AWS Lambda"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-performance-tests" = callPackage @@ -36319,7 +35958,6 @@ self: { homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-route53" = callPackage @@ -36366,7 +36004,6 @@ self: { homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sdk-text-converter" = callPackage @@ -36435,7 +36072,6 @@ self: { homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aws-sns" = callPackage @@ -36460,7 +36096,6 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-sns"; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-acs" = callPackage @@ -36499,7 +36134,6 @@ self: { homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -36549,7 +36183,6 @@ self: { homepage = "http://arnovanlumig.com/azure"; description = "A simple library for accessing Azure blob storage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b-tree" = callPackage @@ -36570,7 +36203,6 @@ self: { homepage = "http://github.com/bgamari/b-tree"; description = "Immutable disk-based B* trees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "b9_0_5_8" = callPackage @@ -36854,7 +36486,6 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "backdropper" = callPackage @@ -36873,7 +36504,6 @@ self: { jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backtracking-exceptions" = callPackage @@ -36930,7 +36560,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bake_0_2" = callPackage @@ -37006,7 +36635,6 @@ self: { homepage = "http://github.com/nfjinjing/bamboo/tree/master"; description = "A blog engine on Hack"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -37027,7 +36655,6 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-launcher"; description = "bamboo-launcher"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-highlight" = callPackage @@ -37045,7 +36672,6 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/"; description = "A highlight middleware"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -37064,7 +36690,6 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "A photo album middleware"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -37083,7 +36708,6 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint"; description = "bamboo blueprint theme"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -37106,7 +36730,6 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5"; description = "bamboo mini html5 theme"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamse" = callPackage @@ -37125,7 +36748,6 @@ self: { executableHaskellDepends = [ HUnit QuickCheck ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamstats" = callPackage @@ -37178,6 +36800,7 @@ self: { sha256 = "459f6aee4b04a28059d20eb7064d3849704be3fc7a9efce8fa712401940a608a"; libraryHaskellDepends = [ base containers time ]; testHaskellDepends = [ base containers hspec QuickCheck time ]; + jailbreak = true; homepage = "https://bitbucket.org/davecturner/bank-holidays-england"; description = "Calculation of bank holidays in England and Wales"; license = stdenv.lib.licenses.bsd3; @@ -37218,7 +36841,6 @@ self: { homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barcodes-code128" = callPackage @@ -37231,7 +36853,6 @@ self: { jailbreak = true; description = "Generate Code 128 barcodes as PDFs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barecheck_0_2_0_6" = callPackage @@ -37279,7 +36900,6 @@ self: { jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrie" = callPackage @@ -37292,7 +36912,6 @@ self: { homepage = "http://thewhitelion.org/haskell/barrie"; description = "Declarative Gtk GUI library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrier" = callPackage @@ -37314,6 +36933,7 @@ self: { testHaskellDepends = [ base bytestring lens-family-core tasty tasty-golden ]; + jailbreak = true; homepage = "https://github.com/philopon/barrier"; description = "Shield.io style badge generator"; license = stdenv.lib.licenses.mit; @@ -37329,7 +36949,6 @@ self: { jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base_4_9_0_0" = callPackage @@ -37445,7 +37064,7 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; - "base-noprelude" = callPackage + "base-noprelude_4_8_2_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-noprelude"; @@ -37453,12 +37072,14 @@ self: { sha256 = "bd4ab7685a14d82f7586074b1af88e22a8401e552a439286710592e3a2d763c7"; libraryHaskellDepends = [ base ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/hvr/base-noprelude"; description = "\"base\" package sans \"Prelude\" module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "base-noprelude_4_9_0_0" = callPackage + "base-noprelude" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "base-noprelude"; @@ -37466,11 +37087,9 @@ self: { sha256 = "1c5509c33366d7d0810c12d3e00579709f1b940733fda0f5f38079eba8f2fe5d"; libraryHaskellDepends = [ base ]; doHaddock = false; - jailbreak = true; homepage = "https://github.com/hvr/base-noprelude"; description = "\"base\" package sans \"Prelude\" module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "base-orphans_0_4_3" = callPackage @@ -37500,6 +37119,7 @@ self: { editedCabalFile = "cea63d78f15bb697f86c7e827de98d713e814c12371cad4f66bd05ed8d77bbea"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/haskell-compat/base-orphans#readme"; description = "Backwards-compatible orphan instances for base"; license = stdenv.lib.licenses.mit; @@ -37667,6 +37287,7 @@ self: { version = "0.1.14"; sha256 = "f241799e5060b77da9de77fcb1b0373a622e485460571f45e276b034ad7ef227"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37681,6 +37302,7 @@ self: { version = "0.1.15"; sha256 = "86325d7ab3a4c263864bad50a72e523230aa40716925bae03643248b80ca8433"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37695,6 +37317,7 @@ self: { version = "0.1.16"; sha256 = "fa2e4d608054793d611714b4eca1319356cfea906a23400ec55862c3eb5af9cc"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37709,6 +37332,7 @@ self: { version = "0.1.17"; sha256 = "b81dd342725a57050e018e8fdcc4ce8e5222ce9fbdc894577bf86b15ddb2b035"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37723,6 +37347,7 @@ self: { version = "0.1.19"; sha256 = "8b0f04c4e9406880ece5152d8c74b3468905bbbcfbd907200168f951ef3fb302"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37737,6 +37362,7 @@ self: { version = "0.1.20"; sha256 = "0adb753a2f638b432c79bb02e39ce417adff6d4e9f51046b423ac2931074b0c8"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37751,6 +37377,7 @@ self: { version = "0.1.21"; sha256 = "72650e69fd615191be08bed82e07c623b0c17b0b52113b418bc3b2093d74a3a5"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/base-prelude"; description = "The most complete prelude formed from only the \"base\" package"; @@ -37807,7 +37434,6 @@ self: { homepage = "https://github.com/pxqr/base32-bytestring"; description = "Fast base32 and base32hex codec for ByteStrings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "base32string" = callPackage @@ -38168,7 +37794,6 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "An interpreter for a small functional language"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "battlenet" = callPackage @@ -38233,7 +37858,6 @@ self: { homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -38254,7 +37878,6 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bbdb" = callPackage @@ -38296,7 +37919,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bcrypt" = callPackage + "bcrypt_0_0_8" = callPackage ({ mkDerivation, base, bytestring, entropy, memory }: mkDerivation { pname = "bcrypt"; @@ -38305,9 +37928,10 @@ self: { libraryHaskellDepends = [ base bytestring entropy memory ]; description = "Haskell bindings to the bcrypt password hash"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bcrypt_0_0_9" = callPackage + "bcrypt" = callPackage ({ mkDerivation, base, bytestring, data-default, entropy, memory }: mkDerivation { pname = "bcrypt"; @@ -38316,10 +37940,8 @@ self: { libraryHaskellDepends = [ base bytestring data-default entropy memory ]; - jailbreak = true; description = "Haskell bindings to the bcrypt password hash"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bdd" = callPackage @@ -38379,6 +38001,7 @@ self: { base conduit containers convertible HDBC HDBC-sqlite3 microlens mtl pretty semigroups tagged text time uniplate ]; + jailbreak = true; homepage = "http://travis.athougies.net/projects/beam.html"; description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; license = stdenv.lib.licenses.mit; @@ -38403,7 +38026,6 @@ self: { jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "beautifHOL" = callPackage @@ -38418,7 +38040,6 @@ self: { homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html"; description = "A pretty-printer for higher-order logic"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -38439,7 +38060,6 @@ self: { homepage = "https://hackage.haskell.org/package/bed-and-breakfast"; description = "Efficient Matrix operations in 100% Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bein" = callPackage @@ -38462,7 +38082,6 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bench" = callPackage @@ -38498,6 +38117,7 @@ self: { version = "0.2.2.7"; sha256 = "d09b80fd61f18ba76f19772a8fb013d1aa1fd78590826c6fab12601778c562e6"; libraryHaskellDepends = [ base mtl time ]; + jailbreak = true; homepage = "https://github.com/WillSewell/benchpress"; description = "Micro-benchmarking with detailed statistics"; license = stdenv.lib.licenses.bsd3; @@ -38558,7 +38178,6 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -38586,7 +38205,6 @@ self: { homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bert" = callPackage @@ -38709,7 +38327,6 @@ self: { jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -38750,7 +38367,6 @@ self: { ]; description = "Blocked GZip"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bibdb" = callPackage @@ -38775,7 +38391,6 @@ self: { homepage = "https://github.com/cacay/bibdb"; description = "A database based bibliography manager for BibTeX"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bibtex" = callPackage @@ -38809,7 +38424,6 @@ self: { homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html"; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec" = callPackage @@ -38821,7 +38435,6 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec-extras" = callPackage @@ -38893,13 +38506,14 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; + jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors" = callPackage + "bifunctors_5_2" = callPackage ({ mkDerivation, base, comonad, containers, hspec, QuickCheck , semigroups, tagged, template-haskell, transformers , transformers-compat @@ -38916,12 +38530,14 @@ self: { base hspec QuickCheck transformers transformers-compat ]; doHaddock = false; + jailbreak = true; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bifunctors_5_3" = callPackage + "bifunctors" = callPackage ({ mkDerivation, base, base-orphans, comonad, containers, hspec , QuickCheck, semigroups, tagged, template-haskell, transformers , transformers-compat @@ -38937,11 +38553,10 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - jailbreak = true; + doHaddock = false; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bighugethesaurus" = callPackage @@ -38977,7 +38592,6 @@ self: { homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-forms" = callPackage @@ -38997,7 +38611,6 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main" = callPackage @@ -39018,7 +38631,6 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-main-static" = callPackage @@ -39062,7 +38674,6 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-services" = callPackage @@ -39080,7 +38691,6 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bimap_0_3_0" = callPackage @@ -39152,7 +38762,6 @@ self: { homepage = "https://github.com/choener/bimaps"; description = "bijections with multiple implementations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary_0_7_6_1" = callPackage @@ -39221,6 +38830,7 @@ self: { version = "1.0.2.2"; sha256 = "68c267c40d08bb0a574a35bb8bc2eab06172e1084fbf1fdeeb2d7015a9e56cf0"; libraryHaskellDepends = [ base binary bytestring mtl ]; + jailbreak = true; description = "Flexible way to ease transmission of binary data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -39242,6 +38852,7 @@ self: { base binary bytestring conduit hspec QuickCheck quickcheck-assertions resourcet ]; + jailbreak = true; homepage = "http://github.com/qnikst/binary-conduit/"; description = "data serialization/deserialization conduit library"; license = stdenv.lib.licenses.mit; @@ -39257,7 +38868,6 @@ self: { jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-enum" = callPackage @@ -39313,7 +38923,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-list_1_0_1_0" = callPackage @@ -39563,7 +39172,6 @@ self: { homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-search_0_1" = callPackage @@ -39658,10 +39266,10 @@ self: { base binary bytestring Cabal cabal-test-quickcheck io-streams QuickCheck ]; + jailbreak = true; homepage = "http://github.com/jonpetterbergman/binary-streams"; description = "data serialization/deserialization io-streams library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-strict" = callPackage @@ -39858,7 +39466,6 @@ self: { homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-core" = callPackage @@ -39889,7 +39496,6 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in Gtk2Hs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binding-wx" = callPackage @@ -39905,7 +39511,6 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in WxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings" = callPackage @@ -39968,7 +39573,6 @@ self: { homepage = "http://cielonegro.org/Bindings-EsounD.html"; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {esound = null;}; "bindings-GLFW_3_1_1_4" = callPackage @@ -40020,7 +39624,6 @@ self: { doCheck = false; description = "Low-level bindings to GLFW OpenGL library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXcursor; inherit (pkgs.xorg) libXext; inherit (pkgs.xorg) libXfixes; inherit (pkgs.xorg) libXi; inherit (pkgs.xorg) libXinerama; @@ -40038,7 +39641,6 @@ self: { homepage = "https://github.com/jputcu/bindings-K8055"; description = "Bindings to Velleman K8055 dll"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -40053,7 +39655,6 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {apr-1 = null;}; "bindings-apr-util" = callPackage @@ -40068,7 +39669,6 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {apr-util-1 = null;}; "bindings-audiofile" = callPackage @@ -40099,7 +39699,6 @@ self: { homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -40113,7 +39712,6 @@ self: { homepage = "http://bitbucket.org/badi/bindings-cctools"; description = "Bindings to the CCTools WorkQueue C library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -40134,7 +39732,6 @@ self: { homepage = "https://github.com/relrod/bindings-codec2"; description = "Very low-level FFI bindings for Codec2"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {codec2 = null;}; "bindings-common" = callPackage @@ -40146,7 +39743,6 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-dc1394" = callPackage @@ -40161,7 +39757,6 @@ self: { homepage = "http://github.com/aleator/bindings-dc1394"; description = "Library for using firewire (iidc-1394) cameras"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -40174,7 +39769,6 @@ self: { libraryPkgconfigDepends = [ directfb ]; description = "Low level bindings to DirectFB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) directfb;}; "bindings-eskit" = callPackage @@ -40190,7 +39784,6 @@ self: { homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {eskit = null;}; "bindings-fann" = callPackage @@ -40203,7 +39796,6 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -40217,7 +39809,6 @@ self: { homepage = "http://github.com/bgamari/bindings-fluidsynth"; description = "Haskell FFI bindings for fluidsynth software synthesizer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "bindings-friso" = callPackage @@ -40230,7 +39821,6 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {friso = null;}; "bindings-glib" = callPackage @@ -40268,7 +39858,6 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-gpgme"; description = "Project bindings-* raw interface to gpgme"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) gpgme;}; "bindings-gsl" = callPackage @@ -40281,7 +39870,6 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -40294,7 +39882,6 @@ self: { libraryPkgconfigDepends = [ gts ]; description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gts;}; "bindings-hamlib" = callPackage @@ -40313,7 +39900,6 @@ self: { homepage = "https://github.com/relrod/hamlib-haskell"; description = "Hamlib bindings for Haskell"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -40325,7 +39911,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-levmar" = callPackage @@ -40336,10 +39921,10 @@ self: { sha256 = "809175b1ebd5675506755e53901104ea52cdc68e761c7ce01df54ace11b249b5"; libraryHaskellDepends = [ base bindings-DSL ]; librarySystemDepends = [ blas liblapack ]; + jailbreak = true; homepage = "https://github.com/basvandijk/bindings-levmar"; description = "Low level bindings to the C levmar (Levenberg-Marquardt) library"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "bindings-libcddb" = callPackage @@ -40353,7 +39938,6 @@ self: { homepage = "http://bitbucket.org/mauricio/bindings-libcddb"; description = "Low level binding to libcddb"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libcddb;}; "bindings-libffi" = callPackage @@ -40378,7 +39962,6 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libftdi; inherit (pkgs) libusb;}; "bindings-librrd" = callPackage @@ -40392,7 +39975,6 @@ self: { homepage = "http://cielonegro.org/Bindings-librrd.html"; description = "Low level bindings to RRDtool"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -40407,9 +39989,9 @@ self: { base bindings-DSL resourcet transformers ]; librarySystemDepends = [ stemmer ]; + jailbreak = true; description = "Binding for libstemmer with low level binding"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -40436,7 +40018,6 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to libv4l2 for Linux"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {v4l2 = null;}; "bindings-libzip_0_10_2" = callPackage @@ -40464,7 +40045,6 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libzip;}; "bindings-linux-videodev2" = callPackage @@ -40477,7 +40057,6 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-lxc" = callPackage @@ -40491,7 +40070,6 @@ self: { homepage = "https://github.com/fizruk/bindings-lxc"; description = "Direct Haskell bindings to LXC (Linux containers) C API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lxc;}; "bindings-mmap" = callPackage @@ -40503,7 +40081,6 @@ self: { libraryHaskellDepends = [ bindings-posix ]; description = "(deprecated) see bindings-posix instead"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-mpdecimal" = callPackage @@ -40517,7 +40094,6 @@ self: { homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bindings-nettle" = callPackage @@ -40547,7 +40123,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "parport bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-portaudio" = callPackage @@ -40560,7 +40135,6 @@ self: { libraryPkgconfigDepends = [ portaudio ]; description = "Low-level bindings to portaudio library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "bindings-posix" = callPackage @@ -40572,7 +40146,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Low level bindings to posix"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-potrace" = callPackage @@ -40597,7 +40170,6 @@ self: { libraryHaskellDepends = [ base bindings-DSL ioctl ]; description = "PPDev bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-saga-cmd" = callPackage @@ -40632,7 +40204,6 @@ self: { homepage = "http://floss.scru.org/bindings-sane"; description = "FFI bindings to libsane"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {saneBackends = null;}; "bindings-sc3" = callPackage @@ -40646,7 +40217,6 @@ self: { homepage = "https://github.com/kaoskorobase/bindings-sc3/"; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -40663,7 +40233,6 @@ self: { homepage = "https://github.com/justinethier/hs-bindings-sipc"; description = "Low level bindings to SIPC"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -40699,7 +40268,6 @@ self: { homepage = "http://github.com/tanimoto/bindings-svm"; description = "Low level bindings to libsvm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings-uname" = callPackage @@ -40725,7 +40293,6 @@ self: { homepage = "http://github.com/aktowns/bindings-wlc#readme"; description = "Bindings against the wlc library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) wlc;}; "bindings-yices" = callPackage @@ -40748,6 +40315,7 @@ self: { version = "1.0.0.0"; sha256 = "f1e9c392ea6a9be6a4d7200ed8060e5560ac6881c65c9423cc6e63d2bbe7246e"; libraryHaskellDepends = [ base binary bytestring rank1dynamic ]; + jailbreak = true; homepage = "https://github.com/lspitzner/bindynamic"; description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; license = stdenv.lib.licenses.gpl3; @@ -40767,6 +40335,7 @@ self: { executableHaskellDepends = [ base containers directory dlist filepath ]; + jailbreak = true; homepage = "http://code.mathr.co.uk/binembed"; description = "Embed data into object files"; license = stdenv.lib.licenses.bsd3; @@ -40784,10 +40353,10 @@ self: { executableHaskellDepends = [ base binembed bytestring containers filepath ]; + jailbreak = true; homepage = "http://code.mathr.co.uk/binembed"; description = "Example project using binembed to embed data in object files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bini" = callPackage @@ -40825,7 +40394,6 @@ self: { homepage = "http://biohaskell.org/Libraries/Bio"; description = "A bioinformatics library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioace" = callPackage @@ -40921,7 +40489,6 @@ self: { homepage = "http://github.com/udo-stenzel/biohazard"; description = "bioinformatics support library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioinformatics-toolkit" = callPackage @@ -40957,10 +40524,9 @@ self: { ]; description = "A collection of bioinformatics tools"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "biophd" = callPackage + "biophd_0_0_4" = callPackage ({ mkDerivation, base, binary, biocore, bytestring, parsec, text }: mkDerivation { pname = "biophd"; @@ -40972,6 +40538,7 @@ self: { homepage = "https://patch-tag.com/r/dfornika/biophd/home"; description = "Library for reading phd sequence files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biophd_0_0_5" = callPackage @@ -41006,7 +40573,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "biophd_0_0_8" = callPackage + "biophd" = callPackage ({ mkDerivation, base, binary, biocore, bytestring, parsec, text , time, time-locale-compat }: @@ -41020,7 +40587,6 @@ self: { homepage = "https://github.com/dfornika/biophd/wiki"; description = "Library for reading phd sequence files"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biopsl" = callPackage @@ -41055,7 +40621,6 @@ self: { homepage = "http://biohaskell.org/"; description = "Library and executables for working with SFF files"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "biostockholm" = callPackage @@ -41079,7 +40644,6 @@ self: { jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bird" = callPackage @@ -41100,7 +40664,6 @@ self: { homepage = "http://github.com/moonmaster9000/bird"; description = "A simple, sinatra-inspired web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-array" = callPackage @@ -41132,7 +40695,6 @@ self: { homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "bitarray" = callPackage @@ -41254,7 +40816,6 @@ self: { jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitcoin-script" = callPackage @@ -41328,7 +40889,6 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitmap" = callPackage @@ -41353,7 +40913,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for Data.Bitmap."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bitmaps" = callPackage @@ -41384,6 +40943,7 @@ self: { libraryHaskellDepends = [ base bytes mtl transformers ]; testHaskellDepends = [ base directory doctest filepath ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "http://github.com/analytics/bits"; description = "Various bit twiddling and bitwise serialization primitives"; @@ -41427,7 +40987,6 @@ self: { jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bits-extras" = callPackage @@ -41442,7 +41001,6 @@ self: { librarySystemDepends = [ gcc_s ]; description = "Efficient high-level bit operations not found in Data.Bits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gcc_s = null;}; "bitset" = callPackage @@ -41459,7 +41017,6 @@ self: { jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "bitspeak" = callPackage @@ -41479,7 +41036,6 @@ self: { jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; gtk2 = pkgs.gnome2.gtk; inherit (pkgs.gnome) pango;}; @@ -41501,7 +41057,6 @@ self: { homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitstring" = callPackage @@ -41548,7 +41103,6 @@ self: { homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitvec" = callPackage @@ -41567,7 +41121,6 @@ self: { homepage = "https://github.com/mokus0/bitvec"; description = "Unboxed vectors of bits / dense IntSets"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitwise_0_1_0_2" = callPackage @@ -41585,7 +41138,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bitwise" = callPackage + "bitwise_0_1_1" = callPackage ({ mkDerivation, array, base, bytestring, QuickCheck }: mkDerivation { pname = "bitwise"; @@ -41593,6 +41146,21 @@ self: { sha256 = "d4c8ad8673585a40c549fdd24313551bda98f6fbfc7f4be8693a31d54d4b8a84"; libraryHaskellDepends = [ array base bytestring ]; testHaskellDepends = [ base QuickCheck ]; + jailbreak = true; + homepage = "http://code.mathr.co.uk/bitwise"; + description = "fast multi-dimensional unboxed bit packed Bool arrays"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bitwise" = callPackage + ({ mkDerivation, array, base, bytestring, QuickCheck }: + mkDerivation { + pname = "bitwise"; + version = "0.1.1.1"; + sha256 = "cde04615108c8e1e4b9f3a6fd7115b6fe40068385489fc5fc3d41e3700d69486"; + libraryHaskellDepends = [ array base bytestring ]; + testHaskellDepends = [ base QuickCheck ]; homepage = "http://code.mathr.co.uk/bitwise"; description = "fast multi-dimensional unboxed bit packed Bool arrays"; license = stdenv.lib.licenses.bsd3; @@ -41656,7 +41224,6 @@ self: { homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bktrees" = callPackage @@ -41682,7 +41249,6 @@ self: { homepage = "http://github.com/nfjinjing/bla"; description = "a stupid cron"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "black-jewel" = callPackage @@ -41704,7 +41270,6 @@ self: { homepage = "http://git.kaction.name/black-jewel"; description = "The pirate bay client"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blacktip" = callPackage @@ -41742,7 +41307,6 @@ self: { homepage = "https://github.com/centromere/blake2"; description = "A library providing BLAKE2"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "blakesum" = callPackage @@ -41756,7 +41320,6 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blakesum-demo" = callPackage @@ -41776,7 +41339,6 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blank-canvas_0_5" = callPackage @@ -41813,8 +41375,8 @@ self: { pname = "blank-canvas"; version = "0.6"; sha256 = "2a0e5c4fc50b1ce43e56b1a11056186c21d565e225da36f90c58f8c0a70f48b3"; - revision = "5"; - editedCabalFile = "a2da8be74560f47fd5fc7a5ff13849485e8bf4e8b4e4581091a6810904b64c76"; + revision = "6"; + editedCabalFile = "055ded567ebb0559690086233e053175df86dc614cd3fa172c5efdaf4aaf0489"; libraryHaskellDepends = [ aeson base base-compat base64-bytestring bytestring colour containers data-default-class http-types kansas-comet mime-types @@ -41840,7 +41402,6 @@ self: { homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blas-hs" = callPackage @@ -41855,7 +41416,6 @@ self: { homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas;}; "blastxml" = callPackage @@ -42012,6 +41572,7 @@ self: { streaming-commons transformers ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/meiersi/blaze-builder-enumerator"; description = "Enumeratees for the incremental conversion of builders to bytestrings"; license = stdenv.lib.licenses.bsd3; @@ -42165,7 +41726,6 @@ self: { homepage = "https://github.com/egonSchiele/blaze-html-contrib"; description = "Some contributions to add handy things to blaze html"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-hexpat" = callPackage @@ -42179,7 +41739,6 @@ self: { homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blaze-html-truncate" = callPackage @@ -42453,7 +42012,6 @@ self: { homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blazeMarker" = callPackage @@ -42465,7 +42023,6 @@ self: { libraryHaskellDepends = [ base blaze-html blaze-markup ]; description = "..."; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blink1" = callPackage @@ -42500,7 +42057,6 @@ self: { homepage = "https://github.com/bjpop/blip"; description = "Python to bytecode compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bliplib" = callPackage @@ -42550,7 +42106,6 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound_0_4_0_2" = callPackage @@ -42696,7 +42251,6 @@ self: { homepage = "https://github.com/bitemyapp/bloodhound"; description = "ElasticSearch client library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound-amazonka-auth" = callPackage @@ -42719,7 +42273,6 @@ self: { homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -42758,7 +42311,28 @@ self: { ]; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "blosum" = callPackage + ({ mkDerivation, base, containers, fasta, lens + , optparse-applicative, pipes, pipes-text, split, text, text-show + }: + mkDerivation { + pname = "blosum"; + version = "0.1.1.1"; + sha256 = "d74cf68e2c68ed539160735cc7928de6086b6d059be744ac4caba2b5664c0788"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers fasta lens text text-show + ]; + executableHaskellDepends = [ + base containers fasta optparse-applicative pipes pipes-text split + text + ]; + homepage = "http://github.com/GregorySchwartz/blosum#readme"; + description = "BLOSUM generator"; + license = stdenv.lib.licenses.gpl2; }) {}; "bloxorz" = callPackage @@ -42772,7 +42346,6 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber" = callPackage @@ -42792,7 +42365,6 @@ self: { homepage = "https://secure.plaimi.net/games/blubber.html"; description = "The blubber client; connects to the blubber server"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber-server" = callPackage @@ -42837,7 +42409,6 @@ self: { homepage = "http://www.bluetile.org/"; description = "full-featured tiling for the GNOME desktop environment"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "bluetileutils" = callPackage @@ -42852,7 +42423,6 @@ self: { jailbreak = true; description = "Utilities for Bluetile"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blunt" = callPackage @@ -42885,6 +42455,7 @@ self: { version = "1.2.5.2"; sha256 = "bdd8681204d79176a974100958a020bb65471752ae7819e5fad7856abd700839"; libraryHaskellDepends = [ base binary bytestring ]; + jailbreak = true; homepage = "http://code.ouroborus.net/bmp"; description = "Read and write uncompressed BMP image files"; license = stdenv.lib.licenses.mit; @@ -42914,7 +42485,6 @@ self: { homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bogre-banana" = callPackage @@ -42932,7 +42502,6 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond" = callPackage @@ -42964,7 +42533,6 @@ self: { homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond-haskell" = callPackage @@ -42988,7 +42556,6 @@ self: { homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Runtime support for BOND serialization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond-haskell-compiler" = callPackage @@ -43010,7 +42577,6 @@ self: { homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Bond code generator for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -43054,7 +42620,6 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boolexpr" = callPackage @@ -43088,7 +42653,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Simplification tools for simple propositional formulas"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "boomange" = callPackage @@ -43104,6 +42668,7 @@ self: { executableHaskellDepends = [ base containers descrilo directory filepath simtreelo ]; + jailbreak = true; description = "A Bookmarks manager with a HTML generator"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -43153,7 +42718,6 @@ self: { jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "borel" = callPackage @@ -43187,7 +42751,6 @@ self: { homepage = "https://github.com/anchor/borel-core"; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bot" = callPackage @@ -43200,16 +42763,29 @@ self: { homepage = "http://haskell.org/haskellwiki/Bot"; description = "bots for functional reactive programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "both" = callPackage + "both_0_1_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "both"; version = "0.1.0.0"; sha256 = "f30b3c55ade901bd6d15d4e359d7a58e5a44b44e4891d0c766731fd6879314fe"; libraryHaskellDepends = [ base ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/both"; + description = "Like Maybe, but with a different Monoid instance"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "both" = callPackage + ({ mkDerivation, base, semigroups, zero }: + mkDerivation { + pname = "both"; + version = "0.1.1.0"; + sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; + libraryHaskellDepends = [ base semigroups zero ]; homepage = "https://github.com/barrucadu/both"; description = "Like Maybe, but with a different Monoid instance"; license = stdenv.lib.licenses.mit; @@ -43412,10 +42988,10 @@ self: { executableHaskellDepends = [ base containers GLUT hosc hsc3 random ]; + jailbreak = true; homepage = "http://code.mathr.co.uk/bowntz"; description = "audio-visual pseudo-physical simulation of colliding circles"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "boxes" = callPackage @@ -43474,6 +43050,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ array base mtl ]; executableHaskellDepends = [ array base mtl unix ]; + jailbreak = true; description = "Brainfuck interpreter"; license = "GPL"; }) {}; @@ -43511,6 +43088,7 @@ self: { version = "1.0.0"; sha256 = "55083f86c32ca20519605bd37e847e3c6e07aeab622395c18e9fc470146cd895"; libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; description = "Break from a loop"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -43527,7 +43105,6 @@ self: { homepage = "http://github.com/Peaker/breakout/tree/master"; description = "A simple Breakout game implementation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "breve" = callPackage @@ -43551,7 +43128,6 @@ self: { homepage = "https://github.com/rnhmjoj/breve"; description = "a url shortener"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "brians-brain" = callPackage @@ -43566,7 +43142,6 @@ self: { homepage = "http://github.com/willdonnelly/brians-brain"; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brick_0_3_1" = callPackage @@ -43593,7 +43168,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "brick" = callPackage + "brick_0_4_1" = callPackage ({ mkDerivation, base, containers, contravariant, data-default , deepseq, lens, template-haskell, text, text-zipper, transformers , vector, vty @@ -43614,23 +43189,24 @@ self: { homepage = "https://github.com/jtdaugherty/brick/"; description = "A declarative terminal user interface library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "brick_0_6_4" = callPackage + "brick" = callPackage ({ mkDerivation, base, containers, contravariant, data-default - , deepseq, microlens, microlens-th, template-haskell, text - , text-zipper, transformers, vector, vty + , deepseq, microlens, microlens-mtl, microlens-th, template-haskell + , text, text-zipper, transformers, vector, vty }: mkDerivation { pname = "brick"; - version = "0.6.4"; - sha256 = "6a90f5c5c3cdbb2426a880cc5ae25637bc48dcb6eb78288e6ad33cc18ca4f4eb"; + version = "0.7"; + sha256 = "99547ab0ebbe3cf298466d4084802a40c3a2bf2021d491f064a39e309d2e596b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers contravariant data-default deepseq microlens - microlens-th template-haskell text text-zipper transformers vector - vty + microlens-mtl microlens-th template-haskell text text-zipper + transformers vector vty ]; executableHaskellDepends = [ base data-default microlens microlens-th text vector vty @@ -43638,7 +43214,6 @@ self: { homepage = "https://github.com/jtdaugherty/brick/"; description = "A declarative terminal user interface library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brillig" = callPackage @@ -43660,7 +43235,6 @@ self: { jailbreak = true; description = "Simple part of speech tagger"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "broadcast-chan" = callPackage @@ -43696,10 +43270,10 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ broker ]; testHaskellDepends = [ base bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/capn-freako/broker-haskell"; description = "Haskell bindings to Broker, Bro's messaging library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {broker = null;}; "bsd-sysctl" = callPackage @@ -43711,7 +43285,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson_0_3_1" = callPackage @@ -43783,6 +43356,7 @@ self: { QuickCheck test-framework test-framework-quickcheck2 text time ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "http://github.com/mongodb-haskell/bson"; description = "BSON documents are JSON-like objects with a standard binary encoding"; @@ -43811,7 +43385,6 @@ self: { jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bson-lens" = callPackage @@ -43839,7 +43412,6 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bspack" = callPackage @@ -43892,7 +43464,6 @@ self: { homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "btrfs_0_1_1_1" = callPackage @@ -43924,7 +43495,6 @@ self: { homepage = "https://github.com/redneb/hs-btrfs"; description = "Bindings to the btrfs API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "buffer-builder_0_2_4_0" = callPackage @@ -43972,7 +43542,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "buffer-builder" = callPackage + "buffer-builder_0_2_4_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HTF, mtl, quickcheck-instances, text , unordered-containers, vector @@ -43991,10 +43561,10 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "buffer-builder_0_2_4_3" = callPackage + "buffer-builder" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, criterion , deepseq, HTF, mtl, quickcheck-instances, text , unordered-containers, vector @@ -44013,7 +43583,6 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buffer-builder-aeson" = callPackage @@ -44039,7 +43608,6 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buffer-pipe" = callPackage @@ -44067,10 +43635,10 @@ self: { base monad-primitive mwc-random mwc-random-monad primitive transformers ]; + jailbreak = true; homepage = "https://github.com/derekelkins/buffon"; description = "An implementation of Buffon machines"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bugzilla" = callPackage @@ -44121,6 +43689,7 @@ self: { base bytestring containers directory exceptions mtl old-locale pretty process stm temporary text time ]; + jailbreak = true; homepage = "http://code.ouroborus.net/buildbox"; description = "Rehackable components for writing buildbots and test harnesses"; license = stdenv.lib.licenses.bsd3; @@ -44139,7 +43708,6 @@ self: { homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buildwrapper" = callPackage @@ -44179,7 +43747,6 @@ self: { homepage = "https://github.com/JPMoresmau/BuildWrapper"; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bullet" = callPackage @@ -44194,7 +43761,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bullet"; description = "A wrapper for the Bullet physics engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bullet;}; "bumper_0_6_0_2" = callPackage @@ -44261,7 +43827,6 @@ self: { libraryHaskellDepends = [ base bytestring errors serialport transformers ]; - jailbreak = true; homepage = "http://www.github.com/bgamari/bus-pirate"; description = "Haskell interface to the Bus Pirate binary interface"; license = stdenv.lib.licenses.bsd3; @@ -44283,7 +43848,6 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-gtk" = callPackage @@ -44301,7 +43865,6 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "buster-network" = callPackage @@ -44319,7 +43882,6 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bustle_0_5_2" = callPackage @@ -44403,7 +43965,6 @@ self: { homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; description = "Draw sequence diagrams of D-Bus traffic"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {system-glib = pkgs.glib;}; "butterflies" = callPackage @@ -44425,7 +43986,6 @@ self: { homepage = "http://code.mathr.co.uk/butterflies"; description = "butterfly tilings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bv" = callPackage @@ -44457,6 +44017,7 @@ self: { terminfo-hs text transformers ]; executableHaskellDepends = [ base text ]; + jailbreak = true; homepage = "http://github.com/pjones/byline"; description = "Library for creating command-line interfaces (colors, menus, etc.)"; license = stdenv.lib.licenses.bsd2; @@ -44471,7 +44032,6 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "byteable" = callPackage @@ -44620,6 +44180,7 @@ self: { void ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/ekmett/bytes"; description = "Sharing code for serialization between binary and cereal"; license = stdenv.lib.licenses.bsd3; @@ -44628,9 +44189,8 @@ self: { "bytes" = callPackage ({ mkDerivation, base, binary, bytestring, cereal, containers - , directory, doctest, filepath, hashable, mtl, scientific, text - , time, transformers, transformers-compat, unordered-containers - , void + , hashable, mtl, scientific, text, time, transformers + , transformers-compat, unordered-containers, void }: mkDerivation { pname = "bytes"; @@ -44641,7 +44201,6 @@ self: { text time transformers transformers-compat unordered-containers void ]; - testHaskellDepends = [ base directory doctest filepath ]; homepage = "https://github.com/ekmett/bytes"; description = "Sharing code for serialization between binary and cereal"; license = stdenv.lib.licenses.bsd3; @@ -44687,6 +44246,7 @@ self: { sha256 = "248378d6a7b75e8b9cbadcb3793ddcb17bd1ef7b36ffce02dc99ff11ef49c92b"; libraryHaskellDepends = [ base bytestring cryptohash QuickCheck ]; testHaskellDepends = [ base bytestring cryptohash QuickCheck ]; + jailbreak = true; homepage = "https://github.com/tsuraan/bytestring-arbitrary"; description = "Arbitrary instances for ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -44752,7 +44312,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bytestring-builder" = callPackage + "bytestring-builder_0_10_6_0_0" = callPackage ({ mkDerivation, base, bytestring, deepseq }: mkDerivation { pname = "bytestring-builder"; @@ -44762,9 +44322,10 @@ self: { doHaddock = false; description = "The new bytestring builder, packaged outside of GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bytestring-builder_0_10_8_1_0" = callPackage + "bytestring-builder" = callPackage ({ mkDerivation, base, bytestring, deepseq }: mkDerivation { pname = "bytestring-builder"; @@ -44774,7 +44335,6 @@ self: { doHaddock = false; description = "The new bytestring builder, packaged outside of GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-class" = callPackage @@ -44789,7 +44349,6 @@ self: { jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-conversion_0_3_0" = callPackage @@ -44843,7 +44402,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-delta" = callPackage @@ -44876,7 +44434,7 @@ self: { license = "unknown"; }) {}; - "bytestring-handle" = callPackage + "bytestring-handle_0_1_0_3" = callPackage ({ mkDerivation, base, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -44894,9 +44452,10 @@ self: { homepage = "http://hub.darcs.net/ganesh/bytestring-handle"; description = "ByteString-backed Handles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bytestring-handle_0_1_0_4" = callPackage + "bytestring-handle" = callPackage ({ mkDerivation, base, bytestring, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 }: @@ -44909,10 +44468,10 @@ self: { base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + doCheck = false; homepage = "http://hub.darcs.net/ganesh/bytestring-handle"; description = "ByteString-backed Handles"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-lexing_0_4_3_2" = callPackage @@ -44990,6 +44549,7 @@ self: { libraryHaskellDepends = [ base bytestring deepseq ghc-prim hashable ]; + jailbreak = true; homepage = "https://github.com/hvr/bytestring-plain"; description = "Plain byte strings ('ForeignPtr'-less 'ByteString's)"; license = stdenv.lib.licenses.bsd3; @@ -45023,6 +44583,7 @@ self: { base bytestring terminal-progress-bar time ]; doHaddock = false; + jailbreak = true; homepage = "http://github.com/acw/bytestring-progress"; description = "A library for tracking the consumption of a lazy ByteString"; license = stdenv.lib.licenses.bsd3; @@ -45039,6 +44600,7 @@ self: { base bytestring terminal-progress-bar time ]; doHaddock = false; + jailbreak = true; homepage = "http://github.com/acw/bytestring-progress"; description = "A library for tracking the consumption of a lazy ByteString"; license = stdenv.lib.licenses.bsd3; @@ -45058,6 +44620,7 @@ self: { testHaskellDepends = [ base bytestring doctest tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/philopon/bytestring-read"; description = "fast ByteString to number converting library"; license = stdenv.lib.licenses.mit; @@ -45076,7 +44639,6 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestring-short" = callPackage @@ -45102,11 +44664,34 @@ self: { libraryHaskellDepends = [ array base binary bytestring containers integer-gmp ]; + jailbreak = true; homepage = "http://code.haskell.org/~dolio/"; description = "Efficient conversion of values into readable byte strings"; license = stdenv.lib.licenses.bsd3; }) {}; + "bytestring-tree-builder_0_2_6" = callPackage + ({ mkDerivation, base, base-prelude, bytestring, QuickCheck + , quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, text + }: + mkDerivation { + pname = "bytestring-tree-builder"; + version = "0.2.6"; + sha256 = "2b0dae2d0576355a3310bffe5c11fe89fbaf1426edc89d0f4074455d6a9da53f"; + libraryHaskellDepends = [ + base base-prelude bytestring semigroups text + ]; + testHaskellDepends = [ + base-prelude bytestring QuickCheck quickcheck-instances tasty + tasty-hunit tasty-quickcheck tasty-smallcheck + ]; + homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; + description = "A very efficient ByteString builder implementation based on the binary tree"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "bytestring-tree-builder" = callPackage ({ mkDerivation, base, base-prelude, bytestring, QuickCheck , quickcheck-instances, semigroups, tasty, tasty-hunit @@ -45114,8 +44699,8 @@ self: { }: mkDerivation { pname = "bytestring-tree-builder"; - version = "0.2.6"; - sha256 = "2b0dae2d0576355a3310bffe5c11fe89fbaf1426edc89d0f4074455d6a9da53f"; + version = "0.2.7"; + sha256 = "1d62f411de750723b3b72bc3b60e288b3d2b52c0e982cff332544e2a7fe7a003"; libraryHaskellDepends = [ base base-prelude bytestring semigroups text ]; @@ -45162,7 +44747,6 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bytestringparser-temporary" = callPackage @@ -45185,7 +44769,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bzlib_0_5_0_4" = callPackage @@ -45260,7 +44843,6 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "c-storable-deriving" = callPackage @@ -45496,6 +45078,7 @@ self: { testHaskellDepends = [ base directory filepath Glob process tasty tasty-golden ]; + jailbreak = true; description = "A command line program for managing the bounds/versions of the dependencies in a cabal file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45518,6 +45101,7 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base filepath tasty tasty-golden ]; + jailbreak = true; description = "A command line program for extracting compiler arguments from a cabal file"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -45535,7 +45119,6 @@ self: { homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-db" = callPackage @@ -45769,7 +45352,6 @@ self: { homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dir" = callPackage @@ -45807,6 +45389,7 @@ self: { version = "0.1.0.1"; sha256 = "0e71145e966f450737f1598e20964e9453f64b69f6459a9dfa4a015e7ea57d8e"; libraryHaskellDepends = [ base Cabal ghc transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/cabal-ghc-dynflags"; description = "Conveniently configure GHC's dynamic flags for use with Cabal projects"; license = stdenv.lib.licenses.bsd3; @@ -45827,7 +45410,6 @@ self: { homepage = "http://github.com/atnnn/cabal-ghci"; description = "Set up ghci with options taken from a .cabal file"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-graphdeps" = callPackage @@ -45846,7 +45428,6 @@ self: { homepage = "https://john-millikin.com/software/cabal-graphdeps/"; description = "Generate graphs of install-time Cabal dependencies"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-helper_0_6_2_0" = callPackage @@ -45871,6 +45452,7 @@ self: { base bytestring Cabal directory extra filepath ghc-prim mtl process template-haskell temporary transformers unix utf8-string ]; + jailbreak = true; doCheck = false; description = "Simple interface to some of Cabal's configuration state used by ghc-mod"; license = stdenv.lib.licenses.agpl3; @@ -45899,13 +45481,14 @@ self: { base bytestring Cabal directory extra filepath ghc-prim mtl process template-haskell temporary transformers unix utf8-string ]; + 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-helper" = callPackage + "cabal-helper_0_6_3_1" = callPackage ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory , extra, filepath, ghc-prim, mtl, process, template-haskell , temporary, transformers, unix, utf8-string @@ -45928,12 +45511,14 @@ 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-helper_0_7_1_0" = callPackage + "cabal-helper" = callPackage ({ mkDerivation, base, bytestring, Cabal, cabal-install, directory , extra, filepath, ghc-prim, mtl, process, template-haskell , temporary, transformers, unix, utf8-string @@ -45959,7 +45544,6 @@ self: { 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 @@ -45978,6 +45562,7 @@ self: { executableHaskellDepends = [ base Cabal filepath optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/barrucadu/cabal-info"; description = "Read information from cabal files"; license = stdenv.lib.licenses.mit; @@ -46229,6 +45814,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir $out/etc @@ -46264,6 +45850,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir $out/etc @@ -46276,7 +45863,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "cabal-install" = callPackage + "cabal-install_1_22_9_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, extensible-exceptions, filepath, HTTP, HUnit, mtl , network, network-uri, pretty, process, QuickCheck, random @@ -46299,6 +45886,7 @@ self: { pretty process QuickCheck regex-posix stm test-framework test-framework-hunit test-framework-quickcheck2 time unix zlib ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir $out/etc @@ -46307,10 +45895,11 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "cabal-install_1_24_0_0" = callPackage + "cabal-install" = callPackage ({ mkDerivation, array, async, base, base16-bytestring, binary , bytestring, Cabal, containers, cryptohash-sha256, directory , filepath, hackage-security, hashable, HTTP, mtl, network @@ -46338,7 +45927,7 @@ self: { pretty process QuickCheck random regex-posix stm tagged tar tasty tasty-hunit tasty-quickcheck time unix zlib ]; - jailbreak = true; + doCheck = false; postInstall = '' mkdir $out/etc mv bash-completion $out/etc/bash_completion.d @@ -46346,7 +45935,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; @@ -46367,7 +45955,6 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -46389,7 +45976,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-install-ghc74" = callPackage @@ -46411,7 +45997,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-lenses" = callPackage @@ -46426,6 +46011,7 @@ self: { base Cabal either lens strict system-fileio system-filepath text transformers unordered-containers ]; + jailbreak = true; description = "Lenses and traversals for the Cabal library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46452,6 +46038,7 @@ self: { base Cabal containers directory filepath HUnit process temporary test-framework test-framework-hunit text ]; + jailbreak = true; homepage = "http://github.com/danfran/cabal-macosx"; description = "Cabal support for creating Mac OSX application bundles"; license = stdenv.lib.licenses.bsd3; @@ -46545,7 +46132,6 @@ self: { homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-rpm_0_9_4" = callPackage @@ -46561,6 +46147,7 @@ self: { executableHaskellDepends = [ base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46580,6 +46167,7 @@ self: { executableHaskellDepends = [ base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46587,8 +46175,8 @@ self: { }) {}; "cabal-rpm_0_9_5_1" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46597,8 +46185,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46606,8 +46195,8 @@ self: { }) {}; "cabal-rpm_0_9_6" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46616,8 +46205,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46625,8 +46215,8 @@ self: { }) {}; "cabal-rpm_0_9_7" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46635,8 +46225,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46644,8 +46235,8 @@ self: { }) {}; "cabal-rpm_0_9_8" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46654,8 +46245,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46663,8 +46255,8 @@ self: { }) {}; "cabal-rpm_0_9_9" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46673,8 +46265,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46682,8 +46275,8 @@ self: { }) {}; "cabal-rpm_0_9_10" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, process, time - , unix + ({ mkDerivation, base, Cabal, directory, filepath, old-locale + , process, time, unix }: mkDerivation { pname = "cabal-rpm"; @@ -46692,8 +46285,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base Cabal directory filepath process time unix + base Cabal directory filepath old-locale process time unix ]; + jailbreak = true; homepage = "https://github.com/juhp/cabal-rpm"; description = "RPM packaging tool for Haskell Cabal-based packages"; license = stdenv.lib.licenses.gpl3; @@ -46742,7 +46336,6 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The user interface for building and installing Cabal packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-sign" = callPackage @@ -46762,7 +46355,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "cabal-sort" = callPackage + "cabal-sort_0_0_5_2" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , explicit-exception, fgl, filepath, process, transformers , utility-ht @@ -46777,6 +46370,27 @@ self: { base bytestring Cabal containers directory explicit-exception fgl filepath process transformers utility-ht ]; + jailbreak = true; + description = "Topologically sort cabal packages"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cabal-sort" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, directory + , explicit-exception, fgl, filepath, process, transformers + , utility-ht + }: + mkDerivation { + pname = "cabal-sort"; + version = "0.0.5.3"; + sha256 = "0c7bd60b1919edae4844850ce9f88a39c647b3911b3fda221cbf2c288f9c228c"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring Cabal containers directory explicit-exception fgl + filepath process transformers utility-ht + ]; description = "Topologically sort cabal packages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -46917,7 +46531,6 @@ self: { ]; description = "Automated test tool for cabal projects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-test-bin" = callPackage @@ -46970,6 +46583,7 @@ self: { version = "0.1.6"; sha256 = "71c52f6439610ce48f67c86bd22a6f23808dfb21384c97135dae7538c7dfce65"; libraryHaskellDepends = [ base Cabal QuickCheck ]; + jailbreak = true; homepage = "https://github.com/zmthy/cabal-test-quickcheck"; description = "QuickCheck for Cabal"; license = stdenv.lib.licenses.mit; @@ -47000,7 +46614,6 @@ self: { jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2arch" = callPackage @@ -47020,7 +46633,6 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Create Arch Linux packages from Cabal packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2doap" = callPackage @@ -47038,7 +46650,6 @@ self: { homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2ebuild" = callPackage @@ -47072,7 +46683,6 @@ self: { ]; description = "A tool to generate .ghci file from .cabal"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal2nix" = callPackage @@ -47117,7 +46727,6 @@ self: { homepage = "https://fedorahosted.org/cabal2spec/"; description = "Generates RPM Spec files from cabal files"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalQuery" = callPackage @@ -47171,7 +46780,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalmdvrpm" = callPackage @@ -47187,7 +46795,6 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0"; description = "Create mandriva rpm from cabal package"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalrpmdeps" = callPackage @@ -47203,7 +46810,6 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary"; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -47248,7 +46854,6 @@ self: { testHaskellDepends = [ base text-format ]; homepage = "http://github.com/pecorarista/hscabocha"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cabocha = null;}; "cached-io" = callPackage @@ -47429,7 +47034,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; - "cairo" = callPackage + "cairo_0_13_1_1" = callPackage ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools , mtl, text, utf8-string }: @@ -47445,25 +47050,24 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; - "cairo_0_13_2_0" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools - , mtl, text, utf8-string + "cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, mtl, text + , utf8-string }: mkDerivation { pname = "cairo"; - version = "0.13.2.0"; - sha256 = "4d08ffd7979bac6c39a8143dad353f966d268719817c0230c9138146d977c104"; + version = "0.13.3.0"; + sha256 = "fe895ad001228f56b167ab76de1d645f46966062544bf831b0fb9fa7e938ff08"; libraryHaskellDepends = [ array base bytestring mtl text utf8-string ]; libraryPkgconfigDepends = [ cairo ]; - libraryToolDepends = [ gtk2hs-buildtools ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; "cairo-appbase" = callPackage @@ -47477,7 +47081,6 @@ self: { executableHaskellDepends = [ base cairo glib gtk ]; description = "A template for building new GUI applications using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cake" = callPackage @@ -47528,7 +47131,6 @@ self: { homepage = "https://github.com/grwlf/cake3"; description = "Third cake the Makefile EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cakyrespa" = callPackage @@ -47547,7 +47149,6 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/cakyrespa.html"; description = "run turtle like LOGO with lojban"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d" = callPackage @@ -47561,7 +47162,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -47577,7 +47177,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Examples for the Cal3d animation library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cal3d-opengl" = callPackage @@ -47591,7 +47190,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calc" = callPackage @@ -47605,7 +47203,6 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calculator" = callPackage @@ -47625,10 +47222,10 @@ self: { testHaskellDepends = [ base containers gtk parsec plot-gtk-ui QuickCheck ]; + jailbreak = true; homepage = "https://github.com/sumitsahrawat/calculator"; description = "A calculator repl, with variables, functions & Mathematica like dynamic plots"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "caldims" = callPackage @@ -47649,7 +47246,6 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caledon" = callPackage @@ -47669,7 +47265,6 @@ self: { homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call" = callPackage @@ -47697,7 +47292,6 @@ self: { homepage = "https://github.com/fumieval/call"; description = "The call game engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call-haskell-from-anything" = callPackage @@ -47717,7 +47311,6 @@ self: { homepage = "https://github.com/nh2/call-haskell-from-anything"; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "camfort" = callPackage @@ -47779,7 +47372,6 @@ self: { homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "canonical-filepath" = callPackage @@ -47832,6 +47424,7 @@ self: { filepath hslogger monad-logger template-haskell text time transformers yaml ]; + jailbreak = true; homepage = "https://github.com/SumAll/haskell-canteven-log"; description = "A canteven way of setting up logging for your program"; license = stdenv.lib.licenses.asl20; @@ -47876,7 +47469,6 @@ self: { homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cao" = callPackage @@ -47898,7 +47490,6 @@ self: { homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography"; description = "CAO Compiler"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cap" = callPackage @@ -47912,7 +47503,6 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "capped-list" = callPackage @@ -47939,7 +47529,6 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "car-pool" = callPackage @@ -47960,6 +47549,7 @@ self: { explicit-exception happstack-server non-empty spreadsheet text transformers utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/car-pool/"; description = "Simple web-server for organizing car-pooling for an event"; license = stdenv.lib.licenses.bsd3; @@ -47989,7 +47579,6 @@ self: { homepage = "https://github.com/Noeda/caramia/"; description = "High-level OpenGL bindings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "carboncopy" = callPackage @@ -48008,7 +47597,6 @@ self: { homepage = "http://github.com/jdevelop/carboncopy"; description = "Drop emails from threads being watched into special CC folder"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carettah" = callPackage @@ -48028,7 +47616,6 @@ self: { homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carray_0_1_6_2" = callPackage @@ -48190,7 +47777,6 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -48208,7 +47794,6 @@ self: { jailbreak = true; description = "low level bindings to casadi-control"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -48225,7 +47810,6 @@ self: { libraryPkgconfigDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -48239,7 +47823,6 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "low level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -48256,7 +47839,6 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -48273,7 +47855,6 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -48291,7 +47872,6 @@ self: { jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "case-conversion" = callPackage @@ -48387,15 +47967,13 @@ self: { "case-insensitive" = callPackage ({ mkDerivation, base, bytestring, deepseq, hashable, HUnit - , semigroups, test-framework, test-framework-hunit, text + , test-framework, test-framework-hunit, text }: mkDerivation { pname = "case-insensitive"; version = "1.2.0.6"; sha256 = "bc7b53517fefc475311bfe6dbab8ade47ab8df11a59079653aa3271e9ffcb1c4"; - libraryHaskellDepends = [ - base bytestring deepseq hashable semigroups text - ]; + libraryHaskellDepends = [ base bytestring deepseq hashable text ]; testHaskellDepends = [ base bytestring HUnit test-framework test-framework-hunit text ]; @@ -48458,7 +48036,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cases" = callPackage + "cases_0_1_3" = callPackage ({ mkDerivation, attoparsec, base, base-prelude, HTF, HUnit , loch-th, placeholders, QuickCheck, text }: @@ -48475,6 +48053,26 @@ self: { homepage = "https://github.com/nikita-volkov/cases"; description = "A converter for spinal, snake and camel cases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cases" = callPackage + ({ mkDerivation, attoparsec, base, base-prelude, HTF, HUnit + , loch-th, placeholders, QuickCheck, text + }: + mkDerivation { + pname = "cases"; + version = "0.1.3.1"; + sha256 = "472bd45f1e9361b250e1b48aeaa92494fce5283f4154856cb13d1a8376897987"; + libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; + testHaskellDepends = [ + base HTF HUnit loch-th placeholders QuickCheck text + ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/nikita-volkov/cases"; + description = "A converter for spinal, snake and camel cases"; + license = stdenv.lib.licenses.mit; }) {}; "cash" = callPackage @@ -48492,7 +48090,6 @@ self: { homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casing" = callPackage @@ -48537,6 +48134,7 @@ self: { MonadCatchIO-transformers mtl network resource-pool stm text time uuid ]; + jailbreak = true; description = "Haskell client for Cassandra's CQL protocol"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -48548,10 +48146,10 @@ self: { version = "0.8.5.1"; sha256 = "8c77b9c1f82a41e496201b42217984e7ca610897646953bc65dc59311e88b542"; libraryHaskellDepends = [ base bytestring containers Thrift ]; + jailbreak = true; homepage = "http://cassandra.apache.org/"; description = "thrift bindings to the cassandra database"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava_0_4_2_0" = callPackage @@ -48737,6 +48335,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/tibbe/cassava"; description = "A CSV parsing and encoding library"; license = stdenv.lib.licenses.bsd3; @@ -48764,6 +48363,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/tibbe/cassava"; description = "A CSV parsing and encoding library"; license = stdenv.lib.licenses.bsd3; @@ -48789,6 +48389,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unordered-containers vector ]; + doHaddock = false; homepage = "https://github.com/hvr/cassava"; description = "A CSV parsing and encoding library"; license = stdenv.lib.licenses.bsd3; @@ -48810,7 +48411,6 @@ self: { homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cassava-streams" = callPackage @@ -48873,7 +48473,6 @@ self: { homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "castle" = callPackage @@ -48908,7 +48507,6 @@ self: { homepage = "http://code.atnnn.com/projects/casui"; description = "Equation Manipulator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "catamorphism" = callPackage @@ -48918,6 +48516,7 @@ self: { version = "0.5.1.0"; sha256 = "782ea7852cbc3f092cb00ac48b5aeec4121fcde5b58718744d85f141416e18d2"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "https://github.com/frerich/catamorphism"; description = "A package exposing a helper function for generating catamorphisms"; license = stdenv.lib.licenses.bsd3; @@ -48934,7 +48533,6 @@ self: { homepage = "http://github.com/sonyandy/catch-fd"; description = "MonadThrow and MonadCatch, using functional dependencies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categorical-algebra" = callPackage @@ -48946,7 +48544,6 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "categories" = callPackage @@ -48987,7 +48584,6 @@ self: { homepage = "http://comonad.com/reader/"; description = "A meta-package documenting various packages inspired by category theory"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "category-printf" = callPackage @@ -48997,7 +48593,6 @@ self: { version = "0.1.1.0"; sha256 = "51b6e8bef10f4e17a11b553cd2ea04dca728f27f171464c14ffdf359abbd0ba5"; libraryHaskellDepends = [ base bytestring comonad text ]; - jailbreak = true; description = "Highbrow approach to type-safe printf format specifications"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49009,6 +48604,7 @@ self: { version = "0.1.0.1"; sha256 = "20dcb78f02c43f1dab7a7a4cb250404221dc46bbfe1075a3a200e72b77078701"; libraryHaskellDepends = [ base categories ]; + jailbreak = true; description = "Traced monoidal categories"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49044,6 +48640,7 @@ self: { http-conduit lens lens-aeson mtl text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/MichelBoucey/cayley-client"; description = "A Haskell client for the Cayley graph database"; license = stdenv.lib.licenses.bsd3; @@ -49064,13 +48661,14 @@ self: { http-conduit lens lens-aeson mtl text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/MichelBoucey/cayley-client"; description = "A Haskell client for the Cayley graph database"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cayley-client" = callPackage + "cayley-client_0_1_5_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, exceptions , http-client, http-conduit, lens, lens-aeson, mtl, text , transformers, unordered-containers, vector @@ -49084,12 +48682,14 @@ self: { http-conduit lens lens-aeson mtl text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/MichelBoucey/cayley-client"; description = "A Haskell client for the Cayley graph database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cayley-client_0_1_5_1" = callPackage + "cayley-client" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, exceptions , http-client, http-conduit, lens, lens-aeson, mtl, text , transformers, unordered-containers, vector @@ -49106,7 +48706,6 @@ self: { homepage = "https://github.com/MichelBoucey/cayley-client"; description = "A Haskell client for the Cayley graph database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cayley-dickson" = callPackage @@ -49139,9 +48738,9 @@ self: { filepath mtl optparse-applicative process safe stringsearch tar text transformers unix Unixutils utf8-string vector zlib ]; + jailbreak = true; description = "Tool to maintain a database of CABAL packages and their dependencies"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cci" = callPackage @@ -49162,7 +48761,6 @@ self: { ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cci = null;}; "ccnx" = callPackage @@ -49193,7 +48791,6 @@ self: { homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "cedict" = callPackage @@ -49212,7 +48809,6 @@ self: { jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cef" = callPackage @@ -49252,7 +48848,6 @@ self: { homepage = "https://github.com/anchor/ceilometer-common"; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -49267,7 +48862,6 @@ self: { jailbreak = true; description = "Cairo-based CellRenderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "cerberus" = callPackage @@ -49326,7 +48920,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cereal" = callPackage + "cereal_0_5_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, ghc-prim , QuickCheck, test-framework, test-framework-quickcheck2 }: @@ -49344,6 +48938,27 @@ self: { homepage = "https://github.com/GaloisInc/cereal"; description = "A binary serialization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cereal" = callPackage + ({ mkDerivation, array, base, bytestring, containers, ghc-prim + , QuickCheck, test-framework, test-framework-quickcheck2 + }: + mkDerivation { + pname = "cereal"; + version = "0.5.2.0"; + sha256 = "b50e77ad340d672d0f2c53ce526a088ecdf74f1ed34f6bb2f95deab725dd2b14"; + libraryHaskellDepends = [ + array base bytestring containers ghc-prim + ]; + testHaskellDepends = [ + base bytestring QuickCheck test-framework + test-framework-quickcheck2 + ]; + homepage = "https://github.com/GaloisInc/cereal"; + description = "A binary serialization library"; + license = stdenv.lib.licenses.bsd3; }) {}; "cereal-conduit_0_7_2_3" = callPackage @@ -49427,7 +49042,6 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -49441,7 +49055,6 @@ self: { homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-plus" = callPackage @@ -49467,7 +49080,6 @@ self: { homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-text" = callPackage @@ -49477,6 +49089,7 @@ self: { version = "0.1.0.1"; sha256 = "f86a00086d5f2cdfc652912a6e7e95946a414fedd1603549f50ead68d62757f3"; libraryHaskellDepends = [ base cereal text ]; + jailbreak = true; homepage = "https://github.com/ulikoehler/cereal-text"; description = "Data.Text instances for the cereal serialization library"; license = stdenv.lib.licenses.asl20; @@ -49516,7 +49129,6 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Certificates and Key Reader/Writer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cf" = callPackage @@ -49535,7 +49147,6 @@ self: { homepage = "http://github.com/mvr/cf"; description = "Exact real arithmetic using continued fractions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfipu" = callPackage @@ -49554,7 +49165,6 @@ self: { homepage = "https://github.com/bairyn/cfipu"; description = "cfipu processor for toy brainfuck-like language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cflp" = callPackage @@ -49574,7 +49184,6 @@ self: { homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html"; description = "Constraint Functional-Logic Programming in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cfopu" = callPackage @@ -49592,7 +49201,6 @@ self: { ]; description = "cfopu processor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cg" = callPackage @@ -49634,7 +49242,6 @@ self: { homepage = "http://anttisalonen.github.com/cgen"; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgi_3001_2_2_2" = callPackage @@ -49717,7 +49324,6 @@ self: { homepage = "http://github.com/chrisdone/haskell-cgi-utils"; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cgrep" = callPackage @@ -49729,8 +49335,8 @@ self: { }: mkDerivation { pname = "cgrep"; - version = "6.6.4"; - sha256 = "c192928788b336d23b549f4a9bacfae7f4698f3e76a148f2d9fa557465b7a54d"; + version = "6.6.9"; + sha256 = "723bf852fcd5174204bf9fee0909024ab0376e52275fca1b722d9e8dcac2e467"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -49788,7 +49394,6 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalkboard-viewer" = callPackage @@ -49802,7 +49407,6 @@ self: { homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chalmers-lava2000" = callPackage @@ -49866,7 +49470,6 @@ self: { homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "charset_0_3_7" = callPackage @@ -49913,7 +49516,6 @@ self: { homepage = "http://www.github.com/batterseapower/charsetdetect"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "charsetdetect-ae" = callPackage @@ -49926,7 +49528,6 @@ self: { homepage = "http://github.com/aelve/charsetdetect-ae"; description = "Character set detection using Mozilla's Universal Character Set Detector"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "chart-histogram" = callPackage @@ -49936,6 +49537,7 @@ self: { version = "1.1"; sha256 = "08900a6889b97a75cbcd94fc5ccc817dc63f5d30739ab2738611499d9841db69"; libraryHaskellDepends = [ base Chart ]; + jailbreak = true; description = "Easily render histograms with Chart"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -49996,7 +49598,6 @@ self: { homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chatty" = callPackage @@ -50012,6 +49613,7 @@ self: { ansi-terminal base chatty-utils directory mtl process random setenv template-haskell text time transformers unix ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Some monad transformers and typeclasses for abstraction of global dependencies"; license = stdenv.lib.licenses.agpl3; @@ -50024,6 +49626,7 @@ self: { version = "0.6.2.1"; sha256 = "820f5d1f6b7cc52430ee835ce0f7779b41987a6b492bee2466b957c03780c301"; libraryHaskellDepends = [ base chatty transformers ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; license = stdenv.lib.licenses.agpl3; @@ -50036,6 +49639,7 @@ self: { version = "0.7.3.3"; sha256 = "e966e3c04e31cba118a4dd5a3a695976b4e5aa03cafa8031c7305c1587ebf8ad"; libraryHaskellDepends = [ base mtl text transformers ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Some utilities every serious chatty-based application may need"; license = stdenv.lib.licenses.agpl3; @@ -50059,6 +49663,7 @@ self: { executableHaskellDepends = [ aeson base blaze-html bytestring http-types text wai wai-extra ]; + jailbreak = true; homepage = "http://github.com/jgm/cheapskate"; description = "Experimental markdown processor"; license = stdenv.lib.licenses.bsd3; @@ -50173,7 +49778,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checked" = callPackage @@ -50185,7 +49789,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "checkers_0_4_1" = callPackage @@ -50285,7 +49888,6 @@ self: { homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chell-quickcheck_0_2_4" = callPackage @@ -50344,7 +49946,6 @@ self: { jailbreak = true; description = "Query interface for Chevalier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chorale" = callPackage @@ -50363,7 +49964,6 @@ self: { homepage = "https://github.com/mocnik-science/chorale"; description = "A module containing basic functions that the prelude does not offer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp" = callPackage @@ -50380,7 +49980,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-mtl" = callPackage @@ -50394,7 +49993,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-plus" = callPackage @@ -50412,7 +50010,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-spec" = callPackage @@ -50430,7 +50027,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chp-transformers" = callPackage @@ -50444,7 +50040,6 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chronograph" = callPackage @@ -50495,7 +50090,6 @@ self: { homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunked-data_0_1_0_1" = callPackage @@ -50546,7 +50140,6 @@ self: { homepage = "http://www.wellquite.org/chunks/"; description = "Simple template library with static safety"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunky" = callPackage @@ -50588,7 +50181,6 @@ self: { homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cinvoke" = callPackage @@ -50602,7 +50194,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/cinvoke"; description = "A binding to cinvoke"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cinvoke = null;}; "cio" = callPackage @@ -50615,7 +50206,6 @@ self: { homepage = "https://github.com/nikita-volkov/cio"; description = "A monad for concurrent IO on a thread pool"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cipher-aes_0_2_9" = callPackage @@ -50860,6 +50450,7 @@ self: { version = "0.1.0.4"; sha256 = "fbf504b60e14397bb3e45a087e741e579d66018eb83f986c25ff2c39e1f7daeb"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Simple heuristic for packing discs of varying radii in a circle"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -50927,7 +50518,6 @@ self: { homepage = "https://github.com/nushio3/citation-resolve"; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs" = callPackage @@ -50948,7 +50538,6 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -50969,7 +50558,6 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs-pandoc-filter/"; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cityhash" = callPackage @@ -50988,7 +50576,6 @@ self: { homepage = "http://github.com/thoughtpolice/hs-cityhash"; description = "Bindings to CityHash"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cjk" = callPackage @@ -51006,7 +50593,6 @@ self: { homepage = "http://github.com/batterseapower/cjk"; description = "Data about Chinese, Japanese and Korean characters and languages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clac" = callPackage @@ -51061,7 +50647,6 @@ self: { homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferIG" = callPackage @@ -51091,10 +50676,10 @@ self: { array base clafer cmdargs directory filepath HUnit tasty tasty-hunit tasty-th transformers transformers-compat ]; + jailbreak = true; homepage = "http://clafer.org"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "claferwiki" = callPackage @@ -51111,10 +50696,10 @@ self: { network-uri process SHA split time transformers transformers-compat utf8-string ]; + jailbreak = true; homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clang-pure" = callPackage @@ -51130,6 +50715,7 @@ self: { template-haskell vector ]; librarySystemDepends = [ clang ]; + jailbreak = true; description = "Pure C++ code analysis with libclang"; license = stdenv.lib.licenses.asl20; hydraPlatforms = stdenv.lib.platforms.none; @@ -51146,6 +50732,7 @@ self: { executableHaskellDepends = [ base bytestring directory safe strict time ]; + jailbreak = true; description = "Command-line spaced-repetition software"; license = stdenv.lib.licenses.mit; }) {}; @@ -51163,6 +50750,7 @@ self: { aeson base bytestring containers easy-file HTTP http-client lens lens-aeson scientific text unordered-containers vector wreq ]; + jailbreak = true; description = "API Client for the Clarifai API"; license = stdenv.lib.licenses.mit; }) {}; @@ -51186,7 +50774,6 @@ self: { homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-ghc_0_5_11" = callPackage @@ -51326,6 +50913,7 @@ self: { haskeline lens mtl process text 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; @@ -51353,6 +50941,7 @@ self: { haskeline lens mtl process text 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; @@ -51380,6 +50969,7 @@ self: { haskeline lens mtl process text 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; @@ -51407,6 +50997,7 @@ self: { haskeline lens mtl process text 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; @@ -51434,6 +51025,7 @@ self: { haskeline lens mtl process text 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; @@ -51461,6 +51053,7 @@ self: { haskeline lens mtl process text 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; @@ -51488,6 +51081,7 @@ self: { 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; @@ -51797,7 +51391,6 @@ self: { ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-extra, ghc-typelits-natnormalise, Glob, integer-gmp , lens, QuickCheck, reflection, singletons, template-haskell - , th-lift }: mkDerivation { pname = "clash-prelude"; @@ -51806,7 +51399,7 @@ self: { libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection - singletons template-haskell th-lift + singletons template-haskell ]; testHaskellDepends = [ base doctest Glob ]; jailbreak = true; @@ -51819,7 +51412,7 @@ self: { "clash-prelude_0_10_5" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens - , QuickCheck, reflection, singletons, template-haskell, th-lift + , QuickCheck, reflection, singletons, template-haskell }: mkDerivation { pname = "clash-prelude"; @@ -51828,7 +51421,7 @@ self: { libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection - singletons template-haskell th-lift + singletons template-haskell ]; testHaskellDepends = [ base doctest ]; jailbreak = true; @@ -51841,7 +51434,7 @@ self: { "clash-prelude_0_10_6" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens - , QuickCheck, reflection, singletons, template-haskell, th-lift + , QuickCheck, reflection, singletons, template-haskell }: mkDerivation { pname = "clash-prelude"; @@ -51850,7 +51443,7 @@ self: { libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection - singletons template-haskell th-lift + singletons template-haskell ]; testHaskellDepends = [ base doctest ]; jailbreak = true; @@ -51863,7 +51456,7 @@ self: { "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, th-lift + , QuickCheck, reflection, singletons, template-haskell }: mkDerivation { pname = "clash-prelude"; @@ -51872,9 +51465,10 @@ self: { libraryHaskellDepends = [ array base data-default ghc-prim ghc-typelits-extra ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection - singletons template-haskell th-lift + singletons template-haskell ]; testHaskellDepends = [ base doctest ]; + doCheck = false; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - Prelude library"; license = stdenv.lib.licenses.bsd2; @@ -51890,7 +51484,6 @@ self: { jailbreak = true; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-systemverilog_0_5_7" = callPackage @@ -53355,6 +52948,7 @@ 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; @@ -53425,7 +53019,6 @@ self: { homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -53520,6 +53113,7 @@ self: { tagsoup template-haskell text time time-locale-compat uuid web-plugins web-routes web-routes-happstack web-routes-th ]; + jailbreak = true; homepage = "http://www.clckwrks.com/"; description = "support for CMS/Blogging in clckwrks"; license = stdenv.lib.licenses.bsd3; @@ -53570,7 +53164,6 @@ self: { homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cld2" = callPackage @@ -53585,7 +53178,6 @@ self: { homepage = "https://github.com/dfoxfranke/haskell-cld2"; description = "Haskell bindings to Google's Compact Language Detector 2"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "clean-home" = callPackage @@ -53650,7 +53242,6 @@ self: { homepage = "http://sandbox.pocoo.org/clevercss-hs/"; description = "A CSS preprocessor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cli" = callPackage @@ -53687,7 +53278,6 @@ self: { jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clientsession" = callPackage @@ -53745,7 +53335,6 @@ self: { homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippard" = callPackage @@ -53771,7 +53360,6 @@ self: { homepage = "https://github.com/chetant/clipper"; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clippings" = callPackage @@ -53796,7 +53384,6 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clist" = callPackage @@ -53806,6 +53393,7 @@ self: { version = "0.1.0.0"; sha256 = "eddf07964751b51550c5197f39cc772418b0fa7d2ad6cf762af589ce9bd973cb"; libraryHaskellDepends = [ base base-unicode-symbols peano ]; + jailbreak = true; homepage = "https://github.com/strake/clist.hs"; description = "Counted list"; license = "unknown"; @@ -53928,7 +53516,6 @@ self: { homepage = "http://patch-tag.com/r/shahn/clocked/home"; description = "timer functionality to clock IO commands"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {QtCore = null;}; "clogparse" = callPackage @@ -53945,7 +53532,6 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clone-all" = callPackage @@ -53967,7 +53553,6 @@ self: { homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "closure" = callPackage @@ -54006,7 +53591,6 @@ self: { homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cloudfront-signer" = callPackage @@ -54024,7 +53608,6 @@ self: { homepage = "http://github.com/cdornan/cloudfront-signer"; description = "CloudFront URL signer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudyfs" = callPackage @@ -54045,7 +53628,6 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cltw" = callPackage @@ -54078,7 +53660,6 @@ self: { homepage = "http://zwizwa.be/-/meta"; description = "C to Lua data wrapper generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clumpiness" = callPackage @@ -54102,7 +53683,6 @@ self: { homepage = "https://github.com/Kinokkory/cluss"; description = "simple alternative to type classes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clustering" = callPackage @@ -54143,7 +53723,6 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Tools for manipulating sequence clusters"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clutterhs" = callPackage @@ -54161,7 +53740,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs.gnome) pango;}; "cmaes" = callPackage @@ -54203,6 +53781,7 @@ self: { sha256 = "22f006ba36620476916c605b92de8e1f325eb2b5ebec6b30c12aee6220262330"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; + jailbreak = true; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; @@ -54217,6 +53796,7 @@ self: { sha256 = "e13a2889a74d6c9dd27bbd506b89f4ee8841c98aac36dd22f30a68863efa5446"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; + jailbreak = true; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; @@ -54231,6 +53811,7 @@ self: { sha256 = "757243bd8b479a29b60c39e549988e6003fc0744f827772ee91b4a58e48ecea4"; libraryHaskellDepends = [ base bytestring text ]; testHaskellDepends = [ base HUnit text ]; + jailbreak = true; homepage = "https://github.com/jgm/commonmark-hs"; description = "Fast, accurate CommonMark (Markdown) parser and renderer"; license = stdenv.lib.licenses.bsd3; @@ -54260,7 +53841,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/cmath"; description = "A binding to the standard C math library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmathml3" = callPackage @@ -54280,7 +53860,6 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmd-item" = callPackage @@ -54295,6 +53874,7 @@ self: { testHaskellDepends = [ base hspec hspec-laws HUnit QuickCheck quickcheck-instances text ]; + jailbreak = true; homepage = "https://github.com/geraud/cmd-item"; description = "Library to compose and reuse command line fragments"; license = stdenv.lib.licenses.mit; @@ -54376,7 +53956,6 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Helper to enter cmdargs command lines using a web browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmdlib" = callPackage @@ -54413,7 +53992,6 @@ self: { homepage = "http://github.com/eli-frey/cmdtheline"; description = "Declarative command-line option parsing and documentation library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cml" = callPackage @@ -54437,7 +54015,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cmph" = callPackage @@ -54456,7 +54033,6 @@ self: { testSystemDepends = [ cmph ]; description = "low level interface to CMPH"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cmph = null;}; "cmu" = callPackage @@ -54492,7 +54068,6 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cndict" = callPackage @@ -54505,7 +54080,6 @@ self: { homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "code-builder" = callPackage @@ -54536,6 +54110,7 @@ self: { aeson base binary binary-bits bytestring data-default-class mtl template-haskell text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/chpatrick/codec"; description = "First-class record construction and bidirectional serialization"; license = stdenv.lib.licenses.bsd3; @@ -54561,7 +54136,6 @@ self: { ]; description = "Cross-platform structure serialisation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codec-mbox" = callPackage @@ -54596,7 +54170,6 @@ self: { homepage = "https://github.com/guillaume-nargeot/codecov-haskell"; description = "Codecov.io support for Haskell."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codemonitor" = callPackage @@ -54616,7 +54189,6 @@ self: { homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codepad" = callPackage @@ -54632,7 +54204,6 @@ self: { homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codex_0_3_0_8" = callPackage @@ -54747,7 +54318,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "codex" = callPackage + "codex_0_4_0_10" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash , directory, either, filepath, hackage-db, http-client, lens , machines, machines-directory, MissingH, monad-loops, network @@ -54768,6 +54339,35 @@ self: { base bytestring Cabal directory either filepath hackage-db MissingH monad-loops network process transformers wreq yaml ]; + jailbreak = true; + homepage = "http://github.com/aloiscochard/codex"; + description = "A ctags file generator for cabal project dependencies"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "codex" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, cryptohash + , directory, either, filepath, hackage-db, http-client, lens + , machines, machines-directory, MissingH, monad-loops, network + , process, tar, text, transformers, wreq, yaml, zlib + }: + mkDerivation { + pname = "codex"; + version = "0.5.0.0"; + sha256 = "f516ed2f3751d3938e526aa61fb94a3553fbe6b6ffe76ed49fd442587e849984"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers cryptohash directory either + filepath hackage-db http-client lens machines machines-directory + process tar text transformers wreq yaml zlib + ]; + executableHaskellDepends = [ + base bytestring Cabal directory either filepath hackage-db MissingH + monad-loops network process transformers wreq yaml + ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; @@ -54824,7 +54424,31 @@ self: { homepage = "https://github.com/Cognimeta/cognimeta-utils"; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "coin" = callPackage + ({ mkDerivation, aeson, base, binary, bytestring, containers + , directory, filepath, glib, gtk3, hgettext, lens-simple + , monad-control, monad-logger, mtl, persistent, persistent-sqlite + , persistent-template, resourcet, setlocale, text, time + , transformers + }: + mkDerivation { + pname = "coin"; + version = "1.0"; + sha256 = "5eba9c5d527f0ee0da7f0f5678aedf2f8ef012abd4557796e8542201dbfb5572"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base binary bytestring containers directory filepath glib + gtk3 hgettext lens-simple monad-control monad-logger mtl persistent + persistent-sqlite persistent-template resourcet setlocale text time + transformers + ]; + jailbreak = true; + homepage = "https://bitbucket.org/borekpiotr/coin"; + description = "Simple account manager"; + license = "GPL"; }) {}; "coinbase-exchange" = callPackage @@ -54863,7 +54487,6 @@ self: { ]; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colada" = callPackage @@ -54889,7 +54512,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colchis" = callPackage @@ -54926,7 +54548,6 @@ self: { jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-types" = callPackage @@ -54943,7 +54564,6 @@ self: { jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collapse-util" = callPackage @@ -54986,7 +54606,6 @@ self: { jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-api" = callPackage @@ -54999,7 +54618,6 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "API for collection data structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collections-base-instances" = callPackage @@ -55016,7 +54634,6 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colock" = callPackage @@ -55052,7 +54669,6 @@ self: { homepage = "https://bitbucket.org/functionally/color-counter"; description = "Count colors in images"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colorize-haskell" = callPackage @@ -55112,7 +54728,6 @@ self: { homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "com" = callPackage @@ -55124,7 +54739,6 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat" = callPackage @@ -55145,7 +54759,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Generate and manipulate various combinatorial objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat-diagrams" = callPackage @@ -55163,7 +54776,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinator-interactive" = callPackage @@ -55187,7 +54799,6 @@ self: { homepage = "https://github.com/fumieval/combinator-interactive"; description = "SKI Combinator interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorial-problems" = callPackage @@ -55204,7 +54815,6 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellCombinatorialProblems"; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinatorics" = callPackage @@ -55250,6 +54860,7 @@ self: { testHaskellDepends = [ base containers QuickCheck transformers utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/comfort-graph"; description = "Graph structure with type parameters for nodes and edges"; license = stdenv.lib.licenses.bsd3; @@ -55293,6 +54904,7 @@ self: { libraryHaskellDepends = [ base containers mtl transformers ]; executableHaskellDepends = [ base containers ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/jsdw/hs-commander"; description = "pattern matching against string based commands"; license = stdenv.lib.licenses.bsd3; @@ -55319,7 +54931,6 @@ self: { jailbreak = true; description = "Library for working with commoditized amounts and price histories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec" = callPackage @@ -55335,7 +54946,6 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commsec-keyexchange" = callPackage @@ -55355,7 +54965,6 @@ self: { homepage = "https://github.com/TomMD/commsec-keyExchange"; description = "Key agreement for commsec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "commutative" = callPackage @@ -55389,6 +54998,7 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; @@ -55409,6 +55019,7 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; @@ -55429,6 +55040,7 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; @@ -55451,6 +55063,7 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; @@ -55473,13 +55086,14 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "comonad" = callPackage + "comonad_4_2_7_2" = callPackage ({ mkDerivation, base, containers, contravariant, directory , distributive, doctest, filepath, semigroups, tagged, transformers , transformers-compat @@ -55493,12 +55107,14 @@ self: { transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "comonad_5" = callPackage + "comonad" = callPackage ({ mkDerivation, base, containers, contravariant, directory , distributive, doctest, filepath, semigroups, tagged, transformers , transformers-compat @@ -55515,7 +55131,6 @@ self: { homepage = "http://github.com/ekmett/comonad/"; description = "Comonads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-extras" = callPackage @@ -55534,7 +55149,6 @@ self: { homepage = "http://github.com/ekmett/comonad-extras/"; description = "Exotic comonad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-random" = callPackage @@ -55547,7 +55161,6 @@ self: { jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -55589,7 +55202,6 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-socket" = callPackage @@ -55623,7 +55235,6 @@ self: { homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string-fix" = callPackage @@ -55638,24 +55249,42 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "compactmap" = callPackage + "compactmap_0_1_3_1" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: mkDerivation { pname = "compactmap"; version = "0.1.3.1"; sha256 = "14a6e2da9d41c4499a3d1e29c4259847062ec19ff5e3abc3f84861218d6195c3"; + revision = "1"; + editedCabalFile = "690ae520616ca16f21a514ff719c642bbfe21acbe95ecb83fd87dbc7ccdbc71c"; + libraryHaskellDepends = [ base vector ]; + testHaskellDepends = [ base containers hspec QuickCheck ]; + jailbreak = true; + description = "A read-only memory-efficient key-value store"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "compactmap" = callPackage + ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: + mkDerivation { + pname = "compactmap"; + version = "0.1.4"; + sha256 = "e65ba73cac5eca9eb0fa53863d57e41c5c47a16fe72fdade99c1defbfeb4fc7f"; + revision = "1"; + editedCabalFile = "364f249f78be9baaebc7426e64730a07f01e05a9f02e452ba98477ce7f69523d"; libraryHaskellDepends = [ base vector ]; testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A read-only memory-efficient key-value store"; license = stdenv.lib.licenses.bsd3; }) {}; - "compactmap_0_1_4" = callPackage + "compactmap_0_1_4_1" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: mkDerivation { pname = "compactmap"; - version = "0.1.4"; - sha256 = "e65ba73cac5eca9eb0fa53863d57e41c5c47a16fe72fdade99c1defbfeb4fc7f"; + version = "0.1.4.1"; + sha256 = "6475d10742293f3a5b2ce1538846223deecffd9f0d5a59f70695b6ee78b606a9"; libraryHaskellDepends = [ base vector ]; testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A read-only memory-efficient key-value store"; @@ -55700,7 +55329,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "compdata" = callPackage + "compdata_0_10" = callPackage ({ mkDerivation, base, containers, deepseq, derive, HUnit, mtl , QuickCheck, template-haskell, test-framework , test-framework-hunit, test-framework-quickcheck2, th-expand-syns @@ -55724,6 +55353,30 @@ self: { doCheck = false; description = "Compositional Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "compdata" = callPackage + ({ mkDerivation, base, containers, deepseq, derive, HUnit, mtl + , QuickCheck, template-haskell, test-framework + , test-framework-hunit, test-framework-quickcheck2, th-expand-syns + , transformers, tree-view + }: + mkDerivation { + pname = "compdata"; + version = "0.10.1"; + sha256 = "61572f134ec555695905c28db76c8f1f50df531337e56d5c74a16a52c58840cb"; + libraryHaskellDepends = [ + base containers deepseq derive mtl QuickCheck template-haskell + th-expand-syns transformers tree-view + ]; + testHaskellDepends = [ + base containers deepseq derive HUnit mtl QuickCheck + template-haskell test-framework test-framework-hunit + test-framework-quickcheck2 th-expand-syns transformers + ]; + description = "Compositional Data Types"; + license = stdenv.lib.licenses.bsd3; }) {}; "compdata-automata" = callPackage @@ -55769,8 +55422,8 @@ self: { }: mkDerivation { pname = "compdata-param"; - version = "0.9"; - sha256 = "2492ab983e8f2d9cd41265ad99ef75953bb92a48b5370e82ff17d7f0c86bf3ac"; + version = "0.9.1"; + sha256 = "ec97eadb9f09933c482f6f68014902e7ab531fa7f04033c40d2a0b1f42b6371d"; libraryHaskellDepends = [ base compdata mtl template-haskell transformers ]; @@ -55855,7 +55508,6 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "complex-generic" = callPackage @@ -55897,7 +55549,6 @@ self: { jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compose-ltr" = callPackage @@ -55922,7 +55573,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "composition_1_0_1_0" = callPackage @@ -56015,6 +55665,7 @@ self: { sha256 = "67d26787ad5e35d1840b5e1bd325bb12815bd151faa0f6e13aaeb55e63af9bd6"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest QuickCheck ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/liamoc/composition-tree"; description = "Composition trees for arbitrary monoids"; @@ -56036,6 +55687,7 @@ self: { base comonad containers fingertree hashable keys pointed reducers semigroupoids semigroups unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/compressed/"; description = "Compressed containers and reducers"; license = stdenv.lib.licenses.bsd3; @@ -56051,7 +55703,6 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/compression/"; description = "Common compression algorithms"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compstrat" = callPackage @@ -56068,7 +55719,6 @@ self: { jailbreak = true; description = "Strategy combinators for compositional data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comptrans" = callPackage @@ -56088,7 +55738,6 @@ self: { homepage = "https://github.com/jkoppel/comptrans"; description = "Automatically converting ASTs into compositional data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computational-algebra" = callPackage @@ -56108,7 +55757,6 @@ self: { homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "computations" = callPackage @@ -56183,7 +55831,6 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological disambiguation based on constrained CRFs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -56206,7 +55853,6 @@ self: { homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-pl" = callPackage @@ -56229,7 +55875,6 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological tagger for Polish"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -56268,7 +55913,6 @@ self: { jailbreak = true; description = "Binary and Hashable instances for TypeRep"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-barrier" = callPackage @@ -56379,8 +56023,8 @@ self: { }: mkDerivation { pname = "concurrent-machines"; - version = "0.2.1"; - sha256 = "8c22ce94dfbc20214a1a5ced0cfcb7de0c2eae509a250d144c8af51a8f27507f"; + version = "0.2.3.1"; + sha256 = "6d67692d241a0e160ace89ecd8bbb2e28cc90651c7d9996f6686de7856731eee"; libraryHaskellDepends = [ async base containers lifted-async machines monad-control semigroups time transformers transformers-base @@ -56388,7 +56032,6 @@ self: { testHaskellDepends = [ base machines tasty tasty-hunit time transformers ]; - jailbreak = true; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -56405,6 +56048,7 @@ self: { ansi-terminal async base directory exceptions process stm terminal-size text transformers unix ]; + jailbreak = true; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; hydraPlatforms = stdenv.lib.platforms.none; @@ -56422,6 +56066,7 @@ self: { ansi-terminal async base directory exceptions process stm terminal-size text transformers unix ]; + jailbreak = true; description = "Ungarble output from several threads or commands"; license = stdenv.lib.licenses.bsd2; hydraPlatforms = stdenv.lib.platforms.none; @@ -56490,7 +56135,6 @@ self: { homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-supply_0_1_7" = callPackage @@ -56516,6 +56160,7 @@ self: { sha256 = "be5092519735b1dbac7e4b8611fe39d03e454fe9ec6ac4c7555eca0dc90c0d14"; libraryHaskellDepends = [ base ghc-prim hashable ]; testHaskellDepends = [ base containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/concurrent-supply/"; description = "A fast concurrent unique identifier supply with a pure API"; license = stdenv.lib.licenses.bsd3; @@ -56542,6 +56187,7 @@ self: { version = "0.2.0.0"; sha256 = "d108b831e0631c1d3d9b5e2dbfb335b63997206384b7a069978c95a2a1af918a"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "-"; description = "More utilities and broad-used datastructures for concurrency"; license = stdenv.lib.licenses.bsd3; @@ -56591,7 +56237,6 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "condorcet" = callPackage @@ -56604,7 +56249,6 @@ self: { homepage = "http://neugierig.org/software/darcs/condorcet"; description = "Library for Condorcet voting"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-base" = callPackage @@ -56647,7 +56291,6 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conductive-song" = callPackage @@ -56703,6 +56346,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers void ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56726,6 +56370,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers void ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56749,6 +56394,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers void ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56772,6 +56418,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers void ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56797,6 +56444,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56820,6 +56468,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56843,6 +56492,7 @@ self: { base containers exceptions hspec mtl QuickCheck resourcet safe transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Streaming data processing library"; license = stdenv.lib.licenses.mit; @@ -56947,6 +56597,7 @@ self: { version = "0.2.0.2"; sha256 = "e23cf60d1e70a65560308517db79ba150456fcf9f24a0d77f5e6f96cdf1aef0b"; libraryHaskellDepends = [ base conduit vector ]; + jailbreak = true; homepage = "http://github.com/mtolly/conduit-audio"; description = "Combinators to efficiently slice and dice audio streams"; license = stdenv.lib.licenses.bsd3; @@ -56965,10 +56616,10 @@ self: { ]; librarySystemDepends = [ mp3lame ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the LAME MP3 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -56984,10 +56635,10 @@ self: { ]; librarySystemDepends = [ samplerate ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsamplerate resampling library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -57002,10 +56653,10 @@ self: { base conduit conduit-audio hsndfile hsndfile-vector resourcet transformers ]; + jailbreak = true; homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsndfile audio file library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "conduit-combinators_0_3_0_4" = callPackage @@ -57197,6 +56848,7 @@ self: { base bytestring conduit connection HUnit network resourcet test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "https://github.com/sdroege/conduit-connection"; description = "Conduit source and sink for Network.Connection."; license = stdenv.lib.licenses.bsd3; @@ -57639,7 +57291,6 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-parse_0_1_1_0" = callPackage @@ -57699,7 +57350,6 @@ self: { homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -57758,7 +57408,6 @@ self: { homepage = "https://gitlab.com/guyonvarch/config-manager"; description = "Configuration management"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "config-select" = callPackage @@ -57774,7 +57423,6 @@ self: { ]; description = "A small program for swapping out dot files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "config-value" = callPackage @@ -57999,7 +57647,6 @@ self: { ]; description = "A BitTorrent client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "conlogger" = callPackage @@ -58094,6 +57741,7 @@ self: { base between data-default-class monad-control network resource-pool streaming-commons time transformers-base ]; + jailbreak = true; homepage = "https://github.com/trskop/connection-pool"; description = "Connection pool built on top of resource-pool and streaming-commons"; license = stdenv.lib.licenses.bsd3; @@ -58114,7 +57762,6 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "console-program" = callPackage @@ -58130,6 +57777,7 @@ self: { ansi-terminal ansi-wl-pprint base containers directory haskeline parsec parsec-extra split transformers unix utility-ht ]; + jailbreak = true; description = "Interpret the command line and settings in a config file as commands and options"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -58145,7 +57793,6 @@ self: { homepage = "https://github.com/kfish/const-math-ghc-plugin"; description = "Compiler plugin for constant math elimination"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constrained-categories" = callPackage @@ -58193,6 +57840,7 @@ self: { revision = "2"; editedCabalFile = "271a82e2293a1a08a90d2fe17a824d1e2b30fc95190cd564817b09ea017c073f"; libraryHaskellDepends = [ base ghc-prim newtype ]; + jailbreak = true; homepage = "http://github.com/ekmett/constraints/"; description = "Constraint manipulation"; license = stdenv.lib.licenses.bsd3; @@ -58208,6 +57856,7 @@ self: { revision = "2"; editedCabalFile = "76ca1503a834b091b236c5454ef7922868cd05cdde1ef599915334b64e6b9cc5"; libraryHaskellDepends = [ base ghc-prim newtype ]; + jailbreak = true; homepage = "http://github.com/ekmett/constraints/"; description = "Constraint manipulation"; license = stdenv.lib.licenses.bsd3; @@ -58223,6 +57872,7 @@ self: { revision = "2"; editedCabalFile = "9508552b31b6f8a77b3a24d50fc3082deaa04550fbce840d03c53111dabe7c2c"; libraryHaskellDepends = [ base ghc-prim newtype ]; + jailbreak = true; homepage = "http://github.com/ekmett/constraints/"; description = "Constraint manipulation"; license = stdenv.lib.licenses.bsd3; @@ -58238,6 +57888,7 @@ self: { revision = "1"; editedCabalFile = "8704acefc3b56f37d36de0316625107bffdef2c37d27e599f3a8f26618223459"; libraryHaskellDepends = [ base ghc-prim newtype ]; + jailbreak = true; homepage = "http://github.com/ekmett/constraints/"; description = "Constraint manipulation"; license = stdenv.lib.licenses.bsd3; @@ -58256,6 +57907,7 @@ self: { base binary deepseq ghc-prim hashable mtl transformers transformers-compat ]; + jailbreak = true; homepage = "http://github.com/ekmett/constraints/"; description = "Constraint manipulation"; license = stdenv.lib.licenses.bsd3; @@ -58291,7 +57943,6 @@ self: { homepage = "http://andersk.mit.edu/haskell/constructible/"; description = "Exact computation with constructible real numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "constructive-algebra" = callPackage @@ -58304,7 +57955,6 @@ self: { jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "consul-haskell_0_1" = callPackage @@ -58395,7 +58045,6 @@ self: { homepage = "https://github.com/scrive/consumers"; description = "Concurrent PostgreSQL data consumers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "container" = callPackage @@ -58412,10 +58061,10 @@ self: { lens-utils mtl template-haskell text transformers transformers-base typelevel vector ]; + jailbreak = true; homepage = "https://github.com/wdanilo/containers"; description = "Containers abstraction and utilities"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "container-builder" = callPackage @@ -58554,7 +58203,6 @@ self: { homepage = "http://github.com/thinkpad20/context-stack"; description = "An abstraction of a stack and stack-based monadic context"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continue" = callPackage @@ -58572,7 +58220,6 @@ self: { jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "continued-fractions" = callPackage @@ -58609,7 +58256,6 @@ self: { ]; executableSystemDepends = [ hyperleveldb ]; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {hyperleveldb = null;}; "continuum-client" = callPackage @@ -58639,6 +58285,7 @@ self: { libraryHaskellDepends = [ base semigroups transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58658,6 +58305,7 @@ self: { libraryHaskellDepends = [ base semigroups transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58675,6 +58323,7 @@ self: { libraryHaskellDepends = [ base foreign-var semigroups transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58692,6 +58341,7 @@ self: { libraryHaskellDepends = [ base foreign-var semigroups transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58711,6 +58361,7 @@ self: { libraryHaskellDepends = [ base semigroups StateVar transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58728,6 +58379,7 @@ self: { libraryHaskellDepends = [ base semigroups StateVar transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58745,6 +58397,7 @@ self: { libraryHaskellDepends = [ base semigroups StateVar transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58762,6 +58415,7 @@ self: { libraryHaskellDepends = [ base semigroups StateVar transformers transformers-compat void ]; + jailbreak = true; homepage = "http://github.com/ekmett/contravariant/"; description = "Contravariant functors"; license = stdenv.lib.licenses.bsd3; @@ -58856,7 +58510,6 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Event scheduling system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-attempt" = callPackage @@ -58870,7 +58523,6 @@ self: { homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-exception" = callPackage @@ -58946,7 +58598,6 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-failure-mtl" = callPackage @@ -58960,7 +58611,6 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "control-monad-free_0_5_3" = callPackage @@ -59057,7 +58707,6 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "contstuff-transformers" = callPackage @@ -59070,7 +58719,6 @@ self: { jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "converge" = callPackage @@ -59154,7 +58802,6 @@ self: { homepage = "https://github.com/wdanilo/convert"; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible_1_1_0_0" = callPackage @@ -59212,7 +58859,6 @@ self: { homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible-text" = callPackage @@ -59233,7 +58879,6 @@ self: { homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cookbook" = callPackage @@ -59383,7 +59028,6 @@ self: { homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -59422,7 +59066,6 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -59536,7 +59179,6 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "core-haskell" = callPackage @@ -59553,7 +59195,6 @@ self: { homepage = "https://github.com/happlebao/Core-Haskell"; description = "A subset of Haskell using in UCC for teaching purpose"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "corebot-bliki" = callPackage @@ -59580,7 +59221,6 @@ self: { homepage = "http://github.com/coreyoconnor/corebot-bliki"; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-enumerator" = callPackage @@ -59607,7 +59247,6 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -59638,7 +59277,6 @@ self: { jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couch-simple" = callPackage @@ -59666,7 +59304,6 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -59698,7 +59335,6 @@ self: { homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couchdb-enumerator" = callPackage @@ -59728,7 +59364,6 @@ self: { homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "count" = callPackage @@ -59761,6 +59396,7 @@ self: { version = "0.1.0.1"; sha256 = "5fcde1f42a49b8376319db7a8e986c727e8c67c3766fa6f958f82c032f19cf5d"; libraryHaskellDepends = [ base containers ]; + jailbreak = true; homepage = "https://github.com/wei2912/counter"; description = "An object frequency counter"; license = stdenv.lib.licenses.mit; @@ -59896,7 +59532,6 @@ self: { homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coverage" = callPackage @@ -59931,7 +59566,6 @@ self: { homepage = "http://github.com/da-x/cpio-conduit"; description = "Conduit-based CPIO"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cplex-hs" = callPackage @@ -59949,7 +59583,6 @@ self: { homepage = "https://github.com/stefan-j/cplex-haskell"; description = "high-level CPLEX interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cplex = null;}; "cplusplus-th" = callPackage @@ -59968,7 +59601,6 @@ self: { homepage = "https://github.com/nicta/cplusplus-th"; description = "C++ Foreign Import Generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpphs_1_18_6" = callPackage @@ -60229,7 +59861,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpython" = callPackage @@ -60244,7 +59875,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-python/"; description = "Bindings for libpython"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) python34;}; "cql_3_0_5" = callPackage @@ -60288,6 +59918,7 @@ self: { base bytestring cereal Decimal iproute network QuickCheck tasty tasty-quickcheck text time uuid ]; + jailbreak = true; homepage = "https://github.com/twittner/cql/"; description = "Cassandra CQL binary protocol"; license = stdenv.lib.licenses.mpl20; @@ -60311,6 +59942,7 @@ self: { base bytestring cereal Decimal iproute network QuickCheck tasty tasty-quickcheck text time uuid ]; + jailbreak = true; homepage = "https://github.com/twittner/cql/"; description = "Cassandra CQL binary protocol"; license = stdenv.lib.licenses.mpl20; @@ -60357,6 +59989,7 @@ self: { monad-control mtl mwc-random network retry semigroups stm text time tinylog transformers transformers-base uuid vector ]; + jailbreak = true; homepage = "https://github.com/twittner/cql-io/"; description = "Cassandra CQL client"; license = stdenv.lib.licenses.mpl20; @@ -60386,6 +60019,7 @@ self: { base bytestring containers deepseq io-streams transformers uuid-types ]; + jailbreak = true; description = "Command-Query Responsibility Segregation"; license = stdenv.lib.licenses.mit; }) {}; @@ -60450,7 +60084,6 @@ self: { jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-sqlite3" = callPackage @@ -60472,7 +60105,6 @@ self: { jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-test" = callPackage @@ -60490,7 +60122,6 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs-testkit" = callPackage @@ -60506,6 +60137,7 @@ self: { base bytestring containers cqrs-core deepseq hspec HUnit io-streams lifted-base random transformers uuid-types ]; + jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; }) {}; @@ -60538,7 +60170,6 @@ self: { homepage = "https://github.com/scvalex/cr"; description = "Code review tool"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crack" = callPackage @@ -60551,7 +60182,6 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {crack = null;}; "crackNum_1_3" = callPackage @@ -60596,7 +60226,6 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "2D graphics library with integrated TikZ output"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-cairo" = callPackage @@ -60610,7 +60239,6 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Cairo backend for Craftwerk"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craftwerk-gtk" = callPackage @@ -60630,7 +60258,6 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "craze" = callPackage @@ -60659,7 +60286,6 @@ self: { homepage = "https://github.com/etcinit/craze#readme"; description = "HTTP Racing Library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc" = callPackage @@ -60677,7 +60303,6 @@ self: { homepage = "http://github.com/MichaelXavier/crc"; description = "Implements various Cyclic Redundancy Checks (CRC)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16" = callPackage @@ -60689,7 +60314,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16-table" = callPackage @@ -60712,8 +60336,8 @@ self: { }: mkDerivation { pname = "creatur"; - version = "5.9.11"; - sha256 = "ad172f1372068a8b5a1cf831c5e315c475dd000b0fca34820a2af3266e0a6e3b"; + version = "5.9.12"; + sha256 = "111633a5e483d50567ab5a0240d7a0ffeedda8b3f4399ff42e6740a1462442bb"; libraryHaskellDepends = [ array base bytestring cereal cond directory exceptions filepath gray-extended hdaemonize hsyslog MonadRandom mtl old-locale process @@ -60749,7 +60373,6 @@ self: { homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -60768,7 +60391,6 @@ self: { homepage = "https://github.com/kawu/crf-chain1-constrained"; description = "First-order, constrained, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -60788,7 +60410,6 @@ self: { homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -60804,10 +60425,10 @@ self: { array base binary comonad containers data-lens logfloat monad-codec parallel sgd vector vector-binary vector-th-unbox ]; + jailbreak = true; homepage = "https://github.com/kawu/crf-chain2-tiers"; description = "Second-order, tiered, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "critbit" = callPackage @@ -60889,6 +60510,7 @@ self: { base bytestring HUnit QuickCheck statistics test-framework test-framework-hunit test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "http://www.serpentine.com/criterion"; description = "Robust, reliable performance measurement and analysis"; license = stdenv.lib.licenses.bsd3; @@ -60954,7 +60576,6 @@ self: { homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "criterion-to-html" = callPackage @@ -61004,7 +60625,6 @@ self: { homepage = "https://github.com/TomHammersley/HaskellRenderer/"; description = "An offline renderer supporting ray tracing and photon mapping"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cron_0_3_0" = callPackage @@ -61094,7 +60714,6 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cruncher-types" = callPackage @@ -61108,7 +60727,6 @@ self: { homepage = "http://github.com/eval-so/cruncher-types"; description = "Request and Response types for Eval.so's API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crunghc" = callPackage @@ -61128,7 +60746,6 @@ self: { jailbreak = true; description = "A runghc replacement with transparent caching"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-api" = callPackage @@ -61181,7 +60798,6 @@ self: { homepage = "http://github.com/vincenthz/hs-crypto-cipher"; description = "Generic cryptography cipher benchmarks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-cipher-tests" = callPackage @@ -61233,6 +60849,7 @@ self: { microlens-th modular-arithmetic QuickCheck random random-shuffle text transformers ]; + jailbreak = true; homepage = "https://github.com/fosskers/crypto-classical"; description = "An educational tool for studying classical cryptography schemes"; license = stdenv.lib.licenses.bsd3; @@ -61273,10 +60890,10 @@ self: { editedCabalFile = "4cc74c0744e15e1149d7419e47232db6f0bf53a56360f35d71665b180c2f2a53"; libraryHaskellDepends = [ base containers MissingH mtl split ]; testHaskellDepends = [ base HUnit QuickCheck ]; + jailbreak = true; homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crypto-numbers_0_2_3" = callPackage @@ -61886,6 +61503,7 @@ self: { filepath haskeline monad-control monadLib process random sbv tf-random transformers ]; + jailbreak = true; homepage = "http://www.cryptol.net/"; description = "Cryptol: The Language of Cryptography"; license = stdenv.lib.licenses.bsd3; @@ -61990,7 +61608,6 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; description = "Crypto stuff using OpenSSL cryptographic library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "cryptsy-api" = callPackage @@ -62011,7 +61628,6 @@ self: { jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crystalfontz" = callPackage @@ -62023,7 +61639,6 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cse-ghc-plugin" = callPackage @@ -62036,7 +61651,6 @@ self: { homepage = "http://thoughtpolice.github.com/cse-ghc-plugin"; description = "Compiler plugin for common subexpression elimination"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csound-catalog" = callPackage @@ -62053,7 +61667,7 @@ self: { homepage = "https://github.com/anton-k/csound-catalog"; description = "a gallery of Csound instruments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csound-expression" = callPackage @@ -62151,7 +61765,6 @@ self: { testHaskellDepends = [ base nondeterminism tasty tasty-hunit ]; description = "Discrete constraint satisfaction problem (CSP) solver"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cspmchecker" = callPackage @@ -62169,7 +61782,6 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A command line type checker for CSPM files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css" = callPackage @@ -62181,10 +61793,9 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "css-syntax" = callPackage + "css-syntax_0_0_4" = callPackage ({ mkDerivation, attoparsec, base, bytestring, directory, hspec , scientific, text }: @@ -62198,11 +61809,13 @@ self: { testHaskellDepends = [ attoparsec base bytestring directory hspec scientific text ]; + jailbreak = true; description = "This package implments a parser for the CSS syntax"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "css-syntax_0_0_5" = callPackage + "css-syntax" = callPackage ({ mkDerivation, attoparsec, base, bytestring, directory, hspec , scientific, text }: @@ -62218,7 +61831,6 @@ self: { ]; description = "This package implments a parser for the CSS syntax"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "css-text" = callPackage @@ -62306,6 +61918,7 @@ self: { base bytestring containers directory HUnit mtl primitive test-framework test-framework-hunit text transformers vector ]; + jailbreak = true; homepage = "http://github.com/ozataman/csv-conduit"; description = "A flexible, fast, conduit-based CSV parser library for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -62388,7 +62001,6 @@ self: { homepage = "http://darcs.imperialviolet.org/ctemplate"; description = "Binding to the Google ctemplate library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {ctemplate = null;}; "ctkl" = callPackage @@ -62401,7 +62013,6 @@ self: { jailbreak = true; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctpl" = callPackage @@ -62414,10 +62025,10 @@ self: { isExecutable = true; libraryHaskellDepends = [ array base chatty-text chatty-utils ]; executableHaskellDepends = [ array base chatty-text chatty-utils ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/ctpl"; description = "A programming language for text modification"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ctrie_0_1_0_3" = callPackage @@ -62512,7 +62123,6 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Efficient manipulating of 2D cubic bezier curves"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cubicspline_0_1_1" = callPackage @@ -62572,7 +62182,6 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "cuda" = callPackage @@ -62605,10 +62214,10 @@ self: { libraryHaskellDepends = [ array base mtl transformers ]; librarySystemDepends = [ cudd dddmp epd mtr st util ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -62706,7 +62315,6 @@ self: { homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curry-frontend" = callPackage @@ -62726,7 +62334,6 @@ self: { homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cursedcsv" = callPackage @@ -62780,7 +62387,6 @@ self: { ]; description = "Library for drawing curve based images"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "custom-prelude" = callPackage @@ -62813,7 +62419,6 @@ self: { ]; description = "Functional Combinators for Computer Vision"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "cyclotomic" = callPackage @@ -62823,9 +62428,9 @@ self: { version = "0.4.4"; sha256 = "72ef126d3bf18542a709d740baef78dc4e4a065e1044fd50274a3730e3feeb97"; libraryHaskellDepends = [ arithmoi base containers ]; + jailbreak = true; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "cypher" = callPackage @@ -62846,7 +62451,6 @@ self: { jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d-bus" = callPackage @@ -62877,7 +62481,6 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "d3d11binding" = callPackage @@ -63007,7 +62610,6 @@ self: { transformers websockets wreq wuss ]; executableHaskellDepends = [ base optparse-applicative ]; - jailbreak = true; description = "Basic Slack bot framework"; license = stdenv.lib.licenses.mit; }) {}; @@ -63040,7 +62642,6 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dapi" = callPackage @@ -63061,19 +62662,18 @@ self: { homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs_2_10_2" = callPackage ({ mkDerivation, array, attoparsec, base, base16-bytestring, binary , bytestring, cmdargs, containers, cryptohash, curl, data-ordlist , directory, filepath, FindBin, hashable, haskeline, html, HTTP - , HUnit, mmap, mtl, network, network-uri, old-time, parsec, process - , QuickCheck, random, regex-applicative, regex-compat-tdfa, sandi - , shelly, split, tar, terminfo, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time - , transformers, transformers-compat, unix, unix-compat, utf8-string - , vector, zip-archive, zlib + , HUnit, mmap, mtl, network, network-uri, old-locale, old-time + , parsec, process, QuickCheck, random, regex-applicative + , regex-compat-tdfa, sandi, shelly, split, tar, terminfo + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, time, transformers, transformers-compat, unix, unix-compat + , utf8-string, vector, zip-archive, zlib }: mkDerivation { pname = "darcs"; @@ -63087,9 +62687,9 @@ self: { libraryHaskellDepends = [ array attoparsec base base16-bytestring binary bytestring containers cryptohash data-ordlist directory filepath hashable - haskeline html HTTP mmap mtl network network-uri old-time parsec - process random regex-applicative regex-compat-tdfa sandi tar - terminfo text time transformers transformers-compat unix + haskeline html HTTP mmap mtl network network-uri old-locale + old-time parsec process random regex-applicative regex-compat-tdfa + sandi tar terminfo text time transformers transformers-compat unix unix-compat utf8-string vector zip-archive zlib ]; librarySystemDepends = [ curl ]; @@ -63101,6 +62701,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir -p $out/etc/bash_completion.d @@ -63149,6 +62750,7 @@ self: { test-framework-hunit test-framework-quickcheck2 text unix-compat zip-archive zlib ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir -p $out/etc/bash_completion.d @@ -63226,7 +62828,6 @@ self: { homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-beta" = callPackage @@ -63260,7 +62861,6 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl;}; "darcs-buildpackage" = callPackage @@ -63279,7 +62879,6 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-cabalized" = callPackage @@ -63301,7 +62900,6 @@ self: { homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -63323,7 +62921,6 @@ self: { jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-graph" = callPackage @@ -63343,7 +62940,6 @@ self: { jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-monitor" = callPackage @@ -63362,7 +62958,6 @@ self: { homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcs-scripts" = callPackage @@ -63393,7 +62988,6 @@ self: { jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcsden" = callPackage @@ -63423,7 +63017,6 @@ self: { homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -63446,7 +63039,6 @@ self: { homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-demo" = callPackage @@ -63473,7 +63065,6 @@ self: { homepage = "https://github.com/bacher09/darkplaces-demo"; description = "Utility and parser for DarkPlaces demo files"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darkplaces-rcon" = callPackage @@ -63559,6 +63150,7 @@ self: { haddock-api optparse-applicative parsec pipes sqlite-simple tagsoup text transformers ]; + jailbreak = true; homepage = "http://www.github.com/jfeltz/dash-haskell"; description = "Convert package Haddock to Dash docsets (IDE docs)"; license = stdenv.lib.licenses.gpl3; @@ -63571,6 +63163,7 @@ self: { version = "0.2.2.6"; sha256 = "ee9de7fd9716f2681695deffcd04045d605bd24f0f2c7d6f0849dc4ae9c3c818"; libraryHaskellDepends = [ array base containers transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Utilities for accessing and manipulating fields of records"; license = stdenv.lib.licenses.bsd3; @@ -63653,6 +63246,7 @@ self: { libraryHaskellDepends = [ base data-accessor template-haskell utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Utilities for accessing and manipulating fields of records"; license = stdenv.lib.licenses.bsd3; @@ -63689,6 +63283,7 @@ self: { version = "1.1"; sha256 = "1d85ee03627495104cd73e8f4fc2459f3ff2e873a46cbd0db9708c6168ae25d1"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/wdanilo/data-base"; description = "Utilities for accessing and comparing types based on so called bases - representations with limited polymorphism"; license = stdenv.lib.licenses.asl20; @@ -63798,6 +63393,7 @@ self: { version = "1.1"; sha256 = "e8e55864def9f07c65137535d4494b694203e724e450494f89b502751d92b341"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/wdanilo/data-construction"; description = "Data construction abstractions including Constructor, Destructor, Maker, Destroyer, Producer and Consumer"; license = stdenv.lib.licenses.asl20; @@ -63815,6 +63411,24 @@ self: { ]; description = "a cyclic doubly linked list"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "data-default_0_5_3" = 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.5.3"; + sha256 = "ec5470f41bf6dc60d65953fc8788823ffff85fd59564a8bf9ea3c69928a83034"; + 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; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -63825,8 +63439,8 @@ self: { }: mkDerivation { pname = "data-default"; - version = "0.5.3"; - sha256 = "ec5470f41bf6dc60d65953fc8788823ffff85fd59564a8bf9ea3c69928a83034"; + version = "0.6.0"; + sha256 = "1f84023990e44e4555ac54e6bc84e4efa3bb42a0851ce0bb7b3358ef5344386d"; libraryHaskellDepends = [ base data-default-class data-default-instances-base data-default-instances-containers data-default-instances-dlist @@ -64084,7 +63698,6 @@ self: { homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-dword" = callPackage @@ -64122,7 +63735,6 @@ self: { homepage = "https://github.com/jcristovao/data-easy"; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-embed" = callPackage @@ -64230,6 +63842,7 @@ self: { sha256 = "e6e6e7c30c69cfe5ec67f0763c880d28e37d05c336e9b5c76c53e549c71a129f"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/seagull-kamome/data-fin-simple"; description = "Simple integral finite set"; license = stdenv.lib.licenses.bsd3; @@ -64277,6 +63890,7 @@ self: { version = "1.0.0.0"; sha256 = "82aba0f5410728a2fdfe2888960f218453b42f4f73eb018493536fb158fefb79"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "An efficient data type for sets of flags"; license = stdenv.lib.licenses.mit; }) {}; @@ -64296,10 +63910,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "data-function-meld"; - version = "0.1.0.0"; - sha256 = "def6126edb5aaeb808b8acb34f694c9ce3966f66ddac62a5ba09cf28378e1bcf"; - revision = "1"; - editedCabalFile = "7c644b5b5aba58028446255e1bfbf2e2aa832aa27fd3de943d34b047537ec4c9"; + version = "0.1.1.0"; + sha256 = "8dbf298b64856e65dce50b235a804a10d654c0ca6b78a20ca1e841ce8668d63e"; libraryHaskellDepends = [ base ]; homepage = "https://github.com/erisco/data-function-meld"; description = "Map the arguments and return value of functions"; @@ -64377,7 +63989,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-json-token" = callPackage @@ -64420,10 +64031,10 @@ self: { version = "1.0.4"; sha256 = "3c11be8dc0da7f4cb080023e2d0ae9f58ad202e193c6f1aea015b7b7873a936d"; libraryHaskellDepends = [ base convert data-construction lens ]; + jailbreak = true; homepage = "https://github.com/wdanilo/layer"; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-layout" = callPackage @@ -64449,6 +64060,7 @@ self: { 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; @@ -64463,6 +64075,7 @@ self: { libraryHaskellDepends = [ base comonad data-lens mtl transformers ]; + jailbreak = true; homepage = "http://github.com/roconnor/data-lens-fd/"; description = "Lenses"; license = stdenv.lib.licenses.bsd3; @@ -64480,6 +64093,18 @@ self: { homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "data-lens-light_0_1_2_1" = callPackage + ({ mkDerivation, base, mtl, template-haskell }: + mkDerivation { + pname = "data-lens-light"; + version = "0.1.2.1"; + sha256 = "1c1947f9f5f4247ba5ff905a9ecae367e495f69b821a22c0c261f64dd6771b0d"; + libraryHaskellDepends = [ base mtl template-haskell ]; + homepage = "https://github.com/feuerbach/data-lens-light"; + description = "Simple lenses, minimum dependencies"; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -64487,8 +64112,8 @@ self: { ({ mkDerivation, base, mtl, template-haskell }: mkDerivation { pname = "data-lens-light"; - version = "0.1.2.1"; - sha256 = "1c1947f9f5f4247ba5ff905a9ecae367e495f69b821a22c0c261f64dd6771b0d"; + version = "0.1.2.2"; + sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; libraryHaskellDepends = [ base mtl template-haskell ]; homepage = "https://github.com/feuerbach/data-lens-light"; description = "Simple lenses, minimum dependencies"; @@ -64502,6 +64127,7 @@ self: { version = "2.1.9"; sha256 = "cf94f5d81569ad8f0ce4194649f5920226adf990d4012728958516d9821af236"; 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; @@ -64554,7 +64180,6 @@ self: { homepage = "https://github.com/kawu/data-named"; description = "Data types for named entities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-nat" = callPackage @@ -64568,7 +64193,6 @@ self: { homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object" = callPackage @@ -64600,7 +64224,6 @@ self: { homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-object-yaml" = callPackage @@ -64621,7 +64244,6 @@ self: { homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-or" = callPackage @@ -64666,6 +64288,7 @@ self: { version = "0.2.4.1"; sha256 = "0c06aae83e1e41883927fbaa008964acd7d6b005a0f7e44c95fa5062943e0f83"; libraryHaskellDepends = [ base deepseq mtl parallel pretty time ]; + jailbreak = true; description = "Prettyprint and compare Data values"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -64679,7 +64302,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-r-tree" = callPackage @@ -64766,6 +64388,7 @@ self: { version = "1.0"; sha256 = "4939d7b8a7debb9a98cad8f468e07dcc7cd6424fdfd51dc4da74a35ff6536492"; libraryHaskellDepends = [ base generic-deriving lens ]; + jailbreak = true; homepage = "https://github.com/wdanilo/data-repr"; description = "Alternative to Show data printing utility"; license = stdenv.lib.licenses.asl20; @@ -64778,10 +64401,10 @@ self: { version = "1.0"; sha256 = "b266c0184e55ed2fe7af03cf837a2666c6c3265b5de9d5f7416926f981bf0605"; libraryHaskellDepends = [ base poly-control prologue ]; + jailbreak = true; homepage = "https://github.com/wdanilo/data-result"; description = "Data types for returning results distinguishable by types"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rev" = callPackage @@ -64806,7 +64429,6 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rtuple" = callPackage @@ -64816,10 +64438,10 @@ self: { version = "1.0"; sha256 = "4e2824b8d23d5eafce4c5f86a90fb58d97f461b45a287006f37cf8f2bd09fb05"; libraryHaskellDepends = [ base lens typelevel ]; + jailbreak = true; homepage = "https://github.com/wdanilo/rtuple"; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-size" = callPackage @@ -64868,7 +64490,6 @@ self: { homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-stringmap" = callPackage @@ -64991,7 +64612,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-util" = callPackage @@ -65066,7 +64686,6 @@ self: { homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "dataenc" = callPackage @@ -65134,7 +64753,6 @@ self: { jailbreak = true; description = "An implementation of datalog in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "datapacker" = callPackage @@ -65213,6 +64831,7 @@ self: { base HUnit old-locale old-time QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 time ]; + jailbreak = true; homepage = "http://github.com/stackbuilders/datetime"; description = "Utilities to make Data.Time.* easier to use"; license = "GPL"; @@ -65232,6 +64851,7 @@ self: { base HUnit old-locale old-time QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 time ]; + jailbreak = true; homepage = "http://github.com/stackbuilders/datetime"; description = "Utilities to make Data.Time.* easier to use."; license = "GPL"; @@ -65247,6 +64867,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base parsec pretty text time ]; executableHaskellDepends = [ base filepath parsec pretty text ]; + jailbreak = true; homepage = "https://github.com/arnons1/dawdle"; description = "Generates DDL suggestions based on a CSV file"; license = stdenv.lib.licenses.mit; @@ -65284,6 +64905,7 @@ self: { base containers HUnit mtl smallcheck tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; + jailbreak = true; homepage = "https://github.com/kawu/dawg-ord"; description = "Directed acyclic word graphs"; license = stdenv.lib.licenses.bsd3; @@ -65297,6 +64919,7 @@ self: { sha256 = "8c45177c9f36943a7aa332534d7e120b5c1a50f8d628d6d56ef49cd21ca08ad8"; libraryHaskellDepends = [ base postgresql-simple text ]; testHaskellDepends = [ base hspec postgresql-simple text ]; + jailbreak = true; description = "Clean database tables automatically around hspec tests"; license = stdenv.lib.licenses.mit; }) {}; @@ -65334,7 +64957,6 @@ self: { homepage = "http://devel.comunidadhaskell.org/dbjava/"; description = "Decompiler Bytecode Java"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbmigrations_1_0" = callPackage @@ -65488,7 +65110,6 @@ self: { homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -65508,7 +65129,6 @@ self: { homepage = "https://john-millikin.com/software/dbus-core/"; description = "Low-level D-Bus protocol implementation"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-qq" = callPackage @@ -65580,7 +65200,6 @@ self: { jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dclabel-eci11" = callPackage @@ -65605,6 +65224,7 @@ self: { libraryHaskellDepends = [ base containers deepseq parsec transformers wl-pprint ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler common utilities"; license = stdenv.lib.licenses.mit; @@ -65625,10 +65245,10 @@ self: { ddc-core-llvm ddc-core-salt ddc-core-simpl ddc-core-tetra ddc-source-tetra deepseq directory filepath mtl process time ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -65638,6 +65258,7 @@ self: { version = "0.4.2.1"; sha256 = "2584b9433a6b37233ce3a69dbcbb5f93b6014c39a5163a0bdee3b894477326a9"; libraryHaskellDepends = [ base filepath ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler base libraries"; license = stdenv.lib.licenses.mit; @@ -65655,10 +65276,10 @@ self: { array base containers ddc-base deepseq directory mtl text transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler core language and type checker"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-babel" = callPackage @@ -65672,6 +65293,7 @@ self: { libraryHaskellDepends = [ base containers ddc-base ddc-core ddc-core-tetra ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler PHP code generator"; license = stdenv.lib.licenses.mit; @@ -65692,7 +65314,6 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-flow" = callPackage @@ -65709,10 +65330,10 @@ self: { ddc-core-simpl ddc-core-tetra deepseq limp limp-cbc mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -65727,10 +65348,10 @@ self: { array base bytestring containers ddc-base ddc-core ddc-core-salt ddc-core-simpl mtl text transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler LLVM code generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-salt" = callPackage @@ -65745,10 +65366,10 @@ self: { array base containers ddc-base ddc-core deepseq mtl text transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler C code generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-simpl" = callPackage @@ -65762,10 +65383,10 @@ self: { libraryHaskellDepends = [ array base containers ddc-base ddc-core deepseq mtl transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler code transformations"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-tetra" = callPackage @@ -65781,10 +65402,10 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-simpl deepseq mtl pretty-show text transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler intermediate language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-driver" = callPackage @@ -65803,10 +65424,10 @@ self: { ddc-source-tetra deepseq directory filepath mtl process time transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -65834,10 +65455,10 @@ self: { array base containers ddc-base ddc-core ddc-core-salt ddc-core-tetra deepseq mtl text transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler source language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-tools" = callPackage @@ -65858,10 +65479,10 @@ self: { ddc-driver ddc-source-tetra directory filepath haskeline mtl process transformers ]; + jailbreak = true; homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -65881,7 +65502,6 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler test driver and buildbot"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddci-core" = callPackage @@ -65902,7 +65522,6 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dead-code-detection" = callPackage @@ -65945,7 +65564,6 @@ self: { homepage = "http://hub.darcs.net/scravy/dead-simple-json"; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "debian_3_87_2" = callPackage @@ -66073,7 +65691,6 @@ self: { jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "decimal-arithmetic" = callPackage @@ -66155,7 +65772,6 @@ self: { homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dedukti" = callPackage @@ -66179,7 +65795,6 @@ self: { homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepcontrol" = callPackage @@ -66226,7 +65841,6 @@ self: { homepage = "https://github.com/ajtulloch/deeplearning-hs"; description = "Deep Learning in Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq_1_3_0_1" = callPackage @@ -66268,6 +65882,8 @@ self: { pname = "deepseq-bounded"; version = "0.8.0.0"; sha256 = "2e20a5473b923b4e3527efe98e99938103147adba99feec58b3aafd7a2c750a4"; + revision = "1"; + editedCabalFile = "069cbb8f36cafb3c95ed203fc94c7e5c14f6814f9d0d5a43666b18bf57e59b8b"; libraryHaskellDepends = [ array base cpphs deepseq deepseq-generics generics-sop mtl parallel random syb @@ -66280,7 +65896,6 @@ self: { homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-generics_0_1_1_1" = callPackage @@ -66302,7 +65917,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "deepseq-generics" = callPackage + "deepseq-generics_0_1_1_2" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, HUnit, test-framework , test-framework-hunit }: @@ -66316,12 +65931,14 @@ self: { testHaskellDepends = [ base deepseq ghc-prim HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/hvr/deepseq-generics"; description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "deepseq-generics_0_2_0_0" = callPackage + "deepseq-generics" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, HUnit, test-framework , test-framework-hunit }: @@ -66336,7 +65953,6 @@ self: { homepage = "https://github.com/hvr/deepseq-generics"; description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-magic" = callPackage @@ -66362,7 +65978,6 @@ self: { jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepzoom" = callPackage @@ -66374,7 +65989,6 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "defargs" = callPackage @@ -66387,7 +66001,6 @@ self: { homepage = "https://github.com/Kinokkory/defargs"; description = "default arguments in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-base" = callPackage @@ -66406,7 +66019,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "The base modules of the Definitive framework"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-filesystem" = callPackage @@ -66429,7 +66041,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-graphics" = callPackage @@ -66454,7 +66065,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -66474,7 +66084,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A parser combinator library for the Definitive framework"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-reactive" = callPackage @@ -66495,7 +66104,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-sound" = callPackage @@ -66517,7 +66125,6 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deiko-config" = callPackage @@ -66555,7 +66162,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dejafu" = callPackage + "dejafu_0_3_1_0" = callPackage ({ mkDerivation, array, atomic-primops, base, containers, deepseq , dpor, exceptions, monad-control, monad-loops, mtl, semigroups , stm, template-haskell, transformers, transformers-base @@ -66572,6 +66179,26 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dejafu" = callPackage + ({ mkDerivation, array, atomic-primops, base, containers, deepseq + , dpor, exceptions, monad-control, monad-loops, mtl, semigroups + , stm, template-haskell, transformers, transformers-base + }: + mkDerivation { + pname = "dejafu"; + version = "0.3.1.1"; + sha256 = "e1a062d51d445b07c7d6a0597ceb953110863b3b362e4ebc5802a426d055fc0f"; + libraryHaskellDepends = [ + array atomic-primops base containers deepseq dpor exceptions + monad-control monad-loops mtl semigroups stm template-haskell + transformers transformers-base + ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; + license = stdenv.lib.licenses.mit; }) {}; "deka" = callPackage @@ -66586,7 +66213,6 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {mpdec = null;}; "deka-tests" = callPackage @@ -66609,7 +66235,6 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delaunay" = callPackage @@ -66658,7 +66283,6 @@ self: { homepage = "https://github.com/sof/delicious"; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delimited-text" = callPackage @@ -66708,10 +66332,10 @@ self: { base directory optparse-applicative process sodium ]; testHaskellDepends = [ base directory filepath hspec ]; + jailbreak = true; homepage = "https://github.com/kryoxide/delta"; description = "A library for detecting file changes"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "delta-h" = callPackage @@ -66733,7 +66357,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/delta-h"; description = "Online entropy-based model of lexical category acquisition"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "demarcate" = callPackage @@ -66747,7 +66370,6 @@ self: { homepage = "https://github.com/fizruk/demarcate"; description = "Demarcating transformed monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "denominate" = callPackage @@ -66764,7 +66386,6 @@ self: { homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-map_0_1_1_3" = callPackage @@ -66813,10 +66434,10 @@ self: { version = "1.0.1"; sha256 = "093aa20845a345c1d44e3d0258eadd6f8c38e3596cd6486be64879d0b60e7467"; libraryHaskellDepends = [ base lens mtl prologue ]; + jailbreak = true; homepage = "https://github.com/wdanilo/dependent-state"; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -66907,7 +66528,6 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dephd" = callPackage @@ -66926,7 +66546,6 @@ self: { homepage = "http://malde.org/~ketil/biohaskell/dephd"; description = "Analyze quality of nucleotide sequences"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dequeue" = callPackage @@ -66941,7 +66560,6 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derangement" = callPackage @@ -66953,7 +66571,6 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derivation-trees" = callPackage @@ -66968,7 +66585,6 @@ self: { jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive_2_5_18" = callPackage @@ -67156,7 +66772,6 @@ self: { homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-enumerable" = callPackage @@ -67192,7 +66807,6 @@ self: { jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-monoid" = callPackage @@ -67206,6 +66820,7 @@ self: { libraryHaskellDepends = [ base semigroups template-haskell ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base semigroups ]; + jailbreak = true; homepage = "https://github.com/sboosali/derive-monoid#readme"; description = "derive Semigroup/Monoid/IsList"; license = stdenv.lib.licenses.mit; @@ -67225,7 +66840,6 @@ self: { homepage = "https://github.com/HaskellZhangSong/derive-topdown"; description = "This library will help you generate Haskell empty Generic instances and deriving type instances from the top automatically to the bottom for composited data types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-trie" = callPackage @@ -67239,7 +66853,6 @@ self: { homepage = "http://github.com/baldo/derive-trie"; description = "Automatic derivation of Trie implementations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deriving-compat" = callPackage @@ -67284,7 +66897,6 @@ self: { homepage = "http://darcsden.com/kyagrd/derp-lib"; description = "combinators based on parsing with derivatives (derp) package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "descrilo" = callPackage @@ -67294,6 +66906,7 @@ self: { version = "0.1.0.3"; sha256 = "82479f64aa13a8df7fafcf091ea34ca7044fad2e582489772fb1b46c3645a7a7"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Loads a list of items with fields"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -67434,7 +67047,6 @@ self: { homepage = "https://github.com/luanzhu/devil"; description = "A small tool to make it easier to update program managed by Angel"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dewdrop" = callPackage @@ -67449,7 +67061,6 @@ self: { homepage = "https://github.com/kmcallister/dewdrop"; description = "Find gadgets for return-oriented programming on x86"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dfrac" = callPackage @@ -67480,7 +67091,6 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgim" = callPackage @@ -67495,7 +67105,6 @@ self: { homepage = "https://github.com/musically-ut/haskell-dgim"; description = "Implementation of DGIM algorithm"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgs" = callPackage @@ -67509,7 +67118,6 @@ self: { homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dia-base" = callPackage @@ -67570,6 +67178,7 @@ self: { diagrams-contrib diagrams-core diagrams-lib diagrams-svg ]; doHaddock = false; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative vector graphics"; license = stdenv.lib.licenses.bsd3; @@ -67792,10 +67401,10 @@ self: { diagrams-postscript diagrams-rasterific diagrams-svg directory filepath JuicyPixels lens lucid-svg ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-cairo_1_2_0_4" = callPackage @@ -67956,6 +67565,7 @@ self: { optparse-applicative pango split statestack transformers unix vector ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -67978,10 +67588,10 @@ self: { optparse-applicative pango split statestack transformers unix vector ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-canvas_0_3_0_3" = callPackage @@ -68042,6 +67652,7 @@ self: { diagrams-core diagrams-lib lens mtl NumInstances optparse-applicative statestack text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68062,6 +67673,7 @@ self: { diagrams-core diagrams-lib lens mtl NumInstances optparse-applicative statestack text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68292,6 +67904,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68320,6 +67933,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68348,6 +67962,7 @@ self: { base containers diagrams-lib HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68506,6 +68121,7 @@ self: { adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68525,6 +68141,7 @@ self: { adjunctions base containers distributive dual-tree lens linear monoid-extras mtl semigroups unordered-containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68541,6 +68158,7 @@ self: { libraryHaskellDepends = [ base containers diagrams-lib fgl graphviz split ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Graph layout and drawing with GrahpViz and diagrams"; license = stdenv.lib.licenses.bsd3; @@ -68555,10 +68173,10 @@ self: { libraryHaskellDepends = [ base cairo diagrams-cairo diagrams-lib gtk ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-haddock_0_2_2_12" = callPackage @@ -68729,10 +68347,10 @@ self: { base containers haskell-src-exts lens parsec QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-hsqml" = callPackage @@ -68751,7 +68369,6 @@ self: { homepage = "https://github.com/marcinmrotek/diagrams-hsqml"; description = "HsQML (Qt5) backend for Diagrams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-html5_1_3_0_2" = callPackage @@ -68810,6 +68427,7 @@ self: { diagrams-lib lens mtl NumInstances optparse-applicative split statestack static-canvas text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -68830,6 +68448,7 @@ self: { diagrams-lib lens mtl NumInstances optparse-applicative split statestack static-canvas text ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -69006,6 +68625,7 @@ self: { process semigroups tagged text transformers unordered-containers ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; @@ -69033,6 +68653,7 @@ self: { process semigroups tagged text transformers unordered-containers ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; @@ -69060,7 +68681,6 @@ self: { jailbreak = true; description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "diagrams-pdf" = callPackage @@ -69080,7 +68700,6 @@ self: { homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pgf" = callPackage @@ -69098,10 +68717,10 @@ self: { diagrams-lib directory filepath hashable JuicyPixels mtl optparse-applicative process split texrunner time vector zlib ]; + jailbreak = true; homepage = "http://github.com/cchalmers/diagrams-pgf"; description = "PGF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-postscript_1_1_0_3" = callPackage @@ -69223,6 +68842,7 @@ self: { filepath hashable lens monoid-extras mtl semigroups split statestack ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -69243,6 +68863,7 @@ self: { filepath hashable lens monoid-extras mtl semigroups split statestack ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -69258,6 +68879,7 @@ self: { libraryHaskellDepends = [ array base colour diagrams-core diagrams-lib ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/diagrams-qrcode"; description = "Draw QR codes to SVG, PNG, PDF or PS files"; license = stdenv.lib.licenses.bsd3; @@ -69368,6 +68990,7 @@ self: { diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl optparse-applicative Rasterific split unix ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; @@ -69389,6 +69012,7 @@ self: { diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl optparse-applicative Rasterific split unix ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; @@ -69407,10 +69031,10 @@ self: { base colour containers diagrams-core diagrams-lib lens monoid-extras mtl reflex reflex-dom reflex-dom-contrib ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "reflex backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-rubiks-cube" = callPackage @@ -69434,6 +69058,7 @@ self: { version = "0.1"; sha256 = "4e97355e34d17c23f6dd5ad3bf4e5a9980f85eba4e80c7cf8fe766ae69050c4b"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Pure Haskell solver routines used by diagrams"; license = stdenv.lib.licenses.bsd3; @@ -69619,7 +69244,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg" = callPackage + "diagrams-svg_1_3_1_10" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, lucid-svg, monoid-extras, mtl @@ -69636,12 +69261,14 @@ self: { monoid-extras mtl old-time optparse-applicative process semigroups split text time ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-svg_1_4_0_1" = callPackage + "diagrams-svg" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, colour , containers, diagrams-core, diagrams-lib, directory, filepath , hashable, JuicyPixels, lens, monoid-extras, mtl, old-time @@ -69661,7 +69288,6 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-tikz" = callPackage @@ -69677,7 +69303,6 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-wx" = callPackage @@ -69713,7 +69338,6 @@ self: { homepage = "https://gitlab.com/lamefun/dialog"; description = "Simple dialog-based user interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dice" = callPackage @@ -69746,7 +69370,6 @@ self: { homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dicom" = callPackage @@ -69758,6 +69381,7 @@ self: { libraryHaskellDepends = [ base binary bytestring pretty safe time ]; + jailbreak = true; homepage = "http://github.com/dicomgrid/dicom-haskell-library/"; description = "A library for reading and writing DICOM files in the Explicit VR Little Endian transfer syntax"; license = stdenv.lib.licenses.gpl3; @@ -69777,7 +69401,6 @@ self: { homepage = "http://github.com/mwotton/dictparser"; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diet" = callPackage @@ -69865,7 +69488,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/diffcabal"; description = "Diff two .cabal files syntactically"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diffdump" = callPackage @@ -70098,6 +69720,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time ]; + jailbreak = true; homepage = "http://github.com/jaspervdj/digestive-functors"; description = "A practical formlet library"; license = stdenv.lib.licenses.bsd3; @@ -70168,6 +69791,7 @@ self: { aeson base bytestring digestive-functors HUnit mtl scientific tasty tasty-hunit text ]; + jailbreak = true; homepage = "http://github.com/ocharles/digestive-functors-aeson"; description = "Run digestive-functors forms against JSON"; license = stdenv.lib.licenses.gpl3; @@ -70233,7 +69857,6 @@ self: { homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -70401,6 +70024,7 @@ self: { version = "2014.0.0.0"; sha256 = "45a4eac9e27997493f2bcb2977098ede8443c6eda263a447125446e203a7cae3"; libraryHaskellDepends = [ base dimensional numtype-dk ]; + jailbreak = true; homepage = "https://github.com/dmcclean/dimensional-codata"; description = "CODATA Recommended Physical Constants with Dimensional Types"; license = stdenv.lib.licenses.bsd3; @@ -70440,7 +70064,6 @@ self: { jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-example" = callPackage @@ -70461,7 +70084,6 @@ self: { jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dingo-widgets" = callPackage @@ -70481,7 +70103,6 @@ self: { jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diophantine" = callPackage @@ -70495,7 +70116,6 @@ self: { homepage = "https://github.com/llllllllll/Math.Diophantine"; description = "A quadratic diophantine equation solving library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diplomacy" = callPackage @@ -70538,7 +70158,6 @@ self: { homepage = "https://github.com/avieth/diplomacy-server"; description = "Play Diplomacy over HTTP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-binary-files" = callPackage @@ -70551,7 +70170,6 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Serialization and deserialization monads for streams and ByteStrings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-daemonize" = callPackage @@ -70581,7 +70199,6 @@ self: { homepage = "http://dankna.com/software/"; description = "Native implementation of the FastCGI protocol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-http" = callPackage @@ -70602,7 +70219,6 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Native webserver that acts as a library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-murmur-hash" = callPackage @@ -70627,7 +70243,6 @@ self: { homepage = "http://dankna.com/software/"; description = "Lightweight replacement for Plugins, specific to GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "direct-sqlite_2_3_14" = callPackage @@ -70718,7 +70333,6 @@ self: { jailbreak = true; description = "Finite directed cubical complexes and associated algorithms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "directory_1_2_6_3" = callPackage @@ -70799,7 +70413,6 @@ self: { unordered-containers ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dirstream" = callPackage @@ -70852,7 +70465,6 @@ self: { homepage = "http://github.com/accraze/discogs-haskell"; description = "Client for Discogs REST API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "discordian-calendar" = callPackage @@ -70879,7 +70491,6 @@ self: { homepage = "http://github.com/lightquake/discount"; description = "Haskell bindings to the discount Markdown library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "discrete-space-map" = callPackage @@ -70934,7 +70545,6 @@ self: { homepage = "https://github.com/maxwellsayles/disjoint-set"; description = "Persistent disjoint-sets, a.k.a union-find."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "disjoint-sets-st" = callPackage @@ -71083,6 +70693,7 @@ self: { distributed-static ghc-prim hashable mtl network-transport random rank1dynamic stm syb template-haskell time transformers ]; + jailbreak = true; doCheck = false; homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; @@ -71106,6 +70717,7 @@ self: { network-transport random rank1dynamic stm syb template-haskell time transformers ]; + jailbreak = true; doCheck = false; homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; @@ -71166,10 +70778,10 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-azure" = callPackage @@ -71194,7 +70806,6 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-client-server_0_1_2" = callPackage @@ -71255,11 +70866,11 @@ self: { network-transport network-transport-tcp rematch stm test-framework test-framework-hunit transformers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-ekg" = callPackage @@ -71342,11 +70953,11 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-extras_0_2_0" = callPackage @@ -71407,6 +71018,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; @@ -71437,7 +71049,6 @@ self: { homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -71508,7 +71119,6 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -71539,10 +71149,10 @@ self: { stm test-framework test-framework-hunit time transformers unordered-containers ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "distributed-process-simplelocalnet_0_2_2_0" = callPackage @@ -71607,6 +71217,7 @@ self: { network network-multicast network-transport network-transport-tcp transformers ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Simple zero-configuration backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; @@ -71672,11 +71283,11 @@ self: { rematch stm test-framework test-framework-hunit time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-task_0_1_1" = callPackage @@ -71746,11 +71357,11 @@ self: { QuickCheck rematch stm test-framework test-framework-hunit test-framework-quickcheck2 time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-tests" = callPackage @@ -71772,10 +71383,10 @@ self: { base network network-transport network-transport-inmemory test-framework ]; + jailbreak = true; homepage = "http://github.com/haskell-distributed/distributed-process/tree/master/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "distributed-process-zookeeper" = callPackage @@ -71801,10 +71412,10 @@ self: { lifted-base monad-control network network-transport network-transport-tcp transformers ]; + jailbreak = true; homepage = "https://github.com/jeremyjh/distributed-process-zookeeper"; description = "A Zookeeper back-end for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-static_0_3_1_0" = callPackage @@ -71835,6 +71446,7 @@ self: { libraryHaskellDepends = [ base binary bytestring containers deepseq rank1dynamic ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Compositional, type-safe, polymorphic static values and closures"; license = stdenv.lib.licenses.bsd3; @@ -71852,6 +71464,7 @@ self: { libraryHaskellDepends = [ base binary bytestring containers deepseq rank1dynamic ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Compositional, type-safe, polymorphic static values and closures"; license = stdenv.lib.licenses.bsd3; @@ -71869,6 +71482,7 @@ self: { libraryHaskellDepends = [ base binary bytestring containers deepseq rank1dynamic ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Compositional, type-safe, polymorphic static values and closures"; license = stdenv.lib.licenses.bsd3; @@ -71887,7 +71501,6 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution"; description = "Finite discrete probability distributions"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distribution-plot" = callPackage @@ -71906,7 +71519,6 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributive_0_4_4" = callPackage @@ -71921,6 +71533,7 @@ self: { base ghc-prim tagged transformers transformers-compat ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/distributive/"; description = "Distributive functors -- Dual to Traversable"; license = stdenv.lib.licenses.bsd3; @@ -72140,10 +71753,10 @@ self: { patches-vector servant servant-blaze servant-docs shakespeare text time vector ]; + jailbreak = true; homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "djembe" = callPackage @@ -72157,10 +71770,10 @@ self: { base hmidi hspec lens mtl QuickCheck random ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/reedrosenbluth/Djembe"; description = "Hit drums with haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "djinn" = callPackage @@ -72234,7 +71847,6 @@ self: { homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dlist_0_7_1" = callPackage @@ -72382,7 +71994,6 @@ self: { jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dnsrbl" = callPackage @@ -72409,7 +72020,6 @@ self: { homepage = "https://github.com/maxpow4h/dnssd"; description = "DNS service discovery bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {dns_sd = null;}; "doc-review" = callPackage @@ -72436,7 +72046,6 @@ self: { homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doccheck" = callPackage @@ -72456,7 +72065,6 @@ self: { homepage = "https://github.com/Fuuzetsu/doccheck"; description = "Checks Haddock comments for pitfalls and version changes"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docidx" = callPackage @@ -72476,7 +72084,6 @@ self: { homepage = "http://github.com/gimbo/docidx.hs"; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "docker" = callPackage @@ -72501,6 +72108,7 @@ self: { pipes-bytestring pipes-http pipes-text process QuickCheck tasty tasty-hunit tasty-quickcheck text wreq ]; + jailbreak = true; homepage = "https://github.com/denibertovic/docker-hs"; description = "Haskell wrapper for Docker Remote API"; license = stdenv.lib.licenses.bsd3; @@ -72539,7 +72147,6 @@ self: { homepage = "https://github.com/factisresearch/dockercook"; description = "A build tool for multiple docker image layers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dockerfile" = callPackage @@ -72653,6 +72260,7 @@ self: { HUnit process QuickCheck setenv silently stringbuilder syb transformers ]; + jailbreak = true; homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; @@ -72680,6 +72288,7 @@ self: { HUnit process QuickCheck setenv silently stringbuilder syb transformers ]; + jailbreak = true; homepage = "https://github.com/sol/doctest#readme"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; @@ -72733,7 +72342,6 @@ self: { homepage = "http://github.com/karun012/doctest-discover"; description = "Easy way to run doctests via cabal"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-discover-configurator" = callPackage @@ -72760,7 +72368,6 @@ self: { homepage = "http://github.com/relrod/doctest-discover-noaeson"; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doctest-prop" = callPackage @@ -72882,6 +72489,7 @@ self: { base bytestring containers tagsoup text unordered-containers vector yaml ]; + jailbreak = true; homepage = "https://github.com/valderman/domplate"; description = "A simple templating library using HTML5 as its template language"; license = stdenv.lib.licenses.bsd3; @@ -72918,6 +72526,7 @@ self: { testHaskellDepends = [ base base-compat hspec parsec parseerror-eq ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; @@ -72939,6 +72548,7 @@ self: { base base-compat megaparsec optparse-applicative process text ]; testHaskellDepends = [ base base-compat hspec megaparsec text ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; @@ -72974,7 +72584,6 @@ self: { homepage = "http://github.com/toothbrush/dotfs"; description = "Filesystem to manage and parse dotfiles"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "dotgen" = callPackage @@ -73061,7 +72670,6 @@ self: { ]; description = "Dungeons of Wor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "download" = callPackage @@ -73075,7 +72683,6 @@ self: { homepage = "https://github.com/psibi/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "download-curl" = callPackage @@ -73109,7 +72716,6 @@ self: { homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dozenal" = callPackage @@ -73179,7 +72785,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -73198,7 +72803,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -73216,7 +72820,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -73235,7 +72838,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-par" = callPackage @@ -73279,7 +72881,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -73297,7 +72898,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -73329,10 +72929,9 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) dpkg; libdpkg = null;}; - "dpor" = callPackage + "dpor_0_1_0_0" = callPackage ({ mkDerivation, base, containers, deepseq, random, semigroups }: mkDerivation { pname = "dpor"; @@ -73341,6 +72940,22 @@ self: { libraryHaskellDepends = [ base containers deepseq random semigroups ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dpor" = callPackage + ({ mkDerivation, base, containers, deepseq, random, semigroups }: + mkDerivation { + pname = "dpor"; + version = "0.1.0.1"; + sha256 = "6000f43abf889e08e49bb5966592ad6119393277c2d528a18e5a2602119d6308"; + libraryHaskellDepends = [ + base containers deepseq random semigroups + ]; homepage = "https://github.com/barrucadu/dejafu"; description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; license = stdenv.lib.licenses.mit; @@ -73356,7 +72971,6 @@ self: { homepage = "https://github.com/cwi-swat/monadic-frp"; description = "Monadic FRP"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "draw-poker" = callPackage @@ -73413,7 +73027,6 @@ self: { jailbreak = true; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "drifter" = callPackage @@ -73473,7 +73086,6 @@ self: { homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -73493,7 +73105,6 @@ self: { jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ds-kanren" = callPackage @@ -73508,7 +73119,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsh-sql" = callPackage @@ -73536,7 +73146,6 @@ self: { ]; description = "SQL backend for Database Supported Haskell (DSH)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc" = callPackage @@ -73555,7 +73164,6 @@ self: { jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -73575,7 +73183,6 @@ self: { jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dson" = callPackage @@ -73630,7 +73237,6 @@ self: { homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtab" = callPackage @@ -73649,6 +73255,7 @@ self: { ]; libraryToolDepends = [ alex happy ]; executableHaskellDepends = [ base bytestring ]; + jailbreak = true; description = "Harmonix (Guitar Hero, Rock Band) DTA/DTB metadata library"; license = "GPL"; }) {}; @@ -73672,7 +73279,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-text" = callPackage @@ -73689,7 +73295,6 @@ self: { homepage = "http://github.com/m15k/hs-dtd-text"; description = "Parse and render XML DTDs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtd-types" = callPackage @@ -73702,7 +73307,6 @@ self: { homepage = "http://projects.haskell.org/dtd/"; description = "Basic types for representing XML DTDs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dtrace" = callPackage @@ -73734,7 +73338,6 @@ self: { jailbreak = true; description = "(Fast) Dynamic Time Warping"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dual-tree_0_2_0_5" = callPackage @@ -73783,6 +73386,7 @@ self: { version = "0.2.0.8"; sha256 = "53c5829fc5567f6e76adc3666c9db2755d17f606e0c5789bc00e0d6b7b97c273"; libraryHaskellDepends = [ base monoid-extras newtype semigroups ]; + jailbreak = true; description = "Rose trees with cached and accumulating monoidal annotations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -73855,7 +73459,6 @@ self: { jailbreak = true; description = "Frontend development build tool"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvda" = callPackage @@ -73878,7 +73481,6 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dvdread" = callPackage @@ -73892,7 +73494,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -74042,7 +73643,6 @@ self: { homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-linker-template" = callPackage @@ -74080,6 +73680,7 @@ self: { version = "0.1.0.4"; sha256 = "a36fc29ba4b91d52beb1f2df6ba8a837c6f112ef31358b20f5d0056f20d788a6"; libraryHaskellDepends = [ base primitive vector ]; + jailbreak = true; homepage = "https://github.com/AndrasKovacs/dynamic-mvector"; description = "A wrapper around MVector that enables pushing, popping and extending"; license = stdenv.lib.licenses.bsd3; @@ -74101,7 +73702,6 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-plot" = callPackage @@ -74124,7 +73724,6 @@ self: { homepage = "https://github.com/leftaroundabout/dynamic-plot"; description = "Interactive diagram windows"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -74146,7 +73745,6 @@ self: { homepage = "https://github.com/emc2/dynamic-pp"; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-state_0_2_0_0" = callPackage @@ -74162,6 +73760,7 @@ self: { libraryHaskellDepends = [ base binary bytestring hashable unordered-containers ]; + jailbreak = true; description = "Optionally serializable dynamic state keyed by type"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -74178,6 +73777,7 @@ self: { libraryHaskellDepends = [ base binary bytestring hashable unordered-containers ]; + jailbreak = true; description = "Optionally serializable dynamic state keyed by type"; license = stdenv.lib.licenses.gpl2; hydraPlatforms = stdenv.lib.platforms.none; @@ -74235,7 +73835,6 @@ self: { ]; description = "your dynamic optimization buddy"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dyre" = callPackage @@ -74262,6 +73861,7 @@ self: { version = "0.1.0.1"; sha256 = "ee7d3dab776e190aa16c9403580597e5128ca7f32837a0dd5d75b377bd42b6ba"; libraryHaskellDepends = [ base bytestring transformers ]; + jailbreak = true; description = "Bindings to the dywapitchtrack pitch tracking library"; license = stdenv.lib.licenses.mit; }) {}; @@ -74306,7 +73906,6 @@ self: { homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easy-bitcoin" = callPackage @@ -74367,7 +73966,6 @@ self: { homepage = "https://github.com/thinkpad20/easyjson"; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyplot" = callPackage @@ -74380,7 +73978,6 @@ self: { homepage = "http://hub.darcs.net/scravy/easyplot"; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "easyrender" = callPackage @@ -74393,10 +73990,10 @@ self: { 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ebeats" = callPackage @@ -74428,7 +74025,6 @@ self: { jailbreak = true; description = "Parser combinators & EBNF, BFFs!"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ec2-signature" = callPackage @@ -74465,7 +74061,6 @@ self: { homepage = "https://github.com/singpolyma/ecdsa-haskell"; description = "Basic ECDSA signing implementation"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecma262" = callPackage @@ -74486,7 +74081,6 @@ self: { homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecu" = callPackage @@ -74506,7 +74100,6 @@ self: { jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {canlib = null;}; "ed25519" = callPackage @@ -74523,10 +74116,10 @@ self: { testHaskellDepends = [ base bytestring directory doctest filepath hlint QuickCheck ]; + doCheck = false; homepage = "http://thoughtpolice.github.com/hs-ed25519"; description = "Ed25519 cryptographic signatures"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ed25519-donna" = callPackage @@ -74557,7 +74150,6 @@ self: { homepage = "http://chiselapp.com/user/mwm/repository/eddie/"; description = "Command line file filtering with haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ede_0_2_8" = callPackage @@ -74670,7 +74262,6 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "Semi-explicit parallel programming library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edenskel" = callPackage @@ -74682,7 +74273,6 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edentv" = callPackage @@ -74703,7 +74293,6 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "A Tool to Visualize Parallel Functional Program Executions"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edge" = callPackage @@ -74723,7 +74312,6 @@ self: { homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edis" = callPackage @@ -74798,13 +74386,14 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-instances vector ]; + jailbreak = true; homepage = "https://github.com/thsutton/edit-distance-vector"; description = "Calculate edit distances and edit scripts between vectors"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "edit-distance-vector" = callPackage + "edit-distance-vector_1_0_0_3" = callPackage ({ mkDerivation, base, QuickCheck, quickcheck-instances, vector }: mkDerivation { pname = "edit-distance-vector"; @@ -74814,12 +74403,14 @@ self: { testHaskellDepends = [ base QuickCheck quickcheck-instances vector ]; + jailbreak = true; homepage = "https://github.com/thsutton/edit-distance-vector"; description = "Calculate edit distances and edit scripts between vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "edit-distance-vector_1_0_0_4" = callPackage + "edit-distance-vector" = callPackage ({ mkDerivation, base, QuickCheck, quickcheck-instances, vector }: mkDerivation { pname = "edit-distance-vector"; @@ -74832,7 +74423,6 @@ self: { homepage = "https://github.com/thsutton/edit-distance-vector"; description = "Calculate edit distances and edit scripts between vectors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-lenses" = callPackage @@ -74846,7 +74436,6 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edit-lenses-demo" = callPackage @@ -74886,7 +74475,6 @@ self: { homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "editor-open" = callPackage @@ -74941,6 +74529,7 @@ self: { testHaskellDepends = [ base hspec hspec-discover HUnit QuickCheck ]; + jailbreak = true; homepage = "https://github.com/edofic/effect-handlers"; description = "A library for writing extensible algebraic effects and handlers. Similar to extensible-effects but with deep handlers."; license = stdenv.lib.licenses.mit; @@ -74994,7 +74583,6 @@ self: { jailbreak = true; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects" = callPackage @@ -75017,7 +74605,6 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effective-aspects-mzv" = callPackage @@ -75040,7 +74627,6 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "effects" = callPackage @@ -75074,6 +74660,7 @@ self: { version = "0.3.0.1"; sha256 = "2e6a4a183d3626ab2509e7e80461efaeeb7327fa41fe3883f7e4163e9bec9365"; libraryHaskellDepends = [ base mtl ]; + jailbreak = true; homepage = "https://github.com/YellPika/effin"; description = "A Typeable-free implementation of extensible effects"; license = stdenv.lib.licenses.bsd3; @@ -75121,7 +74708,6 @@ self: { homepage = "https://github.com/xenophobia/Egison-Quote"; description = "A quasi quotes for using Egison expression in Haskell code"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "egison-tutorial" = callPackage @@ -75162,7 +74748,6 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml"; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ehs" = callPackage @@ -75185,7 +74770,6 @@ self: { homepage = "http://github.com/minpou/ehs/"; description = "Embedded haskell template using quasiquotes"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eibd-client-simple" = callPackage @@ -75205,7 +74789,6 @@ self: { jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {eibclient = null;}; "eigen" = callPackage @@ -75225,7 +74808,6 @@ self: { homepage = "https://github.com/osidorkin/haskell-eigen"; description = "Eigen C++ library (linear algebra: matrices, sparse matrices, vectors, numerical solvers)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "either_4_3_2" = callPackage @@ -75341,6 +74923,7 @@ self: { base bifunctors exceptions free monad-control MonadRandom mtl profunctors semigroupoids semigroups transformers transformers-base ]; + jailbreak = true; homepage = "http://github.com/ekmett/either/"; description = "An either monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -75361,6 +74944,7 @@ self: { mtl profunctors semigroupoids semigroups transformers transformers-base ]; + jailbreak = true; homepage = "http://github.com/ekmett/either/"; description = "An either monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -75429,7 +75013,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ekg" = callPackage + "ekg_0_4_0_9" = callPackage ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json , filepath, network, snap-core, snap-server, text, time , transformers, unordered-containers @@ -75442,6 +75026,26 @@ self: { aeson base bytestring ekg-core ekg-json filepath network snap-core snap-server text time transformers unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/tibbe/ekg"; + description = "Remote monitoring of processes"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ekg" = callPackage + ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json + , filepath, network, snap-core, snap-server, text, time + , transformers, unordered-containers + }: + mkDerivation { + pname = "ekg"; + version = "0.4.0.10"; + sha256 = "bbae5b230a5fed82010d012c64fa75f3cf7a31335401df3872d79f3f786d6e90"; + libraryHaskellDepends = [ + aeson base bytestring ekg-core ekg-json filepath network snap-core + snap-server text time transformers unordered-containers + ]; homepage = "https://github.com/tibbe/ekg"; description = "Remote monitoring of processes"; license = stdenv.lib.licenses.bsd3; @@ -75478,19 +75082,38 @@ self: { base ekg-core network network-carbon text time unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/ekg-carbon"; description = "An EKG backend to send statistics to Carbon (part of Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; }) {}; + "ekg-core_0_1_1_0" = callPackage + ({ mkDerivation, base, containers, ghc-prim, text + , unordered-containers + }: + mkDerivation { + pname = "ekg-core"; + version = "0.1.1.0"; + sha256 = "7ba11eb73ad3b906610cc1ae3889543547c48d1b2f4ca68c288bb3f022a7061e"; + libraryHaskellDepends = [ + base containers ghc-prim text unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/tibbe/ekg-core"; + description = "Tracking of system metrics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ekg-core" = callPackage ({ mkDerivation, base, containers, ghc-prim, text , unordered-containers }: mkDerivation { pname = "ekg-core"; - version = "0.1.1.0"; - sha256 = "7ba11eb73ad3b906610cc1ae3889543547c48d1b2f4ca68c288bb3f022a7061e"; + version = "0.1.1.1"; + sha256 = "54de3df4b1b027aa2f3760b64f6a8c8134f3275b6d95bf1cf1fc0e74282939d6"; libraryHaskellDepends = [ base containers ghc-prim text unordered-containers ]; @@ -75506,6 +75129,27 @@ self: { pname = "ekg-json"; version = "0.1.0.0"; sha256 = "52c455ee7d1b54f530ba9243027e5bb332925589d9209dcdfc24bd16a5a218da"; + revision = "1"; + editedCabalFile = "e96d2ac5246c1962fa98ebd0ae121491cfe2b0ee28e1ea010c6f3c73cb7d1326"; + libraryHaskellDepends = [ + aeson base ekg-core text unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/tibbe/ekg-json"; + description = "JSON encoding of ekg metrics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ekg-json_0_1_0_1" = callPackage + ({ mkDerivation, aeson, base, ekg-core, text, unordered-containers + }: + mkDerivation { + pname = "ekg-json"; + version = "0.1.0.1"; + sha256 = "ab401e93dd9238eda389a09121bae049d3ed82a031d0fa52384494c2f8f61b3f"; + revision = "1"; + editedCabalFile = "15c875fbbbee0d811518db5eb580cfc70f67ac06ac844fd6b32cbe070539afca"; libraryHaskellDepends = [ aeson base ekg-core text unordered-containers ]; @@ -75521,8 +75165,10 @@ self: { }: mkDerivation { pname = "ekg-json"; - version = "0.1.0.1"; - sha256 = "ab401e93dd9238eda389a09121bae049d3ed82a031d0fa52384494c2f8f61b3f"; + version = "0.1.0.2"; + sha256 = "6236904ae6410eca5c0fb77a076dc6dab926178768e554fd6050544658eec7d8"; + revision = "1"; + editedCabalFile = "6e9eafd4bf78bee8fe55eca517a4a8ea0af2cb11cd418538f84edf4d4fdcde39"; libraryHaskellDepends = [ aeson base ekg-core text unordered-containers ]; @@ -75589,10 +75235,9 @@ self: { homepage = "https://bitbucket.org/davecturner/ekg-rrd"; description = "Passes ekg statistics to rrdtool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; - "ekg-statsd" = callPackage + "ekg-statsd_0_2_0_3" = callPackage ({ mkDerivation, base, bytestring, ekg-core, network, text, time , unordered-containers }: @@ -75603,6 +75248,25 @@ self: { libraryHaskellDepends = [ base bytestring ekg-core network text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/tibbe/ekg-statsd"; + description = "Push metrics to statsd"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ekg-statsd" = callPackage + ({ mkDerivation, base, bytestring, ekg-core, network, text, time + , unordered-containers + }: + mkDerivation { + pname = "ekg-statsd"; + version = "0.2.0.4"; + sha256 = "ebeddf7dd3427268a35b0dad5f716d9009b676326742b7dd005970d9ab6267f7"; + libraryHaskellDepends = [ + base bytestring ekg-core network text time unordered-containers + ]; + jailbreak = true; homepage = "https://github.com/tibbe/ekg-statsd"; description = "Push metrics to statsd"; license = stdenv.lib.licenses.bsd3; @@ -75618,7 +75282,6 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck ]; description = "easy to remember mnemonic for a high-entropy value"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "elerea" = callPackage @@ -75646,7 +75309,6 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elerea-sdl" = callPackage @@ -75659,7 +75321,6 @@ self: { homepage = "http://github.com/singpolyma/elerea-sdl"; description = "Elerea FRP wrapper for SDL"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elevator" = callPackage @@ -75669,6 +75330,7 @@ self: { version = "0.2.3"; sha256 = "82b7050b33c3e4710d6afb99122c271592e72892a23d21de4191a559604ba0d4"; libraryHaskellDepends = [ base extensible transformers ]; + jailbreak = true; homepage = "https://github.com/fumieval/elevator"; description = "Immediately lifts to a desired level"; license = stdenv.lib.licenses.bsd3; @@ -75699,7 +75361,6 @@ self: { homepage = "http://github.com/crough/elision#readme"; description = "Arrows with holes"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "elm-bridge_0_1_0_0" = callPackage @@ -75755,7 +75416,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "elm-bridge" = callPackage + "elm-bridge_0_3_0_0" = callPackage ({ mkDerivation, aeson, base, containers, hspec, QuickCheck , template-haskell, text }: @@ -75770,6 +75431,24 @@ self: { homepage = "https://github.com/agrafix/elm-bridge"; description = "Derive Elm types from Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "elm-bridge" = callPackage + ({ mkDerivation, aeson, base, containers, hspec, QuickCheck + , template-haskell, text + }: + mkDerivation { + pname = "elm-bridge"; + version = "0.3.0.2"; + sha256 = "d83389362bfdc0c526bc574b413136b578cc01b61a694eaf45325531e850192f"; + libraryHaskellDepends = [ aeson base template-haskell ]; + testHaskellDepends = [ + aeson base containers hspec QuickCheck text + ]; + homepage = "https://github.com/agrafix/elm-bridge"; + description = "Derive Elm types from Haskell types"; + license = stdenv.lib.licenses.bsd3; }) {}; "elm-build-lib" = callPackage @@ -75941,6 +75620,7 @@ self: { base bytestring containers hspec hspec-core QuickCheck quickcheck-instances text time ]; + jailbreak = true; homepage = "http://github.com/krisajenkins/elm-export"; description = "A library to generate Elm types from Haskell source"; license = "unknown"; @@ -76193,6 +75873,7 @@ self: { base MonadRandom proctest QuickCheck random tasty tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "https://www.github.com/sgillespie/elocrypt"; description = "Generate easy-to-remember, hard-to-guess passwords"; license = "unknown"; @@ -76216,7 +75897,6 @@ self: { homepage = "https://github.com/cocreature/emacs-keys"; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email" = callPackage @@ -76234,7 +75914,6 @@ self: { jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-header" = callPackage @@ -76257,7 +75936,6 @@ self: { homepage = "http://github.com/knrafto/email-header"; description = "Parsing and rendering of email and MIME headers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-postmark" = callPackage @@ -76274,7 +75952,6 @@ self: { jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email-validate_2_0_1" = callPackage @@ -76389,7 +76066,6 @@ self: { homepage = "https://github.com/nushio3/embeddock"; description = "Embed the values in scope in the haddock documentation of the module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embeddock-example" = callPackage @@ -76402,7 +76078,6 @@ self: { homepage = "https://github.com/nushio3/embeddock-example"; description = "Example of using embeddock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "embroidery" = callPackage @@ -76422,7 +76097,6 @@ self: { homepage = "https://ludflu@github.com/ludflu/embroidery.git"; description = "support for embroidery formats in haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "emgm" = callPackage @@ -76437,7 +76111,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM"; description = "Extensible and Modular Generics for the Masses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "empty" = callPackage @@ -76507,6 +76180,7 @@ self: { array base binary bytestring containers extensible-exceptions ghc-prim HaXml mtl regex-compat ]; + jailbreak = true; homepage = "http://code.haskell.org/encoding/"; description = "A library for various character encodings"; license = stdenv.lib.licenses.bsd3; @@ -76605,6 +76279,7 @@ self: { free monad-loops mwc-random stm stm-delay text transformers unordered-containers vector websockets ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; description = "A Haskell implementation of Engine.IO"; license = stdenv.lib.licenses.bsd3; @@ -76644,6 +76319,7 @@ self: { MonadCatchIO-transformers snap-core unordered-containers websockets websockets-snap ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76662,6 +76338,7 @@ self: { transformers transformers-compat unordered-containers wai wai-websockets websockets ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76697,6 +76374,7 @@ self: { base bytestring conduit conduit-extra engine-io http-types text unordered-containers wai wai-websockets websockets yesod-core ]; + jailbreak = true; license = stdenv.lib.licenses.bsd3; }) {}; @@ -76790,10 +76468,10 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumeration" = callPackage @@ -76813,7 +76491,6 @@ self: { homepage = "https://github.com/emc2/enumeration"; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumerator" = callPackage @@ -76866,7 +76543,6 @@ self: { homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapmap" = callPackage @@ -76889,7 +76565,6 @@ self: { jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset" = callPackage @@ -76915,6 +76590,7 @@ self: { libraryHaskellDepends = [ base containers deepseq template-haskell ]; + jailbreak = true; homepage = "https://github.com/liyang/enummapset-th"; description = "TH-generated EnumSet/EnumMap wrappers around IntSet/IntMap"; license = stdenv.lib.licenses.bsd3; @@ -76949,7 +76625,6 @@ self: { homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "envelope" = callPackage @@ -76966,13 +76641,13 @@ self: { }) {}; "envparse" = callPackage - ({ mkDerivation, base, containers, hspec }: + ({ mkDerivation, base, containers, hspec, text }: mkDerivation { pname = "envparse"; - version = "0.3.3"; - sha256 = "9fc908ed2d9174fbcd32bc05b2c449397720b8f23826304a72035867d83563ec"; + version = "0.4"; + sha256 = "bf9dd7cd0ed3c38f63ea45cbb496b58ad3d83022b5eab5a66bfeebec5982803d"; libraryHaskellDepends = [ base containers ]; - testHaskellDepends = [ base containers hspec ]; + testHaskellDepends = [ base containers hspec text ]; homepage = "https://supki.github.io/envparse"; description = "Parse environment variables"; license = stdenv.lib.licenses.bsd3; @@ -76995,6 +76670,7 @@ self: { base bytestring hspec mtl QuickCheck quickcheck-instances text time transformers ]; + jailbreak = true; description = "An environmentally friendly way to deal with environment variables"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -77010,7 +76686,6 @@ self: { homepage = "http://epanet.de/developer/haskell.html"; description = "Haskell binding for EPANET"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epass" = callPackage @@ -77041,7 +76716,6 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Compiler for a simple functional language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epoll" = callPackage @@ -77056,7 +76730,6 @@ self: { homepage = "https://gitlab.com/twittner/epoll"; description = "epoll bindings"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eprocess" = callPackage @@ -77106,7 +76779,6 @@ self: { homepage = "http://hub.darcs.net/dino/epub-metadata"; description = "Library for parsing epub document metadata"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epub-tools" = callPackage @@ -77129,7 +76801,6 @@ self: { homepage = "http://hub.darcs.net/dino/epub-tools"; description = "Command line utilities for working with epub files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "epubname" = callPackage @@ -77147,7 +76818,6 @@ self: { homepage = "http://ui3.info/d/proj/epubname.html"; description = "Rename epub ebook files based on meta information"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eq_4_0_3" = callPackage @@ -77190,6 +76860,7 @@ self: { base bytestring explicit-exception filemanip transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/equal-files/"; description = "Shell command for finding equal files"; license = "GPL"; @@ -77202,6 +76873,7 @@ self: { version = "0.2.0.7"; sha256 = "8fb23a193f904527e632e0eaea89f42ad08caacbed133ac08af23e38baf32711"; libraryHaskellDepends = [ base singletons template-haskell void ]; + jailbreak = true; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -77314,7 +76986,6 @@ self: { jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eros-http" = callPackage @@ -77379,6 +77050,7 @@ self: { version = "0.1.0.3"; sha256 = "3248165acff3927d9e7f9aee206a146e285a9a17a7cd574b10a540f298be194c"; libraryHaskellDepends = [ base mtl text text-render ]; + jailbreak = true; homepage = "http://github.com/thinkpad20/error-list"; description = "A useful type for collecting error messages"; license = stdenv.lib.licenses.mit; @@ -77424,7 +77096,6 @@ self: { homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "error-util" = callPackage @@ -77434,6 +77105,7 @@ self: { version = "0.0.1.1"; sha256 = "68d133f2211d9be2f66f7529d1d2251ec13f12f9ccdd5f1c96be53f09cf3e193"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/pmlodawski/error-util"; description = "Set of utils and operators for error handling"; license = stdenv.lib.licenses.mit; @@ -77503,6 +77175,7 @@ self: { version = "1.4.7"; sha256 = "8732ebeae477feeb5b669532bc6ffc985f7b115e13fe823bbc816b4e7d1be525"; libraryHaskellDepends = [ base either safe transformers ]; + jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -77515,6 +77188,7 @@ self: { version = "2.0.0"; sha256 = "4527db37c2560b9b3a96eab58c632bf1fbb5e2d530b378eb9043ecedb0de4703"; libraryHaskellDepends = [ base safe transformers ]; + jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -77529,6 +77203,7 @@ self: { libraryHaskellDepends = [ base safe transformers transformers-compat ]; + jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -77545,6 +77220,7 @@ self: { libraryHaskellDepends = [ base safe transformers transformers-compat unexceptionalio ]; + jailbreak = true; description = "Simplified error-handling"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -77600,7 +77276,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ersatz" = callPackage + "ersatz_0_3" = callPackage ({ mkDerivation, array, base, bytestring, containers, data-default , directory, doctest, filepath, lens, mtl, parsec, process , temporary, transformers, unordered-containers @@ -77629,6 +77305,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ersatz" = callPackage + ({ mkDerivation, array, base, bytestring, containers, data-default + , directory, doctest, filepath, lens, mtl, parsec, process + , temporary, transformers, unordered-containers + }: + mkDerivation { + pname = "ersatz"; + version = "0.3.1"; + sha256 = "e9014d577c8bf077fdce57d60cc18c254635b9897513f1c7209c57e8687aa8c0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring containers data-default lens mtl process + temporary transformers unordered-containers + ]; + executableHaskellDepends = [ + array base containers lens mtl parsec + ]; + testHaskellDepends = [ base directory doctest filepath ]; + homepage = "http://github.com/ekmett/ersatz"; + description = "A monad for expressing SAT or QSAT problems using observable sharing"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ersatz-toysat" = callPackage ({ mkDerivation, array, base, containers, ersatz, toysolver , transformers @@ -77644,10 +77344,10 @@ self: { libraryHaskellDepends = [ array base containers ersatz toysolver transformers ]; + jailbreak = true; homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ert" = callPackage @@ -77697,7 +77397,6 @@ self: { homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "esqueleto_2_1_2_1" = callPackage @@ -77823,6 +77522,7 @@ self: { persistent persistent-sqlite persistent-template QuickCheck resourcet text transformers ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; @@ -77848,6 +77548,7 @@ self: { persistent persistent-sqlite persistent-template QuickCheck resourcet text transformers ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; @@ -77875,6 +77576,7 @@ self: { persistent persistent-sqlite persistent-template QuickCheck resourcet text transformers ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; @@ -77924,7 +77626,6 @@ self: { jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "estreps" = callPackage @@ -77942,7 +77643,6 @@ self: { homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "etcd" = callPackage @@ -77977,7 +77677,6 @@ self: { ]; description = "everything breaking the Fairbairn threshold"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ether_0_3_0_0" = callPackage @@ -77996,6 +77695,7 @@ self: { testHaskellDepends = [ base mtl QuickCheck tasty tasty-quickcheck transformers ]; + jailbreak = true; homepage = "https://int-index.github.io/ether/"; description = "Monad transformers and classes"; license = stdenv.lib.licenses.bsd3; @@ -78018,6 +77718,7 @@ self: { testHaskellDepends = [ base mtl QuickCheck tasty tasty-quickcheck transformers ]; + jailbreak = true; homepage = "https://int-index.github.io/ether/"; description = "Monad transformers and classes"; license = stdenv.lib.licenses.bsd3; @@ -78071,7 +77772,6 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -78096,7 +77796,6 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ethereum-rlp" = callPackage @@ -78174,10 +77873,10 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit test-framework-th ]; + jailbreak = true; homepage = "http://github.com/tsurucapital/euphoria"; description = "Dynamic network FRP with events and continuous values"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eurofxref" = callPackage @@ -78195,7 +77894,6 @@ self: { jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event_0_1_1" = callPackage @@ -78237,12 +77935,13 @@ self: { libraryHaskellDepends = [ base containers semigroups transformers ]; + jailbreak = true; description = "Monoidal, monadic and first-class events"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "event" = callPackage + "event_0_1_3" = callPackage ({ mkDerivation, base, containers, semigroups, transformers }: mkDerivation { pname = "event"; @@ -78251,11 +77950,13 @@ self: { libraryHaskellDepends = [ base containers semigroups transformers ]; + jailbreak = true; description = "Monoidal, monadic and first-class events"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "event_0_1_4" = callPackage + "event" = callPackage ({ mkDerivation, base, containers, semigroups, transformers }: mkDerivation { pname = "event"; @@ -78266,7 +77967,6 @@ self: { ]; description = "Monoidal, monadic and first-class events"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event-driven" = callPackage @@ -78278,7 +77978,6 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "event-handlers" = callPackage @@ -78327,7 +78026,6 @@ self: { homepage = "http://code.haskell.org/~mokus/event-monad"; description = "Event-graph simulation monad transformer"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventloop" = callPackage @@ -78336,8 +78034,10 @@ self: { }: mkDerivation { pname = "eventloop"; - version = "0.8.1.1"; - sha256 = "2b066af25bcb398ae29ed0f62c506c459af6fe69b93b494f840d6bd3c283bfb4"; + version = "0.8.1.2"; + sha256 = "1e4a62abcfb50f949cffe61a53d37c6b7a5ad157cdaecba31f528046f36fe42e"; + revision = "1"; + editedCabalFile = "11af2a4e0a7b4c39cb552ec0f0e4f9eed48e903194983d11fb1bc11705086baa"; libraryHaskellDepends = [ aeson base bytestring concurrent-utilities deepseq network stm suspend text timers websockets @@ -78346,7 +78046,6 @@ self: { homepage = "-"; description = "A different take on an IO system. Based on Amanda's IO loop, this eventloop takes a function that maps input events to output events. It can easily be extended by modules that represent IO devices or join multiple modules together."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventsourced" = callPackage @@ -78412,6 +78111,7 @@ self: { testHaskellDepends = [ aeson base stm tasty tasty-hunit text time ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/YoEight/eventstore"; description = "EventStore TCP Client"; @@ -78438,6 +78138,7 @@ self: { testHaskellDepends = [ aeson base dotnet-timespan stm tasty tasty-hunit text time ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/YoEight/eventstore"; description = "EventStore TCP Client"; @@ -78455,7 +78156,6 @@ self: { homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf"; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ewe" = callPackage @@ -78475,7 +78175,6 @@ self: { homepage = "http://github.com/jfcmacro/ewe"; description = "A language for teaching simple programming languages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ex-pool" = callPackage @@ -78514,6 +78213,7 @@ self: { version = "0.4.1.0"; sha256 = "ccee78d83c51a837613ba52af2e1aa1fb3be1366691eb156d450a1ac8a9343b9"; libraryHaskellDepends = [ base numtype-dk ]; + jailbreak = true; homepage = "https://github.com/dmcclean/exact-pi"; description = "Exact rational multiples of pi (and integer powers of pi)"; license = stdenv.lib.licenses.mit; @@ -78527,6 +78227,7 @@ self: { version = "0.4.1.1"; sha256 = "ea5928688a202ae54fd7216dbaab073ae660ffec4b3165724d98c938cc1acad8"; libraryHaskellDepends = [ base numtype-dk ]; + jailbreak = true; homepage = "https://github.com/dmcclean/exact-pi/"; description = "Exact rational multiples of pi (and integer powers of pi)"; license = stdenv.lib.licenses.mit; @@ -78580,6 +78281,7 @@ self: { base checkers directory doctest filepath groups QuickCheck random tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "http://github.com/expipiplus1/exact-real"; description = "Exact real arithmetic"; license = stdenv.lib.licenses.mit; @@ -78592,6 +78294,7 @@ self: { version = "0.0.0.2"; sha256 = "8c899c08ce4cc7b3d599d1938ddfb12c03ac7b6088ed24a4ae1f62f1eb1d67d2"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "yet"; description = "Exception type hierarchy with TemplateHaskell"; license = stdenv.lib.licenses.bsd3; @@ -78637,6 +78340,7 @@ self: { libraryHaskellDepends = [ base exception-transformers monads-tf transformers ]; + jailbreak = true; description = "Exception monad transformer instances for monads-tf classes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -78666,6 +78370,7 @@ self: { libraryHaskellDepends = [ base exception-transformers mtl transformers ]; + jailbreak = true; description = "Exception monad transformer instances for mtl classes"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -78739,6 +78444,7 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; + jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -78759,6 +78465,7 @@ self: { base HUnit test-framework test-framework-hunit transformers transformers-compat ]; + jailbreak = true; description = "Type classes and monads for unchecked extensible exceptions"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -78944,6 +78651,7 @@ self: { libraryHaskellDepends = [ base generics-sop template-haskell transformers ]; + jailbreak = true; homepage = "http://github.com/ocharles/exhaustive"; description = "Compile time checks that a computation considers producing data through all possible constructors"; license = stdenv.lib.licenses.bsd3; @@ -78968,6 +78676,7 @@ self: { http-types optparse-applicative pcre-light ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; description = "Exheres generator for cabal packages"; license = stdenv.lib.licenses.gpl2; }) {}; @@ -78982,7 +78691,6 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) exif;}; "exinst" = callPackage @@ -79066,6 +78774,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base lens QuickCheck template-haskell ]; executableHaskellDepends = [ base lens ]; + jailbreak = true; homepage = "https://bitbucket.org/cipher2048/existential/wiki/Home"; description = "A library for existential types"; license = stdenv.lib.licenses.mit; @@ -79082,7 +78791,6 @@ self: { homepage = "http://github.com/glehel/exists"; description = "Existential datatypes holding evidence of constraints"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exit-codes" = callPackage @@ -79104,6 +78812,7 @@ self: { version = "0.1.1.1"; sha256 = "fe4c8955f0fdff62525d7457b7be08147d063838cbb0f39bc2600256e24008a7"; libraryHaskellDepends = [ base compensated log-domain ]; + jailbreak = true; homepage = "http://code.mathr.co.uk/exp-extended"; description = "floating point with extended exponent range"; license = stdenv.lib.licenses.bsd3; @@ -79128,7 +78837,6 @@ self: { homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expand" = callPackage @@ -79143,7 +78851,6 @@ self: { jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -79161,7 +78868,6 @@ self: { homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expiring-cache-map" = callPackage @@ -79209,7 +78915,6 @@ self: { homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explicit-determinant" = callPackage @@ -79234,6 +78939,7 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Exception"; description = "Exceptions which are explicit in the type signature"; license = stdenv.lib.licenses.bsd3; @@ -79306,7 +79012,6 @@ self: { homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "explore" = callPackage @@ -79321,7 +79026,6 @@ self: { homepage = "http://corsis.sourceforge.net/haskell/explore"; description = "Experimental Plot data Reconstructor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exposed-containers" = callPackage @@ -79343,7 +79047,6 @@ self: { jailbreak = true; description = "A distribution of the 'containers' package, with all modules exposed"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expression-parser" = callPackage @@ -79371,7 +79074,6 @@ self: { ]; description = "Libraries for processing GHC Core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extemp" = callPackage @@ -79395,7 +79097,6 @@ self: { homepage = "http://patch-tag.com/r/salazar/extemp"; description = "automated printing for extemp speakers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-categories" = callPackage @@ -79409,7 +79110,6 @@ self: { homepage = "github.com/ian-mi/extended-categories"; description = "Extended Categories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-reals" = callPackage @@ -79464,7 +79164,7 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; - "extensible-effects" = callPackage + "extensible-effects_1_11_0_3" = callPackage ({ mkDerivation, base, HUnit, QuickCheck, test-framework , test-framework-hunit, test-framework-quickcheck2 , test-framework-th, transformers, transformers-base, type-aligned @@ -79484,6 +79184,29 @@ self: { homepage = "https://github.com/suhailshergill/extensible-effects"; description = "An Alternative to Monad Transformers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "extensible-effects" = callPackage + ({ mkDerivation, base, HUnit, QuickCheck, test-framework + , test-framework-hunit, test-framework-quickcheck2 + , test-framework-th, transformers, transformers-base, type-aligned + , void + }: + mkDerivation { + pname = "extensible-effects"; + version = "1.11.0.4"; + sha256 = "af92fba899d4414f615341a7b4df6808d4f13140330f0962c9e0ef53f9227913"; + libraryHaskellDepends = [ + base transformers transformers-base type-aligned void + ]; + testHaskellDepends = [ + base HUnit QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 test-framework-th void + ]; + homepage = "https://github.com/suhailshergill/extensible-effects"; + description = "An Alternative to Monad Transformers"; + license = stdenv.lib.licenses.mit; }) {}; "extensible-exceptions" = callPackage @@ -79526,6 +79249,7 @@ self: { testHaskellDepends = [ base directory filepath QuickCheck time unix ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; @@ -79548,6 +79272,7 @@ self: { testHaskellDepends = [ base directory filepath QuickCheck time unix ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; @@ -79570,6 +79295,7 @@ self: { testHaskellDepends = [ base directory filepath QuickCheck time unix ]; + jailbreak = true; homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; @@ -79676,7 +79402,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "extra" = callPackage + "extra_1_4_7" = callPackage ({ mkDerivation, base, directory, filepath, process, QuickCheck , time, unix }: @@ -79693,6 +79419,26 @@ self: { homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "extra" = callPackage + ({ mkDerivation, base, directory, filepath, process, QuickCheck + , time, unix + }: + mkDerivation { + pname = "extra"; + version = "1.4.8"; + sha256 = "1518fd3e2578346a50d578d34f0889e261738c4e2f5f01bf0b9fac1f1e4b59d1"; + libraryHaskellDepends = [ + base directory filepath process time unix + ]; + testHaskellDepends = [ + base directory filepath QuickCheck time unix + ]; + homepage = "https://github.com/ndmitchell/extra#readme"; + description = "Extra functions I use"; + license = stdenv.lib.licenses.bsd3; }) {}; "extract-dependencies" = callPackage @@ -79759,7 +79505,6 @@ self: { homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "faceted" = callPackage @@ -79773,7 +79518,6 @@ self: { homepage = "http://github.com/haskell-faceted/haskell-faceted"; description = "Faceted computation for dynamic information flow security"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factory" = callPackage @@ -79798,7 +79542,6 @@ self: { homepage = "http://functionalley.eu/Factory/factory.html"; description = "Rational arithmetic in an irrational world"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factual-api" = callPackage @@ -79817,7 +79560,6 @@ self: { homepage = "https://github.com/rudyl313/factual-haskell-driver"; description = "A driver for the Factual API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fad" = callPackage @@ -79844,18 +79586,19 @@ self: { base containers diagrams diagrams-lib diagrams-rasterific lens transformers-compat ]; + jailbreak = true; homepage = "http://github.com/slpopejoy/"; description = "Braid representations in Haskell"; license = stdenv.lib.licenses.bsd2; }) {}; "fail" = callPackage - ({ mkDerivation, base }: + ({ mkDerivation }: mkDerivation { pname = "fail"; version = "4.9.0.0"; sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - libraryHaskellDepends = [ base ]; + doHaddock = false; homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; description = "Forward-compatible MonadFail class"; license = stdenv.lib.licenses.bsd3; @@ -79896,7 +79639,6 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck time ]; - jailbreak = true; description = "Failure Detectors implimented in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -79956,7 +79698,6 @@ self: { homepage = "http://github.com/tranma/falling-turnip"; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" ]; }) {}; "fallingblocks" = callPackage @@ -79976,7 +79717,6 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "family-tree" = callPackage @@ -79995,10 +79735,9 @@ self: { homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "farmhash" = callPackage + "farmhash_0_1_0_4" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck }: mkDerivation { pname = "farmhash"; @@ -80006,13 +79745,14 @@ self: { sha256 = "71e43616fe48c0454db551110229bd50ca4b4625f255478cb45f4a6480e113d7"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ base bytestring hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "farmhash_0_1_0_5" = callPackage + "farmhash" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck }: mkDerivation { pname = "farmhash"; @@ -80023,7 +79763,6 @@ self: { homepage = "https://github.com/abhinav/farmhash"; description = "Fast hash functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-builder_0_0_0_2" = callPackage @@ -80036,6 +79775,7 @@ self: { sha256 = "ee921b721243896e8f1aa77cc50f8732a10e43c8d2366ddd7cd5352a90b0d61d"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring process QuickCheck stm ]; + jailbreak = true; homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; @@ -80052,6 +79792,7 @@ self: { sha256 = "74f45c8059eb428cfb75d7ff72d49b775af53d3e155329537e15fde1b068feed"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring process QuickCheck stm ]; + jailbreak = true; homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; @@ -80068,6 +79809,24 @@ self: { sha256 = "7c9349ff068b2f321fad9d84a4de699058575fd96470ab5d94964cd7ea032a34"; libraryHaskellDepends = [ base bytestring ghc-prim ]; testHaskellDepends = [ base bytestring process QuickCheck stm ]; + jailbreak = true; + homepage = "http://github.com/takano-akio/fast-builder"; + description = "Fast ByteString Builder"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fast-builder_0_0_0_5" = callPackage + ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck + , stm + }: + mkDerivation { + pname = "fast-builder"; + version = "0.0.0.5"; + sha256 = "8dc2dbd164d71aacc1a92b0c31448e86311886f188a7f3b65894dae1ccf183ac"; + libraryHaskellDepends = [ base bytestring ghc-prim ]; + testHaskellDepends = [ base bytestring process QuickCheck stm ]; + jailbreak = true; homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; @@ -80075,21 +79834,6 @@ self: { }) {}; "fast-builder" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck - , stm - }: - mkDerivation { - pname = "fast-builder"; - version = "0.0.0.5"; - sha256 = "8dc2dbd164d71aacc1a92b0c31448e86311886f188a7f3b65894dae1ccf183ac"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - testHaskellDepends = [ base bytestring process QuickCheck stm ]; - homepage = "http://github.com/takano-akio/fast-builder"; - description = "Fast ByteString Builder"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - - "fast-builder_0_0_0_6" = callPackage ({ mkDerivation, base, bytestring, ghc-prim, process, QuickCheck , stm }: @@ -80102,7 +79846,6 @@ self: { homepage = "http://github.com/takano-akio/fast-builder"; description = "Fast ByteString Builder"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-digits" = callPackage @@ -80121,7 +79864,6 @@ self: { homepage = "https://github.com/Bodigrim/fast-digits"; description = "The fast library for integer-to-digits conversion"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fast-logger_2_2_3" = callPackage @@ -80314,7 +80056,6 @@ self: { homepage = "https://github.com/elaforge/fast-tags"; description = "Fast incremental vi and emacs tags"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-tagsoup" = callPackage @@ -80393,7 +80134,6 @@ self: { homepage = "https://github.com/cscherrer/fastbayes"; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fastcgi" = callPackage @@ -80446,7 +80186,6 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fault-tree" = callPackage @@ -80459,7 +80198,6 @@ self: { homepage = "http://tomahawkins.org"; description = "A fault tree analysis library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay_0_21_2_1" = callPackage @@ -80695,6 +80433,7 @@ self: { utf8-string vector ]; executableHaskellDepends = [ base mtl optparse-applicative split ]; + jailbreak = true; homepage = "https://github.com/faylang/fay/wiki"; description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; license = stdenv.lib.licenses.bsd3; @@ -80834,6 +80573,7 @@ self: { libraryHaskellDepends = [ base Cabal data-default directory fay filepath safe split text ]; + jailbreak = true; description = "Compile Fay code on cabal install, and ad-hoc recompile during development"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -80887,7 +80627,6 @@ self: { homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fay-jquery_0_6_0_2" = callPackage @@ -81253,6 +80992,7 @@ self: { version = "0.3.6"; sha256 = "9a24e190b70fd3bcd5a70813e50872398217b24d39da76b175cbcbbd693580c6"; libraryHaskellDepends = [ base cereal fb persistent text time ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/fb-persistent"; description = "Provides Persistent instances to Facebook types"; license = stdenv.lib.licenses.bsd3; @@ -81310,7 +81050,6 @@ self: { homepage = "https://github.com/Neki/fcd"; description = "A faster way to navigate directories using the command line"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fckeditor" = callPackage @@ -81324,7 +81063,6 @@ self: { homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fclabels_2_0_2" = callPackage @@ -81370,6 +81108,7 @@ self: { testHaskellDepends = [ base HUnit mtl template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/sebastiaanvisser/fclabels"; description = "First class accessor labels implemented as lenses"; license = stdenv.lib.licenses.bsd3; @@ -81387,6 +81126,7 @@ self: { testHaskellDepends = [ base HUnit mtl template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/sebastiaanvisser/fclabels"; description = "First class accessor labels implemented as lenses"; license = stdenv.lib.licenses.bsd3; @@ -81452,7 +81192,6 @@ self: { homepage = "https://github.com/jkarlson/fdo-trash"; description = "Utilities related to freedesktop Trash standard"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feature-flags" = callPackage @@ -81562,6 +81301,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -81583,6 +81323,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -81604,6 +81345,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -81625,6 +81367,7 @@ self: { base HUnit old-locale old-time test-framework test-framework-hunit time time-locale-compat utf8-string xml ]; + jailbreak = true; homepage = "https://github.com/bergmark/feed"; description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; license = stdenv.lib.licenses.bsd3; @@ -81670,7 +81413,6 @@ self: { homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli"; description = "A simple command line interface for creating and updating feeds like RSS"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed-collect" = callPackage @@ -81709,6 +81451,45 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "feed-gipeda" = callPackage + ({ mkDerivation, aeson, async, base, binary, bytestring + , concurrent-extra, conduit, conduit-extra, containers, data-hash + , directory, distributed-process, distributed-process-async + , distributed-process-client-server, distributed-process-extras + , distributed-process-simplelocalnet, exceptions, file-embed + , filepath, fsnotify, HUnit, logging, managed, network-uri + , optparse-applicative, process, reactive-banana, tasty + , tasty-hspec, tasty-hunit, tasty-quickcheck, tasty-smallcheck + , temporary, text, time, transformers, yaml + }: + mkDerivation { + pname = "feed-gipeda"; + version = "0.1.0.1"; + sha256 = "18be33291fc74c0ab18c8897e97f3811cb4e1e1f8fd11e084a49554d3696aa52"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base binary bytestring concurrent-extra containers data-hash + directory distributed-process distributed-process-async + distributed-process-client-server distributed-process-extras + distributed-process-simplelocalnet file-embed filepath fsnotify + logging network-uri process reactive-banana temporary text time + transformers yaml + ]; + executableHaskellDepends = [ + base directory filepath logging optparse-applicative + ]; + testHaskellDepends = [ + async base bytestring conduit conduit-extra directory exceptions + file-embed filepath fsnotify HUnit managed network-uri process + tasty tasty-hspec tasty-hunit tasty-quickcheck tasty-smallcheck + temporary text transformers + ]; + homepage = "http://github.com/sgraf812/feed-gipeda#readme"; + description = "Simple project template from stack"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "feed-translator" = callPackage ({ mkDerivation, base, blaze-html, blaze-markup, bytestring , cmdargs, containers, cryptohash, feed, iso639, lens @@ -81730,7 +81511,6 @@ self: { homepage = "https://github.com/dahlia/feed-translator"; description = "Translate syndication feeds"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2lj" = callPackage @@ -81749,7 +81529,6 @@ self: { ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2twitter" = callPackage @@ -81767,7 +81546,6 @@ self: { homepage = "http://github.com/tomlokhorst/feed2twitter"; description = "Send posts from a feed to Twitter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -81795,7 +81573,6 @@ self: { homepage = "http://feldspar.github.com"; description = "Compiler for the Feldspar language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -81821,7 +81598,6 @@ self: { homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-signal" = callPackage @@ -81895,7 +81671,6 @@ self: { homepage = "http://fenfire.org/"; description = "Graph-based notetaking system"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {raptor = null;}; "fez-conf" = callPackage @@ -81922,7 +81697,6 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fficxx" = callPackage @@ -81963,8 +81737,8 @@ self: { }: mkDerivation { pname = "ffmpeg-light"; - version = "0.10.0"; - sha256 = "4b8347300fbc1c687f9db5a00baa59dc654be11d9299258f5bd2256a61501395"; + version = "0.11.0"; + sha256 = "120899b72de9112e057cde89ab0c4a832091ba67101bbe191cd50f8744931117"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -81976,6 +81750,7 @@ self: { executableHaskellDepends = [ base JuicyPixels mtl transformers vector ]; + homepage = "http://github.com/acowley/ffmpeg-light"; description = "Minimal bindings to the FFmpeg library"; license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) ffmpeg; libavcodec = null; libavdevice = null; @@ -81997,7 +81772,6 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fft_0_1_8_2" = callPackage @@ -82013,6 +81787,7 @@ self: { ]; libraryPkgconfigDepends = [ fftw fftwFloat ]; testHaskellDepends = [ base carray QuickCheck storable-complex ]; + jailbreak = true; doCheck = false; description = "Bindings to the FFTW library"; license = stdenv.lib.licenses.bsd3; @@ -82045,6 +81820,7 @@ self: { sha256 = "24cf427a14bc30d6d333ad71e1e5de25497564016a1d627655322bf2c4b173b6"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ fftw ]; + jailbreak = true; homepage = "https://github.com/adamwalker/haskell-fftw-simple"; description = "Low level bindings to FFTW"; license = stdenv.lib.licenses.bsd3; @@ -82168,7 +81944,6 @@ self: { homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fibonacci" = callPackage @@ -82197,7 +81972,6 @@ self: { homepage = "http://github.com/AstraFIN/fields"; description = "First-class record field combinators with infix record field syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fields-json" = callPackage @@ -82226,7 +82000,6 @@ self: { jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fig" = callPackage @@ -82430,6 +82203,7 @@ self: { testHaskellDepends = [ base containers lifted-base process template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; @@ -82450,6 +82224,7 @@ self: { testHaskellDepends = [ base containers lifted-base process template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; @@ -82469,6 +82244,7 @@ self: { transformers ]; testHaskellDepends = [ base lifted-base process ]; + jailbreak = true; homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; @@ -82488,10 +82264,10 @@ self: { transformers ]; testHaskellDepends = [ base lifted-base process ]; + jailbreak = true; homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "file-modules" = callPackage @@ -82534,7 +82310,6 @@ self: { homepage = "http://lpuppet.banquise.net/"; description = "A Linux-only cache system associating values to files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "filediff" = callPackage @@ -82690,7 +82465,6 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-enumerator" = callPackage @@ -82707,7 +82481,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-filesystem/"; description = "Enumerator-based API for manipulating the filesystem"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filesystem-trees" = callPackage @@ -82734,6 +82507,7 @@ self: { version = "0.1.0.5"; sha256 = "6d2a75d6b69f8d0f538e680923e9f68c17ee6feaed505a2d86d9baae4784ce7e"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/strake/filtrable.hs"; description = "Class of filtrable containers"; license = stdenv.lib.licenses.bsd3; @@ -82807,7 +82581,6 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fingertree_0_1_0_0" = callPackage @@ -82979,7 +82752,6 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/"; description = "Defunctionalisation for Yhc Core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fishfood" = callPackage @@ -83002,7 +82774,6 @@ self: { homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fit" = callPackage @@ -83020,9 +82791,9 @@ self: { attoparsec base bytestring containers hspec hspec-attoparsec mtl QuickCheck text ]; + jailbreak = true; description = "FIT file decoder"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fitsio" = callPackage @@ -83036,7 +82807,6 @@ self: { homepage = "http://github.com/esessoms/fitsio"; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cfitsio;}; "fix-imports" = callPackage @@ -83067,7 +82837,6 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fix-symbols-gitit" = callPackage @@ -83079,7 +82848,6 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed_0_2_1" = callPackage @@ -83156,7 +82924,6 @@ self: { jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector" = callPackage @@ -83169,7 +82936,6 @@ self: { jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-point-vector-space" = callPackage @@ -83182,7 +82948,6 @@ self: { jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-precision" = callPackage @@ -83200,7 +82965,6 @@ self: { homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-storable-array" = callPackage @@ -83213,7 +82977,6 @@ self: { jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed-vector_0_7_0_3" = callPackage @@ -83290,7 +83053,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "fixed-vector-hetero" = callPackage + "fixed-vector-hetero_0_3_1_0" = callPackage ({ mkDerivation, base, deepseq, fixed-vector, ghc-prim, primitive , transformers }: @@ -83304,6 +83067,23 @@ self: { homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; description = "Generic heterogeneous vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "fixed-vector-hetero" = callPackage + ({ mkDerivation, base, deepseq, fixed-vector, ghc-prim, primitive + , transformers + }: + mkDerivation { + pname = "fixed-vector-hetero"; + version = "0.3.1.1"; + sha256 = "894c7364ea270326dc3e030559ec94e5c6e9f974c9345188cbeba8365a45deaf"; + libraryHaskellDepends = [ + base deepseq fixed-vector ghc-prim primitive transformers + ]; + homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; + description = "Generic heterogeneous vectors"; + license = stdenv.lib.licenses.bsd3; }) {}; "fixedprec" = callPackage @@ -83354,7 +83134,6 @@ self: { homepage = "https://github.com/revnull/fixfile"; description = "File-backed recursive data structures"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixhs" = callPackage @@ -83443,6 +83222,7 @@ self: { executableHaskellDepends = [ base binary deepseq HTTP optparse-applicative process ]; + jailbreak = true; homepage = "http://noaxiom.org/flAccurateRip"; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = stdenv.lib.licenses.gpl3; @@ -83484,6 +83264,7 @@ self: { version = "0.1.0.0"; sha256 = "98ee27978642f7f07e48d7d7567e0cd1dc531a4a6e0e515e3f5cd343e6c9be4f"; libraryHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://github.com/AndrasKovacs/flat-maybe"; description = "Strict Maybe without space and indirection overhead"; license = stdenv.lib.licenses.bsd3; @@ -83521,7 +83302,7 @@ self: { license = stdenv.lib.licenses.gpl2; }) {}; - "flexible-defaults" = callPackage + "flexible-defaults_0_0_1_1" = callPackage ({ mkDerivation, base, containers, template-haskell, th-extras , transformers }: @@ -83535,6 +83316,23 @@ self: { homepage = "https://github.com/mokus0/flexible-defaults"; description = "Generate default function implementations for complex type classes"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flexible-defaults" = callPackage + ({ mkDerivation, base, containers, template-haskell, th-extras + , transformers + }: + mkDerivation { + pname = "flexible-defaults"; + version = "0.0.1.2"; + sha256 = "827032cecf5e937d673f3a0b84fbbaba7c03fce6a567c15faf36865da9b76dc2"; + libraryHaskellDepends = [ + base containers template-haskell th-extras transformers + ]; + homepage = "https://github.com/mokus0/flexible-defaults"; + description = "Generate default function implementations for complex type classes"; + license = stdenv.lib.licenses.publicDomain; }) {}; "flexible-time" = callPackage @@ -83574,7 +83372,6 @@ self: { jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flexiwrap-smallcheck" = callPackage @@ -83589,7 +83386,6 @@ self: { jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flickr" = callPackage @@ -83608,7 +83404,6 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flippers" = callPackage @@ -83640,7 +83435,6 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flo" = callPackage @@ -83690,7 +83484,6 @@ self: { testHaskellDepends = [ base ]; description = "Conversions between floating and integral values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "floatshow" = callPackage @@ -83768,7 +83561,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "flow" = callPackage + "flow_1_0_6" = callPackage ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: mkDerivation { pname = "flow"; @@ -83779,6 +83572,21 @@ self: { homepage = "https://github.com/tfausak/flow#readme"; description = "Write more understandable Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "flow" = callPackage + ({ mkDerivation, base, doctest, QuickCheck, template-haskell }: + mkDerivation { + pname = "flow"; + version = "1.0.7"; + sha256 = "f1964913c5bbd81748610c2f66a7aa9750b25953e6940c0933b25d4b2f1b1f62"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base doctest QuickCheck template-haskell ]; + doCheck = false; + homepage = "https://github.com/tfausak/flow#readme"; + description = "Write more understandable Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "flow2dot" = callPackage @@ -83797,7 +83605,6 @@ self: { homepage = "http://adept.linux.kiev.ua:8080/repos/flow2dot"; description = "Library and binary to generate sequence/flow diagrams from plain text source"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock" = callPackage @@ -83856,7 +83663,6 @@ self: { homepage = "https://github.com/gabemc/flowdock-api"; description = "API integration with Flowdock"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowdock-rest" = callPackage @@ -83886,7 +83692,6 @@ self: { homepage = "https://github.com/futurice/haskell-flowdock-rest#readme"; description = "Flowdock REST API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flower" = callPackage @@ -83906,7 +83711,6 @@ self: { homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowlocks-framework" = callPackage @@ -83919,7 +83723,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flowsim" = callPackage @@ -83939,7 +83742,6 @@ self: { homepage = "http://biohaskell.org/Applications/FlowSim"; description = "Simulate 454 pyrosequencing"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fltkhs" = callPackage @@ -84074,7 +83876,6 @@ self: { homepage = "https://github.com/MostAwesomeDude/hsfluidsynth"; description = "Haskell bindings to FluidSynth"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) fluidsynth;}; "fmark" = callPackage @@ -84257,6 +84058,7 @@ self: { revision = "1"; editedCabalFile = "2fd83bef83cc171b26d53614a3a67c82bd83aee4c6ea406a33d0cd379f1b1f25"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/focus"; description = "A general abstraction for manipulating elements of container data structures"; @@ -84291,7 +84093,6 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce"; description = "Fold multiple events that happen in a given period of time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "fold-debounce-conduit" = callPackage @@ -84312,7 +84113,6 @@ self: { homepage = "https://github.com/debug-ito/fold-debounce-conduit"; description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "foldl_1_0_7" = callPackage @@ -84466,6 +84266,7 @@ self: { base bytestring comonad containers mwc-random primitive profunctors text transformers vector ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -84483,6 +84284,7 @@ self: { base bytestring comonad containers mwc-random primitive profunctors text transformers vector ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -84500,6 +84302,26 @@ self: { base bytestring comonad containers mwc-random primitive profunctors text transformers vector ]; + jailbreak = true; + description = "Composable, streaming, and efficient left folds"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "foldl_1_2_0" = callPackage + ({ mkDerivation, base, bytestring, comonad, containers + , contravariant, mwc-random, primitive, profunctors, text + , transformers, vector + }: + mkDerivation { + pname = "foldl"; + version = "1.2.0"; + sha256 = "05591f82585aa87634b4faa135dc3f2df1ed963995b6b685b2559654ded786f1"; + libraryHaskellDepends = [ + base bytestring comonad containers contravariant mwc-random + primitive profunctors text transformers vector + ]; + jailbreak = true; description = "Composable, streaming, and efficient left folds"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -84512,8 +84334,8 @@ self: { }: mkDerivation { pname = "foldl"; - version = "1.2.0"; - sha256 = "05591f82585aa87634b4faa135dc3f2df1ed963995b6b685b2559654ded786f1"; + version = "1.2.1"; + sha256 = "86afa8df81991d9901e717107fa12fc6f3577e8fd40ef9e57d388435b6e68073"; libraryHaskellDepends = [ base bytestring comonad containers contravariant mwc-random primitive profunctors text transformers vector @@ -84541,7 +84363,6 @@ self: { homepage = "https://github.com/tonyday567/foldl-incremental"; description = "incremental folds"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foldl-transduce" = callPackage @@ -84589,10 +84410,9 @@ self: { }) {}; "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, bytestring, comonad - , constraints, contravariant, data-reify, deepseq, directory - , distributive, doctest, filepath, lens, mtl, pointed, profunctors - , reflection, semigroupoids, semigroups, transformers + ({ mkDerivation, adjunctions, base, bifunctors, comonad + , constraints, contravariant, data-reify, distributive, lens, mtl + , pointed, profunctors, reflection, semigroupoids, transformers , unordered-containers, vector }: mkDerivation { @@ -84603,15 +84423,11 @@ self: { libraryHaskellDepends = [ adjunctions base bifunctors comonad constraints contravariant data-reify distributive lens mtl pointed profunctors reflection - semigroupoids semigroups transformers unordered-containers vector - ]; - testHaskellDepends = [ - base bytestring deepseq directory doctest filepath mtl semigroups + semigroupoids transformers unordered-containers vector ]; homepage = "http://github.com/ekmett/folds"; description = "Beautiful Folding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "folds-common" = callPackage @@ -84625,7 +84441,6 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "follower" = callPackage @@ -84645,7 +84460,6 @@ self: { homepage = "http://rebworks.net/projects/follower/"; description = "Follow Tweets anonymously"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foma" = callPackage @@ -84656,10 +84470,10 @@ self: { sha256 = "63791467c24e9092d9ec5b295a4702f0ef9e89f01d75bae941aff4ffe3223eaa"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ foma ]; + jailbreak = true; homepage = "http://github.com/joom/foma.hs"; description = "Simple Haskell bindings for Foma"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {foma = null;}; "font-opengl-basic4x6" = callPackage @@ -84675,7 +84489,6 @@ self: { jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foo" = callPackage @@ -84692,7 +84505,6 @@ self: { homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "for-free" = callPackage @@ -84710,7 +84522,6 @@ self: { jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forbidden-fruit" = callPackage @@ -84733,7 +84544,6 @@ self: { homepage = "http://github.com/minpou/forbidden-fruit"; description = "A library accelerates imperative style programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "force-layout_0_3_0_8" = callPackage @@ -84834,6 +84644,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; @@ -84864,7 +84675,6 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "forecast-io" = callPackage @@ -84924,6 +84734,7 @@ self: { revision = "1"; editedCabalFile = "0c4981a93acc5fbe5295bb9dcfb0cba769f4a4b3d00d63eeece3aee8ffd9cfbb"; libraryHaskellDepends = [ base stm transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/foreign-var/"; description = "Encapsulating mutatable state in external libraries"; license = stdenv.lib.licenses.bsd3; @@ -84939,6 +84750,7 @@ self: { revision = "1"; editedCabalFile = "f9c906434533279cfa8e2897c6eed6ed9c279f373efc5180bda76b704601fa1c"; libraryHaskellDepends = [ base stm transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/foreign-var/"; description = "Encapsulating mutatable state in external libraries"; license = stdenv.lib.licenses.bsd3; @@ -84993,7 +84805,6 @@ self: { jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format" = callPackage @@ -85008,7 +84819,6 @@ self: { homepage = "https://github.com/bytbox/hs-format"; description = "Rendering from and scanning to format strings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format-status" = callPackage @@ -85027,7 +84837,6 @@ self: { jailbreak = true; description = "A utility for writing the date to dzen2"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formattable" = callPackage @@ -85146,7 +84955,6 @@ self: { homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets" = callPackage @@ -85165,7 +84973,6 @@ self: { homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -85182,7 +84989,6 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formura" = callPackage @@ -85217,7 +85023,6 @@ self: { jailbreak = true; description = "A simple eDSL for generating arrayForth code"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foscam-directory" = callPackage @@ -85288,7 +85093,6 @@ self: { homepage = "https://github.com/tonymorris/foscam-sort"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fountain" = callPackage @@ -85376,7 +85180,6 @@ self: { homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fpipe" = callPackage @@ -85423,7 +85226,6 @@ self: { ]; description = "Example implementations for FPNLA library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fptest" = callPackage @@ -85490,6 +85292,7 @@ self: { sha256 = "3dbca177023352014cb5c61205a9a90a640a75a0557935126800e25f38f2424a"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base integer-gmp QuickCheck ]; + jailbreak = true; description = "A collection of useful fractal curve encoders"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -85519,7 +85322,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Frag"; description = "A 3-D First Person Shooter Game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frame" = callPackage @@ -85568,7 +85370,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freddy" = callPackage @@ -85586,11 +85387,9 @@ self: { amqp async base broadcast-chan bytestring data-default hspec random text uuid ]; - jailbreak = true; homepage = "https://github.com/salemove/freddy-hs"; description = "RabbitMQ Messaging API supporting request-response"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free_4_9" = callPackage @@ -85668,6 +85467,7 @@ self: { base bifunctors comonad distributive exceptions mtl prelude-extras profunctors semigroupoids semigroups template-haskell transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/free/"; description = "Monads for free"; license = stdenv.lib.licenses.bsd3; @@ -85701,6 +85501,7 @@ self: { version = "0.1.0.1"; sha256 = "9ff2ee86c7a56f0c080e32394a82be129cb0b198fb9327b265a0735161e751b1"; libraryHaskellDepends = [ base type-aligned ]; + jailbreak = true; homepage = "https://github.com/srijs/haskell-free-concurrent"; description = "Free monads suitable for concurrent computation"; license = stdenv.lib.licenses.mit; @@ -85745,7 +85546,6 @@ self: { homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-http" = callPackage @@ -85760,6 +85560,7 @@ self: { base bytestring free http-client http-types mtl QuickCheck text time transformers ]; + jailbreak = true; homepage = "https://github.com/aaronlevin/free-http"; description = "An HTTP Client based on Free Monads"; license = stdenv.lib.licenses.mit; @@ -85779,7 +85580,6 @@ self: { jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems" = callPackage @@ -85795,7 +85595,6 @@ self: { ]; description = "Automatic generation of free theorems"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-counterexamples" = callPackage @@ -85814,7 +85613,6 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq" = callPackage @@ -85833,7 +85631,6 @@ self: { jailbreak = true; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-seq-webui" = callPackage @@ -85852,7 +85649,6 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-theorems-webui" = callPackage @@ -85871,7 +85667,6 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "free-vl" = callPackage @@ -85911,7 +85706,6 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freenect_1_2" = callPackage @@ -85945,7 +85739,6 @@ self: { homepage = "https://github.com/chrisdone/freenect"; description = "Interface to the Kinect device"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freenect; freenect_sync = null; libfreenect = null;}; @@ -85964,10 +85757,10 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://gitlab.com/queertypes/freer"; description = "Implementation of the Freer Monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freesect" = callPackage @@ -85987,7 +85780,6 @@ self: { homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freesound" = callPackage @@ -86010,7 +85802,6 @@ self: { homepage = "https://github.com/kaoskorobase/freesound"; description = "Access the Freesound Project database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "freetype-simple" = callPackage @@ -86084,6 +85875,7 @@ self: { testHaskellDepends = [ base QuickCheck test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/RaphaelJ/friday"; description = "A functional image processing library for Haskell"; license = stdenv.lib.licenses.gpl3; @@ -86101,6 +85893,7 @@ self: { base bytestring convertible deepseq friday transformers vector ]; librarySystemDepends = [ libdevil ]; + jailbreak = true; homepage = "https://github.com/RaphaelJ/friday-devil"; description = "Uses the DevIL C library to read and write images from and to files and memory buffers"; license = stdenv.lib.licenses.gpl3; @@ -86118,10 +85911,10 @@ self: { testHaskellDepends = [ base bytestring file-embed friday hspec JuicyPixels ]; + jailbreak = true; homepage = "https://github.com/TomMD/friday-juicypixels"; description = "Converts between the Friday and JuicyPixels image types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "friday-scale-dct" = callPackage @@ -86205,7 +85998,6 @@ self: { homepage = "http://github.com/frp-arduino/frp-arduino"; description = "Arduino programming without the hassle of C"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frpnow" = callPackage @@ -86233,7 +86025,6 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program awesome stuff with Gloss and frpnow!"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frpnow-gtk" = callPackage @@ -86250,7 +86041,6 @@ self: { homepage = "https://github.com/atzeus/FRPNow"; description = "Program GUIs with GTK and frpnow!"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "frquotes" = callPackage @@ -86277,7 +86067,6 @@ self: { homepage = "http://github.com/nkpart/fs-events"; description = "A haskell binding to the FSEvents API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsharp" = callPackage @@ -86305,7 +86094,6 @@ self: { homepage = "http://projects.haskell.org/fsmActions/"; description = "Finite state machines and FSM actions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fsnotify_0_1_0_3" = callPackage @@ -86423,7 +86211,6 @@ self: { jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftp-conduit" = callPackage @@ -86442,7 +86229,6 @@ self: { homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ftphs" = callPackage @@ -86491,7 +86277,6 @@ self: { jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fugue" = callPackage @@ -86515,7 +86300,6 @@ self: { homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html"; description = "a monad for protocol-typed network programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "full-text-search" = callPackage @@ -86536,7 +86320,6 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fullstop" = callPackage @@ -86558,7 +86341,6 @@ self: { homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot" = callPackage @@ -86588,7 +86370,6 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot"; description = "IRC bot for fun, learning, creativity and collaboration"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-client" = callPackage @@ -86608,7 +86389,6 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-client/"; description = "Report events to FunBot over a JSON/HTTP API"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funbot-ext-events" = callPackage @@ -86641,7 +86421,6 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-git-hook/"; description = "Git hook which sends events to FunBot"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funcmp" = callPackage @@ -86675,6 +86454,7 @@ self: { executableHaskellDepends = [ base bv containers directory mtl multiset parsec split text vector ]; + jailbreak = true; homepage = "http://plancomps.org"; description = "A modular interpreter for executing funcons"; license = stdenv.lib.licenses.mit; @@ -86689,7 +86469,6 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "function-instances-algebra" = callPackage @@ -86715,7 +86494,6 @@ self: { jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functional-kmp" = callPackage @@ -86765,6 +86543,7 @@ self: { version = "0.0.3"; sha256 = "fe01131dcef76a6a1e66424f12757e66724f24bed4c353d4beadf3890a0ef3c2"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "https://github.com/fmap/functor-infix"; description = "Infix operators for mapping over compositions of functors. Lots of them."; license = stdenv.lib.licenses.mit; @@ -86789,6 +86568,7 @@ self: { version = "1.1"; sha256 = "a054cbd84686777774b9e2c36c1b5ceaf8ca415a9755e922ff52137eb9ac36ba"; libraryHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://github.com/wdanilo/functor-utils"; description = "Collection of functor utilities, providing handy operators, like generalization of (.)."; license = stdenv.lib.licenses.asl20; @@ -86803,7 +86583,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functors" = callPackage @@ -86835,7 +86614,6 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "funpat" = callPackage @@ -86871,7 +86649,6 @@ self: { homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fusion" = callPackage @@ -86884,6 +86661,7 @@ self: { sha256 = "95a8c2a5ee98fa16a548ec55a42c5a7dde2fce688df74cf884a777db654a486f"; libraryHaskellDepends = [ base pipes-safe transformers void ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "https://github.com/jwiegley/fusion"; description = "Effectful streaming library based on shortcut fusion techniques"; license = stdenv.lib.licenses.bsd3; @@ -86913,7 +86691,6 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future"; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "future-resource" = callPackage @@ -86995,7 +86772,6 @@ self: { ]; description = "A 'ten past six' style clock"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl" = callPackage @@ -87013,7 +86789,6 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "Game engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fwgl-glfw" = callPackage @@ -87028,10 +86803,10 @@ self: { base fwgl gl GLFW-b hashable JuicyPixels transformers unordered-containers vect vector ]; + jailbreak = true; homepage = "https://github.com/ziocroc/FWGL"; description = "FWGL GLFW backend"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fwgl-javascript" = callPackage @@ -87063,7 +86838,6 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gact" = callPackage @@ -87081,7 +86855,6 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "game-of-life" = callPackage @@ -87133,7 +86906,6 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gamma" = callPackage @@ -87204,7 +86976,6 @@ self: { homepage = "http://www.daneel0yaitskov.000space.com"; description = "planar graph embedding into a plane"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gc" = callPackage @@ -87239,7 +87010,6 @@ self: { homepage = "https://github.com/yihuang/gc-monitoring-wai"; description = "a wai application to show GHC.GCStats"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gconf" = callPackage @@ -87301,7 +87071,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic diff for the instant-generics library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdiff-th" = callPackage @@ -87322,7 +87091,6 @@ self: { homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gdo" = callPackage @@ -87339,6 +87107,7 @@ self: { base bytestring containers cryptohash directory filepath process transformers ]; + jailbreak = true; description = "recursive atomic build system"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -87356,7 +87125,6 @@ self: { homepage = "http://code.mathr.co.uk/gearbox"; description = "zooming rotating fractal gears graphics demo"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek" = callPackage @@ -87378,7 +87146,6 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geek-server" = callPackage @@ -87402,7 +87169,6 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine server"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gelatin" = callPackage @@ -87426,7 +87192,6 @@ self: { ]; description = "An experimental real time renderer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gemstone" = callPackage @@ -87446,7 +87211,6 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gencheck" = callPackage @@ -87464,7 +87228,6 @@ self: { homepage = "http://github.com/JacquesCarette/GenCheck"; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gender" = callPackage @@ -87481,7 +87244,6 @@ self: { homepage = "https://github.com/womfoo/gender"; description = "Identify a persons gender by their first name"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genders" = callPackage @@ -87497,7 +87259,6 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {genders = null;}; "general-prelude" = callPackage @@ -87512,7 +87273,6 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generator" = callPackage @@ -87538,7 +87298,6 @@ self: { homepage = "http://liamoc.net/pdf/Generator.pdf"; description = "Actually useful monadic random value generators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-accessors" = callPackage @@ -87557,7 +87316,6 @@ self: { ]; description = "stringly-named getters for generic data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-aeson_0_2_0_2" = callPackage @@ -87672,6 +87430,7 @@ self: { aeson attoparsec base generic-deriving mtl tagged text unordered-containers vector ]; + jailbreak = true; description = "Derivation of Aeson instances using GHC generics"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -87718,7 +87477,6 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-deepseq" = callPackage @@ -87741,6 +87499,7 @@ self: { version = "1.6.3"; sha256 = "c738b1947aa2cc86a8baf68b7f0e73a10489738bb51cbb1636c3c1ab0af59211"; libraryHaskellDepends = [ base ghc-prim template-haskell ]; + jailbreak = true; description = "Generic programming library for generalised deriving"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -87753,6 +87512,7 @@ self: { version = "1.8.0"; sha256 = "26b3d927c1341e372118c976d4d8b33a7c4a42ec657734ef9b4653ab1aa486cd"; libraryHaskellDepends = [ base ghc-prim template-haskell ]; + jailbreak = true; description = "Generic programming library for generalised deriving"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -87769,6 +87529,7 @@ self: { libraryHaskellDepends = [ base containers ghc-prim template-haskell ]; + jailbreak = true; homepage = "https://github.com/dreixel/generic-deriving"; description = "Generic programming library for generalised deriving"; license = stdenv.lib.licenses.bsd3; @@ -87836,6 +87597,7 @@ self: { testHaskellDepends = [ base bytestring containers tasty tasty-hunit text vector ]; + jailbreak = true; homepage = "https://github.com/tanakh/generic-pretty"; description = "Pretty printing for Generic value"; license = stdenv.lib.licenses.mit; @@ -87884,7 +87646,6 @@ self: { jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-tree" = callPackage @@ -87898,19 +87659,21 @@ self: { license = "LGPL"; }) {}; - "generic-trie" = callPackage + "generic-trie_0_3_0_1" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { pname = "generic-trie"; version = "0.3.0.1"; sha256 = "e773b951a1b308f1f5a78653af557c700be05f0c22b3a9da895e60c4b5cac425"; libraryHaskellDepends = [ base containers transformers ]; + jailbreak = true; homepage = "http://github.com/glguy/tries"; description = "A map, where the keys may be complex structured data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "generic-trie_0_3_0_2" = callPackage + "generic-trie" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { pname = "generic-trie"; @@ -87920,7 +87683,6 @@ self: { homepage = "http://github.com/glguy/tries"; description = "A map, where the keys may be complex structured data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-xml" = callPackage @@ -87935,7 +87697,6 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-xmlpickler_0_1_0_0" = callPackage @@ -88008,6 +87769,7 @@ self: { testHaskellDepends = [ base hxt hxt-pickle-utils tasty tasty-hunit tasty-th ]; + jailbreak = true; homepage = "http://github.com/silkapp/generic-xmlpickler"; description = "Generic generation of HXT XmlPickler instances using GHC Generics"; license = stdenv.lib.licenses.bsd3; @@ -88031,7 +87793,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "generics-eot" = callPackage + "generics-eot_0_2_1" = callPackage ({ mkDerivation, base, directory, doctest, filepath, hspec , interpolate, markdown-unlit, mockery, QuickCheck, shake }: @@ -88047,6 +87809,25 @@ self: { homepage = "https://github.com/soenkehahn/generics-eot#readme"; description = "A library for generic programming that aims to be easy to understand"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "generics-eot" = callPackage + ({ mkDerivation, base, directory, doctest, filepath, hspec + , interpolate, markdown-unlit, mockery, QuickCheck, shake + }: + mkDerivation { + pname = "generics-eot"; + version = "0.2.1.1"; + sha256 = "89af298dd2ad37bc86ab240f3309451a6e66dd13dbf79227eb01832c3748d0d8"; + libraryHaskellDepends = [ base markdown-unlit ]; + testHaskellDepends = [ + base directory doctest filepath hspec interpolate markdown-unlit + mockery QuickCheck shake + ]; + homepage = "https://github.com/soenkehahn/generics-eot#readme"; + description = "A library for generic programming that aims to be easy to understand"; + license = stdenv.lib.licenses.bsd3; }) {}; "generics-sop_0_1_0_3" = callPackage @@ -88108,6 +87889,7 @@ self: { version = "0.1.1.2"; sha256 = "679b9b10dfa66d45c44f3f98e13e9d4148229d25937be54549ef12e8796731e5"; libraryHaskellDepends = [ base ghc-prim template-haskell ]; + jailbreak = true; description = "Generic Programming using True Sums of Products"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -88121,6 +87903,7 @@ self: { sha256 = "37c4afc49b68bc79a20b388ce949b7d7df5feedbf6649e2fcddbdfbeaeb55d62"; libraryHaskellDepends = [ base ghc-prim template-haskell ]; testHaskellDepends = [ base ]; + jailbreak = true; description = "Generic Programming using True Sums of Products"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -88161,7 +87944,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genetics" = callPackage @@ -88175,7 +87957,6 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-gui" = callPackage @@ -88198,7 +87979,6 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-util" = callPackage @@ -88223,7 +88003,6 @@ self: { homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniconvert" = callPackage @@ -88244,7 +88023,6 @@ self: { homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genifunctors" = callPackage @@ -88279,6 +88057,7 @@ self: { version = "0.7.1"; sha256 = "60d4b0a0d01a93ee9188eb52d39803d9c2c814d321f95acfb0fdb8c7c075e773"; libraryHaskellDepends = [ base mtl template-haskell ]; + jailbreak = true; homepage = "https://github.com/danr/geniplate"; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; @@ -88330,7 +88109,6 @@ self: { jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genprog" = callPackage @@ -88381,7 +88159,6 @@ self: { homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; description = "Performs geo location lookups and parses the results"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geo-uk" = callPackage @@ -88487,7 +88264,6 @@ self: { ]; description = "Pure haskell interface to MaxMind GeoIP database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "geojson" = callPackage @@ -88510,7 +88286,6 @@ self: { homepage = "https://github.com/domdere/hs-geojson"; description = "A thin GeoJSON Layer above the aeson library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "geojson-types" = callPackage @@ -88537,7 +88312,6 @@ self: { jailbreak = true; description = "package for geometry in euklidean 2d space"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "getemx" = callPackage @@ -88557,7 +88331,6 @@ self: { homepage = "http://bitbucket.org/kenko/getemx"; description = "Fetch from emusic using .emx files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getflag" = callPackage @@ -88569,7 +88342,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getopt-generics_0_10_0_1" = callPackage @@ -88675,10 +88447,9 @@ self: { homepage = "http://a319-101.ipm.edu.mo/~wke/ggts/impl/"; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-boot" = callPackage + "ghc-boot_8_0_1" = callPackage ({ mkDerivation, base, binary, bytestring, directory, filepath , ghc-boot-th }: @@ -88689,12 +88460,12 @@ self: { libraryHaskellDepends = [ base binary bytestring directory filepath ghc-boot-th ]; - jailbreak = true; description = "Shared functionality between GHC and its boot libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-boot-th" = callPackage + "ghc-boot-th_8_0_1" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "ghc-boot-th"; @@ -88703,6 +88474,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Shared functionality between GHC and the @template-haskell@ library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-core" = callPackage @@ -88786,7 +88558,6 @@ self: { jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events" = callPackage @@ -88807,6 +88578,7 @@ self: { testHaskellDepends = [ array base binary bytestring containers mtl ]; + jailbreak = true; doCheck = false; description = "Library and tool for parsing .eventlog files from GHC"; license = stdenv.lib.licenses.bsd3; @@ -88852,9 +88624,9 @@ self: { testHaskellDepends = [ array base binary bytestring containers transformers ]; + jailbreak = true; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-exactprint" = callPackage @@ -88874,9 +88646,9 @@ self: { base containers directory filemanip filepath ghc ghc-paths HUnit mtl silently syb ]; + jailbreak = true; description = "ExactPrint for GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghc-gc-tune" = callPackage @@ -88900,6 +88672,7 @@ self: { version = "0.1.0.0"; sha256 = "f0905739f35dbf7fa133f6f96cc2f421f2a0dd2714b4a7ecf5dc15c481aac408"; libraryHaskellDepends = [ base ghc ]; + jailbreak = true; homepage = "https://github.com/alanz/ghc-generic-instances"; description = "Derived instances of GHC.Generic of the GHC AST"; license = stdenv.lib.licenses.publicDomain; @@ -88935,6 +88708,7 @@ self: { base binary bytestring containers ghc template-haskell transformers ]; testHaskellDepends = [ base deepseq ]; + jailbreak = true; description = "Extract the heap representation of Haskell values and thunks"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -88974,7 +88748,6 @@ self: { homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-make" = callPackage @@ -89150,6 +88923,7 @@ self: { mtl old-time optparse-applicative pretty process split time ]; testHaskellDepends = [ base doctest hspec ]; + jailbreak = true; doCheck = false; homepage = "http://www.mew.org/~kazu/proj/ghc-mod/"; description = "Happy Haskell Programming"; @@ -89190,10 +88964,12 @@ self: { base bin-package-db Cabal directory filepath ghc ghc-paths process transformers unix ]; + jailbreak = true; homepage = "https://github.com/ranjitjhala/ghc-options.git"; description = "Utilities for extracting GHC options needed to compile a given Haskell target"; license = stdenv.lib.licenses.mit; - }) {}; + broken = true; + }) {bin-package-db = null;}; "ghc-parmake" = callPackage ({ mkDerivation, array, base, containers, directory, filepath @@ -89229,6 +89005,7 @@ self: { sha256 = "e3e085bd656c8865d80994ad909960de448719394d1d033b75b4c6fc756a6031"; libraryHaskellDepends = [ base ghc ]; libraryToolDepends = [ cpphs happy ]; + jailbreak = true; homepage = "https://github.com/gibiansky/IHaskell"; description = "Haskell source parser from GHC"; license = stdenv.lib.licenses.mit; @@ -89243,6 +89020,7 @@ self: { sha256 = "494e9df73942c5e77e01c331eaee94438c15c711d78f48c1d1c4d8977ffb5152"; libraryHaskellDepends = [ base ghc ]; libraryToolDepends = [ cpphs happy ]; + jailbreak = true; homepage = "https://github.com/gibiansky/IHaskell"; description = "Haskell source parser from GHC"; license = stdenv.lib.licenses.mit; @@ -89275,7 +89053,6 @@ self: { jailbreak = true; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-pkg-lib" = callPackage @@ -89345,6 +89122,7 @@ self: { transformers-compat ]; executableHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; @@ -89366,6 +89144,7 @@ self: { transformers-compat ]; executableHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; @@ -89382,6 +89161,7 @@ self: { libraryHaskellDepends = [ base binary bytestring directory filepath ghc ghc-paths ]; + jailbreak = true; homepage = "https://github.com/valderman/ghc-simple"; description = "Simplified interface to the GHC API"; license = stdenv.lib.licenses.mit; @@ -89410,7 +89190,6 @@ self: { homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-syb-utils_0_2_2" = callPackage @@ -89445,6 +89224,7 @@ self: { version = "0.1"; sha256 = "6edaff0bb718904438b9e8f6a54cd05443f1b08e6ceaf3b97488abf2f6e823d3"; libraryHaskellDepends = [ base ghc ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "Utilities for writing GHC type-checker plugins"; license = stdenv.lib.licenses.bsd2; @@ -89490,6 +89270,7 @@ self: { testHaskellDepends = [ base ghc-typelits-natnormalise tasty tasty-hunit ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "Additional type-level operations on GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; @@ -89522,6 +89303,7 @@ self: { sha256 = "19c5e3effe09e046e52aedd19ef8ee5bfbaf2d1b1afda7aba204326830ae3199"; libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; @@ -89537,6 +89319,7 @@ self: { sha256 = "8ec5650de2f2c940b7da8961694e14d199788e12111a8f1c1e41dfcdf938f0e2"; libraryHaskellDepends = [ base ghc ghc-tcplugins-extra ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; license = stdenv.lib.licenses.bsd2; @@ -89585,13 +89368,13 @@ self: { base cairo containers deepseq fgl ghc-heap-view graphviz gtk3 mtl svgcairo text transformers xdot ]; + jailbreak = true; homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; - "ghci" = callPackage + "ghci_8_0_1" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , deepseq, filepath, ghc-boot, template-haskell, transformers, unix }: @@ -89603,9 +89386,9 @@ self: { array base binary bytestring containers deepseq filepath ghc-boot template-haskell transformers unix ]; - jailbreak = true; description = "The library supporting GHC's interactive interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-diagrams" = callPackage @@ -89618,7 +89401,6 @@ self: { jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-haskeline" = callPackage @@ -89639,7 +89421,6 @@ self: { homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-lib" = callPackage @@ -89672,6 +89453,7 @@ self: { array base bytestring containers directory filepath ghc ghc-paths haskeline process syb time transformers unix ]; + jailbreak = true; homepage = "https://github.com/chrisdone/ghci-ng"; description = "Next generation GHCi"; license = stdenv.lib.licenses.bsd3; @@ -89894,7 +89676,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "ghcjs-dom" = callPackage + "ghcjs-dom_0_2_4_0" = callPackage ({ mkDerivation, base, glib, gtk3, text, transformers, webkitgtk3 }: mkDerivation { @@ -89906,7 +89688,18 @@ self: { ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghcjs-dom" = callPackage + ({ mkDerivation, base, jsaddle-dom, text, transformers }: + mkDerivation { + pname = "ghcjs-dom"; + version = "0.3.0.1"; + sha256 = "9cc468ac3d957289ee09ce0356d3eb0051c792fe5a5e65f49b88045d237e206b"; + libraryHaskellDepends = [ base jsaddle-dom text transformers ]; + description = "DOM library that supports both GHCJS and WebKitGTK"; + license = stdenv.lib.licenses.mit; }) {}; "ghcjs-dom-hello" = callPackage @@ -89918,10 +89711,10 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base ghcjs-dom mtl ]; + jailbreak = true; homepage = "https://github.com/ghcjs/ghcjs-dom-hello"; description = "GHCJS DOM Hello World, an example package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ghcjs-hplay" = callPackage @@ -89984,7 +89777,6 @@ self: { homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghczdecode" = callPackage @@ -90022,7 +89814,6 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-atk" = callPackage @@ -90042,7 +89833,26 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; + }) {inherit (pkgs) atk;}; + + "gi-atk_2_0_4" = callPackage + ({ mkDerivation, atk, base, bytestring, containers, gi-glib + , gi-gobject, haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-atk"; + version = "2.0.4"; + sha256 = "0ff8915112f0f0f24e1a80e390e780ec81b4dcb4a41bc155743865dc8f49ffca"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ atk ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Atk bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) atk;}; "gi-cairo" = callPackage @@ -90062,6 +89872,24 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; + }) {cairo-gobject = null;}; + + "gi-cairo_1_0_4" = callPackage + ({ mkDerivation, base, bytestring, cairo-gobject, containers + , haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-cairo"; + version = "1.0.4"; + sha256 = "6532815f3b225d62c8ed9f865572a6d8ab740fa041adca20ea78b4e9a1735fec"; + libraryHaskellDepends = [ + base bytestring containers haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ cairo-gobject ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Cairo bindings"; + license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; }) {cairo-gobject = null;}; @@ -90083,6 +89911,26 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; + }) {gdk3 = null;}; + + "gi-gdk_3_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo + , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango + , haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gdk"; + version = "3.0.4"; + sha256 = "e6a8fc97a124b625a70002aaf0bbe2ae5d33356bd3a733addbbb2eaebee8473f"; + libraryHaskellDepends = [ + base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib + gi-gobject gi-pango haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gdk3 ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Gdk bindings"; + license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; @@ -90104,7 +89952,26 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; + }) {inherit (pkgs) gdk_pixbuf;}; + + "gi-gdkpixbuf_2_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, gdk_pixbuf, gi-gio + , gi-glib, gi-gobject, haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gdkpixbuf"; + version = "2.0.4"; + sha256 = "434c75e7e200869c084d661f0fcf7c22526ef59fcbf9c2bab6aaae8611cdb9cf"; + libraryHaskellDepends = [ + base bytestring containers gi-gio gi-glib gi-gobject + haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gdk_pixbuf ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GdkPixbuf bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gio" = callPackage @@ -90124,28 +89991,45 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + }) {inherit (pkgs) glib;}; + + "gi-gio_2_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , glib, haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gio"; + version = "2.0.4"; + sha256 = "197f50d604ccd56dd6610d699657f1926189d5da7685018ef4c1ad33642bcb94"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ glib ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Gio bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-girepository" = callPackage ({ mkDerivation, base, bytestring, containers, gi-gobject - , gobjectIntrospection, haskell-gi, haskell-gi-base, text - , transformers + , gobjectIntrospection, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-girepository"; - version = "1.0.3"; - sha256 = "aa40c340fce39c3b6f6a582905e370cee47f5e07c2beebe95a8bbc02a7a20274"; + version = "1.0.4"; + sha256 = "1c00a09129041157bf1a3a01b3a0167bea4a9ad6b29b84e00583aba269e555ed"; libraryHaskellDepends = [ - base bytestring containers gi-gobject haskell-gi haskell-gi-base - text transformers + base bytestring containers gi-gobject haskell-gi-base text + transformers ]; libraryPkgconfigDepends = [ gobjectIntrospection ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository (gobject-introspection) bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) gobjectIntrospection;}; "gi-glib" = callPackage @@ -90165,7 +90049,25 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + }) {inherit (pkgs) glib;}; + + "gi-glib_2_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, glib + , haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-glib"; + version = "2.0.4"; + sha256 = "3015352ac2ebc49664c2a1618e16418985b09993f3ad20792e17121c9ab1fce7"; + libraryHaskellDepends = [ + base bytestring containers haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ glib ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GLib bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gobject" = callPackage @@ -90185,61 +90087,77 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + }) {inherit (pkgs) glib;}; + + "gi-gobject_2_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, glib + , haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gobject"; + version = "2.0.4"; + sha256 = "a177cf48261764f3ae2aaa41a900ef5d08b96eaa8813d112c2b7a64588b3ab0f"; + libraryHaskellDepends = [ + base bytestring containers gi-glib haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ glib ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GObject bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gst" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , gstreamer, haskell-gi, haskell-gi-base, text, transformers + , gstreamer, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-gst"; - version = "1.0.3"; - sha256 = "6886c00b4cff10b873709762f3db3d22ed2007e36a36ef73470eb2389e6d2fb3"; + version = "1.0.4"; + sha256 = "6bf1d0d2e85e1c999d7e3ed14e9ff53f1f84ecf61555767db4e09499b95b025c"; libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base text transformers + base bytestring containers gi-glib gi-gobject haskell-gi-base text + transformers ]; libraryPkgconfigDepends = [ gstreamer ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamer bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gstreamer;}; "gi-gstaudio" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base - , text, transformers + , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-gstaudio"; - version = "1.0.3"; - sha256 = "e7a63a66a6edd8871deef7f2c0659aa455821c4c7157c128ac135b6d157ccd49"; + version = "1.0.4"; + sha256 = "63af4a27bbbe5a20d8d4cf0c4c61f051056a52e99635c18105e792c5dc40e0ef"; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ gst_plugins_base ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerAudio bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstbase" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , gi-gst, gst_plugins_base, haskell-gi, haskell-gi-base, text - , transformers + , gi-gst, gst_plugins_base, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-gstbase"; - version = "1.0.3"; - sha256 = "3efcc31f79c6da853ca710dfcb2468bade41bc7b5cfa642503ae2cec75bedf67"; + version = "1.0.4"; + sha256 = "ca2ed5d1ee65417f65062010d87d4a90525c7cbb76652b685d1de2f063fd96c3"; libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject gi-gst haskell-gi + base bytestring containers gi-glib gi-gobject gi-gst haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ gst_plugins_base ]; @@ -90247,31 +90165,29 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerBase bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstvideo" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi, haskell-gi-base - , text, transformers + , gi-gst, gi-gstbase, gst_plugins_base, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-gstvideo"; - version = "1.0.3"; - sha256 = "54a9661a23719ba346ccffb345f6896ffa3a9a9628705076518b5e7368d2c3cf"; + version = "1.0.4"; + sha256 = "cf02df311648bcedeb377ed386237d0f0695365d09d6be9ec6ae4f26ff74f894"; libraryHaskellDepends = [ base bytestring containers gi-glib gi-gobject gi-gst gi-gstbase - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ gst_plugins_base ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerVideo bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; - "gi-gtk" = callPackage + "gi-gtk_3_0_3" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 , haskell-gi, haskell-gi-base, text, transformers @@ -90293,20 +90209,78 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome2.gtk;}; + "gi-gtk" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo + , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 + , haskell-gi-base, text, transformers + }: + mkDerivation { + pname = "gi-gtk"; + version = "3.0.4"; + sha256 = "a6527c34665a8d395ea529d44d97742f92f2bf1f55d97d9225e727e39e3ad158"; + libraryHaskellDepends = [ + base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf + gi-gio gi-glib gi-gobject gi-pango haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ gtk3 ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Gtk bindings"; + license = stdenv.lib.licenses.lgpl21; + }) {gtk3 = pkgs.gnome2.gtk;}; + + "gi-gtk-hs" = callPackage + ({ mkDerivation, base, base-compat, containers, gi-gdk + , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl + , text, transformers + }: + mkDerivation { + pname = "gi-gtk-hs"; + version = "0.2.0.1"; + sha256 = "6d7d6011c0bf3150dd0328469a6bd5f459485c30d5b76bfe2a580f0b170413c7"; + libraryHaskellDepends = [ + base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject + gi-gtk haskell-gi-base mtl text transformers + ]; + homepage = "https://github.com/haskell-gi/gi-gtk-hs"; + description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; + license = stdenv.lib.licenses.lgpl21; + }) {}; + + "gi-gtkosxapplication" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf + , gi-gobject, gi-gtk, gtk-mac-integration-gtk3, haskell-gi-base + , text, transformers + }: + mkDerivation { + pname = "gi-gtkosxapplication"; + version = "2.0.4"; + sha256 = "6c41278cdc0829ab06d83245250cd8c9192770e03d4916f2084ca2eb0d5c1b79"; + libraryHaskellDepends = [ + base bytestring containers gi-gdkpixbuf gi-gobject gi-gtk + haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ gtk-mac-integration-gtk3 ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "GtkosxApplication bindings"; + license = stdenv.lib.licenses.lgpl21; + }) {gtk-mac-integration-gtk3 = null;}; + "gi-gtksource" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk - , gi-pango, gtksourceview, haskell-gi, haskell-gi-base, text - , transformers + , gi-pango, gtksourceview, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-gtksource"; - version = "3.0.3"; - sha256 = "f3ccac36ee88f12101fbab5e1cbc893932a17e1c07d5329be6d9190e5b501088"; + version = "3.0.4"; + sha256 = "aa360eecff313dc03abe6d352f3ee237af5dd1b4df372fab0617fa84b35cadf9"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base text transformers + gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi-base text + transformers ]; libraryPkgconfigDepends = [ gtksourceview ]; doHaddock = false; @@ -90316,16 +90290,33 @@ self: { }) {inherit (pkgs.gnome) gtksourceview;}; "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, containers, haskell-gi - , haskell-gi-base, javascriptcoregtk, text, transformers + ({ mkDerivation, base, bytestring, containers, haskell-gi-base + , javascriptcoregtk, text, transformers }: mkDerivation { pname = "gi-javascriptcore"; - version = "4.0.3"; - sha256 = "4de96b5ffa891588f2aa77e78c7d369c26afc3a233134a01b90438d057786597"; + version = "3.0.4"; + sha256 = "33de003d6ae4a8595f1b509618dcf83048ab0e0837b541d33d0610d7f6f6f641"; libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base text - transformers + base bytestring containers haskell-gi-base text transformers + ]; + libraryPkgconfigDepends = [ javascriptcoregtk ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "JavaScriptCore bindings"; + license = stdenv.lib.licenses.lgpl21; + }) {javascriptcoregtk = null;}; + + "gi-javascriptcore_4_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, haskell-gi-base + , javascriptcoregtk, text, transformers + }: + mkDerivation { + pname = "gi-javascriptcore"; + version = "4.0.4"; + sha256 = "408c500fea9217ddfe84bdd1ff4dfaabe5113def51f19a9e00da17574753a072"; + libraryHaskellDepends = [ + base bytestring containers haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ javascriptcoregtk ]; doHaddock = false; @@ -90337,23 +90328,22 @@ self: { "gi-notify" = callPackage ({ mkDerivation, base, bytestring, containers, gi-gdkpixbuf - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, libnotify, text + , gi-glib, gi-gobject, haskell-gi-base, libnotify, text , transformers }: mkDerivation { pname = "gi-notify"; - version = "0.7.3"; - sha256 = "03f8ccbe73908644dc01462c9046e67e165cb261d325f8ccf39f02c445fdf770"; + version = "0.7.4"; + sha256 = "ff72dd988345b970b5fb0258349cebd0178ddbf523389748e1abaf57651965c3"; libraryHaskellDepends = [ base bytestring containers gi-gdkpixbuf gi-glib gi-gobject - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ libnotify ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libnotify bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) libnotify;}; "gi-pango" = callPackage @@ -90373,21 +90363,39 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; + }) {inherit (pkgs.gnome) pango;}; + + "gi-pango_1_0_4" = callPackage + ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject + , haskell-gi-base, pango, text, transformers + }: + mkDerivation { + pname = "gi-pango"; + version = "1.0.4"; + sha256 = "692d8d357d24f76f5d386d66f3f3be877f7cc72968c60d0b3f3309007b27dd22"; + libraryHaskellDepends = [ + base bytestring containers gi-glib gi-gobject haskell-gi-base text + transformers + ]; + libraryPkgconfigDepends = [ pango ]; + doHaddock = false; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Pango bindings"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "gi-pangocairo" = callPackage ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-glib - , gi-gobject, gi-pango, haskell-gi, haskell-gi-base, pango, text - , transformers + , gi-gobject, gi-pango, haskell-gi-base, pango, text, transformers }: mkDerivation { pname = "gi-pangocairo"; - version = "1.0.3"; - sha256 = "799e4ed0cc657132f7ef88f829fc5eee7390a8855c4f564a55c8066549462604"; + version = "1.0.4"; + sha256 = "e75d3931e3c58f2be33783ac06aa87b9ada8ca6668c5d78e6c0b6fd638a234e6"; libraryHaskellDepends = [ base bytestring containers gi-cairo gi-glib gi-gobject gi-pango - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ pango ]; doHaddock = false; @@ -90398,36 +90406,33 @@ self: { "gi-poppler" = callPackage ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-gio - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base, poppler, text - , transformers + , gi-glib, gi-gobject, haskell-gi-base, poppler, text, transformers }: mkDerivation { pname = "gi-poppler"; - version = "0.18.3"; - sha256 = "8d060edfd5bbb0a37334e00c043cd06e9df358773fd21ad51d3f7f6b3f4c5f69"; + version = "0.18.4"; + sha256 = "01bc646881b6275d22ef6633fb95dd5fc49c44738e7c1cc27284fceb4c8ca74d"; libraryHaskellDepends = [ base bytestring containers gi-cairo gi-gio gi-glib gi-gobject - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ poppler ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Poppler bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) poppler;}; "gi-soup" = callPackage ({ mkDerivation, base, bytestring, containers, gi-gio, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, libsoup, text - , transformers + , gi-gobject, haskell-gi-base, libsoup, text, transformers }: mkDerivation { pname = "gi-soup"; - version = "2.4.3"; - sha256 = "ee786ad3b35b6468f53f3962611e5316a020bdf98d9b4050a598f7b45a575a4b"; + version = "2.4.4"; + sha256 = "8284732ddd001d87221992d47fd980d4629ac62e2460b3710a75926b1de5bce6"; libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi + base bytestring containers gi-gio gi-glib gi-gobject haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ libsoup ]; @@ -90435,96 +90440,91 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libsoup bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-gdk - , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi - , haskell-gi-base, text, transformers, vte + , gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi-base + , text, transformers, vte }: mkDerivation { pname = "gi-vte"; - version = "2.91.3"; - sha256 = "675caf935431d9c059fbd214d30019aede82b51349693bcc29ae74a213e646e4"; + version = "2.91.4"; + sha256 = "82fcc4afa1044e3a9fa975f0950a6b46e16fb11934fefed23b9d14935d2f5259"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject - gi-gtk gi-pango haskell-gi haskell-gi-base text transformers + gi-gtk gi-pango haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ vte ]; doHaddock = false; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo , gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-gtk - , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text - , transformers, webkit + , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers + , webkit }: mkDerivation { pname = "gi-webkit"; - version = "3.0.3"; - sha256 = "8652475bdd3bd713a2eb6ceb55c4ab81bf0939824d707dfe888e007c782fd216"; + version = "3.0.4"; + sha256 = "0a2b689e9f8433d4da321be15f9bf488e57e652cbdb47288d3bfaef2e1a65134"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-gtk gi-javascriptcore gi-soup - haskell-gi haskell-gi-base text transformers + haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ webkit ]; doHaddock = false; - jailbreak = true; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage ({ mkDerivation, base, bytestring, containers, gi-atk, gi-cairo , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-javascriptcore - , gi-soup, haskell-gi, haskell-gi-base, text, transformers - , webkit2gtk + , gi-soup, haskell-gi-base, text, transformers, webkit2gtk }: mkDerivation { pname = "gi-webkit2"; - version = "4.0.3"; - sha256 = "1f0ec734c2eb560a6b539dec340106ed6cf6a74fdd8ea4d6b21228657cb2818d"; + version = "4.0.4"; + sha256 = "3748f8b1d30683822b887527668ac7e87b879d72c2b4d1e2576d51c3dedf0d37"; libraryHaskellDepends = [ base bytestring containers gi-atk gi-cairo gi-gdk gi-gio gi-glib - gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi - haskell-gi-base text transformers + gi-gobject gi-gtk gi-javascriptcore gi-soup haskell-gi-base text + transformers ]; libraryPkgconfigDepends = [ webkit2gtk ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2 bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk = null;}; "gi-webkit2webextension" = callPackage ({ mkDerivation, base, bytestring, containers, gi-gobject, gi-gtk - , gi-javascriptcore, gi-soup, haskell-gi, haskell-gi-base, text - , transformers, webkit2gtk-web-extension + , gi-javascriptcore, gi-soup, haskell-gi-base, text, transformers + , webkit2gtk-web-extension }: mkDerivation { pname = "gi-webkit2webextension"; - version = "4.0.3"; - sha256 = "19711474df979da0da05bcf94df82674e89e31471fb76c050a43a5a071d05df4"; + version = "4.0.4"; + sha256 = "afe4d27191c98d5db379a87953b680d6d8ed508b74a28c5bea0ac37ae5f78493"; libraryHaskellDepends = [ base bytestring containers gi-gobject gi-gtk gi-javascriptcore - gi-soup haskell-gi haskell-gi-base text transformers + gi-soup haskell-gi-base text transformers ]; libraryPkgconfigDepends = [ webkit2gtk-web-extension ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2-WebExtension bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; "gimlh" = callPackage @@ -90541,13 +90541,13 @@ self: { "ginger" = callPackage ({ mkDerivation, aeson, base, bytestring, data-default, filepath - , http-types, mtl, parsec, safe, scientific, text, transformers - , unordered-containers, utf8-string, vector + , http-types, mtl, parsec, safe, scientific, tasty, tasty-hunit + , text, transformers, unordered-containers, utf8-string, vector }: mkDerivation { pname = "ginger"; - version = "0.2.4.0"; - sha256 = "88671a03eed786add0fc982bca39aed74be98ae9cf50bfd470d4c578fd1370f7"; + version = "0.2.5.0"; + sha256 = "8a5e6d780b42e641d54c57513f12ef2b0193ee37f420182c3cff773dbbe566cc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -90559,6 +90559,10 @@ self: { aeson base bytestring data-default text transformers unordered-containers ]; + testHaskellDepends = [ + aeson base bytestring data-default mtl tasty tasty-hunit text + transformers utf8-string + ]; homepage = "https://bitbucket.org/tdammers/ginger"; description = "An implementation of the Jinja2 template language in Haskell"; license = stdenv.lib.licenses.mit; @@ -90589,7 +90593,7 @@ self: { "gio_0_13_0_3" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl + , gtk2hs-buildtools, mtl, system-glib }: mkDerivation { pname = "gio"; @@ -90598,6 +90602,7 @@ self: { libraryHaskellDepends = [ array base bytestring containers glib mtl ]; + libraryPkgconfigDepends = [ system-glib ]; libraryToolDepends = [ gtk2hs-buildtools ]; doHaddock = false; doCheck = false; @@ -90605,11 +90610,11 @@ self: { description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {system-glib = pkgs.glib;}; "gio_0_13_0_4" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl + , gtk2hs-buildtools, mtl, system-glib }: mkDerivation { pname = "gio"; @@ -90618,6 +90623,7 @@ self: { libraryHaskellDepends = [ array base bytestring containers glib mtl ]; + libraryPkgconfigDepends = [ system-glib ]; libraryToolDepends = [ gtk2hs-buildtools ]; doHaddock = false; doCheck = false; @@ -90625,11 +90631,11 @@ self: { description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {system-glib = pkgs.glib;}; "gio_0_13_1_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl + , gtk2hs-buildtools, mtl, system-glib }: mkDerivation { pname = "gio"; @@ -90638,16 +90644,17 @@ self: { libraryHaskellDepends = [ array base bytestring containers glib mtl ]; + libraryPkgconfigDepends = [ system-glib ]; libraryToolDepends = [ gtk2hs-buildtools ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GIO"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {system-glib = pkgs.glib;}; - "gio" = callPackage + "gio_0_13_1_1" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl + , gtk2hs-buildtools, mtl, system-glib }: mkDerivation { pname = "gio"; @@ -90656,29 +90663,30 @@ self: { libraryHaskellDepends = [ array base bytestring containers glib mtl ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to GIO"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - - "gio_0_13_2_0" = callPackage - ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl - }: - mkDerivation { - pname = "gio"; - version = "0.13.2.0"; - sha256 = "e5049fabb2cd1da78bae2b6d9968bfe50491ecb0f7e4a75855499aeeb264fd72"; - libraryHaskellDepends = [ - array base bytestring containers glib mtl - ]; + libraryPkgconfigDepends = [ system-glib ]; libraryToolDepends = [ gtk2hs-buildtools ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to GIO"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + }) {system-glib = pkgs.glib;}; + + "gio" = callPackage + ({ mkDerivation, array, base, bytestring, containers, glib, mtl + , system-glib + }: + mkDerivation { + pname = "gio"; + version = "0.13.3.0"; + sha256 = "f20d17c56ee29cdd102234c00be1cdf0e5c12b7abe6c0a9723668a6f72a57417"; + libraryHaskellDepends = [ + array base bytestring containers glib mtl + ]; + libraryPkgconfigDepends = [ system-glib ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to GIO"; + license = stdenv.lib.licenses.lgpl21; + }) {system-glib = pkgs.glib;}; "gipeda_0_1_0_2" = callPackage ({ mkDerivation, aeson, base, bytestring, cassava, containers @@ -90772,7 +90780,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "gipeda" = callPackage + "gipeda_0_2_0_1" = callPackage ({ mkDerivation, aeson, base, bytestring, cassava, containers , directory, extra, filepath, gitlib, gitlib-libgit2, scientific , shake, split, tagged, text, unordered-containers, vector, yaml @@ -90788,6 +90796,32 @@ self: { gitlib gitlib-libgit2 scientific shake split tagged text unordered-containers vector yaml ]; + jailbreak = true; + homepage = "https://github.com/nomeata/gipeda"; + description = "Git Performance Dashboard"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "gipeda" = callPackage + ({ mkDerivation, aeson, base, bytestring, cassava + , concurrent-output, containers, directory, extra, file-embed + , filepath, gitlib, gitlib-libgit2, scientific, shake, split + , tagged, text, transformers, unordered-containers, vector, yaml + }: + mkDerivation { + pname = "gipeda"; + version = "0.3"; + sha256 = "8d3069ed3b75118cc420a0f5abe546cb4ec1d10d7ecb4c1b80e6b47eb944d7b6"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base bytestring cassava concurrent-output containers + directory extra file-embed filepath gitlib gitlib-libgit2 + scientific shake split tagged text transformers + unordered-containers vector yaml + ]; + jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -90837,7 +90871,6 @@ self: { homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git" = callPackage @@ -90880,7 +90913,6 @@ self: { homepage = "https://github.com/jwiegley/git-all"; description = "Determine which Git repositories need actions to be taken"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-annex_5_20150727" = callPackage @@ -91003,6 +91035,7 @@ self: { executableSystemDepends = [ bup curl git gnupg lsof openssh perl rsync wget which ]; + jailbreak = true; preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; installPhase = "make PREFIX=$out CABAL=./Setup BUILDER=./Setup install"; @@ -91070,6 +91103,76 @@ self: { executableSystemDepends = [ bup curl git gnupg lsof openssh perl rsync wget which ]; + jailbreak = true; + preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; + postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; + installPhase = "make PREFIX=$out CABAL=./Setup BUILDER=./Setup install"; + checkPhase = "./git-annex test"; + enableSharedExecutables = false; + homepage = "http://git-annex.branchable.com/"; + description = "manage files with git, without checking their contents into git"; + license = stdenv.lib.licenses.gpl3; + platforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; + }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; + inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; + inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; + inherit (pkgs) which;}; + + "git-annex_6_20160511" = callPackage + ({ mkDerivation, aeson, async, aws, base, blaze-builder + , bloomfilter, bup, byteable, bytestring, case-insensitive + , clientsession, concurrent-output, conduit, conduit-extra + , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus + , directory, disk-free-space, dlist, dns, edit-distance, esqueleto + , exceptions, fdo-notify, feed, filepath, git, gnupg, gnutls + , hinotify, hslogger, http-client, http-conduit, http-types, IfElse + , json, lsof, magic, MissingH, monad-control, monad-logger + , mountpoints, mtl, network, network-info, network-multicast + , network-protocol-xmpp, network-uri, old-locale, openssh + , optparse-applicative, path-pieces, perl, persistent + , persistent-sqlite, persistent-template, process, QuickCheck + , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi + , securemem, shakespeare, stm, tasty, tasty-hunit, tasty-quickcheck + , tasty-rerun, template-haskell, text, time, torrent, transformers + , unix, unix-compat, utf8-string, uuid, wai, wai-extra, warp + , warp-tls, wget, which, xml-types, yesod, yesod-core + , yesod-default, yesod-form, yesod-static + }: + mkDerivation { + pname = "git-annex"; + version = "6.20160511"; + sha256 = "85fc8853166fe57d91dc2776d5df4acb5911a91815f8aa12881928a1afe8ba01"; + configureFlags = [ + "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" + "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" + "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" + "-fwebapp-secure" "-fwebdav" "-fxmpp" + ]; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson async aws base blaze-builder bloomfilter byteable bytestring + case-insensitive clientsession concurrent-output conduit + conduit-extra containers crypto-api cryptonite data-default DAV + dbus directory disk-free-space dlist dns edit-distance esqueleto + exceptions fdo-notify feed filepath gnutls hinotify hslogger + http-client http-conduit http-types IfElse json magic MissingH + monad-control monad-logger mountpoints mtl network network-info + network-multicast network-protocol-xmpp network-uri old-locale + optparse-applicative path-pieces persistent persistent-sqlite + persistent-template process QuickCheck random regex-tdfa resourcet + SafeSemaphore sandi securemem shakespeare stm tasty tasty-hunit + tasty-quickcheck tasty-rerun template-haskell text time torrent + transformers unix unix-compat utf8-string uuid wai wai-extra warp + warp-tls xml-types yesod yesod-core yesod-default yesod-form + yesod-static + ]; + executableSystemDepends = [ + bup curl git gnupg lsof openssh perl rsync wget which + ]; + jailbreak = true; preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; postBuild = "ln -sf dist/build/git-annex/git-annex git-annex"; installPhase = "make PREFIX=$out CABAL=./Setup BUILDER=./Setup install"; @@ -91108,8 +91211,8 @@ self: { }: mkDerivation { pname = "git-annex"; - version = "6.20160511"; - sha256 = "85fc8853166fe57d91dc2776d5df4acb5911a91815f8aa12881928a1afe8ba01"; + version = "6.20160527"; + sha256 = "9482a13acd8b6c4cbe4f354243726e94689d0b3f516eabfbc78900e94ad67924"; configureFlags = [ "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" @@ -91170,7 +91273,6 @@ self: { homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-date" = callPackage @@ -91189,7 +91291,6 @@ self: { homepage = "https://github.com/singpolyma/git-date-haskell"; description = "Bindings to the date parsing from Git"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-embed" = callPackage @@ -91271,7 +91372,6 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "More intelligent push-to-GitHub utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-jump" = callPackage @@ -91349,7 +91449,6 @@ self: { homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "git-sanity" = callPackage @@ -91400,7 +91499,6 @@ self: { homepage = "https://github.com/oswynb/git-vogue"; description = "A framework for pre-commit checks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitHUD" = callPackage @@ -91460,7 +91558,6 @@ self: { homepage = "https://github.com/mattyhall/gitdo"; description = "Create Github issues out of TODO comments in code"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github_0_14_0" = callPackage @@ -91522,6 +91619,7 @@ self: { aeson-compat base base-compat file-embed hspec unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/phadej/github"; description = "Access to the GitHub API, v3"; license = stdenv.lib.licenses.bsd3; @@ -91550,7 +91648,6 @@ self: { homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) git;}; "github-post-receive" = callPackage @@ -91570,7 +91667,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "github-release" = callPackage + "github-release_0_1_8" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, http-types, mime-types, optparse-generic, text , unordered-containers, uri-templater @@ -91586,12 +91683,14 @@ self: { mime-types optparse-generic text unordered-containers uri-templater ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/tfausak/github-release#readme"; description = "Upload files to GitHub releases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "github-release_0_1_9" = callPackage + "github-release" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, http-types, mime-types, optparse-generic, text , unordered-containers, uri-templater @@ -91610,10 +91709,9 @@ self: { homepage = "https://github.com/tfausak/github-release#readme"; description = "Upload files to GitHub releases"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "github-types" = callPackage + "github-types_0_2_0" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck , http-conduit, smallcheck, text, time, unordered-containers , vector @@ -91627,11 +91725,13 @@ self: { aeson aeson-pretty base hspec hspec-smallcheck http-conduit smallcheck text time unordered-containers vector ]; + jailbreak = true; description = "Type definitions for objects used by the GitHub v3 API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "github-types_0_2_1" = callPackage + "github-types" = callPackage ({ mkDerivation, aeson, aeson-pretty, base, hspec, hspec-smallcheck , http-conduit, smallcheck, text, time, unordered-containers , vector @@ -91647,7 +91747,6 @@ self: { ]; description = "Type definitions for objects used by the GitHub v3 API"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github-utils" = callPackage @@ -91661,10 +91760,9 @@ self: { homepage = "https://github.com/greenrd/github-utils"; description = "Useful functions that use the GitHub API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "github-webhook-handler" = callPackage + "github-webhook-handler_0_0_7" = callPackage ({ mkDerivation, aeson, base, bytestring, cryptohash, github-types , text, transformers, uuid, vector }: @@ -91676,11 +91774,13 @@ self: { aeson base bytestring cryptohash github-types text transformers uuid vector ]; + jailbreak = true; description = "GitHub WebHook Handler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "github-webhook-handler_0_0_8" = callPackage + "github-webhook-handler" = callPackage ({ mkDerivation, aeson, base, bytestring, cryptohash, github-types , text, transformers, uuid, vector }: @@ -91694,7 +91794,6 @@ self: { ]; description = "GitHub WebHook Handler"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "github-webhook-handler-snap" = callPackage @@ -91709,6 +91808,7 @@ self: { base bytestring case-insensitive github-types github-webhook-handler snap-core uuid ]; + jailbreak = true; description = "GitHub WebHook Handler implementation for Snap"; license = stdenv.lib.licenses.mit; }) {}; @@ -91874,7 +91974,6 @@ self: { ]; description = "Run tests between repositories"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-libgit2_3_1_0_3" = callPackage @@ -92018,7 +92117,6 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib-sample" = callPackage @@ -92087,7 +92185,6 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitrev_1_0_0" = callPackage @@ -92281,6 +92378,7 @@ self: { transformers ]; librarySystemDepends = [ mesa ]; + jailbreak = true; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92299,6 +92397,7 @@ self: { transformers ]; librarySystemDepends = [ mesa ]; + jailbreak = true; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92317,6 +92416,7 @@ self: { transformers ]; librarySystemDepends = [ mesa ]; + jailbreak = true; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92335,6 +92435,7 @@ self: { transformers ]; librarySystemDepends = [ mesa ]; + jailbreak = true; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -92355,7 +92456,6 @@ self: { librarySystemDepends = [ mesa ]; description = "Complete OpenGL raw bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) mesa;}; "gl-capture" = callPackage @@ -92367,7 +92467,6 @@ self: { libraryHaskellDepends = [ base bytestring OpenGL ]; description = "simple image capture from OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glade" = callPackage @@ -92383,7 +92482,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libglade;}; "gladexml-accessor" = callPackage @@ -92395,7 +92493,6 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glambda" = callPackage @@ -92439,7 +92536,6 @@ self: { homepage = "zyghost.com"; description = "An OpenGL micro framework"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glasso" = callPackage @@ -92556,7 +92652,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; - "glib" = callPackage + "glib_0_13_2_2" = callPackage ({ mkDerivation, base, bytestring, containers, glib , gtk2hs-buildtools, text, utf8-string }: @@ -92572,25 +92668,24 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; - "glib_0_13_3_0" = callPackage - ({ mkDerivation, base, bytestring, containers, glib - , gtk2hs-buildtools, text, utf8-string + "glib" = callPackage + ({ mkDerivation, base, bytestring, containers, glib, text + , utf8-string }: mkDerivation { pname = "glib"; - version = "0.13.3.0"; - sha256 = "8a2b765d92f8f6c138888ef1b76da25758f72e493c677355438015dc25451029"; + version = "0.13.4.0"; + sha256 = "8bbc24b8a7f4de0fc02d60f12bf1b5154a151ffcad25964b65e958977100a0d9"; libraryHaskellDepends = [ base bytestring containers text utf8-string ]; libraryPkgconfigDepends = [ glib ]; - libraryToolDepends = [ gtk2hs-buildtools ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "glicko" = callPackage @@ -92605,9 +92700,9 @@ self: { base containers data-default deepseq lens parallel statistics ]; testHaskellDepends = [ base data-default hspec lens QuickCheck ]; + jailbreak = true; description = "Glicko-2 implementation in Haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glider-nlp" = callPackage @@ -92622,7 +92717,6 @@ self: { homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glintcollider" = callPackage @@ -92649,6 +92743,7 @@ self: { libraryHaskellDepends = [ array base containers pretty regex-applicative text TypeCompose ]; + jailbreak = true; description = "GLL parser with simple combinator interface"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -92669,7 +92764,6 @@ self: { homepage = "https://github.com/bairyn/global"; description = "Library enabling unique top-level declarations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "global-config" = callPackage @@ -92739,7 +92833,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss_1_9_2_1" = callPackage @@ -92771,10 +92864,10 @@ self: { libraryHaskellDepends = [ base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL ]; + jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Painless 2D vector graphics, animations and simulations"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-accelerate" = callPackage @@ -92789,7 +92882,6 @@ self: { jailbreak = true; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-algorithms" = callPackage @@ -92799,10 +92891,10 @@ self: { version = "1.10.1.1"; sha256 = "da385e6fa2cdca7ab3b6ce2397d24fac0055896609376c9a8c3acf193e908b0e"; libraryHaskellDepends = [ base containers ghc-prim gloss ]; + jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Data structures and algorithms for working with 2D graphics"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-banana" = callPackage @@ -92818,7 +92910,6 @@ self: { homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-devil" = callPackage @@ -92830,7 +92921,6 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -92853,7 +92943,6 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-game" = callPackage @@ -92866,7 +92955,6 @@ self: { homepage = "https://github.com/mchakravarty/gloss-game"; description = "Gloss wrapper that simplifies writing games"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-juicy" = callPackage @@ -92887,7 +92975,6 @@ self: { homepage = "http://github.com/alpmestan/gloss-juicy"; description = "Load any image supported by Juicy.Pixels in your gloss application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-raster" = callPackage @@ -92901,10 +92988,10 @@ self: { libraryHaskellDepends = [ base containers ghc-prim gloss gloss-rendering repa ]; + jailbreak = true; homepage = "http://gloss.ouroborus.net"; description = "Parallel rendering of raster images"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-raster-accelerate" = callPackage @@ -92933,9 +93020,9 @@ self: { libraryHaskellDepends = [ base bmp bytestring containers GLUT OpenGL ]; + jailbreak = true; description = "Gloss picture data types and rendering functions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gloss-sodium" = callPackage @@ -92949,7 +93036,6 @@ self: { homepage = "https://github.com/Twey/gloss-sodium"; description = "A Sodium interface to the Gloss drawing package"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "glpk-hs" = callPackage @@ -92989,6 +93075,7 @@ self: { QuickCheck quickcheck-instances text time transformers transformers-base unordered-containers ]; + jailbreak = true; description = "Make better services"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93011,6 +93098,7 @@ self: { QuickCheck quickcheck-instances text time transformers transformers-base unordered-containers ]; + jailbreak = true; description = "Make better services and clients"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93034,6 +93122,7 @@ self: { monad-control QuickCheck quickcheck-instances text time transformers transformers-base unordered-containers ]; + jailbreak = true; description = "Make better services and clients"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93057,6 +93146,7 @@ self: { monad-control QuickCheck quickcheck-instances text time transformers transformers-base unordered-containers ]; + jailbreak = true; description = "Make better services and clients"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -93092,7 +93182,6 @@ self: { ]; description = "turtle like LOGO with glut"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gmap" = callPackage @@ -93108,7 +93197,6 @@ self: { ]; description = "Composable maps and generic tries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gmndl" = callPackage @@ -93128,7 +93216,6 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-desktop" = callPackage @@ -93144,7 +93231,6 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnome-keyring" = callPackage @@ -93161,7 +93247,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -93181,7 +93266,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage @@ -93205,7 +93289,6 @@ self: { homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gnuidn_0_2_1" = callPackage @@ -93293,7 +93376,6 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-core" = callPackage @@ -93314,7 +93396,6 @@ self: { jailbreak = true; description = "Core imports for Geometric Optimization Libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-geometry" = callPackage @@ -93329,7 +93410,6 @@ self: { executableHaskellDepends = [ base goal-core ]; description = "Scientific computing on geometric objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-probability" = callPackage @@ -93350,7 +93430,6 @@ self: { jailbreak = true; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "goal-simulation" = callPackage @@ -93375,7 +93454,6 @@ self: { jailbreak = true; description = "Mealy based simulation tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goatee" = callPackage @@ -93430,7 +93508,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/gofer-prelude"; description = "The Gofer 2.30 standard prelude"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol" = callPackage @@ -93455,7 +93532,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Comprehensive Google Services SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-buyer" = callPackage @@ -93468,7 +93544,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Buyer SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-seller" = callPackage @@ -93481,7 +93556,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Seller SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-datatransfer" = callPackage @@ -93494,7 +93568,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Data Transfer SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-directory" = callPackage @@ -93507,7 +93580,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Directory SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-emailmigration" = callPackage @@ -93520,7 +93592,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Email Migration API v2 SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-reports" = callPackage @@ -93533,7 +93604,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Reports SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense" = callPackage @@ -93546,7 +93616,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Management SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense-host" = callPackage @@ -93559,7 +93628,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Host SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-affiliates" = callPackage @@ -93572,7 +93640,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Affiliate Network SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-analytics" = callPackage @@ -93585,7 +93652,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Analytics SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-enterprise" = callPackage @@ -93598,7 +93664,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play EMM SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-publisher" = callPackage @@ -93611,7 +93676,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Developer SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appengine" = callPackage @@ -93624,7 +93688,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App Engine Admin SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-activity" = callPackage @@ -93637,7 +93700,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Apps Activity SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-calendar" = callPackage @@ -93650,7 +93712,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Calendar SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-licensing" = callPackage @@ -93663,7 +93724,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise License Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-reseller" = callPackage @@ -93676,7 +93736,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise Apps Reseller SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-tasks" = callPackage @@ -93689,7 +93748,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tasks SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appstate" = callPackage @@ -93702,7 +93760,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App State SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-autoscaler" = callPackage @@ -93715,7 +93772,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Autoscaler SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-bigquery" = callPackage @@ -93728,7 +93784,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google BigQuery SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-billing" = callPackage @@ -93741,7 +93796,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Billing SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-blogger" = callPackage @@ -93754,7 +93808,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Blogger SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-books" = callPackage @@ -93767,7 +93820,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Books SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-civicinfo" = callPackage @@ -93780,7 +93832,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Civic Information SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-classroom" = callPackage @@ -93793,7 +93844,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Classroom SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-cloudtrace" = callPackage @@ -93806,7 +93856,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Trace SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-compute" = callPackage @@ -93819,7 +93868,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-container" = callPackage @@ -93832,7 +93880,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Container Engine SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-core" = callPackage @@ -93857,7 +93904,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-customsearch" = callPackage @@ -93870,7 +93916,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google CustomSearch SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dataflow" = callPackage @@ -93883,7 +93928,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Dataflow SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-datastore" = callPackage @@ -93896,7 +93940,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Datastore SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-debugger" = callPackage @@ -93909,7 +93952,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Debugger SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-deploymentmanager" = callPackage @@ -93922,7 +93964,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Deployment Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dfareporting" = callPackage @@ -93935,7 +93976,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DCM/DFA Reporting And Trafficking SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-discovery" = callPackage @@ -93948,7 +93988,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google APIs Discovery Service SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dns" = callPackage @@ -93961,7 +94000,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud DNS SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-bids" = callPackage @@ -93974,7 +94012,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Bid Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-search" = callPackage @@ -93987,7 +94024,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Search SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-drive" = callPackage @@ -94000,7 +94036,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Drive SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fitness" = callPackage @@ -94013,7 +94048,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fitness SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fonts" = callPackage @@ -94026,7 +94060,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fonts Developer SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-freebasesearch" = callPackage @@ -94039,7 +94072,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Freebase Search SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fusiontables" = callPackage @@ -94052,7 +94084,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fusion Tables SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games" = callPackage @@ -94065,7 +94096,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-configuration" = callPackage @@ -94078,7 +94108,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Publishing SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-management" = callPackage @@ -94091,7 +94120,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Management SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-genomics" = callPackage @@ -94104,7 +94132,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Genomics SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-gmail" = callPackage @@ -94117,7 +94144,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Gmail SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-migration" = callPackage @@ -94130,7 +94156,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Migration SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-settings" = callPackage @@ -94143,7 +94168,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Settings SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-identity-toolkit" = callPackage @@ -94156,7 +94180,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Identity Toolkit SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-latencytest" = callPackage @@ -94169,7 +94192,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Network Performance Monitoring SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-logging" = callPackage @@ -94182,7 +94204,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Logging SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-coordinate" = callPackage @@ -94195,7 +94216,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Coordinate SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-engine" = callPackage @@ -94208,7 +94228,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Engine SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-mirror" = callPackage @@ -94221,7 +94240,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Mirror SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-monitoring" = callPackage @@ -94234,7 +94252,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Monitoring SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-oauth2" = callPackage @@ -94247,7 +94264,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google OAuth2 SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pagespeed" = callPackage @@ -94260,7 +94276,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google PageSpeed Insights SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-partners" = callPackage @@ -94273,7 +94288,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Partners SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-play-moviespartner" = callPackage @@ -94286,7 +94300,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Movies Partner SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus" = callPackage @@ -94299,7 +94312,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus-domains" = callPackage @@ -94312,7 +94324,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + Domains SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-prediction" = callPackage @@ -94325,7 +94336,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Prediction SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-proximitybeacon" = callPackage @@ -94338,7 +94348,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Proximity Beacon SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pubsub" = callPackage @@ -94351,7 +94360,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Pub/Sub SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-qpxexpress" = callPackage @@ -94364,7 +94372,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google QPX Express SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool" = callPackage @@ -94377,7 +94384,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool-updater" = callPackage @@ -94390,7 +94396,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Updater SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourcemanager" = callPackage @@ -94403,7 +94408,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Resource Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourceviews" = callPackage @@ -94416,7 +94420,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Groups SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-shopping-content" = callPackage @@ -94429,7 +94432,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Content API for Shopping SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-siteverification" = callPackage @@ -94442,7 +94444,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Site Verification SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-spectrum" = callPackage @@ -94455,7 +94456,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Spectrum Database SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-sqladmin" = callPackage @@ -94468,7 +94468,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud SQL Administration SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage" = callPackage @@ -94481,7 +94480,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Storage JSON SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage-transfer" = callPackage @@ -94494,7 +94492,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Storage Transfer SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-tagmanager" = callPackage @@ -94507,7 +94504,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tag Manager SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-taskqueue" = callPackage @@ -94520,7 +94516,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google TaskQueue SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-translate" = callPackage @@ -94533,7 +94528,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Translate SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-urlshortener" = callPackage @@ -94546,7 +94540,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google URL Shortener SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-useraccounts" = callPackage @@ -94559,7 +94552,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud User Accounts SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-webmaster-tools" = callPackage @@ -94572,7 +94564,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Webmaster Tools SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube" = callPackage @@ -94585,7 +94576,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Data SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-analytics" = callPackage @@ -94598,7 +94588,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Analytics SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-reporting" = callPackage @@ -94611,7 +94600,6 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Reporting SDK"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gooey" = callPackage @@ -94624,6 +94612,24 @@ self: { jailbreak = true; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = stdenv.lib.licenses.mit; + }) {}; + + "google-cloud_0_0_3" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-client + , http-client-tls, http-types, mtl, random, scientific, stm, text + , time, unordered-containers + }: + mkDerivation { + pname = "google-cloud"; + version = "0.0.3"; + sha256 = "16462026bc546cf51d453524ce0aae735bdc84f4d0d1f276ccc6606e41b8655f"; + libraryHaskellDepends = [ + aeson base bytestring http-client http-client-tls http-types mtl + random scientific stm text time unordered-containers + ]; + jailbreak = true; + description = "Client for the Google Cloud APIs"; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -94634,8 +94640,8 @@ self: { }: mkDerivation { pname = "google-cloud"; - version = "0.0.3"; - sha256 = "16462026bc546cf51d453524ce0aae735bdc84f4d0d1f276ccc6606e41b8655f"; + version = "0.0.4"; + sha256 = "09a77ce6846ea0c5f9d7e5578dcddcbaf4905437445edb45c2da35456324fb9a"; libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls http-types mtl random scientific stm text time unordered-containers @@ -94696,7 +94702,6 @@ self: { jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-mail-filters" = callPackage @@ -94714,7 +94719,6 @@ self: { homepage = "https://github.com/liyang/google-mail-filters"; description = "Write GMail filters and output to importable XML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-oauth2" = callPackage @@ -94746,7 +94750,6 @@ self: { homepage = "https://github.com/liyang/google-search"; description = "EDSL for Google and GMail search expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-translate" = callPackage @@ -94763,7 +94766,6 @@ self: { jailbreak = true; description = "Google Translate API bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googleplus" = callPackage @@ -94783,7 +94785,6 @@ self: { homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -94800,6 +94801,7 @@ self: { base bytestring HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; homepage = "https://github.com/lornap/googlepolyline"; description = "Google Polyline Encoder/Decoder"; license = stdenv.lib.licenses.mit; @@ -94820,7 +94822,6 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash" = callPackage @@ -94907,7 +94908,6 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-demo"; description = "Demonstration game for Gore&Ash game engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-glfw" = callPackage @@ -94925,7 +94925,6 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-glfw"; description = "Core module for Gore&Ash engine for GLFW input events"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gore-and-ash-logging" = callPackage @@ -94967,7 +94966,6 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; description = "Core module for Gore&Ash engine with low level network API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gore-and-ash-sdl" = callPackage @@ -95009,7 +95007,6 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; description = "Gore&Ash module for high level network synchronization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpah" = callPackage @@ -95030,7 +95027,6 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpcsets" = callPackage @@ -95095,7 +95091,6 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gps2htmlReport" = callPackage @@ -95118,7 +95113,6 @@ self: { homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpx-conduit" = callPackage @@ -95136,7 +95130,6 @@ self: { jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graceful" = callPackage @@ -95151,6 +95144,7 @@ self: { testHaskellDepends = [ base directory filepath hspec network process stm unix ]; + jailbreak = true; description = "Library to write graceful shutdown / upgrade service"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -95171,7 +95165,6 @@ self: { homepage = "http://projects.haskell.org/grammar-combinators/"; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-examples" = callPackage @@ -95189,7 +95182,6 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Examples using the Grapefruit library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-frp" = callPackage @@ -95207,7 +95199,6 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Functional Reactive Programming core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-records" = callPackage @@ -95220,7 +95211,6 @@ self: { homepage = "http://grapefruit-project.org/"; description = "A record system for Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui" = callPackage @@ -95238,7 +95228,6 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Declarative user interface programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-ui-gtk" = callPackage @@ -95257,7 +95246,6 @@ self: { homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-core_0_2_1_0" = callPackage @@ -95376,6 +95364,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols containers mtl ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Monadic graph rewriting of hypergraphs with ports and multiedges"; license = stdenv.lib.licenses.bsd3; @@ -95399,7 +95388,6 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-rewriting-gl" = callPackage @@ -95414,10 +95402,10 @@ self: { AC-Vector base base-unicode-symbols containers GLUT graph-rewriting graph-rewriting-layout OpenGL ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "OpenGL interface for interactive port graph rewriting"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-lambdascope" = callPackage @@ -95436,10 +95424,10 @@ self: { graph-rewriting-layout graph-rewriting-strategies IndentParser OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Lambdascope, an optimal evaluator of the lambda calculus, as an interactive graph-rewriting system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-layout" = callPackage @@ -95453,6 +95441,7 @@ self: { libraryHaskellDepends = [ AC-Vector base base-unicode-symbols graph-rewriting ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Force-directed node placement intended for incremental graph drawing"; license = stdenv.lib.licenses.bsd3; @@ -95472,10 +95461,10 @@ self: { base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Two evalutors of the SKI combinator calculus as interactive graph rewrite systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-strategies" = callPackage @@ -95489,6 +95478,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols containers graph-rewriting ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluation strategies for port-graph rewriting systems"; license = stdenv.lib.licenses.bsd3; @@ -95510,10 +95500,10 @@ self: { graph-rewriting graph-rewriting-gl graph-rewriting-layout OpenGL uu-parsinglib ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluate first-order applicative term rewrite systems interactively using graph reduction"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-rewriting-ww" = callPackage @@ -95531,10 +95521,10 @@ self: { base base-unicode-symbols GLUT graph-rewriting graph-rewriting-gl graph-rewriting-layout IndentParser OpenGL parsec ]; + jailbreak = true; homepage = "http://rochel.info/#graph-rewriting"; description = "Evaluator of the lambda-calculus in an interactive graph rewriting system with explicit sharing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graph-serialize" = callPackage @@ -95564,7 +95554,6 @@ self: { homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-visit" = callPackage @@ -95617,7 +95606,6 @@ self: { homepage = "https://github.com/tel/graphbuilder"; description = "A declarative, monadic graph construction language for small graphs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphene" = callPackage @@ -95655,7 +95643,6 @@ self: { homepage = "http://github.com/luqui/graphics-drawingcombinators"; description = "A functional interface to 2D drawing in OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "graphics-formats-collada" = callPackage @@ -95673,7 +95660,6 @@ self: { homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicsFormats" = callPackage @@ -95685,7 +95671,6 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -95705,7 +95690,6 @@ self: { homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools"; description = "Tools for creating graphical UIs, based on wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphmod" = callPackage @@ -95764,6 +95748,7 @@ self: { libraryHaskellDepends = [ array base containers transformers void ]; + jailbreak = true; homepage = "http://github.com/ekmett/graphs"; description = "A simple monadic graph library"; license = stdenv.lib.licenses.bsd3; @@ -95802,7 +95787,6 @@ self: { homepage = "http://github.com/explicitcall/graphtype"; description = "A simple tool to illustrate dependencies between Haskell types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphviz_2999_17_0_1" = callPackage @@ -96030,7 +96014,6 @@ self: { homepage = "https://github.com/AndrewRademacher/haskell-graylog"; description = "Support for graylog output"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard" = callPackage @@ -96046,7 +96029,6 @@ self: { homepage = "https://github.com/sof/greencard"; description = "GreenCard, a foreign function pre-processor for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greencard-lib" = callPackage @@ -96059,7 +96041,6 @@ self: { homepage = "http://www.haskell.org/greencard/"; description = "A foreign function interface pre-processor library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greg-client" = callPackage @@ -96076,7 +96057,6 @@ self: { homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gremlin-haskell" = callPackage @@ -96101,7 +96081,6 @@ self: { homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; description = "Graph database client for TinkerPop3 Gremlin Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "greplicate" = callPackage @@ -96155,7 +96134,6 @@ self: { homepage = "http://github.com/btubbs/haskell-gridfs#readme"; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gridland" = callPackage @@ -96174,7 +96152,6 @@ self: { ]; description = "Grid-based multimedia engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "grm" = callPackage @@ -96196,7 +96173,6 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groom" = callPackage @@ -96270,6 +96246,7 @@ self: { monad-control monad-logger mtl scientific text time transformers transformers-base ]; + jailbreak = true; homepage = "http://github.com/lykahb/groundhog"; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; @@ -96293,6 +96270,7 @@ self: { containers monad-control monad-logger mtl scientific text time transformers transformers-base ]; + jailbreak = true; homepage = "http://github.com/lykahb/groundhog"; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; @@ -96314,7 +96292,6 @@ self: { ]; description = "Extended Converter Library for groundhog embedded types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-inspector" = callPackage @@ -96374,6 +96351,7 @@ self: { base bytestring containers groundhog monad-control monad-logger mysql mysql-simple resource-pool text time transformers ]; + jailbreak = true; description = "MySQL backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96437,6 +96415,7 @@ self: { monad-control monad-logger postgresql-libpq postgresql-simple resource-pool text time transformers ]; + jailbreak = true; description = "PostgreSQL backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -96525,6 +96504,7 @@ self: { testHaskellDepends = [ base Cabal containers hspec hspec-expectations QuickCheck ]; + jailbreak = true; homepage = "https://github.com/ulikoehler/group-with"; description = "Classify objects by key-generating function, like SQL GROUP BY"; license = stdenv.lib.licenses.asl20; @@ -96540,6 +96520,24 @@ self: { sha256 = "cd6275388415de0b0940f0d12a380b9fd4e196c356719f0574cc94e73ec6d004"; libraryHaskellDepends = [ base containers deepseq pointed ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; + homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; + description = "Grouped lists. Equal consecutive elements are grouped."; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "grouped-list_0_2_1_1" = callPackage + ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck + , tasty, tasty-quickcheck + }: + mkDerivation { + pname = "grouped-list"; + version = "0.2.1.1"; + sha256 = "df2db99d9144bfe69b20e245ec53bfa76aa641855042a7fac1f2f601662d8fbb"; + libraryHaskellDepends = [ base containers deepseq pointed ]; + testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; description = "Grouped lists. Equal consecutive elements are grouped."; license = stdenv.lib.licenses.bsd3; @@ -96547,21 +96545,6 @@ self: { }) {}; "grouped-list" = callPackage - ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck - , tasty, tasty-quickcheck - }: - mkDerivation { - pname = "grouped-list"; - version = "0.2.1.1"; - sha256 = "df2db99d9144bfe69b20e245ec53bfa76aa641855042a7fac1f2f601662d8fbb"; - libraryHaskellDepends = [ base containers deepseq pointed ]; - testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; - homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; - description = "Grouped lists. Equal consecutive elements are grouped."; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "grouped-list_0_2_1_2" = callPackage ({ mkDerivation, base, containers, deepseq, pointed, QuickCheck , tasty, tasty-quickcheck }: @@ -96574,7 +96557,6 @@ self: { homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; description = "Grouped lists. Equal consecutive elements are grouped."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groupoid" = callPackage @@ -96632,6 +96614,7 @@ self: { unordered-containers vector wai wai-extra warp ]; doHaddock = false; + jailbreak = true; homepage = "http://github.com/iand675/growler"; description = "A revised version of the scotty library that attempts to be simpler and more performant"; license = stdenv.lib.licenses.mit; @@ -96656,7 +96639,6 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gruff-examples" = callPackage @@ -96676,7 +96658,6 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsasl" = callPackage @@ -96714,7 +96695,6 @@ self: { homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsl-random-fu" = callPackage @@ -96727,7 +96707,6 @@ self: { homepage = "http://code.haskell.org/~mokus/gsl-random-fu"; description = "Instances for using gsl-random with random-fu"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -96747,7 +96726,6 @@ self: { homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gstreamer" = callPackage @@ -96766,7 +96744,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GStreamer open source multimedia framework"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base; inherit (pkgs) gstreamer;}; "gt-tools" = callPackage @@ -96800,7 +96777,6 @@ self: { ]; description = "The General Transit Feed Specification format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk_0_13_3" = callPackage @@ -96925,7 +96901,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk" = callPackage + "gtk_0_14_2" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, gtk2hs-buildtools, mtl, pango, text }: @@ -96942,26 +96918,25 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk_0_14_3" = callPackage + "gtk" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk2, gtk2hs-buildtools, mtl, pango, text + , glib, gtk2, mtl, pango, text }: mkDerivation { pname = "gtk"; - version = "0.14.3"; - sha256 = "cd225f238ccc24b14d550292768f0cbec738eac7d130b926f827770df7960969"; + version = "0.14.4"; + sha256 = "2d701bf9f9865c3a13f6ccc0dff8088b32571d4add236db72cc9d3760ea54466"; libraryHaskellDepends = [ array base bytestring cairo containers gio glib mtl pango text ]; libraryPkgconfigDepends = [ gtk2 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -96978,7 +96953,6 @@ self: { homepage = "http://keera.es/blog/community"; description = "A collection of auxiliary operations and widgets related to Gtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-jsinput" = callPackage @@ -96991,7 +96965,6 @@ self: { homepage = "http://github.com/timthelion/gtk-jsinput"; description = "A simple custom form widget for gtk which allows inputing of JSON values"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-largeTreeStore" = callPackage @@ -97008,7 +96981,6 @@ self: { testHaskellDepends = [ base containers gtk3 hspec ]; description = "Large TreeStore support for gtk2hs"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-mac-integration" = callPackage @@ -97025,7 +96997,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk2 = null;}; "gtk-serialized-event" = callPackage @@ -97044,7 +97015,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null;}; "gtk-simple-list-view" = callPackage @@ -97057,7 +97027,6 @@ self: { homepage = "http://github.com/timthelion/gtk-simple-list-view"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of list views"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toggle-button-list" = callPackage @@ -97070,7 +97039,6 @@ self: { homepage = "http://github.com/timthelion/gtk-toggle-button-list"; description = "A simple custom form widget for gtk which allows single LOC creation/updating of toggle button lists"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk-toy" = callPackage @@ -97083,7 +97051,6 @@ self: { jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-traymanager" = callPackage @@ -97097,7 +97064,6 @@ self: { homepage = "http://github.com/travitch/gtk-traymanager"; description = "A wrapper around the eggtraymanager library for Linux system trays"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk; inherit (pkgs) x11;}; "gtk2hs-buildtools_0_13_0_3" = callPackage @@ -97142,7 +97108,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "gtk2hs-buildtools" = callPackage + "gtk2hs-buildtools_0_13_0_5" = callPackage ({ mkDerivation, alex, array, base, containers, directory, filepath , happy, hashtables, pretty, process, random }: @@ -97160,9 +97126,10 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Tools to build the Gtk2Hs suite of User Interface libraries"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "gtk2hs-buildtools_0_13_1_0" = callPackage + "gtk2hs-buildtools" = callPackage ({ mkDerivation, alex, array, base, Cabal, containers, directory , filepath, happy, hashtables, pretty, process, random }: @@ -97180,7 +97147,27 @@ self: { random ]; executableToolDepends = [ alex happy ]; - jailbreak = true; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Tools to build the Gtk2Hs suite of User Interface libraries"; + license = stdenv.lib.licenses.gpl2; + }) {}; + + "gtk2hs-buildtools_0_13_2_0" = callPackage + ({ mkDerivation, alex, array, base, Cabal, containers, directory + , filepath, happy, hashtables, pretty, process, random + }: + mkDerivation { + pname = "gtk2hs-buildtools"; + version = "0.13.2.0"; + sha256 = "6ed2758a2311d2c0369b46df065c72f67319294496c63729ae149385ee1e1aab"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base Cabal containers directory filepath hashtables pretty + process random + ]; + libraryToolDepends = [ alex happy ]; + executableHaskellDepends = [ base ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Tools to build the Gtk2Hs suite of User Interface libraries"; license = stdenv.lib.licenses.gpl2; @@ -97200,7 +97187,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -97227,7 +97213,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -97243,7 +97228,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -97259,7 +97243,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -97276,7 +97259,6 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-cast-th" = callPackage @@ -97303,7 +97285,6 @@ self: { homepage = "http://www.haskell.org/hello/"; description = "Gtk2Hs Hello World, an example package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gtk2hs-rpn" = callPackage @@ -97316,7 +97297,6 @@ self: { jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk3_0_13_4" = callPackage @@ -97503,7 +97483,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; - "gtk3" = callPackage + "gtk3_0_14_2" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time , transformers @@ -97523,36 +97503,34 @@ self: { array base cairo text time transformers ]; doHaddock = false; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; - "gtk3_0_14_3" = callPackage + "gtk3" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time - , transformers + , glib, gtk3, mtl, pango, text, time, transformers }: mkDerivation { pname = "gtk3"; - version = "0.14.3"; - sha256 = "aa2fde0dde64936a96c72b08b9cc0ebb1fb73aedb94625dc2163843f957956a0"; + version = "0.14.4"; + sha256 = "01eee85bac2bcdb85aefa336e34879720ad336811e106644e52a69952762d020"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring cairo containers gio glib mtl pango text ]; libraryPkgconfigDepends = [ gtk3 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; executableHaskellDepends = [ array base cairo text time transformers ]; - jailbreak = true; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; "gtk3-mac-integration" = callPackage @@ -97569,7 +97547,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gtkglext" = callPackage @@ -97587,7 +97564,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtkglext;}; "gtkimageview" = callPackage @@ -97607,7 +97583,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -97626,7 +97601,6 @@ self: { homepage = "http://hg.complete.org/gtkrsync"; description = "Gnome rsync progress display"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -97642,14 +97616,12 @@ self: { ]; libraryPkgconfigDepends = [ gtksourceview ]; libraryToolDepends = [ gtk2hs-buildtools ]; - jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.gnome) gtksourceview;}; - "gtksourceview3" = callPackage + "gtksourceview3_0_13_2_1" = callPackage ({ mkDerivation, array, base, containers, glib, gtk2hs-buildtools , gtk3, gtksourceview, mtl, text }: @@ -97665,10 +97637,10 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtksourceview;}; - "gtksourceview3_0_13_3_0" = callPackage + "gtksourceview3" = callPackage ({ mkDerivation, array, base, containers, glib, gtk2hs-buildtools , gtk3, gtksourceview, mtl, text }: @@ -97684,7 +97656,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtksourceview;}; "guarded-rewriting" = callPackage @@ -97709,7 +97680,6 @@ self: { homepage = "http://code.atnnn.com/project/guess"; description = "Generate simple combinators given their type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "guid" = callPackage @@ -97722,7 +97692,6 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A simple wrapper around uuid"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gulcii" = callPackage @@ -97738,7 +97707,6 @@ self: { homepage = "http://code.mathr.co.uk/gulcii"; description = "graphical untyped lambda calculus interactive interpreter"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "gutenberg-fibonaccis" = callPackage @@ -97762,6 +97730,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base extra GiveYouAHead ]; + jailbreak = true; description = "A binary version of GiveYouAHead"; license = stdenv.lib.licenses.mit; }) {}; @@ -97788,7 +97757,6 @@ self: { homepage = "https://github.com/Fuuzetsu/h-booru"; description = "Haskell library for retrieving data from various booru image sites"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h-gpgme" = callPackage @@ -97811,7 +97779,6 @@ self: { homepage = "https://github.com/rethab/h-gpgme"; description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "h2048" = callPackage @@ -97876,7 +97843,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -97892,7 +97858,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -97910,7 +97875,6 @@ self: { jailbreak = true; description = "interface to CSound API"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -97922,7 +97886,6 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hF2" = callPackage @@ -97934,7 +97897,6 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hGelf" = callPackage @@ -97994,7 +97956,6 @@ self: { homepage = "http://github.com/itkovian/hMollom"; description = "Library to interact with the @Mollom anti-spam service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hOpenPGP_1_11" = callPackage @@ -98278,6 +98239,7 @@ self: { iterable mmap mtl Octree parallel QuickCheck tagged template-haskell text vector zlib ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; @@ -98298,6 +98260,7 @@ self: { iterable mmap mtl Octree parallel QuickCheck tagged template-haskell text vector zlib ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; @@ -98318,13 +98281,14 @@ self: { iterable mmap mtl Octree parallel QuickCheck tagged template-haskell text vector zlib ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hPDB" = callPackage + "hPDB_1_2_0_4" = callPackage ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq , directory, ghc-prim, iterable, mmap, mtl, Octree, parallel , QuickCheck, tagged, template-haskell, text, vector, zlib @@ -98338,12 +98302,14 @@ self: { iterable mmap mtl Octree parallel QuickCheck tagged template-haskell text vector zlib ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hPDB_1_2_0_5" = callPackage + "hPDB" = callPackage ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq , directory, ghc-prim, iterable, mmap, mtl, Octree, parallel , QuickCheck, tagged, template-haskell, text, vector, zlib @@ -98360,7 +98326,6 @@ self: { homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hPDB-examples_1_1_2" = callPackage @@ -98379,6 +98344,7 @@ self: { GLUT hPDB iterable mtl Octree OpenGL QuickCheck template-haskell text text-format vector ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; @@ -98406,6 +98372,7 @@ self: { AC-Vector base bytestring containers deepseq directory ghc-prim hPDB IfElse iterable mtl process template-haskell text time vector ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; @@ -98433,10 +98400,10 @@ self: { AC-Vector base bytestring containers deepseq directory ghc-prim hPDB IfElse iterable mtl process template-haskell text time vector ]; + jailbreak = true; homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hPushover" = callPackage @@ -98465,7 +98432,6 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hRESP" = callPackage @@ -98512,6 +98478,7 @@ self: { base bytestring directory HTTP http-conduit http-types parsec process regex-compat text transformers ]; + jailbreak = true; description = "A Haskell library to scrape and crawl web-pages"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -98531,7 +98498,6 @@ self: { jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTalos" = callPackage @@ -98546,7 +98512,6 @@ self: { homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hTensor" = callPackage @@ -98574,7 +98539,6 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -98592,7 +98556,6 @@ self: { ]; description = "A Gtk mixer GUI application for FreeBSD"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haar" = callPackage @@ -98611,7 +98574,6 @@ self: { homepage = "https://github.com/mhwombat/haar"; description = "Haar wavelet transforms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hablog" = callPackage @@ -98675,7 +98637,6 @@ self: { homepage = "http://github.com/nfjinjing/hack-contrib"; description = "Hack contrib"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -98693,7 +98654,6 @@ self: { homepage = "http://github.com/bickfordb/hack-contrib-press"; description = "Hack helper that renders Press templates"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-happstack" = callPackage @@ -98711,7 +98671,6 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "hack-frontend-happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-monadcgi" = callPackage @@ -98755,7 +98714,6 @@ self: { homepage = "https://gitlab.com/twittner/hack-handler-epoll"; description = "hack handler implementation using epoll"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-evhttp" = callPackage @@ -98774,7 +98732,6 @@ self: { homepage = "http://github.com/bickfordb/hack-handler-evhttp"; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -98789,7 +98746,6 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -98807,7 +98763,6 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-happstack"; description = "Hack Happstack server handler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -98824,7 +98779,6 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-hyena"; description = "Hyena hack handler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-kibro" = callPackage @@ -98839,7 +98793,6 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "Hack Kibro handler"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-simpleserver" = callPackage @@ -98857,7 +98810,6 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -98872,7 +98824,6 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-cleanpath/tree/master"; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -98889,7 +98840,6 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master"; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -98918,7 +98868,6 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master"; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2" = callPackage @@ -98984,7 +98933,6 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -99005,7 +98953,6 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http"; description = "Hack2 Mongrel2 HTTP handler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-snap-server" = callPackage @@ -99041,7 +98988,6 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-warp"; description = "Hack2 warp handler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-interface-wai" = callPackage @@ -99060,7 +99006,6 @@ self: { homepage = "https://github.com/nfjinjing/hack2-interface-wai"; description = "Hack2 interface of WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-db" = callPackage @@ -99221,7 +99166,6 @@ self: { homepage = "http://github.com/snoyberg/hackage-proxy"; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-repo-tool" = callPackage @@ -99241,10 +99185,10 @@ self: { base bytestring Cabal directory filepath hackage-security network network-uri optparse-applicative tar time unix zlib ]; + jailbreak = true; homepage = "https://github.com/well-typed/hackage-security"; description = "Utility to manage secure file-based package repositories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security" = callPackage @@ -99269,10 +99213,10 @@ self: { base bytestring Cabal containers HUnit network-uri QuickCheck tar tasty tasty-hunit tasty-quickcheck temporary time zlib ]; + doCheck = false; homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-security-HTTP" = callPackage @@ -99291,7 +99235,6 @@ self: { homepage = "https://github.com/well-typed/hackage-security"; description = "Hackage security bindings against the HTTP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-server" = callPackage @@ -99330,7 +99273,6 @@ self: { jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-sparks" = callPackage @@ -99350,7 +99292,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-whatsnew" = callPackage @@ -99367,6 +99308,7 @@ self: { base Cabal containers directory filepath hackage-db process temporary ]; + jailbreak = true; description = "Check for differences between working directory and hackage"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -99383,7 +99325,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage2hwn"; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2twitter" = callPackage @@ -99398,7 +99339,6 @@ self: { homepage = "http://github.com/tomlokhorst/hackage2twitter"; description = "Send new Hackage releases to Twitter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackager" = callPackage @@ -99435,7 +99375,6 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "API for Hacker News"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackertyper" = callPackage @@ -99501,7 +99440,6 @@ self: { ]; description = "Hackage and Portage integration tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactor" = callPackage @@ -99520,7 +99458,6 @@ self: { homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hactors" = callPackage @@ -99614,7 +99551,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haddock-api" = callPackage + "haddock-api_2_16_1" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , deepseq, directory, filepath, ghc, ghc-paths, haddock-library , xhtml @@ -99627,12 +99564,14 @@ self: { array base bytestring Cabal containers deepseq directory filepath ghc ghc-paths haddock-library xhtml ]; + jailbreak = true; homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haddock-api_2_17_2" = callPackage + "haddock-api" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths , haddock-library, hspec, QuickCheck, transformers, xhtml @@ -99646,11 +99585,10 @@ self: { ghc ghc-boot ghc-paths haddock-library transformers xhtml ]; testHaskellDepends = [ base containers ghc hspec QuickCheck ]; - jailbreak = true; + doHaddock = false; homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddock-leksah" = callPackage @@ -99670,7 +99608,6 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddock-library_1_1_1" = callPackage @@ -99692,7 +99629,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haddock-library" = callPackage + "haddock-library_1_2_1" = callPackage ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec , QuickCheck, transformers }: @@ -99704,13 +99641,15 @@ self: { testHaskellDepends = [ base base-compat bytestring deepseq hspec QuickCheck transformers ]; + jailbreak = true; doCheck = false; homepage = "http://www.haskell.org/haddock/"; description = "Library exposing some functionality of Haddock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haddock-library_1_4_1" = callPackage + "haddock-library" = callPackage ({ mkDerivation, base, base-compat, bytestring, deepseq, hspec , QuickCheck, transformers }: @@ -99725,7 +99664,6 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "Library exposing some functionality of Haddock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haddocset" = callPackage @@ -99747,6 +99685,7 @@ self: { haddock-api http-types mtl optparse-applicative process resourcet sqlite-simple tagsoup text transformers ]; + jailbreak = true; homepage = "https://github.com/philopon/haddocset"; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = stdenv.lib.licenses.bsd3; @@ -99765,6 +99704,7 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring text vector ]; librarySystemDepends = [ snappy ]; testHaskellDepends = [ base bytestring filepath text vector ]; + jailbreak = true; homepage = "http://github.com/jystic/hadoop-formats"; description = "Read/write file formats commonly used by Hadoop"; license = stdenv.lib.licenses.asl20; @@ -99863,7 +99803,6 @@ self: { homepage = "http://github.com/tych0/haggis"; description = "A static site generator with blogging/comments support"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haha" = callPackage @@ -99915,9 +99854,9 @@ self: { aeson base data-default doctest filepath process-extras tasty tasty-hunit tasty-th text ]; + jailbreak = true; description = "A typed template engine, subset of jinja2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hailgun" = callPackage @@ -100042,7 +99981,6 @@ self: { homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakaru" = callPackage @@ -100073,7 +100011,6 @@ self: { homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hake" = callPackage @@ -100104,7 +100041,6 @@ self: { homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hako" = callPackage @@ -100589,6 +100525,7 @@ self: { time time-locale-compat ]; testToolDepends = [ utillinux ]; + jailbreak = true; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; @@ -100632,6 +100569,7 @@ self: { unordered-containers vector yaml ]; testToolDepends = [ utillinux ]; + jailbreak = true; homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; @@ -100650,7 +100588,6 @@ self: { jailbreak = true; description = "A package allowing to write Hakyll blog posts in Rmd"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-agda" = callPackage @@ -100669,7 +100606,6 @@ self: { homepage = "https://github.com/bitonic/hakyll-agda"; description = "Wrapper to integrate literate Agda files with Hakyll"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-blaze-templates" = callPackage @@ -100682,7 +100618,6 @@ self: { jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib" = callPackage @@ -100699,7 +100634,6 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-contrib-csv" = callPackage @@ -100733,6 +100667,7 @@ self: { base bytestring directory hakyll process temporary ]; executableHaskellDepends = [ base hakyll ]; + jailbreak = true; homepage = "https://github.com/narrative/hakyll-contrib-elm#readme"; description = "Compile Elm code for inclusion in Hakyll static site"; license = stdenv.lib.licenses.bsd3; @@ -100769,7 +100704,6 @@ self: { jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-convert" = callPackage @@ -100791,7 +100725,6 @@ self: { homepage = "http://github.com/kowey/hakyll-convert"; description = "Convert from other blog engines to Hakyll"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hakyll-elm" = callPackage @@ -100871,7 +100804,6 @@ self: { homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "half_0_2_0_1" = callPackage @@ -100949,7 +100881,6 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halipeto" = callPackage @@ -100963,7 +100894,6 @@ self: { homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halive" = callPackage @@ -100982,10 +100912,12 @@ self: { base bin-package-db directory filepath fsnotify ghc ghc-paths process transformers ]; + jailbreak = true; homepage = "https://github.com/lukexi/halive"; description = "A live recompiler"; license = stdenv.lib.licenses.bsd2; - }) {}; + broken = true; + }) {bin-package-db = null;}; "halma" = callPackage ({ mkDerivation, async, base, containers, data-default @@ -101014,7 +100946,6 @@ self: { homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "haltavista" = callPackage @@ -101039,7 +100970,6 @@ self: { libraryHaskellDepends = [ base HCodecs newtype ]; description = "Binding to the OS level Midi services (fork of system-midi)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hamlet" = callPackage @@ -101073,7 +101003,6 @@ self: { jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamtmap" = callPackage @@ -101086,7 +101015,6 @@ self: { homepage = "https://github.com/exclipy/pdata"; description = "A purely functional and persistent hash map"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamusic" = callPackage @@ -101108,7 +101036,6 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handa-gdata" = callPackage @@ -101175,7 +101102,6 @@ self: { homepage = "https://bitbucket.org/functionally/handa-opengl"; description = "Utility functions for OpenGL and GLUT"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "handle-like" = callPackage @@ -101209,7 +101135,6 @@ self: { homepage = "https://github.com/utdemir/handsy"; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "handwriting" = callPackage @@ -101268,7 +101193,6 @@ self: { jailbreak = true; description = "Simple Continuous Integration/Deployment System"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hans" = callPackage @@ -101335,7 +101259,6 @@ self: { ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hapistrano" = callPackage @@ -101357,6 +101280,7 @@ self: { testHaskellDepends = [ base directory either filepath hspec mtl process temporary ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/hapistrano"; description = "A deployment library for Haskell applications"; license = stdenv.lib.licenses.mit; @@ -101378,7 +101302,6 @@ self: { jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happindicator3" = callPackage @@ -101396,7 +101319,6 @@ self: { homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happraise" = callPackage @@ -101410,7 +101332,6 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp" = callPackage @@ -101424,7 +101345,6 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -101441,7 +101361,6 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -101467,7 +101386,6 @@ self: { jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack" = callPackage @@ -101504,7 +101422,6 @@ self: { homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-authenticate_2_3_2" = callPackage @@ -101624,6 +101541,7 @@ self: { time unordered-containers userid web-routes web-routes-boomerang web-routes-happstack web-routes-hsp web-routes-th ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; @@ -101667,7 +101585,6 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -101691,7 +101608,6 @@ self: { homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -101710,7 +101626,6 @@ self: { homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg"; description = "Cross-request user interactions for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -101738,7 +101653,6 @@ self: { homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -101772,7 +101686,6 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -101837,7 +101750,6 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -101863,7 +101775,6 @@ self: { homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -101918,7 +101829,6 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -101966,7 +101876,6 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-plugins" = callPackage @@ -101984,7 +101893,6 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server_7_3_9" = callPackage @@ -102077,6 +101985,7 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -102107,6 +102016,7 @@ self: { testHaskellDepends = [ base bytestring containers HUnit parsec zlib ]; + jailbreak = true; homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; @@ -102186,6 +102096,7 @@ self: { HsOpenSSL network sendfile time unix ]; librarySystemDepends = [ openssl ]; + jailbreak = true; homepage = "http://www.happstack.com/"; description = "extend happstack-server with https:// support (TLS/SSL)"; license = stdenv.lib.licenses.bsd3; @@ -102204,6 +102115,7 @@ self: { base bytestring cryptonite data-default-class extensible-exceptions happstack-server hslogger network sendfile time tls unix ]; + jailbreak = true; description = "Extend happstack-server with native HTTPS support (TLS/SSL)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102228,7 +102140,6 @@ self: { homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -102245,7 +102156,6 @@ self: { homepage = "https://github.com/scrive/happstack-static-routing"; description = "Support for static URL routing with overlap detection for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -102269,7 +102179,6 @@ self: { homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-yui" = callPackage @@ -102292,7 +102201,6 @@ self: { homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happy_1_19_4" = callPackage @@ -102344,6 +102252,7 @@ self: { array base containers haskell-src-meta mtl template-haskell ]; libraryToolDepends = [ happy ]; + jailbreak = true; description = "Quasi-quoter for Happy parsers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -102364,7 +102273,6 @@ self: { homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit" = callPackage @@ -102386,7 +102294,6 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happybara-webkit-server" = callPackage @@ -102400,7 +102307,6 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hapstone" = callPackage @@ -102455,7 +102361,6 @@ self: { homepage = "http://www.davidb.org/darcs/harchive/"; description = "Networked content addressed backup and restore software"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -102470,10 +102375,10 @@ self: { array base bytestring constraints containers language-vhdl mtl operational-alacarte pretty syntactic ]; + jailbreak = true; homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hark" = callPackage @@ -102493,7 +102398,6 @@ self: { homepage = "http://code.google.com/p/hark/"; description = "A Gentoo package query tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harmony" = callPackage @@ -102518,7 +102422,6 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haroonga" = callPackage @@ -102533,9 +102436,9 @@ self: { base bindings-DSL monad-control resourcet transformers ]; libraryPkgconfigDepends = [ groonga ]; + jailbreak = true; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {groonga = null;}; "haroonga-httpd" = callPackage @@ -102555,7 +102458,6 @@ self: { jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harp" = callPackage @@ -102565,6 +102467,7 @@ self: { version = "0.4.1"; sha256 = "9fb2d788238be65627b881d5ac6d574e62e6270ba4ee5d9cf479629f781e3861"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/seereason/harp"; description = "HaRP allows pattern-matching with regular expressions"; license = stdenv.lib.licenses.bsd3; @@ -102620,7 +102523,6 @@ self: { homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "has-th" = callPackage @@ -102633,7 +102535,6 @@ self: { homepage = "http://github.com/chrisdone/has-th"; description = "Template Haskell function for Has records"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascal" = callPackage @@ -102651,7 +102552,6 @@ self: { homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat" = callPackage @@ -102671,7 +102571,6 @@ self: { jailbreak = true; description = "Hascat Web Server"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-lib" = callPackage @@ -102690,7 +102589,6 @@ self: { jailbreak = true; description = "Hascat Package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -102712,7 +102610,6 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-system" = callPackage @@ -102730,7 +102627,6 @@ self: { jailbreak = true; description = "Hascat System Package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hash" = callPackage @@ -102751,7 +102647,6 @@ self: { homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable_1_2_3_0" = callPackage @@ -102824,6 +102719,7 @@ self: { base bytestring ghc-prim HUnit QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 text unix ]; + jailbreak = true; homepage = "http://github.com/tibbe/hashable"; description = "A class for types that can be converted to a hash value"; license = stdenv.lib.licenses.bsd3; @@ -102848,6 +102744,7 @@ self: { base bytestring ghc-prim HUnit QuickCheck random test-framework test-framework-hunit test-framework-quickcheck2 text unix ]; + jailbreak = true; homepage = "http://github.com/tibbe/hashable"; description = "A class for types that can be converted to a hash value"; license = stdenv.lib.licenses.bsd3; @@ -102927,6 +102824,7 @@ self: { base bifunctors bytestring hashable transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/analytics/hashable-extras/"; description = "Higher-rank Hashable"; license = stdenv.lib.licenses.bsd3; @@ -102968,7 +102866,6 @@ self: { homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashable-time" = callPackage @@ -103017,7 +102914,6 @@ self: { ]; description = "Hashed file storage support code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashids" = callPackage @@ -103031,7 +102927,6 @@ self: { homepage = "http://hashids.org/"; description = "Hashids generates short, unique, non-sequential ids from numbers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashmap" = callPackage @@ -103149,7 +103044,6 @@ self: { homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask" = callPackage @@ -103168,7 +103062,6 @@ self: { homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hask-home" = callPackage @@ -103188,7 +103081,6 @@ self: { homepage = "http://gregheartsfield.com/hask-home"; description = "Generate homepages for cabal packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskades" = callPackage @@ -103228,7 +103120,6 @@ self: { homepage = "http://github.com/cosbynator/haskakafka"; description = "Kafka bindings for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rdkafka;}; "haskanoid" = callPackage @@ -103245,10 +103136,10 @@ self: { base freenect hcwiid IfElse MissingH mtl SDL SDL-image SDL-mixer SDL-ttf transformers vector Yampa ]; + jailbreak = true; homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "haskarrow" = callPackage @@ -103266,7 +103157,6 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskbot-core" = callPackage @@ -103353,7 +103243,6 @@ self: { homepage = "http://www.korgwal.com/haskeem/"; description = "A small scheme interpreter"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskeline_0_7_2_1" = callPackage @@ -103369,6 +103258,7 @@ self: { base bytestring containers directory filepath terminfo transformers unix ]; + jailbreak = true; homepage = "http://trac.haskell.org/haskeline"; description = "A command-line interface for user input, written in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -103424,7 +103314,6 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-aliyun" = callPackage @@ -103448,7 +103337,6 @@ self: { homepage = "https://github.com/yihuang/haskell-aliyun/"; description = "haskell client of aliyun service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-awk" = callPackage @@ -103479,7 +103367,6 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-bcrypt" = callPackage @@ -103513,7 +103400,6 @@ self: { jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-cnc" = callPackage @@ -103535,7 +103421,6 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-coffee" = callPackage @@ -103545,6 +103430,7 @@ self: { version = "0.1.0.2"; sha256 = "674eb2c80b5b88ca9f571b5d025620508b4d1f164878a512dac3f680fd24e9c7"; libraryHaskellDepends = [ base process ]; + jailbreak = true; description = "Simple CoffeeScript API"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -103578,14 +103464,12 @@ self: { jailbreak = true; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-docs" = callPackage ({ mkDerivation, aeson, base, base16-bytestring, bytestring, Cabal , containers, cryptohash, directory, filepath, ghc, ghc-paths - , haddock-api, haddock-library, monad-loops, process, text - , unordered-containers + , haddock-api, monad-loops, process, text, unordered-containers }: mkDerivation { pname = "haskell-docs"; @@ -103595,11 +103479,12 @@ self: { isExecutable = true; libraryHaskellDepends = [ aeson base base16-bytestring bytestring Cabal containers cryptohash - directory filepath ghc ghc-paths haddock-api haddock-library - monad-loops process text unordered-containers + directory filepath ghc ghc-paths haddock-api monad-loops process + text unordered-containers ]; executableHaskellDepends = [ base ghc text ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/chrisdone/haskell-docs"; description = "A program to find and display the docs and type of a name"; license = stdenv.lib.licenses.bsd3; @@ -103645,7 +103530,6 @@ self: { homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-ftp" = callPackage @@ -103674,7 +103558,6 @@ self: { homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-generate" = callPackage @@ -103718,25 +103601,19 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, text - , transformers - }: + ({ mkDerivation, base, bytestring, containers, glib, text }: mkDerivation { pname = "haskell-gi-base"; version = "0.17"; sha256 = "fba8d755d1772cd0e01f7e8e7ac939d5bde9646d6493516c561484853ff77b76"; - libraryHaskellDepends = [ - base bytestring containers text transformers - ]; + libraryHaskellDepends = [ base bytestring containers text ]; libraryPkgconfigDepends = [ glib ]; homepage = "https://github.com/haskell-gi/haskell-gi-base"; description = "Foundation for libraries generated by haskell-gi"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "haskell-import-graph" = callPackage @@ -103755,6 +103632,7 @@ self: { base classy-prelude ghc graphviz process text transformers ]; executableHaskellDepends = [ base ]; + jailbreak = true; description = "create haskell import graph for graphviz"; license = stdenv.lib.licenses.mit; }) {}; @@ -103796,10 +103674,10 @@ self: { base either network-uri QuickCheck servant servant-client split transformers ]; + jailbreak = true; homepage = "https://github.com/soundcloud/haskell-kubernetes"; description = "Haskell bindings to the Kubernetes API (via swagger-codegen)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-lexer" = callPackage @@ -103837,7 +103715,6 @@ self: { homepage = "http://github.com/comius/haskell-mpfr"; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-mpi" = callPackage @@ -103860,7 +103737,6 @@ self: { homepage = "http://github.com/bjpop/haskell-mpi"; description = "Distributed parallel programming in Haskell using MPI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {open-pal = null; open-rte = null; inherit (pkgs) openmpi;}; "haskell-names_0_4_1" = callPackage @@ -103975,7 +103851,6 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -104122,7 +103997,6 @@ self: { homepage = "https://github.com/brooksbp/haskell-openflow"; description = "OpenFlow protocol in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-packages_0_2_4_3" = callPackage @@ -104185,10 +104059,10 @@ self: { haskell-src-exts hse-cpp mtl optparse-applicative tagged transformers transformers-compat ]; + jailbreak = true; 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-pdf-presenter" = callPackage @@ -104210,7 +104084,6 @@ self: { homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-platform-test" = callPackage @@ -104241,7 +104114,28 @@ self: { homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haskell-player" = callPackage + ({ mkDerivation, base, brick, bytestring, data-default, directory + , filepath, microlens, process, text, transformers, vector, vty + , xml-conduit + }: + mkDerivation { + pname = "haskell-player"; + version = "0.1.1.0"; + sha256 = "1b24c8f4dc0dcd800b20d48951fa65c45662740fb8da0729c31f3c91e8234c87"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base brick bytestring data-default directory filepath microlens + process text transformers vector vty xml-conduit + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/potomak/haskell-player"; + description = "A terminal music player based on afplay"; + license = stdenv.lib.licenses.bsd3; }) {}; "haskell-plot" = callPackage @@ -104259,7 +104153,6 @@ self: { homepage = "https://github.com/kaizhang/haskell-plot"; description = "A library for generating 2D plots painlessly"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-qrencode" = callPackage @@ -104283,6 +104176,7 @@ self: { sha256 = "ea4d6469f7f3b661ee08f74f53291f9361bd53bef5a6e645c5a96b8d3b345d23"; libraryHaskellDepends = [ base directory process ]; testHaskellDepends = [ base directory hspec process ]; + jailbreak = true; homepage = "https://github.com/yamadapc/haskell-read-editor"; description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; license = stdenv.lib.licenses.mit; @@ -104302,7 +104196,6 @@ self: { ]; description = "Reflect Haskell types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -104312,9 +104205,9 @@ self: { version = "0.1.0.1"; sha256 = "e6c357a23888313d9f2cfab4e72805a2d91507378063ec861b22b56e5f60a80d"; libraryHaskellDepends = [ base syb ]; + jailbreak = true; description = "A DSL for expressing natural deduction rules in Haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-spacegoo" = callPackage @@ -104419,6 +104312,7 @@ self: { base containers directory filepath mtl pretty-show smallcheck syb tasty tasty-golden tasty-smallcheck ]; + doCheck = false; homepage = "https://github.com/haskell-suite/haskell-src-exts"; description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; license = stdenv.lib.licenses.bsd3; @@ -104573,7 +104467,6 @@ self: { jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-token-utils" = callPackage @@ -104599,7 +104492,6 @@ self: { homepage = "https://github.com/alanz/haskell-token-utils"; description = "Utilities to tie up tokens to an AST"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-tor" = callPackage @@ -104635,7 +104527,6 @@ self: { homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-type-exts" = callPackage @@ -104650,7 +104541,6 @@ self: { homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-typescript" = callPackage @@ -104675,7 +104565,6 @@ self: { homepage = "https://github.com/PeterScott/haskell-tyrant"; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-updater" = callPackage @@ -104713,7 +104602,6 @@ self: { homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell2010" = callPackage @@ -104727,7 +104615,6 @@ self: { homepage = "http://www.haskell.org/onlinereport/haskell2010/"; description = "Compatibility with Haskell 2010"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98" = callPackage @@ -104745,7 +104632,6 @@ self: { homepage = "http://www.haskell.org/definition/"; description = "Compatibility with Haskell 98"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98libraries" = callPackage @@ -104791,7 +104677,6 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HDBC session for HaskellDB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -104808,7 +104693,6 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -104826,7 +104710,6 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -104844,7 +104727,6 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -104862,7 +104744,6 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-dynamic" = callPackage @@ -104879,7 +104760,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-flat" = callPackage @@ -104933,7 +104813,6 @@ self: { jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hdbc-odbc" = callPackage @@ -105002,7 +104881,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -105022,7 +104900,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-odbc" = callPackage @@ -105042,7 +104919,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-oracle" = callPackage @@ -105082,7 +104958,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-hsql-sqlite" = callPackage @@ -105122,7 +104997,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-th" = callPackage @@ -105147,7 +105021,6 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for WXHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscrabble" = callPackage @@ -105173,7 +105046,6 @@ self: { homepage = "http://www.github.com/happy0/haskellscrabble"; description = "A scrabble library capturing the core game logic of scrabble"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskellscript" = callPackage @@ -105189,6 +105061,7 @@ self: { executableHaskellDepends = [ base cryptohash directory either filepath mtl process text ]; + jailbreak = true; homepage = "http://github.com/seanparsons/haskellscript/"; description = "Command line tool for running Haskell scripts with a hashbang"; license = stdenv.lib.licenses.bsd3; @@ -105237,7 +105110,6 @@ self: { homepage = "http://haskell.org/haskellwiki/HaskGame"; description = "Haskell game library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskheap" = callPackage @@ -105256,7 +105128,6 @@ self: { homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskhol-core" = callPackage @@ -105277,7 +105148,6 @@ self: { homepage = "http://haskhol.org"; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskintex_0_5_0_2" = callPackage @@ -105433,7 +105303,6 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-core" = callPackage @@ -105463,7 +105332,6 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the core Bitcoin protocol features"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-crypto" = callPackage @@ -105488,7 +105356,6 @@ self: { homepage = "http://github.com/plaprade/haskoin-crypto"; description = "Implementation of Bitcoin cryptographic primitives"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-node" = callPackage @@ -105519,7 +105386,6 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitoin node"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-protocol" = callPackage @@ -105542,7 +105408,6 @@ self: { homepage = "http://github.com/plaprade/haskoin-protocol"; description = "Implementation of the Bitcoin network protocol messages"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-script" = callPackage @@ -105567,7 +105432,6 @@ self: { homepage = "http://github.com/plaprade/haskoin-script"; description = "Implementation of Bitcoin script parsing and evaluation"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-util" = callPackage @@ -105590,7 +105454,6 @@ self: { homepage = "http://github.com/plaprade/haskoin-util"; description = "Utility functions for the Network.Haskoin project"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-wallet" = callPackage @@ -105631,7 +105494,6 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon" = callPackage @@ -105649,7 +105511,6 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -105665,7 +105526,6 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -105683,7 +105543,6 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore" = callPackage @@ -105706,10 +105565,10 @@ self: { base bytestring data-accessor event-list HUnit midi non-negative process QuickCheck random transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Haskore"; description = "The Haskore Computer Music System"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-realtime" = callPackage @@ -105725,10 +105584,10 @@ self: { base bytestring data-accessor directory event-list haskore midi non-negative old-time process transformers unix utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Haskore/"; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-supercollider" = callPackage @@ -105752,7 +105611,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-synthesizer" = callPackage @@ -105774,7 +105632,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore-vintage" = callPackage @@ -105820,7 +105677,6 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -105839,7 +105695,6 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasparql-client" = callPackage @@ -105852,7 +105707,6 @@ self: { homepage = "https://github.com/lhpaladin/HaSparql-Client"; description = "This package enables to write SPARQL queries to remote endpoints"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haspell" = callPackage @@ -106714,7 +106568,6 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-postgres-options" = callPackage @@ -106731,7 +106584,6 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasql-th" = callPackage @@ -106750,16 +106602,16 @@ self: { }) {}; "hasql-transaction" = callPackage - ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, either, hasql, mtl - , postgresql-error-codes, transformers + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, contravariant, contravariant-extras + , either, hasql, mtl, postgresql-error-codes, transformers }: mkDerivation { pname = "hasql-transaction"; - version = "0.4.4.1"; - sha256 = "53ca58906d2a87549e59b5009d6865411fadc2cefa95af2283819980264aea4e"; + version = "0.4.5"; + sha256 = "bac5527d7778531ffb5138f666684f008a65537afffa2327a5264c5869f15630"; libraryHaskellDepends = [ - base-prelude bytestring bytestring-tree-builder contravariant + base base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras either hasql mtl postgresql-error-codes transformers ]; @@ -106817,6 +106669,7 @@ self: { testHaskellDepends = [ base bytestring directory HUnit mtl syb text ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/lymar/hastache"; description = "Haskell implementation of Mustache templates"; @@ -106880,10 +106733,12 @@ self: { ghc-simple HTTP mtl network network-uri process random shellmate system-fileio tar terminfo transformers unix utf8-string ]; + jailbreak = true; homepage = "http://haste-lang.org/"; description = "Haskell To ECMAScript compiler"; license = stdenv.lib.licenses.bsd3; - }) {}; + broken = true; + }) {bin-package-db = null;}; "haste-gapi" = callPackage ({ mkDerivation, base, data-default, haste-compiler, transformers @@ -106897,6 +106752,7 @@ self: { ]; description = "Google API bindings for the Haste compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haste-markup" = callPackage @@ -107011,7 +106867,6 @@ self: { homepage = "http://projects.haskell.org/hat/"; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hatex-guide" = callPackage @@ -107028,7 +106883,6 @@ self: { ]; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hath" = callPackage @@ -107099,7 +106953,6 @@ self: { jailbreak = true; description = "Implementation of the rules of Love Letter"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hawitter" = callPackage @@ -107121,7 +106974,6 @@ self: { homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834"; description = "A twitter client for GTK+. Beta version."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl" = callPackage @@ -107147,6 +106999,7 @@ self: { aeson base bytestring containers hashable HUnit text unordered-containers ]; + jailbreak = true; homepage = "https://github.com/facebook/Haxl"; description = "A Haskell library for efficient, concurrent, and concise data access"; license = stdenv.lib.licenses.bsd3; @@ -107219,7 +107072,6 @@ self: { homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxr_3000_10_3_1" = callPackage @@ -107425,7 +107277,6 @@ self: { jailbreak = true; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesa; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -107446,7 +107297,6 @@ self: { homepage = "https://github.com/Gonzih/hayoo-cli"; description = "Hayoo CLI"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hback" = callPackage @@ -107465,7 +107315,6 @@ self: { homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbayes" = callPackage @@ -107493,7 +107342,6 @@ self: { homepage = "http://www.alpheccar.org"; description = "Bayesian Networks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbb" = callPackage @@ -107512,7 +107360,6 @@ self: { homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbcd" = callPackage @@ -107559,7 +107406,6 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -107579,7 +107425,6 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -107600,7 +107445,6 @@ self: { jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro" = callPackage @@ -107630,7 +107474,6 @@ self: { homepage = "https://github.com/k0ral/hbro"; description = "Minimal extensible web-browser"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro-contrib" = callPackage @@ -107669,7 +107512,6 @@ self: { homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcc" = callPackage @@ -107725,7 +107567,6 @@ self: { homepage = "http://github.com/nfjinjing/hcheat/"; description = "A collection of code cheatsheet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hchesslib" = callPackage @@ -107743,7 +107584,6 @@ self: { homepage = "https://github.com/nablaa/hchesslib"; description = "Chess library"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcltest" = callPackage @@ -107786,6 +107626,7 @@ self: { testHaskellDepends = [ async base bytestring HUnit network QuickCheck random ]; + jailbreak = true; homepage = "https://github.com/lulf/hcoap"; description = "CoAP implementation for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -107807,7 +107648,6 @@ self: { homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcube" = callPackage @@ -107827,7 +107667,6 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcwiid" = callPackage @@ -107841,7 +107680,6 @@ self: { homepage = "https://github.com/ivanperez-keera/hcwiid"; description = "Library to interface with the wiimote"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {bluetooth = null; inherit (pkgs) cwiid;}; "hdaemonize_0_5_0_0" = callPackage @@ -107861,7 +107699,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hdaemonize" = callPackage + "hdaemonize_0_5_0_1" = callPackage ({ mkDerivation, base, extensible-exceptions, filepath, hsyslog , mtl, unix }: @@ -107875,6 +107713,23 @@ self: { homepage = "http://github.com/greydot/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hdaemonize" = callPackage + ({ mkDerivation, base, extensible-exceptions, filepath, hsyslog + , mtl, unix + }: + mkDerivation { + pname = "hdaemonize"; + version = "0.5.0.2"; + sha256 = "55cd4ff1dd4ca4fd00f450db3964639c5cc5e98f33f1b3d45c8c3f2d485953ae"; + libraryHaskellDepends = [ + base extensible-exceptions filepath hsyslog mtl unix + ]; + homepage = "http://github.com/greydot/hdaemonize"; + description = "Library to handle the details of writing daemons for UNIX"; + license = stdenv.lib.licenses.bsd3; }) {}; "hdaemonize-buildfix" = callPackage @@ -107891,7 +107746,6 @@ self: { homepage = "http://github.com/madhadron/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbc-aeson" = callPackage @@ -107963,7 +107817,6 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi"; description = "Haskell Database Independent interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -107985,7 +107838,6 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-conduit"; description = "Conduit glue for HDBI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -108015,7 +107867,6 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-postgresql"; description = "PostgreSQL driver for hdbi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -108036,7 +107887,6 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-sqlite"; description = "SQlite driver for HDBI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -108058,7 +107908,6 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-tests"; description = "test suite for testing HDBI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdevtools_0_1_0_6" = callPackage @@ -108155,11 +108004,13 @@ self: { base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths network process syb time unix ]; + jailbreak = true; homepage = "https://github.com/schell/hdevtools/"; description = "Persistent GHC powered background server for FAST haskell development tools"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + broken = true; + }) {bin-package-db = null;}; "hdevtools_0_1_2_2" = callPackage ({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory @@ -108176,11 +108027,13 @@ self: { base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths network process syb time transformers unix ]; + jailbreak = true; homepage = "https://github.com/hdevtools/hdevtools/"; description = "Persistent GHC powered background server for FAST haskell development tools"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + broken = true; + }) {bin-package-db = null;}; "hdevtools_0_1_3_0" = callPackage ({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory @@ -108197,11 +108050,13 @@ self: { base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths network process syb time transformers unix ]; + jailbreak = true; homepage = "https://github.com/hdevtools/hdevtools/"; description = "Persistent GHC powered background server for FAST haskell development tools"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; - }) {}; + broken = true; + }) {bin-package-db = null;}; "hdevtools" = callPackage ({ mkDerivation, base, bin-package-db, Cabal, cmdargs, directory @@ -108218,10 +108073,12 @@ self: { base bin-package-db Cabal cmdargs directory filepath ghc ghc-paths network process syb time transformers unix ]; + jailbreak = true; homepage = "https://github.com/hdevtools/hdevtools/"; description = "Persistent GHC powered background server for FAST haskell development tools"; license = stdenv.lib.licenses.mit; - }) {}; + broken = true; + }) {bin-package-db = null;}; "hdf" = callPackage ({ mkDerivation, base, directory, fgl, fgl-visualize, filepath @@ -108252,7 +108109,6 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdirect" = callPackage @@ -108270,7 +108126,6 @@ self: { homepage = "http://www.haskell.org/hdirect/"; description = "An IDL compiler for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdis86" = callPackage @@ -108283,7 +108138,6 @@ self: { homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdiscount" = callPackage @@ -108298,7 +108152,6 @@ self: { homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {markdown = null;}; "hdm" = callPackage @@ -108312,7 +108165,32 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hdo" = callPackage + ({ mkDerivation, aeson, base, bytestring, comonad, data-default + , free, iproute, lens, mtl, network-uri, optparse-applicative + , pretty, process, random, tagged, text, time, transformers, unix + , unordered-containers, vector, wreq + }: + mkDerivation { + pname = "hdo"; + version = "0.1"; + sha256 = "feb54ee5c028b828d752fba4a086b43227f14a5ed3d0b4fd4d3ccfb09745d11a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring comonad data-default free iproute lens mtl + network-uri pretty process random tagged text time transformers + unix unordered-containers vector wreq + ]; + executableHaskellDepends = [ + aeson base bytestring comonad data-default free iproute network-uri + optparse-applicative pretty random text time transformers + unordered-containers vector + ]; + description = "A Digital Ocean client in Haskell"; + license = stdenv.lib.licenses.mit; }) {}; "hdocs_0_4_1_3" = callPackage @@ -108364,6 +108242,7 @@ self: { text ]; testHaskellDepends = [ base containers mtl ]; + jailbreak = true; homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; @@ -108392,6 +108271,7 @@ self: { text ]; testHaskellDepends = [ base containers mtl ]; + jailbreak = true; homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; @@ -108420,6 +108300,7 @@ self: { mtl network text ]; testHaskellDepends = [ base containers mtl ]; + jailbreak = true; homepage = "https://github.com/mvoidex/hdocs"; description = "Haskell docs tool"; license = stdenv.lib.licenses.bsd3; @@ -108477,7 +108358,6 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdph-closure" = callPackage @@ -108495,7 +108375,6 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Explicit closures in Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdr-histogram" = callPackage @@ -108515,7 +108394,6 @@ self: { homepage = "http://github.com/joshbohde/hdr-histogram#readme"; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "headergen" = callPackage @@ -108669,7 +108547,6 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hedis_0_6_9" = callPackage @@ -108697,7 +108574,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hedis" = callPackage + "hedis_0_6_10" = callPackage ({ mkDerivation, attoparsec, base, BoundedChan, bytestring , bytestring-lexing, HUnit, mtl, network, resource-pool , test-framework, test-framework-hunit, time, vector @@ -108719,9 +108596,10 @@ self: { homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hedis_0_8_3" = callPackage + "hedis" = callPackage ({ mkDerivation, base, bytestring, bytestring-lexing, deepseq , HUnit, mtl, network, resource-pool, scanner, slave-thread , test-framework, test-framework-hunit, text, time, vector @@ -108738,10 +108616,10 @@ self: { base bytestring HUnit mtl slave-thread test-framework test-framework-hunit time ]; + doCheck = false; homepage = "https://github.com/informatikr/hedis"; description = "Client library for the Redis datastore: supports full command set, pipelining"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hedis-config" = callPackage @@ -108854,7 +108732,6 @@ self: { homepage = "https://bitbucket.org/dpwiz/hedn"; description = "EDN parsing and encoding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hein" = callPackage @@ -108871,6 +108748,7 @@ self: { base bytestring directory filepath http-conduit process transformers ]; + jailbreak = true; homepage = "https://github.com/khanage/heineken"; description = "An extensible build helper for haskell, in the vein of leiningen"; license = stdenv.lib.licenses.asl20; @@ -108947,6 +108825,7 @@ self: { map-syntax MonadCatchIO-transformers mtl process random text time transformers unordered-containers vector xmlhtml ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; @@ -108970,6 +108849,7 @@ self: { map-syntax MonadCatchIO-transformers mtl process random text time transformers unordered-containers vector xmlhtml ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; @@ -108993,6 +108873,7 @@ self: { map-syntax MonadCatchIO-transformers mtl process random text time transformers unordered-containers vector xmlhtml ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; @@ -109016,6 +108897,7 @@ self: { map-syntax MonadCatchIO-transformers mtl process random text time transformers unordered-containers vector xmlhtml ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "An Haskell template system supporting both HTML5 and XML"; license = stdenv.lib.licenses.bsd3; @@ -109035,7 +108917,6 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "heist-async" = callPackage @@ -109071,10 +108952,10 @@ self: { librarySystemDepends = [ newrelic-collector-client newrelic-common newrelic-transaction ]; + jailbreak = true; homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -109095,7 +108976,6 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "helisp" = callPackage @@ -109133,7 +109013,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Helium Compiler"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "helix" = callPackage @@ -109184,7 +109063,6 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellage" = callPackage @@ -109205,7 +109083,6 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hellage"; description = "Distributed hackage mirror"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellnet" = callPackage @@ -109231,7 +109108,6 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hspawn"; description = "Simple, distributed, anonymous data sharing network"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hello" = callPackage @@ -109270,7 +109146,6 @@ self: { homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "help-esb" = callPackage @@ -109305,7 +109180,6 @@ self: { ]; description = "A module music mixer and player"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hemkay-core" = callPackage @@ -109346,7 +109220,6 @@ self: { homepage = "https://github.com/nh2/hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hen" = callPackage @@ -109369,7 +109242,6 @@ self: { homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -109384,7 +109256,6 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hepevt" = callPackage @@ -109396,7 +109267,6 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -109409,7 +109279,6 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A lexer for Haskell source code"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer-parsec" = callPackage @@ -109421,7 +109290,6 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herbalizer" = callPackage @@ -109440,7 +109308,6 @@ self: { homepage = "https://github.com/danchoi/herbalizer"; description = "HAML to ERB translator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "here_1_2_6" = callPackage @@ -109461,7 +109328,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "here" = callPackage + "here_1_2_7" = callPackage ({ mkDerivation, base, haskell-src-meta, mtl, parsec , template-haskell }: @@ -109472,6 +109339,24 @@ self: { libraryHaskellDepends = [ base haskell-src-meta mtl parsec template-haskell ]; + jailbreak = true; + homepage = "https://github.com/tmhedberg/here"; + description = "Here docs & interpolated strings via quasiquotation"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "here" = callPackage + ({ mkDerivation, base, haskell-src-meta, mtl, parsec + , template-haskell + }: + mkDerivation { + pname = "here"; + version = "1.2.8"; + sha256 = "2e6fcb0c498c787973f033455b4bc579cbfd0f86f0f958a05fc8502a3759c7ec"; + libraryHaskellDepends = [ + base haskell-src-meta mtl parsec template-haskell + ]; homepage = "https://github.com/tmhedberg/here"; description = "Here docs & interpolated strings via quasiquotation"; license = stdenv.lib.licenses.bsd3; @@ -109499,10 +109384,10 @@ self: { base doctest parsec template-haskell text ]; testHaskellDepends = [ base doctest text ]; + jailbreak = true; homepage = "http://github.com/cutsea110/heredoc.git"; description = "heredocument"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herf-time" = callPackage @@ -109542,9 +109427,9 @@ self: { base directory filepath ghc ghc-paths process tasty tasty-golden temporary ]; + jailbreak = true; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hermit-syb" = callPackage @@ -109560,7 +109445,6 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hero-club-five-tenets" = callPackage @@ -109624,7 +109508,6 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -109641,7 +109524,6 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -109658,7 +109540,6 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesh" = callPackage @@ -109684,7 +109565,6 @@ self: { homepage = "https://github.com/jekor/hesh"; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesql" = callPackage @@ -109703,7 +109583,6 @@ self: { jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hetero-map" = callPackage @@ -109732,7 +109611,6 @@ self: { homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; description = "Text Tetris"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "heukarya" = callPackage @@ -109748,7 +109626,6 @@ self: { homepage = "https://github.com/t3476/heukarya"; description = "A genetic programming based on tree structure"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa" = callPackage @@ -109764,7 +109641,6 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa-dph" = callPackage @@ -109782,7 +109658,6 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hex" = callPackage @@ -109854,7 +109729,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -109868,6 +109742,7 @@ self: { libraryHaskellDepends = [ base bytestring deepseq hexpat hexpat-tagsoup lens ]; + jailbreak = true; homepage = "https://github.com/tel/hexpat-lens"; description = "Lenses for Hexpat"; license = stdenv.lib.licenses.mit; @@ -109905,7 +109780,6 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-tagsoup" = callPackage @@ -109948,7 +109822,6 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexstring" = callPackage @@ -110015,7 +109888,6 @@ self: { executableSystemDepends = [ doublefann ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -110035,7 +109907,6 @@ self: { jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfiar" = callPackage @@ -110052,7 +109923,6 @@ self: { homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hflags_0_4" = callPackage @@ -110105,7 +109975,6 @@ self: { homepage = "http://github.com/danstiner/hfmt"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfoil" = callPackage @@ -110125,7 +109994,6 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hformat" = callPackage @@ -110171,7 +110039,6 @@ self: { homepage = "http://github.com/cmh/Hfractal"; description = "OpenGL fractal renderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfsevents_0_1_5" = callPackage @@ -110214,7 +110081,6 @@ self: { homepage = "http://www.fing.edu.uy/inco/proyectos/fusion"; description = "A library for fusing a subset of Haskell programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hg-buildpackage" = callPackage @@ -110233,7 +110099,6 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgal" = callPackage @@ -110256,7 +110121,6 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgdbmi" = callPackage @@ -110311,7 +110175,6 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometric" = callPackage @@ -110324,7 +110187,6 @@ self: { homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/"; description = "A geometric library with bindings to GPC"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgeometry" = callPackage @@ -110347,7 +110209,6 @@ self: { homepage = "http://fstaals.net/software/hgeometry"; description = "Data types for geometric objects, geometric algorithms, and data structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgettext" = callPackage @@ -110389,7 +110250,6 @@ self: { homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgl-example" = callPackage @@ -110426,7 +110286,6 @@ self: { homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgopher" = callPackage @@ -110456,7 +110315,6 @@ self: { homepage = "https://github.com/LukeHoersten/hgrev"; description = "Compile Mercurial (hg) version info into Haskell code"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgrib" = callPackage @@ -110478,7 +110336,6 @@ self: { homepage = "https://github.com/mjakob/hgrib"; description = "Unofficial bindings for GRIB API"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {grib_api = null;}; "hharp" = callPackage @@ -110493,7 +110350,6 @@ self: { homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {harp = null;}; "hi" = callPackage @@ -110544,6 +110400,7 @@ self: { regex-pcre-builtin text time transformers vector ]; executableHaskellDepends = [ base dbus process ]; + jailbreak = true; description = "Status line for i3bar"; license = stdenv.lib.licenses.mit; }) {}; @@ -110565,7 +110422,6 @@ self: { homepage = "http://hiccup.googlecode.com/"; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hichi" = callPackage @@ -110579,7 +110435,6 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hid_0_2_1" = callPackage @@ -110591,6 +110446,23 @@ self: { libraryHaskellDepends = [ base bytestring transformers ]; libraryPkgconfigDepends = [ hidapi ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; + description = "Interface to hidapi library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) hidapi;}; + + "hid_0_2_1_1" = callPackage + ({ mkDerivation, base, bytestring, c2hs, hidapi, transformers }: + mkDerivation { + pname = "hid"; + version = "0.2.1.1"; + sha256 = "290cddbf84e35b25d7140a1a670747981d87786ad2f918e97c8f335b9a15bd5c"; + libraryHaskellDepends = [ base bytestring transformers ]; + libraryPkgconfigDepends = [ hidapi ]; + libraryToolDepends = [ c2hs ]; + jailbreak = true; + homepage = "https://github.com/phaazon/hid"; description = "Interface to hidapi library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -110600,15 +110472,14 @@ self: { ({ mkDerivation, base, bytestring, c2hs, hidapi, transformers }: mkDerivation { pname = "hid"; - version = "0.2.1.1"; - sha256 = "290cddbf84e35b25d7140a1a670747981d87786ad2f918e97c8f335b9a15bd5c"; + version = "0.2.2"; + sha256 = "0dd5c562b871626cfad11846d0d3b788823adc12fe009403a42e5f56108773d2"; libraryHaskellDepends = [ base bytestring transformers ]; libraryPkgconfigDepends = [ hidapi ]; libraryToolDepends = [ c2hs ]; homepage = "https://github.com/phaazon/hid"; description = "Interface to hidapi library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hidapi;}; "hidapi_0_1_3" = callPackage @@ -110640,7 +110511,6 @@ self: { homepage = "https://github.com/vahokif/haskell-hidapi"; description = "Haskell bindings to HIDAPI"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "hieraclus" = callPackage @@ -110652,7 +110522,6 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering" = callPackage @@ -110686,7 +110555,6 @@ self: { jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -110720,6 +110588,7 @@ self: { base directory doctest filepath hspec hspec-expectations mtl pipes semigroups transformers ]; + jailbreak = true; homepage = "https://github.com/jwiegley/hierarchy"; description = "Pipes-based library for predicated traversal of generated trees"; license = stdenv.lib.licenses.bsd3; @@ -110739,7 +110608,6 @@ self: { homepage = "http://github.com/paolino/hiernotify"; description = "Notification library for a filesystem hierarchy"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highWaterMark" = callPackage @@ -110754,7 +110622,6 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Memory usage statistics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higher-leveldb" = callPackage @@ -110774,10 +110641,10 @@ self: { base bytestring cereal hspec leveldb-haskell lifted-base monad-control mtl process resourcet transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "higherorder" = callPackage @@ -110791,7 +110658,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highjson" = callPackage @@ -110811,7 +110677,6 @@ self: { homepage = "https://github.com/agrafix/highjson"; description = "Very fast JSON serialisation and parsing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "highlight-versions" = callPackage @@ -111088,7 +110953,6 @@ self: { homepage = "http://github.com/Fuuzetsu/himg"; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himpy" = callPackage @@ -111112,7 +110976,6 @@ self: { homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hindent_4_4_1" = callPackage @@ -111304,6 +111167,7 @@ self: { base containers data-fix mtl transformers ]; testHaskellDepends = [ base containers hspec ]; + jailbreak = true; description = "Template for Hindley-Milner based languages"; license = stdenv.lib.licenses.mit; }) {}; @@ -111333,7 +111197,6 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -111349,7 +111212,6 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-examples" = callPackage @@ -111368,7 +111230,6 @@ self: { ]; description = "Example data for hInduce"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinduce-missingh" = callPackage @@ -111565,7 +111426,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint" = callPackage + "hint_0_5_1" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-paths, HUnit, mtl, random, unix }: @@ -111581,13 +111442,15 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint_0_5_2" = callPackage + "hint" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-paths, HUnit, mtl, random, unix }: @@ -111601,10 +111464,11 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hint-server" = callPackage @@ -111634,7 +111498,6 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Space Invaders"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinze-streams" = callPackage @@ -111647,7 +111510,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/hinze-streams"; description = "Streams and Unique Fixed Points"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hip" = callPackage @@ -111667,7 +111529,6 @@ self: { homepage = "https://github.com/lehins/hip"; description = "Haskell Image Processing (HIP) Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipbot" = callPackage @@ -111710,9 +111571,9 @@ self: { network-uri servant servant-client split string-conversions text time ]; + jailbreak = true; description = "Hipchat API bindings in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipe" = callPackage @@ -111729,7 +111590,6 @@ self: { homepage = "http://fstaals.net/software/hipe"; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hips" = callPackage @@ -111764,7 +111624,6 @@ self: { ]; description = "IRC client"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hirt" = callPackage @@ -111787,7 +111646,6 @@ self: { homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hissmetrics" = callPackage @@ -111805,7 +111663,6 @@ self: { homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl" = callPackage @@ -111831,7 +111688,6 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-dawg" = callPackage @@ -111864,7 +111720,6 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/fusion"; description = "Merging historical dictionary with PoliMorf"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-lexicon" = callPackage @@ -111896,7 +111751,6 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hist-pl-transliter" = callPackage @@ -111996,7 +111850,6 @@ self: { jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hit_0_6_2" = callPackage @@ -112114,7 +111967,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS"; description = "JavaScript Parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hjsmin_0_1_4_7" = callPackage @@ -112353,8 +112205,8 @@ self: { }: mkDerivation { pname = "hjsonpointer"; - version = "0.3.0.0"; - sha256 = "9d6ae61f5be1e538a50e1f386b45af3dfb20b0199c61c2b2a643f592f0c78915"; + version = "0.3.0.1"; + sha256 = "336e55ff4951e87dd4bed587378c9809c67d5462a88b30c186a56d61aa452b41"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -112379,8 +112231,8 @@ self: { }: mkDerivation { pname = "hjsonschema"; - version = "0.10.0.1"; - sha256 = "129b1caff1d64121fc58852bc3ff6a87e7c0ba3dff75c037089d03aa4d3fd252"; + version = "0.10.0.2"; + sha256 = "ef16997285185449df1c7885fb3465dc7da41511544497efe2421764db4e71e1"; libraryHaskellDepends = [ aeson base bytestring containers file-embed filepath hjsonpointer http-client http-types pcre-heavy QuickCheck scientific semigroups @@ -112394,7 +112246,6 @@ self: { homepage = "https://github.com/seagreen/hjsonschema"; description = "JSON Schema library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hkdf" = callPackage @@ -112449,7 +112300,6 @@ self: { homepage = "http://people.ksp.sk/~ivan/hlbfgsb"; description = "Haskell binding to L-BFGS-B version 3.0"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -112472,7 +112322,6 @@ self: { homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hleap" = callPackage @@ -112493,6 +112342,7 @@ self: { aeson base containers data-default mtl text unordered-containers websockets ]; + jailbreak = true; homepage = "https://bitbucket.org/functionally/hleap"; description = "Web Socket interface to Leap Motion controller"; license = stdenv.lib.licenses.mit; @@ -112656,7 +112506,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hledger" = callPackage + "hledger_0_27" = callPackage ({ mkDerivation, base, base-compat, cmdargs, containers, csv , directory, filepath, haskeline, hledger-lib, HUnit, mtl , mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa @@ -112691,6 +112541,46 @@ self: { terminfo test-framework test-framework-hunit text time unordered-containers utf8-string wizards ]; + jailbreak = true; + homepage = "http://hledger.org"; + description = "Command-line interface for the hledger accounting tool"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hledger" = callPackage + ({ mkDerivation, base, base-compat, cmdargs, containers, csv + , directory, filepath, haskeline, hledger-lib, HUnit, mtl + , mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa + , safe, shakespeare, split, tabular, terminfo, test-framework + , test-framework-hunit, text, time, unordered-containers + , utf8-string, wizards + }: + mkDerivation { + pname = "hledger"; + version = "0.27.1"; + sha256 = "f85b8d7ea7a2c7ef1ba1fa4645df951a7bf2f83e4117fdc34d9dacfa7d17376e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + terminfo text time unordered-containers utf8-string wizards + ]; + executableHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + terminfo text time unordered-containers utf8-string wizards + ]; + testHaskellDepends = [ + base base-compat cmdargs containers csv directory filepath + haskeline hledger-lib HUnit mtl mtl-compat old-time parsec + pretty-show process regex-tdfa safe shakespeare split tabular + terminfo test-framework test-framework-hunit text time + unordered-containers utf8-string wizards + ]; homepage = "http://hledger.org"; description = "Command-line interface for the hledger accounting tool"; license = "GPL"; @@ -112714,7 +112604,6 @@ self: { homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-diff" = callPackage @@ -112844,6 +112733,7 @@ self: { regex-tdfa regexpr safe split test-framework test-framework-hunit time transformers ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Core data types, parsers and utilities for the hledger accounting tool"; license = "GPL"; @@ -112872,12 +112762,44 @@ self: { regex-tdfa safe split test-framework test-framework-hunit time transformers ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Core data types, parsers and utilities for the hledger accounting tool"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hledger-lib_0_27" = callPackage + ({ mkDerivation, array, base, base-compat, blaze-markup, bytestring + , cmdargs, containers, csv, Decimal, deepseq, directory, filepath + , HUnit, mtl, mtl-compat, old-time, parsec, pretty-show, regex-tdfa + , safe, split, test-framework, test-framework-hunit, time + , transformers, uglymemo, utf8-string + }: + mkDerivation { + pname = "hledger-lib"; + version = "0.27"; + sha256 = "77c47900106e65411743097cd0855b5484e1439b0de4c5ee6d2a0c5748672606"; + revision = "3"; + editedCabalFile = "6b734f07bdc0e658c035d982fdbb6fc2e8cf27b76fdf52485c230f146e51feb1"; + libraryHaskellDepends = [ + array base base-compat blaze-markup bytestring cmdargs containers + csv Decimal deepseq directory filepath HUnit mtl mtl-compat + old-time parsec pretty-show regex-tdfa safe split time transformers + uglymemo utf8-string + ]; + testHaskellDepends = [ + array base base-compat blaze-markup bytestring cmdargs containers + csv Decimal deepseq directory filepath HUnit mtl mtl-compat + old-time parsec pretty-show regex-tdfa safe split test-framework + test-framework-hunit time transformers uglymemo utf8-string + ]; + homepage = "http://hledger.org"; + description = "Core data types, parsers and functionality for the hledger accounting tools"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hledger-lib" = callPackage ({ mkDerivation, array, base, base-compat, blaze-markup, bytestring , cmdargs, containers, csv, Decimal, deepseq, directory, filepath @@ -112887,10 +112809,8 @@ self: { }: mkDerivation { pname = "hledger-lib"; - version = "0.27"; - sha256 = "77c47900106e65411743097cd0855b5484e1439b0de4c5ee6d2a0c5748672606"; - revision = "2"; - editedCabalFile = "5cf2490d88e00c2e2d26824b85ea8a4215e73adb7acfcd668d2c0afc298fe811"; + version = "0.27.1"; + sha256 = "de9780b2d5a88d1f9518bb02bfda27cc55352f5f0b7f43770906a43e0601465f"; libraryHaskellDepends = [ array base base-compat blaze-markup bytestring cmdargs containers csv Decimal deepseq directory filepath HUnit mtl mtl-compat @@ -112926,13 +112846,14 @@ self: { hledger hledger-lib HUnit lens pretty-show safe split time transformers vector vty ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Curses-style user interface for the hledger accounting tool"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hledger-ui" = callPackage + "hledger-ui_0_27_4" = callPackage ({ mkDerivation, base, base-compat, brick, cmdargs, containers , data-default, filepath, hledger, hledger-lib, HUnit, lens , pretty-show, safe, split, time, transformers, vector, vty @@ -112950,6 +112871,30 @@ self: { hledger hledger-lib HUnit lens pretty-show safe split time transformers vector vty ]; + jailbreak = true; + homepage = "http://hledger.org"; + description = "Curses-style user interface for the hledger accounting tool"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hledger-ui" = callPackage + ({ mkDerivation, base, base-compat, brick, cmdargs, containers + , data-default, filepath, hledger, hledger-lib, HUnit, lens + , pretty-show, safe, split, time, transformers, vector, vty + }: + mkDerivation { + pname = "hledger-ui"; + version = "0.27.5"; + sha256 = "0864f4b63629681c5db8be6edeff2474ed9407266f8dcb01f7ab2ed77c0ad0d9"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base base-compat brick cmdargs containers data-default filepath + hledger hledger-lib HUnit lens pretty-show safe split time + transformers vector vty + ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Curses-style user interface for the hledger accounting tool"; license = "GPL"; @@ -112972,7 +112917,6 @@ self: { homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hledger-web_0_24_1" = callPackage @@ -113092,6 +113036,7 @@ self: { wai-extra wai-handler-launch warp yaml yesod yesod-core yesod-form yesod-static yesod-test ]; + jailbreak = true; homepage = "http://hledger.org"; description = "Web interface for the hledger accounting tool"; license = "GPL"; @@ -113111,7 +113056,6 @@ self: { homepage = "https://victoredwardocallaghan.github.io/hlibBladeRF"; description = "Haskell binding to libBladeRF SDR library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libbladeRF;}; "hlibev" = callPackage @@ -113125,7 +113069,6 @@ self: { homepage = "http://github.com/aycanirican/hlibev"; description = "FFI interface to libev"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {ev = null;}; "hlibfam" = callPackage @@ -113138,7 +113081,6 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fam;}; "hlibgit2_0_18_0_13" = callPackage @@ -113182,7 +113124,7 @@ self: { testToolDepends = [ git ]; description = "Low-level bindings to libgit2"; license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; + }) {inherit (pkgs) git; inherit (pkgs) openssl;}; "hlibsass_0_1_4_0" = callPackage ({ mkDerivation, base, hspec, libsass }: @@ -113470,7 +113412,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hlint" = callPackage + "hlint_1_9_32" = callPackage ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs , directory, extra, filepath, haskell-src-exts, hscolour, process , refact, transformers, uniplate @@ -113490,6 +113432,29 @@ self: { homepage = "https://github.com/ndmitchell/hlint#readme"; description = "Source code suggestions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hlint" = callPackage + ({ mkDerivation, ansi-terminal, base, cmdargs, containers, cpphs + , directory, extra, filepath, haskell-src-exts, hscolour, process + , refact, transformers, uniplate + }: + mkDerivation { + pname = "hlint"; + version = "1.9.33"; + sha256 = "baa68124045097a4f1017bf54921687b53c46ecbf667907896d30f477972b5d1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ansi-terminal base cmdargs containers cpphs directory extra + filepath haskell-src-exts hscolour process refact transformers + uniplate + ]; + executableHaskellDepends = [ base ]; + homepage = "https://github.com/ndmitchell/hlint#readme"; + description = "Source code suggestions"; + license = stdenv.lib.licenses.bsd3; }) {}; "hlogger" = callPackage @@ -113502,7 +113467,6 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hlongurl" = callPackage @@ -113566,7 +113530,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hly"; description = "Haskell LilyPond"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmark" = callPackage @@ -113586,7 +113549,6 @@ self: { homepage = "http://bitcheese.net/wiki/code/hmark"; description = "A tool and library for Markov chains based text generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmarkup" = callPackage @@ -113600,7 +113562,6 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix_0_16_1_0" = callPackage @@ -113729,7 +113690,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openblasCompat;}; - "hmatrix" = callPackage + "hmatrix_0_17_0_1" = callPackage ({ mkDerivation, array, base, binary, bytestring, deepseq , openblasCompat, random, split, storable-complex, vector }: @@ -113747,6 +113708,27 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Numeric Linear Algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) openblasCompat;}; + + "hmatrix" = callPackage + ({ mkDerivation, array, base, binary, bytestring, deepseq + , openblasCompat, random, split, storable-complex, vector + }: + mkDerivation { + pname = "hmatrix"; + version = "0.17.0.2"; + sha256 = "28ed9558064917636db095ef76e10b59ae935e3ee68c96ff0d27f9e405ccfab9"; + configureFlags = [ "-fopenblas" ]; + libraryHaskellDepends = [ + array base binary bytestring deepseq random split storable-complex + vector + ]; + librarySystemDepends = [ openblasCompat ]; + preConfigure = "sed -i hmatrix.cabal -e 's@/usr/@/dont/hardcode/paths/@'"; + homepage = "https://github.com/albertoruiz/hmatrix"; + description = "Numeric Linear Algebra"; + license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) openblasCompat;}; "hmatrix-banded" = callPackage @@ -113761,7 +113743,6 @@ self: { homepage = "http://hub.darcs.net/thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -113910,7 +113891,6 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-mmap"; description = "Memory map Vector from disk into memory efficiently"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-nipals" = callPackage @@ -113925,7 +113905,6 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-quadprogpp" = callPackage @@ -113936,9 +113915,9 @@ self: { sha256 = "fd11ea7d5dca8e703a5b0b80832883f27d2dd3941d19171b0f05a163d68b31fb"; libraryHaskellDepends = [ base hmatrix vector ]; librarySystemDepends = [ QuadProgpp ]; + jailbreak = true; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {QuadProgpp = null;}; "hmatrix-repa" = callPackage @@ -113951,7 +113930,6 @@ self: { homepage = "http://code.haskell.org/hmatrix-repa"; description = "Adaptors for interoperability between hmatrix and repa"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-special" = callPackage @@ -113964,7 +113942,6 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-static" = callPackage @@ -113982,7 +113959,6 @@ self: { homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-svdlibc" = callPackage @@ -113998,7 +113974,6 @@ self: { homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-syntax" = callPackage @@ -114016,7 +113991,6 @@ self: { homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-tests" = callPackage @@ -114050,7 +114024,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hmeap"; description = "Haskell Meapsoft Parser"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmeap-utils" = callPackage @@ -114071,7 +114044,6 @@ self: { homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmemdb" = callPackage @@ -114101,7 +114073,6 @@ self: { jailbreak = true; description = "CLI fuzzy finder and launcher"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmidi" = callPackage @@ -114114,7 +114085,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Binding to the OS level MIDI services"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hmk" = callPackage @@ -114135,7 +114105,6 @@ self: { homepage = "http://www.github.com/mboes/hmk"; description = "A make alternative based on Plan9's mk"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm" = callPackage @@ -114152,7 +114121,6 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -114172,7 +114140,6 @@ self: { homepage = "http://hub.darcs.net/thielema/hmm-hmatrix"; description = "Hidden Markov Models using HMatrix primitives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmp3" = callPackage @@ -114194,7 +114161,6 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "hmpfr" = callPackage @@ -114208,7 +114174,6 @@ self: { homepage = "http://code.google.com/p/hmpfr/"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mpfr;}; "hmt" = callPackage @@ -114265,7 +114230,6 @@ self: { jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnetcdf" = callPackage @@ -114297,7 +114261,6 @@ self: { homepage = "https://github.com/ian-ross/hnetcdf"; description = "Haskell NetCDF library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -114341,7 +114304,6 @@ self: { homepage = "http://github.com/alpmestan/hnn"; description = "A reasonably fast and simple neural network library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hnop" = callPackage @@ -114389,7 +114351,6 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoauth2_0_4_3" = callPackage @@ -114558,7 +114519,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hoauth2" = callPackage + "hoauth2_0_5_3" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, http-conduit , http-types, text, wai, warp }: @@ -114578,9 +114539,10 @@ self: { homepage = "https://github.com/freizl/hoauth2"; description = "Haskell OAuth2 authentication client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hoauth2_0_5_3_1" = callPackage + "hoauth2" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, http-conduit , http-types, text, wai, warp }: @@ -114600,7 +114562,6 @@ self: { homepage = "https://github.com/freizl/hoauth2"; description = "Haskell OAuth2 authentication client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hob" = callPackage @@ -114629,7 +114590,6 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbes" = callPackage @@ -114649,7 +114609,6 @@ self: { homepage = "http://github.com/jhickner/hobbes"; description = "A small file watcher for OSX"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hobbits" = callPackage @@ -114667,7 +114626,6 @@ self: { jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoe" = callPackage @@ -114699,7 +114657,6 @@ self: { jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hog" = callPackage @@ -114718,7 +114675,6 @@ self: { jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogg" = callPackage @@ -114737,7 +114693,6 @@ self: { homepage = "http://www.kfish.org/software/hogg/"; description = "Library and tools to manipulate the Ogg container format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hogre" = callPackage @@ -114754,7 +114709,6 @@ self: { homepage = "http://anttisalonen.github.com/hogre"; description = "Haskell binding to a subset of OGRE"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -114770,7 +114724,6 @@ self: { homepage = "http://github.com/anttisalonen/hogre-examples"; description = "Examples for using Hogre"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {OgreMain = null;}; "hois" = callPackage @@ -114787,7 +114740,6 @@ self: { jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "hoist-error" = callPackage @@ -114824,7 +114776,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "holey-format" = callPackage @@ -114952,7 +114903,6 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage" = callPackage @@ -114966,7 +114916,6 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -114992,8 +114941,8 @@ self: { }: mkDerivation { pname = "homplexity"; - version = "0.4.3.1"; - sha256 = "03c4e31049b81cb2d4a531d76b520f2c8e84a24ebcea7a07da296f0f6e8f117a"; + version = "0.4.3.2"; + sha256 = "b00c281e2598ec8a1fbf5fadac5b689a690af17c4bfe7329694281999ae9d554"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -115002,11 +114951,9 @@ self: { ]; executableToolDepends = [ happy ]; testHaskellDepends = [ base haskell-src-exts uniplate ]; - jailbreak = true; homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "honi" = callPackage @@ -115023,7 +114970,6 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -115036,7 +114982,6 @@ self: { homepage = "https://lambda.xyz/honk/"; description = "Cross-platform interface to the PC speaker"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hoobuddy" = callPackage @@ -115082,7 +115027,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hood2" = callPackage @@ -115113,7 +115057,6 @@ self: { jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle" = callPackage @@ -115134,7 +115077,6 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Executable for hoodle"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-builder" = callPackage @@ -115151,7 +115093,6 @@ self: { ]; description = "text builder for hoodle file format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-core" = callPackage @@ -115185,7 +115126,6 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Core library for hoodle"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -115212,7 +115152,6 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "extra hoodle tools"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-parser" = callPackage @@ -115231,7 +115170,6 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Hoodle file parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-publish" = callPackage @@ -115259,7 +115197,6 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "publish hoodle files as a static web site"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-render" = callPackage @@ -115280,7 +115217,6 @@ self: { ]; description = "Hoodle file renderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -115296,7 +115232,6 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoogle_4_2_36" = callPackage @@ -115597,6 +115532,7 @@ self: { base bytestring Cabal containers directory errors filepath hoogle optparse-applicative process temporary transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/hoogle-index"; description = "Easily generate Hoogle indices for installed packages"; license = stdenv.lib.licenses.bsd3; @@ -115609,6 +115545,7 @@ self: { version = "0.1.1.0"; sha256 = "ab685c202841e2d35d225b151786133309af38694818ac7aefc84e44ebc58d3f"; libraryHaskellDepends = [ base directory process text ]; + jailbreak = true; homepage = "https://github.com/ibotty/hooks-dir"; description = "run executables in a directory as hooks"; license = stdenv.lib.licenses.bsd3; @@ -115656,7 +115593,6 @@ self: { homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopencc" = callPackage @@ -115675,7 +115611,6 @@ self: { homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {opencc = null;}; "hopencl" = callPackage @@ -115696,7 +115631,6 @@ self: { homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {OpenCL = null;}; "hopenpgp-tools_0_13" = callPackage @@ -115924,7 +115858,6 @@ self: { homepage = "https://github.com/imperialhopfield/hopfield"; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -115975,6 +115908,7 @@ self: { libraryHaskellDepends = [ base containers directory filepath haskell-src mtl ]; + jailbreak = true; homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Code generator"; license = stdenv.lib.licenses.agpl3; @@ -115987,6 +115921,7 @@ self: { version = "0.1.0"; sha256 = "b0f7721ef01bb4f1b4b7e9debbb6c18d0ec06eae058ef3c7160f64a026e05ddb"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Runtime support"; license = stdenv.lib.licenses.asl20; @@ -116001,6 +115936,7 @@ self: { libraryHaskellDepends = [ base filepath haskell-src hoppy-generator ]; + jailbreak = true; homepage = "http://khumba.net/projects/hoppy"; description = "C++ FFI generator - Standard library bindings"; license = stdenv.lib.licenses.asl20; @@ -116031,7 +115967,6 @@ self: { homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -116051,7 +115986,6 @@ self: { homepage = "http://github.com/valis/hoq"; description = "A language based on homotopy type theory with an interval type"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "horizon" = callPackage @@ -116167,7 +116101,6 @@ self: { homepage = "https://github.com/yihuang/hosts-server"; description = "An dns server which is extremely easy to config"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hothasktags" = callPackage @@ -116187,7 +116120,6 @@ self: { homepage = "http://github.com/luqui/hothasktags"; description = "Generates ctags for Haskell, incorporating import lists and qualified imports"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hotswap" = callPackage @@ -116288,7 +116220,6 @@ self: { homepage = "https://gitlab.com/doshitan/hourglass-fuzzy-parsing"; description = "A small library for parsing more human friendly date/time formats"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "houseman" = callPackage @@ -116336,7 +116267,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Heap profiling helper library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2any-graph" = callPackage @@ -116359,7 +116289,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "hp2any-manager" = callPackage @@ -116380,7 +116309,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hp2html" = callPackage @@ -116460,7 +116388,6 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpaco-lib" = callPackage @@ -116480,7 +116407,6 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpage" = callPackage @@ -116503,7 +116429,6 @@ self: { homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpapi" = callPackage @@ -116516,7 +116441,6 @@ self: { librarySystemDepends = [ papi ]; description = "Binding for the PAPI library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {papi = null;}; "hpaste" = callPackage @@ -116546,7 +116470,6 @@ self: { homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpasteit" = callPackage @@ -116568,7 +116491,6 @@ self: { homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpath" = callPackage @@ -116578,15 +116500,15 @@ self: { }: mkDerivation { pname = "hpath"; - version = "0.7.1"; - sha256 = "33396f57805c65daa77ceb4bd19d73f9a7b0c6881451468f8589ce4ac71c990a"; + version = "0.7.3"; + sha256 = "0ad9168190beae49910b056da29b9d3b4ca15378219ee30b941d956d47fe8dbb"; libraryHaskellDepends = [ base bytestring deepseq exceptions hspec simple-sendfile unix unix-bytestring utf8-string word8 ]; testHaskellDepends = [ base bytestring doctest hspec HUnit process QuickCheck unix - utf8-string + unix-bytestring utf8-string ]; description = "Support for well-typed paths"; license = stdenv.lib.licenses.gpl2; @@ -116716,7 +116638,6 @@ self: { ]; description = "Tracer with AJAX interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpdft" = callPackage @@ -116731,11 +116652,44 @@ self: { attoparsec base binary bytestring containers directory file-embed parsec text utf8-string zlib ]; + jailbreak = true; homepage = "https://github.com/k16shikano/hpdft"; description = "A tool for looking through PDF file using Haskell"; license = stdenv.lib.licenses.mit; }) {}; + "hpio" = callPackage + ({ mkDerivation, async, base, base-compat, bytestring, containers + , directory, doctest, exceptions, filepath, hlint, hspec, mtl + , mtl-compat, optparse-applicative, QuickCheck, text, transformers + , transformers-compat, unix, unix-bytestring + }: + mkDerivation { + pname = "hpio"; + version = "0.8.0.0"; + sha256 = "f48c048641677e6e4357032089c3abfb1c6005fc2d0ba6a69c84cc435a5723cc"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat bytestring containers directory exceptions + filepath mtl mtl-compat QuickCheck text transformers + transformers-compat unix unix-bytestring + ]; + executableHaskellDepends = [ + async base base-compat exceptions mtl mtl-compat + optparse-applicative transformers transformers-compat + ]; + testHaskellDepends = [ + async base base-compat bytestring containers directory doctest + exceptions filepath hlint hspec mtl mtl-compat QuickCheck text + transformers transformers-compat unix unix-bytestring + ]; + doCheck = false; + homepage = "https://github.com/dhess/hpio"; + description = "Monads for GPIO in Haskell"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "hplayground" = callPackage ({ mkDerivation, base, containers, data-default, haste-compiler , haste-perch, monads-tf, transformers @@ -116765,7 +116719,6 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpodder" = callPackage @@ -116787,7 +116740,6 @@ self: { homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpp" = callPackage @@ -116837,7 +116789,6 @@ self: { homepage = "https://github.com/scrive/hpqtypes"; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) postgresql;}; "hprotoc_2_1_4" = callPackage @@ -117020,7 +116971,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc" = callPackage + "hprotoc_2_2_0" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string @@ -117043,20 +116994,22 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hprotoc_2_3_1" = callPackage + "hprotoc" = callPackage ({ mkDerivation, alex, array, base, binary, bytestring, containers , directory, filepath, haskell-src-exts, mtl, parsec , protocol-buffers, protocol-buffers-descriptor, utf8-string }: mkDerivation { pname = "hprotoc"; - version = "2.3.1"; - sha256 = "e9d20e129681650635f2747af5751cea23886bcd33a9df0b15cf0c053602a2b8"; + version = "2.4.0"; + sha256 = "6e4aedf9a421f01a22ca7a2f50b064917b4ef895d76174f59bc44ca1cc6f2f73"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -117071,11 +117024,9 @@ self: { protocol-buffers-descriptor utf8-string ]; executableToolDepends = [ alex ]; - jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hprotoc-fork" = callPackage @@ -117106,7 +117057,6 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps" = callPackage @@ -117140,7 +117090,6 @@ self: { homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hps-kmeans" = callPackage @@ -117199,7 +117148,6 @@ self: { homepage = "http://sourceforge.net/projects/hpylos/"; description = "AI of Pylos game with GLUT interface"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpyrg" = callPackage @@ -117239,7 +117187,6 @@ self: { homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hquery" = callPackage @@ -117270,7 +117217,6 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hreader" = callPackage @@ -117312,8 +117258,8 @@ self: { }: mkDerivation { pname = "hruby"; - version = "0.3.3"; - sha256 = "3a13abdd06e07ef2705740aad27d8d23eeabb221155042c61a2341a141e15f94"; + version = "0.3.4.1"; + sha256 = "97407042cf3dc2a7c9310c4040a5ab599e03709ad70cc5d2bcfcf866a6120be6"; libraryHaskellDepends = [ aeson attoparsec base bytestring scientific stm text unordered-containers vector @@ -117324,7 +117270,6 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ruby;}; "hs-GeoIP" = callPackage @@ -117338,7 +117283,6 @@ self: { homepage = "http://github.com/ozataman/hs-GeoIP"; description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {GeoIP = null;}; "hs-bibutils_5_0" = callPackage @@ -117385,7 +117329,6 @@ self: { homepage = "https://github.com/tsuraan/hs-blake2"; description = "A cryptohash-inspired library for blake2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libb2;}; "hs-captcha" = callPackage @@ -117427,7 +117370,6 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-cdb" = callPackage @@ -117444,7 +117386,6 @@ self: { homepage = "http://github.com/adamsmasher/hs-cdb"; description = "A library for reading CDB (Constant Database) files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-dotnet" = callPackage @@ -117457,7 +117398,6 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -117479,7 +117419,6 @@ self: { homepage = "https://github.com/myfreeweb/hs-duktape"; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-excelx" = callPackage @@ -117509,7 +117448,6 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -117523,8 +117461,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; description = "Binding to GUI library FLTK"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {fltk = null; fltk_images = null;}; + }) {inherit (pkgs) fltk; fltk_images = null;}; "hs-gchart" = callPackage ({ mkDerivation, base, mtl }: @@ -117536,7 +117473,6 @@ self: { homepage = "http://github.com/deepakjois/hs-gchart"; description = "Haskell wrapper for the Google Chart API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gen-iface" = callPackage @@ -117555,7 +117491,6 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-gizapp" = callPackage @@ -117603,7 +117538,6 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-json-rpc" = callPackage @@ -117618,7 +117552,6 @@ self: { homepage = "http://patch-tag.com/r/Azel/hs-json-rpc"; description = "JSON-RPC client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-logo" = callPackage @@ -117646,7 +117579,6 @@ self: { homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-mesos" = callPackage @@ -117671,7 +117603,6 @@ self: { tasty-quickcheck ]; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -117686,7 +117617,6 @@ self: { jailbreak = true; description = "Name generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-pgms" = callPackage @@ -117705,7 +117635,6 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-php-session" = callPackage @@ -117729,6 +117658,7 @@ self: { revision = "1"; editedCabalFile = "9337acf593d6f7e1d54f81886cb3736001a127e3b75ba01bd97a99d77565f784"; libraryHaskellDepends = [ base data-default-class text ]; + jailbreak = true; homepage = "https://github.com/trskop/hs-pkg-config"; description = "Create pkg-config configuration files"; license = stdenv.lib.licenses.bsd3; @@ -117754,7 +117684,6 @@ self: { homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-re" = callPackage @@ -117804,7 +117733,6 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-twitterarchiver" = callPackage @@ -117819,7 +117747,6 @@ self: { homepage = "https://github.com/deepakjois/hs-twitterarchiver"; description = "Commandline Twitter feed archiver"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-vcard" = callPackage @@ -117832,7 +117759,6 @@ self: { homepage = "http://qrcard.us/"; description = "Implements the RFC 2426 vCard 3.0 spec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2048" = callPackage @@ -117873,7 +117799,6 @@ self: { homepage = "http://www.xanxys.net/hs2bf/"; description = "Haskell to Brainfuck compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2dot" = callPackage @@ -117893,7 +117818,6 @@ self: { homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsConfigure" = callPackage @@ -117924,7 +117848,6 @@ self: { jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsXenCtrl" = callPackage @@ -117939,7 +117862,6 @@ self: { homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "hsass_0_3_0" = callPackage @@ -118032,7 +117954,6 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsbencher" = callPackage @@ -118053,6 +117974,7 @@ self: { base bytestring containers directory HUnit test-framework test-framework-hunit text time ]; + jailbreak = true; description = "Launch and gather data from Haskell and non-Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118071,6 +117993,7 @@ self: { hsbencher HTTP http-conduit http-types json mtl network resourcet time ]; + jailbreak = true; description = "Backend for uploading benchmark data to CodeSpeed"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -118094,9 +118017,9 @@ self: { base bytestring containers criterion csv handa-gdata hsbencher mtl split statistics text ]; + jailbreak = true; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc2hs" = callPackage @@ -118112,7 +118035,6 @@ self: { ]; description = "A preprocessor that helps with writing Haskell bindings to C code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3" = callPackage @@ -118147,7 +118069,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-auditor"; description = "Haskell SuperCollider Auditor"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-cairo" = callPackage @@ -118161,7 +118082,6 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-data" = callPackage @@ -118179,7 +118099,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-data"; description = "haskell supercollider data"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-db" = callPackage @@ -118223,7 +118142,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-forth"; description = "FORTH SUPERCOLLIDER"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-graphs" = callPackage @@ -118255,7 +118173,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lang" = callPackage @@ -118276,7 +118193,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lang"; description = "Haskell SuperCollider Language"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-lisp" = callPackage @@ -118296,7 +118212,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lisp"; description = "LISP SUPERCOLLIDER"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-plot" = callPackage @@ -118314,7 +118229,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-plot"; description = "Haskell SuperCollider Plotting"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-process" = callPackage @@ -118349,7 +118263,6 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-rw" = callPackage @@ -118397,7 +118310,6 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -118426,7 +118338,6 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-sf-hsndfile"; description = "Haskell SuperCollider SoundFile"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsc3-unsafe" = callPackage @@ -118440,7 +118351,6 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-utils" = callPackage @@ -118477,7 +118387,6 @@ self: { jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -118492,10 +118401,10 @@ self: { base bytestring cassandra-thrift containers mtl network old-time Thrift ]; + jailbreak = true; homepage = "https://github.com/necrobious/hscassandra"; description = "cassandra database interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscd" = callPackage @@ -118526,7 +118435,6 @@ self: { homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hscolour_1_20_3" = callPackage @@ -118716,9 +118624,9 @@ self: { "hsdev" = callPackage ({ mkDerivation, aeson, aeson-lens, aeson-pretty, array, async - , attoparsec, base, bin-package-db, bytestring, Cabal, containers - , cpphs, data-default, deepseq, directory, exceptions, filepath - , fsnotify, ghc, ghc-paths, ghc-syb-utils, haddock-api + , attoparsec, base, bytestring, Cabal, containers, cpphs + , data-default, deepseq, directory, exceptions, filepath, fsnotify + , ghc, ghc-boot, ghc-paths, ghc-syb-utils, haddock-api , haskell-src-exts, hdocs, hformat, hlint, hspec, HTTP, lens , lifted-base, monad-control, monad-loops, mtl, network , optparse-applicative, process, regex-pcre-builtin, scientific @@ -118733,14 +118641,14 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty array async attoparsec base bin-package-db - bytestring Cabal containers cpphs data-default deepseq directory - exceptions filepath fsnotify ghc ghc-paths ghc-syb-utils - haddock-api haskell-src-exts hdocs hformat hlint HTTP lens - lifted-base monad-control monad-loops mtl network - optparse-applicative process regex-pcre-builtin scientific - simple-log syb template-haskell text text-region time transformers - transformers-base uniplate unix unordered-containers vector + aeson aeson-pretty array async attoparsec base bytestring Cabal + containers cpphs data-default deepseq directory exceptions filepath + fsnotify ghc ghc-boot ghc-paths ghc-syb-utils haddock-api + haskell-src-exts hdocs hformat hlint HTTP lens lifted-base + monad-control monad-loops mtl network optparse-applicative process + regex-pcre-builtin scientific simple-log syb template-haskell text + text-region time transformers transformers-base uniplate unix + unordered-containers vector ]; executableHaskellDepends = [ aeson aeson-pretty base bytestring containers data-default deepseq @@ -118784,7 +118692,6 @@ self: { homepage = "http://neugierig.org/software/darcs/hsdip/"; description = "hsdip - a Diplomacy parser/renderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdns" = callPackage @@ -118815,7 +118722,6 @@ self: { homepage = "https://github.com/bazqux/hsdns-cache"; description = "Caching asynchronous DNS resolver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hse-cpp" = callPackage @@ -118989,6 +118895,7 @@ self: { testHaskellDepends = [ base binary bytestring containers hspec HUnit iconv text time ]; + jailbreak = true; homepage = "https://github.com/emmanueltouzery/hsexif"; description = "EXIF handling library in pure Haskell"; license = stdenv.lib.licenses.bsd3; @@ -119024,7 +118931,6 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A small and ugly library that emulates the output of the puppet facter program"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -119069,7 +118975,6 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -119083,7 +118988,6 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -119095,7 +118999,6 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsgtd" = callPackage @@ -119190,7 +119093,6 @@ self: { homepage = "http://code.haskell.org/hsignal"; description = "Signal processing and EEG data analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) blas; inherit (pkgs) gsl; inherit (pkgs) liblapack;}; @@ -119213,18 +119115,18 @@ self: { "hsimport" = callPackage ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , filepath, haskell-src-exts, lens, mtl, split, tasty, tasty-golden - , text + , filepath, haskell-src-exts, ilist, microlens, mtl, split, tasty + , tasty-golden, text }: mkDerivation { pname = "hsimport"; - version = "0.7"; - sha256 = "54d59d8d182f8a575f540def41c9184f530b6e2ed73e05d27f82c4c5de261857"; + version = "0.7.1"; + sha256 = "f4029909e893376e4c3d715d45537d52dbf0b90eeca2dcf9c33f3440919aba6b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts lens mtl - split text + attoparsec base cmdargs directory dyre haskell-src-exts ilist + microlens mtl split text ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ @@ -119247,6 +119149,7 @@ self: { base bytestring containers HUnit mtl parsec QuickCheck tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; description = "Package for user configuration files (INI)"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -119260,7 +119163,6 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslackbuilder" = callPackage @@ -119277,7 +119179,6 @@ self: { homepage = "http://code.haskell.org/~arossato/hslackbuilder"; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslibsvm" = callPackage @@ -119290,7 +119191,6 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {svm = null;}; "hslinks" = callPackage @@ -119348,7 +119248,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hslogger" = callPackage + "hslogger_1_2_9" = callPackage ({ mkDerivation, base, containers, directory, mtl, network , old-locale, process, time, unix }: @@ -119364,6 +119264,24 @@ self: { homepage = "http://software.complete.org/hslogger"; description = "Versatile logging framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hslogger" = callPackage + ({ mkDerivation, base, containers, directory, HUnit, mtl, network + , old-locale, process, time, unix + }: + mkDerivation { + pname = "hslogger"; + version = "1.2.10"; + sha256 = "d7ca6e94a4aacb47a8dc30e3960ab8deff482d2ec9dca9a87b225e03e97e452b"; + libraryHaskellDepends = [ + base containers directory mtl network old-locale process time unix + ]; + testHaskellDepends = [ base HUnit ]; + homepage = "http://software.complete.org/hslogger"; + description = "Versatile logging framework"; + license = stdenv.lib.licenses.bsd3; }) {}; "hslogger-reader" = callPackage @@ -119514,7 +119432,6 @@ self: { homepage = "https://github.com/vincentg/hsmagick"; description = "FFI bindings for the GraphicsMagick library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {GraphicsMagick = null; inherit (pkgs) bzip2; freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -119548,7 +119465,6 @@ self: { homepage = "http://code.google.com/p/hsmtpclient/"; description = "Simple SMTP Client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile" = callPackage @@ -119563,7 +119479,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile;}; "hsndfile-storablevector" = callPackage @@ -119576,7 +119491,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.StorableVector interface)"; license = stdenv.lib.licenses.lgpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsndfile-vector" = callPackage @@ -119589,7 +119503,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.Vector interface)"; license = stdenv.lib.licenses.lgpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsnock" = callPackage @@ -119611,7 +119524,6 @@ self: { homepage = "https://github.com/mrdomino/hsnock/"; description = "Nock 5K interpreter"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnoise" = callPackage @@ -119637,7 +119549,6 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsnsq" = callPackage @@ -119674,7 +119585,6 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; description = "Libraries to use SNTP protocol and small client/server implementations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsoptions" = callPackage @@ -119701,7 +119611,6 @@ self: { homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsp" = callPackage @@ -119726,7 +119635,6 @@ self: { homepage = "http://code.google.com/p/hsp"; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsparklines" = callPackage @@ -119761,7 +119669,6 @@ self: { homepage = "https://github.com/robstewart57/hsparql"; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspear" = callPackage @@ -119778,7 +119685,6 @@ self: { homepage = "http://rd.slavepianos.org/?t=hspear"; description = "Haskell Spear Parser"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec_2_1_2" = callPackage @@ -120272,6 +120178,7 @@ self: { HUnit process QuickCheck quickcheck-io random setenv silently tf-random time transformers ]; + jailbreak = true; homepage = "http://hspec.github.io/"; description = "A Testing Framework for Haskell"; license = stdenv.lib.licenses.mit; @@ -120536,6 +120443,7 @@ self: { revision = "1"; editedCabalFile = "80e2d70b0dbb2b017d8af3ee30cc491e0b76fe7e8efb2706cda32060215a19a8"; libraryHaskellDepends = [ base HUnit ]; + jailbreak = true; homepage = "https://github.com/sol/hspec-expectations#readme"; description = "Catchy combinators for HUnit"; license = stdenv.lib.licenses.mit; @@ -120633,6 +120541,7 @@ self: { ansi-terminal base Diff hscolour HUnit nicify-lib text ]; testHaskellDepends = [ aeson base hspec HUnit text ]; + doCheck = false; homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; description = "Catchy combinators for HUnit"; license = stdenv.lib.licenses.mit; @@ -120649,7 +120558,6 @@ self: { jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-jenkins" = callPackage @@ -120686,13 +120594,14 @@ self: { editedCabalFile = "19d6092404bbc86a39aa926e96a2809afcfb418fc8914342b4ee5f1d9e7971a0"; libraryHaskellDepends = [ base hspec-expectations megaparsec ]; testHaskellDepends = [ base hspec hspec-expectations megaparsec ]; + jailbreak = true; homepage = "https://github.com/mrkkrp/hspec-megaparsec"; description = "Utility functions for testing Megaparsec parsers with Hspec"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-megaparsec" = callPackage + "hspec-megaparsec_0_1_1" = callPackage ({ mkDerivation, base, hspec, hspec-expectations, megaparsec }: mkDerivation { pname = "hspec-megaparsec"; @@ -120702,30 +120611,30 @@ self: { editedCabalFile = "b5268defe9e8230440bef693c63fb7a22e1ff53b39373a040fb511714056cfb8"; libraryHaskellDepends = [ base hspec-expectations megaparsec ]; testHaskellDepends = [ base hspec hspec-expectations megaparsec ]; + jailbreak = true; homepage = "https://github.com/mrkkrp/hspec-megaparsec"; description = "Utility functions for testing Megaparsec parsers with Hspec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hspec-megaparsec_0_2_0" = callPackage + "hspec-megaparsec" = callPackage ({ mkDerivation, base, containers, hspec, hspec-expectations - , megaparsec, semigroups + , megaparsec }: mkDerivation { pname = "hspec-megaparsec"; version = "0.2.0"; sha256 = "586ae04377a4d98431e0a639f0ce7d8adc5e9240036df63a22643c23c66eb565"; libraryHaskellDepends = [ - base containers hspec-expectations megaparsec semigroups + base containers hspec-expectations megaparsec ]; testHaskellDepends = [ - base containers hspec hspec-expectations megaparsec semigroups + base containers hspec hspec-expectations megaparsec ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/hspec-megaparsec"; description = "Utility functions for testing Megaparsec parsers with Hspec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-meta_2_0_0" = callPackage @@ -120848,6 +120757,7 @@ self: { libraryHaskellDepends = [ base hspec-core monad-control transformers transformers-base ]; + jailbreak = true; description = "Orphan instances of MonadBase and MonadBaseControl for SpecM"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -120881,6 +120791,7 @@ self: { executableHaskellDepends = [ base directory filepath process projectroot ]; + jailbreak = true; homepage = "https://github.com/yamadapc/haskell-hspec-setup"; description = "Add an hspec test-suite in one command"; license = stdenv.lib.licenses.mit; @@ -120895,7 +120806,6 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-slow" = callPackage @@ -121011,6 +120921,7 @@ self: { HandsomeSoup hspec hspec-core hxt lens mtl snap snap-core text transformers ]; + jailbreak = true; homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -121332,7 +121243,6 @@ self: { ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspresent" = callPackage @@ -121348,7 +121258,6 @@ self: { jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsprocess" = callPackage @@ -121374,7 +121283,6 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsql" = callPackage @@ -121400,7 +121308,6 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -121458,7 +121365,6 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {qt5 = null;}; "hsqml-datamodel" = callPackage @@ -121469,10 +121375,10 @@ self: { sha256 = "fbab7cc84a7a8938438b35d3c59f75dedf5a66b46719f044a7c869e227f7dcec"; libraryHaskellDepends = [ base hsqml template-haskell text ]; libraryPkgconfigDepends = [ qt5 ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; description = "HsQML (Qt5) data model"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {qt5 = null;}; "hsqml-datamodel-vinyl" = callPackage @@ -121490,7 +121396,6 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-demo-morris" = callPackage @@ -121509,7 +121414,6 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "hsqml-demo-notes" = callPackage @@ -121525,10 +121429,10 @@ self: { executableHaskellDepends = [ base containers hsqml sqlite-simple text transformers ]; + jailbreak = true; homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Sticky notes example program implemented in HsQML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsqml-demo-samples" = callPackage @@ -121544,7 +121448,6 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsqml-morris" = callPackage @@ -121564,7 +121467,6 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsreadability" = callPackage @@ -121603,7 +121505,6 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {seccomp = null;}; "hsshellscript" = callPackage @@ -121617,7 +121518,6 @@ self: { homepage = "http://www.volker-wysk.de/hsshellscript/"; description = "Haskell for Unix shell scripting tasks"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssourceinfo" = callPackage @@ -121633,7 +121533,6 @@ self: { ]; description = "get haskell source code info"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hssqlppp" = callPackage @@ -121717,6 +121616,7 @@ self: { version = "0.3.0.1"; sha256 = "3045b303073165a1a90bb369cd530012b625e3b7e4e815c14af9b4beecfa19a8"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/haas/hstats"; description = "Statistical Computing in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -121751,7 +121651,6 @@ self: { homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstidy" = callPackage @@ -121766,7 +121665,6 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy"; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstorchat" = callPackage @@ -121795,7 +121693,6 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstradeking" = callPackage @@ -121821,7 +121718,6 @@ self: { jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstyle" = callPackage @@ -121840,28 +121736,26 @@ self: { jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hstzaar" = callPackage - ({ mkDerivation, base, cairo, containers, directory, filepath - , glade, gtk, parallel, QuickCheck, random, xml + ({ mkDerivation, array, base, cairo, containers, directory + , filepath, glade, gtk, hashable, mtl, parallel, QuickCheck, random + , unordered-containers, vector, xml }: mkDerivation { pname = "hstzaar"; - version = "0.9.3"; - sha256 = "55cc8f5f266c98e5d7356a1407c5de8e6da3f7154e5b9e83b42bb5528f2d4ec2"; + version = "0.9.4"; + sha256 = "a1f468ebb366f25a5d29263b6123803bc310b5abd9d87634e03922d09021d171"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base cairo containers directory filepath glade gtk parallel - QuickCheck random xml + array base cairo containers directory filepath glade gtk hashable + mtl parallel QuickCheck random unordered-containers vector xml ]; - jailbreak = true; homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsubconvert" = callPackage @@ -121884,7 +121778,6 @@ self: { homepage = "https://github.com/jwiegley/hsubconvert"; description = "One-time, faithful conversion of Subversion repositories to Git"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsverilog" = callPackage @@ -121916,7 +121809,6 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -121935,7 +121827,6 @@ self: { homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-jmacro" = callPackage @@ -121962,7 +121853,6 @@ self: { homepage = "http://code.google.com/hsp"; description = "XHTML utilities to use together with HSX"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -121979,6 +121869,7 @@ self: { base bytestring haskell-src-exts haskell-src-meta mtl template-haskell utf8-string ]; + jailbreak = true; homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; @@ -121994,7 +121885,6 @@ self: { homepage = "http://github.com/aycanirican/hsyscall"; description = "FFI to syscalls"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsyslog" = callPackage @@ -122011,6 +121901,21 @@ self: { maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; + "hsyslog_3" = callPackage + ({ mkDerivation, base, bytestring, QuickCheck }: + mkDerivation { + pname = "hsyslog"; + version = "3"; + sha256 = "05f4e76d2ce32fbe97a703963a7d1dc1809835c3d8ad8c7d3a1d580a6a34f060"; + libraryHaskellDepends = [ base bytestring ]; + testHaskellDepends = [ base bytestring QuickCheck ]; + 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 ]; + }) {}; + "hszephyr" = callPackage ({ mkDerivation, base, bytestring, com_err, mtl, time, zephyr }: mkDerivation { @@ -122021,7 +121926,6 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {com_err = null; zephyr = null;}; "htaglib_1_0_1" = callPackage @@ -122279,7 +122183,6 @@ self: { homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-kure" = callPackage @@ -122329,7 +122232,6 @@ self: { homepage = "http://github.com/kylcarte/html-rules/"; description = "Perform traversals of HTML structures using sets of rules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-tokenizer" = callPackage @@ -122440,7 +122342,6 @@ self: { homepage = "https://github.com/cies/htoml"; description = "Parser for TOML files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htrace" = callPackage @@ -122529,7 +122430,6 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-accept" = callPackage @@ -123583,7 +123483,6 @@ self: { homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-session" = callPackage @@ -123922,7 +123821,6 @@ self: { homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-conduit-downloader" = callPackage @@ -123943,7 +123841,6 @@ self: { homepage = "https://github.com/bazqux/http-conduit-downloader"; description = "HTTP downloader tailored for web-crawler needs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-date_0_0_4" = callPackage @@ -124073,7 +123970,6 @@ self: { homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-kinder" = callPackage @@ -124171,6 +124067,7 @@ self: { base bytestring Cabal cabal-test-quickcheck case-insensitive containers QuickCheck ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/zmthy/http-media"; description = "Processing HTTP Content-Type and Accept headers"; @@ -124238,7 +124135,6 @@ self: { jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-proxy" = callPackage @@ -124267,7 +124163,6 @@ self: { homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-querystring" = callPackage @@ -124446,7 +124341,6 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-streams" = callPackage @@ -124772,7 +124666,6 @@ self: { homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "https-everywhere-rules-raw" = callPackage @@ -124805,7 +124698,6 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htune" = callPackage @@ -124820,7 +124712,6 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "htzaar" = callPackage @@ -124836,7 +124727,6 @@ self: { homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hub" = callPackage @@ -124893,7 +124783,6 @@ self: { jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ruby;}; "huckleberry" = callPackage @@ -124934,7 +124823,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hulk" = callPackage @@ -124962,7 +124850,6 @@ self: { jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "human-readable-duration_0_1_0_0" = callPackage @@ -125039,7 +124926,6 @@ self: { jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunch" = callPackage @@ -125079,7 +124965,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hunit-dejafu" = callPackage + "hunit-dejafu_0_3_0_0" = callPackage ({ mkDerivation, base, dejafu, exceptions, HUnit }: mkDerivation { pname = "hunit-dejafu"; @@ -125089,6 +124975,19 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the HUnit test framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hunit-dejafu" = callPackage + ({ mkDerivation, base, dejafu, exceptions, HUnit }: + mkDerivation { + pname = "hunit-dejafu"; + version = "0.3.0.1"; + sha256 = "77fbda0fe00b5463fcc59fb3402169679294aab30fa8a57d57e667fefa64eb33"; + libraryHaskellDepends = [ base dejafu exceptions HUnit ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the HUnit test framework"; + license = stdenv.lib.licenses.mit; }) {}; "hunit-gui" = callPackage @@ -125105,7 +125004,6 @@ self: { homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-parsec" = callPackage @@ -125131,7 +125029,6 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunp" = callPackage @@ -125182,7 +125079,6 @@ self: { homepage = "http://github.com/hunt-framework/"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server" = callPackage @@ -125208,7 +125104,6 @@ self: { homepage = "http://github.com/hunt-framework"; description = "A search and indexing engine server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunt-server-cli" = callPackage @@ -125252,7 +125147,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "husk-scheme" = callPackage @@ -125312,7 +125206,6 @@ self: { homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hutton" = callPackage @@ -125334,7 +125227,6 @@ self: { jailbreak = true; description = "A program for the button on Reddit"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "huttons-razor" = callPackage @@ -125346,6 +125238,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base parsec parsec-numbers ]; + jailbreak = true; homepage = "https://github.com/steshaw/huttons-razor"; description = "Quick implemention of Hutton's Razor"; license = stdenv.lib.licenses.bsd2; @@ -125361,7 +125254,6 @@ self: { jailbreak = true; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hvect_0_2_0_0" = callPackage @@ -125461,7 +125353,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hw-json" = callPackage + "hw-json_0_0_0_2" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec @@ -125489,9 +125381,10 @@ self: { homepage = "http://github.com/haskell-works/hw-json#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hw-json_0_0_0_4" = callPackage + "hw-json" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec @@ -125520,7 +125413,6 @@ self: { homepage = "http://github.com/haskell-works/hw-json#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-parser" = callPackage @@ -125539,7 +125431,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hw-prim" = callPackage + "hw-prim_0_0_0_10" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck, random , vector }: @@ -125557,16 +125449,35 @@ self: { homepage = "http://github.com/haskell-works/hw-prim#readme"; description = "Primitive functions and data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hw-prim_0_0_1_1" = callPackage + "hw-prim" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck, random , vector }: mkDerivation { pname = "hw-prim"; - version = "0.0.1.1"; - sha256 = "73b82ac03c23d438560fbf28e476f0e8c55f1386cf53d68086591925255bee37"; + version = "0.0.3.0"; + sha256 = "fd1d0772972bbfb5cebb645934a55f458b7bb5044d2a9bcee766772a7a1c90d3"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring random vector ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "http://github.com/haskell-works/hw-prim#readme"; + description = "Primitive functions and data types"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "hw-prim_0_0_3_1" = callPackage + ({ mkDerivation, base, bytestring, hspec, QuickCheck, random + , vector + }: + mkDerivation { + pname = "hw-prim"; + version = "0.0.3.1"; + sha256 = "95ff89991fa2e1b0f4cb4a2d7a4bac15cf5a30224facd4b92292d8884600aff5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring random vector ]; @@ -125578,7 +125489,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hw-rankselect" = callPackage + "hw-rankselect_0_0_0_2" = callPackage ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector }: mkDerivation { @@ -125595,9 +125506,10 @@ self: { homepage = "http://github.com/haskell-works/hw-rankselect#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hw-rankselect_0_0_0_4" = callPackage + "hw-rankselect" = callPackage ({ mkDerivation, base, hspec, hw-bits, hw-prim, QuickCheck, vector }: mkDerivation { @@ -125614,7 +125526,6 @@ self: { homepage = "http://github.com/haskell-works/hw-rankselect#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-succinct" = callPackage @@ -125649,6 +125560,7 @@ self: { base bytestring haskeline http-conduit http-types mtl regex-compat unix ]; + jailbreak = true; description = "Initial version of firewall Authentication for IITK network"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -125728,7 +125640,6 @@ self: { jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwsl2" = callPackage @@ -125743,6 +125654,7 @@ self: { testHaskellDepends = [ base bytestring quickcheck-properties tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/srijs/hwsl2"; description = "Hashing with SL2"; license = stdenv.lib.licenses.mit; @@ -125802,7 +125714,6 @@ self: { jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxournal" = callPackage @@ -125830,7 +125741,6 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt_9_3_1_7" = callPackage @@ -125927,7 +125837,6 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -126053,7 +125962,6 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-http_9_1_5" = callPackage @@ -126098,6 +126006,7 @@ self: { revision = "1"; editedCabalFile = "89173b402c57c3ee7ee0eb2814e58d81e46cce5742a4f01684980b841359d2fb"; libraryHaskellDepends = [ base hxt mtl ]; + jailbreak = true; homepage = "https://github.com/silkapp/hxt-pickle-utils"; description = "Utility functions for using HXT picklers"; license = stdenv.lib.licenses.bsd3; @@ -126306,7 +126215,6 @@ self: { jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxweb" = callPackage @@ -126318,7 +126226,6 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyahtzee" = callPackage @@ -126371,7 +126278,6 @@ self: { homepage = "http://repos.mine.nu/davve/darcs/hybrid"; description = "A implementation of a type-checker for Lambda-H"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid-vectors_0_1_2" = callPackage @@ -126431,7 +126337,6 @@ self: { homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -126479,6 +126384,7 @@ self: { base bytestring containers mtl pretty text ]; testHaskellDepends = [ base Cabal containers mtl QuickCheck ]; + jailbreak = true; homepage = "https://www.github.com/ktvoelker/hydrogen"; description = "An alternate Prelude"; license = stdenv.lib.licenses.gpl3; @@ -126503,7 +126409,6 @@ self: { homepage = "https://scravy.de/hydrogen-cli/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-cli-args" = callPackage @@ -126521,7 +126426,6 @@ self: { homepage = "https://scravy.de/hydrogen-cli-args/"; description = "Hydrogen Command Line Arguments Parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-data" = callPackage @@ -126535,7 +126439,6 @@ self: { homepage = "https://scravy.de/hydrogen-data/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-multimap" = callPackage @@ -126563,7 +126466,6 @@ self: { homepage = "https://scravy.de/hydrogen-parsing/"; description = "Hydrogen Parsing Utilities"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude" = callPackage @@ -126584,7 +126486,6 @@ self: { homepage = "http://scravy.de/hydrogen-prelude/"; description = "Hydrogen Prelude"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -126598,7 +126499,6 @@ self: { homepage = "http://scravy.de/hydrogen-prelude-parsec/"; description = "Hydrogen Prelude /w Parsec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-syntax" = callPackage @@ -126617,7 +126517,6 @@ self: { homepage = "https://scravy.de/hydrogen-syntax/"; description = "Hydrogen Syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-util" = callPackage @@ -126634,7 +126533,6 @@ self: { homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hydrogen-version" = callPackage @@ -126666,7 +126564,6 @@ self: { homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylogen" = callPackage @@ -126675,8 +126572,8 @@ self: { }: mkDerivation { pname = "hylogen"; - version = "0.1.1.3"; - sha256 = "b2f0475f4efb5fee7f48fd381eebd482cad0815e2360cf6d8d80faa504d726b3"; + version = "0.1.2.0"; + sha256 = "995382291f69690481937e6f0248562691a346a577a39f31ad2473db0d395b73"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; @@ -126684,6 +126581,7 @@ self: { base bytestring filepath fsnotify http-types process text wai warp websockets ]; + jailbreak = true; homepage = "https://hylogen.com"; description = "an EDSL for live-coding fragment shaders"; license = stdenv.lib.licenses.mit; @@ -126703,7 +126601,6 @@ self: { jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hylotab" = callPackage @@ -126718,7 +126615,6 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyloutils" = callPackage @@ -126734,7 +126630,6 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperdrive" = callPackage @@ -126754,7 +126649,6 @@ self: { jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperfunctions" = callPackage @@ -126768,6 +126662,7 @@ self: { libraryHaskellDepends = [ adjunctions base distributive profunctors transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/hyperfunctions"; description = "Hyperfunctions"; license = stdenv.lib.licenses.bsd3; @@ -126822,6 +126717,7 @@ self: { base directory doctest filepath generic-deriving semigroups simple-reflect ]; + jailbreak = true; homepage = "http://github.com/analytics/hyperloglog"; description = "An approximate streaming (constant space) unique object counter"; license = stdenv.lib.licenses.bsd3; @@ -126842,7 +126738,6 @@ self: { homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyphenate" = callPackage @@ -126985,7 +126880,6 @@ self: { homepage = "https://github.com/zoetic-community/hypher"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hzaif" = callPackage @@ -127091,7 +126985,6 @@ self: { ]; description = "Internationalization for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iCalendar" = callPackage @@ -127122,7 +127015,6 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iap-verifier" = callPackage @@ -127778,6 +127670,7 @@ self: { pureMD5 tagged template-haskell temporary text transformers unix unix-compat ]; + jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; }) {}; @@ -127794,11 +127687,10 @@ self: { }) {}; "ide-backend-server_0_10_0" = callPackage - ({ mkDerivation, array, async, base, bytestring, Cabal, containers + ({ mkDerivation, array, async, base, bytestring, containers , data-accessor, data-accessor-mtl, directory, file-embed - , filemanip, filepath, ghc, haddock-api, ide-backend-common, mtl - , process, tar, temporary, text, time, transformers, unix - , unordered-containers, zlib + , filemanip, filepath, ghc, ide-backend-common, mtl, process, tar + , temporary, text, transformers, unix, unordered-containers, zlib }: mkDerivation { pname = "ide-backend-server"; @@ -127807,10 +127699,10 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array async base bytestring Cabal containers data-accessor + array async base bytestring containers data-accessor data-accessor-mtl directory file-embed filemanip filepath ghc - haddock-api ide-backend-common mtl process tar temporary text time - transformers unix unordered-containers zlib + ide-backend-common mtl process tar temporary text transformers unix + unordered-containers zlib ]; jailbreak = true; description = "An IDE backend server"; @@ -127819,10 +127711,10 @@ self: { }) {}; "ide-backend-server_0_10_0_1" = callPackage - ({ mkDerivation, array, async, base, bytestring, Cabal, containers + ({ mkDerivation, array, async, base, bytestring, containers , data-accessor, data-accessor-mtl, directory, file-embed - , filemanip, filepath, ghc, haddock-api, ide-backend-common, mtl - , network, process, tar, temporary, text, time, transformers, unix + , filemanip, filepath, ghc, ide-backend-common, mtl, network + , process, tar, temporary, text, transformers, unix , unordered-containers, zlib }: mkDerivation { @@ -127832,10 +127724,10 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array async base bytestring Cabal containers data-accessor + array async base bytestring containers data-accessor data-accessor-mtl directory file-embed filemanip filepath ghc - haddock-api ide-backend-common mtl network process tar temporary - text time transformers unix unordered-containers zlib + ide-backend-common mtl network process tar temporary text + transformers unix unordered-containers zlib ]; jailbreak = true; description = "An IDE backend server"; @@ -127844,10 +127736,10 @@ self: { }) {}; "ide-backend-server" = callPackage - ({ mkDerivation, array, async, base, bytestring, Cabal, containers + ({ mkDerivation, array, async, base, bytestring, containers , data-accessor, data-accessor-mtl, directory, file-embed - , filemanip, filepath, ghc, haddock-api, ide-backend-common, mtl - , network, process, tar, temporary, text, time, transformers, unix + , filemanip, filepath, ghc, ide-backend-common, mtl, network + , process, tar, temporary, text, transformers, unix , unordered-containers, zlib }: mkDerivation { @@ -127857,35 +127749,31 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array async base bytestring Cabal containers data-accessor + array async base bytestring containers data-accessor data-accessor-mtl directory file-embed filemanip filepath ghc - haddock-api ide-backend-common mtl network process tar temporary - text time transformers unix unordered-containers zlib + ide-backend-common mtl network process tar temporary text + transformers unix unordered-containers zlib ]; + jailbreak = true; description = "An IDE backend server"; license = stdenv.lib.licenses.mit; }) {}; "ideas" = callPackage - ({ mkDerivation, array, base, bytestring, containers, Diff - , directory, exceptions, filepath, mtl, multipart, network - , network-uri, old-locale, old-time, parsec, QuickCheck, random - , time, uniplate, wl-pprint, xhtml + ({ mkDerivation, base, cgi, containers, Diff, directory, filepath + , parsec, QuickCheck, random, time, uniplate, wl-pprint }: mkDerivation { pname = "ideas"; - version = "1.4"; - sha256 = "3467d64e0e4f956f0769f3ecb9407726af8b931ebf6d5d14ebceb5a06b65d279"; + version = "1.5"; + sha256 = "81969d35319518e7c06d67fea99d106c5a8d86d61b889d64414476327fc95e84"; libraryHaskellDepends = [ - array base bytestring containers Diff directory exceptions filepath - mtl multipart network network-uri old-locale old-time parsec - QuickCheck random time uniplate wl-pprint xhtml + base cgi containers Diff directory filepath parsec QuickCheck + random time uniplate wl-pprint ]; - jailbreak = true; homepage = "http://ideas.cs.uu.nl/www/"; description = "Feedback services for intelligent tutoring systems"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ideas-math" = callPackage @@ -127905,7 +127793,6 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idempotent" = callPackage @@ -127922,6 +127809,19 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "identicon" = callPackage + ({ mkDerivation, base, bytestring, hspec, JuicyPixels }: + mkDerivation { + pname = "identicon"; + version = "0.1.0"; + sha256 = "cc710ce81b969cd4a6a13b3ea46c72e5a5dd9805e8f437f5c54c9ba6b4abac93"; + libraryHaskellDepends = [ base bytestring JuicyPixels ]; + testHaskellDepends = [ base bytestring hspec JuicyPixels ]; + homepage = "https://github.com/mrkkrp/identicon"; + description = "Flexible generation of identicons"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "identifiers" = callPackage ({ mkDerivation, base, binary, cereal, containers, deepseq , hashable, ListLike, QuickCheck, test-framework @@ -127965,7 +127865,6 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idna" = callPackage @@ -127989,7 +127888,6 @@ self: { jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "idris" = callPackage @@ -128028,11 +127926,11 @@ self: { base containers directory filepath haskeline process time transformers ]; + jailbreak = true; doCheck = false; homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -128056,7 +127954,6 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ieee-utils-tempfix" = callPackage @@ -128138,6 +128035,7 @@ self: { version = "0.1.0.0"; sha256 = "7c09ff72dc72b288bb2020970adabc87ef1e5913175a745dd1573faf3422169d"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/mikeizbicki/ifcxt"; description = "put if statements within type constraints"; license = stdenv.lib.licenses.bsd3; @@ -128150,6 +128048,7 @@ self: { version = "0.0.5"; sha256 = "26ec287bfa3039429d21af00f98b9a7723922dab71d721c54fc7cd9f464bc1e3"; libraryHaskellDepends = [ base binary bytestring ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/iff/"; description = "Constructing and dissecting IFF files"; license = "GPL"; @@ -128188,6 +128087,7 @@ self: { http-conduit http-types lifted-base monad-control resourcet text time transformers transformers-base unordered-containers ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; @@ -128211,6 +128111,7 @@ self: { http-conduit http-types lifted-base monad-control resourcet text time transformers transformers-base unordered-containers ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/ig"; description = "Bindings to Instagram's API"; license = stdenv.lib.licenses.bsd3; @@ -128233,7 +128134,6 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -128272,7 +128172,6 @@ self: { homepage = "http://giorgidze.github.com/igraph/"; description = "Bindings to the igraph C library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {igraph = null;}; "igrf" = callPackage @@ -128291,13 +128190,13 @@ self: { }) {}; "ihaskell_0_6_4_1" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint - , hspec, http-client, http-client-tls, HUnit, ipython-kernel, mtl - , parsec, process, random, setenv, shelly, split, stm, strict - , system-argv0, text, transformers, unix, unordered-containers - , utf8-string, uuid, vector + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal + , cmdargs, containers, directory, filepath, ghc, ghc-parser + , ghc-paths, haskeline, haskell-src-exts, here, hlint, hspec + , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec + , process, random, setenv, shelly, split, stm, strict, system-argv0 + , text, transformers, unix, unordered-containers, utf8-string, uuid + , vector }: mkDerivation { pname = "ihaskell"; @@ -128306,24 +128205,24 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint http-client http-client-tls + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts here hlint http-client http-client-tls ipython-kernel mtl parsec process random shelly split stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc here - ipython-kernel strict text transformers unix + aeson base bytestring containers directory ghc here ipython-kernel + strict text transformers unix ]; testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint hspec http-client - http-client-tls HUnit ipython-kernel mtl parsec process random - setenv shelly split stm strict system-argv0 text transformers unix - unordered-containers utf8-string uuid vector + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts here hlint hspec http-client http-client-tls HUnit + ipython-kernel mtl parsec process random setenv shelly split stm + strict system-argv0 text transformers unix unordered-containers + utf8-string uuid vector ]; jailbreak = true; doCheck = false; @@ -128334,13 +128233,13 @@ self: { }) {}; "ihaskell_0_6_5_0" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, here, hlint - , hspec, http-client, http-client-tls, HUnit, ipython-kernel, mtl - , parsec, process, random, setenv, shelly, split, stm, strict - , system-argv0, text, transformers, unix, unordered-containers - , utf8-string, uuid, vector + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal + , cmdargs, containers, directory, filepath, ghc, ghc-parser + , ghc-paths, haskeline, haskell-src-exts, here, hlint, hspec + , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec + , process, random, setenv, shelly, split, stm, strict, system-argv0 + , text, transformers, unix, unordered-containers, utf8-string, uuid + , vector }: mkDerivation { pname = "ihaskell"; @@ -128349,24 +128248,24 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint http-client http-client-tls + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts here hlint http-client http-client-tls ipython-kernel mtl parsec process random shelly split stm strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc here - ipython-kernel strict text transformers unix + aeson base bytestring containers directory ghc here ipython-kernel + strict text transformers unix ]; testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts here hlint hspec http-client - http-client-tls HUnit ipython-kernel mtl parsec process random - setenv shelly split stm strict system-argv0 text transformers unix - unordered-containers utf8-string uuid vector + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts here hlint hspec http-client http-client-tls HUnit + ipython-kernel mtl parsec process random setenv shelly split stm + strict system-argv0 text transformers unix unordered-containers + utf8-string uuid vector ]; jailbreak = true; doCheck = false; @@ -128377,12 +128276,12 @@ self: { }) {}; "ihaskell_0_8_3_0" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec - , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec - , process, random, setenv, shelly, split, stm, strict, system-argv0 - , text, transformers, unix, unordered-containers, utf8-string, uuid + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal + , cmdargs, containers, directory, filepath, ghc, ghc-parser + , ghc-paths, haskeline, haskell-src-exts, hlint, hspec, http-client + , http-client-tls, HUnit, ipython-kernel, mtl, parsec, process + , random, setenv, shelly, split, stm, strict, system-argv0, text + , transformers, unix, unordered-containers, utf8-string, uuid , vector }: mkDerivation { @@ -128394,23 +128293,22 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts hlint http-client http-client-tls - ipython-kernel mtl parsec process random shelly split stm strict - system-argv0 text transformers unix unordered-containers - utf8-string uuid vector + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts hlint http-client http-client-tls ipython-kernel + mtl parsec process random shelly split stm strict system-argv0 text + transformers unix unordered-containers utf8-string uuid vector ]; executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc - ipython-kernel process strict text transformers unix + aeson base bytestring containers directory ghc ipython-kernel + process strict text transformers unix ]; testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts hlint hspec http-client http-client-tls - HUnit ipython-kernel mtl parsec process random setenv shelly split - stm strict system-argv0 text transformers unix unordered-containers + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts hlint hspec http-client http-client-tls HUnit + ipython-kernel mtl parsec process random setenv shelly split stm + strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; jailbreak = true; @@ -128422,12 +128320,12 @@ self: { }) {}; "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bin-package-db - , bytestring, cereal, cmdargs, containers, directory, filepath, ghc - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint, hspec - , http-client, http-client-tls, HUnit, ipython-kernel, mtl, parsec - , process, random, setenv, shelly, split, stm, strict, system-argv0 - , text, transformers, unix, unordered-containers, utf8-string, uuid + ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal + , cmdargs, containers, directory, filepath, ghc, ghc-parser + , ghc-paths, haskeline, haskell-src-exts, hlint, hspec, http-client + , http-client-tls, HUnit, ipython-kernel, mtl, parsec, process + , random, setenv, shelly, split, stm, strict, system-argv0, text + , transformers, unix, unordered-containers, utf8-string, uuid , vector }: mkDerivation { @@ -128437,25 +128335,25 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts hlint http-client http-client-tls - ipython-kernel mtl parsec process random shelly split stm strict - system-argv0 text transformers unix unordered-containers - utf8-string uuid vector + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts hlint http-client http-client-tls ipython-kernel + mtl parsec process random shelly split stm strict system-argv0 text + transformers unix unordered-containers utf8-string uuid vector ]; executableHaskellDepends = [ - aeson base bin-package-db bytestring containers directory ghc - ipython-kernel process strict text transformers unix + aeson base bytestring containers directory ghc ipython-kernel + process strict text transformers unix ]; testHaskellDepends = [ - aeson base base64-bytestring bin-package-db bytestring cereal - cmdargs containers directory filepath ghc ghc-parser ghc-paths - haskeline haskell-src-exts hlint hspec http-client http-client-tls - HUnit ipython-kernel mtl parsec process random setenv shelly split - stm strict system-argv0 text transformers unix unordered-containers + aeson base base64-bytestring bytestring cereal cmdargs containers + directory filepath ghc ghc-parser ghc-paths haskeline + haskell-src-exts hlint hspec http-client http-client-tls HUnit + ipython-kernel mtl parsec process random setenv shelly split stm + strict system-argv0 text transformers unix unordered-containers utf8-string uuid vector ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; @@ -128473,6 +128371,7 @@ self: { libraryHaskellDepends = [ aeson aeson-pretty base bytestring here ihaskell text ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for Aeson"; license = stdenv.lib.licenses.mit; @@ -128485,6 +128384,7 @@ self: { version = "0.3.0.0"; sha256 = "1c1ee80276e7950370b8b3fe61fc6764e60fb41d1adab5028e74e865a0e964ed"; libraryHaskellDepends = [ base ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for basic types"; license = stdenv.lib.licenses.mit; @@ -128497,6 +128397,7 @@ self: { version = "0.3.0.0"; sha256 = "eba41d50a7d9af9fd9e1a9e0d1346ec77dd564866c673dcad905ea69c38f83c6"; libraryHaskellDepends = [ base blaze-html blaze-markup ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for blaze-html types"; license = stdenv.lib.licenses.mit; @@ -128514,6 +128415,7 @@ self: { base bytestring Chart Chart-cairo data-default-class directory ihaskell ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for charts types"; license = stdenv.lib.licenses.mit; @@ -128531,6 +128433,7 @@ self: { active base bytestring diagrams diagrams-cairo diagrams-lib directory ihaskell text ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; @@ -128549,10 +128452,10 @@ self: { active base bytestring diagrams diagrams-cairo diagrams-lib directory ihaskell text ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-display" = callPackage @@ -128575,6 +128478,7 @@ self: { version = "0.2.1.0"; sha256 = "11999ba26d5d09a1f51f88907ca52dcbff9b7714e3f8b66d2bb150cd975a1525"; libraryHaskellDepends = [ base HaTeX ihaskell text ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for hatex"; license = stdenv.lib.licenses.mit; @@ -128596,7 +128500,6 @@ self: { homepage = "https://tweag.github.io/HaskellR/"; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -128609,6 +128512,7 @@ self: { libraryHaskellDepends = [ base bytestring directory ihaskell JuicyPixels ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell - IHaskellDisplay instances of the image types of the JuicyPixels package"; license = stdenv.lib.licenses.mit; @@ -128626,6 +128530,7 @@ self: { base base64-bytestring bytestring ihaskell ipython-kernel magic text utf8-string ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for bytestrings"; license = stdenv.lib.licenses.mit; @@ -128646,7 +128551,6 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for Parsec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-plot" = callPackage @@ -128656,10 +128560,10 @@ self: { version = "0.3.0.0"; sha256 = "0106697f8f81ea5fac13c1e8572aef3362cd00f6affbb8464c5b939d2c15179f"; libraryHaskellDepends = [ base bytestring ihaskell plot ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instance for Plot (from plot package)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ihaskell-rlangqq" = callPackage @@ -128692,10 +128596,10 @@ self: { aeson base containers ihaskell ipython-kernel scientific singletons text unix unordered-containers vector vinyl ]; + jailbreak = true; homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihttp" = callPackage @@ -128714,7 +128618,6 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ilist" = callPackage @@ -128749,7 +128652,6 @@ self: { homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "image-type" = callPackage @@ -128800,9 +128702,9 @@ self: { tasty tasty-hunit text transformers vector ]; testPkgconfigDepends = [ imagemagick ]; + jailbreak = true; description = "bindings to imagemagick library"; license = "unknown"; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -128823,7 +128725,6 @@ self: { homepage = "https://bitbucket.org/balta2ar/imagepaste"; description = "Command-line image paste utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imagesize-conduit_1_0_0_4" = callPackage @@ -128886,9 +128787,9 @@ self: { rolling-queue stm stm-delay tasty tasty-hunit tasty-quickcheck text transformers word8 ]; + jailbreak = true; description = "An efficient IMAP client library, with SSL and streaming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imapget" = callPackage @@ -128928,7 +128829,6 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imgurder" = callPackage @@ -128949,7 +128849,6 @@ self: { ]; description = "Uploader for Imgur"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imm" = callPackage @@ -128982,11 +128881,9 @@ self: { uri-bytestring xml xml-conduit ]; executableHaskellDepends = [ base free ]; - jailbreak = true; homepage = "https://github.com/k0ral/imm"; description = "Execute arbitrary actions for each unread element of RSS/Atom feeds"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "immortal_0_2" = callPackage @@ -129050,7 +128947,6 @@ self: { jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imperative-edsl" = callPackage @@ -129074,7 +128970,6 @@ self: { homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imperative-edsl-vhdl" = callPackage @@ -129091,7 +128986,6 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "implicit" = callPackage @@ -129126,6 +129020,7 @@ self: { version = "0.1.0.0"; sha256 = "98032042eee95714c2f0e0c1a25a03f15e75223bacc85b9857b1d66d639805c0"; libraryHaskellDepends = [ base mtl time transformers ]; + jailbreak = true; homepage = "https://github.com/revnull/implicit-logging"; description = "A logging framework built around implicit parameters"; license = stdenv.lib.licenses.gpl3; @@ -129151,6 +129046,7 @@ self: { sha256 = "8a423866bce4862f65926a67519f23c3262ea2f85f01104a5a2e03ee63f2dc61"; libraryHaskellDepends = [ base directory filepath mtl ]; testHaskellDepends = [ base directory filepath mtl ]; + jailbreak = true; homepage = "https://github.com/CindyLinz/Haskell-imports"; description = "Generate code for importing directories automatically"; license = stdenv.lib.licenses.mit; @@ -129163,6 +129059,7 @@ self: { version = "1.0.0"; sha256 = "7f4f8d20bea5ee0c125218276d6e252d85c748808fc7f8ec5d6990aa84e277e2"; libraryHaskellDepends = [ base lens ]; + jailbreak = true; homepage = "https://github.com/wdanilo/impossible"; description = "Set of data and type definitions of impossible types. Impossible types are useful when declaring type classes / type families instances that should not be expanded by GHC until a specific type is provided in order to keep the types nice and readable."; license = stdenv.lib.licenses.asl20; @@ -129179,7 +129076,6 @@ self: { homepage = "http://github.com/tomahawkins/improve/wiki/ImProve"; description = "An imperative, verifiable programming language for high assurance applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inc-ref" = callPackage @@ -129215,7 +129111,6 @@ self: { homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "include-file_0_1_0_2" = callPackage @@ -129265,7 +129160,25 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/incremental-computing"; description = "Incremental computing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "incremental-maps" = callPackage + ({ mkDerivation, base, Cabal, cabal-test-quickcheck, containers + , dlist, fingertree, order-maintenance, QuickCheck, transformers + }: + mkDerivation { + pname = "incremental-maps"; + version = "0.0.0.0"; + sha256 = "452cb1c8b711514f97d9a6dcc8a44e044302b1ad5c2fdc2e637896f69724f59b"; + libraryHaskellDepends = [ + base containers dlist fingertree order-maintenance transformers + ]; + testHaskellDepends = [ + base Cabal cabal-test-quickcheck containers QuickCheck + ]; + jailbreak = true; + description = "Package for doing incremental computations on maps"; + license = stdenv.lib.licenses.bsd3; }) {}; "incremental-parser_0_2_3_3" = callPackage @@ -129351,7 +129264,6 @@ self: { homepage = "http://github.com/sebfisch/incremental-sat-solver"; description = "Simple, Incremental SAT Solving as a Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "increments" = callPackage @@ -129372,24 +129284,69 @@ self: { jailbreak = true; description = "type classes for incremental updates to data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentation" = callPackage - ({ mkDerivation, base, mtl, parsec, parsers, tasty, tasty-hunit - , trifecta + ({ mkDerivation, base, indentation-core, indentation-parsec + , indentation-trifecta, mtl, parsec, parsers, trifecta }: mkDerivation { pname = "indentation"; - version = "0.2.1.2"; - sha256 = "dd7161daaf85a26af3ac18113760ef2af69c6d2ccef6e3febab103cd299205df"; - libraryHaskellDepends = [ base mtl parsec parsers trifecta ]; - testHaskellDepends = [ base parsec tasty tasty-hunit trifecta ]; - homepage = "https://bitbucket.org/mdmkolbe/indentation"; + version = "0.3.0.1"; + sha256 = "5908207cebd6d4ab81ba431653ae9f3c1e307c690ceb218f682b6b2ae925e968"; + libraryHaskellDepends = [ + base indentation-core indentation-parsec indentation-trifecta mtl + parsec parsers trifecta + ]; + homepage = "https://bitbucket.org/adamsmd/indentation"; description = "Indentation sensitive parsing combinators for Parsec and Trifecta"; license = stdenv.lib.licenses.bsd3; }) {}; + "indentation-core" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "indentation-core"; + version = "0.0"; + sha256 = "4fd2f02756ce9abffd080c5d5e830616ddfb63109871ad5c5f6c24a636ca78d9"; + libraryHaskellDepends = [ base mtl ]; + homepage = "https://bitbucket.org/adamsmd/indentation"; + description = "Indentation sensitive parsing combinators core library"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "indentation-parsec" = callPackage + ({ mkDerivation, base, indentation-core, mtl, parsec, tasty + , tasty-hunit + }: + mkDerivation { + pname = "indentation-parsec"; + version = "0.0"; + sha256 = "5152bc8e47b2d5fffce4e0e9ac0d07fa38040aa36bf1a5788adedbb2369dcd7c"; + libraryHaskellDepends = [ base indentation-core mtl parsec ]; + testHaskellDepends = [ base parsec tasty tasty-hunit ]; + homepage = "https://bitbucket.org/adamsmd/indentation"; + description = "Indentation sensitive parsing combinators for Parsec"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "indentation-trifecta" = callPackage + ({ mkDerivation, base, indentation-core, mtl, parsers, tasty + , tasty-hunit, trifecta + }: + mkDerivation { + pname = "indentation-trifecta"; + version = "0.0"; + sha256 = "496c7f6feacbea5c63296475267103f8db870289d05c46672a5a224941917f3d"; + libraryHaskellDepends = [ + base indentation-core mtl parsers trifecta + ]; + testHaskellDepends = [ base tasty tasty-hunit trifecta ]; + homepage = "https://bitbucket.org/adamsmd/indentation"; + description = "Indentation sensitive parsing combinators for Trifecta"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "indentparser" = callPackage ({ mkDerivation, base, mtl, parsec }: mkDerivation { @@ -129425,7 +129382,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Indexed Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indexed" = callPackage @@ -129489,7 +129445,6 @@ self: { libraryHaskellDepends = [ base gtk HDBC HDBC-sqlite3 ]; description = "Indian Language Font Converter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "indices" = callPackage @@ -129502,7 +129457,6 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Multi-dimensional statically bounded indices"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indieweb-algorithms" = callPackage @@ -129529,7 +129483,6 @@ self: { homepage = "https://github.com/myfreeweb/indieweb-algorithms"; description = "A collection of implementations of IndieWeb algorithms"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inf-interval" = callPackage @@ -129544,7 +129497,6 @@ self: { homepage = "https://github.com/RaminHAL9001/inf-interval"; description = "Non-contiguous interval data types with potentially infinite ranges"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infer-upstream" = callPackage @@ -129564,7 +129516,6 @@ self: { homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infernu" = callPackage @@ -129614,7 +129565,6 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "infix" = callPackage @@ -129627,6 +129577,25 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; + }) {}; + + "inflections_0_2_0_0" = callPackage + ({ mkDerivation, base, containers, HUnit, parsec, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "inflections"; + version = "0.2.0.0"; + sha256 = "8374014c210820be9576a0aca76b71a040779c0f451efb6983159f4084d4429b"; + libraryHaskellDepends = [ base containers parsec ]; + testHaskellDepends = [ + base containers HUnit parsec QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + jailbreak = true; + homepage = "https://github.com/stackbuilders/inflections-hs"; + description = "Inflections library for Haskell"; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -129636,8 +129605,8 @@ self: { }: mkDerivation { pname = "inflections"; - version = "0.2.0.0"; - sha256 = "8374014c210820be9576a0aca76b71a040779c0f451efb6983159f4084d4429b"; + version = "0.2.0.1"; + sha256 = "4bc856a2b409fbf874714f7bf50b9db4701242cf58e133bd31b1ae39fe8e2c35"; libraryHaskellDepends = [ base containers parsec ]; testHaskellDepends = [ base containers HUnit parsec QuickCheck test-framework @@ -129659,7 +129628,6 @@ self: { homepage = "https://bitbucket.org/eegg/inflist"; description = "An infinite list type and operations thereon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "influxdb" = callPackage @@ -129690,7 +129658,6 @@ self: { homepage = "https://github.com/maoe/influxdb-haskell"; description = "Haskell client library for InfluxDB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "informative" = callPackage @@ -129715,10 +129682,10 @@ self: { pandoc persistent persistent-postgresql shakespeare text time time-locale-compat yesod yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ini_0_2_2" = callPackage @@ -129840,7 +129807,6 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/inilist"; description = "Processing for .ini files with duplicate sections and options"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inject" = callPackage @@ -129942,7 +129908,6 @@ self: { testHaskellDepends = [ base ]; description = "Lets you embed C++ code into Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "inline-c-win32" = callPackage @@ -129978,7 +129943,6 @@ self: { homepage = "http://github.com/tweag/inline-java#readme"; description = "Java interop via inline Java code in Haskell modules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "inline-r" = callPackage @@ -130010,7 +129974,6 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) R;}; "inquire" = callPackage @@ -130090,6 +130053,7 @@ self: { version = "0.1.0.0"; sha256 = "bcdd6aa0322f757c32815407a8798c2e41245e1c76c4ea0890aa04c77847ee7c"; libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; homepage = "https://github.com/lazac/instance-control"; description = "Controls how the compiler searches for instances using type families"; license = stdenv.lib.licenses.bsd3; @@ -130111,7 +130075,6 @@ self: { homepage = "https://github.com/k0001/instant-aeson"; description = "Generic Aeson instances through instant-generics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instant-bytes" = callPackage @@ -130126,6 +130089,7 @@ self: { testHaskellDepends = [ base bytes instant-generics tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-bytes"; description = "Generic Serial instances through instant-generics"; license = stdenv.lib.licenses.bsd3; @@ -130138,6 +130102,7 @@ self: { version = "0.2"; sha256 = "606ffaffb09ad1bb1d766499a589b16531e9a4c7978734a349975248a4e60e21"; libraryHaskellDepends = [ base deepseq instant-generics ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-deepseq"; description = "Generic NFData instances through instant-generics"; license = stdenv.lib.licenses.bsd3; @@ -130152,6 +130117,7 @@ self: { revision = "2"; editedCabalFile = "c4a76fc7f7aebe8c003c9a80a127f627724d9444bd983bcacb2613d993295017"; libraryHaskellDepends = [ base containers syb template-haskell ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic programming library with a sum of products view"; license = stdenv.lib.licenses.bsd3; @@ -130164,6 +130130,7 @@ self: { version = "0.2"; sha256 = "8bf851b902126e91845e28cf6443d119ce675724c2e664562f8dd76664403a77"; libraryHaskellDepends = [ base hashable instant-generics ]; + jailbreak = true; homepage = "https://github.com/k0001/instant-hashable"; description = "Generic Hashable instances through instant-generics"; license = stdenv.lib.licenses.bsd3; @@ -130181,7 +130148,6 @@ self: { jailbreak = true; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "instinct" = callPackage @@ -130246,7 +130212,6 @@ self: { homepage = "http://projects.haskell.org/~malcolm/integer-pure"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "integer-simple" = callPackage @@ -130302,7 +130267,6 @@ self: { homepage = "https://github.com/rrnewton/intel-aes/wiki"; description = "Hardware accelerated AES encryption and Random Number Generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {intel_aes = null;}; "interchangeable" = callPackage @@ -130328,7 +130292,6 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleavableIO" = callPackage @@ -130340,7 +130303,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleave" = callPackage @@ -130415,26 +130377,25 @@ self: { homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "intero" = callPackage ({ mkDerivation, array, base, bytestring, containers, directory - , filepath, ghc, ghc-paths, haskeline, hspec, process, syb - , temporary, time, transformers, unix + , filepath, ghc, ghc-boot-th, ghc-paths, ghci, haskeline, hspec + , process, regex-compat, syb, temporary, time, transformers, unix }: mkDerivation { pname = "intero"; - version = "0.1.8"; - sha256 = "3fa0c78d8707a8e9fe335bf81f78a2eac7e60ec8430cfbd0afdc508738d96f4d"; + version = "0.1.11"; + sha256 = "ff20f5ce5100902e58b38d23fda7118b6a8a85b5bcccc42fcd868aacd6bebe95"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - array base bytestring containers directory filepath ghc ghc-paths - haskeline process syb time transformers unix + array base bytestring containers directory filepath ghc ghc-boot-th + ghc-paths ghci haskeline process syb time transformers unix ]; testHaskellDepends = [ - base directory hspec process temporary transformers + base directory hspec process regex-compat temporary transformers ]; homepage = "https://github.com/chrisdone/intero"; description = "Complete interactive development program for Haskell"; @@ -130524,7 +130485,6 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -130540,7 +130500,6 @@ self: { jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interpolation" = callPackage @@ -130573,10 +130532,10 @@ self: { base either lifted-base monad-control transformers ]; testHaskellDepends = [ base Cabal either transformers ]; + jailbreak = true; homepage = "https://sealgram.com/git/haskell/interruptible/"; description = "Monad transformers that can be run and resumed later, conserving their context"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interspersed" = callPackage @@ -130627,17 +130586,12 @@ self: { }) {}; "intervals" = callPackage - ({ mkDerivation, array, base, directory, distributive, doctest - , filepath, ghc-prim, QuickCheck, template-haskell - }: + ({ mkDerivation, array, base, distributive, ghc-prim }: mkDerivation { pname = "intervals"; version = "0.7.2"; sha256 = "0dd04a7dfd0ac6b364c66b78dafa48739c5116253078d4023e104f5e99d5fe28"; libraryHaskellDepends = [ array base distributive ghc-prim ]; - testHaskellDepends = [ - base directory doctest filepath QuickCheck template-haskell - ]; homepage = "http://github.com/ekmett/intervals"; description = "Interval Arithmetic"; license = stdenv.lib.licenses.bsd3; @@ -130663,7 +130617,6 @@ self: { homepage = "http://mbays.freeshell.org/intricacy"; description = "A game of competitive puzzle-design"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "intset" = callPackage @@ -130681,7 +130634,6 @@ self: { homepage = "https://github.com/pxqr/intset"; description = "Pure, mergeable, succinct Int sets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "invariant_0_2" = callPackage @@ -130694,14 +130646,15 @@ self: { pname = "invariant"; version = "0.2"; sha256 = "411aba2fbb5480007cce8356247668ea1c32bb94ea2d5dfb109ffca1e0babf7f"; - revision = "1"; - editedCabalFile = "c984b47d7adfb3945e96b9ce36216b51e24d4b61b4b4b4292a91421611fdce26"; + revision = "2"; + editedCabalFile = "fd0e4271b3bdd70a9b94ce7e92ec3b34baa105e09bcf26b3e0b1af03b6d19a57"; libraryHaskellDepends = [ array base bifunctors containers contravariant ghc-prim profunctors semigroups stm tagged template-haskell transformers transformers-compat unordered-containers ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/nfrisby/invariant-functors"; description = "Haskell 98 invariant functors"; license = stdenv.lib.licenses.bsd3; @@ -130718,14 +130671,15 @@ self: { pname = "invariant"; version = "0.2.2"; sha256 = "269cfd73bb7064459791b03461c9a73ce182e9d0a6f929f7cd46c0566d747975"; - revision = "1"; - editedCabalFile = "ec713862cc5b8f03e58eeca3596d53cfdfc28a9957afffcff2680a855322f0ee"; + revision = "3"; + editedCabalFile = "8f4eff4818c116fa35f4dbc79dc952605406647107f68853b5c5f0356e95b2a4"; libraryHaskellDepends = [ array base bifunctors containers contravariant ghc-prim profunctors semigroups stm tagged template-haskell transformers transformers-compat unordered-containers ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/nfrisby/invariant-functors"; description = "Haskell 98 invariant functors"; license = stdenv.lib.licenses.bsd3; @@ -130750,6 +130704,7 @@ self: { transformers-compat unordered-containers ]; testHaskellDepends = [ base hspec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/nfrisby/invariant-functors"; description = "Haskell 98 invariant functors"; license = stdenv.lib.licenses.bsd3; @@ -130825,7 +130780,6 @@ self: { homepage = "https://github.com/mitchellwrosen/io-capture#readme"; description = "Capture IO actions' stdout and stderr"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-choice_0_0_5" = callPackage @@ -130918,7 +130872,6 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "io-region" = callPackage @@ -130968,6 +130921,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time transformers vector zlib zlib-bindings ]; + jailbreak = true; description = "Simple, composable, and easy-to-use stream I/O"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -130995,6 +130949,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time transformers vector zlib zlib-bindings ]; + jailbreak = true; description = "Simple, composable, and easy-to-use stream I/O"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -131022,6 +130977,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 text time transformers vector zlib zlib-bindings ]; + jailbreak = true; description = "Simple, composable, and easy-to-use stream I/O"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -131130,7 +131086,6 @@ self: { homepage = "https://bitbucket.org/dshearer/iotransaction/"; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ip" = callPackage @@ -131177,13 +131132,14 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base cmdargs IPv6Addr text ]; + jailbreak = true; homepage = "https://github.com/MichelBoucey/ip6addr"; description = "Commandline tool to generate IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ip6addr" = callPackage + "ip6addr_0_5_1_0" = callPackage ({ mkDerivation, base, cmdargs, IPv6Addr, text }: mkDerivation { pname = "ip6addr"; @@ -131192,12 +131148,14 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base cmdargs IPv6Addr text ]; + jailbreak = true; homepage = "https://github.com/MichelBoucey/ip6addr"; description = "Commandline tool to generate IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ip6addr_0_5_1_2" = callPackage + "ip6addr" = callPackage ({ mkDerivation, base, cmdargs, IPv6Addr, text }: mkDerivation { pname = "ip6addr"; @@ -131209,7 +131167,6 @@ self: { homepage = "https://github.com/MichelBoucey/ip6addr"; description = "Commandline tool to generate IPv6 address text representations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipatch" = callPackage @@ -131229,7 +131186,6 @@ self: { homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipc" = callPackage @@ -131246,7 +131202,6 @@ self: { jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipcvar" = callPackage @@ -131282,7 +131237,6 @@ self: { jailbreak = true; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ipopt; nlopt = null;}; "ipprint" = callPackage @@ -131398,7 +131352,6 @@ self: { jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iptadmin" = callPackage @@ -131425,7 +131378,6 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ipython-kernel_0_6_1_2" = callPackage @@ -131523,6 +131475,7 @@ self: { executableHaskellDepends = [ base filepath mtl parsec text transformers ]; + jailbreak = true; homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for creating kernels for IPython frontends"; license = stdenv.lib.licenses.mit; @@ -131684,7 +131637,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "irc-dcc" = callPackage + "irc-dcc_1_2_0" = callPackage ({ mkDerivation, attoparsec, base, binary, bytestring, errors , hspec-attoparsec, io-streams, iproute, irc-ctcp, network, path , tasty, tasty-hspec, transformers, utf8-string @@ -131701,6 +131654,30 @@ self: { attoparsec base binary bytestring hspec-attoparsec iproute irc-ctcp network path tasty tasty-hspec utf8-string ]; + jailbreak = true; + homepage = "https://github.com/JanGe/irc-dcc"; + description = "A DCC message parsing and helper library for IRC clients"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "irc-dcc" = callPackage + ({ mkDerivation, attoparsec, base, binary, bytestring, errors + , hspec-attoparsec, io-streams, iproute, irc-ctcp, network, path + , tasty, tasty-hspec, transformers, utf8-string + }: + mkDerivation { + pname = "irc-dcc"; + version = "1.2.1"; + sha256 = "b348e0b921c27e2f29188b5604e0185cec9b0f0da36e24cad920ec1a33f5c512"; + libraryHaskellDepends = [ + attoparsec base binary bytestring errors io-streams iproute + irc-ctcp network path transformers utf8-string + ]; + testHaskellDepends = [ + attoparsec base binary bytestring hspec-attoparsec iproute irc-ctcp + network path tasty tasty-hspec utf8-string + ]; homepage = "https://github.com/JanGe/irc-dcc"; description = "A DCC message parsing and helper library for IRC clients"; license = stdenv.lib.licenses.mit; @@ -131801,6 +131778,7 @@ self: { base bytestring containers directory filepath irc mtl network parsec random SafeSemaphore stm time unix ]; + jailbreak = true; homepage = "http://hub.darcs.net/stepcut/ircbot"; description = "A library for writing irc bots"; license = stdenv.lib.licenses.bsd3; @@ -131850,6 +131828,7 @@ self: { executableHaskellDepends = [ base extra multistate text transformers unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/lspitzner/iridium"; description = "Automated Testing and Package Uploading"; license = stdenv.lib.licenses.bsd3; @@ -131884,6 +131863,7 @@ self: { executableHaskellDepends = [ antisplice base chatty chatty-utils mtl transformers ]; + jailbreak = true; homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A technical demo for Antisplice"; license = stdenv.lib.licenses.bsd3; @@ -131931,7 +131911,6 @@ self: { jailbreak = true; description = "Check whether a value has been evaluated"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "isiz" = callPackage @@ -131945,7 +131924,6 @@ self: { executableHaskellDepends = [ base gtk3 ]; description = "A program to show the size of image and whether suitable for wallpaper"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "islink" = callPackage @@ -131974,7 +131952,6 @@ self: { ]; description = "Advanced ESMTP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iso3166-country-codes" = callPackage @@ -132095,7 +132072,6 @@ self: { homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterIO" = callPackage @@ -132116,7 +132092,6 @@ self: { homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -132158,7 +132133,6 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-compress" = callPackage @@ -132171,7 +132145,6 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -132208,7 +132181,6 @@ self: { jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -132224,7 +132196,6 @@ self: { homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterio-server" = callPackage @@ -132243,7 +132214,6 @@ self: { homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivar-simple" = callPackage @@ -132274,7 +132244,6 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/"; description = "Theorem proving library based on dependent type theory"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory" = callPackage @@ -132294,7 +132263,6 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-artifact" = callPackage @@ -132331,7 +132299,6 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-bitdata" = callPackage @@ -132352,7 +132319,6 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-eval" = callPackage @@ -132392,7 +132358,6 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-hw" = callPackage @@ -132409,7 +132374,6 @@ self: { homepage = "http://ivorylang.org"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-opts" = callPackage @@ -132427,7 +132391,6 @@ self: { homepage = "http://ivorylang.org"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-quickcheck" = callPackage @@ -132450,7 +132413,6 @@ self: { homepage = "http://ivorylang.org"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory-serialize" = callPackage @@ -132478,7 +132440,6 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivy-web" = callPackage @@ -132495,7 +132456,6 @@ self: { homepage = "https://github.com/lilac/ivy-web/"; description = "A lightweight web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -132522,7 +132482,6 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ixmonad" = callPackage @@ -132606,7 +132565,6 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "j2hs" = callPackage @@ -132628,7 +132586,6 @@ self: { jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ja-base-extra" = callPackage @@ -132658,10 +132615,10 @@ self: { non-negative transformers unix ]; libraryPkgconfigDepends = [ libjack2 ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/JACK"; description = "Bindings for the JACK Audio Connection Kit"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libjack2;}; "jack-bindings" = callPackage @@ -132675,7 +132632,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -132689,7 +132645,6 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jacobi-roots" = callPackage @@ -132703,7 +132658,6 @@ self: { homepage = "http://github.com/ghorn/jacobi-roots"; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jail" = callPackage @@ -132772,7 +132726,6 @@ self: { homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -132815,7 +132768,6 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge" = callPackage @@ -132839,7 +132791,6 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge-extras" = callPackage @@ -132852,7 +132803,6 @@ self: { jailbreak = true; description = "Utilities for working with the java-bridge package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-character" = callPackage @@ -132892,7 +132842,6 @@ self: { jailbreak = true; description = "Tools for reflecting on Java classes"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javaclass" = callPackage @@ -132914,7 +132863,6 @@ self: { homepage = "https://github.com/NICTA/javaclass"; description = "Java class files"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javasf" = callPackage @@ -132936,7 +132884,6 @@ self: { homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javav" = callPackage @@ -132954,7 +132901,6 @@ self: { homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jcdecaux-vls" = callPackage @@ -133023,7 +132969,6 @@ self: { homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jmacro_0_6_11" = callPackage @@ -133036,6 +132981,8 @@ self: { pname = "jmacro"; version = "0.6.11"; sha256 = "ba134edbbe19b6fa2d41be1d28dae9fddcf488be4aebe05453d582a7547e85ac"; + revision = "1"; + editedCabalFile = "a9ed51b51d07e7501a4580edb65c83c0dbddb34ba96c2833615cd5abee195954"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -133044,6 +132991,7 @@ self: { unordered-containers vector wl-pprint-text ]; executableHaskellDepends = [ parseargs ]; + jailbreak = true; description = "QuasiQuotation library for programmatic generation of Javascript code"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133059,6 +133007,8 @@ self: { pname = "jmacro"; version = "0.6.12"; sha256 = "f9b69c592c37ac3f746bdc8c855a15239da90366ac1af8eed026f7e86a05c022"; + revision = "1"; + editedCabalFile = "5e9aa56d1b222fd23d257a7331dcc60bc2addd3f7b9065b893e844c5bad2c9d1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -133067,6 +133017,33 @@ self: { unordered-containers vector wl-pprint-text ]; executableHaskellDepends = [ parseargs ]; + jailbreak = true; + description = "QuasiQuotation library for programmatic generation of Javascript code"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "jmacro_0_6_13" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers + , haskell-src-exts, haskell-src-meta, mtl, parseargs, parsec + , regex-posix, safe, syb, template-haskell, text + , unordered-containers, vector, wl-pprint-text + }: + mkDerivation { + pname = "jmacro"; + version = "0.6.13"; + sha256 = "c4428aae69a7d80e84eb466f5fd71e850a48ddad7e3c9e0c0f44ceab0624f42c"; + revision = "1"; + editedCabalFile = "cb145206ce446bf6b7ad2ac9f83ed9995975046d8bf263b2b0dcc46a7e5264d7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring containers haskell-src-exts haskell-src-meta + mtl parsec regex-posix safe syb template-haskell text + unordered-containers vector wl-pprint-text + ]; + executableHaskellDepends = [ parseargs ]; + jailbreak = true; description = "QuasiQuotation library for programmatic generation of Javascript code"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -133080,8 +133057,8 @@ self: { }: mkDerivation { pname = "jmacro"; - version = "0.6.13"; - sha256 = "c4428aae69a7d80e84eb466f5fd71e850a48ddad7e3c9e0c0f44ceab0624f42c"; + version = "0.6.14"; + sha256 = "acb9411ab79f192a4ae0cd67cb45abbacef19c7a59d3199db36348b015df9920"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -133089,7 +133066,11 @@ self: { mtl parsec regex-posix safe syb template-haskell text unordered-containers vector wl-pprint-text ]; - executableHaskellDepends = [ parseargs ]; + executableHaskellDepends = [ + aeson base bytestring containers haskell-src-exts haskell-src-meta + mtl parseargs parsec regex-posix safe syb template-haskell text + unordered-containers vector wl-pprint-text + ]; description = "QuasiQuotation library for programmatic generation of Javascript code"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -133220,7 +133201,6 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; description = "Parallel Join Patterns with Guards and Propagation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "joinlist" = callPackage @@ -133233,7 +133213,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Join list - symmetric list type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jonathanscard" = callPackage @@ -133251,7 +133230,6 @@ self: { homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jort" = callPackage @@ -133266,7 +133244,6 @@ self: { jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose" = callPackage @@ -133418,7 +133395,6 @@ self: { homepage = "https://github.com/sseefried/js-good-parts.git"; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "js-jquery_1_11_1" = callPackage @@ -133540,7 +133516,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "jsaddle" = callPackage + "jsaddle_0_3_0_3" = callPackage ({ mkDerivation, base, doctest, glib, gtk3, lens, QuickCheck , template-haskell, text, transformers, vector, webkitgtk3 , webkitgtk3-javascriptcore @@ -133557,10 +133533,48 @@ self: { base doctest glib gtk3 QuickCheck text vector webkitgtk3 webkitgtk3-javascriptcore ]; + jailbreak = true; doCheck = false; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "jsaddle" = callPackage + ({ mkDerivation, base, doctest, gi-glib, gi-gtk, gi-javascriptcore + , gi-webkit, haskell-gi-base, lens, QuickCheck, template-haskell + , text, transformers, vector, webkitgtk3-javascriptcore + }: + mkDerivation { + pname = "jsaddle"; + version = "0.4.0.1"; + sha256 = "c520e32b9abcea9bad8c91b53472acc84bb7e64984fb5869df283caeb59045f7"; + libraryHaskellDepends = [ + base gi-glib gi-gtk gi-javascriptcore gi-webkit haskell-gi-base + lens template-haskell text transformers webkitgtk3-javascriptcore + ]; + testHaskellDepends = [ + base doctest gi-glib gi-gtk gi-javascriptcore gi-webkit + haskell-gi-base QuickCheck text vector webkitgtk3-javascriptcore + ]; + description = "High level interface for webkit-javascriptcore"; + license = stdenv.lib.licenses.mit; + }) {}; + + "jsaddle-dom" = callPackage + ({ mkDerivation, base, base-compat, gi-glib, gi-gtk, gi-webkit + , haskell-gi-base, jsaddle, lens, text, transformers + }: + mkDerivation { + pname = "jsaddle-dom"; + version = "0.1.0.1"; + sha256 = "023f3a4da6b78885c0da65e90f64d6455adacb1bfd672c0d0cc9fa45ed6a1d60"; + libraryHaskellDepends = [ + base base-compat gi-glib gi-gtk gi-webkit haskell-gi-base jsaddle + lens text transformers + ]; + description = "DOM library that uses jsaddle to support both GHCJS and WebKitGTK"; + license = stdenv.lib.licenses.mit; }) {}; "jsaddle-hello" = callPackage @@ -133576,7 +133590,6 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsc" = callPackage @@ -133599,7 +133612,6 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsmw" = callPackage @@ -133612,7 +133624,6 @@ self: { jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json" = callPackage @@ -133695,7 +133706,6 @@ self: { homepage = "https://github.com/nikita-volkov/json-ast-quickcheck"; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-autotype_0_2_5_4" = callPackage @@ -133968,6 +133978,7 @@ self: { hashable hflags lens mtl pretty process QuickCheck scientific smallcheck text uniplate unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; @@ -134028,7 +134039,6 @@ self: { homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-builder" = callPackage @@ -134082,7 +134092,6 @@ self: { homepage = "http://github.com/snoyberg/json-enumerator"; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-extra" = callPackage @@ -134145,6 +134154,7 @@ self: { QuickCheck quickcheck-instances rebase tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/json-incremental-decoder"; description = "Incremental JSON parser with early termination and a declarative DSL"; license = stdenv.lib.licenses.mit; @@ -134207,7 +134217,6 @@ self: { homepage = "https://github.com/sannsyn/json-pointer-hasql"; description = "JSON Pointer extensions for Hasql"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-python" = callPackage @@ -134241,7 +134250,6 @@ self: { homepage = "http://github.com/finnsson/json-qq"; description = "Json Quasiquatation library for Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-rpc" = callPackage @@ -134625,7 +134633,6 @@ self: { homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "json-togo" = callPackage @@ -134663,7 +134670,6 @@ self: { ]; description = "A collection of JSON tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-types" = callPackage @@ -134691,7 +134697,6 @@ self: { ]; description = "Library provides support for JSON"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-hdbc" = callPackage @@ -134707,7 +134712,6 @@ self: { ]; description = "Support JSON for SQL Database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json2-types" = callPackage @@ -134750,7 +134754,6 @@ self: { homepage = "https://github.com/dpwright/jsonresume.hs"; description = "Parser and datatypes for the JSON Resume format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsonrpc-conduit" = callPackage @@ -134793,7 +134796,6 @@ self: { homepage = "https://github.com/yuga/jsonschema-gen"; description = "JSON Schema generator from Algebraic data type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jsonsql" = callPackage @@ -134834,6 +134836,7 @@ self: { optparse-applicative scientific string-qq text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/danchoi/jsontsv"; description = "JSON to TSV transformer"; license = stdenv.lib.licenses.mit; @@ -134852,7 +134855,6 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "juandelacosa" = callPackage @@ -134890,7 +134892,6 @@ self: { homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {Judy = null;}; "jukebox" = callPackage @@ -134912,7 +134913,6 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "jump" = callPackage @@ -134980,6 +134980,7 @@ self: { QuickCheck scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + jailbreak = true; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; @@ -135008,6 +135009,7 @@ self: { scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + jailbreak = true; doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; @@ -135052,10 +135054,10 @@ self: { base bytestring cereal containers hspec hspec-discover network process QuickCheck temporary time ]; + jailbreak = true; homepage = "https://github.com/abhinav/kafka-client"; description = "Low-level Haskell client library for Apache Kafka 0.7."; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "kan-extensions_4_1_1" = callPackage @@ -135137,13 +135139,14 @@ self: { adjunctions array base comonad containers contravariant distributive free mtl semigroupoids tagged transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/kan-extensions/"; description = "Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kan-extensions" = callPackage + "kan-extensions_4_2_3" = callPackage ({ mkDerivation, adjunctions, array, base, comonad, containers , contravariant, distributive, free, mtl, semigroupoids, tagged , transformers @@ -135156,12 +135159,14 @@ self: { adjunctions array base comonad containers contravariant distributive free mtl semigroupoids tagged transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/kan-extensions/"; description = "Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kan-extensions_5_0_1" = callPackage + "kan-extensions" = callPackage ({ mkDerivation, adjunctions, array, base, comonad, containers , contravariant, distributive, free, mtl, semigroupoids, tagged , transformers @@ -135177,7 +135182,6 @@ self: { homepage = "http://github.com/ekmett/kan-extensions/"; description = "Kan extensions, Kan lifts, various forms of the Yoneda lemma, and (co)density (co)monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kangaroo" = callPackage @@ -135191,7 +135195,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kanji" = callPackage @@ -135203,6 +135206,7 @@ self: { libraryHaskellDepends = [ base bytestring containers microlens text ]; + jailbreak = true; homepage = "https://github.com/fosskers/nanq"; description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; license = stdenv.lib.licenses.gpl3; @@ -135270,7 +135274,6 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-cores" = callPackage @@ -135291,7 +135294,6 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-papilio" = callPackage @@ -135309,7 +135311,6 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kansas-lava-shake" = callPackage @@ -135321,7 +135322,6 @@ self: { libraryHaskellDepends = [ base hastache kansas-lava shake text ]; description = "Shake rules for building Kansas Lava projects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karakuri" = callPackage @@ -135339,7 +135339,6 @@ self: { homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "karver" = callPackage @@ -135385,6 +135384,7 @@ self: { tasty-hunit tasty-quickcheck template-haskell temporary text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/Soostone/katip"; description = "A structured logging framework"; license = stdenv.lib.licenses.bsd3; @@ -135411,10 +135411,10 @@ self: { lens-aeson quickcheck-instances scientific stm tasty tasty-hunit tasty-quickcheck text time transformers unordered-containers vector ]; + jailbreak = true; doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "katt" = callPackage @@ -135438,7 +135438,6 @@ self: { homepage = "https://github.com/davnils/katt"; description = "Client for the Kattis judge system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kazura-queue" = callPackage @@ -135460,7 +135459,6 @@ self: { homepage = "http://github.com/asakamirai/kazura-queue"; description = "Fast concurrent queues much inspired by unagi-chan"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "kbq-gu" = callPackage @@ -135506,6 +135504,7 @@ self: { ansi-terminal base bytestring cmdargs directory MissingH parsec process ]; + jailbreak = true; description = "Build profiles for kdesrc-build"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -135611,7 +135610,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -135629,7 +135627,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -135647,7 +135644,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -135682,7 +135678,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Common solutions to recurrent problems in Gtk applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-mvc-view" = callPackage @@ -135709,7 +135704,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based View for MVC applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "keera-hails-reactive-fs" = callPackage @@ -135726,7 +135720,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Files as Reactive Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -135744,7 +135737,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-network" = callPackage @@ -135759,7 +135751,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-polling" = callPackage @@ -135775,7 +135766,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Polling based Readable RVs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-wx" = callPackage @@ -135790,7 +135780,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -135807,7 +135796,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivelenses" = callPackage @@ -135820,7 +135808,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactivevalues" = callPackage @@ -135840,7 +135827,6 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-posture" = callPackage @@ -135875,7 +135861,6 @@ self: { homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL_mixer;}; "keiretsu" = callPackage @@ -135898,7 +135883,6 @@ self: { jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keter_1_3_6" = callPackage @@ -136244,7 +136228,6 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keycode_0_1" = callPackage @@ -136278,12 +136261,14 @@ self: { }) {}; "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim }: + ({ mkDerivation, base, containers, ghc-prim, template-haskell }: mkDerivation { pname = "keycode"; version = "0.2"; sha256 = "93f09542fa79993e46a263ff11c3a3c5368c00aa5a11e53bdccf7fbe885459ae"; - libraryHaskellDepends = [ base containers ghc-prim ]; + libraryHaskellDepends = [ + base containers ghc-prim template-haskell + ]; homepage = "https://github.com/RyanGlScott/keycode"; description = "Maps web browser keycodes to their corresponding keyboard keys"; license = stdenv.lib.licenses.bsd3; @@ -136296,6 +136281,7 @@ self: { version = "0.3.0.0"; sha256 = "b85cbba508e47c61bc49a3651068f7a86285501bbe0af66d90bb2eb5c8b6a360"; libraryHaskellDepends = [ base containers vector ]; + jailbreak = true; homepage = "https://github.com/wyager/keyed"; description = "Generic indexing for many data structures"; license = stdenv.lib.licenses.bsd3; @@ -136311,10 +136297,10 @@ self: { isExecutable = true; libraryHaskellDepends = [ base udbus ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/lunaryorn/haskell-keyring"; description = "Keyring access"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keys_3_10_1" = callPackage @@ -136348,6 +136334,7 @@ self: { array base comonad containers free hashable semigroupoids semigroups transformers unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/keys/"; description = "Keyed functors and containers"; license = stdenv.lib.licenses.bsd3; @@ -136404,7 +136391,6 @@ self: { homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyvaluehash" = callPackage @@ -136440,6 +136426,7 @@ self: { testHaskellDepends = [ base containers hspec parsec parseerror-eq ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/keyword-args"; description = "Extract data from a keyword-args config file format"; license = stdenv.lib.licenses.mit; @@ -136476,7 +136463,6 @@ self: { homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -136495,7 +136481,6 @@ self: { jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kickchan" = callPackage @@ -136532,7 +136517,6 @@ self: { ]; description = "Process KIF iOS test logs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kinds" = callPackage @@ -136566,7 +136550,6 @@ self: { homepage = "http://github.com/nkpart/kit"; description = "A dependency manager for Xcode (Objective-C) projects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans" = callPackage @@ -136595,7 +136578,6 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kmeans-vector" = callPackage @@ -136655,7 +136637,6 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kontrakcja-templates" = callPackage @@ -136714,7 +136695,6 @@ self: { homepage = "http://blog.malde.org/"; description = "The Korfu ORF Utility"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kqueue" = callPackage @@ -136722,18 +136702,16 @@ self: { }: mkDerivation { pname = "kqueue"; - version = "0.1.2.6"; - sha256 = "e851243826ecadda865809289d6f6921483ab5fed54f9d12453277dd355445e0"; + version = "0.2"; + sha256 = "700c6daf8a3f6ff1dbbc7f8ef10f3acb2ffddb4ccc65a68fa533907802f67369"; libraryHaskellDepends = [ base directory filepath mtl time unix ]; libraryToolDepends = [ c2hs ]; - jailbreak = true; homepage = "http://github.com/hesselink/kqueue"; description = "A binding to the kqueue event library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kraken" = callPackage + "kraken_0_0_1" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, mtl }: @@ -136744,11 +136722,13 @@ self: { libraryHaskellDepends = [ aeson base bytestring http-client http-client-tls mtl ]; + jailbreak = true; description = "Kraken.io API client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "kraken_0_0_2" = callPackage + "kraken" = callPackage ({ mkDerivation, aeson, base, bytestring, http-client , http-client-tls, mtl }: @@ -136761,7 +136741,6 @@ self: { ]; description = "Kraken.io API client"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "krpc" = callPackage @@ -136810,7 +136789,6 @@ self: { homepage = "https://github.com/corngood/ktx"; description = "A binding for libktx from Khronos"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {egl = null; inherit (pkgs) glew;}; "kure_2_4_10" = callPackage @@ -136901,7 +136879,6 @@ self: { homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kyotocabinet" = callPackage @@ -136915,7 +136892,6 @@ self: { homepage = "https://github.com/bitonic/kyotocabinet"; description = "Mid level bindings to Kyoto Cabinet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) kyotocabinet;}; "l-bfgs-b" = callPackage @@ -136929,7 +136905,6 @@ self: { homepage = "http://nonempty.org/software/haskell-l-bfgs-b"; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {lbfgsb = null;}; "labeled-graph" = callPackage @@ -136941,7 +136916,6 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labeled-tree" = callPackage @@ -136978,7 +136952,6 @@ self: { homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth" = callPackage @@ -137002,7 +136975,6 @@ self: { homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -137038,7 +137010,6 @@ self: { homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lackey" = callPackage @@ -137076,7 +137047,6 @@ self: { homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "laika" = callPackage @@ -137098,7 +137068,6 @@ self: { homepage = "https://github.com/nikita-volkov/laika"; description = "Minimalistic type-checked compile-time template engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-ast" = callPackage @@ -137125,7 +137094,6 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambda-canvas" = callPackage @@ -137138,7 +137106,6 @@ self: { jailbreak = true; description = "Educational drawing canvas for FP explorers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambda-devs" = callPackage @@ -137166,7 +137133,6 @@ self: { homepage = "http://github.com/alios/lambda-devs"; description = "a Paralell-DEVS implementaion based on distributed-process"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-options" = callPackage @@ -137206,7 +137172,6 @@ self: { homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm"; description = "An application to work with the lambda calculus (for learning)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda2js" = callPackage @@ -137233,7 +137198,6 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaFeed" = callPackage @@ -137248,7 +137212,6 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/"; description = "RSS 2.0 feed generator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaLit" = callPackage @@ -137266,10 +137229,9 @@ self: { ]; description = "..."; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot" = callPackage + "lambdabot_5_0_3" = callPackage ({ mkDerivation, base, lambdabot-core, lambdabot-haskell-plugins , lambdabot-irc-plugins, lambdabot-misc-plugins , lambdabot-novelty-plugins, lambdabot-reference-plugins @@ -137286,13 +137248,36 @@ self: { lambdabot-misc-plugins lambdabot-novelty-plugins lambdabot-reference-plugins lambdabot-social-plugins ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot is a development tool and advanced IRC bot"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-core" = callPackage + "lambdabot" = callPackage + ({ mkDerivation, base, lambdabot-core, lambdabot-haskell-plugins + , lambdabot-irc-plugins, lambdabot-misc-plugins + , lambdabot-novelty-plugins, lambdabot-reference-plugins + , lambdabot-social-plugins, mtl + }: + mkDerivation { + pname = "lambdabot"; + version = "5.1"; + sha256 = "6a8d27eb05dff3c3cf8950994e04239bc0fbc84d811cab6bd185a4f5fd0f6ffc"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base lambdabot-core lambdabot-haskell-plugins lambdabot-irc-plugins + lambdabot-misc-plugins lambdabot-novelty-plugins + lambdabot-reference-plugins lambdabot-social-plugins mtl + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot is a development tool and advanced IRC bot"; + license = "GPL"; + }) {}; + + "lambdabot-core_5_0_3" = callPackage ({ mkDerivation, base, binary, bytestring, containers , dependent-map, dependent-sum, dependent-sum-template, directory , edit-distance, filepath, haskeline, hslogger, HTTP, lifted-base @@ -137319,7 +137304,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-haskell-plugins" = callPackage + "lambdabot-core" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , dependent-map, dependent-sum, dependent-sum-template, directory + , edit-distance, filepath, haskeline, hslogger, HTTP, lifted-base + , monad-control, mtl, network, parsec, prim-uniq, random, random-fu + , random-source, regex-tdfa, SafeSemaphore, split, syb + , template-haskell, time, transformers, transformers-base, unix + , utf8-string, zlib + }: + mkDerivation { + pname = "lambdabot-core"; + version = "5.1"; + sha256 = "f44e0f1264bb6158b79394a2ce7595d81028413cb97911c0a9e5ae19cecc4425"; + libraryHaskellDepends = [ + base binary bytestring containers dependent-map dependent-sum + dependent-sum-template directory edit-distance filepath haskeline + hslogger HTTP lifted-base monad-control mtl network parsec + prim-uniq random random-fu random-source regex-tdfa SafeSemaphore + split syb template-haskell time transformers transformers-base unix + utf8-string zlib + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot core functionality"; + license = "GPL"; + }) {}; + + "lambdabot-haskell-plugins_5_0_3" = callPackage ({ mkDerivation, array, arrows, base, bytestring, containers , data-memocombinators, directory, filepath, haskell-src-exts , hoogle, HTTP, IOSpec, lambdabot-core, lambdabot-reference-plugins @@ -137349,7 +137360,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-irc-plugins" = callPackage + "lambdabot-haskell-plugins" = callPackage + ({ mkDerivation, array, arrows, base, bytestring, containers + , data-memocombinators, directory, filepath, haskell-src-exts + , hoogle, HTTP, IOSpec, lambdabot-core, lambdabot-reference-plugins + , lambdabot-trusted, lifted-base, logict, MonadRandom, mtl, mueval + , network, numbers, oeis, parsec, pretty, process, QuickCheck + , regex-tdfa, show, split, syb, transformers, utf8-string + , vector-space + }: + mkDerivation { + pname = "lambdabot-haskell-plugins"; + version = "5.1"; + sha256 = "7fe68b97aec6f62e5694bda236b73e30a94fbf45a6a9a6b5c0f1b12398cfaef7"; + libraryHaskellDepends = [ + array arrows base bytestring containers data-memocombinators + directory filepath haskell-src-exts hoogle HTTP IOSpec + lambdabot-core lambdabot-reference-plugins lambdabot-trusted + lifted-base logict MonadRandom mtl mueval network numbers oeis + parsec pretty process QuickCheck regex-tdfa show split syb + transformers utf8-string vector-space + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot Haskell plugins"; + license = "GPL"; + }) {}; + + "lambdabot-irc-plugins_5_0_3" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , lambdabot-core, lifted-base, mtl, network, SafeSemaphore, split , time @@ -137362,13 +137399,32 @@ self: { base bytestring containers directory filepath lambdabot-core lifted-base mtl network SafeSemaphore split time ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "IRC plugins for lambdabot"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-misc-plugins" = callPackage + "lambdabot-irc-plugins" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filepath + , lambdabot-core, lifted-base, mtl, network, SafeSemaphore, split + , time + }: + mkDerivation { + pname = "lambdabot-irc-plugins"; + version = "5.1"; + sha256 = "000e84f1f72af87180c67a8088b15d5e4f6078e1fb4e06f3ea0cc827baa835d5"; + libraryHaskellDepends = [ + base bytestring containers directory filepath lambdabot-core + lifted-base mtl network SafeSemaphore split time + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "IRC plugins for lambdabot"; + license = "GPL"; + }) {}; + + "lambdabot-misc-plugins_5_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, filepath, hstatsd , lambdabot-core, lifted-base, mtl, network, network-uri, parsec , process, random, random-fu, random-source, regex-tdfa @@ -137386,13 +137442,37 @@ self: { template-haskell time transformers transformers-base unix utf8-string zlib ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot miscellaneous plugins"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-novelty-plugins" = callPackage + "lambdabot-misc-plugins" = callPackage + ({ mkDerivation, base, bytestring, containers, filepath, hstatsd + , lambdabot-core, lifted-base, mtl, network, network-uri, parsec + , process, random, random-fu, random-source, regex-tdfa + , SafeSemaphore, split, tagsoup, template-haskell, time + , transformers, transformers-base, unix, utf8-string, zlib + }: + mkDerivation { + pname = "lambdabot-misc-plugins"; + version = "5.1"; + sha256 = "b3868b5099b399cc1d5d12a1407edf3ed12cde74d210a8c0362afd844ae5ce62"; + libraryHaskellDepends = [ + base bytestring containers filepath hstatsd lambdabot-core + lifted-base mtl network network-uri parsec process random random-fu + random-source regex-tdfa SafeSemaphore split tagsoup + template-haskell time transformers transformers-base unix + utf8-string zlib + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot miscellaneous plugins"; + license = "GPL"; + }) {}; + + "lambdabot-novelty-plugins_5_0_3" = callPackage ({ mkDerivation, base, binary, brainfuck, bytestring, containers , dice, directory, lambdabot-core, misfortune, process, random-fu , regex-tdfa, unlambda @@ -137407,13 +137487,32 @@ self: { base binary brainfuck bytestring containers dice directory lambdabot-core misfortune process random-fu regex-tdfa unlambda ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Novelty plugins for Lambdabot"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-reference-plugins" = callPackage + "lambdabot-novelty-plugins" = callPackage + ({ mkDerivation, base, binary, brainfuck, bytestring, containers + , dice, directory, lambdabot-core, misfortune, process, random-fu + , regex-tdfa, unlambda + }: + mkDerivation { + pname = "lambdabot-novelty-plugins"; + version = "5.1"; + sha256 = "afbf25fad387f8e3232d1dfb2bcfbcb42f639f2cff6346459732f47d9b44cff9"; + libraryHaskellDepends = [ + base binary brainfuck bytestring containers dice directory + lambdabot-core misfortune process random-fu regex-tdfa unlambda + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Novelty plugins for Lambdabot"; + license = "GPL"; + }) {}; + + "lambdabot-reference-plugins_5_0_3" = callPackage ({ mkDerivation, base, bytestring, containers, HTTP, lambdabot-core , mtl, network, network-uri, oeis, process, regex-tdfa, split , tagsoup, utf8-string @@ -137426,13 +137525,32 @@ self: { base bytestring containers HTTP lambdabot-core mtl network network-uri oeis process regex-tdfa split tagsoup utf8-string ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot reference plugins"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lambdabot-social-plugins" = callPackage + "lambdabot-reference-plugins" = callPackage + ({ mkDerivation, base, bytestring, containers, HTTP, lambdabot-core + , mtl, network, network-uri, oeis, process, regex-tdfa, split + , tagsoup, utf8-string + }: + mkDerivation { + pname = "lambdabot-reference-plugins"; + version = "5.1"; + sha256 = "441a94ddd6dc686c1d0fe991ee898922eb06b4caafb97dfdd1852612a321129c"; + libraryHaskellDepends = [ + base bytestring containers HTTP lambdabot-core mtl network + network-uri oeis process regex-tdfa split tagsoup utf8-string + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot reference plugins"; + license = "GPL"; + }) {}; + + "lambdabot-social-plugins_5_0_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers , lambdabot-core, mtl, split, time }: @@ -137445,18 +137563,48 @@ self: { libraryHaskellDepends = [ base binary bytestring containers lambdabot-core mtl split time ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Social plugins for Lambdabot"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "lambdabot-social-plugins" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , lambdabot-core, mtl, split, time + }: + mkDerivation { + pname = "lambdabot-social-plugins"; + version = "5.1"; + sha256 = "a8bbd6a1ac47f64fa9e6a71a2b69383570fd5af4e2a13b6e24f7397cb0802ef4"; + libraryHaskellDepends = [ + base binary bytestring containers lambdabot-core mtl split time + ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Social plugins for Lambdabot"; + license = "GPL"; + }) {}; + + "lambdabot-trusted_5_0_2_1" = callPackage + ({ mkDerivation, base, oeis, QuickCheck, QuickCheck-safe }: + mkDerivation { + pname = "lambdabot-trusted"; + version = "5.0.2.1"; + sha256 = "1070f98a979aa1e92b96e898f4aaafe4b549dc2c42391800b3af6fd012861e1d"; + libraryHaskellDepends = [ base oeis QuickCheck QuickCheck-safe ]; + homepage = "http://haskell.org/haskellwiki/Lambdabot"; + description = "Lambdabot trusted code"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "lambdabot-trusted" = callPackage ({ mkDerivation, base, oeis, QuickCheck, QuickCheck-safe }: mkDerivation { pname = "lambdabot-trusted"; - version = "5.0.2.1"; - sha256 = "1070f98a979aa1e92b96e898f4aaafe4b549dc2c42391800b3af6fd012861e1d"; + version = "5.1"; + sha256 = "f3719ceb57523f2e4448431581070bb0bdd0b089a4f1956af10398e79232b0bc"; libraryHaskellDepends = [ base oeis QuickCheck QuickCheck-safe ]; homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot trusted code"; @@ -137483,7 +137631,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacat" = callPackage @@ -137503,7 +137650,6 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacms-core" = callPackage @@ -137526,6 +137672,7 @@ self: { testHaskellDepends = [ base classy-prelude classy-prelude-yesod hspec yesod yesod-core ]; + jailbreak = true; homepage = "http://lambdacms.org"; description = "LambdaCms 'core' subsite for Yesod apps"; license = stdenv.lib.licenses.mit; @@ -137559,7 +137706,6 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-bullet" = callPackage @@ -137574,7 +137720,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Example for combining LambdaCube and Bullet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -137602,6 +137747,7 @@ self: { QuickCheck tasty tasty-quickcheck text time vect vector websockets wl-pprint ]; + jailbreak = true; homepage = "http://lambdacube3d.com"; description = "LambdaCube 3D is a DSL to program GPUs"; license = stdenv.lib.licenses.bsd3; @@ -137660,7 +137806,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "3D rendering engine written entirely in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-examples" = callPackage @@ -137677,7 +137822,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Examples for LambdaCube"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-gl" = callPackage @@ -137701,10 +137845,10 @@ self: { GLFW-b JuicyPixels lambdacube-ir network OpenGLRaw text time vector websockets ]; + jailbreak = true; homepage = "http://lambdacube3d.com"; description = "OpenGL 3.3 Core Profile backend for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lambdacube-ir" = callPackage @@ -137714,6 +137858,7 @@ self: { version = "0.3.0.0"; sha256 = "4a9c3f2193984bf36eb06d13db92de541c619502a89e956e1e3a2750a4b68dbc"; libraryHaskellDepends = [ aeson base containers mtl text vector ]; + jailbreak = true; description = "LambdaCube 3D intermediate representation of 3D graphics pipelines"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -137738,7 +137883,6 @@ self: { homepage = "http://lambdacube3d.wordpress.com/"; description = "Samples for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdatex" = callPackage @@ -137786,7 +137930,6 @@ self: { homepage = "http://github.com/ashyisme/lambdatwit"; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaya-bus" = callPackage @@ -137819,7 +137962,6 @@ self: { homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lame-tester" = callPackage @@ -137837,7 +137979,6 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A strange and unnecessary selective test-running library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-asn1" = callPackage @@ -137866,10 +138007,10 @@ self: { testHaskellDepends = [ base parsec process QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/knrafto/language-bash/"; description = "Parsing and pretty-printing Bash shell scripts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-boogie" = callPackage @@ -137895,7 +138036,6 @@ self: { homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c_0_4_7" = callPackage @@ -137946,7 +138086,6 @@ self: { homepage = "http://github.com/ghulette/language-c-comments"; description = "Extracting comments from C code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-inline" = callPackage @@ -137966,7 +138105,6 @@ self: { homepage = "https://github.com/mchakravarty/language-c-inline/"; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-c-quote_0_10_2" = callPackage @@ -138261,7 +138399,6 @@ self: { homepage = "http://www.drexel.edu/~mainland/"; description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-cil" = callPackage @@ -138472,7 +138609,6 @@ self: { homepage = "https://github.com/scottgw/language-eiffel"; description = "Parser and pretty printer for the Eiffel language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-fortran" = callPackage @@ -138549,7 +138685,6 @@ self: { jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-guess" = callPackage @@ -138635,7 +138770,6 @@ self: { ]; description = "Parser for Java .class files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-javascript_0_5_13" = callPackage @@ -138805,6 +138939,29 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "language-javascript_0_6_0_5" = callPackage + ({ mkDerivation, alex, array, base, blaze-builder, bytestring + , Cabal, containers, happy, hspec, mtl, QuickCheck, text + , utf8-light, utf8-string + }: + mkDerivation { + pname = "language-javascript"; + version = "0.6.0.5"; + sha256 = "7dc3afedab9762462d229e42fcf3e6350afde35f552291d1763c8be0386ea13e"; + libraryHaskellDepends = [ + array base blaze-builder bytestring containers mtl text utf8-string + ]; + libraryToolDepends = [ alex happy ]; + testHaskellDepends = [ + array base blaze-builder bytestring Cabal containers hspec mtl + QuickCheck utf8-light utf8-string + ]; + homepage = "http://github.com/erikd/language-javascript"; + description = "Parser for JavaScript"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "language-kort" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, QuickCheck , random, razom-text-util, regex-applicative, smaoin, text @@ -138846,6 +139003,7 @@ self: { base bytestring deepseq directory filepath parsec QuickCheck tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "http://github.com/osa1/language-lua"; description = "Lua parser and pretty-printer"; license = stdenv.lib.licenses.bsd3; @@ -138911,7 +139069,27 @@ self: { homepage = "http://github.com/jtdaugherty/language-mixal/"; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "language-nix_2_1" = callPackage + ({ mkDerivation, base, base-compat, Cabal, deepseq, doctest, lens + , pretty, QuickCheck + }: + mkDerivation { + pname = "language-nix"; + version = "2.1"; + sha256 = "ade0e0d0722e5b4fca532b4f0d1bc4827b767f912393b9023a80554fa889e044"; + libraryHaskellDepends = [ + base base-compat Cabal deepseq lens pretty QuickCheck + ]; + testHaskellDepends = [ + base base-compat Cabal deepseq doctest lens pretty QuickCheck + ]; + homepage = "https://github.com/peti/language-nix#readme"; + description = "Data types and useful functions to represent and manipulate the Nix language"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "language-nix" = callPackage @@ -138920,8 +139098,8 @@ self: { }: mkDerivation { pname = "language-nix"; - version = "2.1"; - sha256 = "ade0e0d0722e5b4fca532b4f0d1bc4827b767f912393b9023a80554fa889e044"; + version = "2.1.0.1"; + sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; libraryHaskellDepends = [ base base-compat Cabal deepseq lens pretty QuickCheck ]; @@ -138951,7 +139129,6 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/language-objc"; description = "Analysis and generation of Objective C code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-openscad" = callPackage @@ -139031,7 +139208,6 @@ self: { 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 @@ -139046,6 +139222,7 @@ self: { array base containers monads-tf pretty transformers utf8-string ]; libraryToolDepends = [ alex happy ]; + jailbreak = true; homepage = "http://github.com/bjpop/language-python"; description = "Parsing and pretty printing of Python code"; license = stdenv.lib.licenses.bsd3; @@ -139065,7 +139242,6 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/"; description = "Generate coloured XHTML for Python code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python-test" = callPackage @@ -139098,7 +139274,6 @@ self: { homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -139115,7 +139290,6 @@ self: { homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-slice" = callPackage @@ -139156,7 +139330,6 @@ self: { homepage = "https://github.com/bitonic/language-spelling"; description = "Various tools to detect/correct mistakes in words"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sqlite" = callPackage @@ -139173,7 +139346,6 @@ self: { homepage = "http://dankna.com/software/"; description = "Full parser and generator for SQL as implemented by SQLite3"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-thrift_0_6_2_0" = callPackage @@ -139193,6 +139365,7 @@ self: { ansi-wl-pprint base hspec hspec-discover parsers QuickCheck text trifecta wl-pprint ]; + jailbreak = true; homepage = "https://github.com/abhinav/language-thrift"; description = "Parser and pretty printer for the Thrift IDL format"; license = stdenv.lib.licenses.bsd3; @@ -139216,6 +139389,7 @@ self: { ansi-wl-pprint base hspec hspec-discover parsers QuickCheck text trifecta wl-pprint ]; + jailbreak = true; homepage = "https://github.com/abhinav/language-thrift"; description = "Parser and pretty printer for the Thrift IDL format"; license = stdenv.lib.licenses.bsd3; @@ -139238,45 +139412,27 @@ self: { ansi-wl-pprint base hspec hspec-discover parsers QuickCheck text trifecta wl-pprint ]; + jailbreak = true; homepage = "https://github.com/abhinav/language-thrift"; description = "Parser and pretty printer for the Thrift IDL format"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-thrift" = callPackage + "language-thrift_0_8_0_1" = callPackage ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover , megaparsec, QuickCheck, text, transformers }: mkDerivation { pname = "language-thrift"; - version = "0.8.0.0"; - sha256 = "1bfb07ecaa49d8cffa2b985f1d820607ca6369692a98ea7f9f3ec3133959452a"; + version = "0.8.0.1"; + sha256 = "defc67a406403425a6fcdb4fcdd735e2bc6309ec1a999debdf3139cd04e0bcb6"; libraryHaskellDepends = [ ansi-wl-pprint base megaparsec text transformers ]; testHaskellDepends = [ ansi-wl-pprint base hspec hspec-discover megaparsec QuickCheck text ]; - homepage = "https://github.com/abhinav/language-thrift"; - description = "Parser and pretty printer for the Thrift IDL format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "language-thrift_0_9_0_0" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover - , megaparsec, QuickCheck, scientific, text, transformers - }: - mkDerivation { - pname = "language-thrift"; - version = "0.9.0.0"; - sha256 = "2ff3194365cd60f9e51d268864ad8d3c76669b0ec1c3e7d4286e843165654789"; - libraryHaskellDepends = [ - ansi-wl-pprint base megaparsec scientific text transformers - ]; - testHaskellDepends = [ - ansi-wl-pprint base hspec hspec-discover megaparsec QuickCheck text - ]; jailbreak = true; homepage = "https://github.com/abhinav/language-thrift#readme"; description = "Parser and pretty printer for the Thrift IDL format"; @@ -139284,6 +139440,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "language-thrift" = callPackage + ({ mkDerivation, ansi-wl-pprint, base, hspec, hspec-discover + , megaparsec, QuickCheck, scientific, text, transformers + }: + mkDerivation { + pname = "language-thrift"; + version = "0.9.0.1"; + sha256 = "ef8f79e5f2e23b1e160547d9552eae76a0faf0807724ab663832782e33b5bc35"; + libraryHaskellDepends = [ + ansi-wl-pprint base megaparsec scientific text transformers + ]; + testHaskellDepends = [ + ansi-wl-pprint base hspec hspec-discover megaparsec QuickCheck text + ]; + homepage = "https://github.com/abhinav/language-thrift#readme"; + description = "Parser and pretty printer for the Thrift IDL format"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "language-typescript" = callPackage ({ mkDerivation, base, containers, parsec, pretty }: mkDerivation { @@ -139315,6 +139490,7 @@ self: { version = "0.1.1.0"; sha256 = "2318258e89b6301ae23fde9e4301f40e354f7cd4a8953c55de3291259f2cde19"; libraryHaskellDepends = [ base parsec wl-pprint ]; + jailbreak = true; description = "Parser and Pretty Printer for WebIDL"; license = stdenv.lib.licenses.mit; }) {}; @@ -139375,7 +139551,6 @@ self: { jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latest-npm-version" = callPackage @@ -139408,7 +139583,6 @@ self: { homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latex" = callPackage @@ -139473,6 +139647,7 @@ self: { base hakyll latex-formulae-image latex-formulae-pandoc lrucache pandoc-types ]; + jailbreak = true; homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; @@ -139509,6 +139684,7 @@ self: { base directory errors filepath JuicyPixels process temporary transformers ]; + jailbreak = true; homepage = "http://github.com/liamoc/latex-formulae#readme"; description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation"; license = stdenv.lib.licenses.bsd3; @@ -139631,7 +139807,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lax" = callPackage @@ -139657,7 +139832,6 @@ self: { homepage = "http://github.com/duairc/layers"; description = "Modular type class machinery for monad transformer stacks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layers-game" = callPackage @@ -139677,7 +139851,6 @@ self: { jailbreak = true; description = "A prototypical 2d platform game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout" = callPackage @@ -139689,7 +139862,6 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout-bootstrap" = callPackage @@ -139702,7 +139874,6 @@ self: { homepage = "https://bitbucket.org/dpwiz/layout-bootstrap"; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazy-csv_0_5" = callPackage @@ -139757,15 +139928,14 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lazyio" = callPackage ({ mkDerivation, base, transformers, unsafe }: mkDerivation { pname = "lazyio"; - version = "0.1.0.1"; - sha256 = "6ca1411fe34f1249f2cfac3ec60018449b0e6e9de9bf7918e6de55e6a20f9499"; + version = "0.1.0.3"; + sha256 = "bb8d8c0c14ab35d80d0eee69e51b9111fea975eabe171c37a0f680adaff708be"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base transformers unsafe ]; @@ -139795,7 +139965,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Differential solving with lazy splines"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lbfgs" = callPackage @@ -139846,7 +140015,6 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/lcs/"; description = "Find longest common sublist of two lists"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lda" = callPackage @@ -139906,7 +140074,6 @@ self: { homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaf" = callPackage @@ -139926,7 +140093,6 @@ self: { homepage = "https://github.com/skypers/leaf"; description = "A simple portfolio generator"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaky" = callPackage @@ -139947,7 +140113,6 @@ self: { homepage = "http://fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leancheck" = callPackage @@ -140017,9 +140182,9 @@ self: { executableHaskellDepends = [ base gloss gnuplot not-gloss spatial-math ]; + jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learn-physics-examples" = callPackage @@ -140038,7 +140203,6 @@ self: { jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learning-hmm" = callPackage @@ -140115,7 +140279,7 @@ self: { homepage = "http://www.leksah.org"; description = "Haskell IDE written in Haskell"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leksah-server" = callPackage @@ -140150,11 +140314,12 @@ self: { base conduit conduit-extra hslogger HUnit process resourcet transformers ]; + jailbreak = true; homepage = "http://leksah.org"; description = "Metadata collection for leksah"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; - }) {}; + broken = true; + }) {bin-package-db = null;}; "lendingclub" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, HsOpenSSL @@ -140168,6 +140333,7 @@ self: { aeson base blaze-builder bytestring HsOpenSSL http-streams io-streams mtl scientific text vector ]; + jailbreak = true; homepage = "https://www.lendingclub.com/developers/lc-api.action"; description = "Bindings for the LendingClub marketplace API"; license = stdenv.lib.licenses.bsd3; @@ -140289,7 +140455,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lens" = callPackage + "lens_4_13" = callPackage ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring , comonad, containers, contravariant, deepseq, directory , distributive, doctest, exceptions, filepath, free @@ -140318,22 +140484,23 @@ self: { test-framework-quickcheck2 test-framework-th text transformers unordered-containers vector ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/lens/"; description = "Lenses, Folds and Traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "lens_4_14" = callPackage + "lens" = callPackage ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , comonad, containers, contravariant, deepseq, directory - , distributive, doctest, exceptions, filepath, free - , generic-deriving, ghc-prim, hashable, hlint, HUnit - , kan-extensions, mtl, nats, parallel, profunctors, QuickCheck - , reflection, semigroupoids, semigroups, simple-reflect, tagged - , template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, test-framework-th, text, transformers - , transformers-compat, unordered-containers, vector, void + , comonad, containers, contravariant, distributive, exceptions + , filepath, free, ghc-prim, hashable, hlint, HUnit, kan-extensions + , mtl, parallel, profunctors, QuickCheck, reflection, semigroupoids + , semigroups, tagged, template-haskell, test-framework + , test-framework-hunit, test-framework-quickcheck2 + , test-framework-th, text, transformers, transformers-compat + , unordered-containers, vector, void }: mkDerivation { pname = "lens"; @@ -140347,17 +140514,14 @@ self: { transformers-compat unordered-containers vector void ]; testHaskellDepends = [ - base bytestring containers deepseq directory doctest filepath - generic-deriving hlint HUnit mtl nats parallel QuickCheck - semigroups simple-reflect test-framework test-framework-hunit - test-framework-quickcheck2 test-framework-th text transformers - unordered-containers vector + base containers hlint HUnit mtl QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 test-framework-th + transformers ]; - jailbreak = true; + doCheck = false; homepage = "http://github.com/ekmett/lens/"; description = "Lenses, Folds and Traversals"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lens-action_0_1_0_1" = callPackage @@ -140422,6 +140586,7 @@ self: { semigroups transformers ]; testHaskellDepends = [ base directory doctest filepath ]; + jailbreak = true; homepage = "http://github.com/ekmett/lens-action/"; description = "Monadic Getters and Folds"; license = stdenv.lib.licenses.bsd3; @@ -140524,6 +140689,7 @@ self: { libraryHaskellDepends = [ base containers lens-family-core mtl transformers ]; + jailbreak = true; description = "Lens Families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -140535,6 +140701,7 @@ self: { version = "1.2.0"; sha256 = "5f6598512b45cf4eee7b0196fecce37c24c0e2eb5f2c45b275ca7d45d85ab943"; libraryHaskellDepends = [ base containers transformers ]; + jailbreak = true; description = "Haskell 98 Lens Families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -140548,6 +140715,23 @@ self: { revision = "1"; editedCabalFile = "b2236e693bf705ef944458bc08e449b6e62da03c9370cee79858a3df01ef78dd"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; + homepage = "http://github.com/DanBurton/lens-family-th#readme"; + description = "Generate lens-family style lenses"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "lens-family-th_0_4_1_0" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "lens-family-th"; + version = "0.4.1.0"; + sha256 = "754fdc4c7c292b160a87974ec3690b755fb93f3877c8080d331cfa6ec4b39e20"; + revision = "2"; + editedCabalFile = "978c149edc250ed1c91c03be304b752415e93ab5eb76aacb194bbe94135c356a"; + libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/DanBurton/lens-family-th#readme"; description = "Generate lens-family style lenses"; license = stdenv.lib.licenses.bsd3; @@ -140558,10 +140742,8 @@ self: { ({ mkDerivation, base, template-haskell }: mkDerivation { pname = "lens-family-th"; - version = "0.4.1.0"; - sha256 = "754fdc4c7c292b160a87974ec3690b755fb93f3877c8080d331cfa6ec4b39e20"; - revision = "2"; - editedCabalFile = "978c149edc250ed1c91c03be304b752415e93ab5eb76aacb194bbe94135c356a"; + version = "0.5.0.0"; + sha256 = "948e6ad30a9869db5536d02356ba63e7ec1d9d8d04a0cff4c4252b49a4de959e"; libraryHaskellDepends = [ base template-haskell ]; homepage = "http://github.com/DanBurton/lens-family-th#readme"; description = "Generate lens-family style lenses"; @@ -140593,6 +140775,7 @@ self: { version = "4.11"; sha256 = "3c0ccdd7cf33cc3c79a86bb51815ab1a402dbe4fdff317c3f05e15adcbb1e031"; libraryHaskellDepends = [ base lens QuickCheck transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/lens/"; description = "QuickCheck properties for lens"; license = stdenv.lib.licenses.bsd3; @@ -140630,6 +140813,7 @@ self: { libraryHaskellDepends = [ base lens-family lens-family-core lens-family-th mtl transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/lens-simple"; description = "simplified import of elementary lens-family combinators"; license = stdenv.lib.licenses.bsd3; @@ -140647,6 +140831,7 @@ self: { libraryHaskellDepends = [ base lens-family lens-family-core lens-family-th mtl transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/lens-simple"; description = "simplified import of elementary lens-family combinators"; license = stdenv.lib.licenses.bsd3; @@ -140661,6 +140846,7 @@ self: { libraryHaskellDepends = [ base fclabels generics-sop transformers ]; + jailbreak = true; description = "Computing lenses generically using generics-sop"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -140710,6 +140896,7 @@ self: { version = "1.2"; sha256 = "2baa0afaf1cfd406335b940c9fc375ab5bbd0bb1f26fb8eca613b901e04d59fb"; libraryHaskellDepends = [ base lens ]; + jailbreak = true; homepage = "https://github.com/wdanilo/lens-utils"; description = "Collection of missing lens utilities"; license = stdenv.lib.licenses.asl20; @@ -140760,6 +140947,7 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; + jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -140785,6 +140973,7 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; + jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -140838,6 +141027,7 @@ self: { ansi-wl-pprint base csv directory filemanip filepath hspec natural-sort optparse-applicative parsec regex-tdfa ]; + jailbreak = true; homepage = "http://www.ariis.it/static/articles/lentil/page.html"; description = "frugal issue tracker"; license = stdenv.lib.licenses.gpl3; @@ -140850,6 +141040,7 @@ self: { version = "0.1"; sha256 = "98b3aef14ca16218ecd6643812e9df5dde5c60af6e2f56f98ec523ecc0917397"; libraryHaskellDepends = [ base base-unicode-symbols transformers ]; + jailbreak = true; description = "Van Laarhoven lenses"; license = "unknown"; }) {}; @@ -140865,6 +141056,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols containers lenz template-haskell ]; + jailbreak = true; description = "Van Laarhoven lens templates"; license = "unknown"; }) {}; @@ -140936,7 +141128,6 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) leveldb;}; "leveldb-haskell-fork" = callPackage @@ -140964,7 +141155,6 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) leveldb;}; "levmar" = callPackage @@ -140978,7 +141168,6 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "levmar-chart" = callPackage @@ -140997,7 +141186,6 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lexer-applicative" = callPackage @@ -141057,7 +141245,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lha" = callPackage @@ -141070,7 +141257,6 @@ self: { homepage = "https://github.com/bytbox/lha.hs"; description = "Data structures for the Les Houches Accord"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhae" = callPackage @@ -141092,7 +141278,6 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhc" = callPackage @@ -141130,7 +141315,6 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -141233,7 +141417,6 @@ self: { homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libarchive-conduit" = callPackage @@ -141250,29 +141433,28 @@ self: { librarySystemDepends = [ archive ]; description = "Read many archive formats with libarchive and conduit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {archive = null;}; "libconfig" = callPackage - ({ mkDerivation, base, binary, c2hs, deepseq, doctest, doctest-prop - , hashable, libconfig, text, text-binary, transformers - , transformers-compat + ({ mkDerivation, base, binary, c2hs, cereal, cereal-text, deepseq + , doctest, doctest-prop, hashable, lens, libconfig, profunctors + , text, text-binary, transformers, transformers-compat }: mkDerivation { pname = "libconfig"; version = "0.3.0.0"; sha256 = "22605b11f7e9e9b9a94cbbc12172660e177e968384bbc462573c79c3bcdb5994"; libraryHaskellDepends = [ - base binary deepseq hashable text text-binary transformers - transformers-compat + base binary cereal cereal-text deepseq hashable profunctors text + text-binary transformers transformers-compat ]; librarySystemDepends = [ libconfig ]; libraryToolDepends = [ c2hs ]; - testHaskellDepends = [ base doctest doctest-prop ]; + testHaskellDepends = [ base doctest doctest-prop lens ]; + jailbreak = true; homepage = "https://github.com/peddie/libconfig-haskell"; description = "Haskell bindings to libconfig"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -141295,7 +141477,6 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libexpect" = callPackage @@ -141308,7 +141489,6 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -141363,7 +141543,6 @@ self: { homepage = "http://maartenfaddegon.nl"; description = "Store and manipulate data in a graph"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libhbb" = callPackage @@ -141388,10 +141567,9 @@ self: { homepage = "https://bitbucket.org/bhris/libhbb"; description = "Backend for text editors to provide better Haskell editing support"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "libinfluxdb" = callPackage + "libinfluxdb_0_0_3" = callPackage ({ mkDerivation, base, bytestring, clock, containers, http-client , http-client-tls, http-types, resource-pool, stm, text }: @@ -141403,11 +141581,13 @@ self: { base bytestring clock containers http-client http-client-tls http-types resource-pool stm text ]; + jailbreak = true; description = "libinfluxdb"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "libinfluxdb_0_0_4" = callPackage + "libinfluxdb" = callPackage ({ mkDerivation, base, bytestring, clock, containers, http-client , http-client-tls, http-types, resource-pool, stm, text }: @@ -141421,7 +141601,6 @@ self: { ]; description = "libinfluxdb"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libjenkins" = callPackage @@ -141450,7 +141629,6 @@ self: { ]; description = "Jenkins API interface"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "liblastfm" = callPackage @@ -141492,7 +141670,6 @@ self: { homepage = "http://github.com/NathanHowell/liblinear-enumerator"; description = "liblinear iteratee"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "libltdl" = callPackage @@ -141508,7 +141685,6 @@ self: { homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libmpd" = callPackage @@ -141528,6 +141704,7 @@ self: { attoparsec base bytestring containers data-default-class filepath hspec mtl network old-locale QuickCheck text time unix utf8-string ]; + jailbreak = true; homepage = "http://github.com/vimus/libmpd-haskell#readme"; description = "An MPD client library"; license = stdenv.lib.licenses.mit; @@ -141543,7 +141720,6 @@ self: { librarySystemDepends = [ libnotify ]; description = "Bindings to libnotify library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libnotify;}; "libnvvm" = callPackage @@ -141580,7 +141756,6 @@ self: { homepage = "http://okmij.org/ftp/"; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libpafe" = callPackage @@ -141595,7 +141770,6 @@ self: { jailbreak = true; description = "Wrapper for libpafe"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {pafe = null;}; "libpq" = callPackage @@ -141609,7 +141783,6 @@ self: { homepage = "http://github.com/tnarg/haskell-libpq"; description = "libpq binding for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) postgresql;}; "librandomorg" = callPackage @@ -141707,7 +141880,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libssh2-hs"; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libstackexchange" = callPackage @@ -141744,7 +141916,6 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -141761,10 +141932,10 @@ self: { uniplate unix-bytestring unordered-containers uuid vector ]; libraryPkgconfigDepends = [ systemd ]; + jailbreak = true; homepage = "http://github.com/ocharles/libsystemd-journal"; description = "Haskell bindings to libsystemd-journal"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) systemd;}; "libtagc" = callPackage @@ -141794,7 +141965,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libvirt-hs"; description = "FFI bindings to libvirt virtualization API (http://libvirt.org)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libvirt;}; "libvorbis" = callPackage @@ -141804,6 +141974,7 @@ self: { version = "0.1.0.1"; sha256 = "346fbe26e9229b1e7a8a1841b288b07ae683f6bfdbf2a6aea7caa752b6147b7a"; libraryHaskellDepends = [ base bytestring cpu ]; + jailbreak = true; homepage = "https://github.com/the-real-blackh/libvorbis"; description = "Haskell binding for libvorbis, for decoding Ogg Vorbis audio files"; license = stdenv.lib.licenses.bsd3; @@ -141816,9 +141987,9 @@ self: { version = "0.2"; sha256 = "c6c1185ffd7981c459cd785b0ff3ad40b868a1d6cbf8eb8bd106ec2374aa740e"; libraryHaskellDepends = [ base bindings-DSL ]; + jailbreak = true; description = "Bindings to libxls"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libxml" = callPackage @@ -141831,7 +142002,6 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxml2;}; "libxml-enumerator" = callPackage @@ -141876,7 +142046,6 @@ self: { jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "life" = callPackage @@ -141891,7 +142060,6 @@ self: { homepage = "http://github.com/sproingie/haskell-cells/"; description = "Conway's Life cellular automaton"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lift-generics" = callPackage @@ -142143,7 +142311,6 @@ self: { homepage = "http://icfpcontest2012.wordpress.com/"; description = "A boulderdash-like game and solution validator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ligature" = callPackage @@ -142184,7 +142351,6 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lighttpd-conf-qq" = callPackage @@ -142201,7 +142367,6 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lilypond" = callPackage @@ -142216,9 +142381,9 @@ self: { base data-default music-dynamics-literal music-pitch-literal prettify process semigroups vector-space ]; + jailbreak = true; description = "Bindings to Lilypond"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "limp" = callPackage @@ -142252,7 +142417,6 @@ self: { homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lin-alg" = callPackage @@ -142264,7 +142428,6 @@ self: { libraryHaskellDepends = [ base NumInstances vector ]; description = "Low-dimensional matrices and vectors for graphics and physics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linda" = callPackage @@ -142276,7 +142439,6 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lindenmayer" = callPackage @@ -142537,7 +142699,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "linear" = callPackage + "linear_1_20_4" = callPackage ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes , bytestring, cereal, containers, deepseq, directory, distributive , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection @@ -142567,6 +142729,35 @@ self: { homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "linear" = callPackage + ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes + , bytestring, cereal, containers, deepseq, directory, distributive + , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection + , semigroupoids, semigroups, simple-reflect, tagged + , template-haskell, test-framework, test-framework-hunit + , transformers, transformers-compat, unordered-containers, vector + , void + }: + mkDerivation { + pname = "linear"; + version = "1.20.5"; + sha256 = "61d8b7242f1e7c27925df7ffe1aa8b1fd732e61598f3af48b9999d8fb464cc0d"; + libraryHaskellDepends = [ + adjunctions base base-orphans binary bytes cereal containers + deepseq distributive ghc-prim hashable lens reflection + semigroupoids semigroups tagged template-haskell transformers + transformers-compat unordered-containers vector void + ]; + testHaskellDepends = [ + base binary bytestring directory doctest filepath HUnit lens + simple-reflect test-framework test-framework-hunit + ]; + homepage = "http://github.com/ekmett/linear/"; + description = "Linear Algebra"; + license = stdenv.lib.licenses.bsd3; }) {}; "linear-accelerate" = callPackage @@ -142600,7 +142791,6 @@ self: { homepage = "http://github.com/cartazio/hs-cblas"; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-circuit" = callPackage @@ -142622,7 +142812,6 @@ self: { homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-grammar" = callPackage @@ -142649,7 +142838,6 @@ self: { jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-opengl" = callPackage @@ -142667,7 +142855,6 @@ self: { homepage = "http://www.github.com/bgamari/linear-opengl"; description = "Isomorphisms between linear and OpenGL types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linear-vect" = callPackage @@ -142728,7 +142915,6 @@ self: { homepage = "http://github.com/jwiegley/linearscan-hoopl"; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linebreak" = callPackage @@ -142786,7 +142972,6 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/linkchk/"; description = "linkchk is a network interface link ping monitor"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkcore" = callPackage @@ -142802,7 +142987,6 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkedhashmap" = callPackage @@ -142838,6 +143022,7 @@ self: { aeson base base-prelude bytestring containers http-types text wai wreq ]; + jailbreak = true; homepage = "https://github.com/hlian/linklater"; description = "The fast and fun way to write Slack.com bots"; license = stdenv.lib.licenses.bsd3; @@ -142864,7 +143049,6 @@ self: { homepage = "http://github.com/Helkafen/haskell-linode#readme"; description = "Bindings to the Linode API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-blkid" = callPackage @@ -142882,7 +143066,6 @@ self: { jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {blkid = null;}; "linux-cgroup" = callPackage @@ -142907,7 +143090,6 @@ self: { homepage = "http://github.com/bgamari/linux-evdev"; description = "Bindings to Linux evdev input device interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-file-extents" = callPackage @@ -142922,7 +143104,6 @@ self: { homepage = "https://github.com/redneb/linux-file-extents"; description = "Retrieve file fragmentation information under Linux"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-inotify" = callPackage @@ -142934,7 +143115,6 @@ self: { libraryHaskellDepends = [ base bytestring hashable unix ]; description = "Thinner binding to the Linux Kernel's inotify interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-kmod" = callPackage @@ -142948,7 +143128,6 @@ self: { homepage = "https://github.com/tensor5/linux-kmod"; description = "Linux kernel modules support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {libkmod = null;}; "linux-mount" = callPackage @@ -142961,7 +143140,6 @@ self: { homepage = "https://github.com/tensor5/linux-mount"; description = "Mount and unmount filesystems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-namespaces" = callPackage @@ -142974,7 +143152,6 @@ self: { homepage = "https://github.com/redneb/hs-linux-namespaces"; description = "Create new or enter an existing linux namespaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-perf" = callPackage @@ -142998,7 +143175,6 @@ self: { homepage = "https://github.com/bjpop/haskell-linux-perf"; description = "Read files generated by perf on Linux"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-ptrace" = callPackage @@ -143015,7 +143191,6 @@ self: { jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linux-xattr" = callPackage @@ -143077,7 +143252,6 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lio-fs" = callPackage @@ -143093,7 +143267,6 @@ self: { ]; description = "Labeled File System interface for LIO"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lio-simple" = callPackage @@ -143119,7 +143292,6 @@ self: { homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lipsum-gen" = callPackage @@ -143166,7 +143338,6 @@ self: { homepage = "https://github.com/ucsd-progsys/liquid-fixpoint"; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ocaml; inherit (pkgs) z3;}; "liquidhaskell" = callPackage @@ -143202,10 +143373,10 @@ self: { stm tagged tasty tasty-ant-xml tasty-hunit tasty-rerun transformers ]; testSystemDepends = [ z3 ]; + jailbreak = true; homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "liquidhaskell-cabal" = callPackage @@ -143280,6 +143451,7 @@ self: { sha256 = "1a1ccf5c823de1771c1841ab0dc53e146e7911e332bd155b198025348deca689"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -143293,6 +143465,7 @@ self: { sha256 = "7471363bd737abca1888bb8274cb3fef8f4fc925875b27fa0901efa1358adb50"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -143532,6 +143705,7 @@ self: { transformers-base ]; testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/list-t"; description = "ListT done right"; @@ -143554,6 +143728,7 @@ self: { transformers-base ]; testHaskellDepends = [ base-prelude HTF mmorph mtl-prelude ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/list-t"; description = "ListT done right"; @@ -143623,7 +143798,6 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-html-parser"; description = "Streaming HTML parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -143692,6 +143866,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base binary containers dlist ]; executableHaskellDepends = [ base binary containers dlist ]; + jailbreak = true; homepage = "http://iki.fi/matti.niemenmaa/list-tries/"; description = "Tries and Patricia tries: finite sets and maps for list keys"; license = stdenv.lib.licenses.bsd3; @@ -143704,6 +143879,7 @@ self: { version = "0.1.0.1"; sha256 = "d0447f7e5347eb2b8e6d27ddcc647677b5e33a44c3e61995c2faa99deed3ca1d"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Provides zips where the combining doesn't stop premature, but instead uses default values"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -143719,7 +143895,6 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lists" = callPackage @@ -143775,7 +143950,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "live-sequencer" = callPackage @@ -143804,7 +143978,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ll-picosat" = callPackage @@ -143817,7 +143990,6 @@ self: { librarySystemDepends = [ picosat ]; jailbreak = true; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -143851,7 +144023,6 @@ self: { homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm" = callPackage @@ -143869,7 +144040,6 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -143897,7 +144067,6 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base" = callPackage @@ -143910,7 +144079,6 @@ self: { homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-types" = callPackage @@ -143930,7 +144098,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-base-util" = callPackage @@ -143943,7 +144110,6 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-data-interop" = callPackage @@ -143964,7 +144130,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-extra" = callPackage @@ -143981,10 +144146,10 @@ self: { base containers cpuid llvm-tf non-empty tfp transformers unsafe utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ffi" = callPackage @@ -144000,7 +144165,6 @@ self: { homepage = "http://haskell.org/haskellwiki/LLVM"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) llvm;}; "llvm-general" = callPackage @@ -144025,10 +144189,10 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 transformers transformers-compat ]; + jailbreak = true; homepage = "http://github.com/bscarlet/llvm-general/"; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -144075,7 +144239,6 @@ self: { homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ht" = callPackage @@ -144092,7 +144255,6 @@ self: { homepage = "http://darcs.serpentine.com/llvm/"; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-pkg-config" = callPackage @@ -144108,6 +144270,7 @@ self: { executableHaskellDepends = [ base Cabal explicit-exception process transformers utility-ht ]; + jailbreak = true; description = "Generate Pkg-Config configuration file for LLVM"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -144163,9 +144326,9 @@ self: { base containers llvm-ffi non-empty process storable-record tfp transformers utility-ht ]; + jailbreak = true; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-tools" = callPackage @@ -144193,7 +144356,6 @@ self: { jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmdb" = callPackage @@ -144207,7 +144369,6 @@ self: { homepage = "http://github.com/dmbarbour/haskell-lmdb"; description = "Lightning MDB bindings"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lmdb;}; "lmonad" = callPackage @@ -144228,7 +144389,6 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lmonad-yesod" = callPackage @@ -144249,7 +144409,6 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "load-env" = callPackage @@ -144301,7 +144460,6 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellLocalSearch"; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "located" = callPackage @@ -144360,7 +144518,6 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loch-th" = callPackage @@ -144419,7 +144576,6 @@ self: { ]; description = "Very simple poll lock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lockfree-queue" = callPackage @@ -144462,7 +144618,6 @@ self: { homepage = "https://github.com/scrive/log"; description = "Structured logging solution with multiple backends"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "log-domain_0_9_3" = callPackage @@ -144654,6 +144809,8 @@ self: { pname = "log-domain"; version = "0.10.3.1"; sha256 = "36f427506218358b20a2066d5fb38406816fabac18ca26c807a416a795643815"; + revision = "1"; + editedCabalFile = "ff544f4bf06996c1775f8c59c0cbf949a60ef50c6ec9404c851bc885612e2498"; libraryHaskellDepends = [ base binary bytes cereal comonad deepseq distributive hashable hashable-extras safecopy semigroupoids semigroups vector @@ -144682,7 +144839,6 @@ self: { homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log2json" = callPackage @@ -144698,7 +144854,6 @@ self: { homepage = "https://github.com/haroldl/log2json"; description = "Turn log file records into JSON"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logfloat_0_12_1" = callPackage @@ -144739,6 +144894,7 @@ self: { ansi-wl-pprint base containers lens mtl template-haskell time time-locale-compat transformers transformers-compat unagi-chan ]; + jailbreak = true; homepage = "https://github.com/wdanilo/haskell-logger"; description = "Fast & extensible logging framework"; license = stdenv.lib.licenses.asl20; @@ -144775,6 +144931,7 @@ self: { async base exceptions free monad-control mtl stm stm-delay text time transformers transformers-base wl-pprint-text ]; + jailbreak = true; homepage = "https://github.com/ocharles/logging-effect"; description = "A mtl-style monad transformer for general purpose & compositional logging"; license = stdenv.lib.licenses.bsd3; @@ -144837,7 +144994,6 @@ self: { ]; description = "Journald back-end for logging-facade"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "logic-TPTP" = callPackage @@ -144878,7 +145034,6 @@ self: { homepage = "https://github.com/seereason/logic-classes"; description = "Framework for propositional and first order logic, theorem proving"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logicst" = callPackage @@ -144925,6 +145080,7 @@ self: { sha256 = "e802251aa40c73f9dea2ebe0b7bd92450b94a513343f165cccb2e86489403604"; libraryHaskellDepends = [ base iso8601-time parsec text time ]; testHaskellDepends = [ base hspec time ]; + jailbreak = true; homepage = "https://github.com/keithduncan/logplex-parse"; description = "Parse Heroku application/logplex documents"; license = stdenv.lib.licenses.mit; @@ -144963,7 +145119,6 @@ self: { jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanParser" = callPackage @@ -144978,7 +145133,6 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanXiragan" = callPackage @@ -144993,7 +145147,6 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojysamban" = callPackage @@ -145008,7 +145161,6 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/lojysamban.html"; description = "Prolog with lojban"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lol" = callPackage @@ -145036,10 +145188,10 @@ self: { base constraints deepseq DRBG MonadRandom mtl QuickCheck random repa singletons test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/cpeikert/Lol"; description = "A library for lattice cryptography"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "lol-apps" = callPackage @@ -145060,10 +145212,10 @@ self: { base constraints deepseq DRBG lol MonadRandom mtl QuickCheck random repa singletons test-framework test-framework-quickcheck2 vector ]; + jailbreak = true; homepage = "https://github.com/cpeikert/Lol"; description = "Lattice-based cryptographic applications using Lol"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loli" = callPackage @@ -145082,7 +145234,6 @@ self: { homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lookup-tables" = callPackage @@ -145095,6 +145246,7 @@ self: { sha256 = "bb9ee2cea827e146d510804c6b26c6f1a62032215eba4da7eb5bb67f977c478e"; libraryHaskellDepends = [ base primitive template-haskell ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; homepage = "http://hub.darcs.net/jmcarthur/lookup-tables/issues"; description = "Statically generate lookup tables using Template Haskell"; license = stdenv.lib.licenses.isc; @@ -145138,7 +145290,6 @@ self: { homepage = "https://github.com/konn/loop-effin"; description = "control-monad-loop port for effin"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loop-while" = callPackage @@ -145186,7 +145337,6 @@ self: { homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king"; description = "Find all biological feedback loops within an ecosystem graph"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lord" = callPackage @@ -145227,7 +145377,6 @@ self: { homepage = "https://github.com/rnons/lord"; description = "A command line interface to online radios"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lorem" = callPackage @@ -145259,7 +145408,6 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {loris = null;}; "loshadka" = callPackage @@ -145299,7 +145447,6 @@ self: { homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lowgl" = callPackage @@ -145312,7 +145459,6 @@ self: { jailbreak = true; description = "Basic gl wrapper and reference"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lp-diagrams" = callPackage @@ -145389,7 +145535,6 @@ self: { homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lscabal" = callPackage @@ -145408,7 +145553,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lss" = callPackage @@ -145447,7 +145591,6 @@ self: { ]; description = "Paint an L-System Grammar"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltext" = callPackage @@ -145471,6 +145614,7 @@ self: { transformers yaml ]; testHaskellDepends = [ base hspec mtl ]; + jailbreak = true; description = "Higher-order file applicator"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -145487,10 +145631,10 @@ self: { base Cabal containers filepath ghc glib gtk3 mtl parsec pretty text transformers ]; + jailbreak = true; homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ltl" = callPackage @@ -145553,7 +145697,6 @@ self: { jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luautils" = callPackage @@ -145727,6 +145870,7 @@ self: { libraryHaskellDepends = [ base blaze-builder lucid text transformers ]; + jailbreak = true; homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; @@ -145742,6 +145886,7 @@ self: { libraryHaskellDepends = [ base blaze-builder lucid text transformers ]; + jailbreak = true; homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; @@ -145757,6 +145902,7 @@ self: { libraryHaskellDepends = [ base blaze-builder lucid text transformers ]; + jailbreak = true; homepage = "http://github.com/jeffreyrosenbluth/lucid-svg.git"; description = "DSL for SVG using lucid for HTML"; license = stdenv.lib.licenses.bsd3; @@ -145782,7 +145928,6 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luhn" = callPackage @@ -145809,7 +145954,6 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luis-client" = callPackage @@ -145839,7 +145983,6 @@ self: { homepage = "https://github.com/nfjinjing/luka"; description = "Simple ObjectiveC runtime binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {objc = null;}; "luminance_0_9_1" = callPackage @@ -145873,6 +146016,7 @@ self: { base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void ]; + jailbreak = true; homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; @@ -145891,10 +146035,10 @@ self: { base containers contravariant dlist gl linear mtl resourcet semigroups transformers vector void ]; + jailbreak = true; homepage = "https://github.com/phaazon/luminance"; description = "Type-safe, type-level and stateless graphics framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "luminance-samples_0_9" = callPackage @@ -145953,10 +146097,10 @@ self: { base contravariant GLFW-b JuicyPixels linear luminance mtl resourcet transformers ]; + jailbreak = true; homepage = "https://github.com/phaazon/luminance-samples"; description = "Luminance samples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lushtags" = callPackage @@ -145972,7 +146116,6 @@ self: { homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luthor" = callPackage @@ -145986,7 +146129,6 @@ self: { homepage = "https://github.com/Zankoku-Okuno/luthor"; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvish" = callPackage @@ -146015,7 +146157,6 @@ self: { jailbreak = true; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmlib" = callPackage @@ -146037,7 +146178,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Lazy Virtual Machine (LVM)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmrun" = callPackage @@ -146063,7 +146203,6 @@ self: { homepage = "https://github.com/fizruk/lxc"; description = "High level Haskell bindings to LXC (Linux containers)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "lye" = callPackage @@ -146081,7 +146220,6 @@ self: { ]; description = "A Lilypond-compiling music box"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lz4" = callPackage @@ -146117,7 +146255,6 @@ self: { homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) lzma;}; "lzma-clib" = callPackage @@ -146175,6 +146312,7 @@ self: { base bytestring conduit HUnit QuickCheck resourcet test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "http://github.com/alphaHeavy/lzma-conduit"; description = "Conduit interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; @@ -146198,6 +146336,7 @@ self: { base bytestring conduit HUnit QuickCheck resourcet test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/alphaHeavy/lzma-conduit"; description = "Conduit interface for lzma/xz compression"; @@ -146222,6 +146361,7 @@ self: { base bytestring conduit HUnit QuickCheck resourcet test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/alphaHeavy/lzma-conduit"; description = "Conduit interface for lzma/xz compression"; @@ -146270,7 +146410,6 @@ self: { homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "maam" = callPackage @@ -146285,6 +146424,7 @@ self: { libraryHaskellDepends = [ base containers template-haskell text vector ]; + jailbreak = true; description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -146324,7 +146464,6 @@ self: { homepage = "http://www.macbeth-ficsclient.com"; description = "Macbeth - A beautiful and minimalistic FICS client"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maccatcher" = callPackage @@ -146382,7 +146521,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "machines" = callPackage + "machines_0_5_1" = callPackage ({ mkDerivation, base, comonad, containers, directory, doctest , filepath, free, mtl, pointed, profunctors, semigroups , transformers, void @@ -146403,9 +146542,10 @@ self: { homepage = "http://github.com/ekmett/machines/"; description = "Networked stream transducers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "machines_0_6" = callPackage + "machines" = callPackage ({ mkDerivation, adjunctions, base, comonad, containers, directory , distributive, doctest, filepath, free, mtl, pointed, profunctors , semigroupoids, semigroups, transformers, transformers-compat @@ -146425,7 +146565,6 @@ self: { homepage = "http://github.com/ekmett/machines/"; description = "Networked stream transducers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "machines-binary" = callPackage @@ -146435,6 +146574,7 @@ self: { version = "0.3.0.2"; sha256 = "c0c6c1a3869b3890d1b003a4adf4e91a5ae0921e775a9bfc126aa11bee663726"; libraryHaskellDepends = [ base binary bytestring machines ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-binary"; description = "Binary utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146487,6 +146627,7 @@ self: { libraryHaskellDepends = [ base directory filepath machines machines-io transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-directory"; description = "Directory (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146504,6 +146645,7 @@ self: { libraryHaskellDepends = [ base directory filepath machines machines-io transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-directory"; description = "Directory (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146556,6 +146698,7 @@ self: { libraryHaskellDepends = [ base bytestring chunked-data machines transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146573,6 +146716,7 @@ self: { libraryHaskellDepends = [ base bytestring chunked-data machines transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146590,6 +146734,7 @@ self: { libraryHaskellDepends = [ base bytestring chunked-data machines transformers ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146656,6 +146801,7 @@ self: { libraryHaskellDepends = [ base chunked-data machines machines-io process ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-process"; description = "Process (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146672,6 +146818,7 @@ self: { libraryHaskellDepends = [ base chunked-data machines machines-io process ]; + jailbreak = true; homepage = "http://github.com/aloiscochard/machines-process"; description = "Process (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; @@ -146761,7 +146908,6 @@ self: { homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz"; description = "Rogue-like"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -146791,7 +146937,6 @@ self: { homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "magma" = callPackage @@ -146825,7 +146970,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/mahoro"; description = "ImageBoards to XMPP gate"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maid" = callPackage @@ -146988,7 +147132,6 @@ self: { jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "majority" = callPackage @@ -147001,7 +147144,6 @@ self: { homepage = "https://github.com/niswegmann/majority"; description = "Boyer-Moore Majority Vote Algorithm"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -147039,7 +147181,6 @@ self: { homepage = "https://github.com/Philonous/make-package"; description = "Make a cabalized package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "makedo" = callPackage @@ -147064,6 +147205,7 @@ self: { revision = "1"; editedCabalFile = "e785d7abda6ca46246fcb4531202a68c71a17c0f1bfffe07bbcf7408bf0b1986"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "A monad for managed values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147078,6 +147220,7 @@ self: { revision = "1"; editedCabalFile = "0baecb7e8c20aadcb65399e72b2db383cca207b7a3fafd22c637cff387e022ba"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "A monad for managed values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147090,6 +147233,7 @@ self: { version = "1.0.2"; sha256 = "f2f562c1c9a1c5b2a73593fe9989c651fda86f67eee65be20861d151911a663c"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "A monad for managed values"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -147109,7 +147253,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "managed" = callPackage + "managed_1_0_4" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "managed"; @@ -147118,6 +147262,18 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A monad for managed values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "managed" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "managed"; + version = "1.0.5"; + sha256 = "b9c99943dadaa730ea3d889a09c3ca0efa1b7728f2bb0854815d49f40d4772e0"; + libraryHaskellDepends = [ base transformers ]; + description = "A monad for managed values"; + license = stdenv.lib.licenses.bsd3; }) {}; "manatee" = callPackage @@ -147139,7 +147295,6 @@ self: { jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-all" = callPackage @@ -147165,7 +147320,6 @@ self: { doHaddock = false; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-anything" = callPackage @@ -147187,7 +147341,6 @@ self: { jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-browser" = callPackage @@ -147207,7 +147360,6 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-core" = callPackage @@ -147232,7 +147384,6 @@ self: { jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -147255,7 +147406,6 @@ self: { jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-editor" = callPackage @@ -147276,7 +147426,6 @@ self: { jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-filemanager" = callPackage @@ -147297,7 +147446,6 @@ self: { jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-imageviewer" = callPackage @@ -147318,7 +147466,6 @@ self: { jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-ircclient" = callPackage @@ -147343,7 +147490,6 @@ self: { jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -147365,7 +147511,6 @@ self: { jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -147386,7 +147531,6 @@ self: { jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-processmanager" = callPackage @@ -147406,7 +147550,6 @@ self: { jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-reader" = callPackage @@ -147427,7 +147570,6 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-template" = callPackage @@ -147448,7 +147590,6 @@ self: { jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-terminal" = callPackage @@ -147468,7 +147609,6 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-welcome" = callPackage @@ -147489,7 +147629,6 @@ self: { jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mancala" = callPackage @@ -147747,7 +147886,6 @@ self: { homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mangopay_1_11_4" = callPackage @@ -147872,7 +148010,6 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manifold-random" = callPackage @@ -147886,7 +148023,6 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manifolds" = callPackage @@ -147906,7 +148042,6 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "map-exts" = callPackage @@ -147938,6 +148073,7 @@ self: { base containers deepseq HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Syntax sugar for defining maps"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -147962,7 +148098,6 @@ self: { homepage = "https://github.com/PolyglotSymposium/mappy"; description = "A functional programming language focused around maps"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marionetta" = callPackage @@ -147982,7 +148117,6 @@ self: { homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown_0_1_13" = callPackage @@ -148099,7 +148233,6 @@ self: { homepage = "https://github.com/joelteon/markdown-kate"; description = "Convert Markdown to HTML, with XSS protection"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-pap" = callPackage @@ -148111,7 +148244,6 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-unlit_0_2_0_1" = callPackage @@ -148171,7 +148303,6 @@ self: { ]; description = "markdown to svg converter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marked-pretty" = callPackage @@ -148205,6 +148336,7 @@ self: { version = "0.0.3.3"; sha256 = "a8d32b259b4d5508c4c2fce44013c2d095f808fe5af072144ccabc669c962ef9"; 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"; @@ -148224,7 +148356,6 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markup_1_1_0" = callPackage @@ -148283,7 +148414,6 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marmalade-upload" = callPackage @@ -148314,7 +148444,6 @@ self: { homepage = "https://github.com/lunaryorn/marmalade-upload"; description = "Upload packages to Marmalade"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marquise" = callPackage @@ -148349,7 +148478,6 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marxup" = callPackage @@ -148375,7 +148503,6 @@ self: { jailbreak = true; description = "Markup language preprocessor for Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "masakazu-bot" = callPackage @@ -148400,7 +148527,6 @@ self: { homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mastermind" = callPackage @@ -148445,7 +148571,6 @@ self: { homepage = "http://www.github.com/massysett/matchers"; description = "Text matchers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-functions_0_1_5_2" = callPackage @@ -148548,7 +148673,6 @@ self: { homepage = "http://jtdaugherty.github.io/mathblog/"; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathgenealogy" = callPackage @@ -148610,7 +148734,6 @@ self: { homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "matlab" = callPackage @@ -148624,7 +148747,6 @@ self: { jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {eng = null; mat = null; mx = null;}; "matrices_0_4_2" = callPackage @@ -148734,7 +148856,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "matrix" = callPackage + "matrix_0_3_4_4" = callPackage ({ mkDerivation, base, deepseq, loop, primitive, QuickCheck, tasty , tasty-quickcheck, vector }: @@ -148746,6 +148868,21 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A native implementation of matrix operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "matrix" = callPackage + ({ mkDerivation, base, deepseq, loop, primitive, QuickCheck, tasty + , tasty-quickcheck, vector + }: + mkDerivation { + pname = "matrix"; + version = "0.3.5.0"; + sha256 = "7a3d41c0f66212360057b29ae9f81779c8da9f71b040ad7676699af7e7ca35b5"; + libraryHaskellDepends = [ base deepseq loop primitive vector ]; + testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + description = "A native implementation of matrix operations"; + license = stdenv.lib.licenses.bsd3; }) {}; "matrix-market" = callPackage @@ -148789,7 +148926,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "ncurses XMPP client"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maude" = callPackage @@ -148806,7 +148942,6 @@ self: { homepage = "https://github.com/davidlazar/maude-hs"; description = "An interface to the Maude rewriting system"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maxent" = callPackage @@ -148830,7 +148965,6 @@ self: { homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maximal-cliques" = callPackage @@ -148864,7 +148998,6 @@ self: { homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maybe-justify" = callPackage @@ -148897,7 +149030,6 @@ self: { homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mbox_0_3" = callPackage @@ -148955,7 +149087,6 @@ self: { homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmaster-gloss-examples" = callPackage @@ -148970,7 +149101,6 @@ self: { jailbreak = true; homepage = "http://www.cas.mcmaster.ca/~anand/"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mcmc-samplers" = callPackage @@ -148987,7 +149117,6 @@ self: { jailbreak = true; description = "Combinators for MCMC sampling"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mcmc-synthesis" = callPackage @@ -149046,6 +149175,7 @@ self: { aeson base bytestring data-default lens lens-aeson text transformers wreq ]; + jailbreak = true; homepage = "https://github.com/relrod/mdapi-hs"; description = "Haskell interface to Fedora's mdapi"; license = stdenv.lib.licenses.bsd2; @@ -149070,7 +149200,6 @@ self: { homepage = "https://github.com/dorafmon/mdcat"; description = "Markdown viewer in your terminal"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mdo" = callPackage @@ -149100,6 +149229,7 @@ self: { testHaskellDepends = [ base containers HTF HUnit QuickCheck vector ]; + jailbreak = true; description = "Tools for solving Markov Decision Processes"; license = stdenv.lib.licenses.mit; }) {}; @@ -149116,7 +149246,6 @@ self: { homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {mecab = null;}; "mecha" = callPackage @@ -149149,7 +149278,6 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mediawiki2latex" = callPackage @@ -149175,7 +149303,6 @@ self: { homepage = "http://sourceforge.net/projects/wb2pdf/"; description = "Convert MediaWiki text to LaTeX"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "medium-sdk-haskell" = callPackage @@ -149193,7 +149320,6 @@ self: { jailbreak = true; description = "Haskell SDK for communicating with the Medium API"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meep" = callPackage @@ -149214,7 +149340,6 @@ self: { ]; description = "A silly container"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mega-sdist" = callPackage @@ -149236,7 +149361,6 @@ self: { homepage = "https://github.com/snoyberg/mega-sdist"; description = "Handles uploading to Hackage from mega repos (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "megaparsec_4_2_0" = callPackage @@ -149253,6 +149377,7 @@ self: { base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; @@ -149281,18 +149406,16 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, fail, HUnit, mtl, QuickCheck - , semigroups, test-framework, test-framework-hunit - , test-framework-quickcheck2, text, transformers + "megaparsec_4_4_0" = callPackage + ({ mkDerivation, base, bytestring, HUnit, mtl, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text, transformers }: mkDerivation { pname = "megaparsec"; version = "4.4.0"; sha256 = "93addf2a1cf14cb88fd67ea9951d8dd76bcb75960936a517b13787ed0e26f310"; - libraryHaskellDepends = [ - base bytestring fail mtl semigroups text transformers - ]; + libraryHaskellDepends = [ base bytestring mtl text transformers ]; testHaskellDepends = [ base HUnit mtl QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 transformers @@ -149300,32 +149423,30 @@ self: { homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "megaparsec_5_0_0" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , HUnit, mtl, QuickCheck, scientific, semigroups, test-framework - , test-framework-hunit, test-framework-quickcheck2, text - , transformers + "megaparsec" = callPackage + ({ mkDerivation, base, bytestring, containers, exceptions, HUnit + , mtl, QuickCheck, scientific, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, transformers }: mkDerivation { pname = "megaparsec"; version = "5.0.0"; sha256 = "6ed6448cfd5f37017296b5ce170e037d11855c9d52e7ef01103313514fbead70"; libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl scientific - semigroups text transformers + base bytestring containers exceptions mtl scientific text + transformers ]; testHaskellDepends = [ base bytestring containers exceptions HUnit mtl QuickCheck - scientific semigroups test-framework test-framework-hunit + scientific test-framework test-framework-hunit test-framework-quickcheck2 text transformers ]; - jailbreak = true; homepage = "https://github.com/mrkkrp/megaparsec"; description = "Monadic parser combinators"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "meldable-heap" = callPackage @@ -149360,22 +149481,25 @@ self: { jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memcache" = callPackage - ({ mkDerivation, base, binary, blaze-builder, bytestring, hashable - , network, resource-pool, time, vector, vector-algorithms + ({ mkDerivation, base, binary, blaze-builder, bytestring + , data-default-class, hashable, network, resource-pool, time + , vector }: mkDerivation { pname = "memcache"; - version = "0.1.0.1"; - sha256 = "d5394f0c6beaa8fff82de230c751d930426cce49a53bff841adc09c6c382140a"; + version = "0.2.0.0"; + sha256 = "348f9f78616185655b96b281a9436522a711349fc51c093dd6fc6a41bfdde3cf"; libraryHaskellDepends = [ - base binary blaze-builder bytestring hashable network resource-pool - time vector vector-algorithms + base binary blaze-builder bytestring data-default-class hashable + network resource-pool time vector ]; - testHaskellDepends = [ base bytestring ]; + 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; @@ -149463,6 +149587,7 @@ self: { testHaskellDepends = [ base bytestring data-default-class hspec HUnit network process ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/philopon/memcached-binary"; description = "memcached client using binary protocol"; @@ -149488,6 +149613,7 @@ self: { version = "0.1.0.0"; sha256 = "29b84899c725d87518cb4cb2313d9a29c775a229116e8286ce0cb8ddc631c3ef"; libraryHaskellDepends = [ base containers ]; + jailbreak = true; description = "Pointer equality memoization"; license = stdenv.lib.licenses.mit; }) {}; @@ -149503,7 +149629,6 @@ self: { homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memoization-utils" = callPackage @@ -149518,6 +149643,7 @@ self: { base containers lrucache time time-units ]; testHaskellDepends = [ base hspec time time-units ]; + jailbreak = true; homepage = "http://github.com/yamadapc/haskell-memoization-utils"; description = "Utilities for memoizing functions"; license = stdenv.lib.licenses.mit; @@ -149532,6 +149658,7 @@ self: { revision = "1"; editedCabalFile = "4dccaf9fbeff4ff6207a78541ec3a6592db9c732fc65aa8bef1c5d8ff9c1f9f2"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; description = "A memoization library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -149548,6 +149675,7 @@ self: { editedCabalFile = "380f7409f7c1bf0d287aefe77267e7d18858f556672519348b26d351f9538f23"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/vincenthz/hs-memory"; description = "memory and related abtraction stuff"; license = stdenv.lib.licenses.bsd3; @@ -149566,6 +149694,7 @@ self: { editedCabalFile = "f45af2b5e7abcf5f66673d053d3531a62cd6417b3830c0ae375ee704c4c539c8"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/vincenthz/hs-memory"; description = "memory and related abtraction stuff"; license = stdenv.lib.licenses.bsd3; @@ -149584,6 +149713,7 @@ self: { editedCabalFile = "077f03d446f54b00ecc4b9b3af646532f6e9d0a455b911ddfaf2484507c48433"; libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/vincenthz/hs-memory"; description = "memory and related abstraction stuff"; license = stdenv.lib.licenses.bsd3; @@ -149846,7 +149976,6 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metadata" = callPackage @@ -149856,10 +149985,10 @@ self: { version = "0.4.3.0"; sha256 = "bfb2da5ff25544a36364e2e1560034ad9bfed0bd76e317567e4a6d3def7bc020"; libraryHaskellDepends = [ base text time ]; + jailbreak = true; homepage = "https://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "metamorphic" = callPackage @@ -149883,7 +150012,6 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metric" = callPackage @@ -149902,7 +150030,6 @@ self: { ]; description = "Metric spaces"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metrics" = callPackage @@ -149943,14 +150070,13 @@ self: { ({ mkDerivation, base, data-lens, data-lens-template, hosc, stm }: mkDerivation { pname = "metronome"; - version = "0.1"; - sha256 = "8ccb6dba705ab70f14f415adf022744346d8069033ec70e38635255e347aa03f"; + version = "0.1.1"; + sha256 = "ee48c7cf5825d4fbf5979ce261d55da8ac4754b88192194fb97e844708436ff0"; libraryHaskellDepends = [ base data-lens data-lens-template hosc stm ]; description = "Time Synchronized execution"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mezzolens" = callPackage @@ -149960,6 +150086,7 @@ self: { version = "0.0.0"; sha256 = "8252be7d73700b7401c87248e6eb5cb23873d0ce092f9b15583c4fd59b46df2b"; libraryHaskellDepends = [ base containers mtl transformers ]; + jailbreak = true; description = "Pure Profunctor Functional Lenses"; license = stdenv.lib.licenses.asl20; }) {}; @@ -150224,6 +150351,7 @@ self: { version = "0.4.4.0"; sha256 = "376423b8820d620644e919ff0333800cf499fcdf3969fa13a24494c66d0c64a2"; libraryHaskellDepends = [ base ]; + doHaddock = false; homepage = "http://github.com/aelve/microlens"; description = "A tiny part of the lens library with no dependencies"; license = stdenv.lib.licenses.bsd3; @@ -150273,7 +150401,6 @@ self: { homepage = "http://github.com/fosskers/microlens-aeson/"; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "microlens-contra_0_1_0_0" = callPackage @@ -150657,6 +150784,7 @@ self: { libraryHaskellDepends = [ base containers microlens template-haskell ]; + jailbreak = true; homepage = "http://github.com/aelve/microlens"; description = "Automatic generation of record lenses for microlens"; license = stdenv.lib.licenses.bsd3; @@ -150749,7 +150877,6 @@ self: { homepage = "https://github.com/mrkkrp/mida"; description = "Language for algorithmic generation of MIDI files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "midair" = callPackage @@ -150759,6 +150886,7 @@ self: { version = "0.2.0.0"; sha256 = "32262281f8785a3fa4ab6c60302566a8dcf59287f0da95e4d42bb8212f88b1b9"; libraryHaskellDepends = [ base containers safe stm ]; + jailbreak = true; description = "Hot-swappable FRP"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -150798,7 +150926,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Convert between datatypes of the midi and the alsa packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midi-music-box" = callPackage @@ -150816,6 +150943,7 @@ self: { base containers diagrams-lib diagrams-postscript event-list midi non-empty optparse-applicative utility-ht ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/midi-music-box"; description = "Convert MIDI file to music box punch tape"; license = stdenv.lib.licenses.bsd3; @@ -150831,6 +150959,7 @@ self: { libraryHaskellDepends = [ base containers event-list midi non-negative ]; + jailbreak = true; homepage = "http://github.com/mtolly/midi-util"; description = "Utility functions for processing MIDI files"; license = stdenv.lib.licenses.bsd3; @@ -150853,7 +150982,6 @@ self: { homepage = "http://www.youtube.com/watch?v=cOlR73h2uII"; description = "A Memory-like (Concentration, Pairs, ...) game for tones"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "midisurface" = callPackage @@ -150872,7 +151000,6 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd" = callPackage @@ -150893,7 +151020,6 @@ self: { homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "Simple Web Server in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -150951,10 +151077,10 @@ self: { version = "0.2.0.1"; sha256 = "b7d2b0aa2288f5874aad326043676f667bc61e930d0a5e9c5a90243807e023ed"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "https://github.com/evanrinehart/mikmod"; description = "MikMod bindings"; license = "LGPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miku" = callPackage @@ -150992,6 +151118,7 @@ self: { base bytestring lens mtl network QuickCheck semigroups tasty tasty-hspec tasty-quickcheck ]; + jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -151253,7 +151380,6 @@ self: { ]; description = "MIME implementation for String's"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mime-types_0_1_0_4" = callPackage @@ -151338,7 +151464,6 @@ self: { jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniball" = callPackage @@ -151351,7 +151476,6 @@ self: { homepage = "http://nonempty.org/software/haskell-miniball"; description = "Bindings to Miniball, a smallest enclosing ball library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "miniforth" = callPackage @@ -151374,7 +151498,6 @@ self: { jailbreak = true; description = "Miniature FORTH-like interpreter"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minilens" = callPackage @@ -151398,8 +151521,8 @@ self: { ({ mkDerivation, base, containers, directory, filepath, tconfig }: mkDerivation { pname = "minimal-configuration"; - version = "0.1.2"; - sha256 = "7debae44339df6a1c35e99be9807df430fac30d6c27b606f36fe23deed4d928e"; + version = "0.1.3"; + sha256 = "7c574ce43ed0145dd6d30c98386b4d183c7b69320c22100c613a942b32b0c544"; libraryHaskellDepends = [ base containers directory filepath tconfig ]; @@ -151435,7 +151558,6 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minions" = callPackage @@ -151470,7 +151592,6 @@ self: { homepage = "https://github.com/fumieval/minioperational"; description = "fast and simple operational monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniplex" = callPackage @@ -151488,7 +151609,6 @@ self: { jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minirotate" = callPackage @@ -151510,7 +151630,6 @@ self: { homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minisat" = callPackage @@ -151522,7 +151641,6 @@ self: { libraryHaskellDepends = [ async base ]; description = "A Haskell bundle of the Minisat SAT solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ministg" = callPackage @@ -151542,7 +151660,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Ministg"; description = "an interpreter for an operational semantics for the STG machine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniutter" = callPackage @@ -151597,7 +151714,6 @@ self: { homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "misfortune" = callPackage @@ -151645,7 +151761,6 @@ self: { homepage = "https://github.com/domdere/missing-py2"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mix-arrows" = callPackage @@ -151657,7 +151772,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mixed-strategies" = callPackage @@ -151689,7 +151803,6 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mkcabal" = callPackage @@ -151723,7 +151836,6 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mlist" = callPackage @@ -151736,7 +151848,6 @@ self: { homepage = "http://haskell.org/haskellwiki/mlist"; description = "Monadic List alternative to lazy I/O"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmap" = callPackage @@ -151759,6 +151870,7 @@ self: { version = "1.0.4"; sha256 = "22e3665b4c86bf28cb4e836da91f586294d74d1cf1c18db364dcf568eba7bf4c"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "Monad morphisms"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -151798,7 +151910,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmtl-base" = callPackage @@ -151810,7 +151921,6 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mnist-idx" = callPackage @@ -151822,6 +151932,7 @@ self: { sha256 = "e8881f03789ae5046b33a051a0cc5a269614642d5876d893fc4a9c34b9bdad56"; libraryHaskellDepends = [ base binary bytestring vector ]; testHaskellDepends = [ base binary directory hspec vector ]; + jailbreak = true; homepage = "https://github.com/kryoxide/mnist-idx/"; description = "Read and write IDX data that is used in e.g. the MNIST database."; license = stdenv.lib.licenses.gpl3; @@ -151843,7 +151954,6 @@ self: { homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mockery_0_3_0" = callPackage @@ -151936,7 +152046,6 @@ self: { jailbreak = true; description = "A parser for the modelica language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modify-fasta_0_8_0_4" = callPackage @@ -152006,7 +152115,6 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-arithmetic" = callPackage @@ -152040,7 +152148,6 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "A new Prelude featuring first class modules"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-prelude-classy" = callPackage @@ -152054,7 +152161,6 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "module-management" = callPackage @@ -152086,7 +152192,6 @@ self: { homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modulespection" = callPackage @@ -152211,7 +152316,6 @@ self: { homepage = "http://code.haskell.org/mohws/"; description = "Modular Haskell Web Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mole" = callPackage @@ -152238,6 +152342,7 @@ self: { attoparsec base bytestring containers hspec hspec-smallcheck kraken smallcheck stm text time unordered-containers vector ]; + jailbreak = true; description = "A glorified string replacement tool"; license = stdenv.lib.licenses.mit; }) {}; @@ -152257,7 +152362,6 @@ self: { homepage = "https://github.com/mvv/monad-abort-fd"; description = "A better error monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom" = callPackage @@ -152270,7 +152374,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/lingo"; description = "Monadically convert object to unique integers and back"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-atom-simple" = callPackage @@ -152282,7 +152385,6 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-bool" = callPackage @@ -152355,6 +152457,7 @@ self: { sha256 = "ef44c9943760f2120eb450182852d6150390daa2de4b87e9dda9591e89714e6e"; libraryHaskellDepends = [ base transformers transformers-base ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/basvandijk/monad-control"; description = "Lift control operations, like exception catching, through monad transformers"; @@ -152373,6 +152476,7 @@ self: { libraryHaskellDepends = [ base transformers transformers-base transformers-compat ]; + jailbreak = true; homepage = "https://github.com/basvandijk/monad-control"; description = "Lift control operations, like exception catching, through monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -152474,6 +152578,25 @@ self: { libraryHaskellDepends = [ base monad-parallel transformers transformers-compat ]; + jailbreak = true; + homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; + description = "Coroutine monad transformer for suspending and resuming monadic computations"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-coroutine_0_9_0_2" = callPackage + ({ mkDerivation, base, monad-parallel, transformers + , transformers-compat + }: + mkDerivation { + pname = "monad-coroutine"; + version = "0.9.0.2"; + sha256 = "c648272e0578f8d590bdf834aaf2866ebe94474517c34d8e34b4c821469b4da4"; + libraryHaskellDepends = [ + base monad-parallel transformers transformers-compat + ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; description = "Coroutine monad transformer for suspending and resuming monadic computations"; license = "GPL"; @@ -152486,8 +152609,8 @@ self: { }: mkDerivation { pname = "monad-coroutine"; - version = "0.9.0.2"; - sha256 = "c648272e0578f8d590bdf834aaf2866ebe94474517c34d8e34b4c821469b4da4"; + version = "0.9.0.3"; + sha256 = "08aafe8499ef2311a238197b67ec74e5faa8c887a0e24592e38fde37ab64c9e4"; libraryHaskellDepends = [ base monad-parallel transformers transformers-compat ]; @@ -152526,7 +152649,6 @@ self: { jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-extras_0_5_9" = callPackage @@ -152591,8 +152713,8 @@ self: { }: mkDerivation { pname = "monad-hash"; - version = "0.1"; - sha256 = "659cb349165bf1217552818c8a638f07b78f083b7f7961bca975348d78ea4392"; + version = "0.1.0.2"; + sha256 = "aabf8c3c99e1e7283ce6cc42108336c00fd0c7dd9e27d6b1b615f3ef8f8b2d30"; libraryHaskellDepends = [ base cryptonite exceptions memory transformers ]; @@ -152634,7 +152756,6 @@ self: { homepage = "http://github.com/patperry/monad-interleave"; description = "Monads with an unsaveInterleaveIO-like operation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-journal_0_5_0_1" = callPackage @@ -152702,6 +152823,7 @@ self: { libraryHaskellDepends = [ base either monad-control mtl transformers transformers-base ]; + jailbreak = true; homepage = "http://github.com/phaazon/monad-journal"; description = "Pure logger typeclass and monad transformer"; license = stdenv.lib.licenses.bsd3; @@ -152739,7 +152861,6 @@ self: { homepage = "https://github.com/ivan-m/monad-levels"; description = "Specific levels of monad transformers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-log" = callPackage @@ -153077,7 +153198,6 @@ self: { homepage = "https://github.com/bjin/monad-lrs"; description = "a monad to calculate linear recursive sequence"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-memo" = callPackage @@ -153099,7 +153219,6 @@ self: { homepage = "https://github.com/EduardSergeev/monad-memo"; description = "Memoization monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-mersenne-random" = callPackage @@ -153112,7 +153231,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/monad-mersenne-random"; description = "An efficient random generator monad, based on the Mersenne Twister"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-open" = callPackage @@ -153209,6 +153327,7 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -153225,6 +153344,24 @@ self: { libraryHaskellDepends = [ base parallel transformers transformers-compat ]; + jailbreak = true; + homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; + description = "Parallel execution of monadic computations"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monad-parallel_0_7_2_1" = callPackage + ({ mkDerivation, base, parallel, transformers, transformers-compat + }: + mkDerivation { + pname = "monad-parallel"; + version = "0.7.2.1"; + sha256 = "8bd8e90bcf9b71375bea031703551c09a51137c05377876dde2616e375782065"; + libraryHaskellDepends = [ + base parallel transformers transformers-compat + ]; + jailbreak = true; homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; description = "Parallel execution of monadic computations"; license = stdenv.lib.licenses.bsd3; @@ -153236,8 +153373,8 @@ self: { }: mkDerivation { pname = "monad-parallel"; - version = "0.7.2.1"; - sha256 = "8bd8e90bcf9b71375bea031703551c09a51137c05377876dde2616e375782065"; + version = "0.7.2.2"; + sha256 = "60bd1aed8ece1cc1e309d87e1722c6d489173dfe24eae95091ef5d9ce610efb3"; libraryHaskellDepends = [ base parallel transformers transformers-compat ]; @@ -153283,6 +153420,7 @@ self: { libraryHaskellDepends = [ base extensible-exceptions transformers ]; + jailbreak = true; homepage = "http://andersk.mit.edu/haskell/monad-peel/"; description = "Lift control operations like exception catching through monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -153358,7 +153496,6 @@ self: { jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-resumption" = callPackage @@ -153368,6 +153505,7 @@ self: { version = "0.1.2.0"; sha256 = "79b678b13259b679438f3f7befb3ef5294dfee7bbda922326db852b9172bdf27"; libraryHaskellDepends = [ base mmorph mtl transformers ]; + jailbreak = true; homepage = "https://github.com/igraves/resumption_monads"; description = "Resumption and reactive resumption monads for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -153405,6 +153543,7 @@ self: { version = "0.2.4"; sha256 = "718d5ae878306e0527e3b6ce32d5ad59fd83432b90012a594059d3720fd0c7c8"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/monad-st"; description = "Provides a MonadST class"; license = stdenv.lib.licenses.bsd3; @@ -153467,7 +153606,6 @@ self: { homepage = "http://github.com/taruti/monad-stlike-io"; description = "ST-like monad capturing variables to regions and supporting IO"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stlike-stm" = callPackage @@ -153480,7 +153618,6 @@ self: { homepage = "http://github.com/taruti/monad-stlike-stm"; description = "ST-like monad capturing variables to regions and supporting STM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-stm" = callPackage @@ -153553,7 +153690,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unify" = callPackage @@ -153568,7 +153704,6 @@ self: { jailbreak = true; description = "Generic first-order unification"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-unlift_0_1_1_0" = callPackage @@ -153699,7 +153834,6 @@ self: { libraryHaskellDepends = [ base ]; description = "The Acme and AcmeT monads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadbi" = callPackage @@ -153780,6 +153914,7 @@ self: { version = "0.2.1.4"; sha256 = "10aa697b8b039be06abdfde02afda25cf5b312e1b450d80e71e14d872b8098ee"; libraryHaskellDepends = [ array base stm transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/monadic-arrays/"; description = "Boxed and unboxed arrays for monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -153814,7 +153949,6 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadiccp-gecode" = callPackage @@ -153832,7 +153966,6 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -153919,6 +154052,7 @@ self: { version = "0.1.0.2"; sha256 = "cb6f495443f526b00b3d06535aa29e393473244acd410cba1b898eeaa8f8077c"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "Monad classes, using type families"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -153955,7 +154089,6 @@ self: { homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mondo" = callPackage @@ -153977,9 +154110,9 @@ self: { base hspec network servant servant-client servant-server time timerep transformers wai warp ]; + jailbreak = true; description = "Haskell bindings for the Mondo API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongoDB_2_0_3" = callPackage @@ -154181,7 +154314,6 @@ self: { homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mongrel2-handler" = callPackage @@ -154200,7 +154332,6 @@ self: { jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monitor" = callPackage @@ -154214,7 +154345,6 @@ self: { executableHaskellDepends = [ base filepath hinotify process ]; description = "Do things when files change"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mono-foldable" = callPackage @@ -154228,7 +154358,6 @@ self: { homepage = "http://github.com/JohnLato/mono-foldable"; description = "Folds for monomorphic containers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mono-traversable_0_6_3" = callPackage @@ -154252,6 +154381,7 @@ self: { base bytestring containers foldl hspec QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154279,6 +154409,7 @@ self: { base bytestring containers foldl hspec QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154306,6 +154437,7 @@ self: { base bytestring containers foldl hspec HUnit QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154333,6 +154465,7 @@ self: { base bytestring containers foldl hspec HUnit QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154360,6 +154493,7 @@ self: { base bytestring containers foldl hspec HUnit QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154387,6 +154521,7 @@ self: { base bytestring containers foldl hspec HUnit QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154414,6 +154549,7 @@ self: { base bytestring containers foldl hspec HUnit QuickCheck semigroups text transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/snoyberg/mono-traversable"; description = "Type classes for mapping, folding, and traversing monomorphic containers"; license = stdenv.lib.licenses.mit; @@ -154527,6 +154663,7 @@ self: { version = "0.4.0.3"; sha256 = "ad2949f8f76d0716d5a7890d767c5af58b1419586aa47dd081d20b370080c30a"; libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + jailbreak = true; description = "Various extra monoid-related definitions and utilities"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -154553,7 +154690,6 @@ self: { homepage = "http://github.com/nfjinjing/monoid-owns"; description = "a practical monoid implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-record" = callPackage @@ -154671,7 +154807,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoid-subclasses" = callPackage + "monoid-subclasses_0_4_2" = callPackage ({ mkDerivation, base, bytestring, containers, primes, QuickCheck , quickcheck-instances, tasty, tasty-quickcheck, text, vector }: @@ -154689,9 +154825,10 @@ self: { homepage = "https://github.com/blamario/monoid-subclasses/"; description = "Subclasses of Monoid"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "monoid-subclasses_0_4_2_1" = callPackage + "monoid-subclasses" = callPackage ({ mkDerivation, base, bytestring, containers, primes, QuickCheck , quickcheck-instances, tasty, tasty-quickcheck, text, vector }: @@ -154706,11 +154843,9 @@ self: { base bytestring containers primes QuickCheck quickcheck-instances tasty tasty-quickcheck text vector ]; - jailbreak = true; homepage = "https://github.com/blamario/monoid-subclasses/"; description = "Subclasses of Monoid"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-transformer" = callPackage @@ -154753,6 +154888,7 @@ self: { libraryHaskellDepends = [ base containers deepseq hashable lens newtype unordered-containers ]; + jailbreak = true; homepage = "http://github.com/bgamari/monoidal-containers"; description = "Containers with monoidal accumulation"; license = stdenv.lib.licenses.bsd3; @@ -154770,6 +154906,7 @@ self: { libraryHaskellDepends = [ base containers deepseq hashable lens newtype unordered-containers ]; + jailbreak = true; homepage = "http://github.com/bgamari/monoidal-containers"; description = "Containers with monoidal accumulation"; license = stdenv.lib.licenses.bsd3; @@ -154804,7 +154941,6 @@ self: { jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoids" = callPackage @@ -154822,7 +154958,6 @@ self: { homepage = "http://github.com/ekmett/monoids"; description = "Deprecated: Use 'reducers'"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monomorphic" = callPackage @@ -154904,7 +155039,6 @@ self: { homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moo" = callPackage @@ -154927,7 +155061,6 @@ self: { homepage = "http://www.github.com/astanin/moo/"; description = "Genetic algorithm library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "moonshine" = callPackage @@ -154966,7 +155099,6 @@ self: { homepage = "http://sites.google.com/site/morfetteweb/"; description = "A tool for supervised learning of morphology"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "morfeusz" = callPackage @@ -154984,7 +155116,6 @@ self: { homepage = "https://github.com/kawu/morfeusz"; description = "Bindings to the morphological analyser Morfeusz"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {morfeusz = null;}; "morte_1_4_2" = callPackage @@ -155036,6 +155167,7 @@ self: { base mtl QuickCheck system-filepath tasty tasty-hunit tasty-quickcheck text transformers ]; + jailbreak = true; description = "A bare-bones calculus of constructions"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -155058,7 +155190,6 @@ self: { homepage = "http://ldc.usb.ve/~05-38235/cursos/CI3661/2015AJ/"; description = "Generación interactiva de mosaicos"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mount" = callPackage @@ -155070,7 +155201,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mountpoints" = callPackage @@ -155107,7 +155237,6 @@ self: { homepage = "https://bitbucket.org/borekpiotr/linux-music-player"; description = "Music player for linux"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mp3decoder" = callPackage @@ -155124,7 +155253,6 @@ self: { homepage = "http://www.bjrn.se/mp3dec"; description = "MP3 decoder for teaching"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpdmate" = callPackage @@ -155141,7 +155269,6 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "MPD/PowerMate executable"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpppc" = callPackage @@ -155156,7 +155283,6 @@ self: { jailbreak = true; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpretty" = callPackage @@ -155174,7 +155300,6 @@ self: { jailbreak = true; description = "a monadic, extensible pretty printing library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpris" = callPackage @@ -155205,7 +155330,6 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mps" = callPackage @@ -155225,7 +155349,6 @@ self: { homepage = "http://github.com/nfjinjing/mps/"; description = "simply oo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpvguihs" = callPackage @@ -155245,7 +155368,6 @@ self: { homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mqtt-hs" = callPackage @@ -155278,7 +155400,6 @@ self: { homepage = "https://github.com/scmu/mrm"; description = "Modular Refiable Matching, first-class matches"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ms" = callPackage @@ -155322,6 +155443,7 @@ self: { testHaskellDepends = [ base bytestring QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://msgpack.org/"; description = "A Haskell implementation of MessagePack"; license = stdenv.lib.licenses.bsd3; @@ -155367,7 +155489,6 @@ self: { homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-rpc" = callPackage @@ -155404,7 +155525,6 @@ self: { homepage = "http://www.cl.cam.ac.uk/~mbg28/"; description = "Object-Oriented Programming in Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msi-kb-backlit" = callPackage @@ -155416,9 +155536,9 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring hid split ]; + jailbreak = true; description = "A command line tool to change backlit colors of your MSI keyboards"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "mstate" = callPackage @@ -155475,7 +155595,6 @@ self: { jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl_2_1_3_1" = callPackage @@ -155573,6 +155692,7 @@ self: { sha256 = "128a44cbce4527429a4a630357bb6f5a68bfc96fc11e82286465114fe0d3ed27"; libraryHaskellDepends = [ mtl transformers ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; @@ -155588,6 +155708,7 @@ self: { sha256 = "dedd1e54e8d433140f485e187de448e96270ca2e4a873cacbd034fda51f68067"; libraryHaskellDepends = [ mtl transformers ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; @@ -155602,6 +155723,22 @@ self: { version = "1.0.3"; sha256 = "1d811002b816c7afabf06eae1895a20862837432294abbde2892e6f4185f20e3"; libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/nikita-volkov/mtl-prelude"; + description = "Reexports of most definitions from \"mtl\" and \"transformers\""; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "mtl-prelude_2_0_2" = callPackage + ({ mkDerivation, base, mtl, transformers }: + mkDerivation { + pname = "mtl-prelude"; + version = "2.0.2"; + sha256 = "5b549441d41f1b542fe14b514098e60d4501f972f7d5d7626d53e21867bb82c8"; + libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; @@ -155610,19 +155747,6 @@ self: { }) {}; "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.2"; - sha256 = "5b549441d41f1b542fe14b514098e60d4501f972f7d5d7626d53e21867bb82c8"; - libraryHaskellDepends = [ base mtl transformers ]; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - - "mtl-prelude_2_0_3_1" = callPackage ({ mkDerivation, base, mtl, transformers }: mkDerivation { pname = "mtl-prelude"; @@ -155632,7 +155756,6 @@ self: { homepage = "https://github.com/nikita-volkov/mtl-prelude"; description = "Reexports of most definitions from \"mtl\" and \"transformers\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl-tf" = callPackage @@ -155644,7 +155767,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library using type families"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl-unleashed" = callPackage @@ -155701,7 +155823,6 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtp" = callPackage @@ -155715,7 +155836,6 @@ self: { jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {mtp = null;}; "mtree" = callPackage @@ -155759,7 +155879,6 @@ self: { jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "muesli" = callPackage @@ -155801,7 +155920,6 @@ self: { homepage = "https://github.com/gwern/mueval"; description = "Safely evaluate pure Haskell expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mulang" = callPackage @@ -155815,7 +155933,6 @@ self: { jailbreak = true; description = "The Mu Language, a non-computable extended Lambda Calculus"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multext-east-msd" = callPackage @@ -155852,7 +155969,6 @@ self: { homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiaddr" = callPackage @@ -155939,7 +156055,6 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multihash" = callPackage @@ -156024,7 +156139,6 @@ self: { homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplate" = callPackage @@ -156034,6 +156148,7 @@ self: { version = "0.0.3"; sha256 = "2c0016847dcedc8ba0054211256a3ef6c7f142e605668c7b64beebdf0eaf4ebf"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; homepage = "http://haskell.org/haskellwiki/Multiplate"; description = "Lightweight generic library for mutually recursive data types"; license = stdenv.lib.licenses.mit; @@ -156049,7 +156164,6 @@ self: { jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiplicity" = callPackage @@ -156094,7 +156208,6 @@ self: { jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multirec-binary" = callPackage @@ -156107,7 +156220,6 @@ self: { jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiset_0_3_0" = callPackage @@ -156130,10 +156242,24 @@ self: { sha256 = "e576efc992d808585a40baeb22dd83e0b42001d79ed13e2085b6eb6d6008a6bb"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base doctest Glob ]; + doCheck = false; description = "The Data.MultiSet container type"; license = stdenv.lib.licenses.bsd3; }) {}; + "multiset_0_3_3" = callPackage + ({ mkDerivation, base, containers, doctest, Glob }: + mkDerivation { + pname = "multiset"; + version = "0.3.3"; + sha256 = "c74e77d3dbbe81fe3b48629fc257fa084df89bfb575c82c42f5549af376de135"; + libraryHaskellDepends = [ base containers ]; + testHaskellDepends = [ base doctest Glob ]; + description = "The Data.MultiSet container type"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "multiset-comb" = callPackage ({ mkDerivation, base, containers, transformers }: mkDerivation { @@ -156155,7 +156281,6 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multistate" = callPackage @@ -156214,7 +156339,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur" = callPackage @@ -156241,7 +156365,6 @@ self: { homepage = "http://github.com/tokiwoousaka/murmur#readme"; description = "Simple CUI Twitter Client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur-hash_0_1_0_8" = callPackage @@ -156251,6 +156374,7 @@ self: { version = "0.1.0.8"; sha256 = "6cb9f4dc4a7d5b35e843bb8767d2e2c9745bcfbdacb5daf4fce5f4e05f983a06"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://github.com/nominolo/murmur-hash"; description = "MurmurHash2 implementation for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -156299,7 +156423,6 @@ self: { homepage = "https://github.com/niswegmann/murmurhash3"; description = "32-bit non-cryptographic hashing"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-articulation" = callPackage @@ -156364,7 +156487,6 @@ self: { jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-parts" = callPackage @@ -156384,7 +156506,6 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -156438,9 +156559,9 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base process tasty tasty-golden ]; + jailbreak = true; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-score" = callPackage @@ -156465,7 +156586,6 @@ self: { jailbreak = true; description = "Musical score and part representation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -156485,7 +156605,6 @@ self: { ]; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-suite" = callPackage @@ -156505,7 +156624,6 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-util" = callPackage @@ -156523,7 +156641,6 @@ self: { ]; description = "Utility for developing the Music Suite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicbrainz-email" = callPackage @@ -156558,7 +156675,6 @@ self: { homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml" = callPackage @@ -156576,7 +156692,6 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "musicxml2" = callPackage @@ -156670,7 +156785,6 @@ self: { homepage = "http://github.com/singpolyma/mustache2hs"; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mutable-containers_0_2_1_2" = callPackage @@ -156775,7 +156889,6 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mute-unmute" = callPackage @@ -156804,13 +156917,12 @@ self: { }: mkDerivation { pname = "mvc"; - version = "1.1.2"; - sha256 = "26b6c80efce2c38db22c46c27ba07f2d7bad0d3cddf6093b9d51d649643f8fcf"; + version = "1.1.3"; + sha256 = "0e3ba355a35357d778b4167d90deb23f98291f370a092e8b78b7f57f0b97b633"; libraryHaskellDepends = [ async base contravariant foldl managed mmorph pipes pipes-concurrency transformers ]; - jailbreak = true; description = "Model-view-controller"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -156825,7 +156937,6 @@ self: { jailbreak = true; description = "Concurrent and combinable updates"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mvclient" = callPackage @@ -156845,7 +156956,6 @@ self: { jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-probability_1_0_2" = callPackage @@ -157014,7 +157124,6 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mybitcoin-sci" = callPackage @@ -157052,7 +157161,6 @@ self: { homepage = "http://github.com/adinapoli/myo"; description = "Haskell binding to the Myo armband"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession" = callPackage @@ -157070,7 +157178,6 @@ self: { jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -157090,7 +157197,6 @@ self: { jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql_0_1_1_7" = callPackage @@ -157189,7 +157295,6 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-typed" = callPackage @@ -157206,7 +157311,6 @@ self: { homepage = "https://github.com/tolysz/mysql-simple-typed"; description = "Typed extension to mysql simple"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mzv" = callPackage @@ -157220,7 +157324,6 @@ self: { homepage = "http://github.com/ifigueroap/mzv"; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "n-m" = callPackage @@ -157293,7 +157396,6 @@ self: { homepage = "https://github.com/fractalcat/nagios-plugin-ekg"; description = "Monitor ekg metrics via Nagios"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-formlet" = callPackage @@ -157322,7 +157424,6 @@ self: { homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "named-records" = callPackage @@ -157389,7 +157490,6 @@ self: { homepage = "http://github.com/chowells79/nano-cryptr"; description = "A threadsafe binding to glibc's crypt_r function"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nano-erl" = callPackage @@ -157414,7 +157514,6 @@ self: { homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -157428,7 +157527,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -157447,7 +157545,6 @@ self: { jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nanocurses" = callPackage @@ -157461,7 +157558,6 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "Simple Curses binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -157491,6 +157587,7 @@ self: { base binary bytestring QuickCheck test-framework test-framework-quickcheck2 test-framework-th ]; + jailbreak = true; homepage = "https://github.com/ivarnymoen/nanomsg-haskell"; description = "Bindings to the nanomsg library"; license = stdenv.lib.licenses.mit; @@ -157555,10 +157652,10 @@ self: { testHaskellDepends = [ base containers hspec inline-c linear QuickCheck ]; + jailbreak = true; homepage = "https://github.com/cocreature/nanovg-hs"; description = "Haskell bindings for nanovg"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {GLEW = null; inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "nanq" = callPackage @@ -157579,7 +157676,6 @@ self: { homepage = "https://github.com/fosskers/nanq"; description = "Performs 漢字検定 (Japan Kanji Aptitude Test) level analysis on given Kanji"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "narc" = callPackage @@ -157592,7 +157688,6 @@ self: { homepage = "http://ezrakilty.net/projects/narc"; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nat" = callPackage @@ -157757,9 +157852,9 @@ self: { aeson base bytestring containers dequeue hspec network network-uri random text ]; + jailbreak = true; description = "Haskell API for NATS messaging system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-number" = callPackage @@ -157777,7 +157872,6 @@ self: { jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-numbers" = callPackage @@ -157898,7 +157992,6 @@ self: { homepage = "https://github.com/nilcons/nc-indicators"; description = "CPU load and memory usage indicators for i3bar"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ncurses" = callPackage @@ -157959,7 +158052,6 @@ self: { homepage = "https://github.com/ajg/neat"; description = "A Fast Retargetable Template Engine"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neat-interpolation_0_2_2" = callPackage @@ -158108,7 +158200,6 @@ self: { homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/"; description = "ASCII-fied arrow notation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neet" = callPackage @@ -158145,7 +158236,6 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neil" = callPackage @@ -158211,7 +158301,6 @@ self: { homepage = "http://github.com/nfjinjing/nemesis-titan"; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nerf" = callPackage @@ -158236,7 +158325,6 @@ self: { homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero" = callPackage @@ -158253,10 +158341,10 @@ self: { testHaskellDepends = [ base bytestring doctest Glob lens tasty tasty-hunit text ]; + jailbreak = true; homepage = "https://github.com/plutonbrb/nero"; description = "Lens-based HTTP toolkit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-wai" = callPackage @@ -158270,10 +158358,10 @@ self: { libraryHaskellDepends = [ base bytestring http-types lens nero text wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/plutonbrb/nero-wai"; description = "WAI adapter for Nero server applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero-warp" = callPackage @@ -158283,13 +158371,13 @@ self: { version = "0.3"; sha256 = "1a9094c0c274f987cb9db1d4206e9f8e1df4415c0e80b58a23279f9e3404b9b5"; libraryHaskellDepends = [ base nero nero-wai warp ]; + jailbreak = true; homepage = "https://github.com/plutonbrb/nero-warp"; description = "Run Nero server applications with Warp"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "nested-routes" = callPackage + "nested-routes_7_0_0" = callPackage ({ mkDerivation, attoparsec, base, bytestring, composition-extra , errors, exceptions, hashable, hspec, hspec-wai, http-types, mtl , poly-arity, pred-trie, regex-compat, semigroups, text @@ -158325,9 +158413,10 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "nested-routes_7_1_0_1" = callPackage + "nested-routes" = callPackage ({ mkDerivation, attoparsec, base, bytestring, composition-extra , errors, exceptions, hashable, hashtables, HSet, hspec, hspec-wai , http-types, mtl, poly-arity, pred-set, pred-trie, regex-compat @@ -158363,7 +158452,6 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nested-sets" = callPackage @@ -158451,7 +158539,6 @@ self: { homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -158470,7 +158557,6 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlink" = callPackage @@ -158491,7 +158577,6 @@ self: { homepage = "http://netlink-hs.googlecode.com/"; description = "Netlink communication for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "netlist" = callPackage @@ -158570,7 +158655,6 @@ self: { homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netstring-enumerator" = callPackage @@ -158681,7 +158765,6 @@ self: { jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -158697,7 +158780,6 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -158714,7 +158796,6 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netwire" = callPackage @@ -158765,7 +158846,6 @@ self: { homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; description = "GLFW instance of netwire-input"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network_2_5_0_0" = callPackage @@ -158883,7 +158963,6 @@ self: { homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-anonymous-i2p" = callPackage @@ -158907,7 +158986,6 @@ self: { homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; description = "Haskell API for I2P anonymous networking"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-anonymous-tor_0_9_2" = callPackage @@ -158967,7 +159045,6 @@ self: { homepage = "http://www.leonmergen.com/opensource.html"; description = "Haskell API for Tor anonymous networking"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-api-support" = callPackage @@ -159010,7 +159087,6 @@ self: { homepage = "http://github.com/solatis/haskell-network-attoparsec"; description = "Utility functions for running a parser against a socket"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "network-bitcoin" = callPackage @@ -159057,7 +159133,6 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-bytestring" = callPackage @@ -159071,7 +159146,6 @@ self: { homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-carbon_1_0_5" = callPackage @@ -159083,6 +159157,7 @@ self: { libraryHaskellDepends = [ base bytestring network text time vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/network-carbon"; description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; @@ -159098,6 +159173,7 @@ self: { libraryHaskellDepends = [ base bytestring network text time vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/network-carbon"; description = "A Haskell implementation of the Carbon protocol (part of the Graphite monitoring tools)"; license = stdenv.lib.licenses.bsd3; @@ -159306,7 +159382,6 @@ self: { homepage = "http://darcs.imperialviolet.org/network-connection"; description = "A wrapper around a generic stream-like connection"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-data" = callPackage @@ -159467,7 +159542,6 @@ self: { jailbreak = true; description = "Haskell bindings for the ifreq structure"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-ip" = callPackage @@ -159526,7 +159600,6 @@ self: { homepage = "http://darcs.imperialviolet.org/network-minihttp"; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-msg" = callPackage @@ -159590,7 +159663,6 @@ self: { jailbreak = true; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-pgi" = callPackage @@ -159640,7 +159712,6 @@ self: { ]; description = "A cross-platform RPC library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-server" = callPackage @@ -159655,7 +159726,6 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-service" = callPackage @@ -159716,7 +159786,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-simple" = callPackage + "network-simple_0_4_0_4" = callPackage ({ mkDerivation, base, bytestring, exceptions, network , transformers }: @@ -159727,6 +159797,24 @@ self: { libraryHaskellDepends = [ base bytestring exceptions network transformers ]; + jailbreak = true; + homepage = "https://github.com/k0001/network-simple"; + description = "Simple network sockets usage patterns"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-simple" = callPackage + ({ mkDerivation, base, bytestring, exceptions, network + , transformers + }: + mkDerivation { + pname = "network-simple"; + version = "0.4.0.5"; + sha256 = "0947b409ebf68d0fa0d94c0a99c6b01165a1c5ab40507b489d195a84b4cd6aaa"; + libraryHaskellDepends = [ + base bytestring exceptions network transformers + ]; homepage = "https://github.com/k0001/network-simple"; description = "Simple network sockets usage patterns"; license = stdenv.lib.licenses.bsd3; @@ -159743,6 +159831,7 @@ self: { libraryHaskellDepends = [ base bytestring directory exceptions network transformers ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/network-simple-sockaddr"; description = "network-simple for resolved addresses"; license = stdenv.lib.licenses.bsd3; @@ -159764,7 +159853,6 @@ self: { homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-socket-options" = callPackage @@ -159817,7 +159905,6 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport_0_4_1_0" = callPackage @@ -159830,6 +159917,7 @@ self: { libraryHaskellDepends = [ base binary bytestring hashable transformers ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Network abstraction layer"; license = stdenv.lib.licenses.bsd3; @@ -159847,6 +159935,7 @@ self: { libraryHaskellDepends = [ base binary bytestring deepseq hashable transformers ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Network abstraction layer"; license = stdenv.lib.licenses.bsd3; @@ -159866,6 +159955,7 @@ self: { libraryHaskellDepends = [ base binary bytestring deepseq hashable transformers ]; + jailbreak = true; homepage = "http://haskell-distributed.github.com"; description = "Network abstraction layer"; license = stdenv.lib.licenses.bsd3; @@ -159895,7 +159985,6 @@ self: { jailbreak = true; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport-composed" = callPackage @@ -160076,6 +160165,7 @@ self: { network-transport network-transport-tests stm stm-chans tasty tasty-hunit test-framework zeromq4-haskell ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/tweag/network-transport-zeromq"; description = "ZeroMQ backend for network-transport"; @@ -160212,7 +160302,6 @@ self: { homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "networked-game" = callPackage @@ -160228,6 +160317,7 @@ self: { libraryHaskellDepends = [ base binary bytestring containers network time transformers ]; + jailbreak = true; description = "Networked-game support library"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -160244,7 +160334,6 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-newports.html"; description = "List ports newer than N days on a FreeBSD system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newsynth" = callPackage @@ -160264,7 +160353,6 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/"; description = "Exact and approximate synthesis of quantum circuits"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newt" = callPackage @@ -160291,7 +160379,6 @@ self: { jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtype" = callPackage @@ -160317,6 +160404,7 @@ self: { base base-prelude monad-control template-haskell transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/newtype-deriving"; description = "Instance derivers for newtype wrappers"; license = stdenv.lib.licenses.mit; @@ -160351,7 +160439,6 @@ self: { homepage = "http://github.com/mgsloan/newtype-th"; description = "A template haskell deriver to create Control.Newtype instances."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "newtyper" = callPackage @@ -160431,10 +160518,10 @@ self: { libraryHaskellDepends = [ base ghc-prim mtl primitive text transformers ]; + jailbreak = true; homepage = "https://github.com/fhsjaagshs/niagra"; description = "High performance CSS EDSL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nibblestring" = callPackage @@ -160455,7 +160542,6 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nicify" = callPackage @@ -160525,7 +160611,6 @@ self: { homepage = "http://www.codemanic.com/uwe"; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nimber" = callPackage @@ -160538,7 +160623,6 @@ self: { homepage = "http://andersk.mit.edu/haskell/nimber/"; description = "Finite nimber arithmetic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "nist-beacon" = callPackage @@ -160548,6 +160632,7 @@ self: { version = "0.2.0.0"; sha256 = "fe967f892da92b9aae0cfd10be38166b0e5f915760f734df15b1bada95d9722c"; 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; @@ -160564,7 +160649,6 @@ self: { homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nix-eval" = callPackage @@ -160576,6 +160660,7 @@ self: { sha256 = "f603ce62cd8abaab8cf09c8cf3f8b17332b0490658310eadea5242826b2ef419"; libraryHaskellDepends = [ base process ]; testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; + jailbreak = true; homepage = "http://chriswarbo.net/git/nix-eval"; description = "Evaluate Haskell expressions using Nix to get packages"; license = "GPL"; @@ -160628,9 +160713,9 @@ self: { optparse-applicative parsec shelly system-filepath text text-render unordered-containers ]; + jailbreak = true; description = "Generate nix expressions from npm packages"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nixos-types" = callPackage @@ -160663,7 +160748,6 @@ self: { homepage = "https://github.com/kawu/nkjp"; description = "Manipulating the National Corpus of Polish (NKJP)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nlp-scores" = callPackage @@ -160709,7 +160793,6 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -160723,7 +160806,6 @@ self: { homepage = "https://github.com/singpolyma/NME-Haskell"; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nntp" = callPackage @@ -160739,7 +160821,6 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "no-buffering-workaround" = callPackage @@ -160790,6 +160871,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ array base containers regex-compat ]; + jailbreak = true; homepage = "https://ghc.haskell.org/trac/ghc/wiki/Building/RunningNoFib"; description = "Parse and compare nofib runs"; license = stdenv.lib.licenses.bsd3; @@ -160818,7 +160900,6 @@ self: { homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "non-empty" = callPackage @@ -160896,6 +160977,7 @@ self: { version = "0.1.0.1"; sha256 = "11d7f5d66a6ec832cb2c15b5f33b6b2fbc3cdf8c49da3a5a8f9ca252531c4e16"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Free structures sans laws"; license = stdenv.lib.licenses.mit; }) {}; @@ -160917,10 +160999,8 @@ self: { }: mkDerivation { pname = "nonlinear-optimization-ad"; - version = "0.2.1"; - sha256 = "4da26e17e8b8f877d1c6cfb2da008153d7372cbaadf1e0b54ab5ee76aff5714c"; - revision = "1"; - editedCabalFile = "0e98c117988be619a34551dcabf96b2f451248a333d8b086fe762d54bf2af89c"; + version = "0.2.2"; + sha256 = "b263aa4b690d8e62917c2090f0549f341858795514b35015a5b27344df03481d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -160945,7 +161025,6 @@ self: { homepage = "https://github.com/jessopher/noodle"; description = "the noodle programming language"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "normaldistribution" = callPackage @@ -160976,7 +161055,6 @@ self: { jailbreak = true; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-gloss-examples" = callPackage @@ -160992,9 +161070,9 @@ self: { executableHaskellDepends = [ base containers GLUT linear not-gloss spatial-math X11 ]; + jailbreak = true; description = "examples for not-gloss"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-in-base" = callPackage @@ -161017,6 +161095,7 @@ self: { sha256 = "8a2542bed0dedf3bdcf47af754dfca452fc2262e4da199184f1d98dfbe494a95"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base template-haskell ]; + jailbreak = true; description = "Avoiding the C preprocessor via cunning use of Template Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -161037,7 +161116,6 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -161076,7 +161154,6 @@ self: { homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "notzero" = callPackage @@ -161094,6 +161171,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/NICTA/notzero"; description = "A data type for representing numeric values, except zero"; license = stdenv.lib.licenses.bsd3; @@ -161124,7 +161202,6 @@ self: { jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nptools" = callPackage @@ -161143,7 +161220,6 @@ self: { ]; description = "A collection of random tools"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nsis_0_2_4" = callPackage @@ -161221,7 +161297,6 @@ self: { sha256 = "9e6a4e4cf0116a8aab09185bcdb62106206c6b41816cc1c6d6e3dac50fe621e2"; libraryHaskellDepends = [ base type-level ]; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ntp-control" = callPackage @@ -161258,7 +161333,6 @@ self: { homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nullary" = callPackage @@ -161268,6 +161342,7 @@ self: { version = "0.1.0.0"; sha256 = "0cd4f880627ea551167c981feff890c656f560d515296addab99d0c8b47f7ca7"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/derekelkins/nullary"; description = "A package for working with nullary type classes"; license = stdenv.lib.licenses.bsd2; @@ -161366,7 +161441,6 @@ self: { homepage = "https://github.com/roelvandijk/numerals"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numerals-base" = callPackage @@ -161390,7 +161464,6 @@ self: { homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "numeric-extras_0_0_3" = callPackage @@ -161629,8 +161702,8 @@ self: { }: mkDerivation { pname = "nvim-hs"; - version = "0.0.6"; - sha256 = "744b7b949bc0499f481d289e489a220d4b618d0bab2f308e8cefb5afc70aba38"; + version = "0.0.7"; + sha256 = "bbd20049812fd481b882443341b17ad4b6b4e4766e7767130beb4f005786dabf"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -161654,7 +161727,6 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nvim-hs-contrib" = callPackage @@ -161681,7 +161753,6 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nyan" = callPackage @@ -161732,7 +161803,6 @@ self: { jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oanda-rest-api" = callPackage @@ -161813,7 +161883,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "obj" = callPackage @@ -161833,7 +161902,6 @@ self: { ]; description = "Reads and writes obj models"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objectid" = callPackage @@ -161911,7 +161979,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "octane" = callPackage + "octane_0_4_24" = callPackage ({ mkDerivation, aeson, aeson-pretty, autoexporter, base, binary , binary-bits, bytestring, containers, data-binary-ieee754, deepseq , newtype-generics, tasty, tasty-hspec, text @@ -161933,6 +162001,31 @@ self: { homepage = "https://github.com/tfausak/octane#readme"; description = "Parse Rocket League replays"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "octane" = callPackage + ({ mkDerivation, aeson, autoexporter, base, binary, binary-bits + , bytestring, containers, data-binary-ieee754, deepseq + , newtype-generics, tasty, tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.5.2"; + sha256 = "f02410f444c9e3e51e24efc05f2582d3e465fdf933dfdbaeb8ebf403f2f77ea1"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson autoexporter base binary binary-bits bytestring containers + data-binary-ieee754 deepseq newtype-generics text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; }) {}; "octohat" = callPackage @@ -161987,7 +162080,6 @@ self: { homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oculus" = callPackage @@ -162006,7 +162098,6 @@ self: { homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; inherit (pkgs) mesa; ovr = null; inherit (pkgs) systemd;}; @@ -162021,10 +162112,10 @@ self: { libraryHaskellDepends = [ aeson base bytestring containers text unordered-containers ]; + jailbreak = true; homepage = "http://oden-lang.org"; description = "Provides Go package metadata"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oeis" = callPackage @@ -162091,7 +162182,6 @@ self: { homepage = "https://github.com/fthomas/ohloh-hs"; description = "Interface to the Ohloh API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oi" = callPackage @@ -162106,6 +162196,7 @@ self: { base comonad directory filepath parallel ]; executableHaskellDepends = [ base directory filepath parallel ]; + jailbreak = true; description = "Library for purely functional lazy interactions with the outer world"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -162131,7 +162222,6 @@ self: { homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ois-input-manager" = callPackage @@ -162145,7 +162235,6 @@ self: { jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {OIS = null;}; "old-locale" = callPackage @@ -162210,7 +162299,6 @@ self: { jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omaketex" = callPackage @@ -162230,7 +162318,6 @@ self: { homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omega" = callPackage @@ -162249,7 +162336,6 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnicodec" = callPackage @@ -162268,7 +162354,6 @@ self: { jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omnifmt" = callPackage @@ -162314,7 +162399,6 @@ self: { homepage = "http://haskell.on-a-horse.org"; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -162349,6 +162433,7 @@ self: { libraryHaskellDepends = [ base containers hashable template-haskell unordered-containers ]; + jailbreak = true; homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; description = "memoization for IO actions and functions"; license = stdenv.lib.licenses.gpl3; @@ -162367,7 +162452,6 @@ self: { homepage = "https://github.com/sjoerdvisscher/one-liner"; description = "Constraint-based generics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "one-time-password" = callPackage @@ -162412,7 +162496,6 @@ self: { homepage = "https://github.com/thinkpad20/oneormore"; description = "A never-empty list type"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "only" = callPackage @@ -162437,7 +162520,6 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oo-prototypes" = callPackage @@ -162594,7 +162676,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "opaleye" = callPackage + "opaleye_0_4_2_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, case-insensitive, containers, contravariant, multiset , postgresql-simple, pretty, product-profunctors, profunctors @@ -162605,8 +162687,8 @@ self: { pname = "opaleye"; version = "0.4.2.0"; sha256 = "b924c4d0fa7151c0dbaee5ddcd89adfa569614204a805392625752ea6dc13c20"; - revision = "5"; - editedCabalFile = "89c88b17345e194a4521ba72ad38d8074bf9620102becd846b0c1c74788595ed"; + revision = "7"; + editedCabalFile = "b3d11eb291ac042615847b8ce614cfa31d54055f7344e44a8f21b3556d92fa93"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -162617,10 +162699,38 @@ self: { base containers contravariant multiset postgresql-simple product-profunctors profunctors QuickCheck semigroups time ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "An SQL-generating DSL targeting PostgreSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "opaleye" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, case-insensitive, containers, contravariant, multiset + , postgresql-simple, pretty, product-profunctors, profunctors + , QuickCheck, semigroups, text, time, time-locale-compat + , transformers, uuid, void + }: + mkDerivation { + pname = "opaleye"; + version = "0.5.0.0"; + sha256 = "8fa68edc8e322f624c704526acbf2c813903bf73beab829849f515a7854415b5"; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring bytestring case-insensitive + contravariant postgresql-simple pretty product-profunctors + profunctors semigroups text time time-locale-compat transformers + uuid void + ]; + testHaskellDepends = [ + base containers contravariant multiset postgresql-simple + product-profunctors profunctors QuickCheck semigroups time + ]; + homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; + description = "An SQL-generating DSL targeting PostgreSQL"; + license = stdenv.lib.licenses.bsd3; }) {}; "opaleye-classy" = callPackage @@ -162686,6 +162796,7 @@ self: { executableHaskellDepends = [ base opaleye postgresql-simple product-profunctors ]; + jailbreak = true; homepage = "https://github.com/WraithM/opaleye-trans"; description = "A monad transformer for Opaleye"; license = stdenv.lib.licenses.bsd3; @@ -162715,6 +162826,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base basic-prelude text turtle ]; + jailbreak = true; description = "Open haddock HTML documentation"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -162739,7 +162851,6 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "open-signals" = callPackage @@ -162771,8 +162882,8 @@ self: { }: mkDerivation { pname = "open-typerep"; - version = "0.6"; - sha256 = "22f9e8654c243e7f98c110dbf7401c1d0ff3a547e012fa9d10a16ab4853f77b0"; + version = "0.6.1"; + sha256 = "a3689cce6718c67d6fda7eb4c3fb0566da60dbc0a81e42ab1dfa8c04e7a50812"; libraryHaskellDepends = [ base constraints mtl syntactic tagged template-haskell ]; @@ -162780,7 +162891,6 @@ self: { homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "open-union" = callPackage @@ -162796,7 +162906,6 @@ self: { homepage = "https://github.com/RobotGymnast/open-union"; description = "Extensible, type-safe unions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" ]; }) {}; "open-witness" = callPackage @@ -162813,7 +162922,6 @@ self: { homepage = "https://github.com/AshleyYakeley/open-witness"; description = "open witnesses"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opencog-atomspace" = callPackage @@ -162827,7 +162935,6 @@ self: { homepage = "github.com/opencog/atomspace/tree/master/opencog/haskell"; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {atomspace-cwrapper = null;}; "opencv-raw" = callPackage @@ -162842,7 +162949,6 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -162872,7 +162978,6 @@ self: { homepage = "https://github.com/singpolyma/openexchangerates-haskell"; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openflow" = callPackage @@ -162891,7 +162996,6 @@ self: { homepage = "https://github.com/AndreasVoellmy/openflow"; description = "OpenFlow"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opengl-dlp-stereo" = callPackage @@ -162909,7 +163013,6 @@ self: { homepage = "https://bitbucket.org/functionally/opengl-dlp-stereo"; description = "Library and example for using DLP stereo in OpenGL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengl-spacenavigator" = callPackage @@ -162927,7 +163030,6 @@ self: { homepage = "https://bitbucket.org/functionally/opengl-spacenavigator"; description = "Library and example for using a SpaceNavigator-compatible 3-D mouse with OpenGL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "opengles" = callPackage @@ -162950,10 +163052,10 @@ self: { base bytestring future-resource GLFW-b random time ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/capsjac/opengles#readme"; description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -162972,7 +163074,6 @@ self: { homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp" = callPackage @@ -163018,7 +163119,6 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openpgp-asciiarmor" = callPackage @@ -163066,7 +163166,6 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opensoundcontrol-ht" = callPackage @@ -163080,6 +163179,7 @@ self: { libraryHaskellDepends = [ base binary bytestring hosc process random transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell OpenSoundControl utilities"; license = "GPL"; @@ -163123,10 +163223,10 @@ self: { testHaskellDepends = [ base hspec keyword-args octohat optparse-applicative parsec text ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/openssh-github-keys"; description = "Fetch OpenSSH keys from a GitHub team"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "openssl-createkey" = callPackage @@ -163227,7 +163327,6 @@ self: { jailbreak = true; description = "Unicode characters"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opentheory-divides" = callPackage @@ -163396,7 +163495,6 @@ self: { homepage = "https://github.com/emilaxelsson/operational-alacarte"; description = "A version of Operational suitable for extensible EDSLs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "operational-class" = callPackage @@ -163573,7 +163671,6 @@ self: { homepage = "https://github.com/tsuraan/optimal-blocks"; description = "Optimal Block boundary determination for rsync-like behaviours"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "optimization" = callPackage @@ -163611,7 +163708,6 @@ self: { homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "option" = callPackage @@ -163769,6 +163865,7 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -163786,6 +163883,7 @@ self: { libraryHaskellDepends = [ ansi-wl-pprint base process transformers transformers-compat ]; + jailbreak = true; homepage = "https://github.com/pcapriotti/optparse-applicative"; description = "Utilities and combinators for parsing command line options"; license = stdenv.lib.licenses.bsd3; @@ -163820,7 +163918,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "optparse-generic" = callPackage + "optparse-generic_1_1_0" = callPackage ({ mkDerivation, base, bytestring, optparse-applicative , system-filepath, text, time, transformers, void }: @@ -163834,33 +163932,51 @@ self: { ]; description = "Auto-generate a command-line parser for your datatype"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "optparse-helper" = callPackage + "optparse-generic" = callPackage + ({ mkDerivation, base, bytestring, optparse-applicative + , system-filepath, text, time, transformers, void + }: + mkDerivation { + pname = "optparse-generic"; + version = "1.1.1"; + sha256 = "02938fa18d2d2aee9ccd69ed402771e01eff20da280be5a1ca1229e07929c611"; + libraryHaskellDepends = [ + base bytestring optparse-applicative system-filepath text time + transformers void + ]; + description = "Auto-generate a command-line parser for your datatype"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "optparse-helper_0_2_0_0" = callPackage ({ mkDerivation, base, optparse-applicative }: mkDerivation { pname = "optparse-helper"; version = "0.2.0.0"; sha256 = "3a9674269fb9a26e65fe521e1f88fb73d2fc9eee903c457405dbfe7b74679b1c"; libraryHaskellDepends = [ base optparse-applicative ]; - homepage = "https://github.com/pharpend/optparse-helper"; - description = "Helper functions for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "optparse-helper_0_2_1_0" = callPackage - ({ mkDerivation, base, optparse-applicative }: - mkDerivation { - pname = "optparse-helper"; - version = "0.2.1.0"; - sha256 = "40516d83162d84e8ce33b593dbeea80b2bd6ebec038047694824ec8061f20ded"; - libraryHaskellDepends = [ base optparse-applicative ]; + jailbreak = true; homepage = "https://github.com/pharpend/optparse-helper"; description = "Helper functions for optparse-applicative"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "optparse-helper" = callPackage + ({ mkDerivation, base, optparse-applicative }: + mkDerivation { + pname = "optparse-helper"; + version = "0.2.1.1"; + sha256 = "0a0bbd3dd34f6b014bbb49bc14ed0bce597ab65711a856e173eb5f5a446d7510"; + libraryHaskellDepends = [ base optparse-applicative ]; + homepage = "https://github.com/pharpend/optparse-helper"; + description = "Helper functions for optparse-applicative"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "optparse-simple_0_0_2" = callPackage ({ mkDerivation, base, either, gitrev, optparse-applicative , template-haskell, transformers @@ -163933,7 +164049,6 @@ self: { jailbreak = true; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -163954,7 +164069,6 @@ self: { jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid-demo" = callPackage @@ -163974,7 +164088,6 @@ self: { jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ord-adhoc" = callPackage @@ -164001,10 +164114,10 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck containers QuickCheck transformers ]; + jailbreak = true; homepage = "http://darcs.wolfgang.jeltsch.info/haskell/order-maintenance"; description = "Algorithms for the order maintenance problem with a safe interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -164015,6 +164128,7 @@ self: { sha256 = "0069ae9ad6ed98ca367026e9c1d6be4c553e6ec451aff0f658532e0ed6a692bd"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; description = "Order statistic trees based on weight-balanced trees"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -164082,6 +164196,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ attoparsec base text ]; + jailbreak = true; description = "Organize scala imports"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -164101,6 +164216,7 @@ self: { base containers hspec HStringTemplate network network-uri parsec QuickCheck random regex-posix syb text ]; + jailbreak = true; description = "Org Mode library for haskell"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -164124,7 +164240,6 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "origami" = callPackage @@ -164144,7 +164259,6 @@ self: { homepage = "http://github.com/nedervold/origami"; description = "An un-SYB framework for transforming heterogenous data through folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "os-release" = callPackage @@ -164186,8 +164300,8 @@ self: { ({ mkDerivation, base, colour, gloss, random }: mkDerivation { pname = "oscpacking"; - version = "0.1.0.0"; - sha256 = "74c471f1bf18d877061ce60fdcd0030fa77b617ae99c2c10d6d375e2a3fd23f1"; + version = "0.2.1.1"; + sha256 = "503ff0847a498bccfa43bd9bf233b8beb0544e329998ab636ad251f5af52247a"; libraryHaskellDepends = [ base colour gloss random ]; jailbreak = true; description = "Implements an osculatory packing (kissing circles) algorithm and display"; @@ -164211,7 +164325,6 @@ self: { executableHaskellDepends = [ base process ]; description = "Show keys pressed with an on-screen display (Linux only)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "osm-conduit" = callPackage @@ -164232,7 +164345,6 @@ self: { homepage = "http://github.com/przembot/osm-conduit#readme"; description = "Parse and operate on OSM data in efficient way"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "osm-download" = callPackage @@ -164255,7 +164367,6 @@ self: { jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oso2pdf" = callPackage @@ -164308,7 +164419,6 @@ self: { homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ottparse-pretty" = callPackage @@ -164374,7 +164484,6 @@ self: { homepage = "https://github.com/capsjac/pack"; description = "Bidirectional fast ByteString packer/unpacker"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "package-description-remote" = callPackage @@ -164424,7 +164533,6 @@ self: { jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packdeps" = callPackage @@ -164465,6 +164573,7 @@ self: { tasty-quickcheck unordered-containers vector vector-binary-instances ]; + jailbreak = true; description = "Generation and traversal of highly compressed directed acyclic word graphs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -164481,7 +164590,6 @@ self: { jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packer" = callPackage @@ -164518,7 +164626,6 @@ self: { ]; description = "Serialization library for GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "packunused" = callPackage @@ -164573,7 +164680,6 @@ self: { homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pagarme" = callPackage @@ -164841,6 +164947,7 @@ self: { version = "0.1.0.2"; sha256 = "3967a3e7de6aaef26716c1c8845ca6b5711625a901ce739a2e5da1f22bb1d0ea"; libraryHaskellDepends = [ array base colour containers ]; + jailbreak = true; homepage = "http://projects.haskell.org/diagrams"; description = "Utilities for choosing and creating color schemes"; license = stdenv.lib.licenses.bsd3; @@ -164884,7 +164991,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Haskell binding for C PAM API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pam;}; "panda" = callPackage @@ -164905,7 +165011,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Panda"; description = "A simple static blog engine"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc_1_13_1" = callPackage @@ -165387,6 +165492,7 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; @@ -165716,6 +165822,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base csv pandoc pandoc-types text ]; executableHaskellDepends = [ base csv pandoc pandoc-types ]; + jailbreak = true; homepage = "https://github.com/baig/pandoc-csv2table-filter"; description = "Convert CSV to Pandoc Table Markdown"; license = stdenv.lib.licenses.mit; @@ -165758,7 +165865,6 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -165771,7 +165877,6 @@ self: { homepage = "http://github.com/bgamari/pandoc-lens"; description = "Lenses for Pandoc documents"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-placetable" = callPackage @@ -165780,8 +165885,8 @@ self: { }: mkDerivation { pname = "pandoc-placetable"; - version = "0.3"; - sha256 = "81ed103e20c68a7a0dd29653fee6044f63792144f3f317f87409c779c3088e18"; + version = "0.4"; + sha256 = "e7f6e9cf7da0c49e00f47fdddd50ec80d1adb24dbe5f05faaa0682d27fe607e0"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -165812,7 +165917,6 @@ self: { ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-types_1_12_4_1" = callPackage @@ -165968,7 +166072,6 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pango_0_13_0_4" = callPackage @@ -166032,7 +166135,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; - "pango" = callPackage + "pango_0_13_1_1" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib , gtk2hs-buildtools, mtl, pango, pretty, process, text }: @@ -166048,26 +166151,24 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; - "pango_0_13_2_0" = callPackage + "pango" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib - , gtk2hs-buildtools, mtl, pango, pretty, process, text + , mtl, pango, pretty, process, text }: mkDerivation { pname = "pango"; - version = "0.13.2.0"; - sha256 = "4b80c8ed358699738c6956b6ab68a8867de129b521230f5c53daea208923f07c"; + version = "0.13.3.0"; + sha256 = "a2c44f889674add7c65326144420d68d47dcdcd511d5c251022fa7a97a60755c"; libraryHaskellDepends = [ array base cairo containers directory glib mtl pretty process text ]; libraryPkgconfigDepends = [ pango ]; - libraryToolDepends = [ gtk2hs-buildtools ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -166092,7 +166193,6 @@ self: { homepage = "https://skami.iocikun.jp/computer/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pappy" = callPackage @@ -166107,7 +166207,6 @@ self: { homepage = "http://pdos.csail.mit.edu/~baford/packrat/thesis/"; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "para" = callPackage @@ -166147,7 +166246,6 @@ self: { jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel_3_2_0_3" = callPackage @@ -166170,6 +166268,7 @@ self: { version = "3.2.0.5"; sha256 = "b5a241bfbf43be0d18d0864c1cbcbfdbd60d64f2404fadd3c338897c51d4109a"; libraryHaskellDepends = [ array base containers deepseq ]; + jailbreak = true; description = "Parallel programming library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -166182,6 +166281,7 @@ self: { version = "3.2.0.6"; sha256 = "b928d3fbd0b7b247bfb7072796c6950f3a5b61ec051449cddf86ebfe89dbe642"; libraryHaskellDepends = [ array base containers deepseq ]; + jailbreak = true; description = "Parallel programming library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -166230,7 +166330,6 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parallel-tree-search" = callPackage @@ -166255,7 +166354,6 @@ self: { homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paranoia" = callPackage @@ -166293,7 +166391,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-attoparsec" = callPackage @@ -166305,7 +166402,6 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parco-parsec" = callPackage @@ -166317,7 +166413,6 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parcom-lib" = callPackage @@ -166360,7 +166455,6 @@ self: { jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parport" = callPackage @@ -166372,7 +166466,6 @@ self: { libraryHaskellDepends = [ array base ]; description = "Simply interfacing the parallel port on linux"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "parse-dimacs" = callPackage @@ -166403,7 +166496,6 @@ self: { homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parseargs_0_1_5_2" = callPackage @@ -166428,6 +166520,8 @@ self: { pname = "parseargs"; version = "0.2.0.4"; sha256 = "79241584c88dbde0abd5dd32a079b9baaad4a87b136a19e78492141ace1aa090"; + revision = "1"; + editedCabalFile = "7a7dc0b998da0042dfa858ada372299d1b50434c37c42743c4a7e227106afaab"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base containers ]; @@ -166520,6 +166614,7 @@ self: { version = "0.1.0.5"; sha256 = "c463e37a18a5f661a51e5b1b67b7b025bafa969fada109eef3467ce4e9bcb474"; libraryHaskellDepends = [ base monads-tf parsec transformers ]; + jailbreak = true; description = "Some miscellaneous basic string parsers"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -166664,6 +166759,7 @@ self: { sha256 = "035000bf10b842dabc917132e05dd797b20c2bbd3619d415c3027bfe40b1b0f0"; libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base hspec parsec ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/parseerror-eq"; description = "Adds and Eq instance for Parsec's ParseError if needed"; license = stdenv.lib.licenses.mit; @@ -166689,7 +166785,6 @@ self: { libraryHaskellDepends = [ base mtl parsec ]; homepage = "http://naesten.dyndns.org:8080/repos/parsely"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser-helper" = callPackage @@ -166706,7 +166801,6 @@ self: { jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parser241" = callPackage @@ -166722,7 +166816,6 @@ self: { homepage = "https://github.com/YLiLarry/parser241"; description = "An interface to create production rules using augmented grammars"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsergen" = callPackage @@ -166789,6 +166882,7 @@ self: { attoparsec base bytestring containers directory doctest filepath parsec QuickCheck quickcheck-instances ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/parsers/"; description = "Parsing combinators"; @@ -166816,6 +166910,7 @@ self: { attoparsec base bytestring containers directory doctest filepath parsec QuickCheck quickcheck-instances ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/ekmett/parsers/"; description = "Parsing combinators"; @@ -166844,7 +166939,6 @@ self: { jailbreak = true; description = "NMR-STAR file format parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parsimony" = callPackage @@ -166872,6 +166966,7 @@ self: { pipes PSQueue random transformers vector ]; testHaskellDepends = [ base containers HUnit tasty tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/kawu/partage"; description = "Parsing factorized"; license = stdenv.lib.licenses.bsd3; @@ -166918,6 +167013,7 @@ self: { revision = "1"; editedCabalFile = "03c0fa67de9ab603f10ff005654e2648a824e65e90713edb36e74b99a35c4135"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/partial-handler"; description = "A composable exception handler"; @@ -166934,6 +167030,7 @@ self: { revision = "1"; editedCabalFile = "2e1042c8b036ba686e544bfdd1302fd9f66f377010fa05739e7fc000d97fa597"; libraryHaskellDepends = [ base ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/partial-handler"; description = "A composable exception handler"; @@ -166966,7 +167063,6 @@ self: { jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "partial-uri" = callPackage @@ -167002,7 +167098,6 @@ self: { homepage = "https://github.com/startling/partly"; description = "Inspect, create, and alter MBRs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passage" = callPackage @@ -167020,7 +167115,6 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "passwords" = callPackage @@ -167043,7 +167137,6 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pasty" = callPackage @@ -167058,7 +167151,6 @@ self: { homepage = "http://github.com/markusle/pasty/tree/master"; description = "A simple command line pasting utility"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "patch-combinators" = callPackage @@ -167149,6 +167241,7 @@ self: { testHaskellDepends = [ base criterion doctest hspec QuickCheck vector ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/liamoc/patches-vector"; description = "Patches (diffs) on vectors: composable, mergeable, and invertible"; @@ -167330,12 +167423,11 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A toy pathfinding library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, random - , tagged, time, transformers, utility-ht + ({ mkDerivation, base, deepseq, directory, old-time, QuickCheck + , random, tagged, time, transformers, utility-ht }: mkDerivation { pname = "pathtype"; @@ -167344,10 +167436,12 @@ self: { isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base deepseq directory QuickCheck tagged time transformers + base deepseq directory old-time QuickCheck tagged time transformers utility-ht ]; + executableHaskellDepends = [ base utility-ht ]; testHaskellDepends = [ base random ]; + jailbreak = true; homepage = "http://hub.darcs.net/thielema/pathtype/"; description = "Type-safe replacement for System.FilePath etc"; license = stdenv.lib.licenses.bsd3; @@ -167418,7 +167512,6 @@ self: { homepage = "http://github.com/toschoo/mom"; description = "Common patterns in message-oriented applications"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paymill" = callPackage @@ -167457,7 +167550,6 @@ self: { homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paypal-api" = callPackage @@ -167476,7 +167568,6 @@ self: { homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pb" = callPackage @@ -167492,7 +167583,6 @@ self: { ]; description = "pastebin command line application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pbc4hs" = callPackage @@ -167767,7 +167857,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pcre-utils" = callPackage + "pcre-utils_0_1_7" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl , regex-pcre-builtin, vector }: @@ -167775,13 +167865,17 @@ self: { pname = "pcre-utils"; version = "0.1.7"; sha256 = "27eb5861a85399fb4d3fe1e95898a95fd4d9b4f68fdab4ef38c38a1b260e2ed6"; + revision = "1"; + editedCabalFile = "7d1f06ff5603638bb7e8970e8384ad3f75a91efa2e19e64f4baad2b959c7329f"; libraryHaskellDepends = [ array attoparsec base bytestring mtl regex-pcre-builtin vector ]; testHaskellDepends = [ base bytestring HUnit regex-pcre-builtin ]; + jailbreak = true; homepage = "https://github.com/bartavelle/pcre-utils"; description = "Perl-like substitute and split for PCRE regexps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pcre-utils_0_1_8" = callPackage @@ -167792,6 +167886,8 @@ self: { pname = "pcre-utils"; version = "0.1.8"; sha256 = "9599b89fcea0676891fcb6a51b556db4af5f870c1362a84492d773b3927cd8b2"; + revision = "1"; + editedCabalFile = "a8d78c173e0bb1b3b6975b0c5cc39ae312b1b9fdc0f14e3b4e336c3d544b27b5"; libraryHaskellDepends = [ array attoparsec base bytestring mtl regex-pcre-builtin vector ]; @@ -167802,6 +167898,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pcre-utils" = callPackage + ({ mkDerivation, array, attoparsec, base, bytestring, HUnit, mtl + , regex-pcre-builtin, vector + }: + mkDerivation { + pname = "pcre-utils"; + version = "0.1.8.1"; + sha256 = "6c2fc14e13b3e0b2b09f188ee32affa9fe60755cc87409255f5ec8cbd8971ed7"; + libraryHaskellDepends = [ + array attoparsec base bytestring mtl regex-pcre-builtin vector + ]; + testHaskellDepends = [ base bytestring HUnit regex-pcre-builtin ]; + homepage = "https://github.com/bartavelle/pcre-utils"; + description = "Perl-like substitute and split for PCRE regexps"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pdf-toolbox-content_0_0_5_0" = callPackage ({ mkDerivation, attoparsec, base, base16-bytestring, bytestring , containers, io-streams, pdf-toolbox-core, text @@ -167930,7 +168043,6 @@ self: { homepage = "https://github.com/Yuras/pdf-toolbox"; description = "Simple pdf viewer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pdf2line" = callPackage @@ -168030,7 +168142,6 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peakachu" = callPackage @@ -168046,7 +168157,6 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peano" = callPackage @@ -168056,6 +168166,7 @@ self: { version = "0.1.0.1"; sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Peano numbers"; license = "unknown"; }) {}; @@ -168092,7 +168203,6 @@ self: { ]; description = "pec embedded compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pecoff" = callPackage @@ -168122,7 +168232,6 @@ self: { homepage = "http://github.com/HackerFoo/peg"; description = "a lazy non-deterministic concatenative programming language"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peggy" = callPackage @@ -168163,7 +168272,6 @@ self: { homepage = "https://github.com/brunjlar/pell"; description = "Package to solve the Generalized Pell Equation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pem" = callPackage @@ -168224,7 +168332,6 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -168245,7 +168352,6 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -168269,7 +168375,6 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peparser" = callPackage @@ -168282,7 +168387,6 @@ self: { homepage = "https://github.com/igraves/peparser-haskell"; description = "A parser for PE object files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perceptron" = callPackage @@ -168325,7 +168429,6 @@ self: { homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perfecthash" = callPackage @@ -168344,7 +168447,6 @@ self: { ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "period" = callPackage @@ -168362,6 +168464,7 @@ self: { ]; executableHaskellDepends = [ base optparse-applicative text ]; testHaskellDepends = [ base hspec HUnit text time ]; + jailbreak = true; homepage = "https://github.com/w3rs/period"; description = "Parse and format date periods, collapse and expand their text representations"; license = stdenv.lib.licenses.bsd3; @@ -168383,7 +168486,6 @@ self: { homepage = "https://github.com/sonyandy/perm"; description = "permutation Applicative and Monad with many mtl instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "permutation" = callPackage @@ -168407,7 +168509,6 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persist2er" = callPackage @@ -168972,7 +169073,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent" = callPackage + "persistent_2_2_4_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -169003,10 +169104,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent_2_5" = callPackage + "persistent" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , blaze-html, blaze-markup, bytestring, conduit, containers , exceptions, fast-logger, hspec, http-api-data, lifted-base @@ -169037,7 +169139,6 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, multi-backend data serialization"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -169100,7 +169201,6 @@ self: { jailbreak = true; description = "Parse DATABASE_URL into configuration types for Persistent"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-equivalence" = callPackage @@ -169129,7 +169229,6 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-instances-iproute" = callPackage @@ -169176,7 +169275,6 @@ self: { homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-mongoDB_2_1_2" = callPackage @@ -169242,7 +169340,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-mongoDB" = callPackage + "persistent-mongoDB_2_1_4" = callPackage ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal , conduit, containers, http-api-data, monad-control, mongoDB , network, path-pieces, persistent, resource-pool, resourcet, text @@ -169260,10 +169358,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using mongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-mongoDB_2_5" = callPackage + "persistent-mongoDB" = callPackage ({ mkDerivation, aeson, attoparsec, base, bson, bytestring, cereal , conduit, containers, http-api-data, monad-control, mongoDB , network, path-pieces, persistent, resource-pool, resourcet, text @@ -169278,11 +169377,9 @@ self: { http-api-data monad-control mongoDB network path-pieces persistent resource-pool resourcet text time transformers ]; - jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using mongoDB"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -169391,7 +169488,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-mysql" = callPackage + "persistent-mysql_2_3_0_2" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, mysql, mysql-simple , persistent, resourcet, text, transformers @@ -169408,10 +169505,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using MySQL database server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-mysql_2_5" = callPackage + "persistent-mysql" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, mysql, mysql-simple , persistent, resource-pool, resourcet, text, transformers @@ -169425,11 +169523,9 @@ self: { monad-control monad-logger mysql mysql-simple persistent resource-pool resourcet text transformers ]; - jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using MySQL database server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -169753,7 +169849,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-postgresql" = callPackage + "persistent-postgresql_2_2_2" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, persistent , postgresql-libpq, postgresql-simple, resourcet, text, time @@ -169771,10 +169867,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using postgresql"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-postgresql_2_5" = callPackage + "persistent-postgresql" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit , containers, monad-control, monad-logger, persistent , postgresql-libpq, postgresql-simple, resource-pool, resourcet @@ -169789,11 +169886,9 @@ self: { monad-control monad-logger persistent postgresql-libpq postgresql-simple resource-pool resourcet text time transformers ]; - jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using postgresql"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -169813,7 +169908,6 @@ self: { homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persistent-ratelimit" = callPackage @@ -169823,6 +169917,7 @@ self: { version = "0.2.0.0"; sha256 = "e3b14ed8c78999ebe797e84cac75bc66ed7bd264b9ccef92279193be31ed114e"; libraryHaskellDepends = [ base time yesod ]; + jailbreak = true; homepage = "https://github.com/jprider63/persistent-ratelimit"; description = "A library for rate limiting activities with a persistent backend"; license = stdenv.lib.licenses.mit; @@ -170073,7 +170168,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-sqlite" = callPackage + "persistent-sqlite_2_2_1" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , hspec, monad-control, monad-logger, old-locale, persistent , persistent-template, resourcet, text, time, transformers @@ -170095,10 +170190,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-sqlite_2_5_0_1" = callPackage + "persistent-sqlite" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , hspec, monad-control, monad-logger, old-locale, persistent , persistent-template, resource-pool, resourcet, text, time @@ -170119,11 +170215,9 @@ self: { testHaskellDepends = [ base hspec persistent persistent-template time transformers ]; - jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -170467,7 +170561,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template" = callPackage + "persistent-template_2_1_8_1" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -170488,10 +170582,11 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; - "persistent-template_2_5_1_3" = callPackage + "persistent-template" = callPackage ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers , ghc-prim, hspec, http-api-data, monad-control, monad-logger , path-pieces, persistent, QuickCheck, tagged, template-haskell @@ -170509,11 +170604,9 @@ self: { testHaskellDepends = [ aeson base bytestring hspec persistent QuickCheck text transformers ]; - jailbreak = true; homepage = "http://www.yesodweb.com/book/persistent"; description = "Type-safe, non-relational, multi-backend persistence"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; maintainers = with stdenv.lib.maintainers; [ psibi ]; }) {}; @@ -170602,7 +170695,6 @@ self: { homepage = "https://github.com/frasertweedale/hs-persona-idp"; description = "Persona (BrowserID) Identity Provider"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pesca" = callPackage @@ -170617,7 +170709,6 @@ self: { homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; description = "Proof Editor for Sequent Calculus"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls" = callPackage @@ -170645,7 +170736,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peyotls-codec" = callPackage @@ -170665,7 +170755,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pez" = callPackage @@ -170684,7 +170773,6 @@ self: { homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness" = callPackage @@ -170705,7 +170793,6 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness-client" = callPackage @@ -170737,7 +170824,6 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service for creating temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-store" = callPackage @@ -170832,7 +170918,6 @@ self: { homepage = "https://github.com/chrisdone/pgsql-simple"; description = "A mid-level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pgstream" = callPackage @@ -170858,30 +170943,32 @@ self: { jailbreak = true; description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "phantom-state_0_2_0_2" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "phantom-state"; + version = "0.2.0.2"; + sha256 = "d536663dbfc4c0039e2d964ae1a52339f0c8ab30de0b8b78d4524d9b8e04cf11"; + libraryHaskellDepends = [ base transformers ]; + jailbreak = true; + description = "Phantom State Transformer. Like State Monad, but without values."; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phantom-state" = callPackage - ({ mkDerivation, base, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.0.2"; - sha256 = "d536663dbfc4c0039e2d964ae1a52339f0c8ab30de0b8b78d4524d9b8e04cf11"; - libraryHaskellDepends = [ base transformers ]; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "phantom-state_0_2_1_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "phantom-state"; version = "0.2.1.0"; sha256 = "fd35de3275c4bb0f00826ae71460b36763d466f5697d77ebfaffbe5f38f04128"; + revision = "1"; + editedCabalFile = "da71f82126685aac96c7e875162a1d8a192e5b7b10cea2d178f8d22bc6f4a70b"; libraryHaskellDepends = [ base transformers ]; description = "Phantom State Transformer. Like State Monad, but without values."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phasechange" = callPackage @@ -170898,7 +170985,6 @@ self: { homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phash" = callPackage @@ -170915,6 +171001,7 @@ self: { base doctest HUnit smallcheck tasty tasty-hunit tasty-smallcheck ]; testSystemDepends = [ pHash ]; + jailbreak = true; homepage = "http://github.com/michaelxavier/phash"; description = "Haskell bindings to pHash, the open source perceptual hash library"; license = stdenv.lib.licenses.gpl3; @@ -170957,7 +171044,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "ghci debug viewer with simple editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "phoityne-vscode" = callPackage @@ -170968,8 +171054,8 @@ self: { }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.3.0"; - sha256 = "cf33fb53d46cdb21c76397e1a2b69ee96f5c582b63276fc2f337abf43698a0ca"; + version = "0.0.4.0"; + sha256 = "2a5bdf5cac4e6a168ba37ec0ccc3982c038d88e305c532df4c1b254dd8749794"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -170995,7 +171081,6 @@ self: { homepage = "https://github.com/christian-marie/phone-numbers"; description = "Haskell bindings to the libphonenumber library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {phonenumber = null;}; "phone-push" = callPackage @@ -171014,7 +171099,6 @@ self: { homepage = "https://github.com/gurgeh/haskell-phone-push"; description = "Push notifications for Android and iOS"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phonetic-code" = callPackage @@ -171044,7 +171128,6 @@ self: { homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "photoname" = callPackage @@ -171067,7 +171150,6 @@ self: { homepage = "http://hub.darcs.net/dino/photoname"; description = "Rename photo image files based on EXIF shoot date"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phraskell" = callPackage @@ -171083,7 +171165,6 @@ self: { homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phybin" = callPackage @@ -171118,7 +171199,6 @@ self: { homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pi-calculus" = callPackage @@ -171140,7 +171220,6 @@ self: { homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pia-forward" = callPackage @@ -171187,7 +171266,6 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picologic" = callPackage @@ -171292,6 +171370,7 @@ self: { version = "0.1.3"; sha256 = "374d64964bbb35d24bbc3908d9de38f0087d425b6f7ab90c88f870b865564fd2"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/sdiehl/haskell-picosat"; description = "Bindings to the PicoSAT solver"; license = stdenv.lib.licenses.mit; @@ -171308,7 +171387,6 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "piki" = callPackage @@ -171323,7 +171401,6 @@ self: { homepage = "http://www.mew.org/~kazu/proj/piki/"; description = "Yet another text-to-html converter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pinboard" = callPackage @@ -171346,7 +171423,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "pinch" = callPackage + "pinch_0_2_0_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text , unordered-containers, vector @@ -171363,13 +171440,14 @@ self: { base bytestring containers hspec hspec-discover QuickCheck text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/abhinav/pinch"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinch_0_2_0_1" = callPackage + "pinch" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text , unordered-containers, vector @@ -171389,7 +171467,6 @@ self: { homepage = "https://github.com/abhinav/pinch#readme"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pinchot_0_6_0_0" = callPackage @@ -171411,7 +171488,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinchot" = callPackage + "pinchot_0_18_0_0" = callPackage ({ mkDerivation, base, containers, Earley, lens, ListLike , semigroups, template-haskell, transformers }: @@ -171428,6 +171505,26 @@ 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.0.2"; + sha256 = "bfc86c6fc6402ed490b5f7f9e7d4c0f2ffb1ff8c5a3f8612f105ce5e80612721"; + isLibrary = true; + isExecutable = true; + 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 @@ -171473,6 +171570,7 @@ self: { base mtl QuickCheck test-framework test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171493,6 +171591,7 @@ self: { base mtl QuickCheck test-framework test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171511,6 +171610,7 @@ self: { base mtl QuickCheck test-framework test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171529,6 +171629,7 @@ self: { base mtl QuickCheck test-framework test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171547,6 +171648,7 @@ self: { base mtl QuickCheck test-framework test-framework-quickcheck2 transformers ]; + jailbreak = true; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171569,6 +171671,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes_4_2_0" = callPackage + ({ mkDerivation, base, mmorph, mtl, QuickCheck, test-framework + , test-framework-quickcheck2, transformers + }: + mkDerivation { + pname = "pipes"; + version = "4.2.0"; + sha256 = "1e407197e94c3c8642fd2c7b4f8e5a3e537844dff2780c396464a47ae0ec0124"; + libraryHaskellDepends = [ base mmorph mtl transformers ]; + testHaskellDepends = [ + base mtl QuickCheck test-framework test-framework-quickcheck2 + transformers + ]; + description = "Compositional pipelines"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipes-aeson_0_4_1_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes , pipes-attoparsec, pipes-bytestring, pipes-parse, transformers @@ -171721,6 +171841,7 @@ self: { attoparsec base HUnit mmorph pipes pipes-parse tasty tasty-hunit text transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-attoparsec"; description = "Attoparsec and Pipes integration"; license = stdenv.lib.licenses.bsd3; @@ -171824,6 +171945,7 @@ self: { base binary bytestring ghc-prim lens-family-core pipes pipes-parse smallcheck tasty tasty-hunit tasty-smallcheck transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-binary"; description = "Encode and decode binary streams using the pipes and binary libraries"; license = stdenv.lib.licenses.bsd3; @@ -171847,6 +171969,7 @@ self: { base binary bytestring ghc-prim lens-family-core pipes pipes-parse smallcheck tasty tasty-hunit tasty-smallcheck transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-binary"; description = "Encode and decode binary streams using the pipes and binary libraries"; license = stdenv.lib.licenses.bsd3; @@ -171863,6 +171986,7 @@ self: { libraryHaskellDepends = [ base bytestring pipes pipes-group pipes-parse transformers ]; + jailbreak = true; description = "ByteString support for pipes"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -171997,7 +172121,6 @@ self: { homepage = "https://github.com/nikita-volkov/pipes-cereal-plus"; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-cliff" = callPackage @@ -172060,7 +172183,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-concurrency" = callPackage + "pipes-concurrency_2_0_5" = callPackage ({ mkDerivation, async, base, pipes, stm }: mkDerivation { pname = "pipes-concurrency"; @@ -172070,6 +172193,19 @@ self: { testHaskellDepends = [ async base pipes stm ]; description = "Concurrency for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-concurrency" = callPackage + ({ mkDerivation, async, base, contravariant, pipes, stm, void }: + mkDerivation { + pname = "pipes-concurrency"; + version = "2.0.6"; + sha256 = "e0523b67c40c0e0fba04e2eb695adae9142ee199a8f54326f770cb33d66a3b8e"; + libraryHaskellDepends = [ base contravariant pipes stm void ]; + testHaskellDepends = [ async base pipes stm ]; + description = "Concurrency for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-conduit" = callPackage @@ -172083,7 +172219,6 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-core" = callPackage @@ -172114,7 +172249,6 @@ self: { homepage = "http://github.com/kvanberendonck/pipes-courier"; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-csv" = callPackage @@ -172146,6 +172280,7 @@ self: { version = "0.3"; sha256 = "e6586706e39cf93326a073c93e049a2abdfe7942d425e572601a813d346477ed"; libraryHaskellDepends = [ base errors pipes ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/pipes-errors"; description = "Integration between pipes and errors"; license = stdenv.lib.licenses.bsd3; @@ -172205,6 +172340,7 @@ self: { testHaskellDepends = [ base HUnit pipes test-framework test-framework-hunit transformers ]; + jailbreak = true; description = "Extra utilities for pipes"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -172248,10 +172384,10 @@ self: { hspec-expectations mtl pipes pipes-safe process semigroups text transformers unix ]; + jailbreak = true; homepage = "https://github.com/jwiegley/pipes-files"; description = "Fast traversal of directory trees using pipes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pipes-group_1_0_2" = callPackage @@ -172263,6 +172399,7 @@ self: { libraryHaskellDepends = [ base free pipes pipes-parse transformers ]; + jailbreak = true; description = "Group streams into substreams"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172365,10 +172502,10 @@ self: { QuickCheck reflection text transformers validation vinyl vinyl-utils ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/key-value-csv"; description = "Streaming processing of CSV files preceded by key-value pairs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-mongodb" = callPackage @@ -172398,6 +172535,7 @@ self: { base bytestring network network-simple pipes pipes-safe transformers ]; + jailbreak = true; homepage = "https://github.com/k0001/pipes-network"; description = "Use network sockets together with the pipes library"; license = stdenv.lib.licenses.bsd3; @@ -172420,7 +172558,6 @@ self: { homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p" = callPackage @@ -172436,6 +172573,7 @@ self: { async base binary bytestring errors exceptions mtl network network-simple-sockaddr pipes pipes-concurrency pipes-network ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/pipes-p2p"; description = "P2P network nodes with pipes"; license = stdenv.lib.licenses.bsd3; @@ -172459,7 +172597,6 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p-examples"; description = "Examples using pipes-p2p"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-parse_3_0_2" = callPackage @@ -172469,6 +172606,7 @@ self: { version = "3.0.2"; sha256 = "08b44b02f5137f35f1570a1f1b1adc7ef9f48b86516c9edaae104c3b1184b4b4"; libraryHaskellDepends = [ base pipes transformers ]; + jailbreak = true; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172481,6 +172619,7 @@ self: { version = "3.0.3"; sha256 = "f55298ad7a4d02c2cfb0bfc02a5cfd3785c987e06202d61409c10618e0a35a03"; libraryHaskellDepends = [ base pipes transformers ]; + jailbreak = true; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172493,6 +172632,7 @@ self: { version = "3.0.4"; sha256 = "be1d15fc1fd4b3a8631f3202967fbdcd916f8567eedcf7ee17801296830c3705"; libraryHaskellDepends = [ base pipes transformers ]; + jailbreak = true; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172510,7 +172650,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-parse" = callPackage + "pipes-parse_3_0_6" = callPackage ({ mkDerivation, base, pipes, transformers }: mkDerivation { pname = "pipes-parse"; @@ -172519,6 +172659,18 @@ self: { libraryHaskellDepends = [ base pipes transformers ]; description = "Parsing infrastructure for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-parse" = callPackage + ({ mkDerivation, base, pipes, transformers }: + mkDerivation { + pname = "pipes-parse"; + version = "3.0.7"; + sha256 = "3f61375dd13d6ca6aa4d73ba62e3dbc8f02f6ad62d6dffb5f1eecd21e1637824"; + libraryHaskellDepends = [ base pipes transformers ]; + description = "Parsing infrastructure for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; }) {}; "pipes-postgresql-simple" = callPackage @@ -172548,6 +172700,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base mwc-random pipes time ]; executableHaskellDepends = [ base pipes time ]; + jailbreak = true; homepage = "http://github.com/ImAlsoGreg/pipes-rt"; description = "A few pipes to control the timing of yields"; license = stdenv.lib.licenses.bsd3; @@ -172563,6 +172716,25 @@ self: { libraryHaskellDepends = [ base containers exceptions pipes transformers ]; + jailbreak = true; + description = "Safety for the pipes ecosystem"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-safe_2_2_3" = callPackage + ({ mkDerivation, base, containers, exceptions, monad-control, mtl + , pipes, transformers, transformers-base + }: + mkDerivation { + pname = "pipes-safe"; + version = "2.2.3"; + sha256 = "d17b8169e2cee683953b020894c4d34fbb1babe063e4309169bef1a90d1e99a7"; + libraryHaskellDepends = [ + base containers exceptions monad-control mtl pipes transformers + transformers-base + ]; + jailbreak = true; description = "Safety for the pipes ecosystem"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -172574,8 +172746,8 @@ self: { }: mkDerivation { pname = "pipes-safe"; - version = "2.2.3"; - sha256 = "d17b8169e2cee683953b020894c4d34fbb1babe063e4309169bef1a90d1e99a7"; + version = "2.2.4"; + sha256 = "502dca5ab38596c70917906ed979f917db52ed91b938d52d96dcb7c56735486e"; libraryHaskellDepends = [ base containers exceptions monad-control mtl pipes transformers transformers-base @@ -172631,6 +172803,7 @@ self: { base bytestring pipes pipes-bytestring pipes-group pipes-parse pipes-safe streaming-commons text transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/text-pipes"; description = "Text pipes"; license = stdenv.lib.licenses.bsd3; @@ -172650,12 +172823,33 @@ self: { base bytestring pipes pipes-bytestring pipes-group pipes-parse pipes-safe streaming-commons text transformers ]; + jailbreak = true; homepage = "https://github.com/michaelt/text-pipes"; description = "Text pipes"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pipes-text_0_0_2_1" = callPackage + ({ mkDerivation, base, bytestring, pipes, pipes-bytestring + , pipes-group, pipes-parse, pipes-safe, streaming-commons, text + , transformers + }: + mkDerivation { + pname = "pipes-text"; + version = "0.0.2.1"; + sha256 = "4bb6f008ad1a56e8a685ca960ddd777647183c15989883d14f84e5a5aa21b3e3"; + libraryHaskellDepends = [ + base bytestring pipes pipes-bytestring pipes-group pipes-parse + pipes-safe streaming-commons text transformers + ]; + jailbreak = true; + homepage = "https://github.com/michaelt/text-pipes"; + description = "properly streaming text"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pipes-text" = callPackage ({ mkDerivation, base, bytestring, pipes, pipes-bytestring , pipes-group, pipes-parse, pipes-safe, streaming-commons, text @@ -172663,8 +172857,8 @@ self: { }: mkDerivation { pname = "pipes-text"; - version = "0.0.2.1"; - sha256 = "4bb6f008ad1a56e8a685ca960ddd777647183c15989883d14f84e5a5aa21b3e3"; + version = "0.0.2.3"; + sha256 = "68e1bfc8dc9d989a73be65406a6c3528b0ad16a6b85a6bf2023b751e076d89ac"; libraryHaskellDepends = [ base bytestring pipes pipes-bytestring pipes-group pipes-parse pipes-safe streaming-commons text transformers @@ -172694,7 +172888,6 @@ self: { ]; description = "Interfacing pipes with foldl folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-vector" = callPackage @@ -172825,7 +173018,6 @@ self: { jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pit" = callPackage @@ -172850,7 +173042,6 @@ self: { homepage = "https://github.com/chiro/haskell-pit"; description = "Account management tool"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pitchtrack" = callPackage @@ -172869,6 +173060,7 @@ self: { base bytestring dywapitchtrack hspec pipes pipes-bytestring process transformers ]; + jailbreak = true; description = "Pitch tracking library"; license = stdenv.lib.licenses.mit; }) {}; @@ -172890,9 +173082,9 @@ self: { executableHaskellDepends = [ base either servant text transformers ]; + jailbreak = true; description = "A library and a CLI tool for accessing Pivotal Tracker API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pkcs1" = callPackage @@ -172907,7 +173099,7 @@ self: { license = "GPL"; }) {}; - "pkcs10" = callPackage + "pkcs10_0_1_0_5" = callPackage ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base , bytestring, cryptonite, pem, QuickCheck, tasty, tasty-hunit , tasty-quickcheck, transformers, x509 @@ -172924,6 +173116,30 @@ self: { asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem QuickCheck tasty tasty-hunit tasty-quickcheck transformers x509 ]; + jailbreak = true; + homepage = "https://github.com/fcomb/pkcs10-hs#readme"; + description = "PKCS#10 library"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pkcs10" = callPackage + ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base + , bytestring, cryptonite, pem, QuickCheck, tasty, tasty-hunit + , tasty-quickcheck, transformers, x509 + }: + mkDerivation { + pname = "pkcs10"; + version = "0.1.1.0"; + sha256 = "1d4665fa5a429e859535e132c507b1e1ec713de50d3e085de9731bbd1c9cbeec"; + libraryHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + x509 + ]; + testHaskellDepends = [ + asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem + QuickCheck tasty tasty-hunit tasty-quickcheck transformers x509 + ]; homepage = "https://github.com/fcomb/pkcs10-hs#readme"; description = "PKCS#10 library"; license = stdenv.lib.licenses.asl20; @@ -172953,7 +173169,6 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pktree" = callPackage @@ -173025,7 +173240,6 @@ self: { jailbreak = true; description = "A representation of planar graphs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plat" = callPackage @@ -173039,7 +173253,6 @@ self: { ]; description = "Simple templating library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "playlists" = callPackage @@ -173093,9 +173306,9 @@ self: { base bytestring directory hspec mtl posix-pty process QuickCheck text time ]; + jailbreak = true; description = "Remote monad for editing plists"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plivo" = callPackage @@ -173117,7 +173330,6 @@ self: { homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot_0_2_3_4" = callPackage @@ -173131,6 +173343,7 @@ self: { libraryHaskellDepends = [ array base cairo colour hmatrix mtl pango transformers ]; + jailbreak = true; homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; @@ -173148,10 +173361,10 @@ self: { libraryHaskellDepends = [ array base cairo colour hmatrix mtl pango transformers ]; + jailbreak = true; homepage = "http://github.com/amcphail/plot"; description = "A plotting library, exportable as eps/pdf/svg/png or renderable with gtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk_0_2_0_2" = callPackage @@ -173178,7 +173391,6 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk-ui" = callPackage @@ -173192,10 +173404,10 @@ self: { libraryHaskellDepends = [ base cairo colour fixed-vector gtk hmatrix plot text vector ]; + jailbreak = true; homepage = "https://github.com/sumitsahrawat/plot-gtk-ui"; description = "A quick way to use Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-gtk3_0_1" = callPackage @@ -173241,7 +173453,6 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK3 plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plot-lab" = callPackage @@ -173259,7 +173470,6 @@ self: { homepage = "https://github.com/sumitsahrawat/plot-lab"; description = "A plotting tool with Mathematica like Manipulation abilities"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "plotfont" = callPackage @@ -173299,6 +173509,7 @@ self: { array base Cabal containers directory filepath ghc ghc-paths ghc-prim haskell-src process random ]; + jailbreak = true; homepage = "http://hub.darcs.net/stepcut/plugins"; description = "Dynamic linking for Haskell and C objects"; license = stdenv.lib.licenses.bsd3; @@ -173318,7 +173529,6 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plugins-multistage" = callPackage @@ -173335,9 +173545,9 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck tasty-th template-haskell ]; + jailbreak = true; description = "Dynamic linking for embedded DSLs with staged compilation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plumbers" = callPackage @@ -173349,7 +173559,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ply-loader" = callPackage @@ -173369,7 +173578,6 @@ self: { executableHaskellDepends = [ base bytestring linear vector ]; description = "PLY file loader"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "png-file" = callPackage @@ -173401,7 +173609,6 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -173413,7 +173620,6 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pnm" = callPackage @@ -173459,7 +173665,6 @@ self: { ]; description = "Multi-backend (zookeeper and sqlite) DNS Server using persistent-library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointed_4_1" = callPackage @@ -173536,13 +173741,14 @@ self: { semigroupoids semigroups stm tagged transformers transformers-compat unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/pointed/"; description = "Pointed and copointed data"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pointed" = callPackage + "pointed_4_2_0_2" = callPackage ({ mkDerivation, base, comonad, containers, data-default-class , hashable, kan-extensions, semigroupoids, semigroups, stm, tagged , transformers, transformers-compat, unordered-containers @@ -173556,12 +173762,14 @@ self: { semigroupoids semigroups stm tagged transformers transformers-compat unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/pointed/"; description = "Pointed and copointed data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pointed_5" = callPackage + "pointed" = callPackage ({ mkDerivation, base, comonad, containers, data-default-class , hashable, kan-extensions, semigroupoids, semigroups, stm, tagged , transformers, transformers-compat, unordered-containers @@ -173570,16 +173778,16 @@ self: { pname = "pointed"; version = "5"; sha256 = "8906b8af5125ab3376794a290c5484dbec5a35d0bd0a57e94392ec0e12535d17"; + revision = "1"; + editedCabalFile = "f7ffc79d82f02a4229dbe175571f522de14fc52f0973fcff39906132bac20f9c"; libraryHaskellDepends = [ base comonad containers data-default-class hashable kan-extensions semigroupoids semigroups stm tagged transformers transformers-compat unordered-containers ]; - jailbreak = true; homepage = "http://github.com/ekmett/pointed/"; description = "Pointed and copointed data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointedlist" = callPackage @@ -173613,18 +173821,41 @@ self: { array base containers haskell-src-exts HUnit QuickCheck transformers ]; + jailbreak = true; description = "Tool for refactoring expressions into pointfree form"; license = "unknown"; }) {}; + "pointful_1_0_7" = callPackage + ({ mkDerivation, base, containers, haskell-src-exts, mtl, syb + , transformers + }: + mkDerivation { + pname = "pointful"; + version = "1.0.7"; + sha256 = "4a884725d0e4e5771ae1d653fd1b4948ccd8d290910a22a1318bb32a53fcef15"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers haskell-src-exts mtl syb transformers + ]; + executableHaskellDepends = [ + base containers haskell-src-exts mtl syb transformers + ]; + homepage = "http://github.com/23Skidoo/pointful"; + description = "Pointful refactoring tool"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "pointful" = callPackage ({ mkDerivation, base, containers, haskell-src-exts, mtl, syb , transformers }: mkDerivation { pname = "pointful"; - version = "1.0.7"; - sha256 = "4a884725d0e4e5771ae1d653fd1b4948ccd8d290910a22a1318bb32a53fcef15"; + version = "1.0.8"; + sha256 = "813152e920e7aad9d2ba2ab5d922deff9cd82ec156f981d16de4bc91320967ac"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -173676,7 +173907,6 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses"; description = "Pointless Lenses library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -173692,7 +173922,6 @@ self: { ]; description = "Pointless Rewrite library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poker-eval" = callPackage @@ -173748,7 +173977,6 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polar-shader" = callPackage @@ -173781,7 +174009,6 @@ self: { homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polimorf" = callPackage @@ -173881,6 +174108,7 @@ self: { version = "1.0.0"; sha256 = "268f2355f258e4659d940356aaed8cf1559c1268c21bd4f53e705cdeafd39d10"; libraryHaskellDepends = [ base lens ]; + jailbreak = true; homepage = "https://github.com/wdanilo/poly-control"; description = "This package provides abstraction for polymorphic controls, like PolyMonads or PolyApplicatives"; license = stdenv.lib.licenses.asl20; @@ -173925,9 +174153,9 @@ self: { algebra base base-unicode-symbols clist containers peano smallcheck tasty tasty-smallcheck transformers ]; + jailbreak = true; description = "Polynomial types and operations"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polynomial" = callPackage @@ -174032,7 +174260,6 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polysoup" = callPackage @@ -174059,7 +174286,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "polytypeable-utils" = callPackage @@ -174071,7 +174297,6 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ponder" = callPackage @@ -174098,7 +174323,6 @@ self: { homepage = "http://github.com/RobertFischer/pong-server#readme"; description = "A simple embedded pingable server that runs in the background"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-mediaserver" = callPackage @@ -174119,7 +174343,6 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xmpp" = callPackage @@ -174159,7 +174382,6 @@ self: { homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pontarius-xpmn" = callPackage @@ -174177,7 +174399,6 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pony" = callPackage @@ -174207,7 +174428,6 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pool-conduit" = callPackage @@ -174227,7 +174447,6 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Resource pool allocations via ResourceT. (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pooled-io" = callPackage @@ -174271,7 +174490,6 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poppler" = callPackage @@ -174290,7 +174508,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null; inherit (pkgs) gdk_pixbuf; inherit (pkgs.gnome) pango; inherit (pkgs) poppler;}; @@ -174328,7 +174545,6 @@ self: { homepage = "http://code.haskell.org/portaudio"; description = "Haskell bindings for the PortAudio library"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "porte" = callPackage @@ -174346,7 +174562,6 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "porter" = callPackage @@ -174358,7 +174573,6 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Implementation of the Porter stemming algorithm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports" = callPackage @@ -174371,7 +174585,6 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/"; description = "The Haskell Ports Library"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -174414,7 +174627,6 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -174491,7 +174703,6 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "POSIX Realtime functionality"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-timer" = callPackage @@ -174504,7 +174715,6 @@ self: { homepage = "https://github.com/mvv/posix-timer"; description = "Bindings to POSIX clock and timer functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "posix-waitpid" = callPackage @@ -174516,7 +174726,6 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "possible" = callPackage @@ -174576,7 +174785,6 @@ self: { homepage = "https://github.com/mattyhall/haskell-postcodes"; description = "A library that gets postcode information from the uk-postcodes.com"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-binary_0_5_0" = callPackage @@ -174804,7 +175012,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-binary" = callPackage + "postgresql-binary_0_9" = callPackage ({ mkDerivation, aeson, base, base-prelude, binary-parser , bytestring, conversion, conversion-bytestring, conversion-text , either, foldl, json-ast, loch-th, placeholders, postgresql-libpq @@ -174832,6 +175040,37 @@ self: { homepage = "https://github.com/nikita-volkov/postgresql-binary"; description = "Encoders and decoders for the PostgreSQL's binary format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "postgresql-binary" = callPackage + ({ mkDerivation, aeson, base, base-prelude, binary-parser + , bytestring, conversion, conversion-bytestring, conversion-text + , either, foldl, json-ast, loch-th, placeholders, postgresql-libpq + , QuickCheck, quickcheck-instances, rebase, scientific, tasty + , tasty-hunit, tasty-quickcheck, tasty-smallcheck, text, time + , transformers, uuid, vector + }: + mkDerivation { + pname = "postgresql-binary"; + version = "0.9.0.1"; + sha256 = "77f4dcf7b09961b5db11d3db753e27a5116d27d3e88661a58e6e742de94b5cf7"; + libraryHaskellDepends = [ + aeson base base-prelude binary-parser bytestring foldl loch-th + placeholders scientific text time transformers uuid vector + ]; + testHaskellDepends = [ + aeson base bytestring conversion conversion-bytestring + conversion-text either json-ast loch-th placeholders + postgresql-libpq QuickCheck quickcheck-instances rebase scientific + tasty tasty-hunit tasty-quickcheck tasty-smallcheck text time + transformers uuid vector + ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/nikita-volkov/postgresql-binary"; + description = "Encoders and decoders for the PostgreSQL's binary format"; + license = stdenv.lib.licenses.mit; }) {}; "postgresql-config" = callPackage @@ -175151,7 +175390,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "postgresql-simple" = callPackage + "postgresql-simple_0_5_1_3" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , bytestring, bytestring-builder, case-insensitive, containers , cryptohash, hashable, HUnit, postgresql-libpq, scientific @@ -175173,6 +175412,32 @@ self: { doCheck = false; description = "Mid-Level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "postgresql-simple" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , bytestring, bytestring-builder, case-insensitive, containers + , cryptohash, filepath, hashable, HUnit, postgresql-libpq + , scientific, tasty, tasty-golden, tasty-hunit, template-haskell + , text, time, transformers, uuid-types, vector + }: + mkDerivation { + pname = "postgresql-simple"; + version = "0.5.2.0"; + sha256 = "9795fe1eaade04e8afeaa6cad86e3c4c0fdb84f4658f82bd3721a65930ef4a71"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring bytestring-builder + case-insensitive containers hashable postgresql-libpq scientific + template-haskell text time transformers uuid-types vector + ]; + testHaskellDepends = [ + aeson base base16-bytestring bytestring containers cryptohash + filepath HUnit tasty tasty-golden tasty-hunit text time vector + ]; + doCheck = false; + description = "Mid-Level PostgreSQL client library"; + license = stdenv.lib.licenses.bsd3; }) {}; "postgresql-simple-migration" = callPackage @@ -175194,6 +175459,7 @@ self: { postgresql-simple text time ]; testHaskellDepends = [ base bytestring hspec postgresql-simple ]; + jailbreak = true; homepage = "https://github.com/ameingast/postgresql-simple-migration"; description = "PostgreSQL Schema Migrations"; license = stdenv.lib.licenses.bsd3; @@ -175226,7 +175492,6 @@ self: { homepage = "https://github.com/tolysz/postgresql-simple-typed"; description = "Typed extension for PostgreSQL simple"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-simple-url" = callPackage @@ -175282,7 +175547,6 @@ self: { homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgrest" = callPackage @@ -175331,7 +175595,6 @@ self: { homepage = "https://github.com/begriffs/postgrest"; description = "REST API for any Postgres database"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postie" = callPackage @@ -175354,7 +175617,6 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postmark" = callPackage @@ -175396,7 +175658,6 @@ self: { homepage = "http://github.com/peti/postmaster"; description = "Postmaster ESMTP Server"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) adns; inherit (pkgs) openssl;}; "potato-tool" = callPackage @@ -175408,6 +175669,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base binary bytestring split ]; + jailbreak = true; homepage = "https://github.com/RossMeikleham/Potato_Tool"; description = "Command line Dreamcast VMU filesystem toolset"; license = stdenv.lib.licenses.gpl2; @@ -175451,7 +175713,6 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "PowerMate bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "powerpc" = callPackage @@ -175464,7 +175725,6 @@ self: { homepage = "http://tomahawkins.org"; description = "Tools for PowerPC programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ppm" = callPackage @@ -175490,7 +175750,6 @@ self: { homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pqueue_1_2_1" = callPackage @@ -175515,6 +175774,7 @@ self: { version = "1.3.0"; sha256 = "0110e274ac6d0e9280a9c05b83859d0bfa1f0463d95db27adfbeb694ed6f5659"; libraryHaskellDepends = [ base deepseq ]; + jailbreak = true; description = "Reliable, persistent, fast priority queues"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -175527,6 +175787,7 @@ self: { version = "1.3.1"; sha256 = "f4ff225585d00d8813466ac70a767a05c079dcbfb4fcf353dc2341cf0560dc10"; libraryHaskellDepends = [ base deepseq ]; + jailbreak = true; description = "Reliable, persistent, fast priority queues"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -175557,7 +175818,6 @@ self: { jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "practice-room" = callPackage @@ -175576,7 +175836,6 @@ self: { homepage = "http://github.com/nfjinjing/practice-room"; description = "Practice Room"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "precis" = callPackage @@ -175597,7 +175856,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pred-set" = callPackage @@ -175781,7 +176039,6 @@ self: { homepage = "http://www.github.com/massysett/prednote"; description = "Tests and QuickCheck generators to accompany prednote"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prefix-units_0_1_0_2" = callPackage @@ -175849,7 +176106,6 @@ self: { jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pregame" = callPackage @@ -175869,7 +176125,6 @@ self: { homepage = "https://github.com/jxv/pregame"; description = "Prelude counterpart"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-compat" = callPackage @@ -175943,7 +176198,6 @@ self: { jailbreak = true; description = "Another kind of alternate Prelude file"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-plus" = callPackage @@ -175957,7 +176211,6 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prelude-prime" = callPackage @@ -176012,7 +176265,6 @@ self: { jailbreak = true; description = "Preprocess Haskell Repositories"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "preprocessor-tools" = callPackage @@ -176071,7 +176323,6 @@ self: { homepage = "https://github.com/chrisdone/present"; description = "Make presentations for data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "press" = callPackage @@ -176084,7 +176335,6 @@ self: { homepage = "http://github.com/bickfordb/text-press"; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "presto-hdbc" = callPackage @@ -176239,7 +176489,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pretty-show" = callPackage + "pretty-show_1_6_9" = callPackage ({ mkDerivation, array, base, filepath, ghc-prim, happy , haskell-lexer, pretty }: @@ -176254,6 +176504,28 @@ self: { ]; libraryToolDepends = [ happy ]; executableHaskellDepends = [ base ]; + jailbreak = true; + homepage = "http://wiki.github.com/yav/pretty-show"; + description = "Tools for working with derived `Show` instances and generic inspection of values"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pretty-show" = callPackage + ({ mkDerivation, array, base, filepath, ghc-prim, happy + , haskell-lexer, pretty + }: + mkDerivation { + pname = "pretty-show"; + version = "1.6.10"; + sha256 = "9c833641b90c5d5ed6483b630ce478c833cf752ee854e68d53da90f902257a8c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base filepath ghc-prim haskell-lexer pretty + ]; + libraryToolDepends = [ happy ]; + executableHaskellDepends = [ base ]; homepage = "http://wiki.github.com/yav/pretty-show"; description = "Tools for working with derived `Show` instances and generic inspection of values"; license = stdenv.lib.licenses.mit; @@ -176366,6 +176638,7 @@ self: { editedCabalFile = "df0a129c168c61a06a02123898de081b1d0b254cce6d7ab24b8f43ec37baef9e"; libraryHaskellDepends = [ base ghc-prim ]; testHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://github.com/haskell/primitive"; description = "Primitive memory-related operations"; license = stdenv.lib.licenses.bsd3; @@ -176380,6 +176653,7 @@ self: { sha256 = "34a5f39213c68369e7edc2a3ea175d3f4edbf89e9f0777784710eff6f2d69722"; libraryHaskellDepends = [ base ghc-prim transformers ]; testHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "https://github.com/haskell/primitive"; description = "Primitive memory-related operations"; license = stdenv.lib.licenses.bsd3; @@ -176410,7 +176684,6 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "SIMD data types and functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-board" = callPackage @@ -176433,7 +176706,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "ImageBoard on Happstack and HSP"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-bot" = callPackage @@ -176453,7 +176725,6 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pringletons" = callPackage @@ -176483,7 +176754,6 @@ self: { homepage = "https://github.com/JohnReedLOL/HaskellPrintDebugger"; description = "Debug print formatting library"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printf-mauke" = callPackage @@ -176499,7 +176769,6 @@ self: { ]; description = "A Perl printf like formatter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "printf-safe" = callPackage @@ -176509,6 +176778,7 @@ self: { version = "0.1.0.0"; sha256 = "492389dad3146efa2ab91fb2518c47c5dc6f94c993098e8e346cc5a77e3b5ed3"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Type safe interface for Text.Printf"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -176525,7 +176795,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/printxosd"; description = "Simple tool to display some text on an on-screen display"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "priority-queue" = callPackage @@ -176539,7 +176808,6 @@ self: { homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "priority-sync" = callPackage @@ -176598,6 +176866,7 @@ self: { libraryHaskellDepends = [ base containers random transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; description = "Probabilistic Functional Programming"; license = stdenv.lib.licenses.bsd3; @@ -176614,6 +176883,7 @@ self: { libraryHaskellDepends = [ base mtl mwc-random primitive statistics transformers vector ]; + jailbreak = true; homepage = "http://github.com/alpmestan/probable"; description = "Easy and reasonably efficient probabilistic programming and random generation"; license = stdenv.lib.licenses.bsd3; @@ -176633,7 +176903,6 @@ self: { ]; description = "Parse process information for Linux"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process_1_4_2_0" = callPackage @@ -176695,6 +176964,7 @@ self: { libraryHaskellDepends = [ base bytestring deepseq ListLike process text ]; + jailbreak = true; homepage = "https://github.com/seereason/process-extras"; description = "Process extras"; license = stdenv.lib.licenses.mit; @@ -176713,6 +176983,7 @@ self: { libraryHaskellDepends = [ base bytestring deepseq ListLike process text ]; + jailbreak = true; homepage = "https://github.com/seereason/process-extras"; description = "Process extras"; license = stdenv.lib.licenses.mit; @@ -176755,7 +177026,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "process-extras" = callPackage + "process-extras_0_3_3_8" = callPackage ({ mkDerivation, base, bytestring, deepseq, generic-deriving , ListLike, process, text }: @@ -176769,9 +177040,10 @@ self: { homepage = "https://github.com/seereason/process-extras"; description = "Process extras"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "process-extras_0_4_1_4" = callPackage + "process-extras" = callPackage ({ mkDerivation, base, bytestring, deepseq, generic-deriving , ListLike, process, text }: @@ -176785,7 +177057,6 @@ self: { homepage = "https://github.com/seereason/process-extras"; description = "Process extras"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-iterio" = callPackage @@ -176805,7 +177076,6 @@ self: { homepage = "https://github.com/garious/process-iterio"; description = "IterIO Process Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-leksah" = callPackage @@ -176818,7 +177088,6 @@ self: { jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-listlike" = callPackage @@ -176837,7 +177106,6 @@ self: { homepage = "https://github.com/ddssff/process-listlike"; description = "Process extras"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-progress" = callPackage @@ -176855,7 +177123,6 @@ self: { homepage = "https://src.seereason.com/process-progress"; description = "Run a process and do reportsing on its progress"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-qq" = callPackage @@ -176874,7 +177141,6 @@ self: { homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-streaming" = callPackage @@ -176906,7 +177172,6 @@ self: { ]; description = "Streaming interface to system processes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processing" = callPackage @@ -176926,7 +177191,6 @@ self: { jailbreak = true; description = "Web graphic applications with processing.js."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processor-creative-kit" = callPackage @@ -176954,7 +177218,6 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procrastinating-variable" = callPackage @@ -176967,7 +177230,6 @@ self: { homepage = "http://github.com/gcross/procrastinating-variable"; description = "Haskell values that cannot be evaluated immediately"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "procstat" = callPackage @@ -176981,7 +177243,6 @@ self: { homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proctest" = callPackage @@ -177080,7 +177341,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "product-profunctors" = callPackage + "product-profunctors_0_7_0_2" = callPackage ({ mkDerivation, base, contravariant, profunctors, template-haskell }: mkDerivation { @@ -177094,6 +177355,26 @@ self: { homepage = "https://github.com/tomjaguarpaw/product-profunctors"; description = "product-profunctors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "product-profunctors" = callPackage + ({ mkDerivation, base, contravariant, profunctors, tagged + , template-haskell + }: + mkDerivation { + pname = "product-profunctors"; + version = "0.7.1.0"; + sha256 = "9800a0ebd9334b2503b692ac1a11bcf9bfbe0213d737a9aa9620c2761bb9d334"; + revision = "1"; + editedCabalFile = "56aad124ad4489c1e22a606800ebc4bd6e30ce1a3b66a0b42dc415a6e002bae5"; + libraryHaskellDepends = [ + base contravariant profunctors tagged template-haskell + ]; + testHaskellDepends = [ base profunctors ]; + homepage = "https://github.com/tomjaguarpaw/product-profunctors"; + description = "product-profunctors"; + license = stdenv.lib.licenses.bsd3; }) {}; "prof2dot" = callPackage @@ -177110,7 +177391,6 @@ self: { homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prof2pretty" = callPackage @@ -177214,6 +177494,7 @@ self: { libraryHaskellDepends = [ base comonad distributive tagged transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/profunctors/"; description = "Profunctors"; license = stdenv.lib.licenses.bsd3; @@ -177232,6 +177513,7 @@ self: { base bifunctors comonad contravariant distributive tagged transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/profunctors/"; description = "Profunctors"; license = stdenv.lib.licenses.bsd3; @@ -177264,7 +177546,6 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple progress tracking & projection library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressbar" = callPackage @@ -177279,7 +177560,6 @@ self: { executableHaskellDepends = [ base ]; description = "Progressbar API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progression" = callPackage @@ -177298,7 +177578,6 @@ self: { homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressive" = callPackage @@ -177319,7 +177598,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proj4-hs-bindings" = callPackage @@ -177332,7 +177610,6 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) proj;}; "project-template_0_1_4_2" = callPackage @@ -177422,7 +177699,6 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A Prolog interpreter written in Haskell"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph" = callPackage @@ -177442,7 +177718,6 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prolog-graph-lib" = callPackage @@ -177455,7 +177730,6 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "Generating images of resolution trees for Prolog queries"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prologue" = callPackage @@ -177474,10 +177748,10 @@ self: { pretty-show string-qq text transformers transformers-base tuple typelevel vector ]; + jailbreak = true; homepage = "https://github.com/wdanilo/prologue"; description = "Better, more general Prelude exporting common utilities"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prometheus" = callPackage @@ -177492,6 +177766,7 @@ self: { atomic-primops base bytestring containers http-types text transformers wai warp ]; + jailbreak = true; homepage = "http://github.com/LukeHoersten/prometheus#readme"; description = "Prometheus Haskell Client"; license = stdenv.lib.licenses.bsd3; @@ -177557,7 +177832,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "prompt" = callPackage + "prompt_0_1_1_0" = callPackage ({ mkDerivation, base, mtl, transformers, transformers-compat }: mkDerivation { pname = "prompt"; @@ -177569,6 +177844,23 @@ self: { homepage = "https://github.com/mstksg/prompt"; description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "prompt" = callPackage + ({ mkDerivation, base, base-compat, mtl, transformers + , transformers-compat + }: + mkDerivation { + pname = "prompt"; + version = "0.1.1.2"; + sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; + libraryHaskellDepends = [ + base base-compat mtl transformers transformers-compat + ]; + homepage = "https://github.com/mstksg/prompt"; + description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; + license = stdenv.lib.licenses.mit; }) {}; "propane" = callPackage @@ -177584,7 +177876,6 @@ self: { ]; description = "Functional synthesis of images and animations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "propellor" = callPackage @@ -177656,7 +177947,6 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/"; description = "A library for functional GUI development"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "props" = callPackage @@ -177685,6 +177975,7 @@ self: { aeson base bytestring cereal containers HsOpenSSL http-streams io-streams mtl text transformers vector ]; + jailbreak = true; homepage = "https://api.prosper.com"; description = "Bindings to the Prosper marketplace API"; license = stdenv.lib.licenses.bsd3; @@ -177703,7 +177994,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alsaLib;}; "protobuf" = callPackage @@ -177751,7 +178041,6 @@ self: { homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protobuf-simple" = callPackage @@ -177788,10 +178077,13 @@ self: { pname = "protocol-buffers"; version = "2.1.4"; sha256 = "ad92eb27e09c70a26353377a09b5d61715aa452215e6221e33fcd0065c15c96a"; + revision = "1"; + editedCabalFile = "c23756fdfcb641f46a49ace4b288d890a0ffd03d40606264da167ff84a480d92"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177806,10 +178098,13 @@ self: { pname = "protocol-buffers"; version = "2.1.5"; sha256 = "1028200fcef97d76f28e9ff22100066ad6b797c56fbf0222735b1ed4ece060dd"; + revision = "1"; + editedCabalFile = "baa275d115a39cd99e932193f58e7dd18f065b4adb5820797beb39c2e3cba7c7"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177824,10 +178119,13 @@ self: { pname = "protocol-buffers"; version = "2.1.6"; sha256 = "81f732202f7bf3e2fc697e5c5be13c46e5ef3af1d3b82d7b4394cf6fea942ebe"; + revision = "1"; + editedCabalFile = "f86205eec37b7abe1ffe13d6633e294c7e46f3f4d13985da0abfe201425d15c5"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177842,10 +178140,13 @@ self: { pname = "protocol-buffers"; version = "2.1.7"; sha256 = "4f7f2128305ef3d691bd316f60e8e1799f391230c42edb680be5667b4027cb5a"; + revision = "1"; + editedCabalFile = "3ed6d3f0758d6edb6d8505a1a81bdc652b836d14681916d674d503ef332ad20f"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177860,10 +178161,13 @@ self: { pname = "protocol-buffers"; version = "2.1.9"; sha256 = "bcef7e31d467c92429092b2900411569eb2eb2a9f3799409560b20e53afd0f10"; + revision = "1"; + editedCabalFile = "5a87b6596a40b70f7fe067c8a6116943aad414bb9cea9fa08d0472d366d0179e"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177878,10 +178182,34 @@ self: { pname = "protocol-buffers"; version = "2.1.12"; sha256 = "c863ce1729a4b8e8f5698f990942f1ddf569527893adb79b170a322eb3b8554e"; + revision = "1"; + editedCabalFile = "3c65ea18ce5d8cb410218118bb14e7f2b83abf20b45b4281d6d12b88fbc696c5"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string ]; + jailbreak = true; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Parse Google Protocol Buffer specifications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protocol-buffers_2_2_0" = callPackage + ({ mkDerivation, array, base, binary, bytestring, containers + , directory, filepath, mtl, parsec, syb, utf8-string + }: + mkDerivation { + pname = "protocol-buffers"; + version = "2.2.0"; + sha256 = "069a9ded2e9f7840ec51aef66eaabcdb428ceed8eee2b913590d5ee245506967"; + revision = "1"; + editedCabalFile = "23ebda7ea74075546a5ab75c567f97efe8ef0b6c0d7d994196e7286351659ee4"; + libraryHaskellDepends = [ + array base binary bytestring containers directory filepath mtl + parsec syb utf8-string + ]; + jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; @@ -177894,8 +178222,8 @@ self: { }: mkDerivation { pname = "protocol-buffers"; - version = "2.2.0"; - sha256 = "069a9ded2e9f7840ec51aef66eaabcdb428ceed8eee2b913590d5ee245506967"; + version = "2.4.0"; + sha256 = "1c4e8249a4913444cf5f0df7a1129ba8021b2eb09d99bce2af0d69791e5ffe69"; libraryHaskellDepends = [ array base binary bytestring containers directory filepath mtl parsec syb utf8-string @@ -177905,24 +178233,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "protocol-buffers_2_3_1" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , directory, filepath, mtl, parsec, syb, utf8-string - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.3.1"; - sha256 = "4cb6aee21144468d056c513d6cad8e822cf2b1b0da53277fb999683dd5665d43"; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath mtl - parsec syb utf8-string - ]; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "protocol-buffers-descriptor_2_1_4" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { @@ -178019,7 +178329,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "protocol-buffers-descriptor" = callPackage + "protocol-buffers-descriptor_2_2_0" = callPackage ({ mkDerivation, base, bytestring, containers, protocol-buffers }: mkDerivation { pname = "protocol-buffers-descriptor"; @@ -178028,20 +178338,6 @@ self: { libraryHaskellDepends = [ base bytestring containers protocol-buffers ]; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "protocol-buffers-descriptor_2_3_1" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.3.1"; - sha256 = "a6ec38f6641a10770404cf34280ec7769522aecba429fa36099334d3bc985bc7"; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; jailbreak = true; homepage = "https://github.com/k-bx/protocol-buffers"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; @@ -178049,6 +178345,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "protocol-buffers-descriptor" = callPackage + ({ mkDerivation, base, bytestring, containers, protocol-buffers }: + mkDerivation { + pname = "protocol-buffers-descriptor"; + version = "2.4.0"; + sha256 = "f894bcc3301c2c6306d795b99205c59d92d6fa81244f0d8d4f2cbe46c7b23df4"; + libraryHaskellDepends = [ + base bytestring containers protocol-buffers + ]; + homepage = "https://github.com/k-bx/protocol-buffers"; + description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "protocol-buffers-descriptor-fork" = callPackage ({ mkDerivation, base, bytestring, containers , protocol-buffers-fork @@ -178063,7 +178373,6 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protocol-buffers-fork" = callPackage @@ -178081,7 +178390,6 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "protolude" = callPackage @@ -178114,6 +178422,7 @@ self: { base containers directory filepath HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "http://github.com/jasonrbriggs/proton"; description = "Simple XML templating library"; license = stdenv.lib.licenses.asl20; @@ -178150,7 +178459,6 @@ self: { homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proxied" = callPackage @@ -178176,7 +178484,6 @@ self: { homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "psc-ide_0_5_0" = callPackage @@ -178244,10 +178551,8 @@ self: { }: mkDerivation { pname = "pseudo-boolean"; - version = "0.1.4.0"; - sha256 = "0fc981b210c969fb150f5720829556c94bc6f24c5aff6807a08c3d39e2ca726d"; - revision = "1"; - editedCabalFile = "3d1f36fb70c675267b56b621175f957ea34d56f7149da4e3085d1ace84ad0d43"; + version = "0.1.5.0"; + sha256 = "11db4cd25d452d126cc4761daeff4068a42070919939aec490f7a23fb8136876"; libraryHaskellDepends = [ attoparsec base bytestring bytestring-builder containers deepseq dlist hashable megaparsec parsec @@ -178392,7 +178697,6 @@ self: { jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "publicsuffix_0_20151212" = callPackage @@ -178403,6 +178707,22 @@ self: { sha256 = "7c45ec12c38607dea637a87f1e5de578e1d398f93377ad9e108afa0f53a16512"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; + homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; + description = "The publicsuffix list exposed as proper Haskell types"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "publicsuffix_0_20160522" = callPackage + ({ mkDerivation, base, filepath, hspec, template-haskell }: + mkDerivation { + pname = "publicsuffix"; + version = "0.20160522"; + sha256 = "1ae1ae02b3c317d421de31490cbd4b83a306f6be53103a5b1438aa170703f529"; + libraryHaskellDepends = [ base filepath template-haskell ]; + testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; description = "The publicsuffix list exposed as proper Haskell types"; license = stdenv.lib.licenses.mit; @@ -178413,8 +178733,8 @@ self: { ({ mkDerivation, base, filepath, hspec, template-haskell }: mkDerivation { pname = "publicsuffix"; - version = "0.20160522"; - sha256 = "1ae1ae02b3c317d421de31490cbd4b83a306f6be53103a5b1438aa170703f529"; + version = "0.20160526"; + sha256 = "524046d9b73e68fa8f1b3a928317997f4c9e50d757f64b10dd4293ff7791c4da"; libraryHaskellDepends = [ base filepath template-haskell ]; testHaskellDepends = [ base hspec ]; homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; @@ -178459,7 +178779,6 @@ self: { homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubnub" = callPackage @@ -178494,7 +178813,6 @@ self: { homepage = "http://github.com/pubnub/haskell"; description = "PubNub Haskell SDK"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pubsub" = callPackage @@ -178515,7 +178833,6 @@ self: { homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puffytools" = callPackage @@ -178546,7 +178863,6 @@ self: { homepage = "https://github.com/pharpend/puffytools"; description = "A CLI assistant"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugixml" = callPackage @@ -178565,7 +178881,6 @@ self: { homepage = "https://github.com/philopon/pugixml-hs"; description = "pugixml binding"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "pugs-DrIFT" = callPackage @@ -178600,7 +178915,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugs-compat" = callPackage @@ -178632,7 +178946,6 @@ self: { homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pulse-simple" = callPackage @@ -178645,7 +178958,6 @@ self: { librarySystemDepends = [ libpulseaudio ]; description = "binding to Simple API of pulseaudio"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libpulseaudio;}; "punkt" = callPackage @@ -178665,7 +178977,6 @@ self: { homepage = "https://github.com/bryant/punkt"; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "punycode" = callPackage @@ -178704,7 +179015,6 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A program that displays the puppet resources associated to a node given .pp files."; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pure-cdb" = callPackage @@ -179135,9 +179445,9 @@ self: { transformers ]; testHaskellDepends = [ base containers text ]; + jailbreak = true; description = "Generate PureScript data types from Haskell data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "purescript-bundle-fast" = callPackage @@ -179197,7 +179507,6 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending push notifications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-ccs" = callPackage @@ -179218,7 +179527,6 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -179238,7 +179546,6 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A general library for sending/receiving push notif. through dif. services."; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pusher-haskell" = callPackage @@ -179316,6 +179623,7 @@ self: { aeson base bytestring hspec http-client http-types mtl QuickCheck text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/pusher-community/pusher-http-haskell"; description = "Haskell client library for the Pusher HTTP API"; license = stdenv.lib.licenses.mit; @@ -179336,6 +179644,7 @@ self: { lens-aeson network scientific stm text time transformers unordered-containers websockets wuss ]; + jailbreak = true; homepage = "https://github.com/barrucadu/pusher-ws"; description = "Implementation of the Pusher WebSocket protocol"; license = stdenv.lib.licenses.mit; @@ -179363,7 +179672,6 @@ self: { homepage = "https://github.com/jwiegley/pushme"; description = "Tool to synchronize multiple directories with rsync, zfs or git-annex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "putlenses" = callPackage @@ -179381,7 +179689,6 @@ self: { jailbreak = true; description = "Put-based lens library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw" = callPackage @@ -179411,7 +179718,6 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw-cmdline" = callPackage @@ -179431,7 +179737,6 @@ self: { jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pvd" = callPackage @@ -179452,7 +179757,6 @@ self: { homepage = "http://code.haskell.org/pvd"; description = "A photo viewer daemon application with remote controlling abilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pwstore-cli" = callPackage @@ -179576,7 +179880,6 @@ self: { jailbreak = true; description = "Serialization/deserialization using Python Pickle format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qc-oi-testgenerator" = callPackage @@ -179604,7 +179907,6 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {qd = null;}; "qd-vec" = callPackage @@ -179616,7 +179918,6 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qed" = callPackage @@ -179635,7 +179936,6 @@ self: { homepage = "https://github.com/ndmitchell/qed#readme"; description = "Simple prover"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qhull-simple" = callPackage @@ -179649,7 +179949,6 @@ self: { homepage = "http://nonempty.org/software/haskell-qhull-simple"; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) qhull;}; "qrcode" = callPackage @@ -179678,7 +179977,6 @@ self: { homepage = "http://github.com/keerastudios/hsQt"; description = "Qt bindings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -179702,7 +180000,6 @@ self: { homepage = "https://github.com/ion1/quadratic-irrational"; description = "An implementation of quadratic irrationals"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quandl-api_0_2_0_0" = callPackage @@ -179795,7 +180092,6 @@ self: { homepage = "http://github.com/luqui/quantum-arrow"; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qudb" = callPackage @@ -179815,7 +180111,6 @@ self: { homepage = "https://github.com/jstepien/qudb"; description = "Quite Useless DB"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quenya-verb" = callPackage @@ -179838,7 +180133,6 @@ self: { jailbreak = true; description = "Quenya verb conjugator"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "querystring-pickle" = callPackage @@ -179856,7 +180150,6 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "questioner" = callPackage @@ -179897,7 +180190,6 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quick-generator" = callPackage @@ -179926,6 +180218,7 @@ self: { aeson base hspec QuickCheck scientific text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/benweitzman/quick-schema"; description = "Slimmed down json schema language and validator"; license = stdenv.lib.licenses.mit; @@ -180108,7 +180401,6 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -180197,7 +180489,6 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-script" = callPackage @@ -180332,7 +180623,6 @@ self: { homepage = "http://www.github.com/massysett/quickpull"; description = "Generate Main module with QuickCheck tests"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickset" = callPackage @@ -180344,7 +180634,6 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickspec" = callPackage @@ -180370,6 +180659,7 @@ self: { version = "0.1.0.0"; sha256 = "389310e766ef5169819a296719827b0c4aa50c5c6a9eef2a58c3500e6bc147f9"; libraryHaskellDepends = [ base edit-distance hashmap ]; + jailbreak = true; homepage = "https://github.com/SamuelSchlesinger/Quickterm"; description = "An interface for describing and executing terminal applications"; license = stdenv.lib.licenses.gpl3; @@ -180389,7 +180679,6 @@ self: { homepage = "https://github.com/davidsiegel/quicktest"; description = "A reflective batch tester for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickwebapp" = callPackage @@ -180409,7 +180698,6 @@ self: { homepage = "https://github.com/jtanguy/quickwebapp"; description = "A quick webapp generator for any file processing tool"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quiver" = callPackage @@ -180500,6 +180788,7 @@ self: { sha256 = "a2edef17cf3e860afda832181de10055cbc953f3f3bfe3f30227341497fe9104"; libraryHaskellDepends = [ base dlist quiver ]; testHaskellDepends = [ base hspec QuickCheck quiver ]; + jailbreak = true; description = "Group and chunk values within a Quiver"; license = stdenv.lib.licenses.mit; }) {}; @@ -180533,6 +180822,7 @@ self: { libraryHaskellDepends = [ base exceptions quiver resourcet transformers transformers-base ]; + jailbreak = true; description = "Extra instances for Quiver"; license = stdenv.lib.licenses.mit; }) {}; @@ -180545,6 +180835,7 @@ self: { sha256 = "0dbe071064fdffb6995475048afe2531096e4009243fe58fc9bfe6ed31f2dad8"; libraryHaskellDepends = [ base quiver ]; testHaskellDepends = [ base hspec QuickCheck quiver ]; + jailbreak = true; description = "Interleave values from multiple Quivers"; license = stdenv.lib.licenses.mit; }) {}; @@ -180568,6 +180859,7 @@ self: { base binary directory exceptions hspec QuickCheck quiver quiver-instances resourcet temporary transformers ]; + jailbreak = true; description = "Sort the values in a quiver"; license = stdenv.lib.licenses.mit; }) {}; @@ -180595,7 +180887,6 @@ self: { homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qux" = callPackage @@ -180616,7 +180907,6 @@ self: { homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -180631,7 +180921,6 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rad" = callPackage @@ -180645,7 +180934,6 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reverse Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radian" = callPackage @@ -180676,10 +180964,10 @@ self: { testHaskellDepends = [ base Cabal containers hspec parsec QuickCheck ]; + jailbreak = true; homepage = "https://github.com/klangner/radium"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radium-formula-parser" = callPackage @@ -180697,7 +180985,6 @@ self: { homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "radix" = callPackage @@ -180734,7 +181021,6 @@ self: { homepage = "github"; description = "librados haskell bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {rados = null;}; "rail-compiler-editor" = callPackage @@ -180758,7 +181044,6 @@ self: { homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbow_0_20_0_4" = callPackage @@ -180785,6 +181070,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base bytestring process text ]; testHaskellDepends = [ base bytestring process QuickCheck text ]; + jailbreak = true; homepage = "https://www.github.com/massysett/rainbow"; description = "Print text to terminal with colors and effects"; license = stdenv.lib.licenses.bsd3; @@ -180842,7 +181128,6 @@ self: { homepage = "http://www.github.com/massysett/rainbow"; description = "Tests and QuickCheck generators to accompany rainbow"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbox_0_18_0_2" = callPackage @@ -180935,7 +181220,6 @@ self: { homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ralist" = callPackage @@ -180947,7 +181231,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Random access list with a list compatible interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rallod" = callPackage @@ -180960,7 +181243,6 @@ self: { homepage = "http://github.com/moonmaster9000/rallod"; description = "'$' in reverse"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raml" = callPackage @@ -180988,7 +181270,6 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "randfile" = callPackage @@ -181007,7 +181288,6 @@ self: { ]; description = "Program for picking a random file"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random_1_0_1_1" = callPackage @@ -181043,7 +181323,6 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-derive" = callPackage @@ -181053,6 +181332,7 @@ self: { version = "0.1.0.0"; sha256 = "17495d57a9ceace879853d7fef5bb62af3f6c678b0dc9f00902f3e869eff3922"; libraryHaskellDepends = [ base random template-haskell ]; + jailbreak = true; homepage = "https://github.com/frerich/random-derive"; description = "A Template Haskell helper for deriving Random instances"; license = stdenv.lib.licenses.bsd3; @@ -181068,7 +181348,6 @@ self: { jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-effin" = callPackage @@ -181081,7 +181360,6 @@ self: { jailbreak = true; description = "A simple random generator library for effin"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-extras" = callPackage @@ -181154,7 +181432,6 @@ self: { homepage = "https://github.com/srijs/random-hypergeometric"; description = "Random variate generation from hypergeometric distributions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-shuffle" = callPackage @@ -181195,7 +181472,6 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-tree" = callPackage @@ -181230,11 +181506,9 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base directory HUnit random ]; - jailbreak = true; homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "randomgen" = callPackage @@ -181349,7 +181623,6 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ranges" = callPackage @@ -181414,6 +181687,7 @@ self: { testHaskellDepends = [ base HUnit test-framework test-framework-hunit ]; + jailbreak = true; doCheck = false; homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; @@ -181571,6 +181845,7 @@ self: { base directory filepath FontyFruity JuicyPixels optparse-applicative Rasterific svg-tree ]; + jailbreak = true; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -181587,7 +181862,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "ratel" = callPackage + "ratel_0_1_3" = callPackage ({ mkDerivation, aeson, base, bytestring, case-insensitive , containers, http-client, http-client-tls, http-types, tasty , tasty-hspec, text, uuid @@ -181604,6 +181879,26 @@ self: { homepage = "https://github.com/tfausak/ratel#readme"; description = "Notify Honeybadger about exceptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ratel" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , containers, http-client, http-client-tls, http-types, tasty + , tasty-hspec, text, uuid + }: + mkDerivation { + pname = "ratel"; + version = "0.2.0"; + sha256 = "426ce15b19dc132b19cc511c74e0a18e0c6caa0b56aa6e1056bda09e1bd2fd96"; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive containers http-client + http-client-tls http-types text uuid + ]; + testHaskellDepends = [ base tasty tasty-hspec ]; + homepage = "https://github.com/tfausak/ratel#readme"; + description = "Notify Honeybadger about exceptions"; + license = stdenv.lib.licenses.mit; }) {}; "ratel-wai" = callPackage @@ -181617,6 +181912,7 @@ self: { libraryHaskellDepends = [ base bytestring case-insensitive containers http-client ratel wai ]; + jailbreak = true; homepage = "https://github.com/tfausak/ratel-wai#readme"; description = "Notify Honeybadger about exceptions via a WAI middleware"; license = stdenv.lib.licenses.mit; @@ -181668,7 +181964,6 @@ self: { homepage = "http://bitbucket.org/dpwiz/raven-haskell"; description = "Sentry http interface for Scotty web server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raw-strings-qq_1_0_2" = callPackage @@ -181704,6 +181999,7 @@ self: { version = "0.2.2.2"; sha256 = "e62f4f9bbb7e67b2cf1bf39e1765cce6ede6b9669ed17447e7531364b5307a40"; libraryHaskellDepends = [ base bytestring template-haskell text ]; + jailbreak = true; homepage = "https://github.com/tolysz/rawstring-qm"; description = "Simple raw string quotation and dictionary interpolation"; license = stdenv.lib.licenses.bsd3; @@ -181740,7 +182036,6 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rclient" = callPackage @@ -181775,10 +182070,10 @@ self: { testHaskellDepends = [ base directory doctest filepath hlint parallel ]; + jailbreak = true; homepage = "http://github.com/ekmett/rcu/"; description = "Read-Copy-Update for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdf4h" = callPackage @@ -181809,7 +182104,6 @@ self: { homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdioh" = callPackage @@ -181832,7 +182126,6 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rdtsc" = callPackage @@ -181870,7 +182163,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-re2/"; description = "Bindings to the re2 regular expression library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "react-flux" = callPackage @@ -181924,6 +182216,7 @@ self: { executableHaskellDepends = [ aeson aeson-pretty base bytestring scotty time transformers ]; + jailbreak = true; description = "react-tutorial web server"; license = stdenv.lib.licenses.agpl3; }) {}; @@ -181941,7 +182234,6 @@ self: { homepage = "http://wiki.github.com/paolino/realogic"; description = "pluggable pure logic serializable reactor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive" = callPackage @@ -181959,7 +182251,6 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive"; description = "Push-pull functional reactive programming"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -181973,7 +182264,6 @@ self: { homepage = "http://github.com/raimohanska/reactive-bacon"; description = "FRP (functional reactive programming) framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-balsa" = callPackage @@ -181996,7 +182286,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana" = callPackage @@ -182006,8 +182295,8 @@ self: { }: mkDerivation { pname = "reactive-banana"; - version = "1.1.0.0"; - sha256 = "8557c1140f2e27064a59502215b64dd0c005b97b5b1c8ecf999a3dd59881fde2"; + version = "1.1.0.1"; + sha256 = "ac0e96ff640d9d2453fd35336a278159263b5e8b40c5ce27a221bdcd46fe70c3"; libraryHaskellDepends = [ base containers hashable pqueue transformers unordered-containers vault @@ -182037,7 +182326,6 @@ self: { homepage = "https://github.com/JPMoresmau/reactive-banana-sdl"; description = "Reactive Banana bindings for SDL"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -182051,7 +182339,6 @@ self: { homepage = "http://github.com/cies/reactive-banana-sdl2#readme"; description = "Reactive Banana integration with SDL2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-banana-threepenny" = callPackage @@ -182067,15 +182354,14 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-wx" = callPackage ({ mkDerivation, base, cabal-macosx, reactive-banana, wx, wxcore }: mkDerivation { pname = "reactive-banana-wx"; - version = "1.1.0.0"; - sha256 = "1938d3f12768ec8a1bcff22330918b619739efbd4219ab2886451026421be89f"; + version = "1.1.1.0"; + sha256 = "790e671d7eadfeacd7a21e4e415e7e79b1e885ef3b01aa1c6848ca8b0dabfefb"; configureFlags = [ "-f-buildexamples" ]; isLibrary = true; isExecutable = true; @@ -182085,7 +182371,6 @@ self: { homepage = "http://wiki.haskell.org/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-fieldtrip" = callPackage @@ -182103,7 +182388,6 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip"; description = "Connect Reactive and FieldTrip"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -182120,7 +182404,6 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-glut"; description = "Connects Reactive and GLUT"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -182161,7 +182444,6 @@ self: { homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactivity" = callPackage @@ -182203,7 +182485,6 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "read-bounded" = callPackage @@ -182227,6 +182508,7 @@ self: { sha256 = "97d00279dacff63044e4cf6f0e66a05f284eb55cb3d4a379d77f2ec2aa664574"; libraryHaskellDepends = [ base directory process ]; testHaskellDepends = [ base directory hspec process ]; + jailbreak = true; homepage = "https://github.com/yamadapc/haskell-read-editor"; description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; license = stdenv.lib.licenses.mit; @@ -182324,9 +182606,9 @@ self: { libraryHaskellDepends = [ base binary bytestring data-binary-ieee754 filepath monad-loops ]; + jailbreak = true; description = "Code for reading ESRI Shapefiles"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "really-simple-xml-parser" = callPackage @@ -182340,7 +182622,6 @@ self: { homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-lens" = callPackage @@ -182353,7 +182634,6 @@ self: { homepage = "https://github.com/tokiwoousaka/reasonable-lens"; description = "Lens implementation. It is more small but adequately."; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-operational" = callPackage @@ -182415,6 +182695,7 @@ self: { libraryHaskellDepends = [ base base-prelude basic-lens template-haskell transformers ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/record"; description = "Anonymous records"; license = stdenv.lib.licenses.mit; @@ -182436,7 +182717,6 @@ self: { homepage = "https://github.com/nikita-volkov/record-aeson"; description = "Instances of \"aeson\" classes for the \"record\" types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-gl" = callPackage @@ -182460,7 +182740,6 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-preprocessor" = callPackage @@ -182481,7 +182760,6 @@ self: { homepage = "https://github.com/nikita-volkov/record-preprocessor"; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-syntax" = callPackage @@ -182504,7 +182782,6 @@ self: { homepage = "https://github.com/nikita-volkov/record-syntax"; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records" = callPackage @@ -182517,7 +182794,6 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records-th" = callPackage @@ -182536,7 +182812,6 @@ self: { homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "recursion-schemes" = callPackage @@ -182546,6 +182821,7 @@ self: { version = "4.1.2"; sha256 = "36fd1357a577e23640c2948a1b00afd38e4527e4972551042bf6b88781c8c4fc"; libraryHaskellDepends = [ base comonad free transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/recursion-schemes/"; description = "Generalized bananas, lenses and barbed wire"; license = stdenv.lib.licenses.bsd3; @@ -182567,7 +182843,6 @@ self: { homepage = "https://github.com/joeyadams/haskell-recursive-line-count"; description = "Count lines in files and display them hierarchically"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "redHandlers" = callPackage @@ -182586,7 +182861,6 @@ self: { jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reddit" = callPackage @@ -182754,6 +183028,7 @@ self: { attoparsec base bytestring bytestring-conversion containers dlist double-conversion operational semigroups split transformers ]; + jailbreak = true; homepage = "https://github.com/twittner/redis-resp/"; description = "REdis Serialization Protocol (RESP) implementation"; license = "unknown"; @@ -182916,10 +183191,10 @@ self: { QuickCheck random tasty tasty-ant-xml tasty-hunit tasty-quickcheck vector ]; + jailbreak = true; homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reenact" = callPackage @@ -182933,7 +183208,6 @@ self: { ]; description = "A reimplementation of the Reactive library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reexport-crypto-random" = callPackage @@ -182957,7 +183231,6 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ref-fd_0_4" = callPackage @@ -182968,6 +183241,7 @@ self: { sha256 = "26c9d963f1ff3bb28840465d16a390ba13f0a3ded8f473d7c890a174b6910ce5"; libraryHaskellDepends = [ base stm transformers ]; doHaddock = false; + jailbreak = true; homepage = "http://www.cs.drexel.edu/~mainland/"; description = "A type class for monads with references using functional dependencies"; license = stdenv.lib.licenses.bsd3; @@ -183005,6 +183279,7 @@ self: { version = "0.4"; sha256 = "45301b1779ff25f39d04f875ddb6895dbb27cf6f7846a2e1c9c35f126cbb3d11"; 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; @@ -183106,7 +183381,6 @@ self: { homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "refined" = callPackage @@ -183242,7 +183516,6 @@ self: { homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflection-without-remorse" = callPackage @@ -183321,7 +183594,6 @@ self: { jailbreak = true; description = "Functional Reactive Web Apps with Reflex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-dom-contrib" = callPackage @@ -183342,7 +183614,6 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-dom-helpers" = callPackage @@ -183375,7 +183646,6 @@ self: { homepage = "https://github.com/reflex-frp/reflex-gloss"; description = "An reflex interface for gloss"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-gloss-scene" = callPackage @@ -183405,7 +183675,6 @@ self: { homepage = "https://github.com/saulzar/reflex-gloss-scene"; description = "A simple scene-graph using reflex and gloss"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reflex-jsx" = callPackage @@ -183439,7 +183708,6 @@ self: { ]; description = "Useful missing instances for Reflex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reflex-transformers" = callPackage @@ -183613,6 +183881,7 @@ self: { revision = "1"; editedCabalFile = "4298f6496454e2fed4f26f304aaa1b1fe54ad433596f42b9f1aaba2a38e2b691"; libraryHaskellDepends = [ base regex-applicative text ]; + jailbreak = true; homepage = "https://github.com/phadej/regex-applicative-text#readme"; description = "regex-applicative on text"; license = stdenv.lib.licenses.bsd3; @@ -183683,7 +183952,6 @@ self: { homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -183696,7 +183964,6 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-easy" = callPackage @@ -183744,7 +184011,6 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-pcre" = callPackage @@ -183793,7 +184059,6 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -183969,7 +184234,6 @@ self: { jailbreak = true; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-tre" = callPackage @@ -183983,7 +184247,6 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tre;}; "regex-type" = callPackage @@ -183993,6 +184256,7 @@ self: { version = "0.1.0.0"; sha256 = "fb19df907226e8b8c04110bb983c40028ebf9cecd33a46cf333e5de785a6fc0a"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/kcsongor/regex-type"; description = "Type-level regular expressions"; license = stdenv.lib.licenses.bsd3; @@ -184009,7 +184273,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexchar" = callPackage @@ -184032,7 +184295,6 @@ self: { homepage = "http://functionalley.eu/RegExChar/regExChar.html"; description = "A POSIX, extended regex-engine"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexdot" = callPackage @@ -184045,7 +184307,6 @@ self: { homepage = "http://functionalley.eu/RegExDot/regExDot.html"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexp-tries" = callPackage @@ -184063,7 +184324,6 @@ self: { homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexpr" = callPackage @@ -184103,7 +184363,6 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq"; description = "A quasiquoter for PCRE regexes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regional-pointers" = callPackage @@ -184120,7 +184379,6 @@ self: { homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions" = callPackage @@ -184138,7 +184396,6 @@ self: { homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadsfd" = callPackage @@ -184155,7 +184412,6 @@ self: { jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -184173,7 +184429,6 @@ self: { homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -184187,7 +184442,6 @@ self: { homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "register-machine-typelevel" = callPackage @@ -184197,6 +184451,7 @@ self: { version = "0.1.0.0"; sha256 = "5232f3539da39675ac7bf0de7848748ee9503558cf7afe017449573db1be5b7f"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/kcsongor/register-machine-type"; description = "A computationally universal register machine implementation at the type-level"; license = stdenv.lib.licenses.bsd3; @@ -184249,7 +184504,6 @@ self: { jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-web" = callPackage @@ -184267,7 +184521,6 @@ self: { homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -184295,7 +184548,6 @@ self: { homepage = "https://github.com/mrVanDalo/reheat"; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rehoo" = callPackage @@ -184329,10 +184581,10 @@ self: { executableHaskellDepends = [ attoparsec base bytestring containers directory regex-tdfa split ]; + jailbreak = true; homepage = "https://github.com/kerkomen/rei"; description = "Process lists easily"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reified-records" = callPackage @@ -184346,7 +184598,6 @@ self: { homepage = "http://bitbucket.org/jozefg/reified-records"; description = "Reify records to Maps and back again"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reify" = callPackage @@ -184363,7 +184614,6 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reinterpret-cast" = callPackage @@ -184377,7 +184627,6 @@ self: { homepage = "https://github.com/nh2/reinterpret-cast"; description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "relacion" = callPackage @@ -184464,7 +184713,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "relational-record" = callPackage + "relational-record_0_1_4_0" = callPackage ({ mkDerivation, base, persistable-types-HDBC-pg, relational-query , relational-query-HDBC }: @@ -184479,6 +184728,24 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Meta package of Relational Record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "relational-record" = callPackage + ({ mkDerivation, base, persistable-types-HDBC-pg, relational-query + , relational-query-HDBC + }: + mkDerivation { + pname = "relational-record"; + version = "0.1.5.0"; + sha256 = "dab27172c9307773eaf27c49c969670828998aa469279572e1873aeadaff7a6e"; + libraryHaskellDepends = [ + base persistable-types-HDBC-pg relational-query + relational-query-HDBC + ]; + homepage = "http://khibino.github.io/haskell-relational-record/"; + description = "Meta package of Relational Record"; + license = stdenv.lib.licenses.bsd3; }) {}; "relational-record-examples" = callPackage @@ -184488,8 +184755,8 @@ self: { }: mkDerivation { pname = "relational-record-examples"; - version = "0.3.1.0"; - sha256 = "eaf3bae14a4e05bc159efb3a8f0bc721d0fbb2d7bcea6df65002daaf93cc3352"; + version = "0.3.1.1"; + sha256 = "56d726b946e454390b4efbda9e7effe11343c88aeb6390f9516b51445e96a242"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -184587,7 +184854,6 @@ self: { ]; description = "Cloud Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-debugger" = callPackage @@ -184629,7 +184895,6 @@ self: { jailbreak = true; description = "Remote Monad implementation of the JSON RPC protocol"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-client" = callPackage @@ -184647,7 +184912,6 @@ self: { ]; description = "Web client wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-json-server" = callPackage @@ -184665,7 +184929,6 @@ self: { ]; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "remote-monad" = callPackage @@ -184722,7 +184985,6 @@ self: { homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "renderable" = callPackage @@ -184732,6 +184994,7 @@ self: { version = "0.2.0.0"; sha256 = "8ba7f9e6f0cb9aa0b9b7e38b0280b41191d3f0303c94f44d40d60a6fca0c18f3"; 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; @@ -184762,7 +185025,6 @@ self: { jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa_3_3_1_2" = callPackage @@ -184812,6 +185074,7 @@ self: { libraryHaskellDepends = [ base bytestring ghc-prim QuickCheck template-haskell vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "High performance, regular, shape polymorphic parallel arrays"; license = stdenv.lib.licenses.bsd3; @@ -184852,6 +185115,7 @@ self: { version = "3.4.0.2"; sha256 = "49de64a94ebf28800c408c7e9ba418b97e7663d2c74e4499187a2d90664f8939"; libraryHaskellDepends = [ base repa vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Algorithms using the Repa array library"; license = stdenv.lib.licenses.bsd3; @@ -184874,7 +185138,6 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Bulk array representations and operators"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-bytestring" = callPackage @@ -184931,6 +185194,7 @@ self: { sha256 = "fec3ce06f7370378427c629587dc30ee0f37e8c777c94c8970cb514c1e57fd38"; libraryHaskellDepends = [ base repa transformers ]; librarySystemDepends = [ libdevil ]; + jailbreak = true; homepage = "https://github.com/RaphaelJ/repa-devil"; description = "Support for image reading and writing of Repa arrays using in-place FFI calls"; license = stdenv.lib.licenses.bsd3; @@ -184943,6 +185207,7 @@ self: { version = "4.0.0.2"; sha256 = "03388b5dbd8fef0374d7edd2a8c182b030ae9ca6ea0a7fb9869b713dba2cf1f7"; libraryHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Low-level parallel operators on bulk random-accessble arrays"; license = stdenv.lib.licenses.bsd3; @@ -185002,7 +185267,6 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Data-parallel data flows"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-io_3_3_1_2" = callPackage @@ -185052,6 +185316,7 @@ self: { libraryHaskellDepends = [ base binary bmp bytestring old-time repa vector ]; + jailbreak = true; homepage = "http://repa.ouroborus.net"; description = "Read and write Repa arrays in various formats"; license = stdenv.lib.licenses.bsd3; @@ -185064,6 +185329,7 @@ self: { version = "0.3.0.1"; sha256 = "560e1b429ab07e712d28954c6443a6fd8d07d922ccd3041ac28fb996c2f499a2"; libraryHaskellDepends = [ base hmatrix repa vector ]; + jailbreak = true; homepage = "https://github.com/marcinmrotek/repa-linear-algebra"; description = "HMatrix operations for Repa"; license = stdenv.lib.licenses.bsd3; @@ -185084,7 +185350,6 @@ self: { jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-scalar" = callPackage @@ -185114,7 +185379,6 @@ self: { jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-sndfile" = callPackage @@ -185136,7 +185400,6 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "repa-stream" = callPackage @@ -185150,7 +185413,6 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Stream functions not present in the vector library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-v4l2" = callPackage @@ -185171,7 +185433,6 @@ self: { homepage = "https://github.com/cgo/hsimage"; description = "Provides high-level access to webcams"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl" = callPackage @@ -185187,7 +185448,6 @@ self: { homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl-toolkit" = callPackage @@ -185249,7 +185509,6 @@ self: { homepage = "https://github.com/saep/repo-based-blog"; description = "Blogging module using blaze html for markup"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr" = callPackage @@ -185267,7 +185526,6 @@ self: { homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr-tree-syb" = callPackage @@ -185301,7 +185559,6 @@ self: { homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "representable-profunctors" = callPackage @@ -185335,7 +185592,6 @@ self: { homepage = "http://github.com/ekmett/representable-tries/"; description = "Tries from representations of polynomial functors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reqcatcher" = callPackage @@ -185350,6 +185606,7 @@ self: { testHaskellDepends = [ base http-client http-types HUnit lens tasty tasty-hunit wai wreq ]; + jailbreak = true; homepage = "http://github.com/hiratara/hs-reqcatcher"; description = "A local http server to catch the HTTP redirect"; license = stdenv.lib.licenses.bsd3; @@ -185493,7 +185750,6 @@ self: { homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resolve-trivial-conflicts_0_3_2_1" = callPackage @@ -185568,7 +185824,6 @@ self: { homepage = "https://bitbucket.org/tdammers/resource-embed"; description = "Embed data files via C and FFI"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resource-pool_0_2_3_1" = callPackage @@ -185657,7 +185912,6 @@ self: { jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resourcet_1_1_3_1" = callPackage @@ -185697,6 +185951,7 @@ self: { transformers transformers-base ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185719,6 +185974,7 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185739,6 +185995,7 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185759,6 +186016,7 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185779,6 +186037,7 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185799,6 +186058,7 @@ self: { transformers transformers-base transformers-compat ]; testHaskellDepends = [ base hspec lifted-base transformers ]; + jailbreak = true; homepage = "http://github.com/snoyberg/conduit"; description = "Deterministic allocation and freeing of scarce resources"; license = stdenv.lib.licenses.bsd3; @@ -185892,7 +186152,6 @@ self: { homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-client_0_4_0_1" = callPackage @@ -186025,6 +186284,7 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; + jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -186047,6 +186307,7 @@ self: { monad-control mtl resourcet rest-types tostring transformers transformers-base transformers-compat uri-encode utf8-string ]; + jailbreak = true; description = "Utility library for use in generated API client libraries"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -186270,6 +186531,7 @@ self: { transformers transformers-compat unordered-containers ]; executableHaskellDepends = [ base base-compat rest-gen ]; + jailbreak = true; homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; @@ -186982,7 +187244,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-types" = callPackage + "rest-types_1_14_0_1" = callPackage ({ mkDerivation, aeson, base, case-insensitive, generic-aeson , generic-xmlpickler, hxt, json-schema, rest-stringmap, text, uuid }: @@ -186998,9 +187260,10 @@ self: { ]; description = "Silk Rest Framework Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rest-types_1_14_1" = callPackage + "rest-types" = callPackage ({ mkDerivation, aeson, base, base-compat, case-insensitive , generic-aeson, generic-xmlpickler, hxt, json-schema , rest-stringmap, text, uuid @@ -187015,7 +187278,6 @@ self: { ]; description = "Silk Rest Framework Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-wai_0_1_0_4" = callPackage @@ -187133,7 +187395,6 @@ self: { jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restricted-workers" = callPackage @@ -187154,7 +187415,6 @@ self: { homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restyle" = callPackage @@ -187170,7 +187430,6 @@ self: { jailbreak = true; description = "Convert between camel case and separated words style"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "resumable-exceptions" = callPackage @@ -187183,7 +187442,6 @@ self: { jailbreak = true; description = "A monad transformer for resumable exceptions"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb_2_2_0_2" = callPackage @@ -187230,6 +187488,33 @@ self: { ]; executableHaskellDepends = [ attoparsec base text ]; 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_2_2_0_4" = callPackage + ({ mkDerivation, aeson, attoparsec, 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.4"; + sha256 = "e1f700f1cdbe9e7b96d529f29725ec13be86ae164c3c99a03b1d502ac9416f9c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base base64-bytestring binary bytestring containers + data-default mtl network scientific text time unordered-containers + utf8-string vector + ]; + executableHaskellDepends = [ attoparsec base text ]; + testHaskellDepends = [ base doctest ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/atnnn/haskell-rethinkdb"; description = "A driver for RethinkDB 2.2"; @@ -187244,8 +187529,8 @@ self: { }: mkDerivation { pname = "rethinkdb"; - version = "2.2.0.4"; - sha256 = "e1f700f1cdbe9e7b96d529f29725ec13be86ae164c3c99a03b1d502ac9416f9c"; + version = "2.2.0.5"; + sha256 = "0756db7984ea0a9085eccadad78cac31e1324ed2bc9c580b6177e18826ccc78f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -187307,6 +187592,7 @@ self: { unordered-containers vector ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; @@ -187333,6 +187619,7 @@ self: { unordered-containers vector ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; @@ -187359,6 +187646,7 @@ self: { unordered-containers vector ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; @@ -187385,6 +187673,7 @@ self: { unordered-containers vector ]; doHaddock = false; + jailbreak = true; doCheck = false; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; @@ -187392,7 +187681,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rethinkdb-client-driver" = callPackage + "rethinkdb-client-driver_0_0_22" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, containers , hashable, hspec, hspec-smallcheck, mtl, network, old-locale , scientific, smallcheck, stm, template-haskell, text, time @@ -187412,6 +187701,33 @@ self: { unordered-containers vector ]; doHaddock = false; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; + description = "Client driver for RethinkDB"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rethinkdb-client-driver" = callPackage + ({ mkDerivation, aeson, base, binary, bytestring, containers + , hashable, hspec, hspec-smallcheck, mtl, network, old-locale + , scientific, smallcheck, stm, template-haskell, text, time + , unordered-containers, vector + }: + mkDerivation { + pname = "rethinkdb-client-driver"; + version = "0.0.23"; + sha256 = "cee5a3cb533bb49e6fd5416216a4d24641fa634524a938fc51342ab37ac20443"; + libraryHaskellDepends = [ + aeson base binary bytestring containers hashable mtl network + old-locale scientific stm template-haskell text time + unordered-containers vector + ]; + testHaskellDepends = [ + base hspec hspec-smallcheck smallcheck text time + unordered-containers vector + ]; doCheck = false; homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; description = "Client driver for RethinkDB"; @@ -187433,7 +187749,6 @@ self: { homepage = "http://github.com/seanhess/rethinkdb-model"; description = "Useful tools for modeling data with rethinkdb"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rethinkdb-wereHamster" = callPackage @@ -187527,7 +187842,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "retry" = callPackage + "retry_0_7_2" = callPackage ({ mkDerivation, base, data-default-class, exceptions, ghc-prim , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers }: @@ -187542,6 +187857,29 @@ self: { base data-default-class exceptions ghc-prim hspec HUnit mtl QuickCheck random stm time transformers ]; + jailbreak = true; + doCheck = false; + 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.3"; + sha256 = "32b3c8770be1f21e421973393f733be87071a66f25313a4e1a54b38cfbde1b00"; + 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 + ]; doCheck = false; homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; @@ -187688,7 +188026,6 @@ self: { homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rewriting" = callPackage @@ -187700,7 +188037,6 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rex" = callPackage @@ -187736,7 +188072,6 @@ self: { jailbreak = true; description = "Github resume generator"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rfc3339" = callPackage @@ -187781,7 +188116,6 @@ self: { homepage = "https://github.com/fumieval/rhythm-game-tutorial"; description = "Haskell rhythm game tutorial"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "riak_0_9_1_1" = callPackage @@ -187839,6 +188173,7 @@ self: { base bytestring containers data-default-class HUnit mtl QuickCheck semigroups tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; doCheck = false; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "A Haskell client for the Riak decentralized data store"; @@ -187874,6 +188209,7 @@ self: { libraryHaskellDepends = [ array base parsec protocol-buffers protocol-buffers-descriptor ]; + jailbreak = true; homepage = "http://github.com/markhibberd/riak-haskell-client"; description = "Haskell types for the Riak protocol buffer API"; license = "unknown"; @@ -187950,7 +188286,6 @@ self: { editedCabalFile = "0fa00f983efef18739d3671c34e272f4a37d379de9b20d466447ab0149e8a958"; libraryHaskellDepends = [ base mtl primitive vector ]; testHaskellDepends = [ base QuickCheck vector ]; - jailbreak = true; homepage = "http://github.com/bgamari/ring-buffer"; description = "A concurrent, mutable ring-buffer"; license = stdenv.lib.licenses.bsd3; @@ -187974,7 +188309,6 @@ self: { homepage = "http://modeemi.fi/~tuomov/riot/"; description = "Riot is an Information Organisation Tool"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "ripple" = callPackage @@ -187995,7 +188329,6 @@ self: { homepage = "https://github.com/singpolyma/ripple-haskell"; description = "Ripple payment system library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ripple-federation" = callPackage @@ -188014,7 +188347,6 @@ self: { homepage = "https://github.com/singpolyma/ripple-federation-haskell"; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "risc386" = callPackage @@ -188032,7 +188364,6 @@ self: { homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivers" = callPackage @@ -188046,7 +188377,6 @@ self: { homepage = "https://github.com/d-rive/rivers"; description = "Rivers are like Streams, but different"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rivet" = callPackage @@ -188077,6 +188407,7 @@ self: { postgresql-simple process shake template-haskell text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/dbp/rivet"; description = "Core library for project management tool"; license = stdenv.lib.licenses.bsd3; @@ -188089,6 +188420,7 @@ self: { version = "0.1.0.1"; sha256 = "6dd95a94855da826ff509814031dbe284aebb986e0002ea4c7b660a68bb6e6ed"; libraryHaskellDepends = [ base postgresql-simple text ]; + jailbreak = true; homepage = "https://github.com/dbp/rivet"; description = "Postgresql migration support for project management tool"; license = stdenv.lib.licenses.bsd3; @@ -188155,7 +188487,6 @@ self: { ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rncryptor" = callPackage @@ -188241,6 +188572,7 @@ self: { attoparsec base bytestring directory heredoc hspec QuickCheck transformers ]; + jailbreak = true; homepage = "http://github.com/meanpath/robots"; description = "Parser for robots.txt"; license = stdenv.lib.licenses.bsd3; @@ -188280,7 +188612,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client application."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-engine" = callPackage @@ -188303,7 +188634,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-gl" = callPackage @@ -188323,7 +188653,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-glut" = callPackage @@ -188339,7 +188668,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rollbar" = callPackage @@ -188375,6 +188703,7 @@ self: { executableHaskellDepends = [ base optparse-applicative random regex-applicative ]; + jailbreak = true; homepage = "https://github.com/PiotrJustyna/roller"; description = "Playing with applicatives and dice!"; license = stdenv.lib.licenses.gpl2; @@ -188449,7 +188778,6 @@ self: { homepage = "http://github.com/ekmett/rope"; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosa" = callPackage @@ -188469,7 +188797,6 @@ self: { ]; description = "Query the namecoin blockchain"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rose-trees" = callPackage @@ -188552,7 +188879,6 @@ self: { homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rosso" = callPackage @@ -188564,7 +188890,6 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rot13" = callPackage @@ -188599,8 +188924,8 @@ self: { ({ mkDerivation, base }: mkDerivation { pname = "roundRobin"; - version = "0.1.0.1"; - sha256 = "90f5e012886131801863bf00105f249d4d44250fd378beb9fc87fe13bbf0d23b"; + version = "0.1.1.0"; + sha256 = "a0cea3a792d4a4286a574e40694bc913ba0c77b5ba21d47142b117917e5b94b2"; libraryHaskellDepends = [ base ]; description = "A simple round-robin data type"; license = stdenv.lib.licenses.mit; @@ -188617,7 +188942,6 @@ self: { homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip" = callPackage @@ -188633,7 +188957,6 @@ self: { ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-aeson" = callPackage @@ -188656,7 +188979,6 @@ self: { homepage = "https://github.com/anchor/roundtrip-aeson"; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-string" = callPackage @@ -188668,7 +188990,6 @@ self: { libraryHaskellDepends = [ base mtl parsec roundtrip ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roundtrip-xml" = callPackage @@ -188690,7 +189011,6 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-generator" = callPackage @@ -188707,7 +189027,6 @@ self: { homepage = "http://github.com/singpolyma/route-generator"; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-planning" = callPackage @@ -188727,7 +189046,6 @@ self: { homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rowrecord" = callPackage @@ -188739,7 +189057,6 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc" = callPackage @@ -188756,7 +189073,6 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpc-framework" = callPackage @@ -188777,7 +189093,6 @@ self: { homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rpf" = callPackage @@ -188810,7 +189125,6 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl" = callPackage @@ -188832,7 +189146,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-frp" = callPackage @@ -188850,7 +189163,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rsagl-math" = callPackage @@ -188869,7 +189181,6 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rspp" = callPackage @@ -188896,6 +189207,7 @@ self: { libraryHaskellDepends = [ base HaXml network network-uri old-locale time ]; + jailbreak = true; homepage = "https://github.com/basvandijk/rss"; description = "A library for generating RSS 2.0 feeds."; license = stdenv.lib.licenses.publicDomain; @@ -188950,7 +189262,6 @@ self: { homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtcm" = callPackage @@ -188973,7 +189284,6 @@ self: { homepage = "http://github.com/swift-nav/librtcm"; description = "RTCM Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtld" = callPackage @@ -188997,10 +189307,10 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ rtl-sdr ]; libraryToolDepends = [ c2hs ]; + jailbreak = true; homepage = "https://github.com/adamwalker/hrtlsdr"; description = "Bindings to librtlsdr"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rtl-sdr;}; "rtorrent-rpc" = callPackage @@ -189019,7 +189329,6 @@ self: { homepage = "https://github.com/megantti/rtorrent-rpc"; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtorrent-state" = callPackage @@ -189058,7 +189367,6 @@ self: { homepage = "https://github.com/mtolly/rubberband"; description = "Binding to the C++ audio stretching library Rubber Band"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) rubberband;}; "ruby-marshal" = callPackage @@ -189109,7 +189417,6 @@ self: { homepage = "https://gitorious.org/ruff"; description = "relatively useful fractal functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ruler" = callPackage @@ -189146,7 +189453,6 @@ self: { ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rungekutta" = callPackage @@ -189158,7 +189464,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of explicit Runge-Kutta methods of various orders"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "runghc" = callPackage @@ -189202,6 +189507,7 @@ self: { libraryHaskellDepends = [ base MonadPrompt mtl random-source transformers ]; + jailbreak = true; homepage = "https://github.com/mokus0/random-fu"; description = "Random Variables"; license = stdenv.lib.licenses.publicDomain; @@ -189304,6 +189610,7 @@ self: { version = "0.2.1.2"; sha256 = "39d0dbfdcd0393aeba886b48df3b098442fac37a0328d26ff1ed191cac9c4345"; libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; homepage = "http://hub.darcs.net/thoferon/safe-access"; description = "A simple environment to control access to data"; license = stdenv.lib.licenses.bsd3; @@ -189345,7 +189652,6 @@ self: { homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-globals" = callPackage @@ -189357,7 +189663,6 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-lazy-io" = callPackage @@ -189372,7 +189677,6 @@ self: { ]; description = "A library providing safe lazy IO features"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-length" = callPackage @@ -189387,6 +189691,7 @@ self: { testHaskellDepends = [ base hspec hspec-core QuickCheck should-not-typecheck ]; + jailbreak = true; homepage = "http://www.github.com/stepcut/safe-length"; description = "Tired of accidentally calling length on tuples? Relief at last!"; license = stdenv.lib.licenses.bsd3; @@ -189405,7 +189710,6 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safe-printf" = callPackage @@ -189423,6 +189727,7 @@ self: { base doctest haskell-src-meta hspec QuickCheck template-haskell th-lift ]; + jailbreak = true; homepage = "https://github.com/konn/safe-printf"; description = "Well-typed, flexible and variadic printf for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -189535,7 +189840,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "safecopy" = callPackage + "safecopy_0_9_0_1" = callPackage ({ mkDerivation, array, base, bytestring, cereal, containers, lens , lens-action, old-time, quickcheck-instances, tasty , tasty-quickcheck, template-haskell, text, time, vector @@ -189552,10 +189857,35 @@ self: { array base cereal containers lens lens-action quickcheck-instances tasty tasty-quickcheck template-haskell time vector ]; + jailbreak = true; doCheck = false; homepage = "http://acid-state.seize.it/safecopy"; description = "Binary serialization with version control"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "safecopy" = callPackage + ({ mkDerivation, array, base, bytestring, cereal, containers, lens + , lens-action, old-time, QuickCheck, quickcheck-instances, tasty + , tasty-quickcheck, template-haskell, text, time, vector + }: + mkDerivation { + pname = "safecopy"; + version = "0.9.1"; + sha256 = "f480750c1d970c339a0c432ef216b3fff28c15b35b021192cc221f2a5df6dd6b"; + libraryHaskellDepends = [ + array base bytestring cereal containers old-time template-haskell + text time vector + ]; + testHaskellDepends = [ + array base cereal containers lens lens-action QuickCheck + quickcheck-instances tasty tasty-quickcheck template-haskell time + vector + ]; + homepage = "http://acid-state.seize.it/safecopy"; + description = "Binary serialization with version control"; + license = stdenv.lib.licenses.publicDomain; }) {}; "safeint" = callPackage @@ -189591,7 +189921,6 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -189610,7 +189939,6 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -189628,7 +189956,6 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saferoute" = callPackage @@ -189658,7 +189985,6 @@ self: { homepage = "http://fremissant.net/shape-syb"; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saltine" = callPackage @@ -189719,7 +190045,6 @@ self: { jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-demo" = callPackage @@ -189742,7 +190067,6 @@ self: { jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-extras" = callPackage @@ -189764,7 +190088,6 @@ self: { jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-protocol" = callPackage @@ -189782,7 +190105,6 @@ self: { jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-sessions" = callPackage @@ -189801,7 +190123,6 @@ self: { jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "salvia-websocket" = callPackage @@ -189819,7 +190140,6 @@ self: { jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sample-frame" = callPackage @@ -189869,8 +190189,8 @@ self: { }: mkDerivation { pname = "samtools"; - version = "0.2.4.1"; - sha256 = "2da6f94a7a673224522f82abe64843f3d480f7ef789f9dac041b6bf3b9081502"; + version = "0.2.4.3"; + sha256 = "da91b82c0ce87b1f1f2775f7b1dd05352ceb918e79a926fc32ede324a9582086"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bytestring seqloc vector ]; @@ -189941,7 +190261,6 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sandi_0_3_5" = callPackage @@ -189956,6 +190275,7 @@ self: { testHaskellDepends = [ base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "http://hackage.haskell.org/package/sandi"; description = "Data encoding library"; license = stdenv.lib.licenses.bsd3; @@ -189974,6 +190294,7 @@ self: { testHaskellDepends = [ base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th ]; + jailbreak = true; homepage = "http://hackage.haskell.org/package/sandi"; description = "Data encoding library"; license = stdenv.lib.licenses.bsd3; @@ -189992,7 +190313,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "sandman" = callPackage + "sandman_0_2_0_0" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath , optparse-applicative, process, text, unix-compat }: @@ -190006,12 +190327,14 @@ self: { base Cabal containers directory filepath optparse-applicative process text unix-compat ]; + jailbreak = true; homepage = "https://github.com/abhinav/sandman"; description = "Manages Cabal sandboxes to avoid rebuilding packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sandman_0_2_0_1" = callPackage + "sandman" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath , optparse-applicative, process, text, unix-compat }: @@ -190028,7 +190351,6 @@ self: { homepage = "https://github.com/abhinav/sandman#readme"; description = "Manages Cabal sandboxes to avoid rebuilding packages"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sarasvati" = callPackage @@ -190042,7 +190364,6 @@ self: { homepage = "https://github.com/tokiwoousaka/Sarasvati"; description = "audio library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sarsi" = callPackage @@ -190088,7 +190409,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/sasl/wiki"; description = "SASL implementation using simple-pipe"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat" = callPackage @@ -190103,7 +190423,6 @@ self: { homepage = "http://tcana.info/sat.html"; description = "CNF SATisfier"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sat-micro-hs" = callPackage @@ -190121,7 +190440,6 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo" = callPackage @@ -190141,7 +190459,6 @@ self: { homepage = "https://github.com/jwaldmann/satchmo"; description = "SAT encoding monad"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-backends" = callPackage @@ -190158,7 +190475,6 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "driver for external satchmo backends"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-examples" = callPackage @@ -190177,7 +190493,6 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "examples that show how to use satchmo"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -190194,7 +190509,6 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "funsat driver as backend for satchmo"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -190207,7 +190521,6 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "minisat driver as backend for satchmo"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-toysat" = callPackage @@ -190225,7 +190538,6 @@ self: { homepage = "https://github.com/msakai/satchmo-toysat"; description = "toysat driver as backend for satchmo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbp" = callPackage @@ -190238,8 +190550,8 @@ self: { }: mkDerivation { pname = "sbp"; - version = "0.52.2"; - sha256 = "e3510bf821f2af6bc73221a0c35cce3e3436f8651bdddc08db190d389992fa41"; + version = "1.0.0"; + sha256 = "be31aef2450cd2a1b39009cf9288d3d027101b57f46c61b8bef46eb5884220b3"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -190258,7 +190570,6 @@ self: { homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbv_4_2" = callPackage @@ -190430,7 +190741,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/scaleimage"; description = "Scale an image to a new geometry"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalp-webhooks" = callPackage @@ -190457,7 +190767,6 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalpel_0_2_1" = callPackage @@ -190496,7 +190805,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "scalpel" = callPackage + "scalpel_0_3_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, curl, data-default , HUnit, regex-base, regex-tdfa, tagsoup, text }: @@ -190512,6 +190821,25 @@ self: { homepage = "https://github.com/fimad/scalpel"; description = "A high level web scraping library for Haskell"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "scalpel" = callPackage + ({ mkDerivation, base, bytestring, containers, curl, data-default + , HUnit, regex-base, regex-tdfa, tagsoup, text + }: + mkDerivation { + pname = "scalpel"; + version = "0.3.1"; + sha256 = "5db9046a506f40d713fb678e496b7fd9cfa21c453bd5e6f574720d57826a204f"; + libraryHaskellDepends = [ + base bytestring containers curl data-default regex-base regex-tdfa + tagsoup text + ]; + testHaskellDepends = [ base HUnit regex-base regex-tdfa tagsoup ]; + homepage = "https://github.com/fimad/scalpel"; + description = "A high level web scraping library for Haskell"; + license = stdenv.lib.licenses.asl20; }) {}; "scan" = callPackage @@ -190538,7 +190866,6 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scanner" = callPackage @@ -190640,7 +190967,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scgi" = callPackage @@ -190674,7 +191000,6 @@ self: { jailbreak = true; description = "Marge schedules and show EVR"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "schedule-planner" = callPackage @@ -190750,7 +191075,6 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-citeproc" = callPackage @@ -190786,7 +191110,6 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-citeproc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scholdoc-texmath" = callPackage @@ -190878,7 +191201,6 @@ self: { jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scientific_0_3_3_3" = callPackage @@ -190999,6 +191321,7 @@ self: { base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml tasty-hunit tasty-quickcheck tasty-smallcheck text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; @@ -191023,6 +191346,7 @@ self: { base binary bytestring QuickCheck smallcheck tasty tasty-ant-xml tasty-hunit tasty-quickcheck tasty-smallcheck text ]; + jailbreak = true; homepage = "https://github.com/basvandijk/scientific"; description = "Numbers represented using scientific notation"; license = stdenv.lib.licenses.bsd3; @@ -191102,7 +191426,6 @@ self: { homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion-browser" = callPackage @@ -191139,7 +191462,6 @@ self: { homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scons2dot" = callPackage @@ -191171,7 +191493,6 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -191194,7 +191515,6 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scottish" = callPackage @@ -191214,7 +191534,6 @@ self: { homepage = "https://github.com/echaozh/scottish"; description = "scotty with batteries included"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty_0_9_0" = callPackage @@ -191360,7 +191679,6 @@ self: { ]; description = "blaze-html integration for Scotty"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-cookie" = callPackage @@ -191403,7 +191721,6 @@ self: { jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-hastache" = callPackage @@ -191421,7 +191738,6 @@ self: { homepage = "https://github.com/scotty-web/scotty-hastache"; description = "Easy Mustache templating support for Scotty"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-params-parser" = callPackage @@ -191447,8 +191763,8 @@ self: { }: mkDerivation { pname = "scotty-resource"; - version = "0.1.0.1"; - sha256 = "d65bea57c1151d8cf467fa624ca6351ceb02f086cb9ff87aafef450511f52127"; + version = "0.1.1.0"; + sha256 = "c45125749a42b90b2ccb2378c7a4f4c77078e0e479fd694abc6b6cf3d4c06b83"; libraryHaskellDepends = [ base containers http-types scotty text transformers wai ]; @@ -191456,7 +191772,6 @@ self: { homepage = "https://github.com/taphu/scotty-resource"; description = "A Better way of modeling web resources"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-rest" = callPackage @@ -191501,7 +191816,6 @@ self: { homepage = "https://github.com/agrafix/scotty-session"; description = "Adding session functionality to scotty"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-tls" = callPackage @@ -191574,7 +191888,6 @@ self: { jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scrape-changes" = callPackage @@ -191624,7 +191937,6 @@ self: { ]; description = "Scrobbling server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scroll" = callPackage @@ -191691,7 +192003,6 @@ self: { homepage = "http://github.com/wereHamster/scrz"; description = "Process management and supervision daemon"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scyther-proof" = callPackage @@ -191710,6 +192021,7 @@ self: { pretty process safe tagsoup time uniplate utf8-string ]; executableToolDepends = [ alex ]; + jailbreak = true; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; }) {}; @@ -191731,7 +192043,6 @@ self: { homepage = "https://github.com/davnils/sde-solver"; description = "Distributed SDE solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sdf2p1-parser" = callPackage @@ -191761,6 +192072,7 @@ self: { libraryHaskellDepends = [ base transformers ]; librarySystemDepends = [ SDL2 ]; libraryPkgconfigDepends = [ SDL2 ]; + jailbreak = true; description = "Low-level bindings to SDL2"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -191775,6 +192087,7 @@ self: { libraryHaskellDepends = [ base transformers ]; librarySystemDepends = [ SDL2 ]; libraryPkgconfigDepends = [ SDL2 ]; + jailbreak = true; description = "Low-level bindings to SDL2"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -191795,6 +192108,7 @@ self: { ]; librarySystemDepends = [ SDL2 ]; libraryPkgconfigDepends = [ SDL2 ]; + jailbreak = true; description = "Both high- and low-level bindings to the SDL library (version 2.0.3)."; license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) SDL2;}; @@ -191844,7 +192158,6 @@ self: { testHaskellDepends = [ base Cabal hspec hspec-core QuickCheck ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sdl2-image" = callPackage @@ -191859,7 +192172,6 @@ self: { jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-ttf" = callPackage @@ -191876,7 +192188,6 @@ self: { executableHaskellDepends = [ base linear sdl2 ]; description = "Binding to libSDL2-ttf"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; "sdnv" = callPackage @@ -191918,7 +192229,6 @@ self: { description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seacat" = callPackage @@ -191944,7 +192254,6 @@ self: { homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seal-module" = callPackage @@ -191974,7 +192283,6 @@ self: { homepage = "http://github.com/ekmett/search/"; description = "Infinite search in finite time with Hilbert's epsilon"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sec" = callPackage @@ -192003,7 +192311,6 @@ self: { homepage = "http://github.com/pgavin/secdh"; description = "SECDH Machine Simulator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seclib" = callPackage @@ -192044,6 +192351,7 @@ self: { transformers unordered-containers ]; testToolDepends = [ cpphs ]; + jailbreak = true; doCheck = false; homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; @@ -192077,6 +192385,7 @@ self: { transformers unordered-containers ]; testToolDepends = [ cpphs ]; + jailbreak = true; doCheck = false; homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; @@ -192110,6 +192419,7 @@ self: { transformers unordered-containers ]; testToolDepends = [ cpphs ]; + jailbreak = true; doCheck = false; homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; @@ -192144,7 +192454,6 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secp256k1" = callPackage @@ -192169,7 +192478,6 @@ self: { homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-santa" = callPackage @@ -192189,7 +192497,6 @@ self: { homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-sharing" = callPackage @@ -192211,7 +192518,6 @@ self: { homepage = "http://monoid.at/code"; description = "Information-theoretic secure secret sharing"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secrm" = callPackage @@ -192226,7 +192532,6 @@ self: { jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secure-sockets" = callPackage @@ -192327,7 +192632,6 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {sedna = null;}; "select" = callPackage @@ -192340,7 +192644,6 @@ self: { homepage = "http://nonempty.org/software/haskell-select"; description = "Wrap the select(2) POSIX function"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "selectors" = callPackage @@ -192358,7 +192661,6 @@ self: { homepage = "http://github.com/rcallahan/selectors"; description = "CSS Selectors for DOM traversal"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium" = callPackage @@ -192370,7 +192672,6 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selenium-server" = callPackage @@ -192392,7 +192693,6 @@ self: { homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "selfrestart" = callPackage @@ -192418,7 +192718,6 @@ self: { homepage = "https://github.com/luite/selinux"; description = "SELinux bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {selinux = null;}; "semaphore-plus" = callPackage @@ -192445,7 +192744,6 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoid-extras_4_0" = callPackage @@ -192642,6 +192940,7 @@ self: { base bytestring containers deepseq hashable nats text unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -192662,6 +192961,7 @@ self: { base bytestring containers deepseq hashable nats text unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -192682,6 +192982,7 @@ self: { base bytestring containers deepseq hashable nats text unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -192689,19 +192990,15 @@ self: { }) {}; "semigroups_0_18_0_1" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , tagged, text, unordered-containers - }: + ({ mkDerivation, base }: mkDerivation { pname = "semigroups"; version = "0.18.0.1"; sha256 = "f6e787519acf261e823d529cc3e5d4fca019075f39f8986649f21891d06d3115"; revision = "1"; editedCabalFile = "4b2725ee1abfe9519881e4b4da90cd984eee5f7814217e283dd940ebef629003"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable tagged text - unordered-containers - ]; + libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -192709,19 +193006,14 @@ self: { }) {}; "semigroups" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, tagged, text, transformers, unordered-containers - }: + ({ mkDerivation, base }: mkDerivation { pname = "semigroups"; version = "0.18.1"; sha256 = "ae7607fb2b497a53192c378dc84c00b45610fdc5de0ac8c1ac3234ec7acee807"; revision = "1"; editedCabalFile = "7dd2b3dcc9517705391c1c6a0b51eba1da605b554f9817255c4a1a1df4d4ae3d"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable tagged text - transformers unordered-containers - ]; + libraryHaskellDepends = [ base ]; homepage = "http://github.com/ekmett/semigroups/"; description = "Anything that associates"; license = stdenv.lib.licenses.bsd3; @@ -192738,7 +193030,6 @@ self: { homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring" = callPackage @@ -192761,7 +193052,6 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Semirings, ring-like structures used for dynamic programming applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring-simple" = callPackage @@ -192798,15 +193088,14 @@ self: { pname = "semver-range"; version = "0.1.1"; sha256 = "162a7149c50908cd1669ecc16193e2a1bc5cee99bf9e78baa985550592b421d7"; - revision = "1"; - editedCabalFile = "f27c2457d92acc53e4fad4d66b74b2a4633838d6c32a15257902b0a677d46890"; + revision = "2"; + editedCabalFile = "aa7748d3f19f1e66e0562c87e0dcfac03bdcb820ce29dde1f97e5e2affb699a9"; libraryHaskellDepends = [ base classy-prelude parsec text unordered-containers ]; jailbreak = true; description = "An implementation of semver and semantic version ranges"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sendfile" = callPackage @@ -192866,7 +193155,6 @@ self: { homepage = "https://github.com/hspec/sensei#readme"; description = "Automatically run Hspec tests on file modifications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sensenet" = callPackage @@ -192886,7 +193174,6 @@ self: { homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sentry" = callPackage @@ -192909,7 +193196,6 @@ self: { homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "senza" = callPackage @@ -192966,7 +193252,6 @@ self: { homepage = "http://fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seqalign" = callPackage @@ -192978,7 +193263,6 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "seqid_0_1_0" = callPackage @@ -193001,6 +193285,7 @@ self: { version = "0.4.1"; sha256 = "e04b5e0403eddd50f8aeefd6fcefacbf517c918acc12a9506911fec89de0cf51"; libraryHaskellDepends = [ base mtl transformers ]; + jailbreak = true; description = "Sequence ID production and consumption"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193025,6 +193310,7 @@ self: { version = "0.4.1"; sha256 = "07d9499db3a11f7e0f3d1c8611315e9b84d76cc576056aeb4cd005f5cc737f36"; libraryHaskellDepends = [ base io-streams seqid ]; + jailbreak = true; description = "Sequence ID IO-Streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193128,7 +193414,6 @@ self: { homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequence" = callPackage @@ -193158,7 +193443,6 @@ self: { homepage = "https://github.com/lukemaurer/sequent-core"; description = "Alternative Core language for GHC plugins"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequential-index" = callPackage @@ -193194,7 +193478,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/sequor"; description = "A sequence labeler based on Collins's sequence perceptron"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serf" = callPackage @@ -193449,6 +193732,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -193478,6 +193762,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -193505,6 +193790,7 @@ self: { filepath hspec parsec QuickCheck quickcheck-instances string-conversions text url ]; + jailbreak = true; homepage = "http://haskell-servant.github.io/"; description = "A family of combinators for defining webservices APIs"; license = stdenv.lib.licenses.bsd3; @@ -193918,10 +194204,10 @@ self: { mtl servant servant-foreign servant-swagger swagger2 text time unordered-containers uuid uuid-types ]; + jailbreak = true; homepage = "https://github.com/cutsea110/servant-csharp.git"; description = "Generate servant client library for C#"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-docs_0_3_1" = callPackage @@ -194165,6 +194451,8 @@ self: { pname = "servant-ede"; version = "0.5.1"; sha256 = "54e929c1c77acb04e808aabc485cf80f19724330e233ae5b6255d41d45ac957c"; + revision = "1"; + editedCabalFile = "6649944b61ad4bd96d1e5cbec7f7a67d3689e6fba0dcde1b6d94286a621068e6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -194223,7 +194511,6 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-foreign" = callPackage @@ -194236,7 +194523,6 @@ self: { testHaskellDepends = [ base hspec ]; description = "Helpers for generating clients for servant APIs in any programming language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-github" = callPackage @@ -194255,7 +194541,6 @@ self: { homepage = "http://github.com/finlay/servant-github#readme"; description = "Bindings to GitHub API using servant"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-haxl-client" = callPackage @@ -194285,7 +194570,6 @@ self: { homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-jquery_0_2_2_1" = callPackage @@ -194456,7 +194740,6 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-js" = callPackage @@ -194484,7 +194767,6 @@ self: { 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 @@ -194576,7 +194858,6 @@ self: { homepage = "http://github.com/zalora/servant-pool"; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-postgresql" = callPackage @@ -194594,7 +194875,6 @@ self: { homepage = "http://github.com/zalora/servant-postgresql"; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-quickcheck" = callPackage @@ -194618,6 +194898,7 @@ self: { base base-compat hspec http-client QuickCheck quickcheck-io servant servant-client servant-server transformers warp ]; + jailbreak = true; description = "QuickCheck entire APIs"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -194672,7 +194953,6 @@ self: { homepage = "http://github.com/zalora/servant"; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-server_0_2_4" = callPackage @@ -195040,10 +195320,10 @@ self: { aeson aeson-qq base doctest Glob hspec lens QuickCheck servant swagger2 text time ]; + jailbreak = true; homepage = "https://github.com/haskell-servant/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "servant-yaml" = callPackage @@ -195156,7 +195436,6 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using acid-state"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-persistent_1_0_1" = callPackage @@ -195181,6 +195460,7 @@ self: { persistent-template QuickCheck resource-pool serversession text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using persistent and an RDBMS"; license = stdenv.lib.licenses.mit; @@ -195209,10 +195489,10 @@ self: { persistent-template QuickCheck resource-pool serversession text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using persistent and an RDBMS"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "serversession-backend-redis_1_0" = callPackage @@ -195232,6 +195512,7 @@ self: { base bytestring hedis hspec path-pieces serversession text time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using Redis"; @@ -195256,6 +195537,7 @@ self: { base bytestring hedis hspec path-pieces serversession text time transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using Redis"; @@ -195317,7 +195599,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "servius" = callPackage + "servius_1_2_0_1" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, bytestring , http-types, markdown, shakespeare, text, wai, wai-app-static }: @@ -195333,12 +195615,14 @@ self: { base blaze-builder blaze-html bytestring http-types markdown shakespeare text wai wai-app-static ]; + jailbreak = true; homepage = "http://github.com/snoyberg/servius#readme"; description = "Warp web server with template rendering"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servius_1_2_0_2" = callPackage + "servius" = callPackage ({ mkDerivation, base, blaze-builder, blaze-html, bytestring , http-types, markdown, shakespeare, text, wai, wai-app-static }: @@ -195355,7 +195639,6 @@ self: { homepage = "http://github.com/snoyberg/servius#readme"; description = "Warp web server with template rendering"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ses-html" = callPackage @@ -195370,6 +195653,7 @@ self: { base base64-bytestring blaze-html byteable bytestring cryptohash HsOpenSSL http-streams tagsoup time ]; + jailbreak = true; description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -195389,7 +195673,6 @@ self: { jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sessions" = callPackage @@ -195405,7 +195688,6 @@ self: { homepage = "http://www.wellquite.org/sessions/"; description = "Session Types for Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-cover" = callPackage @@ -195424,7 +195706,6 @@ self: { homepage = "http://hub.darcs.net/thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "set-extra_1_3_2" = callPackage @@ -195478,7 +195759,6 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "setdown" = callPackage @@ -195608,6 +195888,7 @@ self: { revision = "1"; editedCabalFile = "c4ff7321208bb4f71ea367d5a1811d7c13aadda0d05a1d9ddb25fff5e31c9365"; libraryHaskellDepends = [ base mtl template-haskell ]; + jailbreak = true; description = "Small (TH) library to declare setters for typical `record' data type fields"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -195646,7 +195927,6 @@ self: { homepage = "https://github.com/scvalex/sexp"; description = "S-Expression parsing/printing made fun and easy"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-grammar" = callPackage @@ -195669,7 +195949,6 @@ self: { homepage = "https://github.com/esmolanka/sexp-grammar"; description = "Invertible parsers for S-expressions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-show" = callPackage @@ -195703,7 +195982,6 @@ self: { executableHaskellDepends = [ QuickCheck random ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sext" = callPackage @@ -195713,6 +195991,7 @@ self: { version = "0.1.0.2"; sha256 = "b5101154373eac70dee9d56854333ea33735a88b7697f2877846c746dd048c3a"; libraryHaskellDepends = [ base bytestring template-haskell text ]; + jailbreak = true; homepage = "http://github.com/dzhus/sext/"; description = "Lists, Texts and ByteStrings with type-encoded length"; license = stdenv.lib.licenses.bsd3; @@ -195729,7 +196008,6 @@ self: { homepage = "http://patch-tag.com/r/shahn/sfml-audio"; description = "minimal bindings to the audio module of sfml"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libsndfile; inherit (pkgs) openal;}; "sfmt" = callPackage @@ -195739,6 +196017,7 @@ self: { version = "0.1.1"; sha256 = "e6862db41ac95e52e9110d666683f5c931b6175c86fc500aaf74cf39c8d49fcb"; libraryHaskellDepends = [ base bytestring entropy primitive ]; + jailbreak = true; homepage = "https://github.com/philopon/sfmt-hs"; description = "SIMD-oriented Fast Mersenne Twister(SFMT) binding"; license = stdenv.lib.licenses.bsd3; @@ -195792,7 +196071,6 @@ self: { homepage = "http://blog.malde.org/"; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sha-streams" = callPackage @@ -195805,6 +196083,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base binary bytestring io-streams SHA ]; executableHaskellDepends = [ base io-streams SHA ]; + jailbreak = true; homepage = "https://github.com/noteed/sha-streams"; description = "SHA hashes for io-streams"; license = stdenv.lib.licenses.bsd3; @@ -195831,7 +196110,6 @@ self: { homepage = "http://github.com/karun012/shadower"; description = "An automated way to run doctests in files that are changing"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shadowsocks" = callPackage @@ -195875,7 +196153,6 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shady-graphics" = callPackage @@ -195894,7 +196171,6 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake_0_14_2" = callPackage @@ -196173,7 +196449,6 @@ self: { homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shake-language-c_0_6_3" = callPackage @@ -196376,6 +196651,7 @@ self: { base binary directory shake template-haskell ]; executableHaskellDepends = [ base shake ]; + jailbreak = true; homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-shake-persist.git"; description = "Shake build system on-disk caching"; license = stdenv.lib.licenses.gpl3; @@ -196409,7 +196685,6 @@ self: { homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shakespeare_2_0_2_1" = callPackage @@ -196837,7 +197112,6 @@ self: { homepage = "http://github.com/jberryman/shapely-data"; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sharc-timbre" = callPackage @@ -196850,7 +197124,7 @@ self: { homepage = "https://github.com/anton-k/sharc"; description = "Sandell Harmonic Archive. A collection of stable phases for all instruments in the orchestra."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + broken = true; }) {}; "shared-buffer" = callPackage @@ -196869,7 +197143,6 @@ self: { jailbreak = true; description = "A circular buffer built on shared memory"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shared-fields" = callPackage @@ -196881,6 +197154,7 @@ self: { sha256 = "a7044f887276d9d630f613313c961af265027c6aa1ba8acf8ec402db0837f680"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base Cabal hspec lens text ]; + jailbreak = true; homepage = "http://github.com/intolerable/shared-fields"; description = "a tiny library for using shared lens fields"; license = stdenv.lib.licenses.bsd3; @@ -196897,7 +197171,6 @@ self: { homepage = "https://github.com/nh2/shared-memory"; description = "POSIX shared memory"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "sharedio" = callPackage @@ -196928,7 +197201,6 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A Haskell preprocessor adding miscellaneous features"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shelduck" = callPackage @@ -196959,7 +197231,6 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "shell-conduit_4_5" = callPackage @@ -196972,12 +197243,15 @@ self: { pname = "shell-conduit"; version = "4.5"; sha256 = "2f10ce3d80b6c64ce97d5c09d8b2cb99f6942714db21a2b845db8269d472f8ed"; + revision = "1"; + editedCabalFile = "918e7094454b45154d0feda2fa30b11948819250c7b41c03100786b5faf09bb0"; libraryHaskellDepends = [ async base bytestring conduit conduit-extra control-monad-loop directory filepath monad-control monads-tf process resourcet semigroups split template-haskell text transformers transformers-base unix ]; + jailbreak = true; homepage = "https://github.com/chrisdone/shell-conduit"; description = "Write shell scripts with Conduit"; license = stdenv.lib.licenses.bsd3; @@ -196994,12 +197268,15 @@ self: { pname = "shell-conduit"; version = "4.5.1"; sha256 = "92fe4fe4ba526503b5663f36a5849582f6e7d794f6404f4407ebeb491c020811"; + revision = "1"; + editedCabalFile = "dfe5105c4b3845f58b77f2d909af080808297ea4d097281f3021a1936be508b4"; libraryHaskellDepends = [ async base bytestring conduit conduit-extra control-monad-loop directory filepath monad-control monads-tf process resourcet semigroups split template-haskell text transformers transformers-base unix ]; + jailbreak = true; homepage = "https://github.com/chrisdone/shell-conduit"; description = "Write shell scripts with Conduit"; license = stdenv.lib.licenses.bsd3; @@ -197065,7 +197342,6 @@ self: { homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; description = "Pipe streams through external shell commands"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellish" = callPackage @@ -197083,7 +197359,6 @@ self: { homepage = "http://repos.mornfall.net/shellish"; description = "shell-/perl- like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shellmate" = callPackage @@ -197122,6 +197397,7 @@ self: { pretty-show process regex-tdfa safe test-framework test-framework-hunit utf8-string ]; + jailbreak = true; homepage = "http://joyful.com/shelltestrunner"; description = "A tool for testing command-line programs"; license = "GPL"; @@ -197189,6 +197465,7 @@ self: { system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -197220,6 +197497,7 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; @@ -197252,6 +197530,7 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; @@ -197284,6 +197563,7 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; @@ -197316,6 +197596,7 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; @@ -197348,6 +197629,7 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; @@ -197382,6 +197664,8 @@ self: { process system-fileio system-filepath text time transformers transformers-base unix-compat ]; + jailbreak = true; + doCheck = false; homepage = "https://github.com/yesodweb/Shelly.hs"; description = "shell-like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; @@ -197596,7 +197880,6 @@ self: { jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shpider" = callPackage @@ -197614,7 +197897,6 @@ self: { homepage = "http://github.com/ozataman/shpider"; description = "Web automation library in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shplit" = callPackage @@ -197697,10 +197979,10 @@ self: { testHaskellDepends = [ base Cabal cairo containers fgl HUnit parsec process ]; + jailbreak = true; homepage = "http://pages.iu.edu/~gdweber/software/sifflet/"; description = "Simple, visual, functional language for learning about recursion"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sifflet-lib" = callPackage @@ -197720,7 +198002,6 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {gdk_x11 = null; gtk_x11 = null;}; "sign" = callPackage @@ -197772,7 +198053,6 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "signed-multiset" = callPackage @@ -197825,7 +198105,6 @@ self: { homepage = "http://github.com/mikeizbicki/simd"; description = "simple interface to GHC's SIMD instructions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simgi" = callPackage @@ -197845,7 +198124,6 @@ self: { homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple" = callPackage @@ -197920,7 +198198,6 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -197944,7 +198221,6 @@ self: { homepage = "https://github.com/jfischoff/simple-c-value"; description = "A simple C value type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-conduit" = callPackage @@ -197968,7 +198244,6 @@ self: { homepage = "http://github.com/jwiegley/simple-conduit"; description = "A simple streaming I/O library based on monadic folds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-config" = callPackage @@ -198002,7 +198277,6 @@ self: { ]; description = "simple binding of css and html"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-eval" = callPackage @@ -198031,7 +198305,6 @@ self: { homepage = "https://github.com/aleator/simple-firewire"; description = "Simplified interface for firewire cameras"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-form" = callPackage @@ -198049,7 +198322,6 @@ self: { homepage = "https://github.com/singpolyma/simple-form-haskell"; description = "Forms that configure themselves based on type"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-genetic-algorithm" = callPackage @@ -198145,7 +198417,6 @@ self: { homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-neural-networks" = callPackage @@ -198186,6 +198457,7 @@ self: { base classy-prelude error-list hspec hspec-expectations MissingH mtl parsec system-filepath text text-render unordered-containers ]; + jailbreak = true; homepage = "https://github.com/adnelson/simple-nix"; description = "Simple parsing/pretty printing for Nix expressions"; license = stdenv.lib.licenses.mit; @@ -198218,7 +198490,6 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-pipe" = callPackage @@ -198513,7 +198784,6 @@ self: { homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleargs" = callPackage @@ -198544,7 +198814,6 @@ self: { homepage = "http://github.com/dom96/SimpleIRC"; description = "Simple IRC Library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleirc-lens" = callPackage @@ -198557,7 +198826,6 @@ self: { homepage = "https://github.com/relrod/simpleirc-lens"; description = "Lenses for simpleirc types"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplenote" = callPackage @@ -198574,7 +198842,6 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleprelude" = callPackage @@ -198594,7 +198861,6 @@ self: { jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simplesmtpclient" = callPackage @@ -198621,7 +198887,6 @@ self: { homepage = "http://hub.darcs.net/thoferon/simplessh"; description = "Simple wrapper around libssh2"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {ssh2 = null;}; "simplest-sqlite" = callPackage @@ -198636,6 +198901,7 @@ self: { base bytestring exception-hierarchy template-haskell text ]; librarySystemDepends = [ sqlite ]; + jailbreak = true; homepage = "comming soon"; description = "Simplest SQLite3 binding"; license = stdenv.lib.licenses.bsd3; @@ -198692,7 +198958,6 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simtreelo" = callPackage @@ -198702,6 +198967,7 @@ self: { version = "0.1.1.0"; sha256 = "820e7189bb824c3480bb5492ddaf04a3b8200fea747084ab35e15ad46815f8c8"; libraryHaskellDepends = [ base containers ]; + jailbreak = true; description = "Loader for data organized in a tree"; license = stdenv.lib.licenses.gpl3; }) {}; @@ -198733,7 +198999,6 @@ self: { homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXft;}; "singleton-nats" = callPackage @@ -198743,6 +199008,7 @@ self: { version = "0.4.0.1"; sha256 = "4914fba386076d7581dbf9911a644086662f578e421618bdaded4e3f36785e4d"; libraryHaskellDepends = [ base singletons ]; + jailbreak = true; homepage = "https://github.com/AndrasKovacs/singleton-nats"; description = "Unary natural numbers relying on the singletons infrastructure"; license = stdenv.lib.licenses.bsd3; @@ -198787,6 +199053,7 @@ self: { testHaskellDepends = [ base Cabal constraints filepath process tasty tasty-golden ]; + jailbreak = true; doCheck = false; homepage = "http://www.cis.upenn.edu/~eir/packages/singletons"; description = "A framework for generating singleton types"; @@ -198808,6 +199075,7 @@ self: { testHaskellDepends = [ base Cabal constraints filepath process tasty tasty-golden ]; + jailbreak = true; doCheck = false; homepage = "http://www.cis.upenn.edu/~eir/packages/singletons"; description = "A framework for generating singleton types"; @@ -198829,6 +199097,7 @@ self: { testHaskellDepends = [ base Cabal constraints filepath process tasty tasty-golden ]; + jailbreak = true; doCheck = false; homepage = "http://www.cis.upenn.edu/~eir/packages/singletons"; description = "A framework for generating singleton types"; @@ -198836,7 +199105,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "singletons" = callPackage + "singletons_2_0_1" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl , process, syb, tasty, tasty-golden, template-haskell, th-desugar }: @@ -198850,13 +199119,15 @@ self: { testHaskellDepends = [ base Cabal directory filepath process tasty tasty-golden ]; + jailbreak = true; doCheck = false; homepage = "http://www.github.com/goldfirere/singletons"; description = "A framework for generating singleton types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "singletons_2_1" = callPackage + "singletons" = callPackage ({ mkDerivation, base, Cabal, containers, directory, filepath, mtl , process, syb, tasty, tasty-golden, template-haskell, th-desugar }: @@ -198870,11 +199141,10 @@ self: { testHaskellDepends = [ base Cabal directory filepath process tasty tasty-golden ]; - jailbreak = true; + doCheck = false; homepage = "http://www.github.com/goldfirere/singletons"; description = "A framework for generating singleton types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sink" = callPackage @@ -198921,7 +199191,6 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sitemap" = callPackage @@ -198951,7 +199220,6 @@ self: { jailbreak = true; description = "Sized sequence data-types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sized-types" = callPackage @@ -198988,6 +199256,7 @@ self: { base constraints deepseq equational-reasoning hashable monomorphic singletons template-haskell type-natural ]; + jailbreak = true; homepage = "https://github.com/konn/sized-vector"; description = "Size-parameterized vector types and functions"; license = stdenv.lib.licenses.bsd3; @@ -199032,7 +199301,6 @@ self: { executableToolDepends = [ alex happy ]; description = "Simple JavaScript Profiler"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skein_1_0_9_1" = callPackage @@ -199136,7 +199404,6 @@ self: { ]; description = "a tool to access the OSX keychain"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skeletons" = callPackage @@ -199200,14 +199467,13 @@ self: { ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "skulk"; - version = "0.1.1.0"; - sha256 = "21bfa0fb579dd9b4cd0c48cbd0011b0b4a38985b517dfd6ee1d455d9c83506df"; + version = "0.1.2.0"; + sha256 = "c1da538d08786105822677a01d6cfe0a5e7d2a3e66babd0fc64084f638403300"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec QuickCheck ]; homepage = "http://github.com/geekyfox/skulk"; description = "Eclectic collection of utility functions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skype4hs" = callPackage @@ -199226,7 +199492,6 @@ self: { homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skypelogexport" = callPackage @@ -199266,7 +199531,6 @@ self: { jailbreak = true; description = "Haskell API for interacting with Slack"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slack-api" = callPackage @@ -199478,7 +199742,6 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sloane" = callPackage @@ -199529,7 +199792,6 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "slug_0_1_1" = callPackage @@ -199605,7 +199867,6 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallcaps_0_6_0_1" = callPackage @@ -199626,6 +199887,7 @@ self: { testHaskellDepends = [ attoparsec base containers data-default parsec text ]; + jailbreak = true; description = "Flatten camel case text in LaTeX files"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -199649,6 +199911,7 @@ self: { testHaskellDepends = [ attoparsec base containers data-default parsec text ]; + jailbreak = true; description = "Flatten camel case text in LaTeX files"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -199674,6 +199937,7 @@ self: { version = "0.3"; sha256 = "87d8ee55131915b5549a0053b605729222e3d6c79be94f8bb35aa263f50ad6cb"; libraryHaskellDepends = [ base smallcheck smallcheck-series ]; + jailbreak = true; homepage = "http://github.com/jdnavarro/smallcheck-laws"; description = "SmallCheck properties for common laws"; license = stdenv.lib.licenses.bsd3; @@ -199690,6 +199954,7 @@ self: { libraryHaskellDepends = [ base lens smallcheck smallcheck-series transformers ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/smallcheck-lens"; description = "SmallCheck properties for lens"; license = stdenv.lib.licenses.bsd3; @@ -199707,6 +199972,7 @@ self: { base bytestring containers logict smallcheck text transformers ]; testHaskellDepends = [ base doctest Glob ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/smallcheck-series"; description = "Extra SmallCheck series and utilities"; license = stdenv.lib.licenses.bsd3; @@ -199725,7 +199991,6 @@ self: { homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smallstring" = callPackage @@ -199743,7 +200008,6 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smaoin" = callPackage @@ -199774,7 +200038,6 @@ self: { homepage = "http://patch-tag.com/r/salazar/smartGroup"; description = "group strings or bytestrings by words in common"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smartcheck" = callPackage @@ -199805,6 +200068,7 @@ self: { version = "0.2.0.0"; sha256 = "9b6e462fa7a53608df161ac051e88829447cff44e7463c55ea9d340e6fd40281"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/frerich/smartconstructor"; description = "A package exposing a helper function for generating smart constructors"; license = stdenv.lib.licenses.bsd3; @@ -199824,7 +200088,6 @@ self: { homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/"; description = "Web based flash card for Word Smart I and II vocabularies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sme" = callPackage @@ -199836,7 +200099,6 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smoothie_0_1_3" = callPackage @@ -199923,7 +200185,6 @@ self: { homepage = "https://github.com/GetShopTV/smsaero"; description = "SMSAero API and HTTP client based on servant library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smt-lib" = callPackage @@ -199937,7 +200198,6 @@ self: { homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtLib_1_0_7" = callPackage @@ -200016,10 +200276,10 @@ self: { stringsearch text tls transformers transformers-compat x509-store x509-system ]; + jailbreak = true; homepage = "https://github.com/avieth/smtp-mail-ng"; description = "An SMTP client EDSL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtp2mta" = callPackage @@ -200034,7 +200294,6 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtps-gmail" = callPackage @@ -200056,6 +200315,21 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "snake" = callPackage + ({ mkDerivation, base, random, split, terminal-size }: + mkDerivation { + pname = "snake"; + version = "0.1.0.0"; + sha256 = "3055892ada05f0d937a205af5b2bb136f28b98c2db8de13a185b0867662146f8"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base random split terminal-size ]; + jailbreak = true; + homepage = "http://code.alaminium.me/habibalamin/snake"; + description = "A basic console snake game"; + license = stdenv.lib.licenses.mit; + }) {}; + "snake-game" = callPackage ({ mkDerivation, base, GLUT, OpenGL, random }: mkDerivation { @@ -200065,7 +200339,6 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap_0_13_3_2" = callPackage @@ -200305,6 +200578,7 @@ self: { base bytestring containers directory directory-tree filepath hashable old-time snap-server template-haskell text ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -200338,6 +200612,7 @@ self: { base bytestring containers directory directory-tree filepath hashable old-time snap-server template-haskell text ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; @@ -200354,7 +200629,6 @@ self: { homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-app" = callPackage @@ -200532,6 +200806,7 @@ self: { regex-posix text time unix unix-compat unordered-containers vector zlib-enum ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework (core interfaces and types)"; license = stdenv.lib.licenses.bsd3; @@ -200558,6 +200833,7 @@ self: { regex-posix text time unix unix-compat unordered-containers vector zlib-enum ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework (core interfaces and types)"; license = stdenv.lib.licenses.bsd3; @@ -200576,6 +200852,7 @@ self: { attoparsec base bytestring case-insensitive hashable network network-uri snap text transformers unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ocharles/snap-cors"; description = "Add CORS headers to Snap applications"; license = stdenv.lib.licenses.bsd3; @@ -200644,7 +200921,6 @@ self: { jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-language" = callPackage @@ -200658,6 +200934,7 @@ self: { libraryHaskellDepends = [ attoparsec base bytestring containers snap-core ]; + jailbreak = true; homepage = "https://github.com/jonpetterbergman/snap-accept-language"; description = "Language handling for Snap"; license = stdenv.lib.licenses.bsd3; @@ -200675,10 +200952,10 @@ self: { base directory directory-tree hint mtl snap-core template-haskell time unix ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: dynamic loader"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-loader-static" = callPackage @@ -200690,6 +200967,7 @@ self: { revision = "1"; editedCabalFile = "c927448783c28f56bd57c7b09d147965b96e7b4c7320524b26c83bf10ab89c21"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: static loader"; license = stdenv.lib.licenses.bsd3; @@ -200718,7 +200996,6 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-routes" = callPackage @@ -200734,6 +201011,7 @@ self: { base blaze-builder bytestring containers filepath http-types mime-types path-pieces random snap template-haskell text ]; + jailbreak = true; description = "Typesafe URLs for Snap applications"; license = stdenv.lib.licenses.mit; }) {}; @@ -200837,6 +201115,7 @@ self: { enumerator HsOpenSSL MonadCatchIO-transformers mtl network old-locale snap-core text time unix unix-compat ]; + jailbreak = true; homepage = "http://snapframework.com/"; description = "A fast, iteratee-based, epoll-enabled web server for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -200865,7 +201144,6 @@ self: { homepage = "https://github.com/dbp/snap-testing"; description = "A library for BDD-style testing with the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-utils" = callPackage @@ -200884,7 +201162,6 @@ self: { homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -200941,7 +201218,6 @@ self: { homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -201016,7 +201292,6 @@ self: { homepage = "https://github.com/zmthy/snaplet-css-min"; description = "A Snaplet for CSS minification"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -201034,7 +201309,6 @@ self: { jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-fay_0_3_3_8" = callPackage @@ -201156,6 +201430,7 @@ self: { aeson base bytestring configurator directory fay filepath mtl snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -201192,7 +201467,6 @@ self: { homepage = "https://github.com/mikeplus64/snaplet-hasql"; description = "A Hasql snaplet"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -201210,7 +201484,6 @@ self: { homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl"; description = "Snaplet for Facebook's Haxl"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -201233,7 +201506,6 @@ self: { homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -201275,7 +201547,6 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-influxdb" = callPackage @@ -201295,7 +201566,6 @@ self: { homepage = "https://github.com/ixmatus/snaplet-influxdb"; description = "Snap framework snaplet for the InfluxDB library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-lss" = callPackage @@ -201351,7 +201621,6 @@ self: { jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -201368,7 +201637,6 @@ self: { homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -201386,10 +201654,10 @@ self: { MonadCatchIO-transformers mtl mysql mysql-simple resource-pool-catchio snap text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -201417,7 +201685,6 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -201460,6 +201727,7 @@ self: { MonadCatchIO-transformers mtl postgresql-simple resource-pool-catchio snap text transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/mightybyte/snaplet-postgresql-simple"; description = "postgresql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; @@ -201552,7 +201820,6 @@ self: { homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -201572,7 +201839,6 @@ self: { homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -201592,7 +201858,6 @@ self: { homepage = "http://github.com/statusfailed/snaplet-riak"; description = "A Snaplet for the Riak database"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -201607,6 +201872,7 @@ self: { base bytestring configurator directory filepath mtl process snap snap-core transformers ]; + jailbreak = true; homepage = "https://github.com/lukerandall/snaplet-sass"; description = "Sass integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; @@ -201627,7 +201893,6 @@ self: { jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -201642,6 +201907,7 @@ self: { adjunctions base blaze-html bytestring configurator lens ses-html snap text transformers ]; + jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -201709,7 +201975,6 @@ self: { jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -201728,7 +201993,6 @@ self: { jailbreak = true; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-wordpress" = callPackage @@ -201753,10 +202017,10 @@ self: { hspec hspec-core hspec-snap lens mtl snap snaplet-redis text unordered-containers xmlhtml ]; + jailbreak = true; homepage = "https://github.com/dbp/snaplet-wordpress"; description = "A snaplet that communicates with wordpress over its api"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snappy" = callPackage @@ -201776,7 +202040,6 @@ self: { homepage = "http://github.com/bos/snappy"; description = "Bindings to the Google Snappy library for fast compression/decompression"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) snappy;}; "snappy-conduit" = callPackage @@ -201790,7 +202053,6 @@ self: { homepage = "http://github.com/tatac1/snappy-conduit/"; description = "Conduit bindings for Snappy (see snappy package)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-framing" = callPackage @@ -201803,7 +202065,6 @@ self: { homepage = "https://github.com/kim/snappy-framing"; description = "Snappy Framing Format in Haskell"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "snappy-iteratee" = callPackage @@ -201817,7 +202078,6 @@ self: { homepage = "http://github.com/iand675/snappy-iteratee"; description = "An enumeratee that uses Google's snappy compression library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sndfile-enumerators" = callPackage @@ -201838,7 +202098,6 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -201868,6 +202127,7 @@ self: { homepage = "http://sneathlane.com"; description = "A compositional web UI library, which draws to a Canvas element"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snippet-extractor" = callPackage @@ -201903,7 +202163,6 @@ self: { homepage = "http://github.com/elginer/snm"; description = "The Simple Nice-Looking Manual Generator"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snmp_0_2_0_0" = callPackage @@ -201921,6 +202180,7 @@ self: { cipher-aes cipher-des containers crypto-cipher-types cryptohash mtl network network-info random securemem text time ]; + jailbreak = true; description = "API for write snmp client"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -201941,6 +202201,7 @@ self: { cipher-aes cipher-des containers crypto-cipher-types cryptohash mtl network network-info random securemem text time ]; + jailbreak = true; description = "API for write snmp client"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -201955,7 +202216,6 @@ self: { homepage = "http://github.com/nfjinjing/snow-white"; description = "encode any binary instance to white space"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snowball" = callPackage @@ -201984,6 +202244,7 @@ self: { version = "0.1.1.1"; sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; libraryHaskellDepends = [ base time ]; + jailbreak = true; description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; license = stdenv.lib.licenses.asl20; }) {}; @@ -202005,7 +202266,6 @@ self: { homepage = "http://code.mathr.co.uk/snowglobe"; description = "randomized fractal snowflakes demo"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "soap_0_2_2_5" = callPackage @@ -202133,7 +202393,6 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sockaddr" = callPackage @@ -202157,6 +202416,7 @@ self: { editedCabalFile = "2dd7a1d3117389e1efa5fa6149925c6bd912116a68c2b2ee1370911b106440fc"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ async base bytestring ]; + jailbreak = true; homepage = "https://github.com/lpeterse/haskell-socket"; description = "A portable and extensible sockets library"; license = stdenv.lib.licenses.mit; @@ -202173,6 +202433,7 @@ self: { editedCabalFile = "ce27df183e3917eb8b747fb31c06bb0724405c35498ba5d6c143ef53d8d65ec1"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ async base bytestring ]; + jailbreak = true; homepage = "https://github.com/lpeterse/haskell-socket"; description = "A portable and extensible sockets library"; license = stdenv.lib.licenses.mit; @@ -202252,6 +202513,7 @@ self: { aeson attoparsec base bytestring engine-io mtl stm text transformers unordered-containers vector ]; + jailbreak = true; homepage = "http://github.com/ocharles/engine.io"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -202269,7 +202531,6 @@ self: { homepage = "https://github.com/lpeterse/haskell-socket-sctp"; description = "STCP socket extensions library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {sctp = null;}; "socketio" = callPackage @@ -202299,7 +202560,6 @@ self: { jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socketson" = callPackage @@ -202326,7 +202586,6 @@ self: { homepage = "https://github.com/aphorisme/socketson"; description = "A small websocket backend provider"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "socks_0_5_4" = callPackage @@ -202374,6 +202633,7 @@ self: { version = "0.11.0.3"; sha256 = "ea61f6725d01cf581a086738e9c18bbf567a428545d582824280aa48150b1a03"; libraryHaskellDepends = [ base containers mtl ]; + jailbreak = true; description = "Sodium Reactive Programming (FRP) System"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -202389,7 +202649,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "GUI functions as used in the book \"The Haskell School of Expression\""; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "solr" = callPackage @@ -202432,7 +202691,6 @@ self: { homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary"; description = "Sonic Visualiser"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sophia" = callPackage @@ -202478,7 +202736,6 @@ self: { jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sorted-list_0_1_4_2" = callPackage @@ -202494,7 +202751,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sorted-list" = callPackage + "sorted-list_0_1_5_0" = callPackage ({ mkDerivation, base, deepseq }: mkDerivation { pname = "sorted-list"; @@ -202504,6 +202761,32 @@ self: { homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; description = "Type-enforced sorted lists and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "sorted-list_0_1_6_1" = callPackage + ({ mkDerivation, base, deepseq }: + mkDerivation { + pname = "sorted-list"; + version = "0.1.6.1"; + sha256 = "07eda22facb55bd2c135a8a2ada96e5d7f0a2d86f471cdeb4eb3fd3ab37ce0b4"; + libraryHaskellDepends = [ base deepseq ]; + homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; + description = "Type-enforced sorted lists and related functions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "sorted-list" = callPackage + ({ mkDerivation, base, deepseq }: + mkDerivation { + pname = "sorted-list"; + version = "0.2.0.0"; + sha256 = "cc52c787b056f4d3a9ecc59f06701695602558a4233042ff8f613cdd4985d138"; + libraryHaskellDepends = [ base deepseq ]; + homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; + description = "Type-enforced sorted lists and related functions"; + license = stdenv.lib.licenses.bsd3; }) {}; "sorting" = callPackage @@ -202513,6 +202796,7 @@ self: { version = "1.0.0.1"; sha256 = "b60861d8dca5c884544cd255f33c62b65cc1aece9e2a687352329f7b705d5bc4"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/joneshf/sorting"; description = "Utils for sorting"; license = stdenv.lib.licenses.bsd3; @@ -202553,7 +202837,6 @@ self: { jailbreak = true; description = "Approximate a song from other pieces of sound"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sounddelay" = callPackage @@ -202591,7 +202874,6 @@ self: { homepage = "http://github.com/nfjinjing/source-code-server"; description = "The server backend for the source code iPhone app"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sourcemap_0_1_3_0" = callPackage @@ -202653,7 +202935,6 @@ self: { homepage = "https://github.com/msiegenthaler/SouSiT"; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sox" = callPackage @@ -202690,10 +202971,10 @@ self: { sample-frame storablevector transformers utility-ht ]; libraryPkgconfigDepends = [ sox ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Write, read, convert audio signals using libsox"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sox;}; "soyuz" = callPackage @@ -202713,7 +202994,6 @@ self: { homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spacefill" = callPackage @@ -202777,7 +203057,6 @@ self: { homepage = "https://github.com/vtan/spanout"; description = "A breakout clone written in netwire and gloss"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparkle" = callPackage @@ -202798,9 +203077,9 @@ self: { executableHaskellDepends = [ base bytestring filepath process regex-tdfa text zip-archive ]; + jailbreak = true; description = "Distributed Apache Spark applications in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse" = callPackage @@ -202828,7 +203107,6 @@ self: { homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse-lin-alg" = callPackage @@ -202859,7 +203137,6 @@ self: { homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage"; description = "Sparse bitmaps for pattern match coverage"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -202872,7 +203149,6 @@ self: { homepage = "http://www.cs.york.ac.uk/~mfn/sparsecheck/"; description = "A Logic Programming Library for Test-Data Generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparser" = callPackage @@ -202900,26 +203176,25 @@ self: { homepage = "http://github.com/nfjinjing/spata"; description = "brainless form validation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spatial-math" = callPackage ({ mkDerivation, base, binary, cereal, doctest, ghc-prim, lens , linear, QuickCheck, test-framework, test-framework-quickcheck2 + , TypeCompose }: mkDerivation { pname = "spatial-math"; - version = "0.2.7.0"; - sha256 = "a40636d9639ebd4f81b6b10a25ffd3f03af7e3a904d80ac00d2c6892d9ad2859"; + version = "0.3.0.0"; + sha256 = "924f3473ac115e0454ced1922eeaa5f388d86c95f2467b5db52e26e982f77966"; libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear + base binary cereal ghc-prim lens linear TypeCompose ]; testHaskellDepends = [ base doctest QuickCheck test-framework test-framework-quickcheck2 ]; description = "3d math including quaternions/euler angles/dcms and utility functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spawn" = callPackage @@ -202943,6 +203218,7 @@ self: { editedCabalFile = "1fd8d3886920b2cf9597d16fcc7ee0c0709c78dc1e88471df6e4a9d567521bfa"; libraryHaskellDepends = [ base transformers ]; testHaskellDepends = [ base tasty tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/phadej/spdx"; description = "SPDX license expression language"; license = stdenv.lib.licenses.bsd3; @@ -202987,7 +203263,6 @@ self: { jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "special-keys" = callPackage @@ -203032,7 +203307,6 @@ self: { homepage = "https://github.com/jfischoff/specialize-th"; description = "Create specialized types from polymorphic ones using TH"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "species" = callPackage @@ -203049,6 +203323,7 @@ self: { base containers multiset-comb np-extras numeric-prelude template-haskell ]; + jailbreak = true; description = "Computational combinatorial species"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -203074,6 +203349,7 @@ self: { version = "1.5.0.2"; sha256 = "e5c29dc325482c99e871c7a026f3115d0192165096d04e93e85ec19bfad8a485"; libraryHaskellDepends = [ base ghc-prim stm transformers ]; + jailbreak = true; homepage = "http://github.com/ekmett/speculation"; description = "A framework for safe, programmable, speculative parallelism"; license = stdenv.lib.licenses.bsd3; @@ -203158,7 +203434,6 @@ self: { jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sphinx" = callPackage @@ -203189,7 +203464,6 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spice" = callPackage @@ -203208,7 +203482,6 @@ self: { homepage = "http://github.com/crockeo/spice"; description = "An FRP-based game engine written in Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "spike" = callPackage @@ -203231,7 +203504,6 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -203253,6 +203525,7 @@ self: { version = "0.0.1.0"; sha256 = "59d7b176ddafbb73aff8dd4b1a8f9557f748728e4f5262a9575108ff6e62d6ca"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/expipiplus1/spir-v"; description = "Some utilities for reading and writing SPIR-V files"; license = stdenv.lib.licenses.mit; @@ -203285,7 +203558,6 @@ self: { homepage = "http://github.com/JohnLato/splaytree"; description = "Provides an annotated splay tree"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "splice" = callPackage @@ -203323,7 +203595,6 @@ self: { homepage = "http://michael.orlitzky.com/code/spline3.php"; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "splines" = callPackage @@ -203343,7 +203614,6 @@ self: { ]; description = "B-Splines, other splines, and NURBS"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split_0_1_4_3" = callPackage @@ -203425,10 +203695,10 @@ self: { base numeric-prelude soxlib storablevector synthesizer-core transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/split-record/"; description = "Split a big audio file into pieces at positions of silence"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "split-tchan" = callPackage @@ -203519,7 +203789,6 @@ self: { homepage = "http://github.com/elginer/SpoonUtilities"; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spoty" = callPackage @@ -203538,7 +203807,6 @@ self: { homepage = "https://github.com/davnils/spoty"; description = "Spotify web API wrapper"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spreadsheet" = callPackage @@ -203553,6 +203821,7 @@ self: { libraryHaskellDepends = [ base explicit-exception transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; description = "Read and write spreadsheets from and to CSV files in a lazy way"; license = stdenv.lib.licenses.bsd3; @@ -203612,7 +203881,6 @@ self: { homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spy" = callPackage @@ -203639,7 +203907,6 @@ self: { homepage = "https://bitbucket.org/ssaasen/spy"; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple" = callPackage @@ -203658,7 +203925,6 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-mysql" = callPackage @@ -203676,7 +203942,6 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -203695,7 +203960,6 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-postgresql" = callPackage @@ -203713,7 +203977,6 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-sqlite" = callPackage @@ -203727,7 +203990,6 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "sqlite backend for sql-simple"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-words" = callPackage @@ -203818,7 +204080,6 @@ self: { homepage = "https://github.com/tolysz/sqlite-simple-typed"; description = "Typed extension to sqlite simple"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sqlvalue-list" = callPackage @@ -203852,7 +204113,6 @@ self: { homepage = "http://functionalley.eu/Squeeze/squeeze.html"; description = "A file-packing application"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sr-extra" = callPackage @@ -203863,8 +204123,8 @@ self: { }: mkDerivation { pname = "sr-extra"; - version = "1.46.3.1"; - sha256 = "599311f07ae0636aa1ee5fa8e62159bea3f36a30b26882d6efcc4f50a0d9596b"; + version = "1.46.3.2"; + sha256 = "177c438280cf9131fd16a2d60bac55ae285f6db05a2651a3bed52a80aec16523"; libraryHaskellDepends = [ base bytestring bzlib containers directory filepath HUnit mtl network-uri old-locale old-time pretty process pureMD5 QuickCheck @@ -203891,7 +204151,6 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "srcloc_0_4_1" = callPackage @@ -203987,10 +204246,10 @@ self: { template-haskell th-lift-instances ]; jailbreak = true; + doCheck = false; homepage = "http://hub.darcs.net/ganesh/ssh"; description = "A pure-Haskell SSH server library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sshd-lint" = callPackage @@ -204061,7 +204320,6 @@ self: { homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sstable" = callPackage @@ -204080,7 +204338,6 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ssv" = callPackage @@ -204105,6 +204362,7 @@ self: { version = "0.1.0.0"; sha256 = "410f316118037f3fed6dcd58c667b5ad278f4e5bac6053c6366d8b59a9209d93"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "http://hub.darcs.net/jmcarthur/stable-heap"; description = "Purely functional stable heaps (fair priority queues)"; license = stdenv.lib.licenses.mit; @@ -204130,6 +204388,7 @@ self: { version = "0.1.1.0"; sha256 = "12da2128ef67c7f30e9bf1fef0ccffc323bbdfc0699126945c422a52a25d09b2"; libraryHaskellDepends = [ base ghc-prim ]; + jailbreak = true; homepage = "http://github.com/cutsea110/stable-marriage"; description = "algorithms around stable marriage"; license = stdenv.lib.licenses.bsd3; @@ -204142,6 +204401,7 @@ self: { version = "0.3.1"; sha256 = "fd8ddc1d5a6200b8cfb192195d0f078545d85088bd6f04aa3f76b310063a65e7"; libraryHaskellDepends = [ base ghc-prim hashtables ]; + jailbreak = true; description = "Memoization based on argument identity"; license = stdenv.lib.licenses.mit; }) {}; @@ -204170,7 +204430,6 @@ self: { homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack_0_1_3_0" = callPackage @@ -204901,8 +205160,8 @@ self: { pname = "stack"; version = "1.1.2"; sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625"; - revision = "2"; - editedCabalFile = "dd075d659ecf05d8d9e811d12b60b523d189b6b1d520aa1a86e58b382aba6384"; + revision = "3"; + editedCabalFile = "01932244b4a48d7391022b4ffd75d0ab3ab6142d039ea415c668d8694efd6828"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -204933,6 +205192,7 @@ self: { http-conduit monad-logger path path-io process QuickCheck resourcet retry temporary text transformers unix-compat ]; + jailbreak = true; doCheck = false; preCheck = "export HOME=$TMPDIR"; postInstall = '' @@ -204970,7 +205230,6 @@ self: { homepage = "http://github.com/rubik/stack-hpc-coveralls"; description = "Initial project template from stack"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-prism" = callPackage @@ -204988,7 +205247,6 @@ self: { homepage = "https://github.com/MedeaMelana/stack-prism"; description = "Stack prisms"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-run" = callPackage @@ -205897,6 +206155,7 @@ self: { version = "0.0.0.1"; sha256 = "657bcd87ed4ffdf49461529faf3c292a8a480fce8c88c5af1eaa23b1c7e9d765"; libraryHaskellDepends = [ base mtl template-haskell ]; + jailbreak = true; homepage = "https://github.com/HaskellZhangSong/TopdownDerive"; description = "This package will derive class instance along the data type declaration tree"; license = stdenv.lib.licenses.mit; @@ -205974,7 +206233,6 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stash" = callPackage @@ -206037,25 +206295,28 @@ self: { sha256 = "77f9c3bd7cf0fc433f2ba9f70481f6748a18151891ee5af9a4af5b0d06d4bf44"; libraryHaskellDepends = [ base mtl transformers ]; testHaskellDepends = [ base free hspec mtl QuickCheck ]; + jailbreak = true; + description = "A faster variant of the RWS monad transformers"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stateWriter_0_2_7" = callPackage + ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers + }: + mkDerivation { + pname = "stateWriter"; + version = "0.2.7"; + sha256 = "b8c23d83157fef157c44e46190267c5a16e9e6b479066abc1219708726c24da8"; + libraryHaskellDepends = [ base mtl transformers ]; + testHaskellDepends = [ base free hspec mtl QuickCheck ]; + jailbreak = true; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stateWriter" = callPackage - ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers - }: - mkDerivation { - pname = "stateWriter"; - version = "0.2.7"; - sha256 = "b8c23d83157fef157c44e46190267c5a16e9e6b479066abc1219708726c24da8"; - libraryHaskellDepends = [ base mtl transformers ]; - testHaskellDepends = [ base free hspec mtl QuickCheck ]; - description = "A faster variant of the RWS monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "stateWriter_0_2_8" = callPackage ({ mkDerivation, base, free, hspec, mtl, QuickCheck, transformers }: mkDerivation { @@ -206066,7 +206327,6 @@ self: { testHaskellDepends = [ base free hspec mtl QuickCheck ]; description = "A faster variant of the RWS monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statechart" = callPackage @@ -206092,7 +206352,6 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stateref" = callPackage @@ -206129,6 +206388,7 @@ self: { libraryHaskellDepends = [ base mtl transformers transformers-compat ]; + jailbreak = true; description = "Simple State-like monad transformer with saveable and restorable state"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -206175,7 +206435,6 @@ self: { homepage = "http://github.com/brendanhay/statgrab"; description = "Collect system level metrics and statistics"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {statgrab = null;}; "static-canvas" = callPackage @@ -206185,6 +206444,7 @@ self: { version = "0.2.0.2"; sha256 = "cec96c54089904e44d2909501da413ee1528f53ab770cae5d2d44bca41e8f0d2"; libraryHaskellDepends = [ base double-conversion free mtl text ]; + jailbreak = true; homepage = "https://github.com/jeffreyrosenbluth/static-canvas"; description = "DSL to generate HTML5 Canvas javascript"; license = stdenv.lib.licenses.bsd3; @@ -206279,6 +206539,7 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector vector-algorithms ]; + doHaddock = false; doCheck = false; homepage = "https://github.com/bos/statistics"; description = "A library of statistical types, data, and functions"; @@ -206298,7 +206559,6 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-fusion" = callPackage @@ -206311,7 +206571,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/statistics-fusion"; description = "An implementation of high performance, minimal statistics functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -206392,6 +206651,7 @@ self: { base byteable bytestring crypto-api cryptohash digest-pure DRBG network network-uri old-time random time-units ]; + jailbreak = true; homepage = "https://github.com/keithduncan/statsd-client"; description = "Statsd UDP client"; license = stdenv.lib.licenses.mit; @@ -206446,7 +206706,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stdata" = callPackage @@ -206512,6 +206771,7 @@ self: { executableHaskellDepends = [ ansi-terminal base filepath fsnotify process regex-tdfa time unix ]; + jailbreak = true; homepage = "https://github.com/schell/steeloverseer"; description = "A file watcher"; license = stdenv.lib.licenses.bsd3; @@ -206539,10 +206799,10 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck QuickCheck ]; + jailbreak = true; homepage = "https://github.com/jonpetterbergman/step-function"; description = "Step functions, staircase functions or piecewise constant functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stepwise" = callPackage @@ -206554,7 +206814,6 @@ self: { libraryHaskellDepends = [ base containers mtl ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stickyKeysHotKey" = callPackage @@ -206577,6 +206836,7 @@ self: { sha256 = "1f27e9ff43da60dd67fe33c7ea927df09c9bfa7968aac0b06f07417eb8cf858e"; libraryHaskellDepends = [ base containers text transformers ]; testHaskellDepends = [ base Cabal hspec text ]; + jailbreak = true; description = "lightweight CSS DSL"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -206601,6 +206861,7 @@ self: { version = "2.4.4"; sha256 = "5dfb588a01b46f427b16a92d6b7843ac81489639bbdfd962e5795c19dbfe883d"; libraryHaskellDepends = [ array base ]; + jailbreak = true; description = "Software Transactional Memory"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -206677,7 +206938,6 @@ self: { homepage = "http://github.com/kholdstare/stm-chunked-queues/"; description = "Chunked Communication Queues"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-conduit_2_5_2" = callPackage @@ -206701,6 +206961,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -206728,6 +206989,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -206755,6 +207017,7 @@ self: { test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -206784,6 +207047,7 @@ self: { test-framework-quickcheck2 transformers ]; doHaddock = false; + jailbreak = true; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -206812,6 +207076,7 @@ self: { resourcet stm stm-chans test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/wowus/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -206840,6 +207105,7 @@ self: { resourcet stm stm-chans test-framework test-framework-hunit test-framework-quickcheck2 transformers ]; + jailbreak = true; homepage = "https://github.com/cgaebel/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; @@ -207003,7 +207269,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-containers" = callPackage + "stm-containers_0_2_11" = callPackage ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive , QuickCheck, transformers, unordered-containers @@ -207026,9 +207292,10 @@ self: { homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-containers_0_2_13" = callPackage + "stm-containers" = callPackage ({ mkDerivation, base, base-prelude, focus, free, hashable, HTF , list-t, loch-th, mtl, mtl-prelude, placeholders, primitive , QuickCheck, transformers, unordered-containers @@ -207045,10 +207312,10 @@ self: { mtl-prelude placeholders primitive QuickCheck transformers unordered-containers ]; + doCheck = false; homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-delay" = callPackage @@ -207104,6 +207371,7 @@ self: { revision = "1"; editedCabalFile = "d313721a31d8e7ccc725c3a1542f4ac3f8c84fbcad10094cd1067c133edc6c54"; libraryHaskellDepends = [ base stm transformers ]; + jailbreak = true; description = "Software Transactional Memory lifted to MonadIO"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -207213,7 +207481,6 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; description = "Control communication among retrying transactions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stomp-conduit" = callPackage @@ -207293,7 +207560,6 @@ self: { homepage = "https://github.com/debug-ito/stopwatch"; description = "A simple stopwatch utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "storable" = callPackage @@ -207370,7 +207636,6 @@ self: { jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storable-tuple" = callPackage @@ -207405,7 +207670,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-carray" = callPackage @@ -207418,7 +207682,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and carray"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "storablevector-streamfusion" = callPackage @@ -207441,7 +207704,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "store" = callPackage @@ -207457,6 +207719,8 @@ self: { pname = "store"; version = "0.1.0.1"; sha256 = "2f7bae795eec86374f1d55edfd9705beb493399a4f85979eec7a366b5ab2bfa2"; + revision = "2"; + editedCabalFile = "ffcdc632ec158cac194edfc06955b55ae02ebef6768b645a8b7c5a3d4264f1fa"; libraryHaskellDepends = [ array base base-orphans bytestring conduit containers cryptohash deepseq fail ghc-prim hashable hspec hspec-smallcheck integer-gmp @@ -207523,7 +207787,6 @@ self: { homepage = "https://github.com/frontrowed/stratosphere#readme"; description = "EDSL for AWS CloudFormation"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stratum-tool" = callPackage @@ -207544,7 +207807,42 @@ self: { ]; description = "Client for Stratum protocol"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stratux" = callPackage + ({ mkDerivation, base, directory, doctest, filepath, QuickCheck + , stratux-types, template-haskell + }: + mkDerivation { + pname = "stratux"; + version = "0.0.2"; + sha256 = "c752e50abd67ccaefc4833129bf2f8c1c6a6830fae1c4f8e2627f6ffd85edcde"; + libraryHaskellDepends = [ base stratux-types ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/stratux"; + description = "A library for stratux"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "stratux-types" = callPackage + ({ mkDerivation, aeson, base, bytestring, directory, doctest + , filepath, lens, QuickCheck, scientific, template-haskell, time + }: + mkDerivation { + pname = "stratux-types"; + version = "0.0.1"; + sha256 = "05dff9016499b82b42cef816fe0fefa63be1f5a51a118b389eb0088054b2c941"; + libraryHaskellDepends = [ + aeson base bytestring lens scientific time + ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/stratux-types"; + description = "A library for stratux"; + license = stdenv.lib.licenses.bsd3; }) {}; "stream" = callPackage @@ -207562,7 +207860,6 @@ self: { homepage = "https://github.com/githubuser/stream#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-fusion" = callPackage @@ -207575,7 +207872,6 @@ self: { homepage = "http://hackage.haskell.org/trac/ghc/ticket/915"; description = "Faster Haskell lists using stream fusion"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stream-monad" = callPackage @@ -207611,7 +207907,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "streaming_0_1_4_0" = callPackage @@ -207626,6 +207921,7 @@ self: { base bytestring containers exceptions mmorph mtl resourcet time transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming"; description = "an elementary streaming prelude and general stream type"; license = stdenv.lib.licenses.bsd3; @@ -207644,6 +207940,7 @@ self: { base exceptions ghc-prim mmorph mtl resourcet time transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming"; description = "an elementary streaming prelude and general stream type"; license = stdenv.lib.licenses.bsd3; @@ -207661,6 +207958,7 @@ self: { base bytestring deepseq exceptions mmorph mtl resourcet streaming transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; @@ -207679,6 +207977,7 @@ self: { base bytestring deepseq exceptions mmorph mtl resourcet streaming transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; @@ -207697,6 +207996,7 @@ self: { base bytestring deepseq exceptions mmorph mtl resourcet streaming transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; @@ -208131,7 +208431,6 @@ self: { homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "streaming-wai" = callPackage @@ -208194,6 +208493,7 @@ self: { libraryHaskellDepends = [ adjunctions base comonad distributive semigroupoids semigroups ]; + jailbreak = true; homepage = "http://github.com/ekmett/streams/issues"; description = "Various Haskell 2010 stream comonads"; license = stdenv.lib.licenses.bsd3; @@ -208259,7 +208559,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/strict-concurrency"; description = "Strict concurrency abstractions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "strict-ghc-plugin" = callPackage @@ -208455,6 +208754,7 @@ self: { libraryHaskellDepends = [ base template-haskell type-combinators type-combinators-quote ]; + jailbreak = true; homepage = "https://github.com/kylcarte/string-typelits"; description = "Type-level Chars and Strings, with decidable equality"; license = stdenv.lib.licenses.bsd3; @@ -208500,7 +208800,6 @@ self: { homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stringprep" = callPackage @@ -208637,6 +208936,7 @@ self: { aeson base bytestring mtl text time transformers unordered-containers ]; + jailbreak = true; homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; @@ -208721,6 +209021,7 @@ self: { http-types template-haskell text time transformers ]; testHaskellDepends = [ base bytestring markdown-unlit time ]; + jailbreak = true; homepage = "https://github.com/tfausak/strive#readme"; description = "A client for the Strava V3 API"; license = stdenv.lib.licenses.mit; @@ -208824,7 +209125,6 @@ self: { jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "structures" = callPackage @@ -208853,7 +209153,6 @@ self: { homepage = "http://github.com/ekmett/structures"; description = "\"Advanced\" Data Structures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stunclient" = callPackage @@ -208897,7 +209196,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylish-haskell_0_5_11_0" = callPackage @@ -209297,7 +209595,6 @@ self: { ]; description = "Get the total, put a single element"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subhask" = callPackage @@ -209324,7 +209621,6 @@ self: { homepage = "http://github.com/mikeizbicki/subhask"; description = "Type safe interface for programming in subcategories of Hask"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -209347,7 +209643,6 @@ self: { jailbreak = true; description = "Toolchain of subleq computer"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subnet" = callPackage @@ -209411,6 +209706,7 @@ self: { libraryHaskellDepends = [ base monad-control mtl transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/success"; description = "A version of Either specialised for encoding of success or failure"; license = stdenv.lib.licenses.mit; @@ -209430,6 +209726,7 @@ self: { libraryHaskellDepends = [ base monad-control mtl transformers transformers-base ]; + jailbreak = true; homepage = "https://github.com/nikita-volkov/success"; description = "A version of Either specialised for encoding of success or failure"; license = stdenv.lib.licenses.mit; @@ -209503,7 +209800,6 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sump" = callPackage @@ -209518,6 +209814,7 @@ self: { base bytestring data-default either lens serialport transformers vector ]; + jailbreak = true; homepage = "http://github.com/bgamari/sump"; description = "A Haskell interface to SUMP-compatible logic analyzers"; license = stdenv.lib.licenses.bsd3; @@ -209551,7 +209848,6 @@ self: { homepage = "http://www.github.com/massysett/sunlight"; description = "Test Cabalized package against multiple dependency versions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-compiler" = callPackage @@ -209571,7 +209867,6 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-compiler"; description = "Monadic Javascript Compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-examples" = callPackage @@ -209594,7 +209889,6 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -209618,7 +209912,6 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -209647,7 +209940,6 @@ self: { jailbreak = true; description = "Configure your dotfile deployment with a DSL"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supercollider-ht" = callPackage @@ -209663,6 +209955,7 @@ self: { libraryHaskellDepends = [ base hosc hsc3 opensoundcontrol-ht process random transformers ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell SuperCollider utilities"; license = "GPL"; @@ -209690,7 +209983,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "superdoc" = callPackage @@ -209707,10 +209999,10 @@ 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supero" = callPackage @@ -209731,7 +210023,6 @@ self: { homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supervisor" = callPackage @@ -209746,7 +210037,6 @@ self: { homepage = "http://github.com/agocorona/supervisor"; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "supplemented" = callPackage @@ -209847,6 +210137,7 @@ self: { attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml ]; + jailbreak = true; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -209865,6 +210156,7 @@ self: { attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml ]; + jailbreak = true; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -209883,6 +210175,7 @@ self: { attoparsec base bytestring containers JuicyPixels lens linear mtl scientific text transformers vector xml ]; + jailbreak = true; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -209904,7 +210197,6 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -209921,7 +210213,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the libsvg-cairo library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) librsvg;}; "svgutils" = callPackage @@ -209980,7 +210271,6 @@ self: { homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svndump" = callPackage @@ -210000,7 +210290,6 @@ self: { homepage = "http://github.com/jwiegley/svndump/"; description = "Library for reading Subversion dump files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swagger" = callPackage @@ -210015,6 +210304,7 @@ self: { aeson base bytestring text time transformers ]; testHaskellDepends = [ aeson base bytestring tasty tasty-hunit ]; + doCheck = false; description = "Implementation of swagger data model"; license = "unknown"; }) {}; @@ -210038,6 +210328,7 @@ self: { aeson aeson-qq base containers doctest Glob hspec HUnit lens QuickCheck text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; @@ -210063,6 +210354,7 @@ self: { aeson aeson-qq base containers doctest Glob hspec HUnit lens QuickCheck text unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; @@ -210089,10 +210381,10 @@ self: { hspec HUnit lens mtl QuickCheck text time unordered-containers vector ]; + doHaddock = false; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "swapper" = callPackage @@ -210111,7 +210403,6 @@ self: { homepage = "http://github.com/roman-smrz/swapper/"; description = "Transparently swapping data from in-memory structures to disk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swearjure" = callPackage @@ -210133,7 +210424,6 @@ self: { homepage = "http://www.swearjure.com"; description = "Clojure without alphanumerics"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swf" = callPackage @@ -210146,7 +210436,6 @@ self: { homepage = "http://www.n-heptane.com/nhlab"; description = "A library for creating Shockwave Flash (SWF) files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swift-lda" = callPackage @@ -210163,7 +210452,6 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Online sampler for Latent Dirichlet Allocation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "swish" = callPackage @@ -210213,7 +210501,6 @@ self: { jailbreak = true; description = "A simple web server for serving directories, similar to weborf"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb_0_4_2" = callPackage @@ -210293,11 +210580,13 @@ self: { pname = "syb-extras"; version = "0.3"; sha256 = "a90b1ccb9909a42568ac5cf002a757eb40854d281b8acbb62df6b8e0e61926d0"; + revision = "2"; + editedCabalFile = "a3be638f7ecf54a9b42e0f51cffaad6a95210a7390344e22847b1863d55913a8"; libraryHaskellDepends = [ base eq prelude-extras ]; + jailbreak = true; homepage = "http://github.com/ekmett/syb-extras/"; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-with-class_0_6_1_5" = callPackage @@ -210330,6 +210619,7 @@ self: { libraryHaskellDepends = [ array base bytestring containers template-haskell ]; + jailbreak = true; description = "Scrap Your Boilerplate With Class"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -210370,7 +210660,6 @@ self: { homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym" = callPackage @@ -210384,7 +210673,6 @@ self: { homepage = "https://github.com/akc/sym"; description = "Permutations, patterns, and statistics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym-plot" = callPackage @@ -210398,7 +210686,6 @@ self: { homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "symbol" = callPackage @@ -210431,7 +210718,6 @@ self: { homepage = "http://github.com/bollu/symengine.hs#readme"; description = "SymEngine symbolic mathematics engine for Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; symengine = null;}; "sync" = callPackage @@ -210443,7 +210729,6 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sync-mht" = callPackage @@ -210476,10 +210761,10 @@ self: { 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" ]; }) {}; "synchronous-channels" = callPackage @@ -210519,7 +210804,6 @@ self: { homepage = "https://github.com/jetho/syncthing-hs"; description = "Haskell bindings for the Syncthing REST API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synt" = callPackage @@ -210556,8 +210840,8 @@ self: { }: mkDerivation { pname = "syntactic"; - version = "3.6"; - sha256 = "a7365712bf0e050505dfa31cce21937865d80df2f5c83767c34c2b0f7469613a"; + version = "3.6.1"; + sha256 = "392cd247b191958cdc4470e79799f923297d73d74ffeb93162a36e4c46b10305"; libraryHaskellDepends = [ base constraints containers data-hash deepseq mtl syb template-haskell tree-view @@ -210569,7 +210853,6 @@ self: { homepage = "https://github.com/emilaxelsson/syntactic"; description = "Generic representation and manipulation of abstract syntax"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "syntactical" = callPackage @@ -210598,7 +210881,6 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -210614,7 +210896,6 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -210633,7 +210914,6 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example-json" = callPackage @@ -210652,7 +210932,6 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-pretty" = callPackage @@ -210667,7 +210946,6 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -210685,7 +210963,6 @@ self: { jailbreak = true; description = "Text and ByteString printers for 'syntax'"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -210701,7 +210978,6 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -210717,7 +210993,6 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -210743,7 +211018,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-alsa" = callPackage @@ -210768,7 +211042,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-core" = callPackage @@ -210793,10 +211066,10 @@ self: { base containers event-list non-empty non-negative numeric-prelude QuickCheck random storable-tuple storablevector utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-dimensional" = callPackage @@ -210815,10 +211088,10 @@ self: { storable-record storablevector synthesizer-core transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-filter" = callPackage @@ -210833,10 +211106,10 @@ self: { base containers numeric-prelude numeric-quest synthesizer-core transformers utility-ht ]; + jailbreak = true; homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Filter networks"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-inference" = callPackage @@ -210887,7 +211160,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -210913,7 +211185,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sys-auth-smbclient" = callPackage @@ -210945,6 +211216,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/NICTA/sys-process"; description = "A replacement for System.Exit and System.Process."; license = stdenv.lib.licenses.bsd3; @@ -210991,6 +211263,7 @@ self: { libraryHaskellDepends = [ base basic-prelude directory system-filepath text ]; + jailbreak = true; homepage = "https://github.com/d12frosted/CanonicalPath"; description = "Abstract data type for canonical paths with pretty operations"; license = stdenv.lib.licenses.mit; @@ -211009,10 +211282,10 @@ self: { base basic-prelude directory system-filepath text ]; testHaskellDepends = [ base basic-prelude chell system-filepath ]; + jailbreak = true; homepage = "https://github.com/d12frosted/CanonicalPath"; description = "Abstract data type for canonical paths with some utilities"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-command" = callPackage @@ -211137,6 +211410,7 @@ self: { base bytestring chell system-filepath temporary text time transformers unix ]; + doCheck = false; homepage = "https://github.com/fpco/haskell-filesystem"; description = "Consistent filesystem interaction across GHC versions (deprecated)"; license = stdenv.lib.licenses.mit; @@ -211283,7 +211557,6 @@ self: { homepage = "http://darcs.imperialviolet.org/system-inotify"; description = "Binding to Linux's inotify interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-lifted" = callPackage @@ -211308,7 +211581,6 @@ self: { homepage = "https://github.com/jcristovao/system-lifted"; description = "Lifted versions of System functions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-posix-redirect" = callPackage @@ -211345,7 +211617,6 @@ self: { homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "system-test" = callPackage @@ -211378,7 +211649,6 @@ self: { homepage = "https://github.com/joeyadams/haskell-system-time-monotonic"; description = "Simple library for using the system's monotonic clock"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "system-util" = callPackage @@ -211539,7 +211809,6 @@ self: { homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "table" = callPackage @@ -211565,8 +211834,8 @@ self: { }: mkDerivation { pname = "table-layout"; - version = "0.6.0.0"; - sha256 = "383291677ebb039ae83bc4deebc39bdb9cec5b910e6ac5053bbeab1abf80d10c"; + version = "0.6.0.1"; + sha256 = "e03658d0a01721794b53d52b4b5997bbf5135cfa0597843f537a229642f5b2de"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -211636,7 +211905,6 @@ self: { homepage = "http://github.com/ekmett/tables/"; description = "In-memory storage with multiple keys using lenses and traversals"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tablestorage" = callPackage @@ -211657,7 +211925,6 @@ self: { homepage = "http://github.com/paf31/tablestorage"; description = "Azure Table Storage REST API Wrapper"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabloid" = callPackage @@ -211676,7 +211943,6 @@ self: { ]; description = "View the output of shell commands in a table"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabular_0_2_2_5" = callPackage @@ -211735,7 +212001,6 @@ self: { homepage = "http://github.com/travitch/taffybar"; description = "A desktop bar similar to xmobar, but with more GUI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tag-bits" = callPackage @@ -211808,6 +212073,7 @@ self: { version = "0.8.1"; sha256 = "5bdd98389fcca3aa9c9902d1fb209fd431685ba6530f3051ebe1960fe1c782c1"; libraryHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/ekmett/tagged"; description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; license = stdenv.lib.licenses.bsd3; @@ -211895,7 +212161,6 @@ self: { jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-th" = callPackage @@ -211910,7 +212175,6 @@ self: { jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagged-timers" = callPackage @@ -211922,6 +212186,7 @@ self: { libraryHaskellDepends = [ base time transformers unordered-containers ]; + jailbreak = true; homepage = "http://github.com/ucsd-progsys/tagged-timers"; description = "Simple wrappers for timing IO actions (single-threaded)"; license = stdenv.lib.licenses.mit; @@ -212188,7 +212453,6 @@ self: { homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagsoup-parsec" = callPackage @@ -212201,7 +212465,6 @@ self: { homepage = "http://www.killersmurf.com"; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tagstream-conduit" = callPackage @@ -212273,7 +212536,6 @@ self: { homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {clntsh = null; sqlplus = null;}; "tamarin-prover" = callPackage @@ -212304,7 +212566,6 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-term" = callPackage @@ -212325,7 +212586,6 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-theory" = callPackage @@ -212349,7 +212609,6 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamarin-prover-utils" = callPackage @@ -212369,7 +212628,6 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tamper" = callPackage @@ -212522,6 +212780,7 @@ self: { array base bytestring bytestring-handle containers deepseq directory filepath QuickCheck tasty tasty-quickcheck time ]; + doCheck = false; description = "Reading, writing and manipulating \".tar\" archive files."; license = stdenv.lib.licenses.bsd3; }) {}; @@ -212580,7 +212839,6 @@ self: { testSystemDepends = [ z3 ]; description = "Generate test-suites from refinement types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "task" = callPackage @@ -212601,7 +212859,6 @@ self: { jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "task-distribution" = callPackage @@ -212639,7 +212896,6 @@ self: { homepage = "http://github.com/michaxm/task-distribution#readme"; description = "Distributed processing of changing tasks"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "taskpool" = callPackage @@ -212658,7 +212914,6 @@ self: { ]; description = "Manage pools of possibly interdependent tasks using STM and async"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tasty_0_10_1" = callPackage @@ -212676,6 +212931,7 @@ self: { ansi-terminal async base containers deepseq mtl optparse-applicative regex-tdfa-rc stm tagged time unbounded-delays ]; + jailbreak = true; homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; @@ -212697,6 +212953,7 @@ self: { ansi-terminal async base containers deepseq mtl optparse-applicative regex-tdfa-rc stm tagged time unbounded-delays ]; + jailbreak = true; homepage = "http://documentup.com/feuerbach/tasty"; description = "Modern and extensible testing framework"; license = stdenv.lib.licenses.mit; @@ -212809,7 +213066,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tasty-dejafu" = callPackage + "tasty-dejafu_0_3_0_0" = callPackage ({ mkDerivation, base, dejafu, tagged, tasty }: mkDerivation { pname = "tasty-dejafu"; @@ -212819,6 +213076,19 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "Deja Fu support for the Tasty test framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-dejafu" = callPackage + ({ mkDerivation, base, dejafu, tagged, tasty }: + mkDerivation { + pname = "tasty-dejafu"; + version = "0.3.0.1"; + sha256 = "9794201798e3afdfd84f22a6bd89fd869db3105ec33d406d6d4df742d5d0b683"; + libraryHaskellDepends = [ base dejafu tagged tasty ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Deja Fu support for the Tasty test framework"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-expected-failure" = callPackage @@ -212828,6 +213098,7 @@ self: { version = "0.11.0.3"; sha256 = "534b9bcbf945ec280c68c4776563c797ef03c3fdeb2703269d88f2c7fde22225"; libraryHaskellDepends = [ base tagged tasty ]; + jailbreak = true; homepage = "http://github.com/nomeata/tasty-expected-failure"; description = "Mark tasty tests as failure expected"; license = stdenv.lib.licenses.mit; @@ -212953,7 +213224,6 @@ self: { ]; description = "Tasty Tests for groundhog converters"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-hspec_1_1" = callPackage @@ -213105,7 +213375,6 @@ self: { jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-kat_0_0_1" = callPackage @@ -213158,10 +213427,10 @@ self: { tasty-smallcheck ]; testHaskellDepends = [ base smallcheck smallcheck-laws tasty ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/tasty-laws"; description = "Test common laws"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-lens" = callPackage @@ -213176,6 +213445,7 @@ self: { base lens smallcheck smallcheck-lens tasty tasty-smallcheck ]; testHaskellDepends = [ base lens tasty ]; + jailbreak = true; homepage = "https://github.com/jdnavarro/tasty-lens"; description = "Tasty TestTrees for Lens validation"; license = stdenv.lib.licenses.bsd3; @@ -213191,6 +213461,7 @@ self: { 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; @@ -213259,6 +213530,7 @@ self: { tasty transformers ]; doHaddock = false; + jailbreak = true; 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; @@ -213375,6 +213647,7 @@ self: { testHaskellDepends = [ base directory tasty tasty-golden tasty-hunit ]; + jailbreak = true; homepage = "https://github.com/michaelxavier/tasty-tap"; description = "TAP (Test Anything Protocol) Version 13 formatter for tasty"; license = stdenv.lib.licenses.mit; @@ -213453,7 +213726,6 @@ self: { homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tcache-AWS" = callPackage @@ -213487,7 +213759,6 @@ self: { homepage = "http://bitcheese.net/wiki/code/tccli"; description = "TokyoCabinet CLI interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tce-conf" = callPackage @@ -213524,7 +213795,6 @@ self: { homepage = "http://www.cl.cam.ac.uk/~pes20/Netsem/"; description = "A purely functional TCP implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdd-util" = callPackage @@ -213552,7 +213822,6 @@ self: { ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tdoc" = callPackage @@ -213580,7 +213849,6 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "teeth" = callPackage @@ -213612,7 +213880,6 @@ self: { jailbreak = true; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "telegram-api" = callPackage @@ -213639,7 +213906,6 @@ 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; }) {}; "teleport" = callPackage @@ -213700,6 +213966,29 @@ 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tellbot_0_6_0_12" = callPackage + ({ mkDerivation, base, bifunctors, bytestring, containers + , http-conduit, mtl, network, regex-pcre, split, tagsoup, text + , time, transformers + }: + mkDerivation { + pname = "tellbot"; + version = "0.6.0.12"; + sha256 = "a4e05148a628e813d677c960eb22616f13306ff1e1025eb503b1a4b94f6bc218"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + 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; @@ -213713,8 +214002,8 @@ self: { }: mkDerivation { pname = "tellbot"; - version = "0.6.0.12"; - sha256 = "a4e05148a628e813d677c960eb22616f13306ff1e1025eb503b1a4b94f6bc218"; + version = "0.6.1"; + sha256 = "4b7e83cc0a9f6cc175d8a4aedb91c3c052809c27f203f46ea1ea9d27e9a099e6"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -213748,7 +214037,6 @@ self: { homepage = "https://github.com/haskell-pkg-janitors/template-default"; description = "declaring Default instances just got even easier"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-haskell_2_11_0_0" = callPackage @@ -213775,7 +214063,6 @@ self: { homepage = "https://github.com/HaskellZhangSong/TemplateHaskellUtils"; description = "Some utilities for template Haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-hsml" = callPackage @@ -213797,7 +214084,6 @@ self: { jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-yj" = callPackage @@ -213811,7 +214097,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/template/wiki"; description = "Process template file"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "templatepg" = callPackage @@ -213827,6 +214112,7 @@ self: { base binary bytestring haskell-src-meta mtl network parsec regex-compat regex-posix template-haskell time utf8-string ]; + jailbreak = true; homepage = "https://github.com/jekor/templatepg"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.mit; @@ -213888,7 +214174,6 @@ self: { homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "temporal-csound" = callPackage @@ -214051,7 +214336,6 @@ self: { jailbreak = true; description = "Interpreter for the FRP language Tempus"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tempus-fugit" = callPackage @@ -214081,7 +214365,6 @@ self: { homepage = "http://noaxiom.org/tensor"; description = "A completely type-safe library for linear algebra"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "term-rewriting" = callPackage @@ -214101,7 +214384,6 @@ self: { homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "termbox-bindings" = callPackage @@ -214115,10 +214397,10 @@ self: { libraryHaskellDepends = [ base ]; libraryToolDepends = [ c2hs ]; executableHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/luciferous/termbox-bindings"; description = "Bindings to the Termbox library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terminal-progress-bar" = callPackage @@ -214200,6 +214482,7 @@ self: { sha256 = "a304011656f2f6fbc9a965fdcf6fc8592119b655c3ba138492c84c3cc3bb5ae3"; libraryHaskellDepends = [ base ]; librarySystemDepends = [ ncurses ]; + jailbreak = true; homepage = "https://github.com/judah/terminfo"; description = "Haskell bindings to the terminfo library"; license = stdenv.lib.licenses.bsd3; @@ -214271,7 +214554,6 @@ self: { ]; description = "a ternary library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "terrahs" = callPackage @@ -214286,7 +214568,6 @@ self: { homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -214355,6 +214636,7 @@ self: { ansi-terminal ansi-wl-pprint base containers hostname old-locale random regex-posix time xml ]; + jailbreak = true; homepage = "https://batterseapower.github.io/test-framework/"; description = "Framework for running and organising tests, with HUnit and QuickCheck support"; license = stdenv.lib.licenses.bsd3; @@ -214397,7 +214679,6 @@ self: { jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-golden" = callPackage @@ -214476,7 +214757,6 @@ self: { homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-quickcheck2" = callPackage @@ -214645,6 +214925,7 @@ self: { hspec-expectations-lifted mtl process QuickCheck regex-posix template-haskell text transformers transformers-compat unix ]; + jailbreak = true; homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; @@ -214752,7 +215033,6 @@ self: { jailbreak = true; description = "Small test package"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testbench" = callPackage @@ -214787,6 +215067,7 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck tagshare template-haskell ]; + jailbreak = true; description = "Functional Enumeration of Algebraic Types"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -214834,7 +215115,6 @@ self: { homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpack" = callPackage @@ -214853,7 +215133,6 @@ self: { homepage = "https://github.com/jgoerzen/testpack"; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpattern" = callPackage @@ -214868,7 +215147,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/testpattern"; description = "Display a monitor test pattern"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testrunner" = callPackage @@ -214883,7 +215161,6 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tetris" = callPackage @@ -214898,7 +215175,6 @@ self: { homepage = "http://d.hatena.ne.jp/mokehehe/20080921/tetris"; description = "A 2-D clone of Tetris"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tex2txt" = callPackage @@ -214915,7 +215191,6 @@ self: { homepage = "http://textmining.lt/tex2txt/"; description = "LaTeX to plain-text conversion"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texmath_0_8" = callPackage @@ -215247,7 +215522,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath" = callPackage + "texmath_0_8_6_2" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -215269,9 +215544,10 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "texmath_0_8_6_3" = callPackage + "texmath" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , mtl, network-uri, pandoc-types, parsec, process, split, syb , temporary, text, utf8-string, xml @@ -215293,7 +215569,6 @@ self: { homepage = "http://github.com/jgm/texmath"; description = "Conversion between formats used to represent mathematics"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "texrunner" = callPackage @@ -215312,9 +215587,9 @@ self: { testHaskellDepends = [ base bytestring HUnit lens test-framework test-framework-hunit ]; + jailbreak = true; description = "Functions for running Tex from Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text_1_1_1_3" = callPackage @@ -215365,6 +215640,7 @@ self: { QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; @@ -215392,6 +215668,7 @@ self: { integer-simple QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; @@ -215419,6 +215696,7 @@ self: { integer-simple QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; @@ -215446,6 +215724,7 @@ self: { integer-simple QuickCheck quickcheck-unicode random test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/bos/text"; description = "An efficient packed Unicode text type"; @@ -215514,6 +215793,7 @@ self: { base blaze-html bytestring containers markdown text unordered-containers ]; + jailbreak = true; homepage = "https://github.com/andersjel/haskell-text-and-plots"; description = "EDSL to create HTML documents with plots based on the C3.js library."; license = stdenv.lib.licenses.mit; @@ -215553,8 +215833,8 @@ self: { }: mkDerivation { pname = "text-conversions"; - version = "0.1.0"; - sha256 = "a7930b778d757ae771f80d71aebc2112c243a02c87b32a1483d3901a160d506f"; + version = "0.2.0"; + sha256 = "65735a9ad91cf3f7f17f6c91b963018665d356f27e08089e6b18934b45fe49c4"; libraryHaskellDepends = [ base bytestring errors text ]; testHaskellDepends = [ base bytestring hspec hspec-discover text ]; homepage = "https://github.com/cjdev/text-conversions#readme"; @@ -215668,7 +215948,6 @@ self: { homepage = "http://github.com/finnsson/text-json-qq"; description = "Json Quasiquatation for Haskell"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-latin1" = callPackage @@ -215764,7 +216043,6 @@ self: { homepage = "https://github.com/joelteon/text-normal.git"; description = "Unicode-normalized text"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-position" = callPackage @@ -215864,7 +216142,6 @@ self: { homepage = "https://github.com/acfoltzer/text-register-machine"; description = "A Haskell implementation of the 1# Text Register Machine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-render" = callPackage @@ -215874,6 +216151,7 @@ self: { version = "0.1.0.2"; sha256 = "978bc340cba883bfad3300eff67a7fa6689ead23d873ba0d4dd031725bb3cf9d"; libraryHaskellDepends = [ base classy-prelude mtl parsec text ]; + jailbreak = true; homepage = "http://github.com/thinkpad20/text-render"; description = "A type class for rendering objects as text, pretty-printing, etc"; license = stdenv.lib.licenses.mit; @@ -215910,7 +216188,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show" = callPackage + "text-show_2_1_2" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving , ghc-prim, hspec, integer-gmp, nats, QuickCheck @@ -215934,15 +216212,17 @@ self: { quickcheck-instances tagged text transformers transformers-compat void ]; + jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "text-show_3_2_2" = callPackage + "text-show" = callPackage ({ mkDerivation, array, base, base-compat, base-orphans, bifunctors , bytestring, bytestring-builder, containers, generic-deriving - , ghc-prim, hspec, integer-gmp, nats, QuickCheck + , ghc-boot, ghc-prim, hspec, integer-gmp, nats, QuickCheck , quickcheck-instances, semigroups, tagged, template-haskell, text , th-lift, transformers, transformers-compat, void }: @@ -215952,21 +216232,20 @@ self: { sha256 = "93a9479d19f303d4e8310ae8e35a8609d27ef6e443f8a4531c73bd5d1bbd4c40"; libraryHaskellDepends = [ array base base-compat bifunctors bytestring bytestring-builder - containers generic-deriving ghc-prim integer-gmp nats semigroups - tagged template-haskell text th-lift transformers + containers generic-deriving ghc-boot ghc-prim integer-gmp nats + semigroups tagged template-haskell text th-lift transformers transformers-compat void ]; testHaskellDepends = [ array base base-compat base-orphans bifunctors bytestring - bytestring-builder containers generic-deriving ghc-prim hspec - integer-gmp nats QuickCheck quickcheck-instances semigroups tagged - template-haskell text th-lift transformers transformers-compat void + bytestring-builder containers generic-deriving ghc-boot ghc-prim + hspec integer-gmp nats QuickCheck quickcheck-instances semigroups + tagged template-haskell text th-lift transformers + transformers-compat void ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show"; description = "Efficient conversion of values into Text"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-show-instances" = callPackage @@ -215996,11 +216275,9 @@ self: { transformers transformers-compat unix unordered-containers vector xhtml ]; - jailbreak = true; homepage = "https://github.com/RyanGlScott/text-show-instances"; description = "Additional instances for text-show"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-stream-decode" = callPackage @@ -216051,7 +216328,6 @@ self: { homepage = "http://github.com/finnsson/Text.XML.Generic"; description = "Serialize Data to XML (strings)"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -216064,7 +216340,6 @@ self: { homepage = "http://www.github.com/finnsson/text-xml-qq"; description = "Quasiquoter for xml. XML DSL in Haskell."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-zipper_0_3_1" = callPackage @@ -216130,7 +216405,6 @@ self: { homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate"; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textocat-api" = callPackage @@ -216214,7 +216488,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; description = "Template-Haskell code for tfp"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tftp" = callPackage @@ -216241,7 +216514,6 @@ self: { homepage = "http://github.com/sheyll/tftp"; description = "A library for building tftp servers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tga" = callPackage @@ -216271,6 +216543,7 @@ self: { testHaskellDepends = [ base derive tasty tasty-hunit tasty-quickcheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/jkarni/th-alpha"; description = "Alpha equivalence for TH Exp"; license = stdenv.lib.licenses.bsd3; @@ -216325,7 +216598,6 @@ self: { homepage = "https://github.com/seereason/th-context"; description = "Test instance context"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-desugar_1_4_2" = callPackage @@ -216394,6 +216666,7 @@ self: { base containers hspec HUnit mtl syb template-haskell th-lift th-orphans ]; + jailbreak = true; homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; license = stdenv.lib.licenses.bsd3; @@ -216417,6 +216690,7 @@ self: { base containers hspec HUnit mtl syb template-haskell th-lift th-orphans ]; + jailbreak = true; homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; license = stdenv.lib.licenses.bsd3; @@ -216440,13 +216714,14 @@ self: { base containers hspec HUnit mtl syb template-haskell th-lift th-orphans ]; + jailbreak = true; homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-desugar" = callPackage + "th-desugar_1_5_5" = callPackage ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb , template-haskell, th-lift, th-orphans }: @@ -216463,12 +216738,14 @@ self: { base containers hspec HUnit mtl syb template-haskell th-lift th-orphans ]; + jailbreak = true; homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-desugar_1_6" = callPackage + "th-desugar" = callPackage ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb , template-haskell, th-expand-syns, th-lift, th-orphans }: @@ -216487,7 +216764,6 @@ self: { homepage = "http://www.cis.upenn.edu/~eir/packages/th-desugar"; description = "Functions to desugar Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-expand-syns_0_3_0_4" = callPackage @@ -216529,6 +216805,7 @@ self: { sha256 = "d2f4ea032b5cc79591f516cf607a99acb9557f054edb9906a50a4decef481b0f"; libraryHaskellDepends = [ base containers syb template-haskell ]; testHaskellDepends = [ base template-haskell ]; + jailbreak = true; description = "Expands type synonyms in Template Haskell ASTs"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -216555,6 +216832,7 @@ self: { revision = "1"; editedCabalFile = "d9dfbdaeda88312758fd97e43f54d2d83d49039ee1bcfa94e38d87b215dedf67"; libraryHaskellDepends = [ base syb template-haskell ]; + jailbreak = true; homepage = "https://github.com/mokus0/th-extras"; description = "A grab bag of functions for use with Template Haskell"; license = stdenv.lib.licenses.publicDomain; @@ -216640,7 +216918,6 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -216653,7 +216930,6 @@ self: { jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds-fork" = callPackage @@ -216681,6 +216957,7 @@ self: { editedCabalFile = "8c27e18de29621de1588e4c0e6dd5c72c6e1e088fd998d5475458062f607aed5"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/mboes/th-lift"; description = "Derive Template Haskell's Lift class for datatypes"; license = stdenv.lib.licenses.bsd3; @@ -216695,6 +216972,7 @@ self: { sha256 = "755c2477d4f1c77d9da73ef5a824b34b1c382aa98833b64ad7d9255813e8824a"; libraryHaskellDepends = [ base template-haskell ]; testHaskellDepends = [ base template-haskell ]; + jailbreak = true; homepage = "http://github.com/mboes/th-lift"; description = "Derive Template Haskell's Lift class for datatypes"; license = stdenv.lib.licenses.bsd3; @@ -216711,6 +216989,7 @@ self: { editedCabalFile = "89d1cfba7e4a65b09078476bbbd2a0d0e843922ca8d17885fd63d9ace06c25cc"; libraryHaskellDepends = [ base ghc-prim template-haskell ]; testHaskellDepends = [ base ghc-prim template-haskell ]; + jailbreak = true; homepage = "http://github.com/mboes/th-lift"; description = "Derive Template Haskell's Lift class for datatypes"; license = stdenv.lib.licenses.bsd3; @@ -216736,8 +217015,8 @@ self: { }: mkDerivation { pname = "th-lift-instances"; - version = "0.1.7"; - sha256 = "9497a844d352bca5739ac5ce873e501d4cc8abcde54c2d76c2d23263adfb5265"; + version = "0.1.8"; + sha256 = "f80c9b3fe9386aa7ef90c4b404e1099006106710cb9ecc2b87f32483abc5db96"; libraryHaskellDepends = [ base bytestring containers template-haskell text th-lift vector ]; @@ -216820,7 +217099,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-orphans" = callPackage + "th-orphans_0_13_0" = callPackage ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift , th-reify-many }: @@ -216834,9 +217113,10 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Orphan instances for TH datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "th-orphans_0_13_1" = callPackage + "th-orphans" = callPackage ({ mkDerivation, base, hspec, mtl, template-haskell, th-lift , th-lift-instances, th-reify-many }: @@ -216850,7 +217130,6 @@ self: { testHaskellDepends = [ base hspec template-haskell ]; description = "Orphan instances for TH datatypes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-printf" = callPackage @@ -217105,7 +217384,6 @@ self: { jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "these_0_6_2_0" = callPackage @@ -217129,13 +217407,14 @@ self: { base bifunctors containers hashable QuickCheck quickcheck-instances tasty tasty-quickcheck transformers unordered-containers vector ]; + jailbreak = true; homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "these" = callPackage + "these_0_6_2_1" = callPackage ({ mkDerivation, base, bifunctors, containers, data-default-class , hashable, mtl, profunctors, QuickCheck, quickcheck-instances , semigroupoids, semigroups, tasty, tasty-quickcheck, transformers @@ -217159,6 +217438,31 @@ self: { homepage = "https://github.com/isomorphism/these"; description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "these" = callPackage + ({ mkDerivation, base, bifunctors, containers, data-default-class + , hashable, mtl, profunctors, QuickCheck, quickcheck-instances + , semigroupoids, tasty, tasty-quickcheck, transformers + , transformers-compat, unordered-containers, vector + }: + mkDerivation { + pname = "these"; + version = "0.7"; + sha256 = "21959dd626454a9b7f0ac7b57d923802b72d008ca77f752fa8f569698bf6ea10"; + libraryHaskellDepends = [ + base bifunctors containers data-default-class hashable mtl + profunctors semigroupoids transformers transformers-compat + unordered-containers vector + ]; + testHaskellDepends = [ + base bifunctors containers hashable QuickCheck quickcheck-instances + tasty tasty-quickcheck transformers unordered-containers vector + ]; + homepage = "https://github.com/isomorphism/these"; + description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; + license = stdenv.lib.licenses.bsd3; }) {}; "thespian" = callPackage @@ -217197,7 +217501,6 @@ self: { homepage = "http://web.cecs.pdx.edu/~mpj/thih/"; description = "Typing Haskell In Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thimk" = callPackage @@ -217216,7 +217519,6 @@ self: { homepage = "http://wiki.cs.pdx.edu/bartforge/thimk"; description = "Command-line spelling word suggestion tool"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thorn" = callPackage @@ -217370,7 +217672,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ThreadScope"; description = "A graphical tool for profiling parallel Haskell programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "threefish" = callPackage @@ -217408,6 +217709,7 @@ self: { template-haskell text transformers unordered-containers vault vector websockets websockets-snap ]; + jailbreak = true; homepage = "http://wiki.haskell.org/Threepenny-gui"; description = "GUI framework that uses the web browser as a display"; license = stdenv.lib.licenses.bsd3; @@ -217430,7 +217732,6 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "thrist" = callPackage @@ -217556,7 +217857,6 @@ self: { homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tic-tac-toe" = callPackage @@ -217571,7 +217871,6 @@ self: { homepage = "http://ecks.homeunix.net"; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tickle" = callPackage @@ -217593,7 +217892,6 @@ self: { homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "tictactoe3d" = callPackage @@ -217627,7 +217925,6 @@ self: { homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tidal-midi" = callPackage @@ -217646,7 +217943,6 @@ self: { homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tidal-serial" = callPackage @@ -217674,7 +217970,6 @@ self: { homepage = "http://yaxu.org/tidal/"; description = "Visual rendering for Tidal patterns"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tie-knot" = callPackage @@ -217697,6 +217992,7 @@ self: { version = "0.0.1.1"; sha256 = "a8b04eef8e1eca0a496410eb82289345c2060be8726b09f5f4b0242d9ffe4a8e"; libraryHaskellDepends = [ base deepseq time ]; + jailbreak = true; homepage = "http://github.com/HaskVan/tiempo"; description = "Specify time intervals in different units (secs, mins, hours, etc.)"; license = stdenv.lib.licenses.mit; @@ -217717,7 +218013,6 @@ self: { homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Tiger Compiler of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tight-apply" = callPackage @@ -217764,7 +218059,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/tighttp/wiki"; description = "Tiny and Incrementally-Growing HTTP library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tilings" = callPackage @@ -217796,7 +218090,6 @@ self: { homepage = "http://www.timber-lang.org"; description = "The Timber Compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time_1_6_0_1" = callPackage @@ -217812,7 +218105,6 @@ self: { base deepseq QuickCheck test-framework test-framework-quickcheck2 unix ]; - jailbreak = true; homepage = "https://github.com/haskell/time"; description = "A time library"; license = stdenv.lib.licenses.bsd3; @@ -217858,7 +218150,6 @@ self: { homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-exts" = callPackage @@ -217885,7 +218176,6 @@ self: { homepage = "https://github.com/enzoh/time-exts"; description = "Efficient Timestamps"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-http" = callPackage @@ -217911,19 +218201,16 @@ self: { homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-interval" = callPackage ({ mkDerivation, base, time-units }: mkDerivation { pname = "time-interval"; - version = "0.1.0.0"; - sha256 = "6cfb53e61d573d649273ced38f19e9f84279ed826197b47cfab0587aeb85598d"; - revision = "3"; - editedCabalFile = "bb8d2204c5dcdf0a749985524cd52debe95511ad8ed785c6ab6e19e877de46ae"; + version = "0.1.1"; + sha256 = "3473e1c2a35fecee898ed4d7afcc5353e5a663a4a627550ca6f7b624c152fe24"; libraryHaskellDepends = [ base time-units ]; - homepage = "http://rel4tion.org/projects/time-interval/"; + homepage = "http://hub.darcs.net/fr33domlover/time-interval"; description = "Use a time unit class, but hold a concrete time type"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -217990,16 +218277,20 @@ self: { }) {}; "time-out" = callPackage - ({ mkDerivation, base, exceptions, time-units, transformers }: + ({ mkDerivation, base, data-default-class, exceptions + , time-interval, time-units, transformers + }: mkDerivation { pname = "time-out"; - version = "0.1"; - sha256 = "e9eec568ba0e78c8479836c637d053fe1eb8e7df3db3122b4234eae2920f8056"; + version = "0.2"; + sha256 = "2e3a1dcfe8eb6d283de6441894bd4ca2e3b56982f1fe0407b1216f5b2c109fda"; libraryHaskellDepends = [ - base exceptions time-units transformers + base data-default-class exceptions time-interval time-units + transformers ]; + testHaskellDepends = [ base time-units transformers ]; homepage = "http://hub.darcs.net/fr33domlover/time-out"; - description = "Execute a computation with a timeout"; + description = "Timers, timeouts, alarms, monadic wrappers"; license = stdenv.lib.licenses.publicDomain; }) {}; @@ -218018,6 +218309,7 @@ self: { attoparsec base bifunctors parsec parsers tasty tasty-hunit template-haskell text time ]; + jailbreak = true; homepage = "https://github.com/phadej/time-parsers#readme"; description = "Parsers for types in `time`"; license = stdenv.lib.licenses.bsd3; @@ -218051,7 +218343,6 @@ self: { homepage = "https://github.com/christian-marie/time-qq"; description = "Quasi-quoter for UTCTime times"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-recurrence" = callPackage @@ -218067,10 +218358,10 @@ self: { base data-ordlist HUnit mtl old-locale test-framework test-framework-hunit time ]; + jailbreak = true; homepage = "http://github.com/hellertime/time-recurrence"; description = "Generate recurring dates"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-series" = callPackage @@ -218085,7 +218376,6 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-units" = callPackage @@ -218113,7 +218403,6 @@ self: { homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timecalc" = callPackage @@ -218127,7 +218416,6 @@ self: { executableHaskellDepends = [ base haskeline uu-parsinglib ]; homepage = "https://github.com/chriseidhof/TimeCalc"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeconsole" = callPackage @@ -218191,7 +218479,6 @@ self: { homepage = "http://hub.darcs.net/esz/timelike-clock"; description = "Timelike interface for the clock library"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timelike-time" = callPackage @@ -218232,7 +218519,6 @@ self: { ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout" = callPackage @@ -218250,7 +218536,6 @@ self: { homepage = "https://github.com/lambda-llama/timeout"; description = "Generalized sleep and timeout functions"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout-control" = callPackage @@ -218295,7 +218580,6 @@ self: { jailbreak = true; description = "Attoparsec parsers for various Date/Time formats"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeplot" = callPackage @@ -218381,7 +218665,6 @@ self: { homepage = "https://github.com/Peaker/timestamp-subprocess-lines"; description = "Run a command and timestamp its stdout/stderr lines"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timestamper" = callPackage @@ -218429,6 +218712,7 @@ self: { libraryHaskellDepends = [ base binary bytestring extensible-exceptions time timezone-series ]; + jailbreak = true; homepage = "http://projects.haskell.org/time-ng/"; description = "A pure Haskell parser and renderer for binary Olson timezone files"; license = stdenv.lib.licenses.bsd3; @@ -218445,6 +218729,7 @@ self: { libraryHaskellDepends = [ base template-haskell time timezone-olson timezone-series ]; + jailbreak = true; homepage = "http://github.com/jonpetterbergman/timezone-olson-th"; description = "Load TimeZoneSeries from an Olson file at compile time"; license = stdenv.lib.licenses.bsd3; @@ -218471,6 +218756,7 @@ self: { version = "0.1.5.1"; sha256 = "d244dda23a90f019884e6684a6bd7ec43f77875edf382861890ef1c68b2e7a56"; libraryHaskellDepends = [ base time ]; + jailbreak = true; homepage = "http://projects.haskell.org/time-ng/"; description = "Enhanced timezone handling for Data.Time"; license = stdenv.lib.licenses.bsd3; @@ -218578,7 +218864,6 @@ self: { homepage = "http://tip-org.github.io"; description = "Convert from Haskell to Tip"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tip-lib" = callPackage @@ -218637,6 +218922,7 @@ self: { testHaskellDepends = [ base semigroups tasty tasty-hunit tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/nkaretnikov/titlecase"; description = "Convert English words to title case"; license = stdenv.lib.licenses.bsd3; @@ -218659,7 +218945,6 @@ self: { homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tkyprof" = callPackage @@ -218688,7 +218973,6 @@ self: { homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tld" = callPackage @@ -218699,6 +218983,7 @@ self: { sha256 = "feb269cd135796d7a378a01150ca89fdea380e4e7fa67b031b299fcd16acac5e"; libraryHaskellDepends = [ base containers network-uri text ]; testHaskellDepends = [ base HUnit network-uri text ]; + jailbreak = true; description = "This project separates subdomains, domains, and top-level-domains from URLs"; license = stdenv.lib.licenses.mit; }) {}; @@ -219118,7 +219403,6 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tmpl" = callPackage @@ -219185,7 +219469,6 @@ self: { homepage = "https://github.com/conal/to-haskell"; description = "A type class and some utilities for generating Haskell code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-class" = callPackage @@ -219197,7 +219480,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "to-string-instances" = callPackage @@ -219209,7 +219491,6 @@ self: { libraryHaskellDepends = [ to-string-class ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "todos" = callPackage @@ -219236,7 +219517,6 @@ self: { homepage = "http://gitorious.org/todos"; description = "Easy-to-use TODOs manager"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tofromxml" = callPackage @@ -219274,7 +219554,6 @@ self: { homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "token-bucket" = callPackage @@ -219299,6 +219578,7 @@ self: { version = "0.1.2.0"; sha256 = "90655271f5cc70dfdc571815407fbc64973318a5f02f0f0f8f70b590aa0fcebb"; libraryHaskellDepends = [ base containers text ]; + jailbreak = true; homepage = "https://github.com/AKST/tokenify"; description = "A regex lexer"; license = stdenv.lib.licenses.mit; @@ -219332,7 +219612,6 @@ self: { QuickCheck ]; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -219346,7 +219625,6 @@ self: { homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -219361,7 +219639,6 @@ self: { homepage = "http://www.polarmobile.com/"; description = "FFI bindings to libtokyotyrant"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) tokyocabinet; inherit (pkgs) tokyotyrant;}; "tomato-rubato-openal" = callPackage @@ -219374,7 +219651,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "toml" = callPackage @@ -219390,7 +219666,6 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "toolshed" = callPackage @@ -219408,7 +219683,6 @@ self: { homepage = "http://functionalley.eu"; description = "Ill-defined library"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "topkata" = callPackage @@ -219427,7 +219701,6 @@ self: { homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torch" = callPackage @@ -219440,7 +219713,6 @@ self: { homepage = "http://patch-tag.com/repo/torch/home"; description = "Simple unit test library (or framework)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torrent" = callPackage @@ -219489,6 +219761,7 @@ self: { version = "1.0.4"; sha256 = "eadd2440d593a5df926f8ed77c6455c235e25948240d235a0ae7bd6bff15807e"; libraryHaskellDepends = [ base void ]; + jailbreak = true; description = "Exhaustive pattern matching using lenses, traversals, and prisms"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -219543,6 +219816,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base directory process time ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; description = "Library (and cli) to execute a procedure on file change"; license = stdenv.lib.licenses.mit; }) {}; @@ -219588,7 +219862,6 @@ self: { ]; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tpdb" = callPackage @@ -219686,6 +219959,7 @@ self: { libraryHaskellDepends = [ base bifunctors containers json mtl transformers ]; + jailbreak = true; description = "Visualize Haskell data structures as edge-labeled trees"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -219699,7 +219973,6 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tracy_0_1_2_0" = callPackage @@ -219709,6 +219982,7 @@ self: { version = "0.1.2.0"; sha256 = "29e1a75da8bcf1029d6e918f6b681ba401fe41e01d3bace52852d7d35759b431"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -219721,27 +219995,28 @@ self: { version = "0.1.3.0"; sha256 = "9c298b7ff70dd4f5aaf839e7bccbc9810f0235833bb5b723babe0838eac5d301"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Convenience wrappers for non-intrusive debug tracing"; license = stdenv.lib.licenses.mit; }) {}; "traildb" = callPackage - ({ mkDerivation, base, bytestring, cmph, containers, directory + ({ mkDerivation, base, bytestring, containers, directory , exceptions, Judy, lens, primitive, text, time, traildb , transformers, unix, vector }: mkDerivation { pname = "traildb"; - version = "0.1.0.1"; - sha256 = "60945b9b57871c10d25d364c5ae27ba676e4651c785c6ddb8ba79a4c085341c8"; + version = "0.1.0.2"; + sha256 = "d9f92a220123ccf6bc33bd1a70736a2cf9631cae2e3252f39237d9a87b9ffac8"; libraryHaskellDepends = [ base bytestring containers directory exceptions lens primitive text time transformers unix vector ]; - librarySystemDepends = [ cmph Judy traildb ]; + librarySystemDepends = [ Judy traildb ]; description = "TrailDB bindings for Haskell"; license = stdenv.lib.licenses.mit; - }) {Judy = null; cmph = null; traildb = null;}; + }) {Judy = null; traildb = null;}; "trajectory" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, cmdargs @@ -219765,7 +220040,6 @@ self: { homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transactional-events" = callPackage @@ -219780,7 +220054,6 @@ self: { jailbreak = true; description = "Transactional events, based on Concurrent ML semantics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transf" = callPackage @@ -219799,7 +220072,6 @@ self: { ]; description = "Text transformer and interpreter"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformations" = callPackage @@ -219831,6 +220103,7 @@ self: { revision = "1"; editedCabalFile = "60dafcffe8c4fe6f3760426fc35a325c8e6419877596518c76f46657280207a9"; libraryHaskellDepends = [ base ]; + jailbreak = true; description = "Concrete functor and monad transformers"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -219926,7 +220199,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat" = callPackage + "transformers-compat_0_4_0_4" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "transformers-compat"; @@ -219934,12 +220207,14 @@ self: { sha256 = "d5231bc9929ed234032411038c0baae5a3d82939163c2a36582fbe657c46af52"; libraryHaskellDepends = [ base transformers ]; doHaddock = false; + jailbreak = true; homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "transformers-compat_0_5_1_4" = callPackage + "transformers-compat" = callPackage ({ mkDerivation, base, ghc-prim, transformers }: mkDerivation { pname = "transformers-compat"; @@ -219949,7 +220224,6 @@ self: { homepage = "http://github.com/ekmett/transformers-compat/"; description = "A small compatibility shim exposing the new types from transformers 0.3 and 0.4 to older Haskell platforms."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-compose" = callPackage @@ -219983,7 +220257,6 @@ self: { homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-eff" = callPackage @@ -219993,6 +220266,7 @@ self: { version = "0.1.0.0"; sha256 = "577f7ce07459239b1039d9f8c2935c02cc55bc585a5a4d21f5a81ac758f20037"; libraryHaskellDepends = [ base free mmorph pipes transformers ]; + jailbreak = true; homepage = "https://github.com/ocharles/transformers-eff"; description = "An approach to managing composable effects, ala mtl/transformers/extensible-effects/Eff"; license = stdenv.lib.licenses.bsd3; @@ -220016,6 +220290,7 @@ self: { version = "0.1.0.0"; sha256 = "52830bb81f2cf400f4f47990196c1db535a95653607946b6313de4a2d036ad3a"; libraryHaskellDepends = [ base transformers ]; + jailbreak = true; description = "Ad-hoc type classes for lifting"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -220043,7 +220318,6 @@ self: { homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformers-supply" = callPackage @@ -220075,7 +220349,6 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transient-universe" = callPackage @@ -220101,7 +220374,6 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "remote execution and map-reduce: distributed computing for transient"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "translatable-intset" = callPackage @@ -220128,6 +220400,17 @@ self: { homepage = "http://github.com/nfjinjing/translate"; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = stdenv.lib.licenses.bsd3; + }) {}; + + "traverse-with-class_0_2_0_3" = callPackage + ({ mkDerivation, base, template-haskell, transformers }: + mkDerivation { + pname = "traverse-with-class"; + version = "0.2.0.3"; + sha256 = "cfe4dd30867108f04aec32c36b2636cca224eee5331257798836d9c153d0d56a"; + libraryHaskellDepends = [ base template-haskell transformers ]; + description = "Generic applicative traversals"; + license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -220135,8 +220418,8 @@ self: { ({ mkDerivation, base, template-haskell, transformers }: mkDerivation { pname = "traverse-with-class"; - version = "0.2.0.3"; - sha256 = "cfe4dd30867108f04aec32c36b2636cca224eee5331257798836d9c153d0d56a"; + version = "0.2.0.4"; + sha256 = "9d54e9ceac37f1253af616204139d9630ac3b3b5d618bbe03b74db4d7e208772"; libraryHaskellDepends = [ base template-haskell transformers ]; description = "Generic applicative traversals"; license = stdenv.lib.licenses.mit; @@ -220183,6 +220466,7 @@ self: { regex-applicative tasty tasty-quickcheck text unordered-containers yaml ]; + jailbreak = true; homepage = "https://github.com/phadej/travis-meta-yaml#readme"; description = ".travis.yml preprocessor"; license = stdenv.lib.licenses.bsd3; @@ -220221,7 +220505,6 @@ self: { homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tree-fun" = callPackage @@ -220306,6 +220589,7 @@ self: { homepage = "http://sneathlane.com/treersec"; description = "Structure Editing Combinators"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "treeviz" = callPackage @@ -220339,7 +220623,6 @@ self: { ]; description = "Library for polling Tremulous servers"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trhsx" = callPackage @@ -220350,7 +220633,6 @@ self: { sha256 = "631601c5345599e08535221df4415c7676e3e307bfa6a13d32e3c46d9c145d86"; description = "Deprecated"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "triangulation" = callPackage @@ -220367,7 +220649,6 @@ self: { homepage = "http://www.dinkla.net/"; description = "triangulation of polygons"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tries" = callPackage @@ -220418,6 +220699,7 @@ self: { testHaskellDepends = [ base directory doctest filepath parsers QuickCheck ]; + jailbreak = true; homepage = "http://github.com/ekmett/trifecta/"; description = "A modern parser combinator library with convenient diagnostics"; license = stdenv.lib.licenses.bsd3; @@ -220445,6 +220727,7 @@ self: { testHaskellDepends = [ base directory doctest filepath parsers QuickCheck ]; + jailbreak = true; homepage = "http://github.com/ekmett/trifecta/"; description = "A modern parser combinator library with convenient diagnostics"; license = stdenv.lib.licenses.bsd3; @@ -220462,7 +220745,6 @@ self: { jailbreak = true; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tripLL" = callPackage @@ -220476,10 +220758,10 @@ self: { libraryHaskellDepends = [ base bytestring cereal filepath leveldb-haskell ]; + jailbreak = true; homepage = "https://github.com/aphorisme/tripLL"; description = "A very simple triple store"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "trivia" = callPackage @@ -220516,7 +220798,6 @@ self: { jailbreak = true; description = "A library for tropical mathematics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "true-name_0_0_0_2" = callPackage @@ -220633,7 +220914,6 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsession-happstack" = callPackage @@ -220647,7 +220927,6 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tskiplist" = callPackage @@ -220660,7 +220939,6 @@ self: { homepage = "https://github.com/thaldyron/tskiplist"; description = "A Skip List Implementation in Software Transactional Memory (STM)"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tslib" = callPackage @@ -220709,7 +220987,6 @@ self: { homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tsparse" = callPackage @@ -220945,6 +221222,7 @@ self: { optparse-applicative parsec process random split spool template-haskell time vector yaml zlib ]; + jailbreak = true; homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; @@ -220962,7 +221240,6 @@ self: { base comonad contravariant free mtl profunctors semigroups transformers ]; - jailbreak = true; homepage = "https://github.com/gatlin/tubes"; description = "Write stream processing computations with side effects in a series of tubes"; license = stdenv.lib.licenses.gpl3; @@ -220978,7 +221255,6 @@ self: { jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tup-functor" = callPackage @@ -221017,7 +221293,6 @@ self: { jailbreak = true; description = "Enum instances for tuples where the digits increase with the same speed"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-generic" = callPackage @@ -221068,7 +221343,6 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-th" = callPackage @@ -221093,7 +221367,6 @@ self: { homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuples-homogenous-h98" = callPackage @@ -221132,7 +221405,6 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "turingMachine" = callPackage @@ -221142,6 +221414,7 @@ self: { version = "0.1.3.0"; sha256 = "26b255719f25bdf73a0ce45e043b68bd57a4ebd8f582311aa6e0c8e6ec7efafc"; libraryHaskellDepends = [ base containers ]; + jailbreak = true; homepage = "https://github.com/sanjorgek/turingMachine"; description = "An implementation of Turing Machine and Automaton"; license = stdenv.lib.licenses.gpl3; @@ -221341,7 +221614,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "turtle" = callPackage + "turtle_1_2_7" = callPackage ({ mkDerivation, async, base, clock, directory, doctest, foldl , hostname, managed, optional-args, optparse-applicative, process , stm, system-fileio, system-filepath, temporary, text, time @@ -221359,6 +221632,28 @@ self: { temporary text time transformers unix ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; + description = "Shell programming, Haskell-style"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "turtle" = callPackage + ({ mkDerivation, async, base, clock, directory, doctest, foldl + , hostname, managed, optional-args, optparse-applicative, process + , stm, system-fileio, system-filepath, temporary, text, time + , transformers, unix + }: + mkDerivation { + pname = "turtle"; + version = "1.2.8"; + sha256 = "798e4047773877323eb35e610e709db70880d2913ff652ff676a97902a6fbb01"; + libraryHaskellDepends = [ + async base clock directory foldl hostname managed optional-args + optparse-applicative process stm system-fileio system-filepath + temporary text time transformers unix + ]; + testHaskellDepends = [ base doctest ]; description = "Shell programming, Haskell-style"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -221414,7 +221709,6 @@ self: { homepage = "http://github.com/nick8325/twee"; description = "An equational theorem prover"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp" = callPackage @@ -221426,7 +221720,6 @@ self: { libraryHaskellDepends = [ base gloss parsec time ]; description = "Lab Assignments Environment at Univeriteit Twente"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp-eventloop-graphics" = callPackage @@ -221456,7 +221749,6 @@ self: { libraryHaskellDepends = [ base eventloop ]; description = "Tree type and show functions for lab assignment of University of Twente. Contains RoseTree and RedBlackTree"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-graphs" = callPackage @@ -221494,7 +221786,6 @@ self: { jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twentefp-trees" = callPackage @@ -221552,10 +221843,10 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck HUnit-Plus QuickCheck split vector ]; + jailbreak = true; homepage = "https://github.com/lysxia/twentyseven"; description = "Rubik's cube solver"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twhs" = callPackage @@ -221588,7 +221879,6 @@ self: { homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twidge" = callPackage @@ -221611,7 +221901,6 @@ self: { homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilight-stm" = callPackage @@ -221624,7 +221913,6 @@ self: { homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/"; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilio" = callPackage @@ -221637,6 +221925,8 @@ self: { pname = "twilio"; version = "0.1.3.1"; sha256 = "93bba9aa0d6073ec217c55e7331ff8dd8243b508b56ebc170ede0510a9034b6f"; + revision = "1"; + editedCabalFile = "6c4074be99bc331901bef13287b4db00cbeb7cb448e8c75cb1eefc0a6567af81"; libraryHaskellDepends = [ aeson base bifunctors bytestring containers errors exceptions free http-client http-client-tls http-types mtl network-uri old-locale @@ -221651,7 +221941,6 @@ self: { homepage = "https://github.com/markandrus/twilio-haskell"; description = "Twilio REST API library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twill" = callPackage @@ -221671,7 +221960,6 @@ self: { jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twiml" = callPackage @@ -221695,7 +221983,6 @@ self: { homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twine" = callPackage @@ -221712,7 +221999,6 @@ self: { homepage = "http://twine.james-sanders.com"; description = "very simple template language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twisty" = callPackage @@ -221729,7 +222015,6 @@ self: { jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitch" = callPackage @@ -221748,6 +222033,7 @@ self: { base data-default directory filepath fsnotify Glob hspec optparse-applicative time transformers ]; + jailbreak = true; homepage = "https://github.com/jfischoff/twitch"; description = "A high level file watcher DSL"; license = stdenv.lib.licenses.mit; @@ -221768,7 +222054,6 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-conduit_0_1_1_1" = callPackage @@ -221926,7 +222211,6 @@ self: { homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-feed_0_2_0_2" = callPackage @@ -222010,6 +222294,7 @@ self: { testHaskellDepends = [ base containers HUnit test-framework test-framework-hunit ]; + jailbreak = true; homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; @@ -222027,7 +222312,7 @@ self: { version = "0.7.1.1"; sha256 = "677b4273c13540602e7dd6c75736693092287da251d8e4658128666bc148ddf5"; libraryHaskellDepends = [ - aeson base text time unordered-containers + aeson base old-locale text time unordered-containers ]; testHaskellDepends = [ aeson attoparsec base bytestring derive directory filepath HUnit @@ -222035,6 +222320,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -222053,7 +222339,7 @@ self: { version = "0.7.2"; sha256 = "75416feef53d5a41dc246f7e134cae49f198605be9de7698796070256cd0d222"; libraryHaskellDepends = [ - aeson base text time unordered-containers + aeson base old-locale text time unordered-containers ]; testHaskellDepends = [ aeson attoparsec base bytestring derive directory filepath HUnit @@ -222061,6 +222347,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -222079,7 +222366,7 @@ self: { version = "0.7.2.1"; sha256 = "1b3f39c47749af7dac2fed9905c2c6db976577dfbacc68cc3d531da8f367675b"; libraryHaskellDepends = [ - aeson base text time unordered-containers + aeson base old-locale text time unordered-containers ]; testHaskellDepends = [ aeson attoparsec base bytestring derive directory filepath HUnit @@ -222087,6 +222374,7 @@ self: { test-framework-hunit test-framework-quickcheck2 test-framework-th-prime text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; @@ -222140,7 +222428,6 @@ self: { homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -222215,7 +222502,6 @@ self: { homepage = "http://www.decidable.org/haskell/typalyze"; description = "Analyzes Haskell source files for easy reference"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-aligned" = callPackage @@ -222252,6 +222538,7 @@ self: { libraryHaskellDepends = [ base containers lens lens-utils template-haskell ]; + jailbreak = true; homepage = "https://github.com/wdanilo/type-cache"; description = "Utilities for caching type families results. Sometimes complex type families take long time to compile, so it is proficient to cache them and use the final result without the need of re-computation."; license = stdenv.lib.licenses.asl20; @@ -222271,7 +222558,6 @@ self: { ]; description = "Type-level serialization of type constructors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-combinators" = callPackage @@ -222281,6 +222567,7 @@ self: { version = "0.2.2.1"; sha256 = "96e3c4954236120f46fa515c75f33a8b641d5263bc3b4b7dd2055858dfeee966"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/kylcarte/type-combinators"; description = "A collection of data types for type-level programming"; license = stdenv.lib.licenses.bsd3; @@ -222297,6 +222584,7 @@ self: { libraryHaskellDepends = [ base haskell-src-meta template-haskell type-combinators ]; + jailbreak = true; homepage = "https://github.com/kylcarte/type-combinators-quote"; description = "Quasiquoters for the 'type-combinators' package"; license = stdenv.lib.licenses.bsd3; @@ -222311,7 +222599,6 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-eq_0_4_2" = callPackage @@ -222337,6 +222624,7 @@ self: { sha256 = "9fcf4c4f1734b113625f0fd38a239a9637366e176736a4183f22f60e2ccdfa00"; libraryHaskellDepends = [ base ]; libraryToolDepends = [ cpphs ]; + jailbreak = true; homepage = "http://github.com/glaebhoerl/type-eq"; description = "Type equality evidence you can carry around"; license = stdenv.lib.licenses.bsd3; @@ -222364,7 +222652,6 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-fun" = callPackage @@ -222375,6 +222662,7 @@ self: { sha256 = "8ad17ecf12c7034eefe1e22d0cff29a4c52cf9b326dd1ccb2b87d18a6240c101"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/s9gf4ult/type-fun"; description = "Collection of widely reimplemented type families"; license = stdenv.lib.licenses.bsd3; @@ -222414,7 +222702,6 @@ self: { homepage = "http://github.com/ekmett/type-int"; description = "Type Level 2s- and 16s- Complement Integers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-iso" = callPackage @@ -222441,7 +222728,6 @@ self: { homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-bst" = callPackage @@ -222454,7 +222740,6 @@ self: { homepage = "https://github.com/Kinokkory/type-level-bst"; description = "type-level binary search trees in haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-natural-number" = callPackage @@ -222510,8 +222795,8 @@ self: { ({ mkDerivation, base, ghc-prim }: mkDerivation { pname = "type-level-sets"; - version = "0.6.1"; - sha256 = "08bb523150e2ad8fb3028303ac354f2329da220f4b214e7a18ba7731adbbf926"; + version = "0.7"; + sha256 = "c9ef3826a1589d078fa90810b9e640b3f2e16a5a9995ed46be88ef7fde25d67e"; libraryHaskellDepends = [ base ghc-prim ]; description = "Type-level sets and finite maps (with value-level counterparts)"; license = stdenv.lib.licenses.bsd3; @@ -222549,6 +222834,7 @@ self: { version = "0.0.0.1"; sha256 = "a28123d3eb2c9513bb4b010cc5e4e3fd94b07113d06036ea74c1b11c6ce46fd5"; libraryHaskellDepends = [ base singletons ]; + jailbreak = true; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -222574,6 +222860,7 @@ self: { version = "0.3.0.2"; sha256 = "80e7f52a5fb88880be9a166fbe664bda7e9f94d64d70c877471c833567722aee"; libraryHaskellDepends = [ base singletons ]; + jailbreak = true; description = "Operations on type-level lists and tuples"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -222631,7 +222918,6 @@ self: { ]; description = "Type-level comparison operator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-ord-spine-cereal" = callPackage @@ -222647,7 +222933,6 @@ self: { ]; description = "Generic type-level comparison of types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-prelude" = callPackage @@ -222660,7 +222945,6 @@ self: { homepage = "http://code.atnnn.com/projects/type-prelude"; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-settheory" = callPackage @@ -222676,7 +222960,6 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-spine" = callPackage @@ -222688,7 +222971,6 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-structure" = callPackage @@ -222717,7 +222999,6 @@ self: { homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-sub-th" = callPackage @@ -222743,7 +223024,6 @@ self: { homepage = "http://github.com/jfischoff/type-sub-th"; description = "Substitute types for other types with Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-unary" = callPackage @@ -222774,7 +223054,6 @@ self: { homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-spreadsheet" = callPackage @@ -222797,7 +223076,6 @@ self: { jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "typed-wire" = callPackage @@ -222823,7 +223101,6 @@ self: { homepage = "http://github.com/typed-wire/typed-wire#readme"; description = "Language-independent type-safe communication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-wire-utils" = callPackage @@ -222840,7 +223117,6 @@ self: { homepage = "http://github.com/typed-wire/hs-typed-wire-utils#readme"; description = "Haskell utility library required for code generated by typed-wire compiler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typedquery" = callPackage @@ -222858,7 +223134,6 @@ self: { homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typehash" = callPackage @@ -222871,7 +223146,6 @@ self: { jailbreak = true; description = "Create a unique hash value for a type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelevel" = callPackage @@ -222881,6 +223155,7 @@ self: { version = "1.0.4"; sha256 = "1cc8131a6e2cf9c84968980d73a543c7dc73fd6d878973a9f0a5ddaedf471dc2"; libraryHaskellDepends = [ base pretty pretty-show ]; + jailbreak = true; homepage = "https://github.com/wdanilo/typelevel"; description = "Useful type level operations (type families and related operators)"; license = stdenv.lib.licenses.asl20; @@ -222902,7 +223177,6 @@ self: { homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typelits-witnesses_0_1_1_0" = callPackage @@ -222912,6 +223186,7 @@ self: { version = "0.1.1.0"; sha256 = "cdcf6b821063228a27b18b4f3b437db6b21e2241c0136e3aa14643ddafc03c26"; libraryHaskellDepends = [ base constraints reflection ]; + jailbreak = true; homepage = "https://github.com/mstksg/typelits-witnesses"; description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; license = stdenv.lib.licenses.mit; @@ -222992,7 +223267,6 @@ self: { homepage = "http://github.com/mikeizbicki/typeparams/"; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "types-compat" = callPackage @@ -223004,6 +223278,7 @@ self: { revision = "2"; editedCabalFile = "8fbb17ec66d4bf5f2fffdb2327647b44292253822c9623a06b489ff547a71041"; libraryHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/philopon/types-compat"; description = "ghc-7.6/7.8 compatible GHC.TypeLits, Data.Typeable and Data.Proxy."; license = stdenv.lib.licenses.mit; @@ -223039,7 +223314,6 @@ self: { homepage = "http://github.com/paf31/typescript-docs"; description = "A documentation generator for TypeScript Definition files"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typical" = callPackage @@ -223089,6 +223363,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"; @@ -223099,17 +223374,16 @@ self: { "tz" = callPackage ({ mkDerivation, base, binary, bindings-posix, bytestring , containers, data-default, deepseq, HUnit, QuickCheck - , template-haskell, test-framework, test-framework-hunit - , test-framework-quickcheck2, test-framework-th, time, tzdata, unix - , vector + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , test-framework-th, time, tzdata, unix, vector }: mkDerivation { pname = "tz"; version = "0.1.1.0"; sha256 = "a9fbbf3979e8a46cddbbaf4f1c1d58c3d8ceefb664a628b74420c3d4d1cdc177"; libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector + base binary bytestring containers data-default deepseq time tzdata + vector ]; testHaskellDepends = [ base bindings-posix HUnit QuickCheck test-framework @@ -223120,7 +223394,6 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "tzdata_0_1_20150810_0" = callPackage @@ -223183,7 +223456,6 @@ self: { jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ua-parser" = callPackage @@ -223237,7 +223509,6 @@ self: { homepage = "https://github.com/byteally/webapi-uber.git"; description = "Uber client for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uberlast" = callPackage @@ -223250,7 +223521,6 @@ self: { homepage = "https:/github.com/fumieval/uberlast"; description = "Generate overloaded lenses from plain data declaration"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uconv" = callPackage @@ -223263,7 +223533,6 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -223283,7 +223552,6 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Small DBus implementation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udbus-model" = callPackage @@ -223298,7 +223566,6 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Model API for udbus introspection and definitions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udcode" = callPackage @@ -223328,7 +223595,6 @@ self: { homepage = "https://github.com/pxqr/udev"; description = "libudev bindings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libudev;}; "uglymemo" = callPackage @@ -223436,7 +223702,6 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uid" = callPackage @@ -223496,6 +223761,7 @@ self: { version = "0.1.3"; sha256 = "a612333c5b4f0f367e9a0bf81f3ec62ff047cab4204ad1bc90bc1791b80e1d55"; libraryHaskellDepends = [ base io-streams unagi-chan ]; + jailbreak = true; description = "Unagi Chan IO-Streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -223524,7 +223790,6 @@ self: { homepage = "http://github.com/luqui/unamb-custom"; description = "Functional concurrency with unamb using a custom scheduler"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbound" = callPackage @@ -223538,6 +223803,7 @@ self: { libraryHaskellDepends = [ base binary containers mtl RepLib transformers ]; + jailbreak = true; homepage = "https://github.com/sweirich/replib"; description = "Generic support for programming with names and binders"; license = stdenv.lib.licenses.bsd3; @@ -223608,7 +223874,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unbound-generics" = callPackage + "unbound-generics_0_3" = callPackage ({ mkDerivation, base, containers, contravariant, deepseq, mtl , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers, transformers-compat @@ -223627,9 +223893,10 @@ self: { homepage = "http://github.com/lambdageek/unbound-generics"; description = "Support for programming with names and binders using GHC Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unbound-generics_0_3_1" = callPackage + "unbound-generics" = callPackage ({ mkDerivation, base, containers, contravariant, deepseq, mtl , profunctors, QuickCheck, tasty, tasty-hunit, tasty-quickcheck , template-haskell, transformers, transformers-compat @@ -223648,7 +223915,6 @@ self: { homepage = "http://github.com/lambdageek/unbound-generics"; description = "Support for programming with names and binders using GHC Generics"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbounded-delays_0_1_0_8" = callPackage @@ -223688,7 +223954,6 @@ self: { homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unboxed-containers" = callPackage @@ -223701,7 +223966,6 @@ self: { homepage = "http://github.com/ekmett/unboxed-containers"; description = "Self-optimizing unboxed sets using view patterns and data families"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unbreak" = callPackage @@ -223720,10 +223984,10 @@ self: { cryptonite memory process text unix ]; executableHaskellDepends = [ base bytestring cmdargs ]; + jailbreak = true; homepage = "https://e.xtendo.org/scs/unbreak"; description = "Secure and resilient remote file storage utility"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uncertain" = callPackage @@ -223947,7 +224211,6 @@ self: { homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -224017,7 +224280,6 @@ self: { homepage = "https://github.com/Zankoku-Okuno/unicoder"; description = "Make writing in unicode easy"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unification-fd" = callPackage @@ -224047,19 +224309,19 @@ self: { ]; librarySystemDepends = [ openssl ]; testHaskellDepends = [ attoparsec base bytestring Cabal ]; + jailbreak = true; homepage = "https://sealgram.com/git/haskell/uniform-io"; description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "uniform-pair" = callPackage - ({ mkDerivation, base, deepseq, ShowF }: + ({ mkDerivation, base, deepseq, prelude-extras }: mkDerivation { pname = "uniform-pair"; - version = "0.1.11"; - sha256 = "bb5281123c7e491c1940a26e1a76a5be341e162ba4a2dede5a951ac7a2050bc9"; - libraryHaskellDepends = [ base deepseq ShowF ]; + version = "0.1.12"; + sha256 = "91a4b9682568510ac79c66fff0c002c8994b5de6e09f42e93512188e293ffed0"; + libraryHaskellDepends = [ base deepseq prelude-extras ]; homepage = "https://github.com/conal/uniform-pair/"; description = "Uniform pairs with class instances"; license = stdenv.lib.licenses.bsd3; @@ -224082,6 +224344,8 @@ self: { pname = "union-find"; version = "0.2"; sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; + revision = "1"; + editedCabalFile = "22e97cd9aeb8c96bf7cd8d359d4eda635dc0e0a6cd91b9a07e5a203b00949c8d"; libraryHaskellDepends = [ base containers transformers ]; homepage = "http://github.com/nominolo/union-find"; description = "Efficient union and equivalence testing of sets"; @@ -224110,7 +224374,6 @@ self: { homepage = "http://github.com/minpou/union-map"; description = "Heterogeneous map by open unions"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uniplate" = callPackage @@ -224175,6 +224438,7 @@ self: { testHaskellDepends = [ base non-empty QuickCheck transformers utility-ht ]; + jailbreak = true; homepage = "http://code.haskell.org/~thielema/unique-logic-tf/"; description = "Solve simple simultaneous equations"; license = stdenv.lib.licenses.bsd3; @@ -224190,7 +224454,6 @@ self: { homepage = "http://github.com/sebfisch/uniqueid/wikis"; description = "Splittable Unique Identifier Supply"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unit" = callPackage @@ -224218,23 +224481,23 @@ self: { }) {}; "units" = callPackage - ({ mkDerivation, base, containers, HUnit-approx, mtl, multimap - , singletons, syb, tasty, tasty-hunit, template-haskell, th-desugar - , units-parser, vector-space + ({ mkDerivation, base, containers, deepseq, HUnit-approx, lens + , linear, mtl, multimap, singletons, syb, tasty, tasty-hunit + , template-haskell, th-desugar, units-parser, vector-space }: mkDerivation { pname = "units"; - version = "2.3"; - sha256 = "f2d76562be958b066b92eb46a8236dae7e2085418af461292e9923b38c290592"; + version = "2.4"; + sha256 = "5060ef295a832b620bb60b057b57c18de4d0b187634bee691dbd64df2d6aa641"; libraryHaskellDepends = [ - base containers mtl multimap singletons syb template-haskell - th-desugar units-parser vector-space + base containers deepseq lens linear mtl multimap singletons syb + template-haskell th-desugar units-parser vector-space ]; testHaskellDepends = [ - base containers HUnit-approx mtl multimap singletons syb tasty - tasty-hunit template-haskell th-desugar units-parser vector-space + base containers deepseq HUnit-approx lens linear mtl multimap + singletons syb tasty tasty-hunit template-haskell th-desugar + units-parser vector-space ]; - jailbreak = true; homepage = "https://github.com/goldfirere/units"; description = "A domain-specific type system for dimensional analysis"; license = stdenv.lib.licenses.bsd3; @@ -224251,6 +224514,7 @@ self: { libraryHaskellDepends = [ attoparsec base template-haskell text units units-defs ]; + jailbreak = true; homepage = "https://github.com/jcristovao/units-attoparsec"; description = "Attoparsec parsers for the units package"; license = stdenv.lib.licenses.bsd3; @@ -224260,8 +224524,8 @@ self: { ({ mkDerivation, base, template-haskell, units }: mkDerivation { pname = "units-defs"; - version = "2.0.0.1"; - sha256 = "fb9a490ed58f27e84edefbd6c532619c941963e75474696d42b40e81bde46912"; + version = "2.0.1.1"; + sha256 = "82a72caa7c277d4513de4a769805097820b0f5299a4b93615d91d431217b295d"; libraryHaskellDepends = [ base template-haskell units ]; homepage = "http://github.com/goldfirere/units-defs"; description = "Definitions for use with the units package"; @@ -224297,7 +224561,6 @@ self: { homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "universal-binary" = callPackage @@ -224424,7 +224687,6 @@ self: { homepage = "http://github.com/jfishcoff/universe-th"; description = "Construct a Dec's ancestor list"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix_2_7_2_0" = callPackage @@ -224489,6 +224751,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ base foreign-var ]; executableHaskellDepends = [ base foreign-var unix ]; + jailbreak = true; homepage = "https://github.com/maoe/unix-fcntl"; description = "Comprehensive bindings to fcntl(2)"; license = stdenv.lib.licenses.bsd3; @@ -224554,7 +224817,6 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix-pty-light" = callPackage @@ -224633,6 +224895,7 @@ self: { isExecutable = true; libraryHaskellDepends = [ array base mtl ]; executableHaskellDepends = [ base unix ]; + jailbreak = true; description = "Unlambda interpreter"; license = "GPL"; }) {}; @@ -224649,7 +224912,6 @@ self: { executableHaskellDepends = [ base directory text ]; description = "Tool to convert literate code between styles or to code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unm-hip" = callPackage @@ -224683,6 +224945,7 @@ self: { base ChasingBottoms containers hashable HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; + jailbreak = true; homepage = "https://github.com/tibbe/unordered-containers"; description = "Efficient hashing-based container types"; license = stdenv.lib.licenses.bsd3; @@ -224726,7 +224989,6 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unordered-graphs" = callPackage @@ -224740,6 +225002,7 @@ self: { libraryHaskellDepends = [ base deepseq dlist hashable unordered-containers ]; + jailbreak = true; description = "Graph library using unordered-containers"; license = stdenv.lib.licenses.mit; }) {}; @@ -224757,7 +225020,6 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unroll-ghc-plugin" = callPackage @@ -224839,7 +225101,6 @@ self: { ]; description = "Solve Boggle-like word games"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unsequential" = callPackage @@ -224911,7 +225172,6 @@ self: { homepage = "https://github.com/thomaseding/up"; description = "Command line tool to generate pathnames to facilitate moving upward in a file system"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "up-grade" = callPackage @@ -224943,7 +225203,6 @@ self: { jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "upskirt" = callPackage @@ -224955,7 +225214,6 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ureader" = callPackage @@ -224981,7 +225239,6 @@ self: { homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urembed" = callPackage @@ -225003,7 +225260,6 @@ self: { homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri" = callPackage @@ -225034,6 +225290,7 @@ self: { attoparsec base blaze-builder bytestring derive HUnit lens QuickCheck quickcheck-instances tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225056,6 +225313,7 @@ self: { attoparsec base blaze-builder bytestring derive HUnit lens QuickCheck quickcheck-instances tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225078,6 +225336,7 @@ self: { attoparsec base blaze-builder bytestring derive HUnit lens QuickCheck quickcheck-instances tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225125,6 +225384,7 @@ self: { QuickCheck quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225148,6 +225408,7 @@ self: { QuickCheck quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225171,6 +225432,7 @@ self: { QuickCheck quickcheck-instances semigroups tasty tasty-hunit tasty-quickcheck ]; + jailbreak = true; homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; @@ -225193,7 +225455,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-encode_1_5_0_3" = callPackage @@ -225248,7 +225509,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-enumerator-file" = callPackage @@ -225269,7 +225529,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uri-template" = callPackage @@ -225330,7 +225589,6 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlcheck" = callPackage @@ -225349,7 +225607,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldecode" = callPackage @@ -225364,7 +225621,6 @@ self: { homepage = "https://github.com/beastaugh/urldecode"; description = "Decode percent-encoded strings"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urldisp-happstack" = callPackage @@ -225376,7 +225632,6 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlencoded" = callPackage @@ -225463,7 +225718,6 @@ self: { homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb" = callPackage @@ -225498,7 +225752,6 @@ self: { jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -225551,7 +225804,6 @@ self: { homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -225570,7 +225822,6 @@ self: { homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "userid_0_1_2_3" = callPackage @@ -225602,6 +225853,7 @@ self: { libraryHaskellDepends = [ aeson base boomerang lens safecopy web-routes web-routes-th ]; + jailbreak = true; homepage = "http://www.github.com/Happstack/userid"; description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; @@ -225619,6 +225871,7 @@ self: { libraryHaskellDepends = [ aeson base boomerang safecopy web-routes web-routes-th ]; + jailbreak = true; homepage = "http://www.github.com/Happstack/userid"; description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; @@ -225930,7 +226183,6 @@ self: { jailbreak = true; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "utf8-string_0_3_8" = callPackage @@ -225942,6 +226194,7 @@ self: { revision = "2"; editedCabalFile = "0555d720026fff65342bdc500391ffd300858b6f2c6db441d4dd1eafbcb599ff"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://github.com/glguy/utf8-string/"; description = "Support for reading and writing UTF8 Strings"; license = stdenv.lib.licenses.bsd3; @@ -225955,6 +226208,7 @@ self: { version = "1"; sha256 = "79f388d3f089e0c483c1dc1afad524b06f1abb6e288ed9029f934cffb3b2ba08"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://github.com/glguy/utf8-string/"; description = "Support for reading and writing UTF8 Strings"; license = stdenv.lib.licenses.bsd3; @@ -225970,6 +226224,7 @@ self: { revision = "1"; editedCabalFile = "10b43956d0100ef545047b3dfa62f25d7ba644aa4ad7fae3987c222bc7c1a93b"; libraryHaskellDepends = [ base bytestring ]; + jailbreak = true; homepage = "http://github.com/glguy/utf8-string/"; description = "Support for reading and writing UTF8 Strings"; license = stdenv.lib.licenses.bsd3; @@ -226090,6 +226345,7 @@ self: { revision = "1"; editedCabalFile = "6698743a35d0791453123aecd3547df4bec9e6fa8cf326a052e3e3e13e842c85"; libraryHaskellDepends = [ base ListLike time uu-interleaved ]; + jailbreak = true; homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators"; description = "Fast, online, error-correcting, monadic, applicative, merging, permuting, interleaving, idiomatic parser combinators"; license = stdenv.lib.licenses.mit; @@ -226188,7 +226444,6 @@ self: { jailbreak = true; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uuagd" = callPackage @@ -226385,6 +226640,8 @@ self: { pname = "uuid"; version = "1.3.12"; sha256 = "ed62f1b3f0b19f0d548655ffef5aff066ad5c430fe11e909a1a7e8fc115a89ee"; + revision = "1"; + editedCabalFile = "259f3202de89b411d0ed3a2c8f2eefb8eb7e5f244dc1ddf952154ec76c251570"; libraryHaskellDepends = [ base binary bytestring cryptonite memory network-info random text time uuid-types @@ -226557,7 +226814,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uvector-algorithms" = callPackage @@ -226570,7 +226826,6 @@ self: { homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for uvector unboxed arrays"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uxadt" = callPackage @@ -226611,7 +226866,6 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "interface to Video For Linux Two (V4L2)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -226627,7 +226881,6 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum" = callPackage @@ -226640,7 +226893,6 @@ self: { homepage = "http://thoughtpolice.github.com/vacuum"; description = "Graph representation of the GHC heap"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-cairo" = callPackage @@ -226658,7 +226910,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/vacuum-cairo"; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-graphviz" = callPackage @@ -226671,7 +226922,6 @@ self: { jailbreak = true; description = "A library for transforming vacuum graphs into GraphViz output"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-opengl" = callPackage @@ -226692,7 +226942,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum-ubigraph" = callPackage @@ -226705,7 +226954,6 @@ self: { jailbreak = true; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vado" = callPackage @@ -226799,6 +227047,7 @@ self: { version = "0.2.0"; sha256 = "020b42ae331ee77c24402210c2715088b3b6084234b20a17eeacba27b66fa471"; libraryHaskellDepends = [ base bytestring template-haskell ]; + jailbreak = true; homepage = "https://github.com/merijn/validated-literals"; description = "Compile-time checking for partial smart-constructors"; license = stdenv.lib.licenses.bsd3; @@ -226819,6 +227068,7 @@ self: { testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; + jailbreak = true; homepage = "https://github.com/NICTA/validation"; description = "A data-type like Either but with an accumulating Applicative"; license = stdenv.lib.licenses.bsd3; @@ -226879,7 +227129,6 @@ self: { homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "var" = callPackage @@ -226897,7 +227146,6 @@ self: { homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "varan" = callPackage @@ -226961,10 +227209,10 @@ self: { libraryHaskellDepends = [ base time 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; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vault_0_3_0_3" = callPackage @@ -226994,6 +227242,7 @@ self: { libraryHaskellDepends = [ base containers hashable unordered-containers ]; + jailbreak = true; homepage = "https://github.com/HeinrichApfelmus/vault"; description = "a persistent store for values of arbitrary types"; license = stdenv.lib.licenses.bsd3; @@ -227010,6 +227259,7 @@ self: { libraryHaskellDepends = [ base containers hashable unordered-containers ]; + jailbreak = true; homepage = "https://github.com/HeinrichApfelmus/vault"; description = "a persistent store for values of arbitrary types"; license = stdenv.lib.licenses.bsd3; @@ -227052,7 +227302,6 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcache" = callPackage @@ -227070,7 +227319,6 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache"; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcache-trie" = callPackage @@ -227087,7 +227335,6 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache-trie"; description = "patricia tries modeled above VCache"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcard" = callPackage @@ -227170,10 +227417,35 @@ self: { executableHaskellDepends = [ base directory filepath gtk3 mtl process text vcswrapper ]; + jailbreak = true; homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + }) {}; + + "vcswrapper_0_1_2" = callPackage + ({ mkDerivation, base, containers, directory, filepath, hxt, mtl + , parsec, process, split, text + }: + mkDerivation { + pname = "vcswrapper"; + version = "0.1.2"; + sha256 = "3a5dd0c147522d50846559ff5164310b7148a12ea859eea40debb8699ea375e5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers directory filepath hxt mtl parsec process split + text + ]; + executableHaskellDepends = [ + base containers directory filepath hxt mtl parsec process split + text + ]; + jailbreak = true; + homepage = "https://github.com/forste/haskellVCSWrapper"; + description = "Wrapper for source code management systems"; + license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcswrapper" = callPackage @@ -227182,8 +227454,8 @@ self: { }: mkDerivation { pname = "vcswrapper"; - version = "0.1.2"; - sha256 = "3a5dd0c147522d50846559ff5164310b7148a12ea859eea40debb8699ea375e5"; + version = "0.1.3"; + sha256 = "99cee523d8a4164fce6a2598aad7c8efa3b70785d0a07441bbf7203e3d383e89"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -227249,7 +227521,6 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector_0_10_9_3" = callPackage @@ -227528,7 +227799,6 @@ self: { homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-clock" = callPackage @@ -227548,7 +227818,6 @@ self: { homepage = "https://github.com/scvalex/vector-clock"; description = "Vector clocks for versioning message flows"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-conduit" = callPackage @@ -227568,7 +227837,6 @@ self: { jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-fftw_0_1_3_5" = callPackage @@ -227579,6 +227847,7 @@ self: { sha256 = "f4d88d3122c2ea3a92a5dffd78743e8942f261fd7d00724c6aa317adbc59abfe"; libraryHaskellDepends = [ base primitive storable-complex vector ]; librarySystemDepends = [ fftw ]; + jailbreak = true; homepage = "http://hackage.haskell.org/package/vector-fftw"; description = "A binding to the fftw library for one-dimensional vectors"; license = stdenv.lib.licenses.bsd3; @@ -227611,7 +227880,6 @@ self: { homepage = "http://github.com/mikeizbicki/vector-functorlazy/"; description = "vectors that perform the fmap operation in constant time"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-heterogenous" = callPackage @@ -227693,7 +227961,6 @@ self: { homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections"; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-mmap" = callPackage @@ -227718,7 +227985,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/vector-random"; description = "Generate vectors filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-read-instances" = callPackage @@ -227731,7 +227997,6 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "(deprecated) Read instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-sized" = callPackage @@ -227821,7 +228086,6 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-space-points_0_2" = callPackage @@ -227857,6 +228121,7 @@ self: { version = "0.2.1.1"; sha256 = "d77ea5caa08e9bc123fc760c00a7758b5b74ed0ac73be2a2143e55c82b3fb334"; libraryHaskellDepends = [ base vector-space ]; + jailbreak = true; description = "A type for points, as distinct from vectors"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -227884,7 +228149,6 @@ self: { homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vector-strategies" = callPackage @@ -227908,6 +228172,7 @@ self: { editedCabalFile = "ca09cfbd155faf95ea8bccab39ce28368e70b473fa2249a0c44b308cea8ecb3a"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; + jailbreak = true; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -227939,6 +228204,7 @@ self: { editedCabalFile = "45fb308090cd50c13a24b46c0eef6bb9afcbf82fdcf944e3dc9bba27c63d5868"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; + jailbreak = true; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -227954,6 +228220,7 @@ self: { editedCabalFile = "5df99c83217a702f6b8e5c8ecce8f74bbaf0b8a7d90d0764c74aca88221140b8"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; + jailbreak = true; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -227969,6 +228236,7 @@ self: { editedCabalFile = "88ee583a97da72239a2a931684c4ceab10516f963793858bc553ee0c628c893d"; libraryHaskellDepends = [ base template-haskell vector ]; testHaskellDepends = [ base data-default vector ]; + jailbreak = true; description = "Deriver for Data.Vector.Unboxed using Template Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -228024,6 +228292,7 @@ self: { libraryHaskellDepends = [ base mtl text transformers ]; executableHaskellDepends = [ base markdown-unlit text ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; description = "Validation framework"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -228045,6 +228314,7 @@ self: { testHaskellDepends = [ aeson base containers hspec unordered-containers vector verdict ]; + jailbreak = true; description = "JSON instances and JSON Schema for verdict"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -228060,7 +228330,6 @@ self: { homepage = "http://github.com/tomahawkins/verilog"; description = "Verilog preprocessor, parser, and AST"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "versions" = callPackage @@ -228075,9 +228344,9 @@ self: { testHaskellDepends = [ base either microlens tasty tasty-hunit text ]; + jailbreak = true; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vhd" = callPackage @@ -228168,7 +228437,6 @@ self: { homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vimeta" = callPackage @@ -228223,7 +228491,6 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -228243,7 +228510,6 @@ self: { homepage = "http://www.vintage-basic.net"; description = "Interpreter for microcomputer-era BASIC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl_0_5_1" = callPackage @@ -228292,7 +228558,6 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and vinyl records"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-json" = callPackage @@ -228310,7 +228575,6 @@ self: { jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-operational" = callPackage @@ -228344,7 +228608,6 @@ self: { homepage = "http://github.com/andrew/vinyl-plus"; description = "Vinyl records utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vinyl-utils" = callPackage @@ -228377,7 +228640,6 @@ self: { homepage = "http://github.com/andrewthad/vinyl-vectors"; description = "Vectors for vinyl vectors"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "virthualenv" = callPackage @@ -228398,7 +228660,6 @@ self: { homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visibility" = callPackage @@ -228431,7 +228692,6 @@ self: { ]; description = "An XMMS2 client"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-graphrewrite" = callPackage @@ -228460,7 +228720,6 @@ self: { homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-prof" = callPackage @@ -228481,7 +228740,6 @@ self: { homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vivid" = callPackage @@ -228500,7 +228758,6 @@ self: { homepage = "http://vivid-synth.com"; description = "Sound synthesis with SuperCollider"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-aws-route53" = callPackage @@ -228518,7 +228775,6 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vk-posix-pty" = callPackage @@ -228605,7 +228861,6 @@ self: { homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "voyeur" = callPackage @@ -228619,7 +228874,6 @@ self: { homepage = "https://github.com/sethfowler/hslibvoyeur"; description = "Haskell bindings for libvoyeur"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vrpn" = callPackage @@ -228637,7 +228891,6 @@ self: { homepage = "https://bitbucket.org/functionally/vrpn"; description = "Bindings to VRPN"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) vrpn;}; "vte" = callPackage @@ -228649,11 +228902,9 @@ self: { libraryHaskellDepends = [ base glib gtk pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; - jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -228665,11 +228916,9 @@ self: { libraryHaskellDepends = [ base glib gtk3 pango ]; libraryPkgconfigDepends = [ vte ]; libraryToolDepends = [ gtk2hs-buildtools ]; - jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) vte;}; "vty_5_4_0" = callPackage @@ -228761,7 +229010,6 @@ self: { homepage = "https://github.com/coreyoconnor/vty"; description = "Examples programs using the vty library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-menu" = callPackage @@ -228776,7 +229024,6 @@ self: { jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vty-ui" = callPackage @@ -228813,7 +229060,6 @@ self: { jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vulkan" = callPackage @@ -228824,11 +229070,9 @@ self: { sha256 = "17c8437061adee81f6c4b34a1ead85a44f98c0c443bc2696025f1849c086e965"; libraryHaskellDepends = [ base vector-sized ]; librarySystemDepends = [ vulkan ]; - jailbreak = true; homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {vulkan = null;}; "wacom-daemon" = callPackage @@ -228854,7 +229098,6 @@ self: { homepage = "https://github.com/portnov/wacom-intuos-pro-scripts"; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "waddle" = callPackage @@ -228875,6 +229118,7 @@ self: { base binary bytestring case-insensitive containers directory JuicyPixels ]; + jailbreak = true; homepage = "https://github.com/mgrabmueller/waddle"; description = "DOOM WAD file utilities"; license = stdenv.lib.licenses.bsd3; @@ -228989,6 +229233,7 @@ self: { text transformers unix-compat vault ]; testHaskellDepends = [ base blaze-builder bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; @@ -229009,6 +229254,7 @@ self: { text transformers unix-compat vault ]; testHaskellDepends = [ base blaze-builder bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; @@ -229029,6 +229275,7 @@ self: { text transformers vault ]; testHaskellDepends = [ base blaze-builder bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; @@ -229049,13 +229296,14 @@ self: { text transformers vault ]; testHaskellDepends = [ base blaze-builder bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai" = callPackage + "wai_3_2_1" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, vault @@ -229069,12 +229317,14 @@ self: { text transformers vault ]; testHaskellDepends = [ base blaze-builder bytestring hspec ]; + jailbreak = true; homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai_3_2_1_1" = callPackage + "wai" = callPackage ({ mkDerivation, base, blaze-builder, bytestring , bytestring-builder, hspec, http-types, network, text , transformers, vault @@ -229091,7 +229341,6 @@ self: { homepage = "https://github.com/yesodweb/wai"; description = "Web Application Interface"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-accept-language" = callPackage @@ -229714,6 +229963,7 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base hspec stm ]; + jailbreak = true; homepage = "https://github.com/urbanslug/wai-devel"; description = "A web server for the development of WAI compliant web applications"; license = stdenv.lib.licenses.mit; @@ -230459,7 +230709,6 @@ self: { homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-devel" = callPackage @@ -230482,7 +230731,6 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-fastcgi" = callPackage @@ -230546,6 +230794,7 @@ self: { base blaze-builder bytestring http-types process streaming-commons transformers wai warp ]; + jailbreak = true; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -230563,6 +230812,7 @@ self: { base blaze-builder bytestring http-types process streaming-commons transformers wai warp ]; + jailbreak = true; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -230580,6 +230830,7 @@ self: { async base blaze-builder bytestring http-types process streaming-commons transformers wai warp ]; + jailbreak = true; description = "Launch a web app in the default browser"; license = stdenv.lib.licenses.mit; hydraPlatforms = stdenv.lib.platforms.none; @@ -230630,7 +230881,6 @@ self: { homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-webkit" = callPackage @@ -230644,7 +230894,6 @@ self: { homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit"; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -230661,7 +230910,6 @@ self: { homepage = "https://github.com/singpolyma/wai-hastache"; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-hmac-auth" = callPackage @@ -230719,7 +230967,6 @@ self: { jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-logger_2_2_3" = callPackage @@ -230840,7 +231087,34 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-make-assets" = callPackage + ({ mkDerivation, base, bytestring, directory, getopt-generics + , hspec, http-types, lens, mockery, shake, silently + , string-conversions, wai, wai-app-static, warp, wreq + }: + mkDerivation { + pname = "wai-make-assets"; + version = "0.1"; + sha256 = "881392ea0dc1230cb66d2919520546c70766396af292e2972e0c05ff1ddc4334"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring directory http-types shake string-conversions wai + wai-app-static warp + ]; + executableHaskellDepends = [ + base bytestring directory getopt-generics http-types shake + string-conversions wai wai-app-static warp + ]; + testHaskellDepends = [ + base bytestring directory hspec http-types lens mockery shake + silently string-conversions wai wai-app-static warp wreq + ]; + homepage = "https://github.com/soenkehahn/wai-make-assets#readme"; + description = "Compiling and serving assets"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-middleware-cache" = callPackage @@ -230864,7 +231138,6 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -230885,7 +231158,6 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -230953,7 +231225,6 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-consul" = callPackage @@ -231164,7 +231435,6 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -231212,7 +231482,6 @@ self: { homepage = "http://github.com/seanhess/wai-middleware-headers"; description = "cors and addHeaders for WAI"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-hmac" = callPackage @@ -231260,7 +231529,6 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-metrics_0_2_2" = callPackage @@ -231320,7 +231588,6 @@ self: { homepage = "https://github.com/taktoa/wai-middleware-preprocessor"; description = "WAI middleware for preprocessing static files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-prometheus" = callPackage @@ -231361,7 +231628,6 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-static_0_6_0_1" = callPackage @@ -231442,7 +231708,6 @@ self: { homepage = "https://github.com/agrafix/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-throttle_0_2_0_1" = callPackage @@ -231580,6 +231845,7 @@ self: { base blaze-builder bytestring case-insensitive http-types tasty tasty-hunit tasty-quickcheck wai ]; + jailbreak = true; homepage = "https://github.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = stdenv.lib.licenses.mpl20; @@ -231604,11 +231870,11 @@ self: { base blaze-builder bytestring case-insensitive http-types tasty tasty-hunit tasty-quickcheck wai ]; + jailbreak = true; doCheck = false; homepage = "https://gitlab.com/twittner/wai-predicates/"; description = "WAI request predicates"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-request-spec" = callPackage @@ -231794,7 +232060,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-routes" = callPackage + "wai-routes_0_9_7" = callPackage ({ mkDerivation, aeson, base, blaze-builder, bytestring , case-insensitive, containers, cookie, data-default-class , filepath, hspec, hspec-wai, hspec-wai-json, http-types @@ -231814,6 +232080,34 @@ self: { testHaskellDepends = [ aeson base hspec hspec-wai hspec-wai-json text wai ]; + jailbreak = true; + homepage = "https://ajnsit.github.io/wai-routes/"; + description = "Typesafe URLs for Wai applications"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-routes" = callPackage + ({ mkDerivation, aeson, base, blaze-builder, bytestring + , case-insensitive, containers, cookie, data-default-class + , filepath, hspec, hspec-wai, hspec-wai-json, http-types + , mime-types, monad-loops, mtl, path-pieces, random + , template-haskell, text, vault, wai, wai-app-static, wai-extra + }: + mkDerivation { + pname = "wai-routes"; + version = "0.9.8"; + sha256 = "4152d74a8b0b762b448b112d391e8b760efb7b71444c5b9f58ed714d87331071"; + libraryHaskellDepends = [ + aeson base blaze-builder bytestring case-insensitive containers + cookie data-default-class filepath http-types mime-types + monad-loops mtl path-pieces random template-haskell text vault wai + wai-app-static wai-extra + ]; + testHaskellDepends = [ + aeson base hspec hspec-wai hspec-wai-json text wai + ]; + jailbreak = true; homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; @@ -231838,6 +232132,7 @@ self: { case-insensitive containers http-types tasty tasty-hunit tasty-quickcheck wai wai-predicates ]; + jailbreak = true; homepage = "https://github.com/twittner/wai-routing/"; description = "Declarative routing for WAI"; license = "unknown"; @@ -231863,6 +232158,7 @@ self: { case-insensitive containers http-types tasty tasty-hunit tasty-quickcheck wai wai-predicates ]; + jailbreak = true; homepage = "https://github.com/twittner/wai-routing/"; description = "Declarative routing for WAI"; license = stdenv.lib.licenses.mpl20; @@ -231888,10 +232184,10 @@ self: { case-insensitive containers http-types tasty tasty-hunit tasty-quickcheck wai wai-predicates ]; + jailbreak = true; homepage = "https://gitlab.com/twittner/wai-routing/"; description = "Declarative routing for WAI"; license = stdenv.lib.licenses.mpl20; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-session" = callPackage @@ -231986,6 +232282,32 @@ self: { testHaskellDepends = [ base bytestring data-default postgresql-simple text wai-session ]; + jailbreak = true; + doCheck = false; + homepage = "https://github.com/hce/postgresql-session#readme"; + description = "PostgreSQL backed Wai session store"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-session-postgresql_0_2_0_5" = callPackage + ({ mkDerivation, base, bytestring, cereal, cookie, data-default + , entropy, postgresql-simple, resource-pool, text, time + , transformers, wai, wai-session + }: + mkDerivation { + pname = "wai-session-postgresql"; + version = "0.2.0.5"; + sha256 = "5ab689645cc9f283673b3807e532dc8a8524d71e9412328cdc35bbd325455b33"; + libraryHaskellDepends = [ + base bytestring cereal cookie data-default entropy + postgresql-simple resource-pool text time transformers wai + wai-session + ]; + testHaskellDepends = [ + base bytestring data-default postgresql-simple text wai-session + ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/hce/postgresql-session#readme"; description = "PostgreSQL backed Wai session store"; @@ -232000,8 +232322,8 @@ self: { }: mkDerivation { pname = "wai-session-postgresql"; - version = "0.2.0.5"; - sha256 = "5ab689645cc9f283673b3807e532dc8a8524d71e9412328cdc35bbd325455b33"; + version = "0.2.1.0"; + sha256 = "34f6a08e8a26ab1a58ad2e1f707ede69541f5788b7b0454a83dc26ad3afbbe9a"; libraryHaskellDepends = [ base bytestring cereal cookie data-default entropy postgresql-simple resource-pool text time transformers wai @@ -232031,7 +232353,6 @@ self: { homepage = "https://github.com/singpolyma/wai-session-tokyocabinet"; description = "Session store based on Tokyo Cabinet"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-cache" = callPackage @@ -232051,7 +232372,6 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-static-pages" = callPackage @@ -232095,10 +232415,10 @@ self: { libraryHaskellDepends = [ base blaze-builder bytestring http-types thrift wai ]; + jailbreak = true; homepage = "https://github.com/yogeshsajanikar/wai-thrift"; description = "Thrift transport layer for Wai"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-throttler" = callPackage @@ -232115,7 +232435,6 @@ self: { jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-transformers" = callPackage @@ -232400,6 +232719,7 @@ self: { aeson base http-types regex-applicative tasty tasty-hunit wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/futurice/waitra"; description = "A very simple Wai router"; license = stdenv.lib.licenses.mit; @@ -232427,6 +232747,7 @@ self: { testHaskellDepends = [ aeson base http-types tasty tasty-hunit wai wai-extra ]; + jailbreak = true; homepage = "https://github.com/futurice/waitra"; description = "A very simple Wai router"; license = stdenv.lib.licenses.mit; @@ -232453,6 +232774,7 @@ self: { optparse-applicative pipes pipes-attoparsec pipes-bytestring pipes-zlib text time transformers ]; + jailbreak = true; homepage = "http://github.com/bgamari/warc"; description = "A parser for the Web Archive (WARC) format"; license = stdenv.lib.licenses.bsd3; @@ -233240,7 +233562,6 @@ self: { homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-static" = callPackage @@ -233263,7 +233584,6 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "warp-tls_3_0_1" = callPackage @@ -233626,7 +233946,6 @@ self: { jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchdog" = callPackage @@ -233639,7 +233958,6 @@ self: { jailbreak = true; description = "Simple control structure to re-try an action with exponential backoff"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watcher" = callPackage @@ -233657,7 +233975,6 @@ self: { jailbreak = true; description = "Opinionated filesystem watcher"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchit" = callPackage @@ -233686,7 +234003,6 @@ self: { ]; description = "File change watching utility"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavconvert" = callPackage @@ -233713,6 +234029,7 @@ self: { libraryHaskellDepends = [ attoparsec base dlist filepath mtl text transformers vector ]; + jailbreak = true; homepage = "https://github.com/phaazon/wavefront"; description = "Wavefront OBJ loader"; license = stdenv.lib.licenses.bsd3; @@ -233734,7 +234051,6 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavy" = callPackage @@ -233793,7 +234109,6 @@ self: { homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-browser-in-haskell" = callPackage @@ -233805,7 +234120,6 @@ self: { libraryHaskellDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-css" = callPackage @@ -233837,7 +234151,6 @@ self: { homepage = "http://github.com/snoyberg/web-encodings/tree/master"; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-fpco" = callPackage @@ -233893,7 +234206,6 @@ self: { homepage = "http://github.com/cmoore/web-mongrel2"; description = "Bindings for the Mongrel2 web server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-page" = callPackage @@ -234010,7 +234322,6 @@ self: { homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-regular" = callPackage @@ -234050,7 +234361,6 @@ self: { jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-wai" = callPackage @@ -234082,6 +234392,7 @@ self: { base bytestring primitive text types-compat unordered-containers ]; testHaskellDepends = [ base doctest ]; + jailbreak = true; homepage = "https://github.com/philopon/web-routing"; description = "simple routing library"; license = stdenv.lib.licenses.mit; @@ -234111,7 +234422,6 @@ self: { homepage = "http://byteally.github.io/webapi/"; description = "WAI based library for web api"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webapp" = callPackage @@ -234130,10 +234440,10 @@ self: { regex-posix stm streaming-commons text transformers unix wai warp warp-tls zlib ]; + jailbreak = true; homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web app framework based on WAI & Warp"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webcloud" = callPackage @@ -234439,7 +234749,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "webdriver" = callPackage + "webdriver_0_8_2" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, data-default-class, directory, directory-tree , exceptions, filepath, http-client, http-types, lifted-base @@ -234458,10 +234768,36 @@ self: { network-uri scientific temporary text time transformers transformers-base unordered-containers vector zip-archive ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "webdriver" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bytestring, data-default-class, directory, directory-tree + , exceptions, filepath, http-client, http-types, lifted-base + , monad-control, network, network-uri, scientific, temporary, text + , time, transformers, transformers-base, unordered-containers + , vector, zip-archive + }: + mkDerivation { + pname = "webdriver"; + version = "0.8.3"; + sha256 = "56cc40adcee9ea173ba051992fbd3009e63e66d2bcf9f275b0dc2bcddb1d1ae2"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bytestring + data-default-class directory directory-tree exceptions filepath + http-client http-types lifted-base monad-control network + network-uri scientific temporary text time transformers + transformers-base unordered-containers vector zip-archive + ]; + homepage = "https://github.com/kallisti-dev/hs-webdriver"; + description = "a Haskell client for the Selenium WebDriver protocol"; + license = stdenv.lib.licenses.bsd3; }) {}; "webdriver-angular_0_1_7" = callPackage @@ -234563,7 +234899,6 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webfinger-client" = callPackage @@ -234626,7 +234961,6 @@ self: { homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "webkit" = callPackage @@ -234645,7 +234979,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) webkit;}; "webkit-javascriptcore" = callPackage @@ -234659,10 +234992,9 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; - "webkitgtk3" = callPackage + "webkitgtk3_0_14_1_1" = callPackage ({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools , gtk3, mtl, pango, text, transformers, webkit }: @@ -234678,10 +235010,10 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; - "webkitgtk3_0_14_2_0" = callPackage + "webkitgtk3" = callPackage ({ mkDerivation, base, bytestring, cairo, glib, gtk2hs-buildtools , gtk3, mtl, pango, text, transformers, webkit }: @@ -234697,10 +235029,9 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; - "webkitgtk3-javascriptcore" = callPackage + "webkitgtk3-javascriptcore_0_13_1_2" = callPackage ({ mkDerivation, base, glib, gtk2hs-buildtools, gtk3, webkit , webkitgtk3 }: @@ -234713,10 +235044,10 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; - "webkitgtk3-javascriptcore_0_14_1_0" = callPackage + "webkitgtk3-javascriptcore" = callPackage ({ mkDerivation, base, gtk2hs-buildtools, webkit }: mkDerivation { pname = "webkitgtk3-javascriptcore"; @@ -234727,7 +235058,6 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) webkit;}; "webpage_0_0_3_1" = callPackage @@ -234768,6 +235098,7 @@ self: { version = "0.1.0.2"; sha256 = "d3ad3ba58ca2389102be09bda8bca69a525c766ada824898cf833d1993368293"; libraryHaskellDepends = [ base primitive vector ]; + jailbreak = true; description = "Easy voice activity detection"; license = stdenv.lib.licenses.mit; }) {}; @@ -234787,7 +235118,6 @@ self: { ]; description = "HTTP server library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websnap" = callPackage @@ -234802,7 +235132,6 @@ self: { homepage = "https://github.com/jrb/websnap"; description = "Transforms URLs to PNGs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websockets_0_9_2_1" = callPackage @@ -235000,6 +235329,41 @@ self: { SHA test-framework test-framework-hunit test-framework-quickcheck2 text ]; + jailbreak = true; + doCheck = false; + homepage = "http://jaspervdj.be/websockets"; + description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "websockets_0_9_6_1" = callPackage + ({ mkDerivation, attoparsec, base, base64-bytestring, binary + , blaze-builder, bytestring, case-insensitive, containers, entropy + , HUnit, network, QuickCheck, random, SHA, test-framework + , test-framework-hunit, test-framework-quickcheck2, text + }: + mkDerivation { + pname = "websockets"; + version = "0.9.6.1"; + sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + executableHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy network random SHA text + ]; + testHaskellDepends = [ + attoparsec base base64-bytestring binary blaze-builder bytestring + case-insensitive containers entropy HUnit network QuickCheck random + SHA test-framework test-framework-hunit test-framework-quickcheck2 + text + ]; + jailbreak = true; doCheck = false; homepage = "http://jaspervdj.be/websockets"; description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; @@ -235015,8 +235379,8 @@ self: { }: mkDerivation { pname = "websockets"; - version = "0.9.6.1"; - sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + version = "0.9.6.2"; + sha256 = "d772478ca85b4723cadbf7d73a16c15dea466fd1524d6fe323a2675106c93353"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -235072,7 +235436,6 @@ self: { ]; description = "Functional reactive web framework"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wedding-announcement" = callPackage @@ -235108,7 +235471,25 @@ self: { jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "weigh" = callPackage + ({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl + , process, random, split, template-haskell, unordered-containers + }: + mkDerivation { + pname = "weigh"; + version = "0.0.1"; + sha256 = "eb2ad1ee0a1f8a7cb90e2485f7c03a3094fe27d68b113962b650656b36cc6da5"; + libraryHaskellDepends = [ + base deepseq mtl process split template-haskell + ]; + testHaskellDepends = [ + base bytestring-trie containers deepseq random unordered-containers + ]; + homepage = "https://github.com/fpco/weigh#readme"; + description = "Measure allocations of a Haskell functions/values"; + license = stdenv.lib.licenses.bsd3; }) {}; "weighted-regexp" = callPackage @@ -235125,7 +235506,6 @@ self: { homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weighted-search" = callPackage @@ -235159,10 +235539,9 @@ self: { homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "werewolf" = callPackage + "werewolf_1_0_2_2" = callPackage ({ mkDerivation, aeson, base, containers, directory, extra , filepath, lens, MonadRandom, mtl, optparse-applicative , QuickCheck, random-shuffle, tasty, tasty-quickcheck, text @@ -235186,12 +235565,14 @@ self: { base containers extra lens MonadRandom mtl QuickCheck tasty tasty-quickcheck text ]; + jailbreak = true; homepage = "https://github.com/hjwylde/werewolf"; description = "A game engine for playing werewolf within an arbitrary chat client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "werewolf_1_2_0_2" = callPackage + "werewolf" = callPackage ({ mkDerivation, aeson, base, containers, directory, extra , filepath, interpolate, lens, MonadRandom, mtl , optparse-applicative, random-shuffle, template-haskell, text @@ -235211,10 +235592,10 @@ self: { aeson base containers directory extra filepath lens MonadRandom mtl optparse-applicative random-shuffle text transformers ]; + jailbreak = true; homepage = "https://github.com/hjwylde/werewolf"; description = "A game engine for playing werewolf within an arbitrary chat client"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "werewolf-slack" = callPackage @@ -235232,6 +235613,7 @@ self: { aeson base bytestring extra http-client http-client-tls http-types mtl optparse-applicative process text wai warp werewolf ]; + jailbreak = true; homepage = "https://github.com/hjwylde/werewolf-slack"; description = "A chat interface for playing werewolf in Slack"; license = stdenv.lib.licenses.bsd3; @@ -235248,7 +235630,6 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-redis" = callPackage @@ -235262,7 +235643,6 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wheb-strapped" = callPackage @@ -235276,7 +235656,6 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "while-lang-parser" = callPackage @@ -235308,7 +235687,6 @@ self: { homepage = "http://neugierig.org/software/darcs/whim/"; description = "A Haskell window manager"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whiskers" = callPackage @@ -235335,7 +235713,6 @@ self: { homepage = "https://github.com/haroldl/whitespace-nd"; description = "Whitespace, an esoteric programming language"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whois" = callPackage @@ -235390,8 +235767,8 @@ self: { }: mkDerivation { pname = "wikicfp-scraper"; - version = "0.1.0.0"; - sha256 = "a930753e1af83b5f2f033da302d57ba2be24a2bd8e5a4ae304f7af89cfd8fe89"; + version = "0.1.0.1"; + sha256 = "933bd1ac12d98933d5ef1aa25ca21beb18910d5666ef2fa74d1de169f057897a"; libraryHaskellDepends = [ attoparsec base bytestring scalpel text time ]; @@ -235419,7 +235796,6 @@ self: { homepage = "http://rampa.sk/static/wikipedia4epub.html"; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "win-hp-path" = callPackage @@ -235454,7 +235830,6 @@ self: { homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winerror" = callPackage @@ -235466,7 +235841,6 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "winio" = callPackage @@ -235484,7 +235858,6 @@ self: { homepage = "http://github.com/felixmar/winio"; description = "I/O library for Windows"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {kernel32 = null; ws2_32 = null;}; "wiring" = callPackage @@ -235499,6 +235872,7 @@ self: { testHaskellDepends = [ base hspec mtl QuickCheck template-haskell transformers ]; + jailbreak = true; homepage = "http://github.com/seanparsons/wiring/"; description = "Wiring, promotion and demotion of types"; license = stdenv.lib.licenses.bsd3; @@ -235530,7 +235904,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "withdependencies" = callPackage + "withdependencies_0_2_2_1" = callPackage ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }: mkDerivation { pname = "withdependencies"; @@ -235538,12 +235912,14 @@ self: { sha256 = "5f55d1b520b02c158b24646f417aa03363dfea5b508248d483b9431c5fcd167e"; libraryHaskellDepends = [ base conduit containers mtl ]; testHaskellDepends = [ base conduit hspec HUnit mtl ]; + jailbreak = true; homepage = "https://github.com/bartavelle/withdependencies"; description = "Run computations that depend on one or more elements in a stream"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "withdependencies_0_2_3" = callPackage + "withdependencies" = callPackage ({ mkDerivation, base, conduit, containers, hspec, HUnit, mtl }: mkDerivation { pname = "withdependencies"; @@ -235554,7 +235930,6 @@ self: { homepage = "https://github.com/bartavelle/withdependencies"; description = "Run computations that depend on one or more elements in a stream"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "witherable_0_1_3" = callPackage @@ -235663,6 +236038,8 @@ self: { pname = "wizards"; version = "1.0.2"; sha256 = "4ba12c726d60688b8173db3891aa1dce7f57c6364c40ba2f1c2c8d16404bd30b"; + revision = "1"; + editedCabalFile = "b3c3ae6f428cc28ab148d2ae62532a5ba3965f11c1f5d99b48b59b5d9af57c97"; libraryHaskellDepends = [ base containers control-monad-free haskeline mtl transformers ]; @@ -235682,10 +236059,10 @@ self: { testHaskellDepends = [ base filepath lens linear tasty tasty-golden trifecta ]; + jailbreak = true; homepage = "http://github.com/bgamari/wkt"; description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wl-pprint_1_1" = callPackage @@ -235726,6 +236103,7 @@ self: { ansi-terminal base bytestring containers mtl nats semigroups text transformers wl-pprint-extras ]; + jailbreak = true; homepage = "https://github.com/seagull-kamome/wl-pprint-ansiterm"; description = "ANSI Terminal support with wl-pprint-extras"; license = stdenv.lib.licenses.bsd3; @@ -235807,6 +236185,7 @@ self: { base bytestring containers nats semigroups terminfo text transformers wl-pprint-extras ]; + jailbreak = true; homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; description = "A color pretty printer with terminfo support"; license = stdenv.lib.licenses.bsd3; @@ -235865,7 +236244,6 @@ self: { jailbreak = true; description = "Haskell bindings for the wlc library"; license = stdenv.lib.licenses.isc; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -235903,7 +236281,6 @@ self: { homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woffex" = callPackage @@ -235920,7 +236297,6 @@ self: { jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wol" = callPackage @@ -235971,7 +236347,6 @@ self: { homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woot" = callPackage @@ -236030,7 +236405,6 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/word24"; description = "24-bit word and int types for GHC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "word8_0_1_1" = callPackage @@ -236131,7 +236505,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wordpass" = callPackage + "wordpass_1_0_0_4" = callPackage ({ mkDerivation, base, containers, deepseq, directory, filepath , hflags, random-fu, random-source, text, unix-compat, vector }: @@ -236149,6 +236523,31 @@ self: { base containers deepseq directory filepath hflags random-fu random-source text unix-compat vector ]; + jailbreak = true; + homepage = "https://github.com/mgajda/wordpass"; + description = "Dictionary-based password generator"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wordpass" = callPackage + ({ mkDerivation, base, containers, deepseq, directory, filepath + , hflags, random-fu, random-source, text, unix-compat, vector + }: + mkDerivation { + pname = "wordpass"; + version = "1.0.0.5"; + sha256 = "7a867bf67adbb50fe4a87d2ed5d83f2b21c9aed6ad29b4599fecf9d0442e208c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers deepseq directory filepath random-fu random-source + text unix-compat vector + ]; + executableHaskellDepends = [ + base containers deepseq directory filepath hflags random-fu + random-source text unix-compat vector + ]; homepage = "https://github.com/mgajda/wordpass"; description = "Dictionary-based password generator"; license = stdenv.lib.licenses.bsd3; @@ -236177,7 +236576,6 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wordsetdiff" = callPackage @@ -236218,7 +236616,6 @@ self: { homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wp-archivebot" = callPackage @@ -236235,7 +236632,6 @@ self: { jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wrap" = callPackage @@ -236281,7 +236677,6 @@ self: { homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wreq_0_3_0_1" = callPackage @@ -236455,7 +236850,6 @@ self: { jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wsdl" = callPackage @@ -236504,7 +236898,6 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wtk-gtk" = callPackage @@ -236520,7 +236913,6 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-basic" = callPackage @@ -236537,7 +236929,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Basic objects and system code built on Wumpus-Core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-core" = callPackage @@ -236553,7 +236944,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Pure Haskell PostScript and SVG generation"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-drawing" = callPackage @@ -236570,7 +236960,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "High-level drawing objects built on Wumpus-Basic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-microprint" = callPackage @@ -236588,7 +236977,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-tree" = callPackage @@ -236606,7 +236994,6 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Drawing trees"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wuss" = callPackage @@ -236634,7 +237021,6 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxAsteroids" = callPackage @@ -236649,7 +237035,6 @@ self: { homepage = "https://wiki.haskell.org/WxAsteroids"; description = "Try to avoid the asteroids with your space ship"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxFruit" = callPackage @@ -236666,7 +237051,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxc" = callPackage @@ -236684,7 +237068,6 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -236704,7 +237087,6 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell core"; license = "unknown"; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -236720,6 +237102,7 @@ self: { executableHaskellDepends = [ base containers directory filepath parsec process strict time ]; + jailbreak = true; homepage = "https://wiki.haskell.org/WxHaskell"; description = "helper tool for building wxHaskell"; license = stdenv.lib.licenses.bsd3; @@ -236738,7 +237121,6 @@ self: { homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxturtle" = callPackage @@ -236754,7 +237136,6 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wybor" = callPackage @@ -236797,7 +237178,6 @@ self: { homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x-dsp" = callPackage @@ -236816,7 +237196,6 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x11-xim" = callPackage @@ -236845,7 +237224,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/x11-xinput"; description = "Haskell FFI bindings for X11 XInput library (-lXi)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXi;}; "x509_1_5_0_1" = callPackage @@ -237248,7 +237626,6 @@ self: { ]; description = "Haskell extended file attributes interface"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) attr;}; "xbattbar" = callPackage @@ -237263,7 +237640,6 @@ self: { homepage = "https://github.com/polachok/xbattbar"; description = "Simple battery indicator"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xcb-types" = callPackage @@ -237321,7 +237697,6 @@ self: { ]; description = "XChat"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" ]; }) {}; "xcp" = callPackage @@ -237335,11 +237710,12 @@ self: { libraryHaskellDepends = [ base bytestring containers mtl network transformers ]; + jailbreak = true; description = "Partial implementation of the XCP protocol with ethernet as transport layer"; license = stdenv.lib.licenses.gpl3; }) {}; - "xdcc" = callPackage + "xdcc_1_0_2" = callPackage ({ mkDerivation, ascii-progress, base, bytestring, case-insensitive , concurrent-extra, concurrent-output, errors, iproute, irc-ctcp , irc-dcc, network, optparse-applicative, path, random, simpleirc @@ -237356,6 +237732,31 @@ self: { concurrent-output errors iproute irc-ctcp irc-dcc network optparse-applicative path random simpleirc transformers unix ]; + jailbreak = true; + homepage = "https://github.com/JanGe/xdcc"; + description = "A wget-like utility for retrieving files from XDCC bots on IRC"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xdcc" = callPackage + ({ mkDerivation, ascii-progress, base, bytestring, case-insensitive + , concurrent-extra, concurrent-output, errors, iproute, irc-ctcp + , irc-dcc, lifted-base, network, optparse-applicative, path, random + , simpleirc, transformers, unix-compat + }: + mkDerivation { + pname = "xdcc"; + version = "1.0.3"; + sha256 = "620a3ebb7f62f58c4a3653827cee902d2eb4defa149de40c06d9732bfb7b3ccd"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ascii-progress base bytestring case-insensitive concurrent-extra + concurrent-output errors iproute irc-ctcp irc-dcc lifted-base + network optparse-applicative path random simpleirc transformers + unix-compat + ]; homepage = "https://github.com/JanGe/xdcc"; description = "A wget-like utility for retrieving files from XDCC bots on IRC"; license = stdenv.lib.licenses.mit; @@ -237394,8 +237795,8 @@ self: { }: mkDerivation { pname = "xdot"; - version = "0.3"; - sha256 = "27f87b5a772d9a86ffc1866fc7f1b76a2ae14fdfaf791a5fcbedd32c5b15e104"; + version = "0.3.0.1"; + sha256 = "b09a56644ebfd3dba6e4c3a68a7dcb09d00ed20ea71583a7d5168615e356ae3d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -237404,10 +237805,8 @@ self: { executableHaskellDepends = [ base cairo graphviz gtk3 text transformers ]; - jailbreak = true; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xenstore" = callPackage @@ -237439,7 +237838,6 @@ self: { homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {libxfconf-0 = null;}; "xformat" = callPackage @@ -237470,7 +237868,6 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhb" = callPackage @@ -237523,7 +237920,6 @@ self: { homepage = "http://github.com/jotrk/xhb-ewmh/"; description = "EWMH utilities for XHB"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xhtml_3000_2_1" = callPackage @@ -237583,7 +237979,6 @@ self: { homepage = "http://github.com/joachifm/hxine"; description = "Bindings to xine-lib"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -237609,7 +238004,6 @@ self: { homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xinput-conduit" = callPackage @@ -237644,7 +238038,6 @@ self: { testHaskellDepends = [ base unix ]; description = "Haskell bindings for libxkbcommon"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -237663,7 +238056,6 @@ self: { homepage = "http://github.com/sellweek/xkcd"; description = "Downloads the most recent xkcd comic"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsior" = callPackage @@ -237717,6 +238109,7 @@ self: { base containers HUnit old-time smallcheck tasty tasty-hunit tasty-smallcheck time ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237750,6 +238143,7 @@ self: { base containers HUnit old-time smallcheck tasty tasty-hunit tasty-smallcheck time xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237783,6 +238177,7 @@ self: { base containers HUnit old-time smallcheck tasty tasty-hunit tasty-smallcheck time xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237816,6 +238211,7 @@ self: { base containers HUnit old-time smallcheck tasty tasty-hunit tasty-smallcheck time xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237849,6 +238245,7 @@ self: { base bytestring containers HUnit lens smallcheck tasty tasty-hunit tasty-smallcheck time vector xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237882,6 +238279,7 @@ self: { base bytestring containers HUnit lens smallcheck tasty tasty-hunit tasty-smallcheck time vector xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237915,6 +238313,7 @@ self: { base bytestring containers HUnit lens smallcheck tasty tasty-hunit tasty-smallcheck time vector xml-conduit ]; + jailbreak = true; homepage = "https://github.com/qrilka/xlsx"; description = "Simple and incomplete Excel file parser/writer"; license = stdenv.lib.licenses.mit; @@ -237988,7 +238387,6 @@ self: { homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml_1_3_13" = callPackage @@ -238048,7 +238446,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-conduit_1_2_3" = callPackage @@ -238148,6 +238545,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.bsd3; @@ -238173,6 +238571,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.bsd3; @@ -238198,6 +238597,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.bsd3; @@ -238223,6 +238623,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238248,6 +238649,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238273,6 +238675,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238298,6 +238701,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238323,6 +238727,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238348,6 +238753,7 @@ self: { base blaze-markup bytestring conduit containers hspec HUnit resourcet text transformers xml-types ]; + jailbreak = true; homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the conduit package"; license = stdenv.lib.licenses.mit; @@ -238465,7 +238871,6 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-enumerator-combinators" = callPackage @@ -238484,7 +238889,6 @@ self: { jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-extractors" = callPackage @@ -238494,6 +238898,7 @@ self: { version = "0.4.0.1"; sha256 = "38ffa6ab354dcaddbdd1ca4c187418715fd7d7de77abc4861c9840c88bce1e79"; libraryHaskellDepends = [ base mtl safe transformers xml ]; + jailbreak = true; homepage = "https://github.com/holmisen/xml-extractors"; description = "Extension to the xml package to extract data from parsed xml"; license = stdenv.lib.licenses.bsd3; @@ -238644,7 +239049,6 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Parsing XML with Parsec"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-picklers" = callPackage @@ -238674,7 +239078,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki"; description = "XML parser which uses simple-pipe"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-prettify" = callPackage @@ -238690,7 +239093,6 @@ self: { homepage = "http://github.com/rosenbergdm/xml-prettify"; description = "Pretty print XML"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-push" = callPackage @@ -238712,7 +239114,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query" = callPackage @@ -238742,7 +239143,6 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -238767,7 +239167,6 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-to-json" = callPackage @@ -238888,7 +239287,6 @@ self: { homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml2x" = callPackage @@ -238907,7 +239305,6 @@ self: { jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmlgen" = callPackage @@ -238989,7 +239386,6 @@ self: { homepage = "http://github.com/dagle/hs-xmltv"; description = "Show tv channels in the terminal"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client" = callPackage @@ -239006,7 +239402,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -239019,7 +239414,6 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmobar" = callPackage @@ -239048,7 +239442,6 @@ self: { homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {Xrender = null; inherit (pkgs.xorg) libXpm; inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; @@ -239071,6 +239464,7 @@ self: { testHaskellDepends = [ base containers extensible-exceptions QuickCheck X11 ]; + doCheck = false; postInstall = '' shopt -s globstar mkdir -p $out/share/man/man1 @@ -239099,7 +239493,6 @@ self: { homepage = "http://xmonad.org"; description = "A tiling window manager"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib" = callPackage @@ -239141,7 +239534,6 @@ self: { homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-contrib-gpl" = callPackage @@ -239189,7 +239581,6 @@ self: { homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-extras" = callPackage @@ -239223,7 +239614,6 @@ self: { homepage = "https://github.com/supki/xmonad-screenshot"; description = "Workspaces screenshooting utility for XMonad"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-utils" = callPackage @@ -239238,7 +239628,6 @@ self: { homepage = "https://github.com/LeifW/xmonad-utils"; description = "A small collection of X utilities"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xmonad-wallpaper" = callPackage @@ -239284,7 +239673,6 @@ self: { homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki"; description = "XMPP implementation using simple-PIPE"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xorshift" = callPackage @@ -239309,7 +239697,6 @@ self: { homepage = "http://code.haskell.org/~dons/code/xosd"; description = "A binding to the X on-screen display"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) xosd;}; "xournal-builder" = callPackage @@ -239349,7 +239736,6 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-parser" = callPackage @@ -239387,7 +239773,6 @@ self: { jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xournal-types" = callPackage @@ -239441,7 +239826,6 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xsd" = callPackage @@ -239482,7 +239866,6 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {xslt = null;}; "xss-sanitize_0_3_5_4" = callPackage @@ -239583,7 +239966,6 @@ self: { homepage = "http://github.com/alanz/xtc"; description = "eXtended & Typed Controls for wxHaskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xtest" = callPackage @@ -239650,7 +240032,6 @@ self: { jailbreak = true; description = "#plaimi's all-encompassing bot"; license = stdenv.lib.licenses.agpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yabi" = callPackage @@ -239832,7 +240213,6 @@ self: { homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search"; description = "Yahoo Web Search Services"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yajl" = callPackage @@ -239847,7 +240227,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Bindings for YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -239865,7 +240244,6 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yall" = callPackage @@ -240255,7 +240633,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-scotty" = callPackage @@ -240273,7 +240650,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Scotty server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -240291,7 +240667,6 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Snap server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -240312,7 +240687,6 @@ self: { homepage = "https://github.com/michelk/yaml-overrides.hs"; description = "Read multiple yaml-files and override fields recursively"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml2owl" = callPackage @@ -240331,7 +240705,6 @@ self: { homepage = "http://github.com/leifw/yaml2owl"; description = "Generate OWL schema from YAML syntax, and an RDFa template"; license = "LGPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yamlkeysdiff" = callPackage @@ -240367,7 +240740,6 @@ self: { executableHaskellDepends = [ base blank-canvas text Yampa ]; description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yampa-glfw" = callPackage @@ -240387,7 +240759,6 @@ self: { homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa-glut" = callPackage @@ -240410,7 +240781,6 @@ self: { homepage = "https://github.com/ony/yampa-glut"; description = "Connects Yampa and GLUT"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yampa2048" = callPackage @@ -240426,7 +240796,6 @@ self: { homepage = "https://github.com/ksaveljev/yampa-2048"; description = "2048 game clone using Yampa/Gloss"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "x86_64-linux" ]; }) {}; "yaop" = callPackage @@ -240441,7 +240810,6 @@ self: { homepage = "https://github.com/esmolanka/yaop"; description = "Yet another option parser"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yap" = callPackage @@ -240492,7 +240860,6 @@ self: { jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yarr-image-io" = callPackage @@ -240506,7 +240873,6 @@ self: { jailbreak = true; description = "Image IO for Yarr library"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "yate" = callPackage @@ -240524,9 +240890,9 @@ self: { testHaskellDepends = [ attoparsec base hspec mtl unordered-containers vector ]; + jailbreak = true; description = "Yet Another Template Engine"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yavie" = callPackage @@ -240545,7 +240911,6 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ycextra" = callPackage @@ -240560,7 +240925,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yeganesh" = callPackage @@ -240643,7 +241007,6 @@ self: { ]; description = "YesQL-style SQL database abstraction"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod_1_4_1_1" = callPackage @@ -240875,10 +241238,10 @@ self: { base blaze-html containers directory hjsmin mtl resourcet shakespeare template-haskell text transformers yesod yesod-core ]; + jailbreak = true; homepage = "https://github.com/tolysz/yesod-angular-ui"; description = "Angular Helpers"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth_1_4_1" = callPackage @@ -241184,6 +241547,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241214,6 +241578,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241244,6 +241609,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241274,6 +241640,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241304,6 +241671,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241334,6 +241702,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241364,6 +241733,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241394,6 +241764,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241424,6 +241795,7 @@ self: { resourcet safe shakespeare template-haskell text time transformers unordered-containers wai yesod-core yesod-form yesod-persistent ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Authentication for Yesod"; license = stdenv.lib.licenses.mit; @@ -241477,6 +241849,7 @@ self: { base bytestring hspec monad-logger mtl persistent-sqlite resourcet text xml-conduit yesod yesod-auth yesod-test ]; + jailbreak = true; homepage = "https://bitbucket.org/wuzzeb/yesod-auth-account"; description = "An account authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; @@ -241526,6 +241899,7 @@ self: { base bytestring hspec monad-logger mtl persistent-sqlite resourcet text xml-conduit yesod yesod-auth yesod-test ]; + jailbreak = true; homepage = "https://github.com/meteficha/yesod-auth-account-fork"; description = "An account authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; @@ -241581,6 +241955,7 @@ self: { http-conduit http-types template-haskell text time transformers yesod-auth yesod-core ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/yesod-auth-deskcom"; description = "Desk.com remote authentication support for Yesod apps."; license = stdenv.lib.licenses.bsd3; @@ -241600,6 +241975,7 @@ self: { shakespeare text time transformers wai yesod-auth yesod-core yesod-fb ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/yesod-auth-fb"; description = "Authentication backend for Yesod using Facebook"; license = stdenv.lib.licenses.bsd3; @@ -241620,6 +241996,7 @@ self: { shakespeare text time transformers wai yesod-auth yesod-core yesod-fb ]; + jailbreak = true; homepage = "https://github.com/prowdsponsor/yesod-auth-fb"; description = "Authentication backend for Yesod using Facebook"; license = stdenv.lib.licenses.bsd3; @@ -241723,6 +242100,7 @@ self: { yesod-core yesod-form yesod-persistent ]; testHaskellDepends = [ base hspec text ]; + jailbreak = true; homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; @@ -241787,6 +242165,7 @@ self: { authenticate-kerberos base bytestring shakespeare text transformers yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Kerberos Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -241808,7 +242187,6 @@ self: { homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -241856,6 +242234,7 @@ self: { authenticate-oauth base bytestring lifted-base text transformers yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "OAuth Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -241874,6 +242253,7 @@ self: { authenticate-oauth base bytestring lifted-base text transformers yesod-auth yesod-core yesod-form ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "OAuth Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; @@ -242098,6 +242478,7 @@ self: { base containers http-conduit load-env text warp yesod yesod-auth ]; testHaskellDepends = [ base hspec ]; + jailbreak = true; homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; @@ -242116,7 +242497,6 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-smbclient" = callPackage @@ -242134,7 +242514,6 @@ self: { homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git"; description = "Authentication plugin for Yesod using smbclient"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-auth-zendesk" = callPackage @@ -243248,7 +243627,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-bin" = callPackage + "yesod-bin_1_4_18_1" = callPackage ({ mkDerivation, async, attoparsec, base, base64-bytestring , blaze-builder, bytestring, Cabal, conduit, conduit-extra , containers, data-default-class, deepseq, directory, file-embed @@ -243279,9 +243658,10 @@ self: { homepage = "http://www.yesodweb.com/"; description = "The yesod helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-bin_1_4_18_2" = callPackage + "yesod-bin" = callPackage ({ mkDerivation, async, attoparsec, base, base64-bytestring , blaze-builder, bytestring, Cabal, conduit, conduit-extra , containers, data-default-class, deepseq, directory, file-embed @@ -243312,7 +243692,6 @@ self: { homepage = "http://www.yesodweb.com/"; description = "The yesod helper executable"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-bootstrap" = callPackage @@ -243354,7 +243733,6 @@ self: { homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-content-pdf" = callPackage @@ -243377,7 +243755,6 @@ self: { homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; description = "PDF Content Type for Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-continuations" = callPackage @@ -243397,7 +243774,6 @@ self: { homepage = "https://github.com/softmechanics/yesod-continuations/"; description = "Continuations for Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-core_1_4_6" = callPackage @@ -244377,8 +244753,8 @@ self: { }: mkDerivation { pname = "yesod-crud"; - version = "0.1.4"; - sha256 = "35dd4afab3aa24a64c5a7a63b87b325b7ea0f58ee03530d11be97f96c47c7ff2"; + version = "0.1.7"; + sha256 = "151038f8183c0c65a540ec6823e9dd1ab32c6b6f56db07ef05366396023e0139"; libraryHaskellDepends = [ base classy-prelude containers MissingH monad-control persistent random safe stm uuid yesod-core yesod-form yesod-persistent @@ -244386,7 +244762,6 @@ self: { homepage = "https://github.com/league/yesod-crud"; description = "Generic administrative CRUD operations as a Yesod subsite"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-crud-persist" = callPackage @@ -244455,7 +244830,6 @@ self: { homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-default" = callPackage @@ -244552,7 +244926,6 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) sqlite;}; "yesod-fay_0_7_0" = callPackage @@ -244932,7 +245305,6 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-ip" = callPackage @@ -245001,7 +245373,6 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links"; description = "A typeclass which simplifies creating link widgets throughout your site"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-lucid" = callPackage @@ -245120,7 +245491,6 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-markdown" = callPackage @@ -245158,7 +245528,6 @@ self: { homepage = "https://github.com/mgsloan/yesod-media-simple"; description = "Simple display of media types, served by yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yesod-newsfeed_1_4_0" = callPackage @@ -245241,7 +245610,6 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pagination" = callPackage @@ -245261,7 +245629,6 @@ self: { homepage = "https://github.com/joelteon/yesod-pagination"; description = "Pagination in Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-paginator" = callPackage @@ -245345,6 +245712,7 @@ self: { base blaze-builder conduit hspec persistent persistent-sqlite text wai-extra yesod-core ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Some helpers for using Persistent from Yesod"; license = stdenv.lib.licenses.mit; @@ -245368,6 +245736,7 @@ self: { base blaze-builder conduit hspec persistent persistent-sqlite text wai-extra yesod-core ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Some helpers for using Persistent from Yesod"; license = stdenv.lib.licenses.mit; @@ -245487,7 +245856,6 @@ self: { homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pure" = callPackage @@ -245501,7 +245869,6 @@ self: { homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-purescript" = callPackage @@ -245523,7 +245890,6 @@ self: { homepage = "https://github.com/mpietrzak/yesod-purescript"; description = "PureScript integration for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml" = callPackage @@ -245569,7 +245935,6 @@ self: { ]; description = "The raml helper executable"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml-docs" = callPackage @@ -245609,7 +245974,6 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -245686,7 +246050,6 @@ self: { homepage = "https://github.com/docmunch/yesod-routes-typescript"; description = "generate TypeScript routes for Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -245705,7 +246068,6 @@ self: { homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-s3" = callPackage @@ -245723,7 +246085,6 @@ self: { homepage = "https://github.com/tvh/yesod-s3"; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sass" = callPackage @@ -245759,7 +246120,6 @@ self: { homepage = "https://github.com/ollieh/yesod-session-redis"; description = "Redis-Powered Sessions for Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sitemap_1_4_0" = callPackage @@ -246152,7 +246512,6 @@ self: { libraryHaskellDepends = [ base hamlet persistent yesod ]; description = "Table view for Yesod applications"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-test_1_4_2" = callPackage @@ -246414,7 +246773,6 @@ self: { homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-text-markdown_0_1_7" = callPackage @@ -246466,7 +246824,6 @@ self: { homepage = "http://github.com/netom/yesod-tls"; description = "Provides main functions using warp-tls for yesod projects"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-transloadit" = callPackage @@ -246513,7 +246870,6 @@ self: { homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-websockets_0_2_0" = callPackage @@ -246640,7 +246996,6 @@ self: { homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yet-another-logger" = callPackage @@ -246673,7 +247028,6 @@ self: { homepage = "https://github.com/alephcloud/hs-yet-another-logger"; description = "Yet Another Logger"; license = stdenv.lib.licenses.asl20; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yhccore" = callPackage @@ -246686,7 +247040,6 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yi_0_12_3" = callPackage @@ -246797,7 +247150,6 @@ self: { homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-contrib" = callPackage @@ -246849,7 +247201,6 @@ self: { homepage = "https://github.com/yi-editor/yi-fuzzy-open"; description = "Fuzzy open plugin for Yi"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-gtk" = callPackage @@ -246900,7 +247251,6 @@ self: { homepage = "https://github.com/Fuuzetsu/yi-monokai"; description = "Monokai colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-rope" = callPackage @@ -246921,7 +247271,6 @@ self: { ]; description = "A rope data structure used by Yi"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-snippet" = callPackage @@ -246934,7 +247283,6 @@ self: { homepage = "https://github.com/yi-editor/yi-snippet"; description = "Snippet support for Yi"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-solarized" = callPackage @@ -246947,7 +247295,6 @@ self: { homepage = "https://github.com/NorfairKing/yi-solarized"; description = "Solarized colour theme for the Yi text editor"; license = stdenv.lib.licenses.mit; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-spolsky" = callPackage @@ -246961,7 +247308,6 @@ self: { homepage = "https://github.com/melrief/yi-spolsky"; description = "Spolsky colour theme for the Yi text editor"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "yi-vty" = callPackage @@ -246985,7 +247331,6 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yices-easy" = callPackage @@ -247039,7 +247384,6 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yjftp-libs" = callPackage @@ -247105,6 +247449,7 @@ self: { version = "0.1.0.0"; sha256 = "d70739d3429dede8800290939dbd08d0e23cacb5717402ba93f931fa80e1335d"; libraryHaskellDepends = [ base free mtl ]; + jailbreak = true; homepage = "https://github.com/mniip/yoctoparsec"; description = "A truly tiny monadic parsing library"; license = stdenv.lib.licenses.mit; @@ -247127,7 +247472,6 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "york-lava" = callPackage @@ -247140,7 +247484,6 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "A library for digital circuit description"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "youtube" = callPackage @@ -247152,6 +247495,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base bytestring process utility-ht ]; + jailbreak = true; description = "Upload video to YouTube via YouTube API"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -247182,7 +247526,6 @@ self: { homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yst" = callPackage @@ -247217,7 +247560,6 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yuuko" = callPackage @@ -247241,7 +247583,6 @@ self: { homepage = "http://github.com/nfjinjing/yuuko"; description = "A transcendental HTML parser gently wrapping the HXT library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yxdb-utils" = callPackage @@ -247280,7 +247621,6 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; - hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "z3" = callPackage @@ -247298,7 +247638,6 @@ self: { homepage = "http://bitbucket.org/iago/z3-haskell"; description = "Bindings for the Z3 Theorem Prover"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {gomp = null; inherit (pkgs) z3;}; "zalgo" = callPackage @@ -247330,7 +247669,6 @@ self: { homepage = "https://github.com/briansniffen/zampolit"; description = "A tool for checking how much work is done on group projects"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zasni-gerna" = callPackage @@ -247343,7 +247681,6 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; description = "lojban parser (zasni gerna)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zcache" = callPackage @@ -247392,7 +247729,6 @@ self: { homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeno" = callPackage @@ -247411,7 +247747,6 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zero_0_1_2" = callPackage @@ -247442,13 +247777,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "zero" = callPackage + "zero_0_1_3_1" = callPackage ({ mkDerivation, base, semigroups }: mkDerivation { pname = "zero"; version = "0.1.3.1"; sha256 = "ff37a60d48c7c6fa648699c7f0d2a6b923b6565d6843e2f90e50218e098bb85b"; libraryHaskellDepends = [ base semigroups ]; + jailbreak = true; + homepage = "https://github.com/phaazon/zero"; + description = "Semigroups with absorption"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "zero" = callPackage + ({ mkDerivation, base, semigroups }: + mkDerivation { + pname = "zero"; + version = "0.1.4"; + sha256 = "38cdc62d9673b8b40999de69da2ec60dab7a65fb1c22133ecd54e0a2ec61d5d5"; + libraryHaskellDepends = [ base semigroups ]; homepage = "https://github.com/phaazon/zero"; description = "Semigroups with absorption"; license = stdenv.lib.licenses.bsd3; @@ -247473,7 +247822,6 @@ self: { ]; description = "Post to 0bin services"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq-haskell" = callPackage @@ -247493,7 +247841,6 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 2.1.x"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -247511,7 +247858,6 @@ self: { homepage = "https://github.com/NicolasT/zeromq3-conduit"; description = "Conduit bindings for zeromq3-haskell"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zeromq3-haskell" = callPackage @@ -247535,7 +247881,6 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 3.x"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zeromq;}; "zeromq4-haskell_0_6_2" = callPackage @@ -247650,7 +247995,6 @@ self: { jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zigbee-znet25" = callPackage @@ -247717,7 +248061,7 @@ self: { ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive , cereal, conduit, conduit-extra, containers, digest, exceptions , filepath, hspec, mtl, path, path-io, plan-b, QuickCheck - , resourcet, semigroups, text, time, transformers + , resourcet, text, time, transformers }: mkDerivation { pname = "zip"; @@ -247726,7 +248070,7 @@ self: { libraryHaskellDepends = [ base bytestring bzlib-conduit case-insensitive cereal conduit conduit-extra containers digest exceptions filepath mtl path - path-io plan-b resourcet semigroups text time transformers + path-io plan-b resourcet text time transformers ]; testHaskellDepends = [ base bytestring conduit containers exceptions filepath hspec path @@ -247736,7 +248080,6 @@ self: { homepage = "https://github.com/mrkkrp/zip"; description = "Operations on zip archives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zip-archive_0_2_3_5" = callPackage @@ -247764,7 +248107,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "zip-archive" = callPackage + "zip-archive_0_2_3_7" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty , process, text, time, unix, zip, zlib @@ -247787,9 +248130,10 @@ self: { homepage = "http://github.com/jgm/zip-archive"; description = "Library for creating and modifying zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zip;}; - "zip-archive_0_3_0_2" = callPackage + "zip-archive" = callPackage ({ mkDerivation, array, base, binary, bytestring, containers , digest, directory, filepath, HUnit, mtl, old-time, pretty , process, text, time, unix, zip, zlib @@ -247812,7 +248156,6 @@ self: { homepage = "http://github.com/jgm/zip-archive"; description = "Library for creating and modifying zip archives"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) zip;}; "zip-conduit" = callPackage @@ -247835,6 +248178,7 @@ self: { base bytestring conduit directory filepath hpc HUnit mtl resourcet temporary test-framework test-framework-hunit time ]; + jailbreak = true; homepage = "https://github.com/tymmym/zip-conduit"; description = "Working with zip archives via conduits"; license = stdenv.lib.licenses.bsd3; @@ -247850,7 +248194,6 @@ self: { homepage = "http://code.haskell.org/~byorgey/code/zipedit"; description = "Create simple list editor interfaces"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zipkin" = callPackage @@ -247864,6 +248207,7 @@ self: { libraryHaskellDepends = [ base bytestring mersenne-random-pure64 mtl safe ]; + jailbreak = true; homepage = "https://github.com/srijs/haskell-zipkin"; description = "Zipkin-style request tracing monad"; license = stdenv.lib.licenses.mit; @@ -247983,6 +248327,7 @@ self: { libraryHaskellDepends = [ base bytestring enumerator transformers zlib-bindings ]; + jailbreak = true; homepage = "http://github.com/maltem/zlib-enum"; description = "Enumerator interface for zlib compression"; license = stdenv.lib.licenses.mit; @@ -248043,6 +248388,7 @@ self: { revision = "2"; editedCabalFile = "167ebeb448d8097a8a7d1375006d1f791139b71ac6ec5f4b66d80d5b2c7eec42"; libraryHaskellDepends = [ base bytestring profunctors zlib ]; + jailbreak = true; homepage = "http://lens.github.io/"; description = "Lenses for zlib"; license = stdenv.lib.licenses.bsd3; @@ -248074,7 +248420,6 @@ self: { homepage = "https://github.com/lucasdicioccio/zmcat"; description = "Command-line tool for ZeroMQ"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zmidi-core" = callPackage @@ -248123,7 +248468,6 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoneinfo" = callPackage @@ -248136,7 +248480,6 @@ self: { jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom" = callPackage @@ -248157,7 +248500,6 @@ self: { homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache" = callPackage @@ -248190,7 +248532,6 @@ self: { jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-pcm" = callPackage @@ -248208,7 +248549,6 @@ self: { jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -248229,7 +248569,6 @@ self: { jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-refs" = callPackage @@ -248256,7 +248595,6 @@ self: { executableHaskellDepends = [ base monads-tf ]; description = "Zot language"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zsh-battery" = callPackage @@ -248271,7 +248609,6 @@ self: { homepage = "https://github.com/MasseR/zsh-battery"; description = "Ascii bars representing battery status"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ztail" = callPackage @@ -248288,9 +248625,9 @@ self: { array base bytestring filepath hinotify process regex-posix time unix unordered-containers ]; + jailbreak = true; description = "Multi-file, colored, filtered log tailer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; } From 577f2b00050b86bca8c582178564596d2c5bb0bd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 25 May 2016 16:28:28 +0200 Subject: [PATCH 096/520] Add LTS Haskell 6.0. --- pkgs/top-level/haskell-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 3b3c2099de18..2bf6dd1ec3d7 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -403,6 +403,11 @@ rec { }; lts-5 = packages.lts-5_18; - lts = packages.lts-5; + lts-6_0 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.0.nix { }; + }; + lts-6 = packages.lts-6_0; + + lts = packages.lts-6; }; } From e343ec082224733aac5a8f34e7b55558390bb2b4 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 May 2016 18:34:11 +0200 Subject: [PATCH 097/520] Switch default Haskell compiler to GHC 8.0.1. --- .../configuration-hackage2nix.yaml | 50 ++++++++++--------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 27 insertions(+), 25 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 5a89cd0aed91..2d5ac2e53296 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -1,32 +1,34 @@ # pkgs/development/haskell-modules/configuration-hackage2nix.yaml -compiler: ghc-7.10.3 +compiler: ghc-8.0.1 core-packages: - - array-0.5.1.0 - - base-4.8.2.0 - - binary-0.7.5.0 - - bin-package-db-0.0.0.0 - - bytestring-0.10.6.0 - - Cabal-1.22.5.0 - - containers-0.5.6.2 - - deepseq-1.4.1.1 - - directory-1.2.2.0 - - filepath-1.4.0.0 - - ghc-7.10.3 - - ghc-prim-0.4.0.0 - - haskeline-0.7.2.1 - - hoopl-3.10.0.2 - - hpc-0.6.0.2 - - integer-gmp-1.0.0.0 - - pretty-1.1.2.0 - - process-1.2.3.0 + - array-0.5.1.1 + - base-4.9.0.0 + - binary-0.8.3.0 + - bytestring-0.10.8.1 + - Cabal-1.24.0.0 + - containers-0.5.7.1 + - deepseq-1.4.2.0 + - directory-1.2.6.2 + - filepath-1.4.1.0 + - ghc-8.0.1 + - ghc-boot-8.0.1 + - ghc-boot-th-8.0.1 + - ghc-prim-0.5.0.0 + - ghci-8.0.1 + - haskeline-0.7.2.3 + - hoopl-3.10.2.1 + - hpc-0.6.0.3 + - integer-gmp-1.0.0.1 + - pretty-1.1.3.3 + - process-1.4.2.0 - rts-1.0 - - template-haskell-2.10.0.0 - - terminfo-0.4.0.1 - - time-1.5.0.1 - - transformers-0.4.2.0 - - unix-2.7.1.0 + - template-haskell-2.11.0.0 + - terminfo-0.4.0.2 + - time-1.6.0.1 + - transformers-0.5.2.0 + - unix-2.7.2.0 - xhtml-3000.2.1 default-package-overrides: diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dfa5560a1850..651bf0bd9174 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4486,7 +4486,7 @@ in haskell = callPackage ./haskell-packages.nix { }; - haskellPackages = haskell.packages.ghc7103.override { + haskellPackages = haskell.packages.ghc801.override { overrides = config.haskellPackageOverrides or (self: super: {}); }; From 900aa316448458dab5b8ab08636a918f298850e2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 May 2016 18:32:41 +0200 Subject: [PATCH 098/520] configuration-hackage2nix.yaml: update list of broken packages --- .../configuration-hackage2nix.yaml | 4172 ----------------- 1 file changed, 4172 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 2d5ac2e53296..bdb696e1713a 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -150,4175 +150,3 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors - 3d-graphics-examples: [ x86_64-darwin ] - 3dmodels: [ i686-linux, x86_64-darwin, x86_64-linux ] - 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] - abc-puzzle: [ x86_64-darwin ] - abcBridge: [ i686-linux, x86_64-darwin, x86_64-linux ] - abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-BuildPlatform: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-EasyRaster-GTK: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-HalfInteger: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-MiniTest: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-Terminal: [ i686-linux, x86_64-darwin, x86_64-linux ] - AC-VanillaArray: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-arithmetic: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-fourier: [ i686-linux, x86_64-darwin, x86_64-linux ] - accelerate-utility: [ i686-linux, x86_64-darwin, x86_64-linux ] - accentuateus: [ i686-linux, x86_64-darwin, x86_64-linux ] - access-time: [ i686-linux, x86_64-darwin, x86_64-linux ] - acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-hq9plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-numbersystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-schoenfinkel: [ i686-linux, x86_64-darwin, x86_64-linux ] - acme-zero: [ i686-linux, x86_64-darwin, x86_64-linux ] - ACME: [ i686-linux, x86_64-darwin, x86_64-linux ] - ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] - activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] - actor: [ i686-linux, x86_64-darwin, x86_64-linux ] - Adaptive-Blaisorblade: [ i686-linux, x86_64-darwin, x86_64-linux ] - adaptive-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] - Adaptive: [ i686-linux, x86_64-darwin, x86_64-linux ] - adhoc-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - adict: [ i686-linux, x86_64-darwin, x86_64-linux ] - adobe-swatch-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] - adp-multi: [ i686-linux, x86_64-darwin, x86_64-linux ] - ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] - AERN-RnToRm-Plot: [ i686-linux, x86_64-linux, x86_64-darwin ] - AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-bson: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-diff: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-schema: [ i686-linux, x86_64-darwin, x86_64-linux ] - aeson-smart: [ i686-linux, x86_64-darwin, x86_64-linux ] - AesonBson: [ i686-linux, x86_64-darwin, x86_64-linux ] - AFSM: [ i686-linux, x86_64-darwin, x86_64-linux ] - afv: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agata: [ i686-linux, x86_64-darwin, x86_64-linux ] - Agda-executable: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-snippets-hakyll: [ i686-linux, x86_64-darwin, x86_64-linux ] - agda-snippets: [ i686-linux, x86_64-darwin, x86_64-linux ] - AGI: [ i686-linux, x86_64-darwin, x86_64-linux ] - AhoCorasick: [ i686-linux, x86_64-darwin, x86_64-linux ] - airbrake: [ i686-linux, x86_64-darwin, x86_64-linux ] - ajhc: [ i686-linux, x86_64-darwin, x86_64-linux ] - al: [ i686-linux, x86_64-darwin, x86_64-linux ] - alea: [ i686-linux, x86_64-darwin, x86_64-linux ] - alga: [ i686-linux ] - algebra-sql: [ i686-linux, x86_64-darwin, x86_64-linux ] - algebraic: [ i686-linux, x86_64-darwin, x86_64-linux ] - AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - Allure: [ i686-linux, x86_64-darwin, x86_64-linux ] - alms: [ i686-linux, x86_64-darwin, x86_64-linux ] - alpha: [ i686-linux, x86_64-darwin, x86_64-linux ] - alpino-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - alsa-core: [ x86_64-darwin ] - alsa-gui: [ x86_64-darwin ] - alsa-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] - alsa-mixer: [ x86_64-darwin ] - alsa-pcm-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] - alsa-pcm: [ x86_64-darwin ] - alsa-seq-tests: [ i686-linux, x86_64-linux, x86_64-darwin ] - alsa-seq: [ x86_64-darwin ] - alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] - altfloat: [ i686-linux, x86_64-darwin, x86_64-linux ] - alure: [ i686-linux, x86_64-darwin, x86_64-linux ] - ALUT: [ x86_64-darwin ] - amazon-emailer: [ i686-linux, x86_64-darwin, x86_64-linux ] - amazon-products: [ i686-linux, x86_64-darwin, x86_64-linux ] - amazonka-rds: [ i686-linux ] - amazonka-sqs: [ i686-linux ] - AMI: [ i686-linux, x86_64-darwin, x86_64-linux ] - ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] - anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] - android-lint-summary: [ i686-linux, x86_64-darwin, x86_64-linux ] - AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] - Animas: [ i686-linux, x86_64-darwin, x86_64-linux ] - antfarm: [ i686-linux, x86_64-darwin, x86_64-linux ] - anticiv: [ i686-linux, x86_64-darwin, x86_64-linux ] - antigate: [ i686-linux, x86_64-darwin, x86_64-linux ] - antimirov: [ i686-linux, x86_64-darwin, x86_64-linux ] - antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] - anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] - aosd: [ i686-linux, x86_64-darwin, x86_64-linux ] - apelsin: [ i686-linux, x86_64-darwin, x86_64-linux ] - api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - apiary-helics: [ i686-linux, x86_64-linux ] - apiary-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - apis: [ i686-linux, x86_64-darwin, x86_64-linux ] - apotiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - app-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - appc: [ i686-linux, x86_64-darwin, x86_64-linux ] - ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] - AppleScript: [ i686-linux, x86_64-darwin, x86_64-linux ] - apply-refact: [ x86_64-darwin ] - approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - arb-fft: [ i686-linux, x86_64-darwin, x86_64-linux ] - arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] - archiver: [ i686-linux, x86_64-darwin, x86_64-linux ] - archlinux-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - archlinux: [ i686-linux, x86_64-darwin, x86_64-linux ] - arena: [ i686-linux, x86_64-darwin, x86_64-linux ] - arff: [ i686-linux, x86_64-darwin, x86_64-linux ] - arghwxhaskell: [ x86_64-darwin ] - argon2: [ i686-linux, x86_64-darwin, x86_64-linux ] - argparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - arguedit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] - arion: [ i686-linux, x86_64-darwin, x86_64-linux ] - arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] - arithmetic: [ i686-linux ] - arithmoi: [ i686-linux ] - armada: [ i686-linux, x86_64-darwin, x86_64-linux ] - array-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] - ArrayRef: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrow-improve: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrowapply-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - arrowp: [ i686-linux, x86_64-darwin, x86_64-linux ] - ArrowVHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] - ascii85-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - asic: [ i686-linux, x86_64-darwin, x86_64-linux ] - asil: [ i686-linux, x86_64-darwin, x86_64-linux ] - AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] - assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] - astrds: [ i686-linux, x86_64-linux, x86_64-darwin ] - astview: [ i686-linux, x86_64-darwin, x86_64-linux ] - async-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - aterm-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - atlassian-connect-descriptor: [ i686-linux, x86_64-darwin, x86_64-linux ] - atom-msp430: [ x86_64-darwin, x86_64-linux ] - atomic-primops-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] - atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] - AttoJson: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-text-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - attoparsec-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - Attrac: [ i686-linux, x86_64-darwin, x86_64-linux ] - atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] - audiovisual: [ i686-linux, x86_64-darwin, x86_64-linux ] - augeas: [ i686-linux, x86_64-darwin, x86_64-linux ] - augur: [ i686-linux, x86_64-darwin, x86_64-linux ] - aur: [ i686-linux, x86_64-darwin, x86_64-linux ] - Aurochs: [ i686-linux, x86_64-darwin, x86_64-linux ] - authoring: [ i686-linux, x86_64-darwin, x86_64-linux ] - AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] - autonix-deps-kf5: [ x86_64-darwin ] - autonix-deps: [ x86_64-darwin ] - autoproc: [ i686-linux, x86_64-darwin, x86_64-linux ] - avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] - avers-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - avers-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - AvlTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] - awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-configuration-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-elastic-transcoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-general: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis-reshard: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-performance-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sign4: [ i686-linux, x86_64-darwin, x86_64-linux ] - aws-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] - azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - azurify: [ i686-linux, x86_64-darwin, x86_64-linux ] - b-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - babylon: [ x86_64-darwin ] - backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] - bag: [ i686-linux, x86_64-darwin, x86_64-linux ] - Baggins: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] - bamse: [ i686-linux, x86_64-darwin, x86_64-linux ] - Bang: [ x86_64-darwin ] - barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] - barcodes-code128: [ i686-linux, x86_64-darwin, x86_64-linux ] - barley: [ i686-linux, x86_64-darwin, x86_64-linux ] - Barracuda: [ i686-linux, x86_64-darwin, x86_64-linux ] - barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] - barrier-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - base32-bytestring: [ x86_64-darwin ] - BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] - baskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] - bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] - BCMtools: [ i686-linux, x86_64-darwin, x86_64-linux ] - beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] - beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] - bed-and-breakfast: [ i686-linux, x86_64-darwin, x86_64-linux ] - Befunge93: [ i686-linux, x86_64-darwin, x86_64-linux ] - bein: [ i686-linux, x86_64-darwin, x86_64-linux ] - berkeleydb: [ i686-linux, x86_64-darwin, x86_64-linux ] - BerkeleyDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] - berp: [ i686-linux, x86_64-darwin, x86_64-linux ] - bff: [ i686-linux, x86_64-darwin, x86_64-linux ] - bgzf: [ i686-linux, x86_64-darwin, x86_64-linux ] - bibdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] - bidispec: [ i686-linux, x86_64-darwin, x86_64-linux ] - BigPixel: [ x86_64-darwin ] - billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-main: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-pane: [ i686-linux, x86_64-darwin, x86_64-linux ] - billeksah-services: [ i686-linux, x86_64-darwin, x86_64-linux ] - bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-indexed-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-protocol-zmq: [ i686-linux, x86_64-darwin, x86_64-linux ] - binary-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - bind-marshal: [ i686-linux, x86_64-darwin, x86_64-linux ] - binding-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - binding-wx: [ x86_64-darwin ] - bindings-apr-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-apr: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-bfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-dc1394: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-directfb: [ x86_64-darwin ] - bindings-eskit: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-fann: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-fluidsynth: [ x86_64-darwin ] - bindings-friso: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-GLFW: [ x86_64-darwin ] - bindings-gpgme: [ x86_64-darwin ] - bindings-gsl: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-gts: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-hamlib: [ x86_64-darwin ] - bindings-hdf5: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-K8055: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-levmar: [ x86_64-darwin ] - bindings-libcddb: [ x86_64-darwin ] - bindings-libftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-librrd: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libstemmer: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-linux-videodev2: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-lxc: [ x86_64-darwin ] - bindings-mmap: [ x86_64-darwin ] - bindings-mpdecimal: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-parport: [ x86_64-darwin ] - bindings-portaudio: [ x86_64-darwin ] - bindings-posix: [ x86_64-darwin ] - bindings-ppdev: [ x86_64-darwin ] - bindings-sane: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-sc3: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-sipc: [ i686-linux, x86_64-darwin, x86_64-linux ] - bindings-svm: [ x86_64-darwin ] - bindings-wlc: [ i686-linux, x86_64-darwin, x86_64-linux ] - binembed-example: [ x86_64-darwin ] - bio: [ i686-linux, x86_64-darwin, x86_64-linux ] - Biobase: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseFasta: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] - BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] - biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] - bioinformatics-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - biosff: [ i686-linux, x86_64-darwin, x86_64-linux ] - biostockholm: [ i686-linux, x86_64-darwin, x86_64-linux ] - bird: [ i686-linux, x86_64-darwin, x86_64-linux ] - BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - bit-vector: [ i686-linux ] - bitcoin-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitly-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - Bitly: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitmap-opengl: [ x86_64-darwin ] - bits-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - bits-extras: [ x86_64-darwin ] - bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitspeak: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - bittorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - bitvec: [ i686-linux, x86_64-darwin, x86_64-linux ] - bkr: [ i686-linux, x86_64-darwin, x86_64-linux ] - bla: [ i686-linux, x86_64-darwin, x86_64-linux ] - black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] - blake2: [ i686-linux ] - blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - blakesum: [ i686-linux, x86_64-darwin, x86_64-linux ] - blas-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - blas: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-html-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-html-hexpat: [ i686-linux, x86_64-darwin, x86_64-linux ] - blaze-textual-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - blazeMarker: [ i686-linux, x86_64-darwin, x86_64-linux ] - blip: [ i686-linux, x86_64-darwin, x86_64-linux ] - Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] - blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] - BlogLiterately-diagrams: [ x86_64-darwin ] - bloodhound-amazonka-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] - bloodhound: [ i686-linux, x86_64-darwin, x86_64-linux ] - bloomfilter-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - bloxorz: [ x86_64-darwin ] - blubber: [ x86_64-darwin ] - Blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] - bluetileutils: [ x86_64-darwin ] - board-games: [ i686-linux, x86_64-darwin, x86_64-linux ] - bogre-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] - bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - bond-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - bond: [ i686-linux, x86_64-darwin, x86_64-linux ] - boolean-normal-forms: [ i686-linux, x86_64-darwin, x86_64-linux ] - boolsimplifier: [ i686-linux, x86_64-darwin, x86_64-linux ] - boomslang: [ i686-linux, x86_64-darwin, x86_64-linux ] - borel: [ i686-linux, x86_64-darwin, x86_64-linux ] - bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - bowntz: [ x86_64-darwin ] - Bravo: [ i686-linux, x86_64-darwin, x86_64-linux ] - breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] - breve: [ x86_64-darwin ] - brians-brain: [ i686-linux, x86_64-darwin, x86_64-linux ] - brillig: [ i686-linux, x86_64-darwin, x86_64-linux ] - broker-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - bsd-sysctl: [ i686-linux, x86_64-darwin, x86_64-linux ] - bson-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] - bson-mapping: [ i686-linux, x86_64-darwin, x86_64-linux ] - btree-concurrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - btrfs: [ x86_64-darwin ] - buffer-builder-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - buffer-builder: [ i686-linux ] - buffon: [ i686-linux, x86_64-darwin, x86_64-linux ] - buildbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - buildwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] - bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - Buster: [ i686-linux, x86_64-darwin, x86_64-linux ] - buster: [ i686-linux, x86_64-darwin, x86_64-linux ] - bustle: [ x86_64-darwin ] - butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytable: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestring-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestringparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - bytestringreadp: [ i686-linux, x86_64-darwin, x86_64-linux ] - c-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-graphdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-bundle: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-ghc72: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-install-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-query: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2arch: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2doap: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2ghci: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] - cabocha: [ i686-linux, x86_64-darwin, x86_64-linux ] - cairo-appbase: [ x86_64-darwin ] - cake3: [ i686-linux, x86_64-darwin, x86_64-linux ] - cakyrespa: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - cal3d: [ i686-linux, x86_64-darwin, x86_64-linux ] - calc: [ i686-linux, x86_64-darwin, x86_64-linux ] - calculator: [ x86_64-darwin ] - caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] - caledon: [ i686-linux, x86_64-darwin, x86_64-linux ] - call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] - call: [ i686-linux, x86_64-darwin, x86_64-linux ] - campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] - cantor: [ i686-linux, x86_64-darwin, x86_64-linux ] - cao: [ i686-linux, x86_64-darwin, x86_64-linux ] - cap: [ i686-linux, x86_64-darwin, x86_64-linux ] - Capabilities: [ i686-linux, x86_64-darwin, x86_64-linux ] - capri: [ i686-linux, x86_64-darwin, x86_64-linux ] - caramia: [ x86_64-darwin ] - carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] - carettah: [ i686-linux, x86_64-linux, x86_64-darwin ] - casadi-bindings-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-internal: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-ipopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings-snopt-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] - casadi-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - Cascade: [ i686-linux, x86_64-darwin, x86_64-linux ] - cascading: [ i686-linux, x86_64-darwin, x86_64-linux ] - cash: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassandra-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassava-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] - casui: [ i686-linux, x86_64-darwin, x86_64-linux ] - Catana: [ i686-linux, x86_64-darwin, x86_64-linux ] - catch-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] - categorical-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - cblrepo: [ i686-linux, x86_64-darwin, x86_64-linux ] - CBOR: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-alt: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-cxe: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-exc: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-ref-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont-ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - CC-delcont: [ i686-linux, x86_64-darwin, x86_64-linux ] - cci: [ i686-linux, x86_64-darwin, x86_64-linux ] - cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - cedict: [ i686-linux, x86_64-darwin, x86_64-linux ] - ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - cellrenderer-cairo: [ x86_64-darwin ] - cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - cereal-ieee754: [ i686-linux, x86_64-darwin, x86_64-linux ] - cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] - cf: [ i686-linux, x86_64-darwin, x86_64-linux ] - cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] - cflp: [ i686-linux, x86_64-darwin, x86_64-linux ] - cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] - cgen: [ i686-linux, x86_64-darwin, x86_64-linux ] - cgi-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - chalkboard-viewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - chalkboard: [ i686-linux, x86_64-darwin, x86_64-linux ] - charade: [ i686-linux, x86_64-darwin, x86_64-linux ] - charsetdetect-ae: [ x86_64-darwin ] - charsetdetect: [ x86_64-darwin ] - Chart-gtk: [ x86_64-darwin ] - Chart-simple: [ x86_64-darwin ] - chatter: [ i686-linux, x86_64-darwin, x86_64-linux ] - check-pvp: [ i686-linux, x86_64-darwin, x86_64-linux ] - checked: [ i686-linux, x86_64-darwin, x86_64-linux ] - chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] - chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - Chitra: [ i686-linux, x86_64-darwin, x86_64-linux ] - chorale: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-spec: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - chp: [ i686-linux, x86_64-darwin, x86_64-linux ] - ChristmasTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - chuchu: [ i686-linux, x86_64-darwin, x86_64-linux ] - chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] - cil: [ i686-linux, x86_64-darwin, x86_64-linux ] - cinvoke: [ i686-linux, x86_64-darwin, x86_64-linux ] - cio: [ i686-linux, x86_64-darwin, x86_64-linux ] - citation-resolve: [ i686-linux, x86_64-darwin, x86_64-linux ] - citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - citeproc-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - cityhash: [ x86_64-darwin ] - cjk: [ i686-linux, x86_64-darwin, x86_64-linux ] - clafer: [ i686-linux, x86_64-darwin, x86_64-linux ] - claferIG: [ i686-linux, x86_64-darwin, x86_64-linux ] - claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - clang-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] - CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] - clash-prelude-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - clash: [ i686-linux, x86_64-darwin, x86_64-linux ] - ClassLaws: [ i686-linux, x86_64-darwin, x86_64-linux ] - ClassyPrelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] - clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - cld2: [ x86_64-darwin ] - Clean: [ i686-linux, x86_64-darwin, x86_64-linux ] - clevercss: [ i686-linux, x86_64-darwin, x86_64-linux ] - click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] - clifford: [ i686-linux, x86_64-darwin, x86_64-linux ] - clipper: [ i686-linux, x86_64-darwin, x86_64-linux ] - clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] - clocked: [ i686-linux, x86_64-darwin, x86_64-linux ] - clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - clone-all: [ i686-linux, x86_64-darwin, x86_64-linux ] - cloud-haskell: [ x86_64-darwin ] - cloudfront-signer: [ i686-linux, x86_64-darwin, x86_64-linux ] - cloudyfs: [ i686-linux, x86_64-linux, x86_64-darwin ] - clua: [ i686-linux, x86_64-darwin, x86_64-linux ] - cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] - clustertools: [ i686-linux, x86_64-darwin, x86_64-linux ] - clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmath: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmathml3: [ i686-linux, x86_64-darwin, x86_64-linux ] - CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmdargs-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - cmph: [ i686-linux, x86_64-darwin, x86_64-linux ] - cnc-spec-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - cndict: [ i686-linux, x86_64-darwin, x86_64-linux ] - Coadjute: [ i686-linux, x86_64-darwin, x86_64-linux ] - Codec-Image-DevIL: [ i686-linux, x86_64-darwin, x86_64-linux ] - codec-libevent: [ i686-linux, x86_64-darwin, x86_64-linux ] - codecov-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] - codepad: [ i686-linux, x86_64-darwin, x86_64-linux ] - cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - coinbase-exchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - colada: [ i686-linux, x86_64-darwin, x86_64-linux ] - collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] - collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections-base-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - collections: [ i686-linux, x86_64-darwin, x86_64-linux ] - color-counter: [ i686-linux, x86_64-darwin, x86_64-linux ] - coltrane: [ i686-linux, x86_64-darwin, x86_64-linux ] - com: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinator-interactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - combinatorial-problems: [ i686-linux, x86_64-darwin, x86_64-linux ] - Combinatorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - Commando: [ i686-linux, x86_64-darwin, x86_64-linux ] - commodities: [ i686-linux, x86_64-darwin, x86_64-linux ] - commsec-keyexchange: [ i686-linux, x86_64-darwin, x86_64-linux ] - commsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - comonad-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - compact-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - compilation: [ i686-linux, x86_64-darwin, x86_64-linux ] - complexity: [ i686-linux, x86_64-darwin, x86_64-linux ] - compose-trans: [ i686-linux, x86_64-darwin, x86_64-linux ] - compression: [ i686-linux, x86_64-darwin, x86_64-linux ] - compstrat: [ i686-linux, x86_64-darwin, x86_64-linux ] - comptrans: [ i686-linux, x86_64-darwin, x86_64-linux ] - computational-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] - concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] - concrete-typerep: [ i686-linux, x86_64-darwin, x86_64-linux ] - concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - ConcurrentUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] - Condor: [ i686-linux, x86_64-darwin, x86_64-linux ] - condor: [ i686-linux, x86_64-darwin, x86_64-linux ] - condorcet: [ i686-linux, x86_64-darwin, x86_64-linux ] - conductive-hsc3: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-lame: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-samplerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-audio-sndfile: [ x86_64-darwin ] - conduit-network-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - conduit-resumablesink: [ i686-linux, x86_64-darwin, x86_64-linux ] - config-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] - config-select: [ i686-linux, x86_64-darwin, x86_64-linux ] - Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] - conjure: [ i686-linux, x86_64-darwin, x86_64-linux ] - consistent: [ i686-linux, x86_64-darwin, x86_64-linux ] - const-math-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - ConstraintKinds: [ i686-linux, x86_64-darwin, x86_64-linux ] - constructible: [ i686-linux ] - constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - Consumer: [ i686-linux, x86_64-darwin, x86_64-linux ] - consumers: [ x86_64-darwin ] - container: [ i686-linux, x86_64-darwin, x86_64-linux ] - context-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] - continue: [ i686-linux, x86_64-darwin, x86_64-linux ] - continuum: [ i686-linux, x86_64-darwin, x86_64-linux ] - Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-event: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-attempt: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-failure-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - control-monad-failure: [ i686-linux, x86_64-darwin, x86_64-linux ] - Control-Monad-MultiPass: [ i686-linux, x86_64-darwin, x86_64-linux ] - Control-Monad-ST2: [ i686-linux, x86_64-darwin, x86_64-linux ] - contstuff-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - contstuff-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - convertible-ascii: [ i686-linux, x86_64-darwin, x86_64-linux ] - convertible-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] - copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] - COrdering: [ i686-linux, x86_64-darwin, x86_64-linux ] - core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - core: [ i686-linux, x86_64-darwin, x86_64-linux ] - corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] - CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] - coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - Coroutine: [ i686-linux, x86_64-darwin, x86_64-linux ] - couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - couchdb-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - CouchDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - court: [ i686-linux, x86_64-darwin, x86_64-linux ] - CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpio-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - cplex-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - cplusplus-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpuperf: [ i686-linux, x86_64-darwin, x86_64-linux ] - cpython: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - cqrs-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - cr: [ i686-linux, x86_64-darwin, x86_64-linux ] - crack: [ i686-linux, x86_64-darwin, x86_64-linux ] - Craft3e: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] - craze: [ i686-linux, x86_64-darwin, x86_64-linux ] - crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] - crc: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] - criterion-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - crocodile: [ i686-linux, x86_64-darwin, x86_64-linux ] - cron-compat: [ i686-linux, x86_64-darwin, x86_64-linux ] - cruncher-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - crunghc: [ i686-linux, x86_64-darwin, x86_64-linux ] - crypto-cipher-benchmarks: [ i686-linux, x86_64-darwin, x86_64-linux ] - crypto-enigma: [ i686-linux, x86_64-darwin, x86_64-linux ] - cryptonite-openssl: [ i686-linux, x86_64-darwin, x86_64-linux ] - cryptsy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] - cse-ghc-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - csound-catalog: [ i686-linux, x86_64-linux ] - csp: [ i686-linux, x86_64-darwin, x86_64-linux ] - CSPM-cspm: [ i686-linux, x86_64-darwin, x86_64-linux ] - CSPM-FiringRules: [ i686-linux, x86_64-darwin, x86_64-linux ] - cspmchecker: [ i686-linux, x86_64-darwin, x86_64-linux ] - css: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctkl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ctpl: [ i686-linux, x86_64-darwin, x86_64-linux ] - cubicbezier: [ i686-linux, x86_64-darwin, x86_64-linux ] - cuboid: [ i686-linux, x86_64-darwin ] - cudd: [ i686-linux, x86_64-linux, x86_64-darwin ] - curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] - CurryDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - curves: [ i686-linux, x86_64-darwin, x86_64-linux ] - cv-combinators: [ x86_64-darwin ] - CV: [ i686-linux, x86_64-darwin, x86_64-linux ] - cyclotomic: [ i686-linux ] - cypher: [ i686-linux, x86_64-darwin, x86_64-linux ] - d-bus: [ i686-linux, x86_64-darwin, x86_64-linux ] - DAG-Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dao: [ i686-linux, x86_64-darwin, x86_64-linux ] - dao: [ i686-linux, x86_64-darwin, x86_64-linux ] - dapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-benchmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-beta: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-fastconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs-monitor: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] - DarcsHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - darcswatch: [ i686-linux, x86_64-darwin, x86_64-linux ] - darkplaces-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-cycle: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-dispersal: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-easy: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-ivar: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-named: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-nat: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-object-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-object-yaml: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-quotientref: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] - Data-Rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-rtuple: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] - data-type: [ i686-linux, x86_64-darwin, x86_64-linux ] - datadog: [ i686-linux ] - datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] - DataTreeView: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - DBus: [ i686-linux, x86_64-darwin, x86_64-linux ] - dclabel: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-salt: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-simpl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-source-tetra: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddc-war: [ i686-linux, x86_64-darwin, x86_64-linux ] - ddci-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - dead-simple-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - decepticons: [ i686-linux, x86_64-darwin, x86_64-linux ] - DecisionTree: [ i686-linux, x86_64-darwin, x86_64-linux ] - decoder-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - dedukti: [ i686-linux, x86_64-darwin, x86_64-linux ] - deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepseq-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - deepzoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] - DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-filesystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - definitive-sound: [ i686-linux, x86_64-linux, x86_64-darwin ] - deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - deka: [ i686-linux, x86_64-darwin, x86_64-linux ] - delicious: [ i686-linux, x86_64-darwin, x86_64-linux ] - delta-h: [ i686-linux, x86_64-darwin, x86_64-linux ] - delta: [ x86_64-darwin ] - demarcate: [ i686-linux, x86_64-darwin, x86_64-linux ] - denominate: [ i686-linux, x86_64-darwin, x86_64-linux ] - dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - depends: [ i686-linux, x86_64-darwin, x86_64-linux ] - dephd: [ i686-linux, x86_64-darwin, x86_64-linux ] - dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] - derangement: [ i686-linux, x86_64-darwin, x86_64-linux ] - derivation-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-gadt: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-IG: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] - derive-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] - derp-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - devil: [ x86_64-darwin ] - dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] - dgim: [ i686-linux, x86_64-darwin, x86_64-linux ] - dgs: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-builder: [ x86_64-darwin ] - diagrams-cairo: [ x86_64-darwin ] - diagrams-gtk: [ x86_64-darwin ] - diagrams-haddock: [ x86_64-darwin ] - diagrams-hsqml: [ x86_64-darwin ] - diagrams-pandoc: [ x86_64-darwin ] - diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] - diagrams-reflex: [ i686-linux, x86_64-linux, x86_64-darwin ] - diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] - dialog: [ x86_64-darwin ] - dice-entropy-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - dictparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - diffcabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - DifferenceLogic: [ i686-linux, x86_64-darwin, x86_64-linux ] - DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] - digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - DigitalOcean: [ i686-linux, x86_64-darwin, x86_64-linux ] - DimensionalHash: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - dingo-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] - diophantine: [ i686-linux, x86_64-darwin, x86_64-linux ] - diplomacy-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-binary-files: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - direct-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - directed-cubical: [ i686-linux, x86_64-darwin, x86_64-linux ] - dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] - discogs-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - discount: [ i686-linux, x86_64-darwin, x86_64-linux ] - disjoint-set: [ i686-linux, x86_64-darwin, x86_64-linux ] - DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-async: [ x86_64-darwin ] - distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-client-server: [ x86_64-darwin ] - distributed-process-execution: [ x86_64-darwin ] - distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] - distributed-process-registry: [ x86_64-darwin ] - distributed-process-registry: [ x86_64-darwin ] - distributed-process-registry: [ x86_64-linux ] - distributed-process-supervisor: [ x86_64-darwin ] - distributed-process-task: [ x86_64-darwin ] - distributed-process-tests: [ x86_64-darwin ] - distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] - distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - dixi: [ i686-linux, x86_64-darwin, x86_64-linux ] - djembe: [ x86_64-darwin ] - djinn-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] - dnscache: [ i686-linux, x86_64-darwin, x86_64-linux ] - dnssd: [ i686-linux, x86_64-darwin, x86_64-linux ] - doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] - doccheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - docidx: [ i686-linux, x86_64-darwin, x86_64-linux ] - dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] - doctest-discover-configurator: [ i686-linux, x86_64-darwin, x86_64-linux ] - doctest-discover: [ i686-linux, x86_64-darwin, x86_64-linux ] - DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] - DOM: [ i686-linux, x86_64-darwin, x86_64-linux ] - dotfs: [ x86_64-darwin ] - dow: [ x86_64-darwin ] - download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] - download: [ i686-linux, x86_64-darwin, x86_64-linux ] - DP: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] - dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] - dpkg: [ i686-linux, x86_64-linux, x86_64-darwin ] - DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] - drClickOn: [ i686-linux, x86_64-darwin, x86_64-linux ] - dresdner-verkehrsbetriebe: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrHylo: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrIFT-cabalized: [ i686-linux, x86_64-darwin, x86_64-linux ] - DrIFT: [ i686-linux, x86_64-darwin, x86_64-linux ] - dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] - ds-kanren: [ i686-linux, x86_64-darwin, x86_64-linux ] - dsh-sql: [ i686-linux, x86_64-darwin, x86_64-linux ] - DSH: [ i686-linux, x86_64-darwin, x86_64-linux ] - dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] - DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] - dstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - DTC: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtd: [ i686-linux, x86_64-darwin, x86_64-linux ] - dtw: [ i686-linux, x86_64-darwin, x86_64-linux ] - duplo: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] - dvda: [ i686-linux, x86_64-darwin, x86_64-linux ] - dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-object: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] - DynamicTimeWarp: [ i686-linux, x86_64-darwin, x86_64-linux ] - dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] - DysFRP-Cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - DysFRP-Craftwerk: [ i686-linux, x86_64-darwin, x86_64-linux ] - easy-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyjson: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyplot: [ i686-linux, x86_64-darwin, x86_64-linux ] - easyrender: [ i686-linux, x86_64-darwin, x86_64-linux ] - ebnf-bff: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecdsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] - ecu: [ i686-linux, x86_64-darwin, x86_64-linux ] - ed25519: [ i686-linux, x86_64-darwin, x86_64-linux ] - eddie: [ i686-linux, x86_64-darwin, x86_64-linux ] - edenmodules: [ i686-linux, x86_64-darwin, x86_64-linux ] - edenskel: [ i686-linux, x86_64-darwin, x86_64-linux ] - edentv: [ i686-linux, x86_64-darwin, x86_64-linux ] - edge: [ i686-linux, x86_64-darwin, x86_64-linux ] - edit-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - editline: [ i686-linux, x86_64-darwin, x86_64-linux ] - EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] - EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] - effect-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - effective-aspects-mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] - effective-aspects: [ i686-linux, x86_64-darwin, x86_64-linux ] - egison-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] - ehaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - ehs: [ i686-linux, x86_64-darwin, x86_64-linux ] - eibd-client-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - eigen: [ x86_64-darwin ] - EitherT: [ i686-linux, x86_64-darwin, x86_64-linux ] - ekg-rrd: [ i686-linux ] - electrum-mnemonic: [ i686-linux ] - elerea-examples: [ x86_64-darwin ] - elerea-sdl: [ x86_64-darwin ] - elision: [ i686-linux, x86_64-darwin, x86_64-linux ] - emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] - email-header: [ i686-linux, x86_64-darwin, x86_64-linux ] - email-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - email: [ i686-linux, x86_64-darwin, x86_64-linux ] - embeddock-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - embeddock: [ i686-linux, x86_64-darwin, x86_64-linux ] - embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] - emgm: [ i686-linux, x86_64-darwin, x86_64-linux ] - Emping: [ i686-linux, x86_64-darwin, x86_64-linux ] - Encode: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] - enumfun: [ i686-linux, x86_64-darwin, x86_64-linux ] - EnumMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - env-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - epanet-haskell: [ x86_64-darwin ] - epic: [ x86_64-darwin ] - epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] - epub-metadata: [ x86_64-darwin ] - epub-tools: [ x86_64-darwin ] - epubname: [ i686-linux, x86_64-darwin, x86_64-linux ] - Eq: [ i686-linux, x86_64-darwin, x86_64-linux ] - eros-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] - ersatz-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] - ersatz: [ i686-linux, x86_64-darwin, x86_64-linux ] - esotericbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] - estimators: [ i686-linux, x86_64-darwin, x86_64-linux ] - estreps: [ i686-linux, x86_64-darwin, x86_64-linux ] - Etage-Graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - Etage: [ i686-linux, x86_64-darwin, x86_64-linux ] - EtaMOO: [ x86_64-darwin ] - Eternal10Seconds: [ i686-linux, x86_64-linux, x86_64-darwin ] - eternal: [ i686-linux, x86_64-darwin, x86_64-linux ] - Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] - ethereum-client-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - ethereum-merkle-patricia-db: [ i686-linux, x86_64-darwin, x86_64-linux ] - euphoria: [ i686-linux, x86_64-darwin, x86_64-linux ] - eurofxref: [ i686-linux, x86_64-darwin, x86_64-linux ] - Euterpea: [ i686-linux, x86_64-linux, x86_64-darwin ] - event-driven: [ i686-linux, x86_64-darwin, x86_64-linux ] - event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - eventloop: [ i686-linux, x86_64-darwin, x86_64-linux ] - EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] - ewe: [ i686-linux, x86_64-darwin, x86_64-linux ] - exif: [ i686-linux, x86_64-darwin, x86_64-linux ] - exists: [ i686-linux, x86_64-darwin, x86_64-linux ] - exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] - expand: [ i686-linux, x86_64-darwin, x86_64-linux ] - expat-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - explain: [ i686-linux, x86_64-darwin, x86_64-linux ] - explicit-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - explore: [ i686-linux, x86_64-darwin, x86_64-linux ] - exposed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - extcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] - extended-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] - ez-couch: [ i686-linux, x86_64-darwin, x86_64-linux ] - faceted: [ i686-linux, x86_64-darwin, x86_64-linux ] - factory: [ i686-linux, x86_64-darwin, x86_64-linux ] - factual-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - FailureT: [ i686-linux, x86_64-darwin, x86_64-linux ] - falling-turnip: [ x86_64-darwin, x86_64-linux ] - fallingblocks: [ i686-linux, x86_64-linux, x86_64-darwin ] - family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - farmhash: [ x86_64-darwin ] - fast-digits: [ i686-linux ] - fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] - fastbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] - fastirc: [ i686-linux, x86_64-darwin, x86_64-linux ] - fault-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - fay-hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - fcd: [ i686-linux, x86_64-darwin, x86_64-linux ] - fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] - FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] - fdo-trash: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed-translator: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] - feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] - fenfire: [ i686-linux, x86_64-darwin, x86_64-linux ] - FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] - FerryCore: [ i686-linux, x86_64-darwin, x86_64-linux ] - ffeed: [ i686-linux, x86_64-darwin, x86_64-linux ] - ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] - fibon: [ i686-linux, x86_64-darwin, x86_64-linux ] - fields: [ i686-linux, x86_64-darwin, x86_64-linux ] - FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - fieldwise: [ i686-linux, x86_64-darwin, x86_64-linux ] - file-location: [ x86_64-darwin ] - filecache: [ x86_64-darwin ] - FileManip: [ i686-linux, x86_64-darwin, x86_64-linux ] - FileManipCompat: [ i686-linux, x86_64-darwin, x86_64-linux ] - filesystem-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - filesystem-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - FileSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - Finance-Quote-Yahoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] - find-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - firstify: [ i686-linux, x86_64-darwin, x86_64-linux ] - FirstOrderTheory: [ i686-linux, x86_64-darwin, x86_64-linux ] - fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] - fit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] - fix-parser-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point-vector-space: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-point: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixed-storable-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - fixfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - flexiwrap-smallcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - flexiwrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] - Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] - flite: [ i686-linux, x86_64-darwin, x86_64-linux ] - floating-bits: [ i686-linux, x86_64-darwin, x86_64-linux ] - flow2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowdock-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowdock-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] - flower: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowlocks-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] - flowsim: [ i686-linux, x86_64-darwin, x86_64-linux ] - fltkhs-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] - fltkhs-fluid-demos: [ i686-linux, x86_64-darwin, x86_64-linux ] - fltkhs-hello-world: [ i686-linux, x86_64-darwin, x86_64-linux ] - fluidsynth: [ x86_64-darwin ] - FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] - FModExRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - fold-debounce-conduit: [ x86_64-darwin ] - fold-debounce: [ x86_64-darwin ] - foldl-incremental: [ i686-linux, x86_64-darwin, x86_64-linux ] - folds-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - folds: [ i686-linux, x86_64-linux ] - follower: [ i686-linux, x86_64-darwin, x86_64-linux ] - foma: [ i686-linux, x86_64-darwin, x86_64-linux ] - font-opengl-basic4x6: [ i686-linux, x86_64-darwin, x86_64-linux ] - foo: [ i686-linux, x86_64-darwin, x86_64-linux ] - for-free: [ i686-linux, x86_64-darwin, x86_64-linux ] - forbidden-fruit: [ i686-linux, x86_64-darwin, x86_64-linux ] - fordo: [ i686-linux, x86_64-darwin, x86_64-linux ] - formal: [ i686-linux, x86_64-darwin, x86_64-linux ] - FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] - format-status: [ i686-linux, x86_64-darwin, x86_64-linux ] - format: [ i686-linux, x86_64-darwin, x86_64-linux ] - forml: [ i686-linux, x86_64-darwin, x86_64-linux ] - formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] - ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] - forth-hll: [ i686-linux, x86_64-darwin, x86_64-linux ] - foscam-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] - Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] - fpco-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - FractalArt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Fractaler: [ i686-linux, x86_64-linux, x86_64-darwin ] - frag: [ i686-linux, x86_64-darwin, x86_64-linux ] - franchise: [ i686-linux, x86_64-darwin, x86_64-linux ] - Frank: [ i686-linux, x86_64-darwin, x86_64-linux ] - freddy: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-operational: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-counterexamples: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-seq-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems-webui: [ i686-linux, x86_64-darwin, x86_64-linux ] - free-theorems: [ i686-linux, x86_64-darwin, x86_64-linux ] - freekick2: [ i686-linux, x86_64-linux, x86_64-darwin ] - freenect: [ x86_64-darwin ] - freer: [ i686-linux, x86_64-darwin, x86_64-linux ] - freesect: [ i686-linux, x86_64-darwin, x86_64-linux ] - freesound: [ i686-linux, x86_64-darwin, x86_64-linux ] - FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - friday-juicypixels: [ i686-linux, x86_64-darwin, x86_64-linux ] - frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] - frpnow-gloss: [ x86_64-darwin ] - frpnow-gtk: [ x86_64-darwin ] - fs-events: [ i686-linux, x86_64-darwin, x86_64-linux ] - fsmActions: [ i686-linux, x86_64-darwin, x86_64-linux ] - ftdi: [ i686-linux, x86_64-darwin, x86_64-linux ] - FTGL-bytestring: [ x86_64-darwin ] - FTGL: [ x86_64-darwin ] - ftp-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] - full-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - full-text-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - fullstop: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot-git-hook: [ i686-linux, x86_64-darwin, x86_64-linux ] - funbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - function-combine: [ i686-linux, x86_64-darwin, x86_64-linux ] - functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - functorm: [ i686-linux, x86_64-darwin, x86_64-linux ] - FunGEn: [ x86_64-darwin ] - funion: [ i686-linux, x86_64-linux, x86_64-darwin ] - funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] - future: [ i686-linux, x86_64-darwin, x86_64-linux ] - fuzzytime: [ i686-linux, x86_64-darwin, x86_64-linux ] - fwgl-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] - fwgl: [ i686-linux ] - g-npm: [ i686-linux, x86_64-darwin, x86_64-linux ] - gact: [ i686-linux, x86_64-darwin, x86_64-linux ] - gameclock: [ i686-linux, x86_64-darwin, x86_64-linux ] - Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ganymede: [ i686-linux, x86_64-darwin, x86_64-linux ] - gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gc-monitoring-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - gdiff-ig: [ i686-linux, x86_64-darwin, x86_64-linux ] - gdiff-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - gearbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - GeBoP: [ x86_64-darwin ] - geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - geek: [ i686-linux, x86_64-darwin, x86_64-linux ] - gelatin: [ i686-linux, x86_64-darwin, x86_64-linux ] - gemstone: [ i686-linux, x86_64-linux, x86_64-darwin ] - gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - gender: [ i686-linux, x86_64-darwin, x86_64-linux ] - genders: [ i686-linux, x86_64-darwin, x86_64-linux ] - general-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - GeneralTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - generators: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-accessors: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-church: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-storable: [ i686-linux, x86_64-darwin, x86_64-linux ] - generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] - genericserialize: [ i686-linux, x86_64-darwin, x86_64-linux ] - genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] - geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] - geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] - geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] - GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] - geo-resolver: [ i686-linux, x86_64-linux ] - GeocoderOpenCage: [ i686-linux, x86_64-darwin, x86_64-linux ] - geoip2: [ i686-linux ] - GeoIp: [ i686-linux, x86_64-darwin, x86_64-linux ] - geojson: [ x86_64-darwin ] - geom2d: [ i686-linux, x86_64-darwin ] - GeomPredicates-SSE: [ i686-linux, x86_64-darwin, x86_64-linux ] - getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] - getflag: [ i686-linux, x86_64-darwin, x86_64-linux ] - ggtsTC: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-dup: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-events-parallel: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-exactprint: [ x86_64-darwin ] - ghc-imported-from: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-pkg-autofix: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghc-vis: [ x86_64-darwin ] - ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghci-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] - ghcjs-dom-hello: [ x86_64-darwin ] - ghcjs-dom: [ x86_64-darwin ] - ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] - ght: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-atk: [ i686-linux, x86_64-darwin ] - gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gdkpixbuf: [ i686-linux, x86_64-darwin ] - gi-gio: [ i686-linux ] - gi-girepository: [ i686-linux, x86_64-darwin ] - gi-glib: [ i686-linux ] - gi-gobject: [ i686-linux ] - gi-gst: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gstaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gstbase: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gstvideo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-javascriptcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-notify: [ i686-linux, x86_64-darwin ] - gi-pango: [ i686-linux, x86_64-darwin ] - gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-soup: [ i686-linux, x86_64-darwin ] - gi-vte: [ i686-linux, x86_64-linux, x86_64-darwin ] - gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] - gi-webkit: [ i686-linux, x86_64-linux, x86_64-darwin ] - Gifcurry: [ x86_64-darwin ] - gist: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-all: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-checklist: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-date: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-gpush: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-repair: [ i686-linux, x86_64-darwin, x86_64-linux ] - git-vogue: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitdo: [ i686-linux, x86_64-darwin, x86_64-linux ] - github-backup: [ i686-linux, x86_64-darwin, x86_64-linux ] - github-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-cross: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] - gitlib-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - gl-capture: [ x86_64-darwin ] - gl: [ x86_64-darwin ] - glade: [ i686-linux, x86_64-darwin, x86_64-linux ] - gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - glapp: [ x86_64-darwin ] - GLFW-b-demo: [ x86_64-darwin ] - GLFW-b: [ x86_64-darwin ] - GLFW-OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - GLFW-task: [ x86_64-darwin ] - GLFW: [ x86_64-darwin ] - GLHUI: [ x86_64-darwin ] - glicko: [ i686-linux, x86_64-darwin, x86_64-linux ] - glider-nlp: [ i686-linux, x86_64-darwin, x86_64-linux ] - GLMatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] - global: [ i686-linux, x86_64-darwin, x86_64-linux ] - glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-algorithms: [ x86_64-darwin ] - gloss-banana: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-examples: [ x86_64-darwin ] - gloss-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-juicy: [ i686-linux, x86_64-darwin, x86_64-linux ] - gloss-raster: [ x86_64-darwin ] - gloss-rendering: [ x86_64-darwin ] - gloss-sodium: [ x86_64-darwin ] - gloss: [ x86_64-darwin ] - GLURaw: [ x86_64-darwin ] - GLUT: [ x86_64-darwin ] - GLUtil: [ i686-linux, x86_64-darwin, x86_64-linux ] - gluturtle: [ x86_64-darwin ] - gmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - gmndl: [ i686-linux, x86_64-linux, x86_64-darwin ] - gnome-desktop: [ i686-linux, x86_64-darwin, x86_64-linux ] - gnome-keyring: [ i686-linux, x86_64-linux, x86_64-darwin ] - gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] - gnss-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] - goa: [ i686-linux, x86_64-darwin, x86_64-linux ] - goal-core: [ x86_64-darwin ] - goal-geometry: [ x86_64-darwin ] - goal-probability: [ x86_64-darwin ] - goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] - gofer-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-adexchange-buyer: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-adexchange-seller: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-admin-datatransfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-admin-directory: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-admin-emailmigration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-admin-reports: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-adsense-host: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-adsense: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-affiliates: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-android-enterprise: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-android-publisher: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-appengine: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-apps-activity: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-apps-calendar: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-apps-licensing: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-apps-reseller: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-apps-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-appstate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-autoscaler: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-bigquery: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-billing: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-blogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-books: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-civicinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-classroom: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-cloudtrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-compute: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-container: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-customsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-dataflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-datastore: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-deploymentmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-dfareporting: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-discovery: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-doubleclick-bids: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-doubleclick-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-drive: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-fitness: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-fonts: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-freebasesearch: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-fusiontables: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-games-configuration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-games-management: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-games: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-genomics: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-gmail: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-groups-migration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-groups-settings: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-identity-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-latencytest: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-logging: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-maps-coordinate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-maps-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-mirror: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-monitoring: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-oauth2: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-pagespeed: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-partners: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-play-moviespartner: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-plus-domains: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-prediction: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-proximitybeacon: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-qpxexpress: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-replicapool-updater: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-replicapool: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-resourcemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-resourceviews: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-shopping-content: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-siteverification: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-spectrum: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-sqladmin: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-storage-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-tagmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-taskqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-translate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-urlshortener: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-useraccounts: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-webmaster-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-youtube-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-youtube-reporting: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol-youtube: [ i686-linux, x86_64-darwin, x86_64-linux ] - gogol: [ i686-linux, x86_64-darwin, x86_64-linux ] - gooey: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-mail-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - google-translate: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleDirections: [ i686-linux, x86_64-darwin, x86_64-linux ] - googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] - GoogleTranslate: [ i686-linux, x86_64-darwin, x86_64-linux ] - gopherbot: [ i686-linux, x86_64-darwin, x86_64-linux ] - gore-and-ash-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - gore-and-ash-glfw: [ x86_64-darwin ] - gore-and-ash-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - gore-and-ash-sync: [ i686-linux, x86_64-darwin, x86_64-linux ] - gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe-Collada: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe-GLFW: [ x86_64-darwin ] - GPipe-TextureLoad: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPipe: [ x86_64-darwin ] - gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] - gps: [ i686-linux, x86_64-darwin, x86_64-linux ] - gpx-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] - grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] - GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-records: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-ui-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - grapefruit-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] - graph-rewriting-cl: [ i686-linux, x86_64-darwin, x86_64-linux ] - graph-rewriting-gl: [ x86_64-darwin ] - graph-rewriting-lambdascope: [ x86_64-darwin ] - graph-rewriting-ski: [ x86_64-darwin ] - graph-rewriting-trs: [ x86_64-darwin ] - graph-rewriting-ww: [ x86_64-darwin ] - graph-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] - Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] - GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphics-drawingcombinators: [ x86_64-darwin ] - graphics-formats-collada: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] - graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] - graylog: [ i686-linux, x86_64-darwin, x86_64-linux ] - greencard-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - greencard: [ i686-linux, x86_64-darwin, x86_64-linux ] - greg-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - gremlin-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - Grempa: [ i686-linux, x86_64-darwin, x86_64-linux ] - gridfs: [ i686-linux, x86_64-darwin, x86_64-linux ] - gridland: [ x86_64-darwin ] - grm: [ i686-linux, x86_64-darwin, x86_64-linux ] - groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] - Grow: [ i686-linux, x86_64-darwin, x86_64-linux ] - GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] - gruff-examples: [ i686-linux, x86_64-linux, x86_64-darwin ] - gruff: [ i686-linux, x86_64-linux, x86_64-darwin ] - gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gsl-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - gsmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] - gstreamer: [ i686-linux, x86_64-darwin, x86_64-linux ] - GTALib: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtfs: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-helpers: [ x86_64-darwin ] - gtk-jsinput: [ x86_64-darwin ] - gtk-largeTreeStore: [ x86_64-darwin ] - gtk-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-simple-list-view: [ x86_64-darwin ] - gtk-toggle-button-list: [ x86_64-darwin ] - gtk-toy: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk-traymanager: [ x86_64-darwin ] - gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux, x86_64-darwin ] - gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] - gtk2hs-cast-gtksourceview2: [ x86_64-darwin ] - gtk2hs-hello: [ x86_64-darwin ] - gtk2hs-rpn: [ i686-linux, x86_64-darwin, x86_64-linux ] - Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtk3: [ x86_64-darwin ] - gtk: [ x86_64-darwin ] - gtkglext: [ i686-linux, x86_64-linux, x86_64-darwin ] - GtkGLTV: [ i686-linux, x86_64-linux, x86_64-darwin ] - gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] - gtksourceview2: [ x86_64-darwin ] - gtksourceview3: [ x86_64-darwin ] - GtkTV: [ x86_64-darwin ] - guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] - guid: [ i686-linux, x86_64-darwin, x86_64-linux ] - GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] - gulcii: [ x86_64-darwin ] - h-booru: [ i686-linux, x86_64-darwin, x86_64-linux ] - h-gpgme: [ i686-linux, x86_64-darwin, x86_64-linux ] - H: [ i686-linux, x86_64-darwin ] - haar: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hach: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-contrib-press: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-epoll: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-kibro: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-mongrel2-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-handler-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hack2-interface-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-repo-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-security-HTTP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-security: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackernews: [ i686-linux, x86_64-darwin, x86_64-linux ] - HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] - hackport: [ i686-linux, x86_64-darwin, x86_64-linux ] - hactor: [ i686-linux, x86_64-darwin, x86_64-linux ] - haddock-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] - haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haggressive: [ i686-linux, x86_64-darwin, x86_64-linux ] - haiji: [ i686-linux, x86_64-darwin, x86_64-linux ] - hairy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakaru: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakismet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-agda: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-blaze-templates: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-contrib-links: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - hakyll-R: [ i686-linux, x86_64-darwin, x86_64-linux ] - halberd: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaLeX: [ i686-linux, x86_64-darwin, x86_64-linux ] - halfs: [ i686-linux, x86_64-linux, x86_64-darwin ] - halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] - halma: [ x86_64-darwin ] - hamid: [ x86_64-darwin ] - hampp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hamtmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hamusic: [ i686-linux, x86_64-darwin, x86_64-linux ] - handa-opengl: [ x86_64-darwin ] - handsy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hannahci: [ i686-linux, x86_64-darwin, x86_64-linux ] - haphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] - happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] - happindicator: [ i686-linux, x86_64-darwin, x86_64-linux ] - happraise: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] - happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] - HAppS-Util: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara-webkit-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - happybara: [ i686-linux, x86_64-darwin, x86_64-linux ] - harchive: [ i686-linux, x86_64-darwin, x86_64-linux ] - hardware-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaRe: [ x86_64-darwin ] - hark: [ i686-linux, x86_64-darwin, x86_64-linux ] - HARM: [ i686-linux, x86_64-darwin, x86_64-linux ] - harmony: [ i686-linux, x86_64-darwin, x86_64-linux ] - HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] - HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - haroonga-httpd: [ i686-linux, x86_64-darwin, x86_64-linux ] - haroonga: [ i686-linux, x86_64-darwin, x86_64-linux ] - has-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - has: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascal: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] - hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haschoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hash: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashable-generics: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashed-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] - hashids: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasim: [ i686-linux, x86_64-darwin, x86_64-linux ] - hask-home: [ i686-linux, x86_64-darwin, x86_64-linux ] - hask: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskakafka: [ x86_64-darwin ] - haskanoid: [ i686-linux, x86_64-darwin ] - haskarrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskeline-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-aliyun: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-brainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-course-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-formatter: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-ftp: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-gi-base: [ i686-linux ] - haskell-gi: [ i686-linux, x86_64-darwin ] - haskell-kubernetes: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-mpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-mpi: [ x86_64-darwin ] - haskell-names: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-pdf-presenter: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-src-meta-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-token-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-tor: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-type-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-tyrant: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-connect-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hdbc-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-odbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql-sqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-hsql: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskelldb-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellNN: [ i686-linux, x86_64-darwin, x86_64-linux ] - Haskelloids: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskellscrabble: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaskellTorrent: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskheap: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-script: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoin: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-realtime: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-supercollider: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore-synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - haskore: [ i686-linux, x86_64-darwin, x86_64-linux ] - haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasparql-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasql-postgres-options: [ i686-linux, x86_64-darwin, x86_64-linux ] - hasql-postgres: [ i686-linux, x86_64-darwin, x86_64-linux ] - haste-perch: [ i686-linux, x86_64-darwin, x86_64-linux ] - hat: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hate: [ i686-linux, x86_64-darwin, x86_64-linux ] - hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaTeX-meta: [ i686-linux, x86_64-darwin, x86_64-linux ] - haverer: [ i686-linux, x86_64-darwin, x86_64-linux ] - HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] - hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hawk: [ i686-linux, x86_64-darwin, x86_64-linux ] - haxparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - hayland: [ i686-linux, x86_64-linux, x86_64-darwin ] - hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hback: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbayes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] - hBDD-CUDD: [ i686-linux, x86_64-linux, x86_64-darwin ] - hbeat: [ i686-linux, x86_64-linux, x86_64-darwin ] - hblas: [ i686-linux, x86_64-linux, x86_64-darwin ] - hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hbro: [ i686-linux, x86_64-linux, x86_64-darwin ] - hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] - HCard: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] - hchesslib: [ i686-linux, x86_64-darwin, x86_64-linux ] - HCL: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcron: [ i686-linux, x86_64-darwin, x86_64-linux ] - hCsound: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcube: [ i686-linux, x86_64-darwin, x86_64-linux ] - hcwiid: [ x86_64-darwin ] - hdaemonize-buildfix: [ i686-linux, x86_64-darwin, x86_64-linux ] - HDBC-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hDFA: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdigest: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdiscount: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdph-closure: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hdr-histogram: [ i686-linux ] - HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hecc: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hedn: [ i686-linux, x86_64-darwin, x86_64-linux ] - heist-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - helics-wai: [ i686-linux, x86_64-linux ] - helics: [ i686-linux, x86_64-linux ] - helium: [ i686-linux, x86_64-darwin, x86_64-linux ] - hell: [ i686-linux, x86_64-darwin, x86_64-linux ] - hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] - helm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hemkay: [ i686-linux, x86_64-darwin, x86_64-linux ] - hemokit: [ x86_64-darwin ] - hen: [ i686-linux, x86_64-darwin, x86_64-linux ] - henet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] - her-lexer-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - her-lexer: [ i686-linux, x86_64-darwin, x86_64-linux ] - HERA: [ i686-linux, x86_64-darwin, x86_64-linux ] - herbalizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - heredocs: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hermes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hermit-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hermit: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] - hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] - hesql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hetris: [ i686-linux, x86_64-darwin, x86_64-linux ] - heukarya: [ i686-linux, x86_64-darwin, x86_64-linux ] - hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexpat-pickle-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hexquote: [ i686-linux, x86_64-darwin, x86_64-linux ] - hF2: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfmt: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] - hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] - HFrequencyQueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - HFuse: [ x86_64-darwin ] - hfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Audio: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Bullet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Common: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Enet-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Graphics3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-GUI: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-InputSystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Network: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Ogre-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-SDL2-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-SFML-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-WinEvent: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D-Wire: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGamer3D: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgen: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgeometry: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgom: [ i686-linux, x86_64-darwin, x86_64-linux ] - HGraphStorage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgrev: [ i686-linux, x86_64-darwin, x86_64-linux ] - hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] - HHDL: [ i686-linux, x86_64-darwin, x86_64-linux ] - hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hichi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hid: [ x86_64-darwin ] - hidapi: [ x86_64-darwin ] - hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] - hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - hiernotify: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hieroglyph: [ i686-linux, x86_64-linux, x86_64-darwin ] - HiggsSet: [ i686-linux, x86_64-darwin, x86_64-linux ] - higher-leveldb: [ i686-linux, x86_64-darwin, x86_64-linux ] - higherorder: [ i686-linux, x86_64-darwin, x86_64-linux ] - highjson: [ i686-linux ] - highWaterMark: [ i686-linux, x86_64-darwin, x86_64-linux ] - himg: [ i686-linux, x86_64-darwin, x86_64-linux ] - himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-classifier-decisiontree: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-classifier: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinduce-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] - hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] - hip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hipchat-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hipmunk: [ x86_64-darwin ] - HipmunkPlayground: [ x86_64-darwin ] - hircules: [ i686-linux, x86_64-darwin, x86_64-linux ] - hirt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hish: [ i686-linux, x86_64-darwin, x86_64-linux ] - hissmetrics: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl-lmf: [ i686-linux, x86_64-darwin, x86_64-linux ] - hist-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] - historian: [ i686-linux, x86_64-darwin, x86_64-linux ] - hjs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hjsonschema: [ i686-linux, x86_64-darwin, x86_64-linux ] - HJVM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlbfgsb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-approximation: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-classification: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-datastructures: [ i686-linux, x86_64-darwin, x86_64-linux ] - HLearn-distributions: [ i686-linux, x86_64-darwin, x86_64-linux ] - hledger-chart: [ i686-linux, x86_64-darwin, x86_64-linux ] - hledger-vty: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlibBladeRF: [ x86_64-darwin ] - hlibev: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlibfam: [ i686-linux, x86_64-linux ] - HLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - hlogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - hly: [ i686-linux, x86_64-darwin, x86_64-linux ] - HMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmark: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmarkup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-banded: [ i686-linux, x86_64-linux, x86_64-darwin ] - hmatrix-mmap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-nipals: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-quadprogpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-special: [ i686-linux, x86_64-linux ] - hmatrix-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-svdlibc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmatrix-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmeap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmeap: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmenu: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmidi: [ x86_64-darwin ] - hmk: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmm-hmatrix: [ i686-linux, x86_64-darwin, x86_64-linux ] - HMM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hMollom: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmp3: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmpfr: [ i686-linux, x86_64-darwin, x86_64-linux ] - hmumps: [ i686-linux, x86_64-darwin, x86_64-linux ] - hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] - hnn: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoauth: [ i686-linux, x86_64-darwin, x86_64-linux ] - hob: [ i686-linux, x86_64-linux, x86_64-darwin ] - hobbes: [ i686-linux, x86_64-darwin, x86_64-linux ] - hobbits: [ i686-linux, x86_64-darwin, x86_64-linux ] - HODE: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] - hofix-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hog: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogg: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogre-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hogre: [ i686-linux, x86_64-darwin, x86_64-linux ] - hois: [ i686-linux, x86_64-darwin, x86_64-linux ] - hole: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] - Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] - homeomorphic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] - homplexity: [ i686-linux, x86_64-darwin, x86_64-linux ] - HongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - honi: [ i686-linux, x86_64-linux, x86_64-darwin ] - honk: [ x86_64-darwin ] - hood-off: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodie: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoovie: [ i686-linux, x86_64-darwin, x86_64-linux ] - hopencc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hopencl: [ i686-linux, x86_64-darwin, x86_64-linux ] - HOpenCV: [ x86_64-darwin ] - hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] - hops: [ i686-linux, x86_64-darwin, x86_64-linux ] - hoq: [ i686-linux, x86_64-darwin, x86_64-linux ] - hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hothasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] - hourglass-fuzzy-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - hp2any-manager: [ i686-linux, x86_64-linux, x86_64-darwin ] - hpaco-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpaco: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpaste: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpasteit: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPath: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] - hPDB-examples: [ x86_64-darwin ] - HPi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hplayground: [ i686-linux, x86_64-darwin, x86_64-linux ] - hplaylist: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpodder: [ i686-linux, x86_64-darwin, x86_64-linux ] - HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpqtypes: [ x86_64-darwin ] - hprotoc-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - hps-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] - hquantlib: [ i686-linux, x86_64-linux ] - hR: [ i686-linux, x86_64-darwin, x86_64-linux ] - hranker: [ i686-linux, x86_64-darwin, x86_64-linux ] - HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hricket: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] - hruby: [ i686-linux ] - hs-blake2: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-carbon-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-cdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-dotnet: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-duktape: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-fltk: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-gchart: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-gen-iface: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-GeoIP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-json-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-mesos: [ i686-linux, x86_64-linux, x86_64-darwin ] - hs-nombre-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-pgms: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-pkpass: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-twitterarchiver: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs2bf: [ i686-linux, x86_64-darwin, x86_64-linux ] - hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hs2lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsbackup: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsbencher-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-auditor: [ x86_64-darwin ] - hsc3-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-forth: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-lang: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-lisp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-rec: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsc3-sf-hsndfile: [ x86_64-darwin ] - hsc3-unsafe: [ i686-linux, x86_64-darwin, x86_64-linux ] - hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] - hscassandra: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsclock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsdns-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSGEP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgnutls-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgnutls: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsgsom: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsHaruPDF: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsHyperEstraier: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsignal: [ x86_64-darwin ] - hSimpleDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsJudy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hskeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] - hslackbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] - hslibsvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsmagick: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSmarty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Hsmtlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsmtpclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsndfile-storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsndfile-vector: [ x86_64-darwin ] - hsndfile: [ x86_64-darwin ] - hsnock: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsns: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsntp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsoptions: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsp-cgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsparql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspear: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspec-experimental: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspec-shouldbe: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsPerl5: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspread: [ i686-linux, x86_64-darwin, x86_64-linux ] - hspresent: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsql-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux, x86_64-darwin ] - hsqml-datamodel: [ i686-linux, x86_64-linux, x86_64-darwin ] - hsqml-demo-morris: [ i686-linux, x86_64-darwin ] - hsqml-demo-notes: [ x86_64-darwin ] - hsqml-demo-samples: [ i686-linux, x86_64-linux, x86_64-darwin ] - hsqml-morris: [ i686-linux, x86_64-linux, x86_64-darwin ] - hsqml: [ x86_64-darwin ] - hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsshellscript: [ x86_64-darwin ] - hssourceinfo: [ x86_64-darwin ] - hsSqlite3: [ i686-linux, x86_64-darwin, x86_64-linux ] - HsSVN: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstest: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstidy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstorchat: [ i686-linux, x86_64-linux, x86_64-darwin ] - hstradeking: [ i686-linux, x86_64-darwin, x86_64-linux ] - HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstyle: [ i686-linux, x86_64-darwin, x86_64-linux ] - hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsubconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] - HSvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsXenCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] - hsyscall: [ i686-linux, x86_64-darwin, x86_64-linux ] - hszephyr: [ i686-linux, x86_64-darwin, x86_64-linux ] - HTab: [ i686-linux, x86_64-darwin, x86_64-linux ] - hTalos: [ i686-linux, x86_64-darwin, x86_64-linux ] - HTicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] - html-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - htoml: [ i686-linux, x86_64-darwin, x86_64-linux ] - htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-conduit-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-conduit-downloader: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-proxy: [ i686-linux, x86_64-darwin, x86_64-linux ] - http-shed: [ i686-linux, x86_64-darwin, x86_64-linux ] - https-everywhere-rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - htune: [ i686-linux, x86_64-linux, x86_64-darwin ] - htzaar: [ x86_64-darwin ] - hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] - hugs2yc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hulk: [ i686-linux, x86_64-darwin, x86_64-linux ] - HulkImport: [ i686-linux, x86_64-darwin, x86_64-linux ] - hums: [ i686-linux, x86_64-darwin, x86_64-linux ] - HUnit-Diff: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] - HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunit-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunt-searchengine: [ i686-linux, x86_64-darwin, x86_64-linux ] - hunt-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - hurdle: [ i686-linux, x86_64-darwin, x86_64-linux ] - husky: [ i686-linux, x86_64-darwin, x86_64-linux ] - hutton: [ i686-linux, x86_64-darwin, x86_64-linux ] - huzzy: [ i686-linux, x86_64-darwin, x86_64-linux ] - hVOIDP: [ i686-linux, x86_64-linux, x86_64-darwin ] - hws: [ i686-linux, x86_64-darwin, x86_64-linux ] - hXmixer: [ x86_64-darwin ] - HXMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxmppc: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxournal: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxthelper: [ i686-linux, x86_64-darwin, x86_64-linux ] - hxweb: [ i686-linux, x86_64-darwin, x86_64-linux ] - hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydra-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-cli-args: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-parsing: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-prelude-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - hydrogen-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyena: [ i686-linux, x86_64-darwin, x86_64-linux ] - hylolib: [ i686-linux, x86_64-darwin, x86_64-linux ] - hylotab: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyloutils: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyperdrive: [ i686-linux, x86_64-darwin, x86_64-linux ] - hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] - hypher: [ i686-linux, x86_64-darwin, x86_64-linux ] - i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] - ideas-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - ideas: [ i686-linux, x86_64-darwin, x86_64-linux ] - idiii: [ i686-linux, x86_64-darwin, x86_64-linux ] - idna2008: [ i686-linux, x86_64-darwin, x86_64-linux ] - idris: [ i686-linux, x86_64-darwin, x86_64-linux ] - IDynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - ieee-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - iException: [ i686-linux, x86_64-darwin, x86_64-linux ] - IFS: [ i686-linux, x86_64-darwin, x86_64-linux ] - ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] - igraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihaskell-diagrams: [ x86_64-darwin ] - ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihaskell-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihaskell-plot: [ x86_64-darwin ] - ihaskell-widgets: [ i686-linux, x86_64-darwin, x86_64-linux ] - ihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - illuminate: [ i686-linux, x86_64-darwin, x86_64-linux ] - imagemagick: [ i686-linux, x86_64-darwin ] - imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] - imap: [ i686-linux, x86_64-darwin, x86_64-linux ] - imbib: [ i686-linux, x86_64-linux, x86_64-darwin ] - imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] - imm: [ i686-linux, x86_64-darwin, x86_64-linux ] - imparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - imperative-edsl-vhdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - imperative-edsl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ImperativeHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - improve: [ i686-linux, x86_64-darwin, x86_64-linux ] - INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] - inch: [ i686-linux, x86_64-darwin, x86_64-linux ] - incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] - incremental-sat-solver: [ i686-linux, x86_64-darwin, x86_64-linux ] - increments: [ i686-linux, x86_64-darwin, x86_64-linux ] - index-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - indian-language-font-converter: [ x86_64-darwin ] - indices: [ i686-linux, x86_64-darwin, x86_64-linux ] - indieweb-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - inf-interval: [ i686-linux, x86_64-darwin, x86_64-linux ] - infer-upstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - infinity: [ i686-linux, x86_64-darwin, x86_64-linux ] - infix: [ i686-linux, x86_64-darwin, x86_64-linux ] - InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] - inflist: [ i686-linux, x86_64-darwin, x86_64-linux ] - influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - informative: [ i686-linux, x86_64-darwin, x86_64-linux ] - inilist: [ i686-linux, x86_64-darwin, x86_64-linux ] - inline-c-cpp: [ x86_64-darwin ] - inline-java: [ i686-linux, x86_64-darwin, x86_64-linux ] - inline-r: [ i686-linux, x86_64-darwin ] - instant-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - instant-zipper: [ i686-linux, x86_64-darwin, x86_64-linux ] - integer-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] - intel-aes: [ i686-linux, x86_64-darwin, x86_64-linux ] - interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] - interleavableIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - internetmarke: [ i686-linux, x86_64-darwin, x86_64-linux ] - interpolatedstring-qq-mwotton: [ i686-linux, x86_64-darwin, x86_64-linux ] - interpolatedstring-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - interruptible: [ i686-linux, x86_64-darwin, x86_64-linux ] - intricacy: [ x86_64-darwin ] - intset: [ i686-linux, x86_64-darwin, x86_64-linux ] - io-capture: [ i686-linux, x86_64-darwin, x86_64-linux ] - io-reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - IOR: [ i686-linux, x86_64-darwin, x86_64-linux ] - IORefCAS: [ i686-linux, x86_64-darwin, x86_64-linux ] - iotransaction: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipatch: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipc: [ i686-linux, x86_64-darwin, x86_64-linux ] - ipopt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - iptables-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] - iptadmin: [ i686-linux, x86_64-linux, x86_64-darwin ] - Irc: [ i686-linux, x86_64-darwin, x86_64-linux ] - isevaluated: [ i686-linux, x86_64-darwin, x86_64-linux ] - isiz: [ x86_64-darwin ] - ismtp: [ i686-linux, x86_64-darwin, x86_64-linux ] - iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - iterio-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - iterIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-backend-c: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-bitdata: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-hw: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-opts: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory-stdlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivory: [ i686-linux, x86_64-darwin, x86_64-linux ] - ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - ixdopp: [ i686-linux, x86_64-darwin, x86_64-linux ] - iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] - j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - jack: [ x86_64-darwin ] - JackMiniMix: [ i686-linux, x86_64-darwin, x86_64-linux ] - jackminimix: [ i686-linux, x86_64-darwin, x86_64-linux ] - jacobi-roots: [ i686-linux, x86_64-darwin, x86_64-linux ] - jalla: [ i686-linux, x86_64-darwin, x86_64-linux ] - jarfind: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] - java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] - javaclass: [ i686-linux, x86_64-darwin, x86_64-linux ] - Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] - javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] - Javav: [ i686-linux, x86_64-darwin, x86_64-linux ] - javav: [ i686-linux, x86_64-darwin, x86_64-linux ] - jespresso: [ i686-linux, x86_64-linux ] - join: [ i686-linux, x86_64-darwin, x86_64-linux ] - joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] - jonathanscard: [ i686-linux, x86_64-darwin, x86_64-linux ] - jort: [ i686-linux, x86_64-darwin, x86_64-linux ] - js-good-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsaddle-hello: [ i686-linux, x86_64-linux, x86_64-darwin ] - jsaddle: [ x86_64-darwin ] - jsc: [ i686-linux, x86_64-linux, x86_64-darwin ] - JsContracts: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsmw: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-ast-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-b: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSON-Combinator-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSON-Combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-pointer-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - json-stream: [ i686-linux ] - json-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - json2-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - json2: [ i686-linux, x86_64-darwin, x86_64-linux ] - JSONb: [ i686-linux, x86_64-darwin, x86_64-linux ] - JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsonresume: [ i686-linux, x86_64-darwin, x86_64-linux ] - jsonschema-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] - jspath: [ i686-linux, x86_64-darwin, x86_64-linux ] - judy: [ i686-linux, x86_64-darwin, x86_64-linux ] - jukebox: [ x86_64-darwin ] - JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] - JYU-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - kafka-client: [ x86_64-darwin ] - kangaroo: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-cores: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-papilio: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava-shake: [ i686-linux, x86_64-darwin, x86_64-linux ] - kansas-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] - karakuri: [ i686-linux, x86_64-darwin, x86_64-linux ] - katip-elasticsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] - katt: [ i686-linux, x86_64-darwin, x86_64-linux ] - kazura-queue: [ x86_64-linux ] - keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-mvc-view-gtk: [ x86_64-darwin ] - keera-hails-reactive-fs: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-polling: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactive-yampa: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactivelenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-hails-reactivevalues: [ i686-linux, x86_64-darwin, x86_64-linux ] - keera-posture: [ i686-linux, x86_64-linux, x86_64-darwin ] - keiretsu: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ketchup: [ i686-linux, x86_64-darwin, x86_64-linux ] - kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] - keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] - keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] - kicad-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - kickass-torrents-dump-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] - KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] - kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - kit: [ i686-linux, x86_64-darwin, x86_64-linux ] - kmeans-par: [ i686-linux, x86_64-darwin, x86_64-linux ] - koellner-phonetic: [ i686-linux, x86_64-darwin, x86_64-linux ] - Konf: [ i686-linux, x86_64-darwin, x86_64-linux ] - korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] - kqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] - ktx: [ x86_64-darwin ] - kure-your-boilerplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - KyotoCabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] - kyotocabinet: [ x86_64-darwin ] - l-bfgs-b: [ i686-linux, x86_64-darwin, x86_64-linux ] - L-seed: [ i686-linux, x86_64-darwin, x86_64-linux ] - labeled-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - laborantin-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] - lagrangian: [ i686-linux, x86_64-darwin, x86_64-linux ] - laika: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambda-bridge: [ i686-linux, x86_64-linux ] - lambda-canvas: [ x86_64-darwin ] - lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambda-toolbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaCalculator: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacat: [ i686-linux, x86_64-linux, x86_64-darwin ] - lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube-gl: [ x86_64-darwin ] - lambdacube-samples: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaHack: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] - LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] - lambdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] - lame-tester: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-bash: [ i686-linux, x86_64-linux ] - language-boogie: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-c-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-c-inline: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-c-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-eiffel: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-go: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-mixal: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-objc: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-sh: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-spelling: [ i686-linux, x86_64-darwin, x86_64-linux ] - language-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lastik: [ i686-linux, x86_64-darwin, x86_64-linux ] - lat: [ i686-linux, x86_64-darwin, x86_64-linux ] - latest-npm-version: [ i686-linux, x86_64-darwin, x86_64-linux ] - launchpad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - layers: [ i686-linux, x86_64-darwin, x86_64-linux ] - layout-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] - layout: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lazy-Pbkdf2: [ i686-linux ] - lazyarray: [ i686-linux, x86_64-darwin, x86_64-linux ] - lazysplines: [ i686-linux, x86_64-darwin, x86_64-linux ] - lcs: [ i686-linux, x86_64-darwin, x86_64-linux ] - ldif: [ i686-linux, x86_64-darwin, x86_64-linux ] - leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] - leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] - learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] - leksah-server: [ x86_64-darwin ] - leksah: [ x86_64-darwin ] - Level0: [ x86_64-darwin ] - leveldb-haskell-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - leveldb-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - levmar-chart: [ i686-linux, x86_64-linux, x86_64-darwin ] - levmar: [ i686-linux, x86_64-linux, x86_64-darwin ] - lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - lha: [ i686-linux, x86_64-darwin, x86_64-linux ] - lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] - lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] - libarchive-conduit: [ x86_64-darwin ] - LibClang: [ i686-linux, x86_64-darwin, x86_64-linux ] - libconfig: [ i686-linux, x86_64-linux, x86_64-darwin ] - libcspm: [ i686-linux, x86_64-darwin, x86_64-linux ] - libexpect: [ i686-linux, x86_64-darwin, x86_64-linux ] - libGenI: [ i686-linux, x86_64-darwin, x86_64-linux ] - libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - libhbb: [ i686-linux, x86_64-darwin, x86_64-linux ] - libjenkins: [ i686-linux, x86_64-linux ] - liblinear-enumerator: [ x86_64-darwin ] - libltdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - libnotify: [ x86_64-darwin ] - liboleg: [ i686-linux, x86_64-darwin, x86_64-linux ] - libpafe: [ i686-linux, x86_64-darwin, x86_64-linux ] - libpq: [ i686-linux, x86_64-darwin, x86_64-linux ] - libssh2-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - libsystemd-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] - libsystemd-journal: [ x86_64-darwin ] - libvirt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxls: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - libxslt: [ i686-linux, x86_64-darwin, x86_64-linux ] - LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] - life: [ x86_64-darwin ] - lifter: [ i686-linux, x86_64-darwin, x86_64-linux ] - lighttpd-conf-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - lighttpd-conf: [ i686-linux, x86_64-darwin, x86_64-linux ] - lilypond: [ i686-linux, x86_64-darwin, x86_64-linux ] - Limit: [ i686-linux, x86_64-darwin, x86_64-linux ] - limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - lin-alg: [ i686-linux, x86_64-darwin, x86_64-linux ] - linda: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-algebra-cblas: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-circuit: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] - linear-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - linearscan-hoopl: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] - LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] - linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] - linkcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - linode: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-blkid: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-evdev: [ x86_64-darwin ] - linux-file-extents: [ x86_64-darwin ] - linux-inotify: [ x86_64-darwin ] - linux-kmod: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-mount: [ x86_64-darwin ] - linux-namespaces: [ x86_64-darwin ] - linux-perf: [ i686-linux, x86_64-darwin, x86_64-linux ] - linux-ptrace: [ i686-linux, x86_64-darwin, x86_64-linux ] - lio-eci11: [ i686-linux, x86_64-darwin, x86_64-linux ] - lio-fs: [ x86_64-darwin ] - lio-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - liquid-fixpoint: [ i686-linux, x86_64-darwin, x86_64-linux ] - liquidhaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - listlike-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - literals: [ i686-linux, x86_64-darwin, x86_64-linux ] - live-sequencer: [ i686-linux, x86_64-linux, x86_64-darwin ] - ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] - llsd: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-analysis: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-data-interop: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-general: [ x86_64-darwin ] - llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - lmdb: [ x86_64-darwin ] - lmonad-yesod: [ i686-linux, x86_64-darwin, x86_64-linux ] - lmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - local-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - loch: [ i686-linux, x86_64-darwin, x86_64-linux ] - locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] - log-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] - log2json: [ i686-linux, x86_64-darwin, x86_64-linux ] - log: [ x86_64-darwin ] - logging-facade-journald: [ x86_64-darwin ] - logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] - LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojbanParser: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojbanXiragan: [ i686-linux, x86_64-darwin, x86_64-linux ] - lojysamban: [ i686-linux, x86_64-darwin, x86_64-linux ] - lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] - lol: [ i686-linux, x86_64-darwin ] - loli: [ i686-linux, x86_64-darwin, x86_64-linux ] - loop-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] - loopy: [ i686-linux, x86_64-darwin, x86_64-linux ] - lord: [ i686-linux, x86_64-darwin, x86_64-linux ] - loris: [ i686-linux, x86_64-darwin, x86_64-linux ] - lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] - lowgl: [ x86_64-darwin ] - ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] - lscabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] - lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] - ltk: [ x86_64-darwin ] - luachunk: [ i686-linux, x86_64-darwin, x86_64-linux ] - lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] - Lucu: [ i686-linux, x86_64-darwin, x86_64-linux ] - lui: [ i686-linux, x86_64-darwin, x86_64-linux ] - luka: [ i686-linux, x86_64-darwin, x86_64-linux ] - luminance-samples: [ x86_64-darwin ] - luminance: [ x86_64-darwin ] - lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] - luthor: [ i686-linux, x86_64-darwin, x86_64-linux ] - lvish: [ i686-linux, x86_64-darwin, x86_64-linux ] - lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - lxc: [ x86_64-darwin ] - lye: [ i686-linux, x86_64-darwin, x86_64-linux ] - lzma-streams: [ i686-linux ] - lzma: [ i686-linux ] - macbeth-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - mage: [ i686-linux, x86_64-darwin, x86_64-linux ] - MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] - magico: [ i686-linux, x86_64-darwin, x86_64-linux ] - mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] - majordomo: [ i686-linux, x86_64-darwin, x86_64-linux ] - majority: [ i686-linux, x86_64-darwin, x86_64-linux ] - make-package: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-all: [ i686-linux, x86_64-linux, x86_64-darwin ] - manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-browser: [ i686-linux, x86_64-linux, x86_64-darwin ] - manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-reader: [ i686-linux, x86_64-linux, x86_64-darwin ] - manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee-terminal: [ i686-linux, x86_64-linux, x86_64-darwin ] - manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] - manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] - mandulia: [ i686-linux, x86_64-darwin, x86_64-linux ] - mangopay: [ i686-linux, x86_64-darwin, x86_64-linux ] - manifold-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - manifolds: [ i686-linux, x86_64-darwin, x86_64-linux ] - mappy: [ i686-linux, x86_64-darwin, x86_64-linux ] - marionetta: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown-pap: [ i686-linux, x86_64-darwin, x86_64-linux ] - markdown2svg: [ i686-linux, x86_64-darwin, x86_64-linux ] - markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] - markup-preview: [ i686-linux, x86_64-linux, x86_64-darwin ] - marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] - marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] - marxup: [ i686-linux, x86_64-darwin, x86_64-linux ] - masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] - mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] - mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] - matlab: [ i686-linux, x86_64-darwin, x86_64-linux ] - matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] - maude: [ i686-linux, x86_64-darwin, x86_64-linux ] - maxent: [ i686-linux, x86_64-darwin, x86_64-linux ] - maxsharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - maybench: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT-monads-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] - MazesOfMonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - mbox-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] - MC-Fold-DP: [ i686-linux, x86_64-darwin, x86_64-linux ] - mcmaster-gloss-examples: [ x86_64-darwin ] - mcmc-samplers: [ i686-linux, x86_64-darwin, x86_64-linux ] - mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] - Measure: [ i686-linux, x86_64-darwin, x86_64-linux ] - mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] - mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] - mediawiki: [ i686-linux, x86_64-darwin, x86_64-linux ] - medium-sdk-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - meep: [ i686-linux, x86_64-darwin, x86_64-linux ] - mega-sdist: [ i686-linux, x86_64-darwin, x86_64-linux ] - melody: [ i686-linux, x86_64-darwin, x86_64-linux ] - memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] - metadata: [ x86_64-linux ] - metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] - metric: [ i686-linux, x86_64-darwin, x86_64-linux ] - Metrics: [ i686-linux, x86_64-darwin, x86_64-linux ] - metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] - Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] - MHask: [ i686-linux, x86_64-darwin, x86_64-linux ] - Michelangelo: [ i686-linux, x86_64-darwin, x86_64-linux ] - microlens-aeson: [ i686-linux ] - mida: [ i686-linux, x86_64-darwin, x86_64-linux ] - midi-alsa: [ x86_64-darwin ] - midimory: [ x86_64-darwin ] - midisurface: [ i686-linux, x86_64-linux, x86_64-darwin ] - mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] - mikmod: [ x86_64-darwin ] - mime-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] - MiniAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - miniball: [ x86_64-darwin ] - miniforth: [ i686-linux, x86_64-darwin, x86_64-linux ] - minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] - minioperational: [ i686-linux, x86_64-darwin, x86_64-linux ] - miniplex: [ i686-linux, x86_64-darwin, x86_64-linux ] - minirotate: [ i686-linux, x86_64-darwin, x86_64-linux ] - minisat: [ x86_64-darwin ] - ministg: [ i686-linux, x86_64-darwin, x86_64-linux ] - mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] - missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] - MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] - mix-arrows: [ i686-linux, x86_64-darwin, x86_64-linux ] - mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] - ml-w: [ i686-linux, x86_64-darwin, x86_64-linux ] - mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] - mmtl-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - mmtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - moan: [ i686-linux, x86_64-darwin, x86_64-linux ] - modelicaparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] - modular-prelude-classy: [ i686-linux, x86_64-darwin, x86_64-linux ] - modular-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - module-management: [ i686-linux, x86_64-darwin, x86_64-linux ] - Moe: [ x86_64-darwin ] - MoeDict: [ i686-linux, x86_64-darwin, x86_64-linux ] - mohws: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-abort-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-atom-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-atom: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-exception: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-interleave: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-levels: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-memo: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-mersenne-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-ran: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-stlike-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-stlike-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-tx: [ i686-linux, x86_64-darwin, x86_64-linux ] - monad-unify: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadacme: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] - monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monadius: [ i686-linux, x86_64-darwin, x86_64-linux ] - MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] - monarch: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monaris: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monatron-IO: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monatron: [ i686-linux, x86_64-darwin, x86_64-linux ] - mondo: [ i686-linux, x86_64-darwin, x86_64-linux ] - mongodb-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - mongrel2-handler: [ i686-linux, x86_64-darwin, x86_64-linux ] - monitor: [ x86_64-darwin ] - mono-foldable: [ i686-linux, x86_64-darwin, x86_64-linux ] - Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoidplus: [ i686-linux, x86_64-darwin, x86_64-linux ] - monoids: [ i686-linux, x86_64-darwin, x86_64-linux ] - monte-carlo: [ i686-linux, x86_64-darwin, x86_64-linux ] - moo: [ i686-linux, x86_64-darwin, x86_64-linux ] - morfette: [ i686-linux, x86_64-darwin, x86_64-linux ] - morfeusz: [ i686-linux, x86_64-darwin, x86_64-linux ] - mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - mount: [ i686-linux, x86_64-darwin, x86_64-linux ] - mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - mp: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpdmate: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpppc: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] - mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] - mps: [ i686-linux, x86_64-darwin, x86_64-linux ] - mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] - mrm: [ i686-linux, x86_64-darwin, x86_64-linux ] - msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] - msh: [ i686-linux, x86_64-darwin, x86_64-linux ] - msi-kb-backlit: [ x86_64-darwin ] - mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtl-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtlx: [ i686-linux, x86_64-darwin, x86_64-linux ] - mtp: [ i686-linux, x86_64-darwin, x86_64-linux ] - mudbath: [ i686-linux, x86_64-darwin, x86_64-linux ] - mueval: [ i686-linux, x86_64-darwin, x86_64-linux ] - mulang: [ i686-linux, x86_64-darwin, x86_64-linux ] - multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] - multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] - multipass: [ i686-linux, x86_64-darwin, x86_64-linux ] - multiplate-simplified: [ i686-linux, x86_64-darwin, x86_64-linux ] - multirec-alt-deriver: [ i686-linux, x86_64-darwin, x86_64-linux ] - multirec-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] - multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - murder: [ i686-linux, x86_64-darwin, x86_64-linux ] - murmur: [ i686-linux, x86_64-darwin, x86_64-linux ] - murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] - music-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - musicbrainz-email: [ i686-linux, x86_64-darwin, x86_64-linux ] - musicxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - mustache2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] - mvc-updates: [ i686-linux, x86_64-darwin, x86_64-linux ] - mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - myo: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] - mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - myTestlll: [ i686-linux, x86_64-linux, x86_64-darwin ] - mzv: [ i686-linux, x86_64-darwin, x86_64-linux ] - nagios-plugin-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] - named-lock: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-hmac: [ i686-linux, x86_64-darwin, x86_64-linux ] - nano-md5: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanoAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanocurses: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanovg: [ i686-linux, x86_64-darwin, x86_64-linux ] - nanq: [ i686-linux ] - narc: [ i686-linux, x86_64-darwin, x86_64-linux ] - nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - natural-number: [ i686-linux, x86_64-darwin, x86_64-linux ] - NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] - nc-indicators: [ x86_64-darwin ] - neat: [ i686-linux, x86_64-darwin, x86_64-linux ] - needle: [ i686-linux, x86_64-darwin, x86_64-linux ] - nehe-tuts: [ i686-linux, x86_64-darwin, x86_64-linux ] - nemesis-titan: [ i686-linux, x86_64-darwin, x86_64-linux ] - nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero-warp: [ i686-linux, x86_64-darwin, x86_64-linux ] - nero: [ i686-linux, x86_64-darwin, x86_64-linux ] - netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - netlines: [ i686-linux, x86_64-darwin, x86_64-linux ] - netlink: [ x86_64-darwin ] - NetSNMP: [ i686-linux, x86_64-darwin, x86_64-linux ] - netspec: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - netwire-input-glfw: [ x86_64-darwin ] - network-address: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-anonymous-i2p: [ i686-linux ] - network-anonymous-tor: [ i686-linux ] - network-attoparsec: [ i686-linux ] - network-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-connection: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-interfacerequest: [ x86_64-darwin ] - network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-netpacket: [ x86_64-darwin ] - network-rpca: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-transport-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] - network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - newports: [ i686-linux, x86_64-darwin, x86_64-linux ] - newsynth: [ i686-linux, x86_64-darwin, x86_64-linux ] - newt: [ i686-linux, x86_64-darwin, x86_64-linux ] - newtype-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - NGrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - niagra: [ i686-linux, x86_64-darwin, x86_64-linux ] - nibblestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] - nimber: [ i686-linux ] - Ninjas: [ i686-linux, x86_64-darwin, x86_64-linux ] - nitro: [ i686-linux, x86_64-darwin, x86_64-linux ] - nixfromnpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - nkjp: [ i686-linux, x86_64-darwin, x86_64-linux ] - nm: [ i686-linux, x86_64-darwin, x86_64-linux ] - nme: [ i686-linux, x86_64-darwin, x86_64-linux ] - nntp: [ i686-linux, x86_64-darwin, x86_64-linux ] - noise: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] - NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] - noodle: [ i686-linux, x86_64-darwin, x86_64-linux ] - NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] - not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] - notmuch-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - notmuch-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - np-linear: [ i686-linux, x86_64-darwin, x86_64-linux ] - nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] - nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] - NTRU: [ i686-linux ] - null-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] - NumberSieves: [ i686-linux, x86_64-darwin, x86_64-linux ] - numerals-base: [ i686-linux, x86_64-darwin, x86_64-linux ] - numerals: [ i686-linux, x86_64-darwin, x86_64-linux ] - Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] - nvim-hs-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - nvim-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - NXT: [ i686-linux, x86_64-darwin, x86_64-linux ] - NXTDSL: [ i686-linux, x86_64-darwin, x86_64-linux ] - nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] - oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] - obj: [ i686-linux, x86_64-darwin, x86_64-linux ] - Object: [ i686-linux, x86_64-darwin, x86_64-linux ] - ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - octopus: [ i686-linux, x86_64-darwin, x86_64-linux ] - oculus: [ i686-linux, x86_64-linux, x86_64-darwin ] - OddWord: [ i686-linux ] - oden-go-packages: [ i686-linux, x86_64-darwin, x86_64-linux ] - OGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - oidc-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - ois-input-manager: [ i686-linux, x86_64-darwin, x86_64-linux ] - olwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] - omaketex: [ i686-linux, x86_64-darwin, x86_64-linux ] - Omega: [ i686-linux, x86_64-darwin, x86_64-linux ] - omega: [ i686-linux, x86_64-darwin, x86_64-linux ] - omnicodec: [ i686-linux, x86_64-darwin, x86_64-linux ] - on-a-horse: [ i686-linux, x86_64-darwin, x86_64-linux ] - one-liner: [ i686-linux, x86_64-darwin, x86_64-linux ] - oneormore: [ i686-linux, x86_64-darwin, x86_64-linux ] - onu-course: [ i686-linux, x86_64-darwin, x86_64-linux ] - open-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - open-typerep: [ i686-linux, x86_64-darwin ] - open-union: [ x86_64-darwin, x86_64-linux ] - open-witness: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAFP-Utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAFP: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenAL: [ x86_64-darwin ] - OpenCL: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenCLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - opencog-atomspace: [ i686-linux, x86_64-darwin, x86_64-linux ] - opencv-raw: [ i686-linux, x86_64-linux, x86_64-darwin ] - openexchangerates: [ i686-linux, x86_64-darwin, x86_64-linux ] - openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] - opengl-dlp-stereo: [ x86_64-darwin ] - opengl-spacenavigator: [ x86_64-darwin ] - OpenGL: [ x86_64-darwin ] - OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - opengles: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenGLRaw21: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenGLRaw: [ x86_64-darwin ] - openid: [ i686-linux, x86_64-darwin, x86_64-linux ] - openpgp-crypto-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - openpgp-Crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenSCAD: [ i686-linux, x86_64-darwin, x86_64-linux ] - openssh-github-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] - opentheory-char: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenVG: [ i686-linux, x86_64-darwin, x86_64-linux ] - OpenVGRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - Operads: [ i686-linux, x86_64-darwin, x86_64-linux ] - operational-alacarte: [ i686-linux, x86_64-darwin, x86_64-linux ] - optimal-blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] - optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] - OrchestrateDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchid-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - orchid: [ i686-linux, x86_64-darwin, x86_64-linux ] - order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] - orgmode-parse: [ i686-linux, x86_64-darwin, x86_64-linux ] - origami: [ i686-linux, x86_64-darwin, x86_64-linux ] - osdkeys: [ x86_64-darwin ] - osm-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - osm-download: [ i686-linux, x86_64-darwin, x86_64-linux ] - OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] - ot: [ i686-linux, x86_64-darwin, x86_64-linux ] - pack: [ x86_64-darwin ] - package-vt: [ i686-linux, x86_64-darwin, x86_64-linux ] - packedstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - packman: [ i686-linux, x86_64-darwin, x86_64-linux ] - padKONTROL: [ i686-linux, x86_64-darwin, x86_64-linux ] - PageIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - Paillier: [ x86_64-darwin ] - pam: [ x86_64-darwin ] - panda: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-plantuml-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] - PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - pango: [ x86_64-darwin ] - papillon: [ i686-linux, x86_64-darwin, x86_64-linux ] - pappy: [ i686-linux, x86_64-darwin, x86_64-linux ] - paragon: [ i686-linux, x86_64-darwin, x86_64-linux ] - Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] - parallel-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] - parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - parco: [ i686-linux, x86_64-darwin, x86_64-linux ] - parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - parport: [ x86_64-darwin ] - Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] - parse-help: [ i686-linux, x86_64-darwin, x86_64-linux ] - parsely: [ i686-linux, x86_64-darwin, x86_64-linux ] - parser-helper: [ i686-linux, x86_64-darwin, x86_64-linux ] - parser241: [ i686-linux, x86_64-darwin, x86_64-linux ] - parsestar: [ i686-linux, x86_64-darwin, x86_64-linux ] - partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - partly: [ i686-linux, x86_64-darwin, x86_64-linux ] - passage: [ i686-linux, x86_64-darwin, x86_64-linux ] - pastis: [ i686-linux, x86_64-darwin, x86_64-linux ] - pasty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pathfinder: [ i686-linux, x86_64-darwin, x86_64-linux ] - pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] - patterns: [ i686-linux, x86_64-darwin, x86_64-linux ] - paypal-adaptive-hoops: [ i686-linux, x86_64-darwin, x86_64-linux ] - paypal-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - pb: [ i686-linux, x86_64-darwin, x86_64-linux ] - PCLT-DB: [ i686-linux, x86_64-darwin, x86_64-linux ] - PCLT: [ i686-linux, x86_64-darwin, x86_64-linux ] - pdf-toolbox-viewer: [ x86_64-darwin ] - pdynload: [ i686-linux, x86_64-darwin, x86_64-linux ] - peakachu: [ i686-linux, x86_64-darwin, x86_64-linux ] - pec: [ i686-linux, x86_64-darwin, x86_64-linux ] - peg: [ i686-linux, x86_64-darwin, x86_64-linux ] - pell: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - penny: [ i686-linux, x86_64-darwin, x86_64-linux ] - peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] - perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] - PerfectHash: [ i686-linux, x86_64-darwin, x86_64-linux ] - perfecthash: [ i686-linux, x86_64-darwin, x86_64-linux ] - perm: [ i686-linux, x86_64-darwin, x86_64-linux ] - permute: [ i686-linux, x86_64-darwin, x86_64-linux ] - PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-database-url: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-hssqlppp: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - persistent-protobuf: [ i686-linux, x86_64-darwin, x86_64-linux ] - persona-idp: [ i686-linux, x86_64-darwin, x86_64-linux ] - pesca: [ i686-linux, x86_64-darwin, x86_64-linux ] - peyotls-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] - peyotls: [ i686-linux, x86_64-darwin, x86_64-linux ] - pez: [ i686-linux, x86_64-darwin, x86_64-linux ] - pg-harness-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] - pgsql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - pgstream: [ i686-linux, x86_64-darwin, x86_64-linux ] - phasechange: [ i686-linux, x86_64-darwin, x86_64-linux ] - phoityne: [ x86_64-darwin ] - phone-numbers: [ i686-linux, x86_64-darwin, x86_64-linux ] - phone-push: [ i686-linux, x86_64-darwin, x86_64-linux ] - phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] - photoname: [ i686-linux, x86_64-darwin, x86_64-linux ] - phraskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] - phybin: [ i686-linux, x86_64-darwin, x86_64-linux ] - pi-calculus: [ i686-linux, x86_64-darwin, x86_64-linux ] - pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] - piet: [ i686-linux, x86_64-darwin, x86_64-linux ] - piki: [ i686-linux, x86_64-darwin, x86_64-linux ] - pinch: [ i686-linux ] - Pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-cereal-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-courier: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-files: [ i686-linux ] - pipes-key-value-csv: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-p2p-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - pipes-transduce: [ i686-linux, x86_64-darwin, x86_64-linux ] - pisigma: [ i686-linux, x86_64-darwin, x86_64-linux ] - pit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pivotal-tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] - pkggraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - planar-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - plat: [ i686-linux, x86_64-darwin, x86_64-linux ] - plist-buddy: [ i686-linux, x86_64-linux ] - plivo: [ i686-linux, x86_64-darwin, x86_64-linux ] - plot-gtk-ui: [ x86_64-darwin ] - plot-gtk3: [ x86_64-darwin ] - plot-gtk: [ x86_64-darwin ] - Plot-ho-matic: [ i686-linux ] - Plot-ho-matic: [ i686-linux, x86_64-darwin, x86_64-linux ] - Plot-ho-matic: [ x86_64-darwin ] - plot-lab: [ x86_64-darwin ] - plot: [ x86_64-darwin ] - PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] - plugins-auto: [ i686-linux, x86_64-darwin, x86_64-linux ] - plugins-multistage: [ i686-linux, x86_64-darwin, x86_64-linux ] - plumbers: [ i686-linux, x86_64-darwin, x86_64-linux ] - ply-loader: [ i686-linux, x86_64-darwin, x86_64-linux ] - pngload-fixed: [ i686-linux, x86_64-darwin, x86_64-linux ] - pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] - pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] - pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - polar-configfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - polh-lexicon: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pollutocracy: [ i686-linux, x86_64-darwin, x86_64-linux ] - polynom: [ i686-linux, x86_64-darwin, x86_64-linux ] - polyseq: [ i686-linux, x86_64-darwin, x86_64-linux ] - polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - polytypeable: [ i686-linux, x86_64-darwin, x86_64-linux ] - pong-server: [ i686-linux, x86_64-linux ] - pontarius-mediaserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - pontarius-xmpp: [ i686-linux, x86_64-darwin, x86_64-linux ] - pontarius-xpmn: [ i686-linux, x86_64-darwin, x86_64-linux ] - pool-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] - portaudio: [ x86_64-darwin ] - porte: [ i686-linux, x86_64-darwin, x86_64-linux ] - porter: [ i686-linux, x86_64-darwin, x86_64-linux ] - PortMidi: [ x86_64-darwin ] - ports: [ i686-linux, x86_64-darwin, x86_64-linux ] - posix-acl: [ i686-linux, x86_64-linux, x86_64-darwin ] - posix-realtime: [ x86_64-darwin ] - posix-timer: [ x86_64-darwin ] - posix-waitpid: [ i686-linux, x86_64-darwin, x86_64-linux ] - postcodes: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgresql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgresql-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - PostgreSQL: [ i686-linux, x86_64-darwin, x86_64-linux ] - postgrest: [ i686-linux, x86_64-darwin, x86_64-linux ] - postie: [ i686-linux, x86_64-darwin, x86_64-linux ] - postmaster: [ i686-linux, x86_64-darwin, x86_64-linux ] - powermate: [ i686-linux, x86_64-darwin, x86_64-linux ] - powerpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - pqc: [ i686-linux, x86_64-darwin, x86_64-linux ] - pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] - precis: [ i686-linux, x86_64-darwin, x86_64-linux ] - prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] - prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] - pregame: [ i686-linux, x86_64-darwin, x86_64-linux ] - prelude-generalize: [ i686-linux, x86_64-darwin, x86_64-linux ] - prelude-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - preprocess-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - present: [ i686-linux, x86_64-darwin, x86_64-linux ] - press: [ i686-linux, x86_64-darwin, x86_64-linux ] - primitive-simd: [ i686-linux, x86_64-darwin, x86_64-linux ] - PrimitiveArray: [ i686-linux, x86_64-darwin, x86_64-linux ] - primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] - primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - print-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] - printf-mauke: [ i686-linux, x86_64-darwin, x86_64-linux ] - Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] - printxosd: [ x86_64-darwin ] - priority-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] - PriorityChansConverger: [ i686-linux, x86_64-darwin, x86_64-linux ] - ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] - proc: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-iterio: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-leksah: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - process-streaming: [ i686-linux, x86_64-darwin, x86_64-linux ] - processing: [ i686-linux, x86_64-darwin, x86_64-linux ] - procrastinating-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] - procrastinating-variable: [ i686-linux, x86_64-darwin, x86_64-linux ] - procstat: [ i686-linux, x86_64-darwin, x86_64-linux ] - prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] - progress: [ i686-linux, x86_64-darwin, x86_64-linux ] - progressbar: [ i686-linux, x86_64-darwin, x86_64-linux ] - progression: [ i686-linux, x86_64-darwin, x86_64-linux ] - progressive: [ i686-linux, x86_64-darwin, x86_64-linux ] - proj4-hs-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog-graph-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] - prolog: [ i686-linux, x86_64-darwin, x86_64-linux ] - prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] - propane: [ i686-linux, x86_64-darwin, x86_64-linux ] - Proper: [ i686-linux, x86_64-darwin, x86_64-linux ] - proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] - proteaaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] - protobuf-native: [ i686-linux, x86_64-darwin, x86_64-linux ] - protocol-buffers-descriptor-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - protocol-buffers-fork: [ i686-linux, x86_64-darwin, x86_64-linux ] - prove-everywhere-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - proxy-kindness: [ i686-linux, x86_64-darwin, x86_64-linux ] - pub: [ i686-linux, x86_64-darwin, x86_64-linux ] - publicsuffixlistcreate: [ i686-linux, x86_64-darwin, x86_64-linux ] - pubnub: [ i686-linux, x86_64-darwin, x86_64-linux ] - pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] - puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] - pugixml: [ x86_64-darwin ] - pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] - pugs-HsSyck: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pugs: [ i686-linux, x86_64-darwin, x86_64-linux ] - PUH-Project: [ i686-linux, x86_64-darwin, x86_64-linux ] - pulse-simple: [ x86_64-darwin ] - punkt: [ i686-linux, x86_64-darwin, x86_64-linux ] - Pup-Events-Demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] - purescript-bridge: [ x86_64-darwin ] - push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] - push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] - push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] - pushme: [ i686-linux, x86_64-darwin, x86_64-linux ] - putlenses: [ i686-linux, x86_64-darwin, x86_64-linux ] - puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] - puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] - pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] - python-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] - qd-vec: [ i686-linux, x86_64-darwin, x86_64-linux ] - qd: [ i686-linux, x86_64-darwin, x86_64-linux ] - qed: [ i686-linux, x86_64-darwin, x86_64-linux ] - qhull-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - QIO: [ i686-linux, x86_64-darwin, x86_64-linux ] - qt: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuadEdge: [ i686-linux, x86_64-darwin, x86_64-linux ] - quadratic-irrational: [ i686-linux, x86_64-darwin, x86_64-linux ] - quantum-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] - qudb: [ i686-linux, x86_64-darwin, x86_64-linux ] - Quelea: [ i686-linux, x86_64-darwin, x86_64-linux ] - quenya-verb: [ i686-linux, x86_64-darwin, x86_64-linux ] - querystring-pickle: [ i686-linux, x86_64-darwin, x86_64-linux ] - queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuickAnnotate: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuickCheck-GenT: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickcheck-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - QuickPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickset: [ i686-linux, x86_64-darwin, x86_64-linux ] - Quickson: [ i686-linux, x86_64-darwin, x86_64-linux ] - quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] - quickwebapp: [ i686-linux, x86_64-darwin, x86_64-linux ] - quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - qux: [ i686-linux, x86_64-darwin, x86_64-linux ] - R-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rabocsv2qif: [ i686-linux, x86_64-darwin, x86_64-linux ] - rad: [ i686-linux, x86_64-darwin, x86_64-linux ] - radium-formula-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - radium: [ i686-linux, x86_64-darwin, x86_64-linux ] - rados-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] - rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] - Raincat: [ x86_64-darwin ] - rakhana: [ i686-linux, x86_64-darwin, x86_64-linux ] - ralist: [ i686-linux, x86_64-darwin, x86_64-linux ] - rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] - rand-vars: [ i686-linux, x86_64-darwin, x86_64-linux ] - randfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-access-list: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-eff: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-effin: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - random-variates: [ i686-linux ] - RandomDotOrg: [ i686-linux, x86_64-darwin, x86_64-linux ] - rangemin: [ i686-linux, x86_64-darwin, x86_64-linux ] - Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] - Rasenschach: [ i686-linux, x86_64-darwin, x86_64-linux ] - raven-haskell-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - rbr: [ i686-linux, x86_64-darwin, x86_64-linux ] - rcu: [ i686-linux, x86_64-darwin, x86_64-linux ] - rdf4h: [ i686-linux, x86_64-darwin, x86_64-linux ] - rdioh: [ i686-linux, x86_64-darwin, x86_64-linux ] - re2: [ i686-linux, x86_64-darwin, x86_64-linux ] - reaction-logic: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-bacon: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-balsa: [ i686-linux, x86_64-linux, x86_64-darwin ] - reactive-banana-sdl2: [ x86_64-darwin ] - reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-banana-threepenny: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-banana-wx: [ x86_64-darwin ] - reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive-thread: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] - reactor: [ i686-linux, x86_64-darwin, x86_64-linux ] - readshp: [ i686-linux, x86_64-darwin, x86_64-linux ] - really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] - reasonable-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - records-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - records: [ i686-linux, x86_64-darwin, x86_64-linux ] - recursive-line-count: [ x86_64-darwin ] - redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] - Redmine: [ i686-linux, x86_64-darwin, x86_64-linux ] - reedsolomon: [ i686-linux, x86_64-darwin, x86_64-linux ] - reenact: [ x86_64-darwin ] - Ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - ref: [ i686-linux, x86_64-darwin, x86_64-linux ] - Referees: [ i686-linux, x86_64-darwin, x86_64-linux ] - refh: [ i686-linux, x86_64-darwin, x86_64-linux ] - reflection-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - reflex-dom-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] - reflex-dom: [ x86_64-darwin ] - reflex-gloss-scene: [ x86_64-darwin ] - reflex-gloss: [ x86_64-darwin ] - reflex-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-dfa: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-tdfa-utf8: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-tre: [ i686-linux, x86_64-darwin, x86_64-linux ] - regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexp-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] - regexqq: [ i686-linux, x86_64-darwin, x86_64-linux ] - regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - regions: [ i686-linux, x86_64-darwin, x86_64-linux ] - regular-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] - reheat: [ i686-linux, x86_64-darwin, x86_64-linux ] - rei: [ i686-linux, x86_64-darwin, x86_64-linux ] - reified-records: [ i686-linux, x86_64-darwin, x86_64-linux ] - reify: [ i686-linux, x86_64-darwin, x86_64-linux ] - reinterpret-cast: [ i686-linux ] - remote-json-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote-json-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - remote: [ i686-linux, x86_64-darwin, x86_64-linux ] - remotion: [ i686-linux, x86_64-darwin, x86_64-linux ] - reorderable: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-series: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-sndfile: [ x86_64-darwin ] - repa-stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - repl: [ i686-linux, x86_64-darwin, x86_64-linux ] - repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] - repr: [ i686-linux, x86_64-darwin, x86_64-linux ] - representable-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] - representable-tries: [ i686-linux, x86_64-darwin, x86_64-linux ] - resistor-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] - resource-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] - resource-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - respond: [ i686-linux, x86_64-darwin, x86_64-linux ] - restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] - restricted-workers: [ i686-linux, x86_64-darwin, x86_64-linux ] - restyle: [ i686-linux, x86_64-darwin, x86_64-linux ] - resumable-exceptions: [ i686-linux, x86_64-darwin, x86_64-linux ] - rethinkdb-model: [ i686-linux, x86_64-darwin, x86_64-linux ] - ReviewBoard: [ i686-linux, x86_64-darwin, x86_64-linux ] - rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] - rezoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] - riot: [ i686-linux, x86_64-darwin, x86_64-linux ] - ripple-federation: [ i686-linux, x86_64-darwin, x86_64-linux ] - ripple: [ i686-linux, x86_64-darwin, x86_64-linux ] - risc386: [ i686-linux, x86_64-darwin, x86_64-linux ] - rivers: [ i686-linux, x86_64-darwin, x86_64-linux ] - RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] - rmonad: [ i686-linux, x86_64-darwin, x86_64-linux ] - RMP: [ i686-linux, x86_64-linux, x86_64-darwin ] - RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] - RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - roguestar: [ i686-linux, x86_64-darwin, x86_64-linux ] - RollingDirectory: [ i686-linux, x86_64-darwin, x86_64-linux ] - rope: [ i686-linux, x86_64-darwin, x86_64-linux ] - rosa: [ i686-linux, x86_64-darwin, x86_64-linux ] - roshask: [ i686-linux, x86_64-darwin, x86_64-linux ] - rosso: [ i686-linux, x86_64-darwin, x86_64-linux ] - rounding: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-string: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] - roundtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] - route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] - route-planning: [ i686-linux, x86_64-darwin, x86_64-linux ] - rowrecord: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpc-framework: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rpm: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - rsagl: [ i686-linux, x86_64-darwin, x86_64-linux ] - rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rtcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - rtlsdr: [ x86_64-darwin ] - rtorrent-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - rubberband: [ x86_64-darwin ] - ruff: [ i686-linux, x86_64-darwin, x86_64-linux ] - ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - rungekutta: [ i686-linux, x86_64-darwin, x86_64-linux ] - RxHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-freeze: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-globals: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-lazy-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - safe-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] - safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] - sai-shape-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] - Salsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-protocol: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] - salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - sarasvati: [ x86_64-darwin ] - sasl: [ i686-linux, x86_64-darwin, x86_64-linux ] - sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - sat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] - satchmo: [ i686-linux, x86_64-darwin, x86_64-linux ] - SBench: [ i686-linux, x86_64-darwin, x86_64-linux ] - sbp: [ i686-linux, x86_64-darwin, x86_64-linux ] - scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] - scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] - scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] - scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - schedevr: [ i686-linux, x86_64-darwin, x86_64-linux ] - scholdoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] - scholdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - science-constants-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] - scion-browser: [ i686-linux, x86_64-darwin, x86_64-linux ] - scion: [ i686-linux, x86_64-darwin, x86_64-linux ] - scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - scope: [ i686-linux, x86_64-darwin, x86_64-linux ] - scottish: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-blaze: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-resource: [ i686-linux, x86_64-darwin, x86_64-linux ] - scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] - scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - ScratchFs: [ i686-linux, x86_64-linux, x86_64-darwin ] - scrobble: [ i686-linux, x86_64-darwin, x86_64-linux ] - scrz: [ i686-linux, x86_64-darwin, x86_64-linux ] - Scurry: [ i686-linux, x86_64-darwin, x86_64-linux ] - sde-solver: [ x86_64-darwin ] - SDL-gfx: [ x86_64-darwin ] - SDL-image: [ x86_64-darwin ] - SDL-mixer: [ x86_64-darwin ] - SDL-mpeg: [ x86_64-darwin ] - SDL-ttf: [ x86_64-darwin ] - sdl2-compositor: [ i686-linux, x86_64-darwin, x86_64-linux ] - sdl2-image: [ i686-linux, x86_64-darwin, x86_64-linux ] - sdl2-ttf: [ x86_64-darwin ] - sdr: [ x86_64-darwin, x86_64-linux ] - seacat: [ i686-linux, x86_64-darwin, x86_64-linux ] - search: [ i686-linux, x86_64-darwin, x86_64-linux ] - secdh: [ i686-linux, x86_64-darwin, x86_64-linux ] - second-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] - secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] - secret-sharing: [ i686-linux, x86_64-darwin, x86_64-linux ] - secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] - sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] - select: [ x86_64-darwin ] - selectors: [ i686-linux, x86_64-darwin, x86_64-linux ] - selenium-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - selenium: [ i686-linux, x86_64-darwin, x86_64-linux ] - selinux: [ i686-linux, x86_64-darwin, x86_64-linux ] - Semantique: [ i686-linux, x86_64-darwin, x86_64-linux ] - semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] - semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] - semiring: [ i686-linux, x86_64-darwin, x86_64-linux ] - semver-range: [ i686-linux, x86_64-darwin, x86_64-linux ] - sensei: [ i686-linux, x86_64-darwin, x86_64-linux ] - sensenet: [ i686-linux, x86_64-darwin, x86_64-linux ] - sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqalign: [ i686-linux ] - SeqAlign: [ i686-linux, x86_64-darwin, x86_64-linux ] - seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] - sequent-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - sequor: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-csharp: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-foreign: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-github: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-haxl-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-jquery: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-js: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - servant-swagger: [ i686-linux ] - serversession-backend-acid-state: [ x86_64-darwin ] - serversession-backend-persistent: [ x86_64-darwin ] - ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] - SessionLogger: [ i686-linux, x86_64-darwin, x86_64-linux ] - sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - set-cover: [ i686-linux, x86_64-darwin, x86_64-linux ] - set-with: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - sexpr: [ i686-linux, x86_64-darwin, x86_64-linux ] - sfml-audio: [ x86_64-darwin ] - SFML-control: [ i686-linux, x86_64-darwin, x86_64-linux ] - SFML: [ i686-linux, x86_64-darwin, x86_64-linux ] - SFont: [ i686-linux, x86_64-darwin, x86_64-linux ] - SG: [ i686-linux, x86_64-darwin, x86_64-linux ] - SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] - sgrep: [ i686-linux, x86_64-darwin, x86_64-linux ] - shadower: [ i686-linux, x86_64-darwin, x86_64-linux ] - shady-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] - shady-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] - shake-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - shaker: [ i686-linux, x86_64-darwin, x86_64-linux ] - shapely-data: [ i686-linux, x86_64-darwin, x86_64-linux ] - shared-buffer: [ i686-linux, x86_64-darwin, x86_64-linux ] - shared-memory: [ x86_64-darwin ] - she: [ i686-linux, x86_64-darwin, x86_64-linux ] - shelduck: [ x86_64-darwin ] - shell-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] - shellish: [ i686-linux, x86_64-darwin, x86_64-linux ] - showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] - shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] - Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] - sifflet-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - sifflet: [ i686-linux, x86_64-darwin, x86_64-linux ] - signals: [ i686-linux, x86_64-darwin, x86_64-linux ] - simd: [ i686-linux, x86_64-darwin, x86_64-linux ] - simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-bluetooth: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-c-value: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-css: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-form: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-log-syslog: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-pascal: [ i686-linux, x86_64-darwin, x86_64-linux ] - simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleH: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleirc-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleirc: [ i686-linux, x86_64-darwin, x86_64-linux ] - SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] - simplenote: [ i686-linux, x86_64-darwin, x86_64-linux ] - simpleprelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - simplessh: [ i686-linux, x86_64-darwin, x86_64-linux ] - simseq: [ i686-linux, x86_64-darwin, x86_64-linux ] - sindre: [ i686-linux, x86_64-darwin, x86_64-linux ] - sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] - sized: [ i686-linux, x86_64-darwin, x86_64-linux ] - sjsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - skeleton: [ i686-linux, x86_64-darwin, x86_64-linux ] - skulk: [ i686-linux, x86_64-darwin, x86_64-linux ] - skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - slack: [ i686-linux, x86_64-darwin, x86_64-linux ] - slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] - sloth: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallarray: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallpt-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - smallstring: [ i686-linux, x86_64-darwin, x86_64-linux ] - smartGroup: [ i686-linux, x86_64-linux ] - smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] - sme: [ i686-linux, x86_64-darwin, x86_64-linux ] - Smooth: [ i686-linux, x86_64-darwin, x86_64-linux ] - smsaero: [ i686-linux, x86_64-darwin, x86_64-linux ] - smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] - smtp-mail-ng: [ i686-linux, x86_64-darwin, x86_64-linux ] - smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] - snake-game: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-accept: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-loader-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] - snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-riak: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] - snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] - snappy-conduit: [ x86_64-darwin ] - snappy-framing: [ x86_64-darwin ] - snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - snappy: [ x86_64-darwin ] - sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] - SNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - snm: [ i686-linux, x86_64-darwin, x86_64-linux ] - snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] - snowglobe: [ i686-linux, x86_64-darwin, x86_64-linux ] - Snusmumrik: [ i686-linux, x86_64-linux, x86_64-darwin ] - SoccerFun: [ i686-linux, x86_64-darwin, x86_64-linux ] - SoccerFunGL: [ i686-linux, x86_64-darwin, x86_64-linux ] - sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - socket-sctp: [ i686-linux, x86_64-darwin, x86_64-linux ] - socketio: [ i686-linux, x86_64-darwin, x86_64-linux ] - socketson: [ i686-linux, x86_64-darwin, x86_64-linux ] - soegtk: [ x86_64-darwin ] - sonic-visualiser: [ i686-linux, x86_64-darwin, x86_64-linux ] - SoOSiM: [ i686-linux, x86_64-darwin, x86_64-linux ] - sorted: [ i686-linux, x86_64-darwin, x86_64-linux ] - sound-collage: [ i686-linux, x86_64-darwin, x86_64-linux ] - source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - sousit: [ i686-linux, x86_64-darwin, x86_64-linux ] - soxlib: [ i686-linux, x86_64-darwin, x86_64-linux ] - soyuz: [ i686-linux, x86_64-darwin, x86_64-linux ] - SpaceInvaders: [ i686-linux ] - SpacePrivateers: [ i686-linux, x86_64-darwin, x86_64-linux ] - spanout: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparkle: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparse: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] - sparsecheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - spata: [ i686-linux, x86_64-darwin, x86_64-linux ] - spatial-math: [ i686-linux, x86_64-darwin, x86_64-linux ] - special-functors: [ i686-linux, x86_64-darwin, x86_64-linux ] - specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - sphero: [ i686-linux, x86_64-darwin, x86_64-linux ] - sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] - spice: [ x86_64-darwin ] - spike: [ i686-linux, x86_64-linux, x86_64-darwin ] - splaytree: [ i686-linux, x86_64-darwin, x86_64-linux ] - spline3: [ i686-linux ] - splines: [ i686-linux, x86_64-darwin, x86_64-linux ] - split-record: [ i686-linux, x86_64-darwin, x86_64-linux ] - Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] - Spock-digestive: [ x86_64-darwin ] - Spock-lucid: [ x86_64-darwin ] - Spock-worker: [ x86_64-darwin ] - Spock: [ x86_64-darwin ] - spoonutil: [ i686-linux, x86_64-darwin, x86_64-linux ] - spoty: [ i686-linux, x86_64-darwin, x86_64-linux ] - Sprig: [ i686-linux, x86_64-darwin, x86_64-linux ] - spsa: [ i686-linux, x86_64-darwin, x86_64-linux ] - spy: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] - sql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - sqlite-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] - squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] - srcinst: [ i686-linux, x86_64-darwin, x86_64-linux ] - ssh: [ i686-linux, x86_64-linux ] - sssp: [ i686-linux, x86_64-darwin, x86_64-linux ] - sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] - stable-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - stack-hpc-coveralls: [ i686-linux, x86_64-darwin, x86_64-linux ] - stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] - starrover2: [ i686-linux, x86_64-linux, x86_64-darwin ] - stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] - statgrab: [ i686-linux, x86_64-darwin, x86_64-linux ] - statistics-dirichlet: [ i686-linux, x86_64-darwin, x86_64-linux ] - statistics-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - stb-truetype: [ i686-linux, x86_64-darwin, x86_64-linux ] - step-function: [ i686-linux, x86_64-darwin, x86_64-linux ] - stepwise: [ i686-linux, x86_64-darwin, x86_64-linux ] - stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] - stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] - Stomp: [ i686-linux, x86_64-darwin, x86_64-linux ] - stopwatch: [ x86_64-darwin ] - storable-static-array: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector-carray: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector-streamfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - storablevector: [ i686-linux, x86_64-darwin, x86_64-linux ] - Strafunski-Sdf2Haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - stratosphere: [ i686-linux, x86_64-darwin, x86_64-linux ] - stratum-tool: [ i686-linux, x86_64-darwin, x86_64-linux ] - stream-fusion: [ i686-linux, x86_64-darwin, x86_64-linux ] - stream: [ i686-linux, x86_64-darwin, x86_64-linux ] - streamed: [ i686-linux, x86_64-linux, x86_64-darwin ] - streaming-utils: [ i686-linux ] - strict-concurrency: [ i686-linux, x86_64-darwin, x86_64-linux ] - StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] - stringlike: [ i686-linux, x86_64-darwin, x86_64-linux ] - structured-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] - structures: [ i686-linux, x86_64-darwin, x86_64-linux ] - stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] - sub-state: [ i686-linux, x86_64-darwin, x86_64-linux ] - subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] - subleq-toolchain: [ i686-linux, x86_64-darwin, x86_64-linux ] - SuffixStructures: [ i686-linux, x86_64-darwin, x86_64-linux ] - suitable: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunlight: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] - super-user-spark: [ i686-linux, x86_64-darwin, x86_64-linux ] - supercollider-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] - superdoc: [ i686-linux, x86_64-darwin, x86_64-linux ] - supero: [ i686-linux, x86_64-darwin, x86_64-linux ] - supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] - SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] - svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] - svgcairo: [ x86_64-darwin ] - svm-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] - svndump: [ i686-linux, x86_64-darwin, x86_64-linux ] - swagger2: [ i686-linux ] - swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] - swearjure: [ i686-linux, x86_64-darwin, x86_64-linux ] - swf: [ i686-linux, x86_64-darwin, x86_64-linux ] - swift-lda: [ i686-linux, x86_64-darwin, x86_64-linux ] - sws: [ i686-linux, x86_64-darwin, x86_64-linux ] - syb-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] - sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] - sym: [ i686-linux, x86_64-darwin, x86_64-linux ] - symengine-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - sync-mht: [ i686-linux ] - sync: [ i686-linux, x86_64-darwin, x86_64-linux ] - syncthing-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntactic: [ i686-linux, x86_64-darwin ] - syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] - SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-alsa: [ i686-linux, x86_64-linux, x86_64-darwin ] - synthesizer-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-dimensional: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer-midi: [ i686-linux, x86_64-darwin, x86_64-linux ] - synthesizer: [ i686-linux, x86_64-darwin, x86_64-linux ] - Sysmon: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-canonicalpath: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-inotify: [ x86_64-darwin ] - system-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-random-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] - system-time-monotonic: [ x86_64-darwin ] - ta: [ i686-linux, x86_64-darwin, x86_64-linux ] - Tables: [ i686-linux, x86_64-darwin, x86_64-linux ] - tables: [ i686-linux, x86_64-darwin, x86_64-linux ] - tablestorage: [ i686-linux, x86_64-darwin, x86_64-linux ] - tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] - taffybar: [ x86_64-darwin ] - tagged-list: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagged-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagsoup-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] - tagsoup-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - takusen-oracle: [ i686-linux, x86_64-darwin, x86_64-linux ] - Takusen: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-term: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-theory: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - tamarin-prover: [ i686-linux, x86_64-darwin, x86_64-linux ] - target: [ i686-linux, x86_64-darwin, x86_64-linux ] - task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] - task: [ i686-linux, x86_64-darwin, x86_64-linux ] - taskpool: [ x86_64-darwin ] - tasty-groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] - tasty-integrate: [ i686-linux, x86_64-darwin, x86_64-linux ] - tasty-laws: [ i686-linux, x86_64-darwin, x86_64-linux ] - TBC: [ i686-linux, x86_64-darwin, x86_64-linux ] - TBit: [ i686-linux, x86_64-darwin, x86_64-linux ] - tbox: [ i686-linux, x86_64-darwin, x86_64-linux ] - tccli: [ i686-linux, x86_64-darwin, x86_64-linux ] - tcp: [ i686-linux, x86_64-darwin, x86_64-linux ] - tdd-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - TeaHS: [ i686-linux, x86_64-linux, x86_64-darwin ] - teams: [ i686-linux, x86_64-darwin, x86_64-linux ] - telegram-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - telegram: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-default: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] - template-yj: [ i686-linux, x86_64-darwin, x86_64-linux ] - tempodb: [ i686-linux, x86_64-darwin, x86_64-linux ] - temporal-csound: [ i686-linux, x86_64-darwin, x86_64-linux ] - tempus: [ i686-linux, x86_64-darwin, x86_64-linux ] - tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] - term-rewriting: [ i686-linux, x86_64-darwin, x86_64-linux ] - termbox-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] - terntup: [ i686-linux, x86_64-darwin, x86_64-linux ] - terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] - test-framework-doctest: [ i686-linux, x86_64-darwin, x86_64-linux ] - test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] - testpack: [ i686-linux, x86_64-darwin, x86_64-linux ] - testpattern: [ i686-linux, x86_64-darwin, x86_64-linux ] - testPkg: [ i686-linux, x86_64-darwin, x86_64-linux ] - testrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] - tetris: [ x86_64-darwin ] - tex2txt: [ i686-linux, x86_64-darwin, x86_64-linux ] - texrunner: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-json-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-normal: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-register-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-show-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - text-xml-qq: [ i686-linux, x86_64-darwin, x86_64-linux ] - textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] - tfp-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - tftp: [ x86_64-darwin ] - th-context: [ i686-linux, x86_64-darwin, x86_64-linux ] - th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] - Theora: [ i686-linux, x86_64-darwin, x86_64-linux ] - theoremquest-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - thih: [ i686-linux, x86_64-darwin, x86_64-linux ] - thimk: [ i686-linux, x86_64-darwin, x86_64-linux ] - Thingie: [ i686-linux, x86_64-darwin, x86_64-linux ] - threadscope: [ x86_64-darwin ] - Thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - tianbar: [ x86_64-darwin ] - tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] - tickle: [ i686-linux ] - TicTacToe: [ i686-linux, x86_64-darwin, x86_64-linux ] - tidal-midi: [ i686-linux, x86_64-linux, x86_64-darwin ] - tidal-vis: [ x86_64-darwin ] - tidal: [ x86_64-darwin ] - tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] - tighttp: [ i686-linux, x86_64-darwin, x86_64-linux ] - timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-exts: [ i686-linux ] - time-http: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-qq: [ i686-linux ] - time-recurrence: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-series: [ i686-linux, x86_64-darwin, x86_64-linux ] - time-w3c: [ i686-linux, x86_64-darwin, x86_64-linux ] - timecalc: [ i686-linux, x86_64-darwin, x86_64-linux ] - timelike-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] - timemap: [ i686-linux, x86_64-darwin, x86_64-linux ] - timeout: [ i686-linux, x86_64-darwin, x86_64-linux ] - timeparsers: [ i686-linux, x86_64-darwin, x86_64-linux ] - TimePiece: [ i686-linux, x86_64-darwin, x86_64-linux ] - timestamp-subprocess-lines: [ i686-linux, x86_64-darwin, x86_64-linux ] - TinyLaunchbury: [ i686-linux, x86_64-darwin, x86_64-linux ] - TinyURL: [ i686-linux, x86_64-darwin, x86_64-linux ] - tip-haskell-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] - Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] - tkhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - tkyprof: [ i686-linux, x86_64-darwin, x86_64-linux ] - tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-string-class: [ i686-linux, x86_64-darwin, x86_64-linux ] - to-string-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - todos: [ i686-linux, x86_64-darwin, x86_64-linux ] - toilet: [ i686-linux, x86_64-darwin, x86_64-linux ] - toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] - tokyocabinet-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - tokyotyrant-haskell: [ x86_64-darwin ] - tomato-rubato-openal: [ x86_64-darwin ] - toml: [ i686-linux, x86_64-darwin, x86_64-linux ] - toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] - Top: [ i686-linux, x86_64-darwin, x86_64-linux ] - topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] - torch: [ i686-linux, x86_64-darwin, x86_64-linux ] - Tournament: [ i686-linux, x86_64-darwin, x86_64-linux ] - toysolver: [ i686-linux, x86_64-darwin, x86_64-linux ] - tracker: [ i686-linux, x86_64-darwin, x86_64-linux ] - trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] - transactional-events: [ i686-linux, x86_64-darwin, x86_64-linux ] - transf: [ i686-linux, x86_64-darwin, x86_64-linux ] - transformers-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - transformers-runnable: [ i686-linux, x86_64-darwin, x86_64-linux ] - transient-universe: [ i686-linux, x86_64-darwin, x86_64-linux ] - transient: [ i686-linux, x86_64-darwin, x86_64-linux ] - translate: [ i686-linux, x86_64-darwin, x86_64-linux ] - traypoweroff: [ i686-linux, x86_64-darwin, x86_64-linux ] - tremulous-query: [ i686-linux, x86_64-darwin, x86_64-linux ] - TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - trhsx: [ i686-linux, x86_64-darwin, x86_64-linux ] - triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] - TrieMap: [ i686-linux, x86_64-darwin, x86_64-linux ] - trimpolya: [ i686-linux, x86_64-darwin, x86_64-linux ] - tripLL: [ i686-linux, x86_64-darwin, x86_64-linux ] - tropical: [ i686-linux, x86_64-darwin, x86_64-linux ] - tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - tsession: [ i686-linux, x86_64-darwin, x86_64-linux ] - tskiplist: [ i686-linux, x86_64-darwin, x86_64-linux ] - tsp-viz: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuntap: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] - tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] - tupleinstances: [ i686-linux, x86_64-darwin, x86_64-linux ] - turing-music: [ x86_64-darwin ] - twee: [ x86_64-darwin ] - twentefp-eventloop-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] - twentefp-rosetree: [ i686-linux, x86_64-darwin, x86_64-linux ] - twentefp: [ x86_64-darwin ] - twentyseven: [ i686-linux, x86_64-darwin, x86_64-linux ] - twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] - twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] - twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] - twilio: [ i686-linux, x86_64-darwin, x86_64-linux ] - twill: [ i686-linux, x86_64-darwin, x86_64-linux ] - twiml: [ i686-linux, x86_64-darwin, x86_64-linux ] - twine: [ i686-linux, x86_64-darwin, x86_64-linux ] - twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] - twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] - tx: [ i686-linux, x86_64-darwin, x86_64-linux ] - TYB: [ i686-linux, x86_64-darwin, x86_64-linux ] - typalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-digits: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-int: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-level-bst: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-ord-spine-cereal: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-ord: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-settheory: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-spine: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-structure: [ i686-linux, x86_64-darwin, x86_64-linux ] - type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - typeable-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] - typed-spreadsheet: [ x86_64-darwin ] - typed-wire-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - typed-wire: [ i686-linux, x86_64-darwin, x86_64-linux ] - typedquery: [ i686-linux, x86_64-darwin, x86_64-linux ] - typehash: [ i686-linux, x86_64-darwin, x86_64-linux ] - TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] - typelevel-tensor: [ i686-linux, x86_64-darwin, x86_64-linux ] - typeparams: [ i686-linux, x86_64-darwin, x86_64-linux ] - typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] - tz: [ x86_64-darwin ] - uAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] - uber: [ i686-linux, x86_64-darwin, x86_64-linux ] - uberlast: [ i686-linux, x86_64-darwin, x86_64-linux ] - uconv: [ i686-linux, x86_64-darwin, x86_64-linux ] - udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] - udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] - udev: [ i686-linux, x86_64-darwin, x86_64-linux ] - ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] - UISF: [ x86_64-darwin ] - UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] - unamb-custom: [ i686-linux, x86_64-darwin, x86_64-linux ] - unbounded-delays-units: [ i686-linux, x86_64-darwin, x86_64-linux ] - unboxed-containers: [ i686-linux, x86_64-darwin, x86_64-linux ] - unbreak: [ i686-linux, x86_64-darwin, x86_64-linux ] - unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] - unicoder: [ i686-linux, x86_64-darwin, x86_64-linux ] - uniform-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - union-map: [ i686-linux, x86_64-darwin, x86_64-linux ] - uniqueid: [ i686-linux, x86_64-darwin, x86_64-linux ] - unittyped: [ i686-linux, x86_64-darwin, x86_64-linux ] - universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] - unix-process-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - Unixutils-shadow: [ x86_64-darwin ] - unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] - unordered-containers-rematch: [ i686-linux, x86_64-darwin, x86_64-linux ] - unpack-funcs: [ i686-linux, x86_64-darwin, x86_64-linux ] - unscramble: [ i686-linux, x86_64-darwin, x86_64-linux ] - up: [ i686-linux, x86_64-darwin, x86_64-linux ] - uploadcare: [ i686-linux, x86_64-darwin, x86_64-linux ] - upskirt: [ i686-linux, x86_64-darwin, x86_64-linux ] - ureader: [ i686-linux, x86_64-darwin, x86_64-linux ] - urembed: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-enumerator-file: [ i686-linux, x86_64-darwin, x86_64-linux ] - uri-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - url-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] - urlcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] - urldecode: [ i686-linux, x86_64-darwin, x86_64-linux ] - urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] - UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] - URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] - urxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] - usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] - utf8-prelude: [ i686-linux, x86_64-darwin, x86_64-linux ] - UTFTConverter: [ i686-linux, x86_64-darwin, x86_64-linux ] - uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] - uvector-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] - uvector: [ i686-linux, x86_64-darwin, x86_64-linux ] - v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum-ubigraph: [ i686-linux, x86_64-darwin, x86_64-linux ] - vacuum: [ i686-linux, x86_64-darwin, x86_64-linux ] - vampire: [ i686-linux, x86_64-darwin, x86_64-linux ] - var: [ i686-linux, x86_64-darwin, x86_64-linux ] - varying: [ i686-linux, x86_64-darwin, x86_64-linux ] - vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] - vcache-trie: [ x86_64-darwin ] - vcache: [ x86_64-darwin ] - vcsgui: [ x86_64-darwin ] - Vec-Boolean: [ i686-linux, x86_64-darwin, x86_64-linux ] - Vec-OpenGLRaw: [ i686-linux, x86_64-darwin, x86_64-linux ] - Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] - vect-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-clock: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-functorlazy: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-instances-collections: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-random: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-read-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-space-opengl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vector-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - verilog: [ i686-linux, x86_64-darwin, x86_64-linux ] - versions: [ i686-linux, x86_64-darwin, x86_64-linux ] - vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] - vimus: [ i686-linux ] - vintage-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] - vinyl-vectors: [ i686-linux, x86_64-darwin, x86_64-linux ] - virthualenv: [ i686-linux, x86_64-darwin, x86_64-linux ] - vision: [ i686-linux, x86_64-darwin, x86_64-linux ] - visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] - visual-prof: [ i686-linux, x86_64-darwin, x86_64-linux ] - vivid: [ i686-linux, x86_64-darwin, x86_64-linux ] - vk-aws-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] - VKHS: [ i686-linux, x86_64-darwin, x86_64-linux ] - vowpal-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] - voyeur: [ i686-linux, x86_64-linux ] - vrpn: [ x86_64-darwin ] - vte: [ i686-linux, x86_64-linux, x86_64-darwin ] - vtegtk3: [ i686-linux, x86_64-linux, x86_64-darwin ] - vty-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - vty-menu: [ i686-linux, x86_64-darwin, x86_64-linux ] - vty-ui-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - vulkan: [ i686-linux, x86_64-darwin, x86_64-linux ] - wacom-daemon: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-graceful: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-handler-webkit: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-hastache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-logger-prefork: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-catch: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-crowd: [ i686-linux ] - wai-middleware-headers: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-hmac-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-middleware-static-caching: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-session-tokyocabinet: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-static-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-thrift: [ i686-linux, x86_64-darwin, x86_64-linux ] - wai-throttler: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-static: [ i686-linux, x86_64-darwin, x86_64-linux ] - warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] - WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] - watchdog: [ i686-linux, x86_64-darwin, x86_64-linux ] - watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] - watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] - WaveFront: [ i686-linux, x86_64-darwin, x86_64-linux ] - wavesurfer: [ i686-linux, x86_64-darwin, x86_64-linux ] - weather-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-browser-in-haskell: [ i686-linux, x86_64-linux, x86_64-darwin ] - web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-routes-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] - web-routes-transformers: [ i686-linux, x86_64-darwin, x86_64-linux ] - webapi: [ i686-linux, x86_64-darwin, x86_64-linux ] - webapp: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebBits-Html: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebBits-multiplate: [ i686-linux, x86_64-darwin, x86_64-linux ] - WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] - webdriver-snoy: [ i686-linux, x86_64-darwin, x86_64-linux ] - webify: [ i686-linux, x86_64-darwin, x86_64-linux ] - webkit-javascriptcore: [ i686-linux, x86_64-linux, x86_64-darwin ] - webkit: [ x86_64-darwin ] - webkitgtk3-javascriptcore: [ x86_64-darwin ] - webkitgtk3: [ x86_64-darwin ] - Webrexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] - websnap: [ i686-linux, x86_64-linux, x86_64-darwin ] - webwire: [ i686-linux, x86_64-darwin, x86_64-linux ] - wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] - weighted-regexp: [ i686-linux, x86_64-darwin, x86_64-linux ] - welshy: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-mongo: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - wheb-strapped: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wheb: [ i686-linux, x86_64-darwin, x86_64-linux ] - whim: [ i686-linux, x86_64-darwin, x86_64-linux ] - whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] - WikimediaParser: [ i686-linux, x86_64-darwin, x86_64-linux ] - wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] - windowslive: [ i686-linux, x86_64-darwin, x86_64-linux ] - winerror: [ i686-linux, x86_64-darwin, x86_64-linux ] - winio: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wired: [ x86_64-darwin ] - wkt: [ i686-linux, x86_64-darwin, x86_64-linux ] - WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] - wlc-hs: [ i686-linux, x86_64-linux, x86_64-darwin ] - WMSigner: [ i686-linux ] - wobsurv: [ i686-linux, x86_64-darwin, x86_64-linux ] - woffex: [ i686-linux, x86_64-darwin, x86_64-linux ] - wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] - word24: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] - Wordlint: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordNet-ghc74: [ i686-linux, x86_64-darwin, x86_64-linux ] - WordNet: [ i686-linux, x86_64-darwin, x86_64-linux ] - wordsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] - workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] - wp-archivebot: [ i686-linux, x86_64-darwin, x86_64-linux ] - wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] - wright: [ i686-linux, x86_64-darwin, x86_64-linux ] - wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-basic: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-drawing: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-microprint: [ i686-linux, x86_64-darwin, x86_64-linux ] - wumpus-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] - WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] - wx: [ x86_64-darwin ] - wxAsteroids: [ x86_64-darwin ] - wxc: [ x86_64-darwin ] - wxcore: [ x86_64-darwin ] - WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] - wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] - WxGeneric: [ x86_64-darwin ] - wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] - wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] - wyvern: [ i686-linux, x86_64-darwin, x86_64-linux ] - x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-rm: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] - X11-xfixes: [ i686-linux, x86_64-darwin, x86_64-linux ] - x11-xinput: [ i686-linux, x86_64-darwin, x86_64-linux ] - xattr: [ x86_64-darwin ] - xbattbar: [ x86_64-darwin ] - xchat-plugin: [ x86_64-darwin, x86_64-linux ] - xdot: [ x86_64-darwin ] - Xec: [ i686-linux, x86_64-darwin, x86_64-linux ] - xfconf: [ i686-linux, x86_64-darwin, x86_64-linux ] - xhaskell-library: [ i686-linux, x86_64-darwin, x86_64-linux ] - xhb-ewmh: [ i686-linux, x86_64-darwin, x86_64-linux ] - xine: [ i686-linux, x86_64-darwin, x86_64-linux ] - xing-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] - xkcd: [ i686-linux, x86_64-darwin, x86_64-linux ] - xlsx-templater: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-catalog: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-enumerator-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-pipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-prettify: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-push: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml2json: [ i686-linux, x86_64-darwin, x86_64-linux ] - xml2x: [ i686-linux, x86_64-darwin, x86_64-linux ] - XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmltv: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] - XMMS: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmobar: [ x86_64-darwin ] - xmonad-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] - xmonad-screenshot: [ x86_64-darwin ] - xmonad-utils: [ x86_64-darwin ] - xmpipe: [ i686-linux, x86_64-darwin, x86_64-linux ] - XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] - xosd: [ x86_64-darwin ] - xournal-convert: [ i686-linux, x86_64-darwin, x86_64-linux ] - xournal-render: [ i686-linux, x86_64-darwin, x86_64-linux ] - xsact: [ i686-linux, x86_64-darwin, x86_64-linux ] - XSaiga: [ i686-linux, x86_64-darwin, x86_64-linux ] - xslt: [ i686-linux, x86_64-darwin, x86_64-linux ] - xtc: [ x86_64-darwin ] - y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] - YACPong: [ i686-linux, x86_64-linux, x86_64-darwin ] - yahoo-web-search: [ i686-linux, x86_64-darwin, x86_64-linux ] - yajl-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] - yajl: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml-union: [ i686-linux, x86_64-darwin, x86_64-linux ] - yaml2owl: [ i686-linux, x86_64-darwin, x86_64-linux ] - YamlReference: [ x86_64-darwin ] - yampa-canvas: [ i686-linux ] - yampa-glfw: [ i686-linux, x86_64-darwin, x86_64-linux ] - yampa-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] - yampa2048: [ i686-linux, x86_64-darwin ] - Yampa: [ i686-linux ] - YampaSynth: [ i686-linux ] - yaop: [ i686-linux, x86_64-darwin, x86_64-linux ] - yarr-image-io: [ i686-linux, x86_64-darwin, x86_64-linux ] - yarr: [ i686-linux, x86_64-darwin, x86_64-linux ] - yate: [ i686-linux, x86_64-darwin, x86_64-linux ] - yavie: [ i686-linux, x86_64-darwin, x86_64-linux ] - ycextra: [ i686-linux, x86_64-darwin, x86_64-linux ] - yeshql: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-angular-ui: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-auth-ldap: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-auth-pam: [ i686-linux, x86_64-linux, x86_64-darwin ] - yesod-auth-smbclient: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-content-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-crud: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-datatables: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-links: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-mangopay: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-media-simple: [ x86_64-darwin ] - yesod-paginate: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-pagination: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-pnotify: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-session-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-tableview: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-test-json: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-vend: [ i686-linux, x86_64-darwin, x86_64-linux ] - yesod-worker: [ i686-linux, x86_64-darwin, x86_64-linux ] - yet-another-logger: [ i686-linux ] - YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] - yhccore: [ i686-linux, x86_64-darwin, x86_64-linux ] - yi-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] - yi-fuzzy-open: [ x86_64-darwin ] - yi-monokai: [ x86_64-darwin ] - yi-rope: [ x86_64-darwin ] - yi-snippet: [ x86_64-darwin ] - yi-solarized: [ x86_64-darwin ] - yi-spolsky: [ x86_64-darwin ] - yi: [ x86_64-darwin ] - yices: [ i686-linux, x86_64-darwin, x86_64-linux ] - yjftp: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] - Yogurt: [ i686-linux, x86_64-darwin, x86_64-linux ] - yoko: [ i686-linux, x86_64-darwin, x86_64-linux ] - york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] - yql: [ i686-linux, x86_64-darwin, x86_64-linux ] - yuiGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] - yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] - yxdb-utils: [ i686-linux ] - z3: [ x86_64-darwin ] - zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] - zasni-gerna: [ i686-linux, x86_64-darwin, x86_64-linux ] - zendesk-api: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeno: [ i686-linux, x86_64-darwin, x86_64-linux ] - zerobin: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq3-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeromq3-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] - zeroth: [ i686-linux, x86_64-darwin, x86_64-linux ] - ZFS: [ i686-linux, x86_64-darwin, x86_64-linux ] - zip: [ i686-linux, x86_64-darwin, x86_64-linux ] - zipedit: [ i686-linux, x86_64-darwin, x86_64-linux ] - ZMachine: [ i686-linux, x86_64-darwin, x86_64-linux ] - zmcat: [ i686-linux, x86_64-darwin, x86_64-linux ] - zmqat: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] - zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] - zot: [ i686-linux, x86_64-darwin, x86_64-linux ] - zsh-battery: [ i686-linux, x86_64-darwin, x86_64-linux ] - ztail: [ i686-linux, x86_64-darwin, x86_64-linux ] - Zwaluw: [ i686-linux, x86_64-darwin, x86_64-linux ] From 2d201d41ca1f90e0f1a7ec3b8054711133a2e024 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 May 2016 18:37:30 +0200 Subject: [PATCH 099/520] configuration-ghc-7.10.x.nix: update to cabal-install 1.24.x by default --- .../development/haskell-modules/configuration-ghc-7.10.x.nix | 5 +---- 1 file changed, 1 insertion(+), 4 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 7e82d94e3485..24cf6fdeab4a 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -33,11 +33,8 @@ self: super: { unix = null; xhtml = null; - # Our core version of Cabal is good enough for this build. - cabal-install = dontCheck (super.cabal-install.override { Cabal = null; }); - # Enable latest version of cabal-install. - cabal-install_1_24_0_0 = (doDistribute (dontJailbreak (dontCheck (super.cabal-install_1_24_0_0)))).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); + cabal-install = (doDistribute (dontJailbreak (dontCheck (super.cabal-install)))).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); # Jailbreaking is required for the test suite only (which we don't run). Cabal_1_24_0_0 = dontJailbreak (dontCheck super.Cabal_1_24_0_0); From 4ab2a32888442ef0ff4c3c72708f678002bc1bde Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 May 2016 18:38:00 +0200 Subject: [PATCH 100/520] configuration-ghc-8.0.x.nix: drop obsolete overrides We're following Stackage Nightly with GHC 8.x now, so problems should be reported there rather than fixed locally in Nixpkgs. --- .../configuration-ghc-8.0.x.nix | 159 +++++++++--------- 1 file changed, 80 insertions(+), 79 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 761e339cdb97..05784efb0789 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -40,115 +40,115 @@ self: super: { # jailbreak-cabal can use the native Cabal library. jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; }; - # https://github.com/hspec/HUnit/issues/7 - HUnit = dontCheck super.HUnit; + # # https://github.com/hspec/HUnit/issues/7 + # HUnit = dontCheck super.HUnit; - # https://github.com/hspec/hspec/issues/253 - hspec-core = dontCheck super.hspec-core; + # # https://github.com/hspec/hspec/issues/253 + # hspec-core = dontCheck super.hspec-core; - # Deviate from Stackage here to fix lots of builds. - transformers-compat = self.transformers-compat_0_5_1_4; + # # Deviate from Stackage here to fix lots of builds. + # transformers-compat = self.transformers-compat_0_5_1_4; - # No modules defined for this compiler. - fail = dontHaddock super.fail; + # # No modules defined for this compiler. + # fail = dontHaddock super.fail; - # Version 4.x doesn't compile with transformers 0.5 or later. - comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33 - comonad = self.comonad_5; + # # Version 4.x doesn't compile with transformers 0.5 or later. + # comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33 + # comonad = self.comonad_5; - # Versions <= 5.2 don't compile with transformers 0.5 or later. - bifunctors = self.bifunctors_5_3; + # # Versions <= 5.2 don't compile with transformers 0.5 or later. + # bifunctors = self.bifunctors_5_3; - # https://github.com/ekmett/semigroupoids/issues/42 - semigroupoids = dontCheck super.semigroupoids; + # # https://github.com/ekmett/semigroupoids/issues/42 + # semigroupoids = dontCheck super.semigroupoids; - # Version 4.x doesn't compile with transformers 0.5 or later. - kan-extensions = self.kan-extensions_5_0_1; + # # Version 4.x doesn't compile with transformers 0.5 or later. + # kan-extensions = self.kan-extensions_5_0_1; - # Earlier versions don't support kan-extensions 5.x. - lens = self.lens_4_14; + # # Earlier versions don't support kan-extensions 5.x. + # lens = self.lens_4_14; - # https://github.com/dreixel/generic-deriving/issues/37 - generic-deriving = dontHaddock super.generic-deriving; + # # https://github.com/dreixel/generic-deriving/issues/37 + # generic-deriving = dontHaddock super.generic-deriving; - # https://github.com/haskell-suite/haskell-src-exts/issues/302 - haskell-src-exts = dontCheck super.haskell-src-exts; + # # https://github.com/haskell-suite/haskell-src-exts/issues/302 + # haskell-src-exts = dontCheck super.haskell-src-exts; - active = doJailbreak super.active; + # active = doJailbreak super.active; - authenticate-oauth = doJailbreak super.authenticate-oauth; + # authenticate-oauth = doJailbreak super.authenticate-oauth; - diagrams-core = doJailbreak super.diagrams-core; + # diagrams-core = doJailbreak super.diagrams-core; - diagrams-lib = doJailbreak super.diagrams-lib; + # diagrams-lib = doJailbreak super.diagrams-lib; - foldl = doJailbreak super.foldl; + # foldl = doJailbreak super.foldl; - force-layout = doJailbreak super.force-layout; + # force-layout = doJailbreak super.force-layout; - # packaged 0.2.2.6 is missing: base >=4.7 && <4.9 - freer = doJailbreak super.freer; + # # packaged 0.2.2.6 is missing: base >=4.7 && <4.9 + # freer = doJailbreak super.freer; - # Partial fixes released in 1.20.5 upstream, full fixes only in git - linear = pkgs.haskell.lib.overrideCabal super.linear (oldAttrs: { - editedCabalFile = null; - revision = null; - src = pkgs.fetchgit { - url = https://github.com/ekmett/linear.git; - rev = "8da21dc72714441cb34d6eabd6c224819787365c"; - sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9"; - }; - }); + # # Partial fixes released in 1.20.5 upstream, full fixes only in git + # linear = pkgs.haskell.lib.overrideCabal super.linear (oldAttrs: { + # editedCabalFile = null; + # revision = null; + # src = pkgs.fetchgit { + # url = https://github.com/ekmett/linear.git; + # rev = "8da21dc72714441cb34d6eabd6c224819787365c"; + # sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9"; + # }; + # }); - lucid-svg = doJailbreak super.lucid-svg; + # lucid-svg = doJailbreak super.lucid-svg; - monads-tf = doJailbreak super.monads-tf; + # monads-tf = doJailbreak super.monads-tf; - parsers = doJailbreak super.parsers; + # parsers = doJailbreak super.parsers; - pointed = super.pointed_5; + # pointed = super.pointed_5; - reducers = doJailbreak super.reducers; + # reducers = doJailbreak super.reducers; - sdl2 = doJailbreak super.sdl2; + # sdl2 = doJailbreak super.sdl2; - servant = dontCheck (doJailbreak super.servant_0_7); - servant-client = dontCheck (doJailbreak super.servant-client_0_7); - servant-server = dontCheck (doJailbreak super.servant-server_0_7); + # servant = dontCheck (doJailbreak super.servant_0_7); + # servant-client = dontCheck (doJailbreak super.servant-client_0_7); + # servant-server = dontCheck (doJailbreak super.servant-server_0_7); - # packaged shelly 1.6.6 complains: time >=1.3 && <1.6 - shelly = doJailbreak super.shelly; + # # packaged shelly 1.6.6 complains: time >=1.3 && <1.6 + # shelly = doJailbreak super.shelly; - # The essential part is released in 2.1 upstream (needs hackage import) - singletons = (pkgs.haskell.lib.overrideCabal super.singletons (oldAttrs: { - src = pkgs.fetchgit { - url = https://github.com/goldfirere/singletons.git; - rev = "277fa943e8c260973effb2291672b166bdd951c1"; - sha256 = "1ll9fcgs5nxqihvv5vr2bf9z6ijvn3yyk5ss3cgcfvcd95ayy1wz"; - }; - })); + # # The essential part is released in 2.1 upstream (needs hackage import) + # singletons = (pkgs.haskell.lib.overrideCabal super.singletons (oldAttrs: { + # src = pkgs.fetchgit { + # url = https://github.com/goldfirere/singletons.git; + # rev = "277fa943e8c260973effb2291672b166bdd951c1"; + # sha256 = "1ll9fcgs5nxqihvv5vr2bf9z6ijvn3yyk5ss3cgcfvcd95ayy1wz"; + # }; + # })); - # The essential part only in upstream git, last released upstream version 2.7.0, Dec 8 - stm-conduit = doJailbreak (pkgs.haskell.lib.overrideCabal super.stm-conduit (oldAttrs: { - src = pkgs.fetchgit { - url = https://github.com/cgaebel/stm-conduit.git; - rev = "3f831d703c422239e56a9da0f42db8a7059238e0"; - sha256 = "0bmym2ps0yjcsbyg02r8v1q8z5hpml99n72hf2pjmd31dy8iz7v9"; - }; - })); + # # The essential part only in upstream git, last released upstream version 2.7.0, Dec 8 + # stm-conduit = doJailbreak (pkgs.haskell.lib.overrideCabal super.stm-conduit (oldAttrs: { + # src = pkgs.fetchgit { + # url = https://github.com/cgaebel/stm-conduit.git; + # rev = "3f831d703c422239e56a9da0f42db8a7059238e0"; + # sha256 = "0bmym2ps0yjcsbyg02r8v1q8z5hpml99n72hf2pjmd31dy8iz7v9"; + # }; + # })); - # The essential part only in upstream git, last released upstream version 1.6.0, Jan 27 - th-desugar = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-desugar (oldAttrs: { - src = pkgs.fetchgit { - url = https://github.com/goldfirere/th-desugar.git; - rev = "7496de0243a12c14be1b37b89eb41cf9ef6f5229"; - sha256 = "10awknqviq7jb738r6n9rlyra0pvkrpnk0hikz4459hny4hamn75"; - }; - })); + # # The essential part only in upstream git, last released upstream version 1.6.0, Jan 27 + # th-desugar = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-desugar (oldAttrs: { + # src = pkgs.fetchgit { + # url = https://github.com/goldfirere/th-desugar.git; + # rev = "7496de0243a12c14be1b37b89eb41cf9ef6f5229"; + # sha256 = "10awknqviq7jb738r6n9rlyra0pvkrpnk0hikz4459hny4hamn75"; + # }; + # })); - trifecta = doJailbreak super.trifecta; + # trifecta = doJailbreak super.trifecta; - turtle = doJailbreak super.turtle; + # turtle = doJailbreak super.turtle; ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation { pname = "ghcjs-prim"; @@ -162,5 +162,6 @@ self: super: { license = pkgs.stdenv.lib.licenses.bsd3; }) {}; - MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers; + # MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers; + } From fc0c63d3697e9c880094d80013803c095316a364 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 27 May 2016 18:49:02 +0200 Subject: [PATCH 101/520] configuration-ghc-8.0.x.nix: update list of core packages --- pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 05784efb0789..513df67ae0ed 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -18,6 +18,7 @@ self: super: { directory = null; filepath = null; ghc-boot = null; + ghc-boot-th = null; ghc-prim = null; ghci = null; haskeline = null; From 98c03caeac91d0466e66772574a170c309bb7bca Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:04:26 +0200 Subject: [PATCH 102/520] generate-hackage-package-set.nix: drop experimental code from master branch --- .../generate-hackage-package-set.nix | 90 ------------------- 1 file changed, 90 deletions(-) delete mode 100644 pkgs/development/haskell-modules/generate-hackage-package-set.nix diff --git a/pkgs/development/haskell-modules/generate-hackage-package-set.nix b/pkgs/development/haskell-modules/generate-hackage-package-set.nix deleted file mode 100644 index b96494513ee5..000000000000 --- a/pkgs/development/haskell-modules/generate-hackage-package-set.nix +++ /dev/null @@ -1,90 +0,0 @@ -{ pkgs ? (import {}).pkgs -, lib ? pkgs.lib -, stdenv ? pkgs.stdenv -}: - -let - - nixpkgs = pkgs.fetchFromGitHub { - owner = "peti"; - repo = "nixpkgs"; - rev = "b558bfa7d1e820904ff9d7bbc1f02ad51f690e34"; - sha256 = "1n1hicnn5mybd9cm7s2my5ayphsy0hhjv6bc4xcb1v9rpcm8pm16"; - }; - - cabal2nix = pkgs.fetchFromGitHub { - owner = "NixOS"; - repo = "cabal2nix"; - rev = "116145753cbf05572c127e00d8616385f8faa378"; - sha256 = "16zvxs2hjv7wvl1hmwq3v272rc9r6ind2vlcvdx29f3risxpjzkp"; - }; - - hackage = pkgs.fetchFromGitHub { - owner = "commercialhaskell"; - repo = "all-cabal-hashes"; - rev = "85f28bd0d000706c29f78275100dddd7c1c6c2f6"; - sha256 = "0w41lzkjvndcpscn5lyb8vvxpvq0kbg5ggdsk31167psa1g32hrz"; - }; - - lts-haskell = pkgs.fetchFromGitHub { - owner = "fpco"; - repo = "lts-haskell"; - rev = "89c3b45370ec1742d9e029ff4e5271316031b84b"; - sha256 = "0w3cz19g0h8dfxjpwf28rzj0xska11cbn5in5835ss2ypmbr2lwr"; - }; - - stackage-nightly = pkgs.fetchFromGitHub { - owner = "fpco"; - repo = "stackage-nightly"; - rev = "98e337bf6bf8efb772babe252e3f0027d8b6f859"; - sha256 = "1dmc8y72np2np3zrvdl61x539yw3qi4fpyyswib29j0h90pwj93p"; - }; - - haskellPackages = pkgs.haskell.packages.bootstrap.override { - overrides = self: super: { - distribution-nixpkgs = super.distribution-nixpkgs.overrideDerivation (old: { src = cabal2nix; }); - cabal2nix = super.cabal2nix.overrideDerivation (old: { src = cabal2nix; }); - hackage2nix = super.hackage2nix.overrideDerivation (old: { src = cabal2nix; }); - }; - }; - -in - -stdenv.mkDerivation { - name = "haskell-update-0"; - buildInputs = [ haskellPackages.hackage2nix pkgs.nix ]; - src = [ nixpkgs ]; - buildPhase = '' - # Processing Hackage requires UTF-8 support. - export LANG="en_US.UTF-8" - ${lib.optionalString stdenv.isLinux ''export LOCALE_ARCHIVE="${pkgs.glibcLocales}/lib/locale/locale-archive"''} - - # hackage2nix runs nix-env to determine the set of visible package names. - export NIX_STORE_DIR="$TMPDIR/nix/store" NIX_STATE_DIR="$TMPDIR/nix/var" - - # Build the preferred-versions file. - for i in "${hackage}/"*/preferred-versions; do - cat >>$TMPDIR/preferred-versions "$i" - echo >>$TMPDIR/preferred-versions - done - - # Generate the updated Haskell package set and LTS configuration files. - hackage2nix +RTS -M6G -RTS \ - --nixpkgs="$PWD" --preferred-versions="$TMPDIR/preferred-versions" \ - --hackage="${hackage}" --lts-haskell="${lts-haskell}" \ - --stackage-nightly="${stackage-nightly}" - ''; - - doCheck = true; - checkPhase = '' - # Verify that all Haskell packages still evaluate properly. - nix-env -qaP -f "$PWD" -A haskellPackages >/dev/null - ''; - - installPhase = '' - mkdir -p "$out" - cp pkgs/development/haskell-modules/hackage-packages.nix "$out/" - cp pkgs/development/haskell-modules/configuration-lts-*.nix "$out/" - ''; - -} From 4825b607f8adb98c7d8ace32bb300263ed1dc077 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:13:24 +0200 Subject: [PATCH 103/520] configuration-ghc-7.10.x.nix: add missing core library names from GHC 8.x to fix evaluation --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 24cf6fdeab4a..9b3f9d09083b 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -18,7 +18,10 @@ self: super: { deepseq = null; directory = null; filepath = null; + ghc-boot = null; + ghc-boot-th = null; ghc-prim = null; + ghci = null; haskeline = null; hoopl = null; hpc = null; From 0331c3ee8d09f07f36b48a2bd6a53680a1065953 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:17:32 +0200 Subject: [PATCH 104/520] configuration-hackage2nix.yaml: update list of broken packages --- .../configuration-hackage2nix.yaml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index bdb696e1713a..a5591694356e 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -128,9 +128,6 @@ dont-distribute-packages: # Depens on shine, which is a ghcjs project. shine-varying: [ i686-linux, x86_64-linux, x86_64-darwin ] - # The build succeeds, but takes insanely long (> 2 hours). - sharc-timbre: [ i686-linux, x86_64-linux, x86_64-darwin ] - # these packages depend on software with an unfree license accelerate-cublas: [ i686-linux, x86_64-linux, x86_64-darwin ] accelerate-cuda: [ i686-linux, x86_64-linux, x86_64-darwin ] @@ -150,3 +147,16 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors + clang-pure: [ i686-linux, x86_64-linux, x86_64-darwin ] + fltkhs-demos: [ i686-linux, x86_64-linux, x86_64-darwin ] + fltkhs-fluid-demos: [ i686-linux, x86_64-linux, x86_64-darwin ] + fltkhs-hello-world: [ i686-linux, x86_64-linux, x86_64-darwin ] + haste-gapi: [ i686-linux, x86_64-linux, x86_64-darwin ] + haste-perch: [ i686-linux, x86_64-linux, x86_64-darwin ] + hplayground: [ i686-linux, x86_64-linux, x86_64-darwin ] + leksah: [ i686-linux, x86_64-linux, x86_64-darwin ] + sneathlane-haste: [ i686-linux, x86_64-linux, x86_64-darwin ] + treersec: [ i686-linux, x86_64-linux, x86_64-darwin ] + yi-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + temporal-csound: [ i686-linux, x86_64-linux, x86_64-darwin ] + csound-catalog: [ i686-linux, x86_64-linux, x86_64-darwin ] From 7e7c4ff779da96a2cf138f639a521d9c56794889 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:37:35 +0200 Subject: [PATCH 105/520] Fix LTS Haskell builds of case-insensitive and semigroups. --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 4 ++++ 1 file changed, 4 insertions(+) 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 9b3f9d09083b..d47d8ca79c7e 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -197,4 +197,8 @@ self: super: { # https://github.com/well-typed/hackage-security/issues/158 hackage-security = dontHaddock (dontCheck super.hackage-security); + # GHC versions prior to 8.x require additional build inputs. + case-insensitive = addBuildDepend super.case-insensitive self.semigroups; + semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); + } From 2d1e907c61923c053bc61baa8021c149e43f4af0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:53:04 +0200 Subject: [PATCH 106/520] Fix LTS Haskell version of aeson. --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 4 +--- 1 file changed, 1 insertion(+), 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 d47d8ca79c7e..5ffda7f28082 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; - # We have time 1.5 - aeson = disableCabalFlag super.aeson "old-locale"; - # requires filepath >=1.1 && <1.4 Glob = doJailbreak super.Glob; @@ -198,6 +195,7 @@ self: super: { hackage-security = dontHaddock (dontCheck super.hackage-security); # GHC versions prior to 8.x require additional build inputs. + aeson = disableCabalFlag (addBuildDepend super.aeson self.semigroups) "old-locale"; case-insensitive = addBuildDepend super.case-insensitive self.semigroups; semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); From 8277beff4613ad27b43e33d5155b76e2c2ee4519 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 28 May 2016 13:56:54 +0200 Subject: [PATCH 107/520] Fix LTS Haskell version of intervals. --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 1 + 1 file changed, 1 insertion(+) 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 5ffda7f28082..01f14636daa7 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -198,5 +198,6 @@ self: super: { aeson = disableCabalFlag (addBuildDepend super.aeson self.semigroups) "old-locale"; case-insensitive = addBuildDepend super.case-insensitive self.semigroups; semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); + intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]); } From f226dbff00d5565b21c68bacbf22f0cfab55515d Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 15:24:44 -0400 Subject: [PATCH 108/520] lens-family-th: restrict version to 7.10.X compatible --- .../haskell-modules/configuration-ghc-7.10.x.nix | 6 ++++++ 1 file changed, 6 insertions(+) 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 01f14636daa7..1d3bc01977ed 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -178,6 +178,12 @@ self: super: { # https://github.com/haskell/haddock/issues/427 haddock = dontCheck super.haddock; + # haddock-api >= 2.17 is GHC 8.0 only + haddock-api = self.haddock-api_2_16_1; + + # lens-family-th >= 0.5.0.0 is GHC 8.0 only + lens-family-th = self.lens-family-th_0_4_1_0; + # The tests in vty-ui do not build, but vty-ui itself builds. vty-ui = enableCabalFlag super.vty-ui "no-tests"; From ffe733a52deace5193248c780c5c10200a9efec3 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 15:49:17 -0400 Subject: [PATCH 109/520] cereal: Add dependency for 7.10.x compatibility --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 3 +++ 1 file changed, 3 insertions(+) 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 1d3bc01977ed..18ed30da237f 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -184,6 +184,9 @@ self: super: { # lens-family-th >= 0.5.0.0 is GHC 8.0 only lens-family-th = self.lens-family-th_0_4_1_0; + # cereal must have `fail` in pre-ghc-8.0.x versions + cereal = addBuildDepend super.cereal self.fail; + # The tests in vty-ui do not build, but vty-ui itself builds. vty-ui = enableCabalFlag super.vty-ui "no-tests"; From be6c46c3b3b34f41722b4f567ae853f29a66cb91 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 18:21:18 -0400 Subject: [PATCH 110/520] gtk2hs-buildtools: ensure appropriate Cabal version --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5f1335ca72fb..200acc6539b5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1005,4 +1005,6 @@ self: super: { yi-solarized = markBroken super.yi-solarized; yi-spolsky = markBroken super.yi-spolsky; + # gtk2hs-buildtools must have Cabal 1.24 + gtk2hs-buildtools = super.gtk2hs-buildtools.override { Cabal = self.Cabal_1_24_0_0; }; } From 607e123d11c42e201fa74ecdf0865914a449489a Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 16:13:23 -0400 Subject: [PATCH 111/520] ghc-mod: Depend on cabal-helper 0.6.3.1 --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 200acc6539b5..2205db601205 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -754,7 +754,7 @@ self: super: { lens-aeson = dontCheck super.lens-aeson; # Byte-compile elisp code for Emacs. - ghc-mod = overrideCabal super.ghc-mod (drv: { + ghc-mod = overrideCabal (super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; }) (drv: { preCheck = "export HOME=$TMPDIR"; testToolDepends = drv.testToolDepends or [] ++ [self.cabal-install]; doCheck = false; # https://github.com/kazu-yamamoto/ghc-mod/issues/335 From 5c803214eeb219ccdca503e5fe6fb851595d68d1 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 16:24:10 -0400 Subject: [PATCH 112/520] distribution-nixpkgs: Compile with older deepseq-generics --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 2205db601205..9c5032ab5201 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -645,7 +645,7 @@ self: super: { # Override the obsolete version from Hackage with our more up-to-date copy. cabal2nix = self.callPackage ../tools/haskell/cabal2nix/cabal2nix.nix {}; hackage2nix = self.callPackage ../tools/haskell/cabal2nix/hackage2nix.nix {}; - distribution-nixpkgs = self.callPackage ../tools/haskell/cabal2nix/distribution-nixpkgs.nix {}; + distribution-nixpkgs = self.callPackage ../tools/haskell/cabal2nix/distribution-nixpkgs.nix { deepseq-generics = self.deepseq-generics_0_1_1_2; }; # https://github.com/ndmitchell/shake/issues/206 # https://github.com/ndmitchell/shake/issues/267 From 20cf5c975054abcfa3a695e3d4be5e23c44c47fd Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 16:29:38 -0400 Subject: [PATCH 113/520] hackage2nix: Compile with older deepseq-generics --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9c5032ab5201..6d75e77b9a0f 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -644,7 +644,7 @@ self: super: { # Override the obsolete version from Hackage with our more up-to-date copy. cabal2nix = self.callPackage ../tools/haskell/cabal2nix/cabal2nix.nix {}; - hackage2nix = self.callPackage ../tools/haskell/cabal2nix/hackage2nix.nix {}; + hackage2nix = self.callPackage ../tools/haskell/cabal2nix/hackage2nix.nix { deepseq-generics = self.deepseq-generics_0_1_1_2; }; distribution-nixpkgs = self.callPackage ../tools/haskell/cabal2nix/distribution-nixpkgs.nix { deepseq-generics = self.deepseq-generics_0_1_1_2; }; # https://github.com/ndmitchell/shake/issues/206 From b0f64b04fc379d737b9407fb2b620ded9b1f332d Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Sun, 29 May 2016 18:16:22 -0400 Subject: [PATCH 114/520] pandoc: jailbreak --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6d75e77b9a0f..ee16ba323127 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -586,7 +586,7 @@ self: super: { test-sandbox-compose = dontCheck super.test-sandbox-compose; # https://github.com/jgm/pandoc/issues/2709 - pandoc = disableSharedExecutables super.pandoc; + pandoc = doJailbreak (disableSharedExecutables super.pandoc); # Tests attempt to use NPM to install from the network into # /homeless-shelter. Disabled. From 5ca5a4f773ec6447ed400f8be19345342ef502c4 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Mon, 30 May 2016 07:51:15 -0400 Subject: [PATCH 115/520] gtk2hs-buildtools: hand-code some dependencies A change in the way the gtk2hs libraries make use of gtk2hs-buildtools caused them to move the dependency into a stanza where cabal2nix doesn't pick it up---so we need to do these by hand for the moment. --- .../haskell-modules/configuration-common.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index ee16ba323127..9973d5bca4d8 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -229,13 +229,14 @@ self: super: { jwt = dontCheck super.jwt; # https://github.com/NixOS/cabal2nix/issues/136 - gio = addPkgconfigDepend super.gio pkgs.glib; gio_0_13_0_3 = addPkgconfigDepend super.gio_0_13_0_3 pkgs.glib; gio_0_13_0_4 = addPkgconfigDepend super.gio_0_13_0_4 pkgs.glib; gio_0_13_1_0 = addPkgconfigDepend super.gio_0_13_1_0 pkgs.glib; - glib = addPkgconfigDepend super.glib pkgs.glib; + # https://github.com/NixOS/cabal2nix/issues/136 and https://github.com/NixOS/cabal2nix/issues/216 + gio = addPkgconfigDepend (addBuildTool super.gio self.gtk2hs-buildtools) pkgs.glib; + glib = addPkgconfigDepend (addBuildTool super.glib self.gtk2hs-buildtools) pkgs.glib; gtk3 = super.gtk3.override { inherit (pkgs) gtk3; }; - gtk = addPkgconfigDepend super.gtk pkgs.gtk; + gtk = addPkgconfigDepend (addBuildTool super.gtk self.gtk2hs-buildtools) pkgs.gtk; gtksourceview2 = (addPkgconfigDepend super.gtksourceview2 pkgs.gtk2).override { inherit (pkgs.gnome2) gtksourceview; }; gtksourceview3 = super.gtksourceview3.override { inherit (pkgs.gnome3) gtksourceview; }; @@ -1007,4 +1008,8 @@ self: super: { # gtk2hs-buildtools must have Cabal 1.24 gtk2hs-buildtools = super.gtk2hs-buildtools.override { Cabal = self.Cabal_1_24_0_0; }; + + # Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza + cairo = addBuildTool super.cairo self.gtk2hs-buildtools; + pango = addBuildTool super.pango self.gtk2hs-buildtools; } From 506fe4e5c10c4f4a0fef86ef890dcac8f22d5870 Mon Sep 17 00:00:00 2001 From: Tomas Hlavaty Date: Tue, 31 May 2016 22:33:18 +0200 Subject: [PATCH 116/520] ecl: upstream changed url --- pkgs/development/compilers/ecl/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/ecl/default.nix b/pkgs/development/compilers/ecl/default.nix index d4bfc93df93e..76ee5219a900 100644 --- a/pkgs/development/compilers/ecl/default.nix +++ b/pkgs/development/compilers/ecl/default.nix @@ -10,7 +10,7 @@ let version="16.1.2"; name="${baseName}-${version}"; hash="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d"; - url="https://common-lisp.net/project/ecl/files/release/16.1.2/ecl-16.1.2.tgz"; + url="https://common-lisp.net/project/ecl/static/files/release/ecl-16.1.2.tgz"; sha256="16ab8qs3awvdxy8xs8jy82v8r04x4wr70l9l2j45vgag18d2nj1d"; }; buildInputs = [ From d5d4606190fc951b421e2bbd47585b99c46bf6bf Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 31 May 2016 16:30:15 -0500 Subject: [PATCH 117/520] Revert "cmake: use supplied RPATH instead of guessing" This reverts commit 8ec5adc953d6bbabbe62d7f7229f146202704e53. This broke stdenv on Darwin, see #15881. A Darwin user will need to fix the problem and un-revert. This commit causes CMake to use the same RPATH settings as the compiler, so it is obviously correct. --- .../tools/build-managers/cmake/setup-hook.sh | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/pkgs/development/tools/build-managers/cmake/setup-hook.sh b/pkgs/development/tools/build-managers/cmake/setup-hook.sh index adf05f1af978..eaabb37f4987 100755 --- a/pkgs/development/tools/build-managers/cmake/setup-hook.sh +++ b/pkgs/development/tools/build-managers/cmake/setup-hook.sh @@ -47,15 +47,9 @@ cmakeConfigurePhase() { cmakeFlags="-DCMAKE_INSTALL_LIBDIR=${!outputLib}/lib $cmakeFlags" cmakeFlags="-DCMAKE_INSTALL_INCLUDEDIR=${!outputDev}/include $cmakeFlags" - # Always build Release, to ensure optimisation flags. - cmakeFlags="-DCMAKE_BUILD_TYPE=Release $cmakeFlags" - # Do not change the RPATH between build and install, simply - # build with the correct RPATH in the first place. - cmakeFlags="-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE $cmakeFlags" - # Do not try to guess the correct RPATH based on linker flags. - cmakeFlags="-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE $cmakeFlags" - # Just use exactly our RPATH. - cmakeFlags="-DCMAKE_INSTALL_RPATH=$CMAKE_INSTALL_RPATH $cmakeFlags" + # Avoid cmake resetting the rpath of binaries, on make install + # And build always Release, to ensure optimisation flags + cmakeFlags="-DCMAKE_BUILD_TYPE=Release -DCMAKE_SKIP_BUILD_RPATH=ON $cmakeFlags" echo "cmake flags: $cmakeFlags ${cmakeFlagsArray[@]}" @@ -83,7 +77,6 @@ makeCmakeFindLibs(){ ;; -L*) export CMAKE_LIBRARY_PATH="$CMAKE_LIBRARY_PATH${CMAKE_LIBRARY_PATH:+:}${flag:2}" - export CMAKE_INSTALL_RPATH="$CMAKE_INSTALL_RPATH${CMAKE_INSTALL_RPATH:+:}${flag:2}" ;; esac done From 961164a8a7986041e5c1022888c9a6f4925135ff Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 31 May 2016 23:28:03 +0200 Subject: [PATCH 118/520] torbrowser: explicitly set paths to torrc-defaults and tor This patch fixes an issue introduced by b897f825942b63ab790cad9ed66c8a79cbb3fc2d where the bundled tor fails to run. The error message claims that it cannot communicate with tor, but what actually happens is that tor never runs at all, because it is invoked with a non-existent rc file. Specifying an absolute path to the torrc-defaults file fixes the problem. For good measure, we specify an absolute path to the tor executable itself as well; we want as little autodetection logic as possible. Note that users of torbrowser *must* remove the existing `~/.torbrowser4` folder for this to take effect, otherwise torbrowser will continue to use extension data from the previous release (this is why some existing users were able to successfully use the new torbrowser version, see https://github.com/NixOS/nixpkgs/pull/15854). --- pkgs/tools/security/tor/torbrowser.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index 2103f9ccad91..ae9b4918aef5 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -59,6 +59,10 @@ stdenv.mkDerivation rec { mkdir -p \$HOME && cp -R $out/share/tor-browser/Browser/TorBrowser/Data \$HOME/ && chmod -R +w \$HOME echo "pref(\"extensions.torlauncher.tordatadir_path\", \"\$HOME/Data/Tor/\");" >> \ ~/Data/Browser/profile.default/preferences/extension-overrides.js + echo "pref(\"extensions.torlauncher.torrc-defaults_path\", \"\$HOME/Data/Tor/torrc-defaults\");" >> \ + ~/Data/Browser/profile.default/preferences/extension-overrides.js + echo "pref(\"extensions.torlauncher.tor_path\", \"$out/share/tor-browser/Browser/TorBrowser/Tor/tor\");" >> \ + ~/Data/Browser/profile.default/preferences/extension-overrides.js fi export FONTCONFIG_PATH=\$HOME/Data/fontconfig export LD_LIBRARY_PATH=${libPath}:$out/share/tor-browser/Browser/TorBrowser/Tor From 68b0f2f500b0731ea048c36848401857f09741b7 Mon Sep 17 00:00:00 2001 From: Tobias Pflug Date: Wed, 1 Jun 2016 01:40:50 +0200 Subject: [PATCH 119/520] reattach-to-user-namespace: fix sha (#15871) --- pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix index 0460c516d297..60b461a80408 100644 --- a/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix +++ b/pkgs/os-specific/darwin/reattach-to-user-namespace/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { name = "reattach-to-user-namespace-2.4"; src = fetchgit { url = "https://github.com/ChrisJohnsen/tmux-MacOSX-pasteboard.git"; - sha256 = "1f9q1wxq764zidnx5hbdkbbyxxzfih0l0cjpgr0pxzwbmd2q6cvv"; + sha256 = "0hrh95di5dvpynq2yfcrgn93l077h28i6msham00byw68cx0dd3z"; rev = "2765aeab8f337c29e260a912bf4267a2732d8640"; }; buildFlags = "ARCHES=x86_64"; From ed6c82614bbd5d82fd321e9671ca1d3dd711c8c0 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 1 Jun 2016 01:57:33 +0200 Subject: [PATCH 120/520] libinput: 1.3.0 -> 1.3.1 (#15838) --- pkgs/development/libraries/libinput/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libinput/default.nix b/pkgs/development/libraries/libinput/default.nix index fdb4f168bac2..f997d8270ca9 100644 --- a/pkgs/development/libraries/libinput/default.nix +++ b/pkgs/development/libraries/libinput/default.nix @@ -15,11 +15,11 @@ in with stdenv.lib; stdenv.mkDerivation rec { - name = "libinput-1.3.0"; + name = "libinput-1.3.1"; src = fetchurl { url = "http://www.freedesktop.org/software/libinput/${name}.tar.xz"; - sha256 = "1sn1s1bz06fa49izqkqf519sjclsvhf42i6slzx1w5hx4vxpb2lr"; + sha256 = "1adcc82746ywwymr9b3mvr2vq539hvp1zxks6s7p2p1rjcynbzyd"; }; outputs = [ "dev" "out" ]; From 8b085a9c193fa624a931fe13e8b21a021dc50a5c Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 1 Jun 2016 03:37:24 +0300 Subject: [PATCH 121/520] calligra: specify license --- pkgs/applications/office/calligra/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/office/calligra/default.nix b/pkgs/applications/office/calligra/default.nix index 1ced6f3d02dd..c4350c678078 100644 --- a/pkgs/applications/office/calligra/default.nix +++ b/pkgs/applications/office/calligra/default.nix @@ -36,7 +36,7 @@ stdenv.mkDerivation rec { done ''; - meta = { + meta = with stdenv.lib; { description = "A suite of productivity applications"; longDescription = '' Calligra Suite is a set of applications written to help @@ -48,7 +48,8 @@ stdenv.mkDerivation rec { vector graphics. ''; homepage = http://calligra.org; - maintainers = with stdenv.lib.maintainers; [ urkud phreedom ebzzry ]; + maintainers = with maintainers; [ urkud phreedom ebzzry ]; inherit (kdelibs.meta) platforms; + license = licenses.gpl2; }; } From 26a84169ff90fd32e7ad682175ea213daa67f2f9 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 1 Jun 2016 03:38:05 +0300 Subject: [PATCH 122/520] vc{_0_7,}: disable dynamic architecture detection --- pkgs/development/libraries/vc/0.7.nix | 7 ++++++- pkgs/development/libraries/vc/default.nix | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/vc/0.7.nix b/pkgs/development/libraries/vc/0.7.nix index 7f774e2eb92a..d6dd61db83c0 100644 --- a/pkgs/development/libraries/vc/0.7.nix +++ b/pkgs/development/libraries/vc/0.7.nix @@ -15,9 +15,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postPatch = '' + sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake + sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake + ''; + meta = with stdenv.lib; { description = "Library for multiprecision complex arithmetic with exact rounding"; - homepage = https://github.com/VcDevel/Vc; + homepage = "https://github.com/VcDevel/Vc"; license = licenses.bsd3; platforms = platforms.all; maintainers = with maintainers; [ abbradar ]; diff --git a/pkgs/development/libraries/vc/default.nix b/pkgs/development/libraries/vc/default.nix index e61c3a47ff12..aff0795daec0 100644 --- a/pkgs/development/libraries/vc/default.nix +++ b/pkgs/development/libraries/vc/default.nix @@ -15,9 +15,14 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + postPatch = '' + sed -i '/OptimizeForArchitecture()/d' cmake/VcMacros.cmake + sed -i '/AutodetectHostArchitecture()/d' print_target_architecture.cmake + ''; + meta = with stdenv.lib; { description = "Library for multiprecision complex arithmetic with exact rounding"; - homepage = https://github.com/VcDevel/Vc; + homepage = "https://github.com/VcDevel/Vc"; license = licenses.bsd3; platforms = [ "x86_64-linux" "x86_64-darwin" ]; maintainers = with maintainers; [ abbradar ]; From 6b6f067397db8b9a3a051ad6616206871acf098c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 31 May 2016 20:47:48 -0500 Subject: [PATCH 123/520] qt56.qtbase: apply CMake setup-hook fix locally --- .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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 0e73e0d31ebf..8f86de93449d 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 @@ -141,4 +141,17 @@ _qtLinkAllModules() { done } -preConfigureHooks+=(_qtLinkAllModules) +_qtFixCMake() { + for flag in $NIX_CFLAGS_COMPILE $NIX_LDFLAGS; do + case $flag in + -L*) + CMAKE_INSTALL_RPATH="$CMAKE_INSTALL_RPATH${CMAKE_INSTALL_RPATH:+:}${flag:2}" + ;; + esac + done + cmakeFlags="-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE $cmakeFlags" + cmakeFlags="-DCMAKE_INSTALL_RPATH=$CMAKE_INSTALL_RPATH $cmakeFlags" +} + +preConfigureHooks+=(_qtLinkAllModules _qtFixCMake) From 180417f385d24eee07da185e8eb7a3b1d461913c Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Tue, 31 May 2016 22:23:40 -0500 Subject: [PATCH 124/520] nvidia-x11: 361.42 -> 361.45.11 --- pkgs/os-specific/linux/nvidia-x11/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/nvidia-x11/default.nix b/pkgs/os-specific/linux/nvidia-x11/default.nix index e67df53c9ed0..e3be760700bc 100644 --- a/pkgs/os-specific/linux/nvidia-x11/default.nix +++ b/pkgs/os-specific/linux/nvidia-x11/default.nix @@ -12,7 +12,7 @@ assert (!libsOnly) -> kernel != null; let - versionNumber = "361.42"; + versionNumber = "361.45.11"; # Policy: use the highest stable version as the default (on our master). inherit (stdenv.lib) makeLibraryPath; @@ -28,12 +28,12 @@ stdenv.mkDerivation { if stdenv.system == "i686-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86/${versionNumber}/NVIDIA-Linux-x86-${versionNumber}.run"; - sha256 = "10jfdrmjcddgp7kg9l3dwxjh4b7sdrg86nwaf6zalfnsc9zh8bg3"; + sha256 = "036v7bzh9zy7zvaz2wf7zsamrynbg1yr1dll7sf1l928w059i6pb"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://download.nvidia.com/XFree86/Linux-x86_64/${versionNumber}/NVIDIA-Linux-x86_64-${versionNumber}-no-compat32.run"; - sha256 = "04yyrzk4xzq1i386mdxfwg4dqiclvj1fm195qsqy0r79zmpc3kq4"; + sha256 = "1f8bxmf8cr3cgzxgap5ccb1yrqyrrdig19dp282y6z9xjq27l074"; } else throw "nvidia-x11 does not support platform ${stdenv.system}"; From 2577f4af0e695fdf2e3b8c0f01a96ca10fb26c25 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 10:57:12 +0300 Subject: [PATCH 125/520] gnu-efi: Fix build on ARM For some reason it detects e.g. armv7l and then can't find 'inc/arm/efibind.h'. --- pkgs/development/libraries/gnu-efi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gnu-efi/default.nix b/pkgs/development/libraries/gnu-efi/default.nix index 9d6b3a870347..336785e1abdd 100644 --- a/pkgs/development/libraries/gnu-efi/default.nix +++ b/pkgs/development/libraries/gnu-efi/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { "AR=ar" "RANLIB=ranlib" "OBJCOPY=objcopy" - ]; + ] ++ stdenv.lib.optional stdenv.isArm "ARCH=arm"; meta = with stdenv.lib; { description = "GNU EFI development toolchain"; From eda20005ae0c69e2f6c439e181f2dac2df437e1d Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 1 Jun 2016 10:27:24 +0200 Subject: [PATCH 126/520] weston: 1.10.0 -> 1.11.0 --- pkgs/applications/window-managers/weston/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/weston/default.nix b/pkgs/applications/window-managers/weston/default.nix index 8c7227847476..d08907b59aa4 100644 --- a/pkgs/applications/window-managers/weston/default.nix +++ b/pkgs/applications/window-managers/weston/default.nix @@ -7,11 +7,11 @@ stdenv.mkDerivation rec { name = "weston-${version}"; - version = "1.10.0"; + version = "1.11.0"; src = fetchurl { url = "http://wayland.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1hd5593zz5s3s07vb6linp6akbs62wy2ijh3g7gksafq016h1cp0"; + sha256 = "09biddxw3ar797kxf9mywjkb2iwky6my39gpp51ni846y7lqdq05"; }; nativeBuildInputs = [ pkgconfig ]; From 85a525c8a10a0ab26abf3316ce2bf5d7752131f8 Mon Sep 17 00:00:00 2001 From: Alexander Ried Date: Wed, 1 Jun 2016 10:27:34 +0200 Subject: [PATCH 127/520] wayland: 1.10.0 -> 1.11.0 --- pkgs/development/libraries/wayland/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix index 60e332de0c3d..c388a3f3065c 100644 --- a/pkgs/development/libraries/wayland/default.nix +++ b/pkgs/development/libraries/wayland/default.nix @@ -8,11 +8,11 @@ assert expat != null; stdenv.mkDerivation rec { name = "wayland-${version}"; - version = "1.10.0"; + version = "1.11.0"; src = fetchurl { url = "http://wayland.freedesktop.org/releases/${name}.tar.xz"; - sha256 = "1p307ly1yyqjnzn9dbv78yffql2qszn84qk74lwanl3gma8fgxjb"; + sha256 = "1c0d5ivy9n44hykvw2ggrvqrnn7naw3wg11vbvgwzgi8g5gr4h4m"; }; configureFlags = "--with-scanner --disable-documentation"; From fb1b05f8c98c2ffc6eb4b51a40d9324608292742 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:33:41 +0200 Subject: [PATCH 128/520] pythonPackages.blaze: 0.9.1 -> 0.10.1 --- pkgs/top-level/python-packages.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a53d8278e376..7281e6ca622a 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2404,16 +2404,18 @@ in modules // { blaze = buildPythonPackage rec { name = "blaze-${version}"; - version = "0.9.1"; + version = "0.10.1"; src = pkgs.fetchurl { url = "mirror://pypi/b/blaze/${name}.tar.gz"; - sha256 = "fde4fd5733d8574345521581078a4fd89bb51ad3814eda88f1f467faa3a9784a"; + sha256 = "16m1nzs5gzwa62pwybjsxgbdpd9jy10rhs3c3niacyf6aa6hr9jh"; }; buildInputs = with self; [ pytest ]; propagatedBuildInputs = with self; [ + contextlib2 cytoolz + dask datashape flask flask-cors @@ -2432,6 +2434,12 @@ in modules // { toolz ]; + # Failing test + # ERROR collecting blaze/tests/test_interactive.py + # E networkx.exception.NetworkXNoPath: node not + # reachable from + doCheck = false; + checkPhase = '' py.test blaze/tests ''; From 0c9b00559e487609147bd3f5e130119b573d220c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:33:59 +0200 Subject: [PATCH 129/520] pythonPackages.numexpr: 2.5 -> 2.5.2 --- 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 7281e6ca622a..2dc6539b3c02 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13879,12 +13879,12 @@ in modules // { }; numexpr = buildPythonPackage rec { - version = "2.5"; + version = "2.5.2"; name = "numexpr-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/n/numexpr/${name}.tar.gz"; - sha256 = "319cdf4e402177a1c8ed4972cffd09f523446f186d347b7c1974787cdabf0294"; + sha256 = "0kb6549fwfxpc4qy3l5liad2mx99dys77c6w1y2rm32wyrf5k1by"; }; # Tests fail with python 3. https://github.com/pydata/numexpr/issues/177 From bfbf37edec069d905f28075e42df13bb3978e0d1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:34:14 +0200 Subject: [PATCH 130/520] pythonPackages.odo: 0.4.2 -> 0.5.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2dc6539b3c02..2f14fd73a126 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14187,11 +14187,11 @@ in modules // { odo = buildPythonPackage rec { name = "odo-${version}"; - version= "0.4.2"; + version= "0.5.0"; src = pkgs.fetchurl { url = "mirror://pypi/o/odo/${name}.tar.gz"; - sha256 = "f793df8b212994ea23ce34e90e2048d0237d3b95ecd066ef2cfbb1c2384b79e9"; + sha256 = "1mh5k69d9ph9jd07jl9yqh78rbnh5cjspi1q530v3ml7ivjzz4p8"; }; buildInputs = with self; [ pytest ]; From c280d9cb15ad02c40a8996d5a4360cfc11b267f0 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:34:30 +0200 Subject: [PATCH 131/520] pythonPackages.openpyxl: 2.3.3 -> 2.3.5 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2f14fd73a126..6b1153dfcaec 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -14246,12 +14246,12 @@ in modules // { }; openpyxl = buildPythonPackage rec { - version = "2.3.3"; + version = "2.3.5"; name = "openpyxl-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/o/openpyxl/${name}.tar.gz"; - sha256 = "1zigyvsq45izkhr1h5gisgi0ag5dm6kz09f01c2cgdfav1bl3mlk"; + sha256 = "0qj7d8l1qc6cjwk1ps01dyh53b3p2k2k7hwmj98y2257jj5mf1s3"; }; buildInputs = with self; [ pytest ]; From 4db1351bc123ed746108b8a25a6b4fbcc771fff2 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:34:50 +0200 Subject: [PATCH 132/520] pythonPackages.pandas: 0.18.0 -> 0.18.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6b1153dfcaec..ea721106f7a8 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15671,11 +15671,11 @@ in modules // { inherit (pkgs.stdenv) isDarwin; in buildPythonPackage rec { name = "pandas-${version}"; - version = "0.18.0"; + version = "0.18.1"; src = pkgs.fetchurl { url = "mirror://pypi/p/pandas/${name}.tar.gz"; - sha256 = "050qw0ap5bhyv5flp78x3lcq1dlminl3xaj6kbrm0jqmx0672xf9"; + sha256 = "1ckpxrvvjj6zxmn68icd9hib8qcpx9b35f6izxnr25br5ilq7r6j"; }; From 5b076ae048e2f9129b6bd20d10b5d93798b19c13 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:35:05 +0200 Subject: [PATCH 133/520] pythonPackages.pyfftw: 0.9.2 -> 0.10.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index ea721106f7a8..e34ade3c3851 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -17568,11 +17568,11 @@ in modules // { pyfftw = buildPythonPackage rec { name = "pyfftw-${version}"; - version = "0.9.2"; + version = "0.10.1"; src = pkgs.fetchurl { url = "mirror://pypi/p/pyFFTW/pyFFTW-${version}.tar.gz"; - sha256 = "f6bbb6afa93085409ab24885a1a3cdb8909f095a142f4d49e346f2bd1b789074"; + sha256 = "1789k6w17qpn9vknn2sjiwbig6yhfjvzs9fvcpvy3fyf9qala77y"; }; buildInputs = [ pkgs.fftw pkgs.fftwFloat pkgs.fftwLongDouble]; From 98c26bf7e8d9ef29f7cc603b8d7ee6baaa9f2fc3 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:35:22 +0200 Subject: [PATCH 134/520] pythonPackages.qtconsole: 4.1.1 -> 4.2.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index e34ade3c3851..113f822a3ec4 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19328,12 +19328,12 @@ in modules // { }; qtconsole = buildPythonPackage rec { - version = "4.1.1"; + version = "4.2.1"; name = "qtconsole-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/q/qtconsole/${name}.tar.gz"; - sha256 = "741906acae9e02c0df9138ac88b621ef22e438565aa96d783a9ef88faec3de46"; + sha256 = "1vqqx9hdvrg2d336wjyw0vr5b5v97kflkqqvr7ryicr8als7vv15"; }; buildInputs = with self; [ nose ] ++ optionals isPy27 [mock]; From 7c22a9b3e3c49743f4516c66a944a41b6280c217 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:35:38 +0200 Subject: [PATCH 135/520] pythonPackages.scipy: 0.17.0 -> 0.17.1 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 113f822a3ec4..965cadfb3e44 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20249,10 +20249,10 @@ in modules // { }; scipy_0_17 = self.buildScipyPackage rec { - version = "0.17.0"; + version = "0.17.1"; src = pkgs.fetchurl { url = "mirror://pypi/s/scipy/scipy-${version}.tar.gz"; - sha256 = "f600b755fb69437d0f70361f9e560ab4d304b1b66987ed5a28bdd9dd7793e089"; + sha256 = "1b1qpfz2j2rvmlplsjbnznnxnqr9ckbmis506110ii1w07wd4k4w"; }; numpy = self.numpy; }; From 489be0ad3987dc6e1c2160074001e1362d9e4478 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:35:53 +0200 Subject: [PATCH 136/520] pythonPackages.seaborn: 0.6.0 -> 0.7.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 965cadfb3e44..b478c444d300 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -20326,10 +20326,10 @@ in modules // { }; seaborn = buildPythonPackage rec { - name = "seaborn-0.6.0"; + name = "seaborn-0.7.0"; src = pkgs.fetchurl { url = "mirror://pypi/s/seaborn/${name}.tar.gz"; - sha256 = "e078399b56ed0d53a4aa8bd4d6bd4a9a9deebc0b4acad259d0ef81830affdb68"; + sha256 = "0ibi3xsfm2kysph61mnfy0pf8d5rkgxgrdb0z9nbizgcgdsb5a0m"; }; buildInputs = with self; [ nose ]; From d450f046b67a3ee7bafd3eb1a1c6150d25b1d072 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Tue, 31 May 2016 22:36:07 +0200 Subject: [PATCH 137/520] pythonPackages.xarray: 0.7.1 -> 0.7.2 --- 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 b478c444d300..6ee7ba1f4c0c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -23567,11 +23567,11 @@ in modules // { xarray = buildPythonPackage rec { name = "xarray-${version}"; - version = "0.7.1"; + version = "0.7.2"; src = pkgs.fetchurl { url = "mirror://pypi/x/xarray/${name}.tar.gz"; - sha256 = "1swcpq8x0p5pp94r9j4hr2anz1rqh7fnqax16xn9xsgrikdjipj5"; + sha256 = "0gnhznv18iz478r8wg6a686dqgs1v4i3yra8y91x3vsfl23mgv34"; }; buildInputs = with self; [ pytest ]; From 9a71348039c4381226d6d24eafe8d6fa51bd13c9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 09:22:24 +0200 Subject: [PATCH 138/520] pythonPackages.networkx: 1.10 -> 1.11 --- pkgs/top-level/python-packages.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 6ee7ba1f4c0c..93df25cc1986 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -26058,7 +26058,7 @@ in modules // { }; networkx = buildPythonPackage rec { - version = "1.10"; + version = "1.11"; name = "networkx-${version}"; # Currently broken on PyPy. @@ -26067,10 +26067,11 @@ in modules // { src = pkgs.fetchurl { url = "mirror://pypi/n/networkx/${name}.tar.gz"; - sha256 = "ced4095ab83b7451cec1172183eff419ed32e21397ea4e1971d92a5808ed6fb8"; + sha256 = "1f74s56xb4ggixiq0vxyfxsfk8p20c7a099lpcf60izv1php03hd"; }; - propagatedBuildInputs = with self; [ nose decorator ]; + buildInputs = with self; [ nose ]; + propagatedBuildInputs = with self; [ decorator ]; meta = { homepage = "https://networkx.github.io/"; From 0127ac877d22ecd8de828e768bbde79cc3640bd8 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 09:22:40 +0200 Subject: [PATCH 139/520] pythonPackages.contextlib2: 0.4.0 -> 0.5.3 --- pkgs/top-level/python-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 93df25cc1986..47657b379f2c 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3724,11 +3724,12 @@ in modules // { contextlib2 = buildPythonPackage rec { - name = "contextlib2-0.4.0"; + name = "contextlib2-${version}"; + version = "0.5.3"; src = pkgs.fetchurl rec { url = "mirror://pypi/c/contextlib2/${name}.tar.gz"; - sha256 = "55a5dc78f7a742a0e756645134ffb39bbe11da0fea2bc0f7070d40dac208b732"; + sha256 = "01k2921labkbn28kw60jmqzvr4nxzfnx4vcsyjb3rir177qh1r9h"; }; }; From a6593a16f7aa1de03ed0d4f36e8bfb68c0459df5 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 1 Jun 2016 10:01:04 +0100 Subject: [PATCH 140/520] virtualbox: give full url for downloading the ext (#15869) The user only has to agree on the terms and conditions before downloading the file. We might as well give him access to the full URL by default. --- .../applications/virtualization/virtualbox/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/virtualization/virtualbox/default.nix b/pkgs/applications/virtualization/virtualbox/default.nix index cdd406c42c9a..df7b555e0487 100644 --- a/pkgs/applications/virtualization/virtualbox/default.nix +++ b/pkgs/applications/virtualization/virtualbox/default.nix @@ -47,14 +47,14 @@ let sha256 = "11f40842a56ebb17da1bbc82a21543e66108a5330ebd54ded68038a990aa071b"; message = '' In order to use the extension pack, you need to comply with the VirtualBox Personal Use - and Evaluation License (PUEL) by downloading the related binaries from: + and Evaluation License (PUEL) available at: - https://www.virtualbox.org/wiki/Downloads + https://www.virtualbox.org/wiki/VirtualBox_PUEL - Once you have downloaded the file, please use the following command and re-run the - installation: + Once you have read and if you agree with the license, please use the + following command and re-run the installation: - nix-prefetch-url file://${name} + nix-prefetch-url http://download.virtualbox.org/virtualbox/${version}/${name} ''; }; From 0229693354803ecb0b0f9dbec055211c4dc25bd4 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 12:14:00 +0300 Subject: [PATCH 141/520] iso-image.nix: Fix path to EFI blob after systemd-boot switch This evaluates, but I can't verify if it works. @edolstra --- nixos/modules/installer/cd-dvd/iso-image.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/installer/cd-dvd/iso-image.nix b/nixos/modules/installer/cd-dvd/iso-image.nix index bdb3c227ecc8..4fc8bf5428f8 100644 --- a/nixos/modules/installer/cd-dvd/iso-image.nix +++ b/nixos/modules/installer/cd-dvd/iso-image.nix @@ -64,7 +64,7 @@ let # The EFI boot image. efiDir = pkgs.runCommand "efi-directory" {} '' mkdir -p $out/EFI/boot - cp -v ${pkgs.gummiboot}/lib/gummiboot/gummiboot${targetArch}.efi $out/EFI/boot/boot${targetArch}.efi + cp -v ${pkgs.systemd}/lib/systemd/boot/efi/systemd-boot${targetArch}.efi $out/EFI/boot/boot${targetArch}.efi mkdir -p $out/loader/entries echo "title NixOS Live CD" > $out/loader/entries/nixos-livecd.conf From b835f3e26202c0670103a1d622edbb438bae5fe1 Mon Sep 17 00:00:00 2001 From: taku0 Date: Wed, 1 Jun 2016 18:34:44 +0900 Subject: [PATCH 142/520] thunderbird-bin: 45.1.0 -> 45.1.1 (#15860) --- .../mailreaders/thunderbird-bin/sources.nix | 234 +++++++++--------- 1 file changed, 117 insertions(+), 117 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix index 20cedee8ef30..227babe397d4 100644 --- a/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix +++ b/pkgs/applications/networking/mailreaders/thunderbird-bin/sources.nix @@ -4,123 +4,123 @@ # ruby generate_sources.rb 45.1.0 > sources.nix { - version = "45.1.0"; + version = "45.1.1"; sources = [ - { locale = "ar"; arch = "linux-i686"; sha512 = "f07bdaa53396e4135585f513d79668ebc47e2ea6008724b25ea8b20e6421f9951018ce4f3f0cef3b4318b9a2dc5d7835c310f90599245ab6182a8aff67e31824"; } - { locale = "ar"; arch = "linux-x86_64"; sha512 = "b7e21034dcb85cd0c8fe5faf99db1fc939d058dc49e229bf8e5886ca39bb940ffa79ef6255a408703a99506b724664b1a39c3c38dd7df5b87a138e23799bd923"; } - { locale = "ast"; arch = "linux-i686"; sha512 = "c6c38930e02fe3c52c5da390b24655441f3470b04ac6b2d12e23d7a6ee880d68b80c3c18c1d1c62f662677cf78a25f5f5aab02975b05b46771ed057e4ed61ead"; } - { locale = "ast"; arch = "linux-x86_64"; sha512 = "3a2b26610231115c3e974ee1474632647ad1eb6b9611c9eeaef253fc94adcdd312d108bb6add23e45e64b7f46c073b853c3b07919bc8124c82509f52c8a6afe7"; } - { locale = "be"; arch = "linux-i686"; sha512 = "a8569095bec1c87af03739665bd47878e9b762e6dc993f3d25f77f0d8eae98d9b074492521e54470b16d37232d49665eed5a64c7fa640f2e9c7c609327d215d3"; } - { locale = "be"; arch = "linux-x86_64"; sha512 = "2ad4c5e61200368234ff55cf7c1a524f7579c4f585834770b761172ec59aa213c2b2e368fa78399a5384c24500ba98cc8a41546417ef1a09562ed836ff6d4dd9"; } - { locale = "bg"; arch = "linux-i686"; sha512 = "523f1c502d76aaa328508a8c6679715104b459b51231d6e24d59f299523808161ca81a1198d6a55587d688296b194f4983ebfca2f266a8aad2440ec79a4be096"; } - { locale = "bg"; arch = "linux-x86_64"; sha512 = "e65d7253a75b0296139766cf8215cb900aa0e29beeebd1ca0229773a19ff0e2083fd82133d404214c3af200123137b95ec2b887e3d2c5d9a295ecd79087558bd"; } - { locale = "bn-BD"; arch = "linux-i686"; sha512 = "12d895ece57a2add45ffa82a8ad332c377ae8a091972f9f8824ddaee6f9b859ab4bfeacddb0b861296b1b4b913767826997cc5e0147788eae78dea1833255a94"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "09979e0ca185cf59d8aa135382cda296a0c635620e9bb77eb61c6ecdd06ba424334ef21d7208715f75b4f421b19dadcaa68942adf6a827a991930baa71b1074b"; } - { locale = "br"; arch = "linux-i686"; sha512 = "48c9881b5e452e30848bb9b4a2d0fd1a2b25e42a962acdaa79c3af1fdca7382dee9a8560fd78e84a4147af4681ee2f1c6c369a5854f7a82404cf6c78079420b7"; } - { locale = "br"; arch = "linux-x86_64"; sha512 = "49bb2fb147312d431c3f6184a499366f7059524b126b4233f3195651675401628ebfcb3f2bea33edd5e0d7eafd8f64fc54528e48e46cc9874c5e8c8924d1b8fb"; } - { locale = "ca"; arch = "linux-i686"; sha512 = "954785700f3ec5abd4700203f653023277a1c866f9acc703f501d5de5f9f0b600b8b8e634c1d7b2ed5b5892e8c92d750e192b630d3f21ba8d4477794f0a3791e"; } - { locale = "ca"; arch = "linux-x86_64"; sha512 = "93eaa656195dc2e69646f6127511725fb805b99509ab53561c58b23bf272a51e0effd674c59a414003e3d106aea06277baef280a06b7cb2678a1332e79ab65b1"; } - { locale = "cs"; arch = "linux-i686"; sha512 = "d7fd9f68e9db4e8b194110399537d584b1c3dfb27af26f0151070edbc716ef15172d4d3b4668d324b152689cd7f1048c27582705a03e903e3cad97686a5b46c6"; } - { locale = "cs"; arch = "linux-x86_64"; sha512 = "7bb0c4f17ee2672b61d364da90fad387d5ebdd44f3e6e89d3b0db0e00c8165aa02b60d33c74a2eb7e4752334327c71bbff9162a9f4e35d3c7480b454fe770772"; } - { locale = "cy"; arch = "linux-i686"; sha512 = "7290bde6396f6c44c92ee4494ab039e3d91fc9ebb3636fa0f4fd083fd92e8e68e0f6f4e327f4ccaa12fded1c3ea9af703f99c01e11c380385f97aff1c61ebd2d"; } - { locale = "cy"; arch = "linux-x86_64"; sha512 = "239a310abba653b649b37470741cba5bd151f9783ca1f536cba27bddbd9d42e49798d592cb08ad132d2e126d5710e3cd83c8da5b7216e2020ec6040d6b0fddf5"; } - { locale = "da"; arch = "linux-i686"; sha512 = "f9d778b8724181495df36e65841fea9b6aada84b754ed0405e988c617f27ff9250dbe23a2f7ce9b44418e4260d2b16c2b15fe4ad4a925b0d862c3451da789176"; } - { locale = "da"; arch = "linux-x86_64"; sha512 = "17a3c221f55be21bf58c6b47471e3fb4d1415f8fd2ddcd4301115c6771b7a837b4c50d9b054bee02cc25a96961ca0b55aff952b1ed1890ef120b6b84711aed36"; } - { locale = "de"; arch = "linux-i686"; sha512 = "cc63b30bef02a96bfbdd0f36c18ea2e142ed7285880e6d28e41726067e55b53adf3a863deea98397d0b1e3dec0237d0911f4ba86860841a5147522d0b269cea6"; } - { locale = "de"; arch = "linux-x86_64"; sha512 = "4a6c4e48278b6a95cd91b71027cb2dd8e44d1904c287e36ca85ebae80dbf526ae58de359c759f0e8878f36e7c8e22d66ec3a1bc16f583d6619d3519de0bd27fa"; } - { locale = "dsb"; arch = "linux-i686"; sha512 = "a7bbc58a4c8d60f74308fdda9ce431ff11b12e1b7e5059649b7636e6547dc84f43b0a3f96f59a80e3aef3a2c13435431dd62a3932489f0dc1ff5b58d8e0fabd2"; } - { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f472bd612938d16d708eb62b9f472b37e5694bc5d54270515a5b37e29986bfae7081d628950cff6599fade83e50039b1d6c9d1f23932591c80f4645dd6f3b4ec"; } - { locale = "el"; arch = "linux-i686"; sha512 = "401837b5cc0ddc491a034c78c1b71f8d4ccd96ebf3f11eb99919b3c20d0c3a31b48e61599794f826f91273fbe2545465743c6ca4bb48d4b2bbe57dcabcc9725c"; } - { locale = "el"; arch = "linux-x86_64"; sha512 = "d69b96264e6d56235dc8f2217ac8192d531fe5ab97fad58a35948ded8fbd9d37e68687516a862a81b87f8ae27487f1c288866b93e6ab5e9182272f6b261eb508"; } - { locale = "en-GB"; arch = "linux-i686"; sha512 = "de081ed39200214b27fe249498c6f5a3381f35a2fbd74816e45dc5403239c3a3a9218b9de05ac6b970b2e7479e96e86eed45591594a723833e7fd8b535efaae6"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "4acbbbac6ed26b76b93b2ba469f12498840dd5f9f5a49e2b7002dd57abd984f3bbecf9e0af89f2684da13326ba994d7ae69e1333162c65429a1c47692c542101"; } - { locale = "en-US"; arch = "linux-i686"; sha512 = "e30f11ffbf7ade1e46923a52bccbbfc3722229d15a323cd5f812f1287004f7d2f09a688c29205de3baa06c9314bed892747ed8a6a15eacd36fb1b8494b78965b"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "53dc9169aeb45fde1bf96897dc49e113a24bf851cf19b9d428d4362856267a4974dd06c1ffaebc1b0a4db120175677dd3867dcff66be98c2aa4815f89910f5a7"; } - { locale = "es-AR"; arch = "linux-i686"; sha512 = "3e1ace4acda96fc6997fa8b10b2c1926105bdaebbbda3341fa5c3c87d3e88400b436c8ba09eaf4ed5fc100440fffbfbddb0ceea19986bffb33291a5d1ac52737"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "f000230d1cf00a1423bd441a93dcb4c384ea6a0071f15910c2cd814f65181022951e1eea6bb1179c4315c861a01caff137bb846edb65b5d4fbf6642fa7849dd1"; } - { locale = "es-ES"; arch = "linux-i686"; sha512 = "34948a7e78f7d8a0830397977ff13b1c76032eb7d909903f2ea1d4579082db9cf1e91ae804082af189b03ba89fa283a1392380b8c4e45956ef339c64da546681"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "d0204eb82b8c8a80e5d3bc82ca9a8e9c25c6e0d8dbb7da9a43f25a10088a819b4c8695c88528b1ebd76328eab23da474ec2e539c31b6947b282602a593f75c1d"; } - { locale = "et"; arch = "linux-i686"; sha512 = "41484b954518e5f75dd8fc21ffd803f1a7f3e8dae0a35df98f0c9fac8e3cde11dd085f026536c752c1c34d9c8d11b55eb9b55fbbec57e36b65806608ad24b471"; } - { locale = "et"; arch = "linux-x86_64"; sha512 = "79a38b25ee9e465cfba965b6451aed749e5aecd2c8c62741d0caa4918a1c1c3cde8b3c7aa905dc205e8d3a8bffc6a795faece4da9017d2bc48064aaee641c909"; } - { locale = "eu"; arch = "linux-i686"; sha512 = "d7b370fa6f36cb218f8cbab7be9c42ecefa9ee4b6760bb2097f9bbf337a3c6a5ae9cf2051abc97a7ed5b7de14685252288d07af3ee0c25d5b371aa638944e3e4"; } - { locale = "eu"; arch = "linux-x86_64"; sha512 = "3efe13a25a3f72441001bc04054009536b98a852e29dd8b012c0014c990db1078f0e95266d3b6c0c4b8edcd1928ae32f557ef82ccbd1a9545b2a6111254ae04f"; } - { locale = "fi"; arch = "linux-i686"; sha512 = "7599bad72c5536e41d23ebac041389dbd868af9e6180655b67eb402df80c47ed454e26c982666056444f6813250d824cab913319ccfeb50645278f46ca88284e"; } - { locale = "fi"; arch = "linux-x86_64"; sha512 = "77a5adfc44a95f358a6c376ccb49b2ff526b164be92f190000698e97b5391a38b026e2923010c41cdda6c5c8d21e25710c92cff84a7e7a23cb8e9cf845d1c8a8"; } - { locale = "fr"; arch = "linux-i686"; sha512 = "b14e26ba3a2f729e4a3014220578ef4aba28bc6064a19afbaf622c1bc4f52b05245d0b689f7e62e1d46e5dde4732a255032ca94587f5d1eb9986c5313d8849ea"; } - { locale = "fr"; arch = "linux-x86_64"; sha512 = "4d2644b8fe269d4698cb5655dd76bde4162be36682403a803995f3a47adc7da53ddd2c70553228e1564cc1c99dc1ef408002ca17e55de358e4cf8afc966a9c57"; } - { locale = "fy-NL"; arch = "linux-i686"; sha512 = "94e31d2828dec13e6fe454a88515de3254c7f646bda3589f362367c35963043c8e97f5562727032af8228dff6fb59d1d5590a9128e686777708895d7030b1117"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "4b42d9e722e4f1e1e99f23bb6cf7650711deab5ed18ac49c3f4b6b7829d4e201990f8065ef65e01345772bb5c6ff3b9231430713e14e3bb5a032b52398782e46"; } - { locale = "ga-IE"; arch = "linux-i686"; sha512 = "3d44f51dc1e770bfeec3dd8f55e346cfc5b272430ecc4034704ac71e7c63bc6c9c5b907edcdefec0c4d98be94265f444cc067ff7ee6851031edae56a931ea898"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "51d849d608697b1c2c2b8fd2da90d8c5777ec90fa0aad9bb99e660bf69819576fb97a235512b710b41a76f96e07b9d4676a31583012d78341fcafef9cee7de9c"; } - { locale = "gd"; arch = "linux-i686"; sha512 = "d22933ad961fc061cf89db77c12b46bbd7f47d2b4c43fb348b17c373328805c9d2563626deb28ae405b9f4bd53237139b4ae07d99c8aebb7aa55d6fc3688e4c9"; } - { locale = "gd"; arch = "linux-x86_64"; sha512 = "a1636bfbbafe782ad4ac2b32c32555b0420434203b340b716a1af783fa7e079bd1017c72f8c7f9df6d194463658c3c2d420e7c76bfad73fbf4b01ba248849a84"; } - { locale = "gl"; arch = "linux-i686"; sha512 = "4e9429fc676c541f28fedf04e47b833814077ca39ab6bfcd69f9113942ec1e0988440fd0cbe76a02adbfff532c4526d52bd9e8480c3c34f1a5e31ce81d4d2552"; } - { locale = "gl"; arch = "linux-x86_64"; sha512 = "6ff7d7c0216e6df3c2d21dc066c7a1a9efb153cc5341f9b8886e162300f2bb9d35f3bbe04b1524aba7af7e11feadb4d5bf2fd3b3a87176ee469cc019dd5b2318"; } - { locale = "he"; arch = "linux-i686"; sha512 = "d73580ad744a7f0d1b33656c804f34cec7fadd434cfe2983bd766562c0839787c1f7d24d46e0a8750d39099964bbab50c4a4f11e284b7ae1a4a51ac72780f7ab"; } - { locale = "he"; arch = "linux-x86_64"; sha512 = "f4a3dbd3aa8bb63e77a2870a815ba393bd8eef5966e267d16d5509214bd542956b3f522001d21950899ff6134c27c7076bc8284988b9a3097e8e85b22c9d0283"; } - { locale = "hr"; arch = "linux-i686"; sha512 = "ee46234fae33de0b773dcc425134bcd63dc84e9928d3aa2327b9f4c4ac518460e780f14bac3dff5c1c8983e6e27fd90ea13e0a63ac8c764c5206fcff1ce1dc21"; } - { locale = "hr"; arch = "linux-x86_64"; sha512 = "f00506936eeac1d6ccbfbcc4f1ec3ff7435013c4bb547c3ed8d75771aa20c23207349bb1850a58df054a16669897118a4e163a3629da5d612b3d7de1ef4c824a"; } - { locale = "hsb"; arch = "linux-i686"; sha512 = "3c507f80021faa40302a1e28c74f561cacf65519f30a947ad8a518e605a53354293a3c50de3bfc486dec2d9876e1d391a653ce99d97a7551ce4e8ed937831556"; } - { locale = "hsb"; arch = "linux-x86_64"; sha512 = "0c17827cbcd6198c763b940d4ac1b2ea9d94f6d985bf680874ea2c8902b819d383ef011290ee75b824994a15cb4bf509e137ec05ce98fd17f5d416d8c7f9d8b5"; } - { locale = "hu"; arch = "linux-i686"; sha512 = "7454371f38c9c58fb7c3f4b278898fd8963162e718d0208cb0536d28621849337e1550abc95b3eacd4b244ffd074595744433ed1454c4964e709252c12dcc48d"; } - { locale = "hu"; arch = "linux-x86_64"; sha512 = "3641018778dd4d27ea47393c8529272ede548fa1a8fa055ec686bd444fef1b3599f5a5a43c51ebd40a7e71f72e3105bb5c51ad0c55824ead48b4d627b76cab95"; } - { locale = "hy-AM"; arch = "linux-i686"; sha512 = "44c12b5f7a364b6968742a23641472c4ced9ae0f0da1c6d8b2f7e2f5c1b1f9f68574bdc268fdb80c2236b58ac9a2e65eb9c5de69622b4ff837a3f3d223cf599d"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "36c4a325bc850011805665a23191ff2577d012fb6610c8665c79b7576ba381b8017f96fafd3e6f5975cdaed1c608204bc42963d618163c73f8df2d07f8d60183"; } - { locale = "id"; arch = "linux-i686"; sha512 = "a57d8c4d0ec83ff986ba9e0d41fdf883910d68a70ef47f5f6c88fa375b5f2d7c4811c8d9c9405b96c1ea5661be9daa26aac929a4a5a3727e7b34ba1baa14c716"; } - { locale = "id"; arch = "linux-x86_64"; sha512 = "9e742f9afe17eb4837d8fdfc963c3dcffd270fdab5d44f63ed8feb01596bf1c7ed153ad2877ffff62e67eafdddd304172a9da04a50f20b4f63050da5a50c60cf"; } - { locale = "is"; arch = "linux-i686"; sha512 = "a6911ac57b9ff4775713ca3e2e0046578a4cac3e5704ff22c078df38f0df39203684732f576cc309c5aeb1912ab88ce8dea4b48860e7f659abac1ed29db6e37a"; } - { locale = "is"; arch = "linux-x86_64"; sha512 = "9a914a3662c5b3f32800a0b75ea0f2dc5c7d4a8ae8284e2f4dc8a0cceb3fab5c6ff49e5b73fa351705754e3febf4a100f638d1e17d6d9b2b5c2ecdee1e343d23"; } - { locale = "it"; arch = "linux-i686"; sha512 = "88d38d5f614e218fd6b11a033b6b09a4801a4f2b3cb75cb3f4402189f741bbcb4070ce5e34358b796fdc8912ca886f6e793aaaec960e11cec0e5dd812e136ea9"; } - { locale = "it"; arch = "linux-x86_64"; sha512 = "ac57b1bb5a13c150c8ceab677a4f58156dc01e5f6b53c07ce3333fdc27eb0b41b781b485490aa0bc7c25ec84d20a10f92fa961b7aa8a5e5a816d95bcce60463f"; } - { locale = "ja"; arch = "linux-i686"; sha512 = "1ec20b0069c6397219da16c650de6eda4d7f5b8a552152473929cd45cc7039cbf8a114199057499ac8471746ac43437e3acc8bbf4601afd12174926c4f8be4d9"; } - { locale = "ja"; arch = "linux-x86_64"; sha512 = "6d5b2fab683f3b7c2f2fc885670ae37ff3e326a6b78df27aaf44996d39ab5a2bce3c69a61e7e01ffa488e37563f8df2961c1f24d916cec371a04f4058444f547"; } - { locale = "ko"; arch = "linux-i686"; sha512 = "7d580958ce1d876d9de4aac6262a8caa3e8c3b36f9e5b9262ce90a1d3ca58611bad4acf633802bd1e83e7ce4a20488f5b9f8ecc8747a325fd7ca451a3461b491"; } - { locale = "ko"; arch = "linux-x86_64"; sha512 = "d47061f406703e89c38b0547ffabe8ad5ebfc1139ddd381b57bc7ccf53897f2dd5d57bc0df0e017a31ecfdf5a65b546a095fea8d3950ae8ace5bbeb1cd8cc29b"; } - { locale = "lt"; arch = "linux-i686"; sha512 = "ed76ca4c087c40f0d08ede83d652a00754a6abec26d17c3c7294ee3c77d39d8cb90613535817d81358876a11f11cc79fa9ae024c81d37a5e82496630003383d5"; } - { locale = "lt"; arch = "linux-x86_64"; sha512 = "07a028860cf5fdf633cbecbde1f44706be95d27ed96c9c71103fe2b3342a9129807755605b30b720d146568145f3ae3d4ff624b88ed9f5df004f1ce9732ffcfb"; } - { locale = "nb-NO"; arch = "linux-i686"; sha512 = "268e74b8be4229e28858a0a7bd76186b28cfde52fa70baf599bd0ec5da2a20c70647b32d3f4e3c58934dab873ebaa6b5dcf4762a9aed7d8710f14809bb154325"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "687925509d18fab5830071e60670de0850522153a76d560d96c5d482ddb3e0bf1416f10a816e151f2ee7d2f2ef09bb2b86d23d65b1348ea62bfca700e0d09be3"; } - { locale = "nl"; arch = "linux-i686"; sha512 = "4e395c48adb2fed27824dc763360f135c2ad787ff7cd6258b50055cd9ae44c92dcab2de458270fcd18b365817218889fe363205253f781dbcbd337800d727c76"; } - { locale = "nl"; arch = "linux-x86_64"; sha512 = "8fdd6ed769f239abce3ad7dce2c86c1a29fe4c7c13c2018f4225b23e7a23da37fa8661273eade4ebafec1d7989d922f40075805966e306e19764d78b54d48b72"; } - { locale = "nn-NO"; arch = "linux-i686"; sha512 = "4d71dbbecce1f3865d56510c20b7d27feabaf4ca2f98b1942c729b72e084ef3a90d6e96d43a77143a33c31dbe71a978fdca550905469f04fcb01a3c0edb82f62"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "ddd787da7709c09dafa91bb979931d0d48b93c93d7937f3717e9d7a39b718be4f7acb4766f908e7065b7ef791c105c2b79ffa54f5faee2d040a63687d5cf2ee1"; } - { locale = "pa-IN"; arch = "linux-i686"; sha512 = "6720b2608293b0eb5638f3e25779bf9ce0ffcf86b8cc82c2d5136d96f9139d208ff5e7d6d3c1a95f1cad8d1d782935633da766ab77141d086f821bb23dff1e0f"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "3f89c3f02dfbc90e6f4e6d3b4f4c42654137cfe813be4ac65f88a469af90d25b2d0cc298ea5014d01ef10ff789e71afd723ab66916fd67daab4e2bf9cf40c904"; } - { locale = "pl"; arch = "linux-i686"; sha512 = "01e6168dd32d5e03574fa79614cb5acdd9eb61639f6ad13e90e890314315b53a7cb98434ff39e71a261fc5d1c6483a5ba9792cc3f0cf013eef766d6d4a792eac"; } - { locale = "pl"; arch = "linux-x86_64"; sha512 = "7e4a33bfe95a204cba81a6c8e849a121754ee6a0e52b54d571af2806cb139230a7b2e8fd7a336c0ab262da5a8e61ba6ec89bb9b4481aa23cf45a2955beb86713"; } - { locale = "pt-BR"; arch = "linux-i686"; sha512 = "f4b4ac433e491808d2078b0d1289dae2904ac7e00bdbd9dd60d6b3a92fadac09a9c794c708b3fa75e6c03c15ba0c5ebfe1db51aee191237f4fc7a2420052dcfc"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "9429227039305cc49303878a24d77e34ddcade34da293879ac8112375c06644ecdd3651c899c14b2c821684967851557858040433f40a455370dd6da53e197fe"; } - { locale = "pt-PT"; arch = "linux-i686"; sha512 = "48f0a0844eb8773ce0af33acf39483a47f5801810115f5424898fc7750f7b53dde5145152a61a82967ff0186876851d65e5a6352476ee27731780d17a2436a71"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f835bd03c3b0f548bd451044232be5a2a267bb8e3fa2cdefb792f85012ede6bb3d9561ccfa8d62046337ce9cf4c7700e9b12468cd4f7d60406a7ff9f1f691f79"; } - { locale = "rm"; arch = "linux-i686"; sha512 = "523c68231e9d435dbdcb923a30a30b5b24496e6889168d5351d5bad19bb0a33d8ce744b65450ab2884ec34690cdc27f81e03614dbe7996735edde0ff47afadc4"; } - { locale = "rm"; arch = "linux-x86_64"; sha512 = "cb6438f3fdf5d6486b170acc779c5f9930099c36a914fdf58649f85552eb92d13637290a160ad7c4b9384aa102f5e8cbea7eaf5017c8eccc4331d6ce80de4e5b"; } - { locale = "ro"; arch = "linux-i686"; sha512 = "3e7064e268e5539eba92ec30a3a17fbfc4bc958fe40ad96bc1140c6c8e4b2427b94ce1e51c1e41623c0c439c1881107a9b47493f6f92905b64194ec336b62a77"; } - { locale = "ro"; arch = "linux-x86_64"; sha512 = "5b9f1d7e6ddeb878ea440d1761212df3060815d2a12ae4bd9516b111b8bfc1f432a73243c97d106de0ebc0184a873d5b331b979f42c74c156f5c0b6bd8ade711"; } - { locale = "ru"; arch = "linux-i686"; sha512 = "e6044379ca3214e84103ce9fe71bec73d943b16534f1eba374d6f9f1a019d40731424d49e9dc54f2e4731677288373e23645073dfa8a092675f94860ea41835b"; } - { locale = "ru"; arch = "linux-x86_64"; sha512 = "3eafca9f2d67b22e1e12435145825cfb71631fc24e53f556a6e903d81671092e25a1efabf92eee3455d24a2669cb7a17a28dea94932a65ac02ddd9a2971d5806"; } - { locale = "si"; arch = "linux-i686"; sha512 = "ad52b55de7bb04b3907df881ceb9c8a21ca227bbf52316b1bf2e0b20bdcab4049cf1291d054ab7f8ff40678359bff9b7ae90394409fdf11c74cd7165be0f02d6"; } - { locale = "si"; arch = "linux-x86_64"; sha512 = "0670fca36e7a83d203693f2e554a64455a24f638a4d72f2f1c7ede8b6e20e4b3dc1234d4525b07a305f8b74d11e676f5dbcd4303ec859d4096a1367d758be6a4"; } - { locale = "sk"; arch = "linux-i686"; sha512 = "99cdde9e68a878ff6ad00531a738b5cf8fa82342e7287ecf9ed57815bb9e9e599021b068c2ec128cc527c9f1ff21abcaeb8f694a34dd8661fc19610df30231fc"; } - { locale = "sk"; arch = "linux-x86_64"; sha512 = "6fe5511d7bb8a44a6cb1a91837f96636a57d8c9c180213ad785e254c30db1c26d854681f1bde120c64a9171f371649a42b23f8bb5a44ebe0fc2834c9013b05ea"; } - { locale = "sl"; arch = "linux-i686"; sha512 = "3774102fce53a1f7f680b1105372c50c8bdf5bfd90dc752a4eae21fadb7fe8e55e16a1bf3f5a625fb14e432a6ce2f3f5afd11f770a2d05a093af9b2962f7d57e"; } - { locale = "sl"; arch = "linux-x86_64"; sha512 = "c181d6505c8b7702cb361e0eab902fa7fa6afabeaa5391419a54909f865063c1695f65e22134cfd4ae0f17b224a540edd82c359f325469cb989f5116d901a674"; } - { locale = "sq"; arch = "linux-i686"; sha512 = "cdf379fd3459828a5d3b397f5ab5680426163519b5ac3107673714792d39cfa811c57f7e796f0fdba439a372ffaee12f4dca335ca31f4c64fb7030e0b334ff8b"; } - { locale = "sq"; arch = "linux-x86_64"; sha512 = "e4d9e888bbcdc2ef729dc0d0eee0a84e0fdd8b7983f43146b8f0c0cf674bcdd0e74f34e8d172e83e38dc6c0736729ad7386bb1c21309d4dd5d665eaa334185cf"; } - { locale = "sr"; arch = "linux-i686"; sha512 = "7f9b792229152f204722a58e8db073f464393d3871c84c7c1b38eddc39551e08aaf3dd537438baa9f802b42305ddb79aa903cbd9a8da9823af202ff784f26df2"; } - { locale = "sr"; arch = "linux-x86_64"; sha512 = "0d318caf92c8efaf9af26e245c34f6eb133dbacc50fce93dfaa38c099d7bf3e84c2f37f38bbdcc24220525a18707c0790041230c8533b602c72e222bd6ad8c81"; } - { locale = "sv-SE"; arch = "linux-i686"; sha512 = "5b1b22d1df530ce164df04d537081378a56ab574a83ed4e489d01aa590ced55132d1f9d79eb93f397063a781ee96d55e732c5d19061bdb9d048238de0a6fdc3a"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "860b8f4a3d6ef9173bb74285a2c8e1a5163b64c153372f7945de87811e9e108b7e9bc45c412af65fc4678aa3d037a647673e1f8ffd13dac01312c2fddbbff9bd"; } - { locale = "ta-LK"; arch = "linux-i686"; sha512 = "3655a5902ab96979bd63631ed03da20378117968b3543f397ef1ed276784cda3dc07e296b9cc0b394f5d3d7781ff5011fcf0f52d4f1937a835f9aa10700fd301"; } - { locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "e7552e32fbeebcd183f30ecbe5f24aeac7c331be03e46ed953a62395a6ea2b1d417ac1cf7f1b2983fdfface7dc5a74fd0e2cce365248a581adde0ed3ea16ee90"; } - { locale = "tr"; arch = "linux-i686"; sha512 = "c853f1fead6155ffc1af4b9630907e68d1253baed19a8a957b7a5d977e45ca9d095e41bb2a1aea5cbde92d7680b4242915586d4cd7cc6b97350ae8c3ab2f4a82"; } - { locale = "tr"; arch = "linux-x86_64"; sha512 = "84db95b4af21962210a5975b41736e73ed6f0d773717664043fcc80133c21dfede2c8a4522c5c8aaa3452f7bb9802f6de589eeec6d4408f7a90b132431e22a13"; } - { locale = "uk"; arch = "linux-i686"; sha512 = "6feead54fd7a40888dd57d187fdfd8dd0863b34135af1aa2baaed72bbc0ee3ba6322f182679b8f025068ee98872d5e5429636f19643f2373fd9b377218d568a6"; } - { locale = "uk"; arch = "linux-x86_64"; sha512 = "705075b18ba24d01c35f42ae1ca5cc570971290717a0b134083d694514553b5932228abaa22e606605737007522d4436fb77827810b506d9fe037b0de5c10b6e"; } - { locale = "vi"; arch = "linux-i686"; sha512 = "e45dbee20425ee413eca5d2985fb507be89e6d0b49c7b73109a6bba79d4f58c6630efa83334bb280963fc9a20a0de1bfa0103a562f0fefb67c513380a2e80f0e"; } - { locale = "vi"; arch = "linux-x86_64"; sha512 = "b66e350c022fe14043482fa1112aa43508924e1e34044900416a8063a284c1df30bcb36a3694db161fced1f0e8bb26064cb4d088a862c477ba6991af75882798"; } - { locale = "zh-CN"; arch = "linux-i686"; sha512 = "c16d4336e251b690452a483349429dde336101e5224445584311b5b7e68723e30e58a734839902e87c34c473e84f9f4b7d3c0b2e4d0c1e5da0b2a23e7dedcda8"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "5184083066f18dfc22735e25a551f6a68f8f2f1363c77f562912275c6364326386ccf435388bb4626f74b31243072fe9af3be0c023400ecd73736375272024ee"; } - { locale = "zh-TW"; arch = "linux-i686"; sha512 = "19d9ac5f5f1343343ea32b53c4fd5f56f77148bcae210f2f1aebc7d63dd7db75a7bf63a68a90c8d19e5a8ea2c3b7ce87ae893ad5e58a3e0c35f1207b1ef0c912"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "d571188f33f526cb04af913486eb37ba7ba1597db0145958de8158857a47c1f5a42fe97d6c0891620fdeade4fd691f1a9e875c134398c85a9007eed1f5f55bef"; } + { locale = "ar"; arch = "linux-i686"; sha512 = "9825f8a9cc465435539aface355797d1f35437abd4a684efbc39ffe9948302e095e7aa9ab336e239a9d11a592f2c7d75fe21ef20747ff18a27ab404d0a43c659"; } + { locale = "ar"; arch = "linux-x86_64"; sha512 = "b2d16d69b78ade4fa9e5827411670e0a19d7fe7c1e2d893865f94514f5b50832ccf9ca5fb92354b152041605b1d7b7c1673d697537fc48ea3323b6b9563c4599"; } + { locale = "ast"; arch = "linux-i686"; sha512 = "37fcf68df5d69e56d9ab20e84542fd95b0e0f4fae56bc652b5037c9af97596ba27e4b3b92ea76dc81dc878cd125ee1b024ab5cf05662fbe6354eac303382396e"; } + { locale = "ast"; arch = "linux-x86_64"; sha512 = "f29f59ad51794e4bf1c570fdf3c5d45c61c23dc8ec9aaab5827abd961ce1228211277200782bf95c76a1c87138c2e1005d9474a055f4bbc1f0d9401b75cc856c"; } + { locale = "be"; arch = "linux-i686"; sha512 = "c2064f08f4e7f8154764d14605bf30d687670b0e617f21f99b80852ed41ef942a6573a2ec4bc4e01cbf1823efe064da011dd1f29841b2765323d78694465c8d2"; } + { locale = "be"; arch = "linux-x86_64"; sha512 = "d0c96406e0d889cbef011bdcb6f7d65f2ca4077b4c1c28d1790cf54fc6553092f7188ac32d5e2d80389c316ae205a982cb7d95b4bffe57f7e159304d3256978e"; } + { locale = "bg"; arch = "linux-i686"; sha512 = "43c7f27b227af8dd647008247bc0bd858d65126d34543a1e8376887fefe27d8f42997e9832802429343cc80c2b9cbdf02f99a195fcd99d9fcecea66e9a6968cc"; } + { locale = "bg"; arch = "linux-x86_64"; sha512 = "98da4029e345db4b123a32f57a2bdc01277b023d5e2463b04c31703fb5bb7e59cdf5322af62f62a0388a5046e8a2a151849110b24b51295c2f68fe96db0d936e"; } + { locale = "bn-BD"; arch = "linux-i686"; sha512 = "2b87536b6b9205d6078a028941703f19788c09e62cd1e17f00aac6da20859fcf4ca284d651e57e0b4332f197d5420b4f2121818445aa03f0580c10cb383c64e9"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "8a70702117a5a270b5f2dae44dec45471d7c7e791c3ed65aebc6fc016dee9df950dae7f5c9186c5b10d2b3cf483b57bfc43905862283bea6406c99c744c5b87e"; } + { locale = "br"; arch = "linux-i686"; sha512 = "7b2caaab28a8615fa68fab3ac93c9ddda08715d6c3674908febb50bf3a876659ed868656d545e1021056e64115a56e4bf7a88fcfc42d7e2292f9947ccfd2c42c"; } + { locale = "br"; arch = "linux-x86_64"; sha512 = "8d6a53a190c99fa4686139ad5f5c2f41572f8a5d6e2937035975585505eaa445807cbc5e7abc5584e82328dbb39b525b555dba6a13ff26d4ce53e564dc494344"; } + { locale = "ca"; arch = "linux-i686"; sha512 = "428d48e3609611354eead00a123d48cfe5e214fa405a97e701180b14c82329620fa7df45e703c5e8a8f84616839d022fb3be7192ff340ddb996229dba110b7e9"; } + { locale = "ca"; arch = "linux-x86_64"; sha512 = "560f6bdcc55c62db0ded2abfcbedf006a1b27c127ad193a4deebf117402aaa531a7069954e94cbe7b1c3d6b95e4cdfb46543e9ed623a22b6e14a64bff1b7b682"; } + { locale = "cs"; arch = "linux-i686"; sha512 = "48b984956b2f2139704caca7c45fdbeb0e0c138b7ce0548a3946be2dd2de5f83e9ac1b0605c08ed32e54d34fc830d2aabd127a8679c1d933d802e89db1ddad1e"; } + { locale = "cs"; arch = "linux-x86_64"; sha512 = "9a28daa1f56d5e676e9bb9c2fea52f7324c40eaf237ea5cd4614c66ec67ef9604967c864ac1fb1ab81d2e490c829916b4f5a2a93179fdcae55495837fd002700"; } + { locale = "cy"; arch = "linux-i686"; sha512 = "7e97b3ea0046406aa0c7254125215dc7cd109e7ffdbb8586c1b9928f3474a75f022d36f7f5e0d102b3a8dfd3c13ab78b7a3d4478e8334e685136ece57e2abbe7"; } + { locale = "cy"; arch = "linux-x86_64"; sha512 = "4445d1e434f7bfc646a9ac3ee796e70345f109fea93824cd4eea95f2b58fe81e3c1b2a6a667ff1c6b9f648294b3b2ea2d42b98477bb7e6ebd8d66bbb6fe4eaf5"; } + { locale = "da"; arch = "linux-i686"; sha512 = "1ea50eedeab6be84fe94ae52d50dba4d17bbcefb31f06cf439ce5e7dd743c03a87c59d4e17dbd931bb8e833701fb273a536fc3a89345686462fec12b64f50908"; } + { locale = "da"; arch = "linux-x86_64"; sha512 = "df90ab827acd69ff8e47011020e8d4a02cf669e1994d0238d11027270a8bc97fc7ff6f52ac766af6817b44efb62b985c8688d23efda3ab0a740734bf6764f755"; } + { locale = "de"; arch = "linux-i686"; sha512 = "3d0f2db8eefcecec01f6d102c413f6125a2eb37f2ce03458f75a34a9c1086531c0df4979a02bcf760c26f7d43aa4f6a5444b662cebf124f5f8b02ed5decbf83f"; } + { locale = "de"; arch = "linux-x86_64"; sha512 = "9de6e8002e57c9c51bcd01b3e49f6fb04e527ee9fd961ca5ad22806cbfaf9cc2e01e554576606866576094a2331e9aae36bd40b83a8c5fe892c726148ac08c0b"; } + { locale = "dsb"; arch = "linux-i686"; sha512 = "4600a52aa52ac9efc077b50e6b0b756af3e14c84fdfab2eddd83cd95568f6ca143754b0bd152a36165728f5c47b757cd3a21c06f4c92edc244b7be5775c298a4"; } + { locale = "dsb"; arch = "linux-x86_64"; sha512 = "472d1de923605ab68989cec03f9d447366d3afdddf94272bed9a52c7bbe2b50b172702e54004e4fd80a5f98d5170d541f060dd8fea0dbf04fc5ad54ae9bac6fb"; } + { locale = "el"; arch = "linux-i686"; sha512 = "83b81f80adc8311a77972596b21a602260ccb8d1c7bafd88e791f2e5549b3e9498ff4d62954faf2937ed6b9419eba23610521b1ad73ffe20bd8d6d1a5ad65bb4"; } + { locale = "el"; arch = "linux-x86_64"; sha512 = "64f16763606d69a0a1fde2d8901064d9c64c44d5d1f0f791167e0223f9fc943eb71023f7fc636c978f56ab1c9354fe042530eac740bbd3dc78be82fa74873a39"; } + { locale = "en-GB"; arch = "linux-i686"; sha512 = "3c3ec265945f796df2fc5d4ba35c32903534c3520629c952ccc984e76812041282b338e662c9aeefb87417c5ad01753acaed21f8089eae66464365caa2cb9609"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "c6d91ae956ab4698802f4208e381dd9d7310595179badd564b32d9fd7dd7f2735d9be4317b1c39886e7b8d6886c998e3c174fdbcc2159e5e6e3d62ce78f3451a"; } + { locale = "en-US"; arch = "linux-i686"; sha512 = "f5f85a0c0bbe8066fc06891760113323b23de7d90480c1aeaac3f5fb2a9492792fb0de1cb4b7d7cbedc93ded0098afb5a30d144748a1bfc0b59481885214f581"; } + { locale = "en-US"; arch = "linux-x86_64"; sha512 = "88d037587e5d80d02621881ce6ba4034f686b87e3fd25741127345b655edb106d5d43f5900504b7f41b5403389e4f8317d715e6fb3994425dadcd4a5e527cde3"; } + { locale = "es-AR"; arch = "linux-i686"; sha512 = "3419e117a6c92db56be90d2511c726ba61606ca23ecc6c1d6939d2645a9d903459cc4400e229b2f5c59f5579eedf5d5c5506476093b864109796e619d3273a15"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "c073b5502f37837ad418cca401a81d2b72100e86a5628062f2a24f8a978ba5f1f71bb75be707e9078fdbb9de797ecebc3d17b0a09cde8846e6900297dc6ded7e"; } + { locale = "es-ES"; arch = "linux-i686"; sha512 = "995abd683ae784fa337cb992b8741e729ea487e766895f226dbd37db79b78d9af0ed5cb3b06b9d50cbfdc9699fe06a65f6cda698661b74159fe9465cbc599a46"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "d09be3138272a7061b48ef71b02a4faa6ef1010df4a99387364dc89c329a173c9843c0a4a8ca8e035999b0c5d69e91b647e79240505a4e474612423e232c802d"; } + { locale = "et"; arch = "linux-i686"; sha512 = "7d70752e672686602f94f80cfbaf24fe7e839b95a4868b1e88bd3a851a1aacb294a0ee7931ab5132dca7a06d5a4b2e3e1f1812af38f92b7d544ee1f08516f31f"; } + { locale = "et"; arch = "linux-x86_64"; sha512 = "a54cecb455a6a294dc8ea6f55b150d13d96c5f6c0dbfd81065f96efa5b41859c82a767de186eb4d0329b103bb516ad9a86789c4101f7c9cb0fe1773ddfae27c7"; } + { locale = "eu"; arch = "linux-i686"; sha512 = "fc813f13d74161baf8bd46bec0db69cfa33ba5cc4eaeb6b12f3ed48d294af973c35f1b8c03ea20ac254e00f2b8a30d0ac4a5e649998886b429e2d043f1755dbf"; } + { locale = "eu"; arch = "linux-x86_64"; sha512 = "2ce51531f64afc7b578d9972225d95b371161ba758aca52b9a6328e4c50a3337a2a7aa8d1307de6a00ac42ed53351efe8c8e83caec8192ff1bc2897b679668a2"; } + { locale = "fi"; arch = "linux-i686"; sha512 = "43d31ad2d6f59f17fd4704f8f8de089e90938454bd9b3755b30e50abbd18f3cd3ce4a4207c3cf5e4d70ddee73318643fc9913b6543a16989ad74d60e246e7392"; } + { locale = "fi"; arch = "linux-x86_64"; sha512 = "83055313856408d29079e8feaacbcc777fba655ed5bcec8400807ee3a497276d1fe4a6c1f911098c348a3789cef53db7c172c1771608e0c7241ce3739114b059"; } + { locale = "fr"; arch = "linux-i686"; sha512 = "170120a291c764280cdd00f8d4b2e59a0be31326c41943920e54eb816163b9182a531235aa96564e94db47716c8ce7aa87ff60817c262652822427a02dcb571d"; } + { locale = "fr"; arch = "linux-x86_64"; sha512 = "3ed963c5a7221ace7585caa34ad58db2ee087d90ad7de649fc397f26d512e180c10c25588ffb13ab7fc363d1bcc44d4e82fed67aa0561222af9af87e12330ebd"; } + { locale = "fy-NL"; arch = "linux-i686"; sha512 = "c59591f05938110429c2ef6d0751850f01b02c936e8af3ee9cf895af41a96bef9d3b9c62ef3af88ed8c2772094eeb85e6914351c8a3233a7800643c159b9aa12"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "f90ad1d08c44380b97f79e5b771abcf2aab8f69dcfed718e3ef44e64163e85e63203bdda65f01a231bb63bb04a8cf00aa87141499366996c568cbf9897b7d306"; } + { locale = "ga-IE"; arch = "linux-i686"; sha512 = "5449f8bbcb5a693f7c4d2f09a2e43b76a78aa9e5cdfaec450aebba7c11f061b6cd2e189889c56001304ae6ac8687b52275111dd39bc752885abb26add1ad2b84"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "82c3cc95bb4ca0a3def0deb5ecae003229cd62494a896c8706a600f70819c1709ad4b7c35f3edd14dda1560a300b4626898ec42057efe1835a718fd976d0d574"; } + { locale = "gd"; arch = "linux-i686"; sha512 = "ab4f895734cf6242efecf35306d79601bc2bb4d695170cf069cc740d49213828e86b3d26754c38438cbf4ada0abfe5195e9406658c4bc2da98583a427c132ff9"; } + { locale = "gd"; arch = "linux-x86_64"; sha512 = "2f710c027b7187a2e668a236e2b967490ecdd4c66ab9f4fbfc1a609431ff3f998371e0f14c673ce0647b0aa7d8ea5b0e31cc88238b69853a178705c00eefdc82"; } + { locale = "gl"; arch = "linux-i686"; sha512 = "7ee2fe3154adbb1f9a43a0e4979fb101205229e786b45a5edc5d9f39889ddff7abc45be73137e0df2bf789d0e9ab2b6f62e29a5a5a220a345d798a6fc48d009d"; } + { locale = "gl"; arch = "linux-x86_64"; sha512 = "294ca5fba76da62ba467b75798e55480beb672405a675a0050db76b07c612e44617ba8b316afa47b8041ec765dc3067e3d743e229f49ff75a1a3ce810aaec9a5"; } + { locale = "he"; arch = "linux-i686"; sha512 = "e91b8e2ec22e79d603d3047245d3f9da849f24c124f256dc993f6f4dd2f76c8c5b87a73b8b4c3152b7e5be71524ce7a7e17067bbc62bee57c0124e613fc71c29"; } + { locale = "he"; arch = "linux-x86_64"; sha512 = "97c2a2d9186c1816e9209ebc91e831c1c705e00030881c5e86c1e30b31a1866e9fe3abc4f02a359782d537f25d147c0011a7a03898b54882277ebe59da25a0d0"; } + { locale = "hr"; arch = "linux-i686"; sha512 = "5cf6afd2ceb62dbef77ff86eb995532901edc4bbd03d5e79916bef72d813e2f55ef40098c7029f7f380cbe9db195bca2a5fc0a7a1a561a607b38f9b32f6b2a18"; } + { locale = "hr"; arch = "linux-x86_64"; sha512 = "658dafb507d9521dba2c6757a0c98e10f0976672850aff6b88ce4eb2b047cab9661925ace07b49b901c3c19759d76d62eee5fe0b1ac986c6da7dc82fa7cad2be"; } + { locale = "hsb"; arch = "linux-i686"; sha512 = "37f582d813b991a25c66788ae013fb4cfa49ffd5d45da6f56c54c976e268b7418f25ad00cd7335238c16753fed4114e49ecadcb67ca26fa61094b72c74245c2b"; } + { locale = "hsb"; arch = "linux-x86_64"; sha512 = "28ab2743f87ea4a240d09cb5eb7bd6fce168c44eec3dfdefd1345b9c819381fac1699d133fe2c39244bcc7dda796e76f4ce495f5e530098bf19d4929d344f95c"; } + { locale = "hu"; arch = "linux-i686"; sha512 = "53312f4feeb4dc88ee102bfb8ff16f4cb67624b427f1852748eebaa1eb6faa5b66569e655f5f03a3c99584593b00d5d76f6e38ac473d589076e203da28d37ec7"; } + { locale = "hu"; arch = "linux-x86_64"; sha512 = "1719e0c33584508ea6e5528a7dca9f94d3b546cde758bf6fede8346c66f6c2ec9c85d49667aebcf065c09a81e0e1ea6b149af809eb9584aacfbd4674c6c66583"; } + { locale = "hy-AM"; arch = "linux-i686"; sha512 = "4b9f24ea4a3c53db1b667fdcb441f237dbe63a4a8ffa27c72387548369d1b56d818540f1e82c0121734009d3ae9e8bc266695a8ff64ac1f2aaddb86e56da0238"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "4b3a6c97be1d38ed1e556ec7567f12af1aec054a76fedc74bb26a53f6185009d7254f0aecd8ff14d07553abe1e0356e443707b0d9800c7d19a8e883bee9ca2ef"; } + { locale = "id"; arch = "linux-i686"; sha512 = "bbd6f3caac34e74469043a25935fdd4ee5cecf180025403ddf3d7b651fd52a9aad26dfe9f73cb1f4e3dde2a463d3a9c773fe08ebce42ed908ef107bde231c9d1"; } + { locale = "id"; arch = "linux-x86_64"; sha512 = "09dda35699dc17eca61b063d53c9a0326ad34cd43cc2ed4e822b4597bd108068db6cbe2b6347d0d28ec34f1271012cc42c31ef471e4f4d6cce211e5b31de33dc"; } + { locale = "is"; arch = "linux-i686"; sha512 = "b08603695e3539619b7450d03c88aec309d2f9b938b89455705fde1c75540e1d14a3d3111446aa6a41a8d271c5633b6d14861540751ddd7f45dd936322af6bd4"; } + { locale = "is"; arch = "linux-x86_64"; sha512 = "7ca4d5ca884713ab1bdcbae470be7435f7c20d273a50d6ff8304374f5a8c43d06702a1690080a94e28238d9afc4d6dfabc170ed842bf8359ada774a8e8b2d474"; } + { locale = "it"; arch = "linux-i686"; sha512 = "a27de0ec1735dc30e7c6a06bdad5fd7604f02446d8a9838251a6f6a0f621948d05beebb8e2f308ebb2df6207d3c6fb17dcfe5d1c2c2a48b3ca826006527271ba"; } + { locale = "it"; arch = "linux-x86_64"; sha512 = "dcf639e215e8941b0fee2c20471840fa77d7b9684f2e196042e201ae7de0b4aa8fabbc712e2217cf1c1883c78415b7839f8669cb897cf345ae00296b887ffd59"; } + { locale = "ja"; arch = "linux-i686"; sha512 = "497aa0048b4f53913e3a4461282fc809b99e7a1c43024dc937d5defd85e29b354290bf4962b200fdaa4dc2871f24b10a0aa2401e52b7b47a8c16dd32d49e2311"; } + { locale = "ja"; arch = "linux-x86_64"; sha512 = "61433f6cda12b4d7843c76f8a3a7a2fed3d08dac0c7df00fbef0a732df65afca595320ac9e01169f3ab277bbc0074e589b12737c4d2b9e031211e1aa10cfb18b"; } + { locale = "ko"; arch = "linux-i686"; sha512 = "d9a3538b444821d14fb8636d7282001a8130aea7437b8a919d71b7261c445443113dc1e45bf8ecce20679b4995175334918e58ac7c9d63ed40773f901c8168aa"; } + { locale = "ko"; arch = "linux-x86_64"; sha512 = "07d8661036b0dfa7390a940f879c961d25d08dd7eb8ab19cf3dd1964d44f74117bf2e8bfa64697d9576851270b5cf411c1660db9f7ce988970650b5824f8da42"; } + { locale = "lt"; arch = "linux-i686"; sha512 = "cc583cac7892ecc6a5c32a44761750efc9d566abab65fbb802f40b0f23b60099a0977b66ff1869db8723f8956aa370e1dc6a1ecffa739ec064a0c270471ba0f6"; } + { locale = "lt"; arch = "linux-x86_64"; sha512 = "20e7619a4f16492e73ba4576c6be9228c2377a57300b48fee5109dd21771f33200a9127db6215cb078cf1e76dc1ccdffd72dd361ebeeb76f1562fc4e82951e47"; } + { locale = "nb-NO"; arch = "linux-i686"; sha512 = "c64ceff628e315d7bc4991df0e7e5d872d8f3111948461c26cc9535977afb5c5123e3d8b575478ab0b1ab0fe07fd21c3484109e46b0407ad86933e082b29e491"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "9caf7fc7d5a5d11e532f60757f0bd6000d96ac42bf67c2ddf0a018bec8299b2f1e28cbeb97d862254a5036c44871ac14d059563b3b37d41efc5773e4a300391b"; } + { locale = "nl"; arch = "linux-i686"; sha512 = "3c5f36dd64d2f170339e7762e357fa901547891ed4f278dba8b835fe8be999e93869682747463f9364ca9b728e3dc63639b992898bd0cc1eb5e70edf0b9f2628"; } + { locale = "nl"; arch = "linux-x86_64"; sha512 = "17881c4a3771b1a96659278d87b242dcdf4f7fa85be100126c246babb61efd34a8e1ca45ef2f5501c5369f2c741ff44cd2d968b3e252b0a7c8ee2d3cfdda7bae"; } + { locale = "nn-NO"; arch = "linux-i686"; sha512 = "c28c62615b8c882373e2fc774733982b990b31ad291b6a48ca0d1f3583063e2c66b0dc7b4b9a17246e252255e75546752c84ec015c913ab312d573dcabf9146f"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "0b5ece430c8511cbdd7121f8f2128ece8cbfac954f4471e5358b425cfb5c7f09c925428fce03fd411c7d5d3258f2fb4e1003be3404deb0ecd4d79d40dac9fa7c"; } + { locale = "pa-IN"; arch = "linux-i686"; sha512 = "16cd5714f216637dee401ebf3b081f61400a05eafb3ac35b1db35b9afa4736e8334af7930fba6a87d2a7ce042eee235b3a57e1abd03964d28dad23fdb547a31d"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "865044c92a277fcde2fa9cfa21266f1737cda59f60cefaf852a80e0d1960bbb9af500b74c591e90dcea43643bc73e1adb726488a51e29746978bad84bf9a867c"; } + { locale = "pl"; arch = "linux-i686"; sha512 = "85ccc72a9d4421d6112e37fb2664b3189c6fef3efa3ad86d32658e40b102541f1fa345810d44e0e19b6c757a31bad934fa9a7b1df6cdbef7c6c0fb120dc38505"; } + { locale = "pl"; arch = "linux-x86_64"; sha512 = "08023b730410b4be5df7ed15261e1c1346be56e58645fc476dac6228adc21dae336b25ef11b9adec7ac8b9b1f7f942c1c579118a99bb6897099948bbd1c3f45a"; } + { locale = "pt-BR"; arch = "linux-i686"; sha512 = "84e80dfc3bd12f4900205dfbf1c4d20b64bc2ea220275c85f0ca2f9a9a2caf357ecdebc0d72788873524ff16a97e7c24afa3aa69314553cf4e693618334427a6"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "fc6de72f9457a6967f0ae18e5a71bd7b463d8c4a7c091795cac8f676125e580929382862d79a8b7659ade8ff8f87478f705c057270d9953900f36fa467dad3b2"; } + { locale = "pt-PT"; arch = "linux-i686"; sha512 = "7f454b2c5dfda9518b32c117955f04a3c582ce186e97146735891a3fcbd5873db56cd3495688b63eb59665bf3055d0db1ca426d5b5e98f559faea2da10c7daf2"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "f5f397958c9c10869381f0facb64530f7c3d1e4c669ebb0e2b32fccbee560b742b7350c9c314683f949e5c9cb0161beae4e706243f1214f0cca84244a7d2df84"; } + { locale = "rm"; arch = "linux-i686"; sha512 = "90aed589668ca02cd33ae08d430871b16ac5778c43f042ba9b8df7701b074636c61fcff059471fd9c5796df3a68d08cfcef190790fd4059fa47c118971882648"; } + { locale = "rm"; arch = "linux-x86_64"; sha512 = "eff8e94a8779771f66571febb9e793653484b45660285107020f871ffc70ad935a3fc68ea3f8eb942b3b7e05533c8235770d1727c2a43b27201872638685a464"; } + { locale = "ro"; arch = "linux-i686"; sha512 = "9fb422f3eff8417db103f8481acef1bcbf794e6e05bf831aa6b8bd839f42fd4baca1aaf999249e1776e9758ef041494ccb3a93c65c9060e240a73f77867df262"; } + { locale = "ro"; arch = "linux-x86_64"; sha512 = "fae562ec1ce02c4183f971f849aa904adc719470cfef55ac7f79ad8a57a1d31f9f926638565c9ee0e0cba51507a827e15a130f54406c59b7c0ac8fcac81fdc3c"; } + { locale = "ru"; arch = "linux-i686"; sha512 = "0039d541632368c41e2ce7f89263c6f6a6adf330ebd6205e637eca43fedd1a06a20080d621ba19163a0b9d4a91fc9a4b4b5ce50a694cdf985f36d9eb41c5311f"; } + { locale = "ru"; arch = "linux-x86_64"; sha512 = "cf289f78ffb353457eacaaea091ababf4b284cf4caa01f50fef3ae36d8c67f5d0786f366fcc1a35d231bd8ec1077392be662442852791337caa80a0b00f7fa40"; } + { locale = "si"; arch = "linux-i686"; sha512 = "9db7054433c6e06f8188478ee639a7b9d20ca9f868143de7861eb804276e5f620736f1ec44d21017eb126d62814cc276d75734ae32cae590194558bfc41375ff"; } + { locale = "si"; arch = "linux-x86_64"; sha512 = "258d1db736872157b276c67e7a7c5d5e89740c8e19de09091c05d2de1610ae1e50e17f8d020ee74b8b9e0ec70bc419b357289368c90de5b6c6067ba692564567"; } + { locale = "sk"; arch = "linux-i686"; sha512 = "8ae01308c4013b53a009c95114fe349cee67c1bd918e42da976994941aad6ece4b285168ce26634a0eba9a589a1e0a9d9a6fcd742113b69220ea504cb076e547"; } + { locale = "sk"; arch = "linux-x86_64"; sha512 = "9af3e23397534c6b72d5b720842ab6aa2df5e7c62134947555dea0837caadcaff57fd4fcfbf68d623be8875940fe20983a9144ef9f1ec0d228e8ac956ca9b708"; } + { locale = "sl"; arch = "linux-i686"; sha512 = "f58e111856ab370b5720acd96578874dcdbc0913cec8f5f6956e33802f2fc7648ee39f0d0b8df9fce85d6df42186ccc0df070afc597f032b3f30af4b00074c1e"; } + { locale = "sl"; arch = "linux-x86_64"; sha512 = "1dbdcf95dfa3a6148c23d5e5ef5b2520ad3558f8c6e528a6a1585d57545f7f3ad81761a0c4ec04794753ddffc089135168dc5ec82b0eb8699f09e29722f90aad"; } + { locale = "sq"; arch = "linux-i686"; sha512 = "b7759d1b50bd3700d717c0bfe2a3b384aea864b2a62f41e04aed12e5f24be9ace991f8e2a142e1c1c329818fd3a0643f538412f03999dc7d1cba5a87a82c3bc9"; } + { locale = "sq"; arch = "linux-x86_64"; sha512 = "cc55ec09a7fbd1a798bfb1d4f0199ecf125329873515c549e6a701e3bdf0e0d6d444be203c424a67e27ad96f2e486ac9b823e6d286b0699adb8812f43ebd6437"; } + { locale = "sr"; arch = "linux-i686"; sha512 = "65562e1be17a16ff6d09e1f6bc0d6f9b0fdfe67de8661992f561b57778c52e49931b8b1f9b658c65c540cc1e3596ea06d3ca5da644b39c05b7964c2fd6927fb3"; } + { locale = "sr"; arch = "linux-x86_64"; sha512 = "784cf692425ce351d5fea5dfa33f80eabe0d996a6158ada1c50d8937571549f06cb52eaf8faefcc73f39eeb2a4a79b5fb9a5c4b221796c0da1b23fd3aa36f74f"; } + { locale = "sv-SE"; arch = "linux-i686"; sha512 = "fa7dd0bf6440cbfc4ed01f34be82c86bae770c7e8b7ea84ab4ee30ea087c4d3fc10c09f9c8e8b2d3dc1b285ac12db611d18f1cab62411b1e4d2ff16edef02a45"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "1bbb03695bfe04c1dc3cac1fd37b24910f746a128efd10274db4b7e8025ef5270a66c344a2e9dacb88b6eb2a186e10bde0fa0ba41a73a241d548454806d049e6"; } + { locale = "ta-LK"; arch = "linux-i686"; sha512 = "ea498d149d452321f98de5f6320f0980c22cf9859e332e08e359e9399caaa1e2b0d2d66880e045cc1d17636f0821386be9ddcb510840c7d442f1eb1b4051494b"; } + { locale = "ta-LK"; arch = "linux-x86_64"; sha512 = "055b33db08bf48e016077242e8d52a1f0fa72a36e72bcadde5429eb3ddf39898ab7514d70173b4f8b765014d984bff1180da7e57e6235bfc41f5ba5e502fb423"; } + { locale = "tr"; arch = "linux-i686"; sha512 = "a4d04d2430935904377d995646c84acf75d2c0b6a05a7b4935ad49b89fc5f895c6e9b772ad09cca7d9634614ff685aa268f834e1d09dd0d5d4fd33402c56bdd5"; } + { locale = "tr"; arch = "linux-x86_64"; sha512 = "bf29e50b724fadc0ff324664ff191ed49799bd540d9e4483651caa87a5cb6e3614b87a5e3cc4957560627698e0991b97c3501f4fe8bbdc87b1afa5018e9d6e02"; } + { locale = "uk"; arch = "linux-i686"; sha512 = "44c9a47daf570f6a669210ec8cb883c5cc1cdb614b7fdbf98a4a087d87f862cf00695849ec73c9d79c99008ee98e4b1ddc96ac050ed5af7ff20db52163026188"; } + { locale = "uk"; arch = "linux-x86_64"; sha512 = "0d67fe5c1ab189b25d0ef22b3180b1b67139cca94a02aad622b5b000e212bf88b84b65e034c6720b41bfeb98e4cde38a8f4998f40661f7a0334f5df743de2152"; } + { locale = "vi"; arch = "linux-i686"; sha512 = "f8fe254886133e05a297ebdaf97de0115595c5a6243e58e7b3057c1d007c75fb85ec78e1942c7d005d5fdf218b52ac9418f120788e2000c121168c7c82f4b4b7"; } + { locale = "vi"; arch = "linux-x86_64"; sha512 = "7db410ee86ae7810315b8349dada32411fcd37bc5670e1aaa15be15a00bcf40280f1d4e94aa934ee507baedb1a5b2d096697d6ae7bba953263c7b6943877ab08"; } + { locale = "zh-CN"; arch = "linux-i686"; sha512 = "f7f0d6794ffa6128941cec38266cf68c9718d702a261808d1f689adb34bc03cfda2c1e30d496974f1d2c98acde2461c17f99691a8a46f52b27ce02123e1d52d2"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "15239b95519c79b16fc09f6ed1058e48aaf932a796661c800371ba69e67f7e9712d191019b4d8a4dd32a391f688fe023e0e9b284a58de7d8918a198c24c63d08"; } + { locale = "zh-TW"; arch = "linux-i686"; sha512 = "abfa901719a55673831c41ca5363f993e14b555766fb63d6e0e33def7bbc021fade2ce9b34c8354b8315c614114be58c0a19c9b74766400ca284fdac6057ab5b"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "66b3b31e00ec4ff8dc9810d07e1928554f78535975b54f1ac436d7b9eeee3b6dcf2aeb485e80f2d10b07f75eaffb2fdbd7be7208da67bac60515320efd5d60df"; } ]; } From 32ff5bbc3088ca9afff585898947ecf173ffb9a1 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 1 Jun 2016 04:21:56 +0300 Subject: [PATCH 143/520] krita: init at 3.0 --- pkgs/applications/graphics/krita/default.nix | 45 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 +++ 2 files changed, 50 insertions(+) create mode 100644 pkgs/applications/graphics/krita/default.nix diff --git a/pkgs/applications/graphics/krita/default.nix b/pkgs/applications/graphics/krita/default.nix new file mode 100644 index 000000000000..e8d2951dd169 --- /dev/null +++ b/pkgs/applications/graphics/krita/default.nix @@ -0,0 +1,45 @@ +{ stdenv, lib, fetchgit, cmake, extra-cmake-modules, makeQtWrapper +, karchive, kconfig, kwidgetsaddons, kcompletion, kcoreaddons +, kguiaddons, ki18n, kitemmodels, kitemviews, kwindowsystem +, kio, kcrash +, boost, libraw, fftw, eigen, exiv2, lcms2, gsl, openexr +, openjpeg, opencolorio, vc, poppler_qt5, curl, ilmbase +}: + +stdenv.mkDerivation rec { + name = "krita-${version}"; + version = "3.0"; + + src = fetchgit { + url = "http://phabricator.kde.org/diffusion/KRITA/krita.git"; + rev = "refs/tags/v${version}"; + sha256 = "0aas86667ncp8jz00c8qk7bm26g76l65cysh06wxr8kxbvqynrdn"; + }; + + nativeBuildInputs = [ cmake extra-cmake-modules makeQtWrapper ]; + + buildInputs = [ + karchive kconfig kwidgetsaddons kcompletion kcoreaddons kguiaddons + ki18n kitemmodels kitemviews kwindowsystem kio kcrash + boost libraw fftw eigen exiv2 lcms2 gsl openexr + openjpeg opencolorio vc poppler_qt5 curl ilmbase + ]; + + NIX_CFLAGS_COMPILE = [ "-I${ilmbase}/include/OpenEXR" ]; + + enableParallelBuilding = true; + + postInstall = '' + for i in $out/bin/*; do + wrapQtProgram "$i" + done + ''; + + meta = with stdenv.lib; { + description = "A free an open source painting application"; + homepage = "https://krita.org/"; + maintainers = with maintainers; [ abbradar ]; + platforms = platforms.linux; + licenses = licenses.gpl2; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1377f1b958e1..065bca2e27ab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15790,6 +15790,11 @@ in konversation = callPackage ../applications/networking/irc/konversation/1.6.nix { }; + krita = callPackage ../applications/graphics/krita { + vc = vc_0_7; + openjpeg = openjpeg_1; + }; + phonon = callPackage ../development/libraries/phonon { }; phonon-backend-gstreamer = callPackage ../development/libraries/phonon/backends/gstreamer.nix { }; From 4e6697dcb6baba9a96de5d60451bcd025833a1e8 Mon Sep 17 00:00:00 2001 From: Bob van der Linden Date: Wed, 1 Jun 2016 12:39:46 +0200 Subject: [PATCH 144/520] acme: added option `security.acme.preliminarySelfsigned` (#15562) --- nixos/modules/security/acme.nix | 180 ++++++++++++++++++++++++-------- nixos/modules/security/acme.xml | 28 +++++ 2 files changed, 162 insertions(+), 46 deletions(-) diff --git a/nixos/modules/security/acme.nix b/nixos/modules/security/acme.nix index cb5410a5f15d..ef6da788e619 100644 --- a/nixos/modules/security/acme.nix +++ b/nixos/modules/security/acme.nix @@ -114,6 +114,19 @@ in ''; }; + preliminarySelfsigned = mkOption { + type = types.bool; + default = true; + description = '' + Whether a preliminary self-signed certificate should be generated before + doing ACME requests. This can be useful when certificates are required in + a webserver, but ACME needs the webserver to make its requests. + + With preliminary self-signed certificate the webserver can be started and + can later reload the correct ACME certificates. + ''; + }; + certs = mkOption { default = { }; type = types.loaOf types.optionSet; @@ -140,54 +153,126 @@ in config = mkMerge [ (mkIf (cfg.certs != { }) { - systemd.services = flip mapAttrs' cfg.certs (cert: data: - let - cpath = "${cfg.directory}/${cert}"; - rights = if data.allowKeysForGroup then "750" else "700"; - cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] - ++ optionals (data.email != null) [ "--email" data.email ] - ++ concatMap (p: [ "-f" p ]) data.plugins - ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); + systemd.services = let + services = concatLists servicesLists; + servicesLists = mapAttrsToList certToServices cfg.certs; + certToServices = cert: data: + let + cpath = "${cfg.directory}/${cert}"; + rights = if data.allowKeysForGroup then "750" else "700"; + cmdline = [ "-v" "-d" cert "--default_root" data.webroot "--valid_min" cfg.validMin ] + ++ optionals (data.email != null) [ "--email" data.email ] + ++ concatMap (p: [ "-f" p ]) data.plugins + ++ concatLists (mapAttrsToList (name: root: [ "-d" (if root == null then name else "${name}:${root}")]) data.extraDomains); + acmeService = { + description = "Renew ACME Certificate for ${cert}"; + after = [ "network.target" ]; + serviceConfig = { + Type = "oneshot"; + SuccessExitStatus = [ "0" "1" ]; + PermissionsStartOnly = true; + User = data.user; + Group = data.group; + PrivateTmp = true; + }; + path = [ pkgs.simp_le ]; + preStart = '' + mkdir -p '${cfg.directory}' + if [ ! -d '${cpath}' ]; then + mkdir '${cpath}' + fi + chmod ${rights} '${cpath}' + chown -R '${data.user}:${data.group}' '${cpath}' + ''; + script = '' + cd '${cpath}' + set +e + simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} + EXITCODE=$? + set -e + echo "$EXITCODE" > /tmp/lastExitCode + exit "$EXITCODE" + ''; + postStop = '' + if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then + echo "Executing postRun hook..." + ${data.postRun} + fi + ''; - in nameValuePair - ("acme-${cert}") - ({ - description = "Renew ACME Certificate for ${cert}"; - after = [ "network.target" ]; - serviceConfig = { - Type = "oneshot"; - SuccessExitStatus = [ "0" "1" ]; - PermissionsStartOnly = true; - User = data.user; - Group = data.group; - PrivateTmp = true; + before = [ "acme-certificates.target" ]; + wantedBy = [ "acme-certificates.target" ]; + }; + selfsignedService = { + description = "Create preliminary self-signed certificate for ${cert}"; + preStart = '' + if [ ! -d '${cpath}' ] + then + mkdir -p '${cpath}' + chmod ${rights} '${cpath}' + chown '${data.user}:${data.group}' '${cpath}' + fi + ''; + script = + '' + # Create self-signed key + workdir="/run/acme-selfsigned-${cert}" + ${pkgs.openssl.bin}/bin/openssl genrsa -des3 -passout pass:x -out $workdir/server.pass.key 2048 + ${pkgs.openssl.bin}/bin/openssl rsa -passin pass:x -in $workdir/server.pass.key -out $workdir/server.key + ${pkgs.openssl.bin}/bin/openssl req -new -key $workdir/server.key -out $workdir/server.csr \ + -subj "/C=UK/ST=Warwickshire/L=Leamington/O=OrgName/OU=IT Department/CN=example.com" + ${pkgs.openssl.bin}/bin/openssl x509 -req -days 1 -in $workdir/server.csr -signkey $workdir/server.key -out $workdir/server.crt + + # Move key to destination + mv $workdir/server.key ${cpath}/key.pem + mv $workdir/server.crt ${cpath}/fullchain.pem + + # Clean up working directory + rm $workdir/server.csr + rm $workdir/server.pass.key + + # Give key acme permissions + chmod ${rights} '${cpath}/key.pem' + chown '${data.user}:${data.group}' '${cpath}/key.pem' + chmod ${rights} '${cpath}/fullchain.pem' + chown '${data.user}:${data.group}' '${cpath}/fullchain.pem' + ''; + serviceConfig = { + Type = "oneshot"; + RuntimeDirectory = "acme-selfsigned-${cert}"; + PermissionsStartOnly = true; + User = data.user; + Group = data.group; + }; + unitConfig = { + # Do not create self-signed key when key already exists + ConditionPathExists = "!${cpath}/key.pem"; + }; + before = [ + "acme-selfsigned-certificates.target" + ]; + wantedBy = [ + "acme-selfsigned-certificates.target" + ]; + }; + in ( + [ { name = "acme-${cert}"; value = acmeService; } ] + ++ + (if cfg.preliminarySelfsigned + then [ { name = "acme-selfsigned-${cert}"; value = selfsignedService; } ] + else [] + ) + ); + servicesAttr = listToAttrs services; + nginxAttr = { + nginx = { + after = [ "acme-selfsigned-certificates.target" ]; + wants = [ "acme-selfsigned-certificates.target" "acme-certificates.target" ]; + }; }; - path = [ pkgs.simp_le ]; - preStart = '' - mkdir -p '${cfg.directory}' - if [ ! -d '${cpath}' ]; then - mkdir '${cpath}' - fi - chmod ${rights} '${cpath}' - chown -R '${data.user}:${data.group}' '${cpath}' - ''; - script = '' - cd '${cpath}' - set +e - simp_le ${concatMapStringsSep " " (arg: escapeShellArg (toString arg)) cmdline} - EXITCODE=$? - set -e - echo "$EXITCODE" > /tmp/lastExitCode - exit "$EXITCODE" - ''; - postStop = '' - if [ -e /tmp/lastExitCode ] && [ "$(cat /tmp/lastExitCode)" = "0" ]; then - echo "Executing postRun hook..." - ${data.postRun} - fi - ''; - }) - ); + in + servicesAttr // + (if config.services.nginx.enable then nginxAttr else {}); systemd.timers = flip mapAttrs' cfg.certs (cert: data: nameValuePair ("acme-${cert}") @@ -200,6 +285,9 @@ in }; }) ); + + systemd.targets."acme-selfsigned-certificates" = mkIf cfg.preliminarySelfsigned {}; + systemd.targets."acme-certificates" = {}; }) { meta.maintainers = with lib.maintainers; [ abbradar fpletz globin ]; diff --git a/nixos/modules/security/acme.xml b/nixos/modules/security/acme.xml index e32fa72c9393..15ed4c04a23d 100644 --- a/nixos/modules/security/acme.xml +++ b/nixos/modules/security/acme.xml @@ -66,4 +66,32 @@ options for the security.acme module. +
Using ACME certificates in Nginx +In practice ACME is mostly used for retrieval and renewal of + certificates that will be used in a webserver like Nginx. A configuration for + Nginx that uses the certificates from ACME for + foo.example.com will look similar to: + + + +services.nginx.httpConfig = '' + server { + server_name foo.example.com; + listen 443 ssl; + ssl_certificate ${config.security.acme.directory}/foo.example.com/fullchain.pem; + ssl_certificate_key ${config.security.acme.directory}/foo.example.com/key.pem; + root /var/www/foo.example.com/; + } +''; + + +Now Nginx will try to use the certificates that will be retrieved by ACME. + ACME needs Nginx (or any other webserver) to function and Nginx needs + the certificates to actually start. For this reason the ACME module + automatically generates self-signed certificates that will be used by Nginx to + start. After that Nginx is used by ACME to retrieve the actual ACME + certificates. security.acme.preliminarySelfsigned can be + used to control whether to generate the self-signed certificates. + +
From 587473c574079a72e0c0c57c2ccd106511e5d2f3 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 1 Jun 2016 12:48:13 +0200 Subject: [PATCH 145/520] Fix display of deprecated option definition warnings Looks like this was accidentally left commented out by 5f077e229625583072ebf63ea48b11170771b0ed. --- lib/modules.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/modules.nix b/lib/modules.nix index 12ec7004d1ee..e2fa3d7fbf0c 100644 --- a/lib/modules.nix +++ b/lib/modules.nix @@ -554,12 +554,10 @@ rec { apply = x: use (toOf config); }); config = { - /* warnings = let opt = getAttrFromPath from options; in optional (warn && opt.isDefined) "The option `${showOption from}' defined in ${showFiles opt.files} has been renamed to `${showOption to}'."; - */ } // setAttrByPath to (mkAliasDefinitions (getAttrFromPath from options)); }; From 9f0e137338a0c8186a104b4af5c6d49d09552784 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 1 Jun 2016 12:51:33 +0200 Subject: [PATCH 146/520] Rename boot.loader.gummiboot.enable -> boot.loader.systemd-boot.enable --- nixos/doc/manual/installation/installing-uefi.xml | 4 ++-- .../installer/tools/nixos-generate-config.pl | 4 ++-- .../system/boot/loader/gummiboot/gummiboot.nix | 11 ++++++++--- nixos/tests/installer.nix | 14 +++++++------- 4 files changed, 19 insertions(+), 14 deletions(-) diff --git a/nixos/doc/manual/installation/installing-uefi.xml b/nixos/doc/manual/installation/installing-uefi.xml index 90d18695447c..1cb431129448 100644 --- a/nixos/doc/manual/installation/installing-uefi.xml +++ b/nixos/doc/manual/installation/installing-uefi.xml @@ -26,7 +26,7 @@ changes: vfat filesystem. - You must set to + You must set to true. nixos-generate-config should do this automatically for new configurations when booted in UEFI mode. @@ -38,7 +38,7 @@ changes: You may want to look at the options starting with - and + and as well. diff --git a/nixos/modules/installer/tools/nixos-generate-config.pl b/nixos/modules/installer/tools/nixos-generate-config.pl index ca7fb71ba9b8..5e576367eb2f 100644 --- a/nixos/modules/installer/tools/nixos-generate-config.pl +++ b/nixos/modules/installer/tools/nixos-generate-config.pl @@ -518,8 +518,8 @@ if ($showHardwareConfig) { my $bootLoaderConfig = ""; if (-e "/sys/firmware/efi/efivars") { $bootLoaderConfig = < "vm-state-machine/machine.qcow2", hdaInterface => "${iface}", '' - + optionalString (bootLoader == "gummiboot") ''bios => "${pkgs.OVMF}/FV/OVMF.fd", ''; + + optionalString (bootLoader == "systemd-boot") ''bios => "${pkgs.OVMF}/FV/OVMF.fd", ''; in '' $machine->start; @@ -159,7 +159,7 @@ let makeInstallerTest = name: { createPartitions, preBootCommands ? "", extraConfig ? "" - , bootLoader ? "grub" # either "grub" or "gummiboot" + , bootLoader ? "grub" # either "grub" or "systemd-boot" , grubVersion ? 2, grubDevice ? "/dev/vda", grubIdentifier ? "uuid" , enableOCR ? false, meta ? {} }: @@ -195,7 +195,7 @@ let virtualisation.qemu.diskInterface = if grubVersion == 1 then "scsi" else "virtio"; - boot.loader.gummiboot.enable = mkIf (bootLoader == "gummiboot") true; + boot.loader.systemd-boot.enable = mkIf (bootLoader == "systemd-boot") true; hardware.enableAllFirmware = mkForce false; @@ -249,7 +249,7 @@ in { ''; }; - # Simple GPT/UEFI configuration using Gummiboot with 3 partitions: ESP, swap & root filesystem + # Simple GPT/UEFI configuration using systemd-boot with 3 partitions: ESP, swap & root filesystem simpleUefiGummiboot = makeInstallerTest "simpleUefiGummiboot" { createPartitions = '' @@ -269,7 +269,7 @@ in { "mount LABEL=BOOT /mnt/boot", ); ''; - bootLoader = "gummiboot"; + bootLoader = "systemd-boot"; }; # Same as the previous, but now with a separate /boot partition. From e8ad22be127b3d4b548c2138221b0e446ed298b2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 1 Jun 2016 12:54:03 +0200 Subject: [PATCH 147/520] Rename gummiboot module --- nixos/modules/module-list.nix | 2 +- .../systemd-boot-builder.py} | 0 .../{gummiboot/gummiboot.nix => systemd-boot/systemd-boot.nix} | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename nixos/modules/system/boot/loader/{gummiboot/gummiboot-builder.py => systemd-boot/systemd-boot-builder.py} (100%) rename nixos/modules/system/boot/loader/{gummiboot/gummiboot.nix => systemd-boot/systemd-boot.nix} (97%) diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index 3944d7114c0b..f3e9cd75a950 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -505,10 +505,10 @@ ./system/boot/loader/grub/grub.nix ./system/boot/loader/grub/ipxe.nix ./system/boot/loader/grub/memtest.nix - ./system/boot/loader/gummiboot/gummiboot.nix ./system/boot/loader/init-script/init-script.nix ./system/boot/loader/loader.nix ./system/boot/loader/raspberrypi/raspberrypi.nix + ./system/boot/loader/systemd-boot/systemd-boot.nix ./system/boot/luksroot.nix ./system/boot/modprobe.nix ./system/boot/networkd.nix diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py similarity index 100% rename from nixos/modules/system/boot/loader/gummiboot/gummiboot-builder.py rename to nixos/modules/system/boot/loader/systemd-boot/systemd-boot-builder.py diff --git a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix similarity index 97% rename from nixos/modules/system/boot/loader/gummiboot/gummiboot.nix rename to nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix index 3a43a02228dd..a778a4f539c9 100644 --- a/nixos/modules/system/boot/loader/gummiboot/gummiboot.nix +++ b/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix @@ -8,7 +8,7 @@ let efi = config.boot.loader.efi; gummibootBuilder = pkgs.substituteAll { - src = ./gummiboot-builder.py; + src = ./systemd-boot-builder.py; isExecutable = true; From f5471374250ccc2d0f94dd130fd113beb593725e Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Wed, 1 Jun 2016 13:25:58 +0200 Subject: [PATCH 148/520] webkitgtk: 2.12.0 -> 2.12.3 (#15847) --- pkgs/development/libraries/webkitgtk/2.12.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/webkitgtk/2.12.nix b/pkgs/development/libraries/webkitgtk/2.12.nix index 313f67b1b6ac..93a6375e345b 100644 --- a/pkgs/development/libraries/webkitgtk/2.12.nix +++ b/pkgs/development/libraries/webkitgtk/2.12.nix @@ -11,7 +11,7 @@ assert enableGeoLocation -> geoclue2 != null; with stdenv.lib; stdenv.mkDerivation rec { name = "webkitgtk-${version}"; - version = "2.12.0"; + version = "2.12.3"; meta = { description = "Web content rendering engine, GTK+ port"; @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "http://webkitgtk.org/releases/${name}.tar.xz"; - sha256 = "19jyvyw8ss4bacq3f7ybdb0r16r84q12j2bpciyj9jqvzpw091m6"; + sha256 = "01y34v62khf03w25fnzgd42rrai5mf1m95lr5vjyw8ya5sdbng0p"; }; patches = [ ./finding-harfbuzz-icu.patch ]; From 4c730e3e82dcfbb0e1ae7b2d26fe81c624b02ffc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Wed, 1 Jun 2016 08:26:40 -0300 Subject: [PATCH 149/520] uget: 2.0.5 -> 2.0.8 --- pkgs/tools/networking/uget/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/uget/default.nix b/pkgs/tools/networking/uget/default.nix index 28d3f2c16336..2408337d819e 100644 --- a/pkgs/tools/networking/uget/default.nix +++ b/pkgs/tools/networking/uget/default.nix @@ -3,11 +3,11 @@ stdenv.mkDerivation rec { name = "uget-${version}"; - version = "2.0.5"; + version = "2.0.8"; src = fetchurl { url = "mirror://sourceforge/urlget/${name}.tar.gz"; - sha256 = "0cqz8cd8dyciam07w6ipgzj52zhf9q0zvg6ag6wz481sxkpdnfh3"; + sha256 = "0919cf7lfk1djdl003cahqjvafdliv7v2l8r5wg95n4isqggdk75"; }; nativeBuildInputs = [ pkgconfig intltool makeWrapper ]; From d423a36aa53c3ba261b0e1c9583706b8598cd774 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 1 Jun 2016 07:02:47 -0500 Subject: [PATCH 150/520] Revert "qt56.qtbase: apply CMake setup-hook fix locally" This reverts commit 6b6f067397db8b9a3a051ad6616206871acf098c. --- .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 15 +-------------- 1 file changed, 1 insertion(+), 14 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 8f86de93449d..0e73e0d31ebf 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 @@ -141,17 +141,4 @@ _qtLinkAllModules() { done } -_qtFixCMake() { - for flag in $NIX_CFLAGS_COMPILE $NIX_LDFLAGS; do - case $flag in - -L*) - CMAKE_INSTALL_RPATH="$CMAKE_INSTALL_RPATH${CMAKE_INSTALL_RPATH:+:}${flag:2}" - ;; - esac - done - cmakeFlags="-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE $cmakeFlags" - cmakeFlags="-DCMAKE_INSTALL_RPATH_USE_LINK_PATH=FALSE $cmakeFlags" - cmakeFlags="-DCMAKE_INSTALL_RPATH=$CMAKE_INSTALL_RPATH $cmakeFlags" -} - -preConfigureHooks+=(_qtLinkAllModules _qtFixCMake) +preConfigureHooks+=(_qtLinkAllModules) From ddaebefb1215d93c081d13edb50b261c22ba880c Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 1 Jun 2016 08:14:51 -0500 Subject: [PATCH 151/520] Revert "extra-cmake-modules: don't change the RPATH settings" This reverts commit 94fcfc9c419251046efebd477f5f6efa123ae581. --- .../kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh index 205aa0ea4f11..49ac5d0c8b5f 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh @@ -29,7 +29,6 @@ _ecmPropagateSharedData() { _ecmConfig() { # Because we need to use absolute paths here, we must set *all* the paths. - cmakeFlags+=" -DKDE_SKIP_RPATH_SETTINGS=TRUE" cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" cmakeFlags+=" -DKDE_INSTALL_BINDIR=${!outputBin}/bin" cmakeFlags+=" -DKDE_INSTALL_SBINDIR=${!outputBin}/sbin" From 9b0a5ced139e358a2c362b4f934272db3073826d Mon Sep 17 00:00:00 2001 From: Nahum Shalman Date: Wed, 1 Jun 2016 13:26:14 +0000 Subject: [PATCH 152/520] stage2: if no /proc, also mount /sys --- nixos/modules/system/boot/stage-2-init.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/system/boot/stage-2-init.sh b/nixos/modules/system/boot/stage-2-init.sh index 1b5b22c2005a..4a7f073ea8ad 100644 --- a/nixos/modules/system/boot/stage-2-init.sh +++ b/nixos/modules/system/boot/stage-2-init.sh @@ -41,6 +41,8 @@ if [ ! -e /proc/1 ]; then mount -n -t proc proc /proc mkdir -m 0755 -p /dev mount -t devtmpfs devtmpfs /dev + mkdir -m 0755 -p /sys + mount -t sysfs sysfs /sys fi From 5f8d14546b6a5a5df8a4768833497a674083dd8e Mon Sep 17 00:00:00 2001 From: Wilhelm Schuster Date: Wed, 1 Jun 2016 16:23:32 +0200 Subject: [PATCH 153/520] Manual: Explicitly mark commands that require to be run as root (#15589) * manual: Mark commands that require root Mark every command that requires to be run as root by prefixing them with '#' instead of '$'. * manual: Add note about commands that require root --- .../manual/administration/cleaning-store.xml | 4 +- .../administration/container-networking.xml | 4 +- .../administration/imperative-containers.xml | 24 ++++++------ .../administration/maintenance-mode.xml | 4 +- .../administration/network-problems.xml | 4 +- nixos/doc/manual/administration/rebooting.xml | 8 ++-- nixos/doc/manual/administration/rollback.xml | 8 ++-- .../manual/administration/service-mgmt.xml | 6 +-- .../administration/store-corruption.xml | 6 +-- .../manual/administration/user-sessions.xml | 4 +- .../configuration/adding-custom-packages.xml | 2 +- .../doc/manual/configuration/linux-kernel.xml | 2 +- .../configuration/luks-file-systems.xml | 6 +-- nixos/doc/manual/configuration/user-mgmt.xml | 8 ++-- nixos/doc/manual/configuration/wireless.xml | 4 +- nixos/doc/manual/configuration/x-windows.xml | 4 +- .../doc/manual/development/building-nixos.xml | 4 +- .../doc/manual/development/building-parts.xml | 6 +-- nixos/doc/manual/development/sources.xml | 2 +- .../manual/development/testing-installer.xml | 8 ++-- .../manual/installation/changing-config.xml | 8 ++-- .../manual/installation/installing-uefi.xml | 2 +- nixos/doc/manual/installation/installing.xml | 38 +++++++++---------- nixos/doc/manual/installation/upgrading.xml | 12 +++--- nixos/doc/manual/man-configuration.xml | 4 +- nixos/doc/manual/man-nixos-build-vms.xml | 8 ++-- nixos/doc/manual/man-nixos-option.xml | 4 +- nixos/doc/manual/manual.xml | 5 ++- 28 files changed, 101 insertions(+), 98 deletions(-) diff --git a/nixos/doc/manual/administration/cleaning-store.xml b/nixos/doc/manual/administration/cleaning-store.xml index 41dc65795b68..4cf62947f528 100644 --- a/nixos/doc/manual/administration/cleaning-store.xml +++ b/nixos/doc/manual/administration/cleaning-store.xml @@ -21,7 +21,7 @@ Alternatively, you can use a systemd unit that does the same in the background: -$ systemctl start nix-gc.service +# systemctl start nix-gc.service You can tell NixOS in configuration.nix to run @@ -59,4 +59,4 @@ $ nix-store --optimise Since this command needs to read the entire Nix store, it can take quite a while to finish. - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/container-networking.xml b/nixos/doc/manual/administration/container-networking.xml index adea3e69840d..1b1576d3babe 100644 --- a/nixos/doc/manual/administration/container-networking.xml +++ b/nixos/doc/manual/administration/container-networking.xml @@ -13,7 +13,7 @@ create, it gets it own private IPv4 address in the range address as follows: -$ nixos-container show-ip foo +# nixos-container show-ip foo 10.233.4.2 $ ping -c1 10.233.4.2 @@ -47,4 +47,4 @@ where eth0 should be replaced with the desired external interface. Note that ve-+ is a wildcard that matches all container interfaces. - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/imperative-containers.xml b/nixos/doc/manual/administration/imperative-containers.xml index 6131d4e04ea8..3a52658436ac 100644 --- a/nixos/doc/manual/administration/imperative-containers.xml +++ b/nixos/doc/manual/administration/imperative-containers.xml @@ -11,7 +11,7 @@ identifier foo as follows: -$ nixos-container create foo +# nixos-container create foo This creates the container’s root directory in @@ -25,7 +25,7 @@ line. For instance, to create a container that has root: -$ nixos-container create foo --config 'services.openssh.enable = true; \ +# nixos-container create foo --config 'services.openssh.enable = true; \ users.extraUsers.root.openssh.authorizedKeys.keys = ["ssh-dss AAAAB3N…"];' @@ -35,7 +35,7 @@ $ nixos-container create foo --config 'services.openssh.enable = true; \ run: -$ nixos-container start foo +# nixos-container start foo This command will return as soon as the container has booted and has @@ -46,7 +46,7 @@ Thus, if something went wrong, you can get status info using systemctl: -$ systemctl status container@foo +# systemctl status container@foo @@ -55,7 +55,7 @@ $ systemctl status container@foo root using the root-login operation: -$ nixos-container root-login foo +# nixos-container root-login foo [root@foo:~]# @@ -65,7 +65,7 @@ authentication). You can also get a regular login prompt using the the host: -$ nixos-container login foo +# nixos-container login foo foo login: alice Password: *** @@ -74,7 +74,7 @@ With nixos-container run, you can execute arbitrary commands in the container: -$ nixos-container run foo -- uname -a +# nixos-container run foo -- uname -a Linux foo 3.4.82 #1-NixOS SMP Thu Mar 20 14:44:05 UTC 2014 x86_64 GNU/Linux @@ -86,17 +86,17 @@ container. First, on the host, you can edit and run -$ nixos-container update foo +# nixos-container update foo This will build and activate the new configuration. You can also specify a new configuration on the command line: -$ nixos-container update foo --config 'services.httpd.enable = true; \ +# nixos-container update foo --config 'services.httpd.enable = true; \ services.httpd.adminAddr = "foo@example.org";' -$ curl http://$(nixos-container show-ip foo)/ +# curl http://$(nixos-container show-ip foo)/ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">… @@ -116,9 +116,9 @@ start, respectively, or by using destroy a container, including its file system, do -$ nixos-container destroy foo +# nixos-container destroy foo - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/maintenance-mode.xml b/nixos/doc/manual/administration/maintenance-mode.xml index 15c1f902da79..17a1609e5579 100644 --- a/nixos/doc/manual/administration/maintenance-mode.xml +++ b/nixos/doc/manual/administration/maintenance-mode.xml @@ -9,10 +9,10 @@ You can enter rescue mode by running: -$ systemctl rescue +# systemctl rescue This will eventually give you a single-user root shell. Systemd will stop (almost) all system services. To get out of maintenance mode, just exit from the rescue shell. - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/network-problems.xml b/nixos/doc/manual/administration/network-problems.xml index 3af9cc59742f..91f9eb4e22c6 100644 --- a/nixos/doc/manual/administration/network-problems.xml +++ b/nixos/doc/manual/administration/network-problems.xml @@ -18,14 +18,14 @@ You can disable the use of the binary cache by adding , e.g. -$ nixos-rebuild switch --option use-binary-caches false +# nixos-rebuild switch --option use-binary-caches false If you have an alternative binary cache at your disposal, you can use it instead: -$ nixos-rebuild switch --option binary-caches http://my-cache.example.org/ +# nixos-rebuild switch --option binary-caches http://my-cache.example.org/ diff --git a/nixos/doc/manual/administration/rebooting.xml b/nixos/doc/manual/administration/rebooting.xml index d1db7b141cf2..23f3a3219c6a 100644 --- a/nixos/doc/manual/administration/rebooting.xml +++ b/nixos/doc/manual/administration/rebooting.xml @@ -10,7 +10,7 @@ doing: -$ shutdown +# shutdown This is equivalent to running systemctl @@ -19,7 +19,7 @@ poweroff. To reboot the system, run -$ reboot +# reboot which is equivalent to systemctl reboot. @@ -28,7 +28,7 @@ Alternatively, you can quickly reboot the system using the new kernel into memory: -$ systemctl kexec +# systemctl kexec @@ -41,4 +41,4 @@ $ systemctl kexec i.e. on a virtual console or in X11; otherwise, the user is asked for authentication. - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/rollback.xml b/nixos/doc/manual/administration/rollback.xml index 23a3ece7c070..ae621f33de2c 100644 --- a/nixos/doc/manual/administration/rollback.xml +++ b/nixos/doc/manual/administration/rollback.xml @@ -19,7 +19,7 @@ fails to boot. After the system has booted, you can make the selected configuration the default for subsequent boots: -$ /run/current-system/bin/switch-to-configuration boot +# /run/current-system/bin/switch-to-configuration boot @@ -27,12 +27,12 @@ $ /run/current-system/bin/switch-to-configuration boot system: -$ nixos-rebuild switch --rollback +# nixos-rebuild switch --rollback This is equivalent to running: -$ /nix/var/nix/profiles/system-N-link/bin/switch-to-configuration switch +# /nix/var/nix/profiles/system-N-link/bin/switch-to-configuration switch where N is the number of the NixOS system configuration. To get a list of the available configurations, do: @@ -45,4 +45,4 @@ lrwxrwxrwx 1 root root 78 Aug 12 13:54 /nix/var/nix/profiles/system-268-link -> - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/service-mgmt.xml b/nixos/doc/manual/administration/service-mgmt.xml index c0940a42f307..1627c7a2fdeb 100644 --- a/nixos/doc/manual/administration/service-mgmt.xml +++ b/nixos/doc/manual/administration/service-mgmt.xml @@ -66,9 +66,9 @@ messages from the service. Units can be stopped, started or restarted: -$ systemctl stop postgresql.service -$ systemctl start postgresql.service -$ systemctl restart postgresql.service +# systemctl stop postgresql.service +# systemctl start postgresql.service +# systemctl restart postgresql.service These operations are synchronous: they wait until the service has diff --git a/nixos/doc/manual/administration/store-corruption.xml b/nixos/doc/manual/administration/store-corruption.xml index 0160cb45358b..9f567042b727 100644 --- a/nixos/doc/manual/administration/store-corruption.xml +++ b/nixos/doc/manual/administration/store-corruption.xml @@ -18,7 +18,7 @@ you may be able to fix it automatically. system configuration, you can fix it by doing -$ nixos-rebuild switch --repair +# nixos-rebuild switch --repair This will cause Nix to check every path in the closure, and if its @@ -28,10 +28,10 @@ the path is rebuilt or redownloaded. You can also scan the entire Nix store for corrupt paths: -$ nix-store --verify --check-contents --repair +# nix-store --verify --check-contents --repair Any corrupt paths will be redownloaded if they’re available in a binary cache; otherwise, they cannot be repaired. - \ No newline at end of file + diff --git a/nixos/doc/manual/administration/user-sessions.xml b/nixos/doc/manual/administration/user-sessions.xml index 05e2c1a9b29f..0a7eb8cd123c 100644 --- a/nixos/doc/manual/administration/user-sessions.xml +++ b/nixos/doc/manual/administration/user-sessions.xml @@ -45,9 +45,9 @@ track of this, you can terminate a session in a way that ensures that all the session’s processes are gone: -$ loginctl terminate-session c3 +# loginctl terminate-session c3 - \ No newline at end of file + diff --git a/nixos/doc/manual/configuration/adding-custom-packages.xml b/nixos/doc/manual/configuration/adding-custom-packages.xml index c1789fcbc041..ab3665bae504 100644 --- a/nixos/doc/manual/configuration/adding-custom-packages.xml +++ b/nixos/doc/manual/configuration/adding-custom-packages.xml @@ -31,7 +31,7 @@ and you run nixos-rebuild, specifying your own Nixpkgs tree: -$ nixos-rebuild switch -I nixpkgs=/path/to/my/nixpkgs +# nixos-rebuild switch -I nixpkgs=/path/to/my/nixpkgs diff --git a/nixos/doc/manual/configuration/linux-kernel.xml b/nixos/doc/manual/configuration/linux-kernel.xml index b008baaa66c9..52be26d6024a 100644 --- a/nixos/doc/manual/configuration/linux-kernel.xml +++ b/nixos/doc/manual/configuration/linux-kernel.xml @@ -82,7 +82,7 @@ $ nix-shell '' -A linuxPackages.kernel $ unpackPhase $ cd linux-* $ make -C $dev/lib/modules/*/build M=$(pwd)/drivers/net/ethernet/mellanox modules -$ sudo insmod ./drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko +# insmod ./drivers/net/ethernet/mellanox/mlx5/core/mlx5_core.ko ]]> diff --git a/nixos/doc/manual/configuration/luks-file-systems.xml b/nixos/doc/manual/configuration/luks-file-systems.xml index 88b506d5323d..2062456703f7 100644 --- a/nixos/doc/manual/configuration/luks-file-systems.xml +++ b/nixos/doc/manual/configuration/luks-file-systems.xml @@ -12,7 +12,7 @@ here is how you create an encrypted Ext4 file system on the device /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d: -$ cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d +# cryptsetup luksFormat /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d WARNING! ======== @@ -22,10 +22,10 @@ Are you sure? (Type uppercase yes): YES Enter LUKS passphrase: *** Verify passphrase: *** -$ cryptsetup luksOpen /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d crypted +# cryptsetup luksOpen /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d crypted Enter passphrase for /dev/disk/by-uuid/3f6b0024-3a44-4fde-a43a-767b872abe5d: *** -$ mkfs.ext4 /dev/mapper/crypted +# mkfs.ext4 /dev/mapper/crypted To ensure that this file system is automatically mounted at boot time diff --git a/nixos/doc/manual/configuration/user-mgmt.xml b/nixos/doc/manual/configuration/user-mgmt.xml index 631742059278..829e5b9ea842 100644 --- a/nixos/doc/manual/configuration/user-mgmt.xml +++ b/nixos/doc/manual/configuration/user-mgmt.xml @@ -63,14 +63,14 @@ commands such as useradd, account named alice: -$ useradd -m alice +# useradd -m alice To make all nix tools available to this new user use `su - USER` which opens a login shell (==shell that loads the profile) for given user. This will create the ~/.nix-defexpr symlink. So run: -$ su - alice -c "true" +# su - alice -c "true" The flag causes the creation of a home directory @@ -79,7 +79,7 @@ have an initial password and therefore cannot log in. A password can be set using the passwd utility: -$ passwd alice +# passwd alice Enter new UNIX password: *** Retype new UNIX password: *** @@ -87,7 +87,7 @@ Retype new UNIX password: *** A user can be deleted using userdel: -$ userdel -r alice +# userdel -r alice The flag deletes the user’s home directory. Accounts can be modified using usermod. Unix diff --git a/nixos/doc/manual/configuration/wireless.xml b/nixos/doc/manual/configuration/wireless.xml index e4560f2da36b..1868380dcbfa 100644 --- a/nixos/doc/manual/configuration/wireless.xml +++ b/nixos/doc/manual/configuration/wireless.xml @@ -41,13 +41,13 @@ If you are using WPA2 the wpa_passphrase tool might be useful to generate the wpa_supplicant.conf. -$ wpa_passphrase ESSID PSK > /etc/wpa_supplicant.conf +# wpa_passphrase ESSID PSK > /etc/wpa_supplicant.conf After you have edited the wpa_supplicant.conf, you need to restart the wpa_supplicant service. -$ systemctl restart wpa_supplicant.service +# systemctl restart wpa_supplicant.service diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index 7f43acab2c38..0405146ab0fa 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -5,7 +5,7 @@ xml:id="sec-x11"> X Window System - + The X Window System (X11) provides the basis of NixOS’ graphical user interface. It can be enabled as follows: @@ -48,7 +48,7 @@ services.xserver.autorun = false; The X server can then be started manually: -$ systemctl start display-manager.service +# systemctl start display-manager.service diff --git a/nixos/doc/manual/development/building-nixos.xml b/nixos/doc/manual/development/building-nixos.xml index 21c5bfe6a5b1..150fa1d7017e 100644 --- a/nixos/doc/manual/development/building-nixos.xml +++ b/nixos/doc/manual/development/building-nixos.xml @@ -25,8 +25,8 @@ $ nix-build -A config.system.build.isoImage -I nixos-config=modules/installer/cd suggested by the following command: -$ mount -o loop -t iso9660 ./result/iso/cd.iso /mnt/iso +# mount -o loop -t iso9660 ./result/iso/cd.iso /mnt/iso - \ No newline at end of file + diff --git a/nixos/doc/manual/development/building-parts.xml b/nixos/doc/manual/development/building-parts.xml index cb8dee039c8e..09a40114f02e 100644 --- a/nixos/doc/manual/development/building-parts.xml +++ b/nixos/doc/manual/development/building-parts.xml @@ -94,8 +94,8 @@ $ nix-build -A 'config.systemd.units."httpd.service".unit' $ cp $(nix-build -A 'config.systemd.units."httpd.service".unit')/httpd.service \ /run/systemd/system/tmp-httpd.service -$ systemctl daemon-reload -$ systemctl start tmp-httpd.service +# systemctl daemon-reload +# systemctl start tmp-httpd.service Note that the unit must not have the same name as any unit in @@ -110,4 +110,4 @@ $ systemctl start tmp-httpd.service - \ No newline at end of file + diff --git a/nixos/doc/manual/development/sources.xml b/nixos/doc/manual/development/sources.xml index fd0b0109b322..7cd5ce0002c2 100644 --- a/nixos/doc/manual/development/sources.xml +++ b/nixos/doc/manual/development/sources.xml @@ -70,7 +70,7 @@ sources, you need to tell nixos-rebuild about them using the flag: -$ nixos-rebuild switch -I nixpkgs=/my/sources/nixpkgs +# nixos-rebuild switch -I nixpkgs=/my/sources/nixpkgs diff --git a/nixos/doc/manual/development/testing-installer.xml b/nixos/doc/manual/development/testing-installer.xml index 87e40e326171..20c8d51815ad 100644 --- a/nixos/doc/manual/development/testing-installer.xml +++ b/nixos/doc/manual/development/testing-installer.xml @@ -12,16 +12,16 @@ properly: $ nix-build -A config.system.build.nixos-install -$ mount -t tmpfs none /mnt -$ ./result/bin/nixos-install +# mount -t tmpfs none /mnt +# ./result/bin/nixos-install To start a login shell in the new NixOS installation in /mnt: -$ ./result/bin/nixos-install --chroot +# ./result/bin/nixos-install --chroot - \ No newline at end of file + diff --git a/nixos/doc/manual/installation/changing-config.xml b/nixos/doc/manual/installation/changing-config.xml index aa31742434e4..43b591a1cae9 100644 --- a/nixos/doc/manual/installation/changing-config.xml +++ b/nixos/doc/manual/installation/changing-config.xml @@ -10,7 +10,7 @@ contains the current configuration of your machine. Whenever you’ve changed something to that file, you should do -$ nixos-rebuild switch +# nixos-rebuild switch to build the new configuration, make it the default configuration for booting, and try to realise the configuration in the running system @@ -23,7 +23,7 @@ either run them from a root shell or by prefixing them with You can also do -$ nixos-rebuild test +# nixos-rebuild test to build the configuration and switch the running system to it, but without making it the boot default. So if (say) the configuration @@ -33,7 +33,7 @@ configuration. There is also -$ nixos-rebuild boot +# nixos-rebuild boot to build the configuration and make it the boot default, but not switch to it now (so it will only take effect after the next @@ -44,7 +44,7 @@ of the GRUB 2 boot screen by giving it a different profile name, e.g. -$ nixos-rebuild switch -p test +# nixos-rebuild switch -p test which causes the new configuration (and previous ones created using -p test) to show up in the GRUB submenu “NixOS - diff --git a/nixos/doc/manual/installation/installing-uefi.xml b/nixos/doc/manual/installation/installing-uefi.xml index 1cb431129448..927648febc50 100644 --- a/nixos/doc/manual/installation/installing-uefi.xml +++ b/nixos/doc/manual/installation/installing-uefi.xml @@ -5,7 +5,7 @@ xml:id="sec-uefi-installation"> UEFI Installation - + NixOS can also be installed on UEFI systems. The procedure is by and large the same as a BIOS installation, with the following changes: diff --git a/nixos/doc/manual/installation/installing.xml b/nixos/doc/manual/installation/installing.xml index 3e53062c3e84..2f118d27b1a5 100644 --- a/nixos/doc/manual/installation/installing.xml +++ b/nixos/doc/manual/installation/installing.xml @@ -54,7 +54,7 @@ changes. For example: -$ mkfs.ext4 -L nixos /dev/sda1 +# mkfs.ext4 -L nixos /dev/sda1 @@ -66,10 +66,10 @@ $ mkfs.ext4 -L nixos /dev/sda1 For creating LVM volumes, the LVM commands, e.g., -$ pvcreate /dev/sda1 /dev/sdb1 -$ vgcreate MyVolGroup /dev/sda1 /dev/sdb1 -$ lvcreate --size 2G --name bigdisk MyVolGroup -$ lvcreate --size 1G --name smalldisk MyVolGroup +# pvcreate /dev/sda1 /dev/sdb1 +# vgcreate MyVolGroup /dev/sda1 /dev/sdb1 +# lvcreate --size 2G --name bigdisk MyVolGroup +# lvcreate --size 1G --name smalldisk MyVolGroup @@ -84,7 +84,7 @@ $ lvcreate --size 1G --name smalldisk MyVolGroup be installed on /mnt, e.g. -$ mount /dev/disk/by-label/nixos /mnt +# mount /dev/disk/by-label/nixos /mnt @@ -113,14 +113,14 @@ $ mount /dev/disk/by-label/nixos /mnt generate an initial configuration file for you: -$ nixos-generate-config --root /mnt +# nixos-generate-config --root /mnt You should then edit /mnt/etc/nixos/configuration.nix to suit your needs: -$ nano /mnt/etc/nixos/configuration.nix +# nano /mnt/etc/nixos/configuration.nix If you’re using the graphical ISO image, other editors may be @@ -162,7 +162,7 @@ $ nano /mnt/etc/nixos/configuration.nix Do the installation: -$ nixos-install +# nixos-install Cross fingers. If this fails due to a temporary problem (such as a network issue while downloading binaries from the NixOS binary @@ -186,7 +186,7 @@ Retype new UNIX password: *** If everything went well: -$ reboot +# reboot @@ -235,15 +235,15 @@ drive (here /dev/sda). Commands for Installing NixOS on <filename>/dev/sda</filename> -$ fdisk /dev/sda # (or whatever device you want to install on) -$ mkfs.ext4 -L nixos /dev/sda1 -$ mkswap -L swap /dev/sda2 -$ swapon /dev/sda2 -$ mount /dev/disk/by-label/nixos /mnt -$ nixos-generate-config --root /mnt -$ nano /mnt/etc/nixos/configuration.nix -$ nixos-install -$ reboot +# fdisk /dev/sda # (or whatever device you want to install on) +# mkfs.ext4 -L nixos /dev/sda1 +# mkswap -L swap /dev/sda2 +# swapon /dev/sda2 +# mount /dev/disk/by-label/nixos /mnt +# nixos-generate-config --root /mnt +# nano /mnt/etc/nixos/configuration.nix +# nixos-install +# reboot NixOS Configuration diff --git a/nixos/doc/manual/installation/upgrading.xml b/nixos/doc/manual/installation/upgrading.xml index c4812cc637c3..65d395b0c88e 100644 --- a/nixos/doc/manual/installation/upgrading.xml +++ b/nixos/doc/manual/installation/upgrading.xml @@ -60,33 +60,33 @@ the nixos-14.12 channel. To see which NixOS channel you’re subscribed to, run the following as root: -$ nix-channel --list | grep nixos +# nix-channel --list | grep nixos nixos https://nixos.org/channels/nixos-unstable To switch to a different NixOS channel, do -$ nix-channel --add https://nixos.org/channels/channel-name nixos +# nix-channel --add https://nixos.org/channels/channel-name nixos (Be sure to include the nixos parameter at the end.) For instance, to use the NixOS 14.12 stable channel: -$ nix-channel --add https://nixos.org/channels/nixos-14.12 nixos +# nix-channel --add https://nixos.org/channels/nixos-14.12 nixos If you have a server, you may want to use the “small” channel instead: -$ nix-channel --add https://nixos.org/channels/nixos-14.12-small nixos +# nix-channel --add https://nixos.org/channels/nixos-14.12-small nixos And if you want to live on the bleeding edge: -$ nix-channel --add https://nixos.org/channels/nixos-unstable nixos +# nix-channel --add https://nixos.org/channels/nixos-unstable nixos @@ -95,7 +95,7 @@ $ nix-channel --add https://nixos.org/channels/nixos-unstable nixos channel by running -$ nixos-rebuild switch --upgrade +# nixos-rebuild switch --upgrade which is equivalent to the more verbose nix-channel --update diff --git a/nixos/doc/manual/man-configuration.xml b/nixos/doc/manual/man-configuration.xml index d49369d2c584..05531b3909a3 100644 --- a/nixos/doc/manual/man-configuration.xml +++ b/nixos/doc/manual/man-configuration.xml @@ -1,7 +1,7 @@ - + configuration.nix 5 @@ -34,5 +34,5 @@ therein. - + diff --git a/nixos/doc/manual/man-nixos-build-vms.xml b/nixos/doc/manual/man-nixos-build-vms.xml index f37677629d0c..878ebee05273 100644 --- a/nixos/doc/manual/man-nixos-build-vms.xml +++ b/nixos/doc/manual/man-nixos-build-vms.xml @@ -1,7 +1,7 @@ - + nixos-build-vms 8 @@ -42,10 +42,10 @@ points to the generated virtual network. services.openssh.enable = true; nixpkgs.system = "i686-linux"; deployment.targetHost = "test1.example.net"; - + # Other NixOS options }; - + test2 = {pkgs, config, ...}: { services.openssh.enable = true; @@ -53,7 +53,7 @@ points to the generated virtual network. environment.systemPackages = [ pkgs.lynx ]; nixpkgs.system = "x86_64-linux"; deployment.targetHost = "test2.example.net"; - + # Other NixOS options }; } diff --git a/nixos/doc/manual/man-nixos-option.xml b/nixos/doc/manual/man-nixos-option.xml index 2875336c67e5..6be8bc780f13 100644 --- a/nixos/doc/manual/man-nixos-option.xml +++ b/nixos/doc/manual/man-nixos-option.xml @@ -1,7 +1,7 @@ - + nixos-option 8 @@ -64,7 +64,7 @@ $ nixos-option boot.loader.grub.enable Value: true -Default: +Default: true Description: diff --git a/nixos/doc/manual/manual.xml b/nixos/doc/manual/manual.xml index 736d1d4eff71..42b2cf75a77a 100644 --- a/nixos/doc/manual/manual.xml +++ b/nixos/doc/manual/manual.xml @@ -3,7 +3,7 @@ xmlns:xi="http://www.w3.org/2001/XInclude" version="5.0" xml:id="book-nixos-manual"> - + NixOS Manual Version @@ -26,6 +26,9 @@ xlink:href="https://github.com/NixOS/nixpkgs/issues">NixOS’ GitHub issue tracker. + Commands prefixed with # have to be run as + root, either requiring to login as root user or temporarily switching + to it using sudo for example. From b2df0a10d97ef0a3ea2f1e2858df971d41f683cb Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 1 Jun 2016 09:35:39 -0500 Subject: [PATCH 154/520] qt56.qtbase: patch CMake module paths --- .../qt-5/5.6/qtbase/cmake-paths.patch | 321 ++++++++++++++++++ .../libraries/qt-5/5.6/qtbase/default.nix | 8 + .../libraries/qt-5/5.6/qtbase/series | 1 + .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 12 + 4 files changed, 342 insertions(+) create mode 100644 pkgs/development/libraries/qt-5/5.6/qtbase/cmake-paths.patch diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/cmake-paths.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/cmake-paths.patch new file mode 100644 index 000000000000..e37b3ad837af --- /dev/null +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/cmake-paths.patch @@ -0,0 +1,321 @@ +Index: qt-everywhere-opensource-src-5.6.0/qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/mkspecs/features/data/cmake/Qt5BasicConfig.cmake.in +@@ -9,30 +9,6 @@ if (CMAKE_VERSION VERSION_LESS 3.0.0) + endif() + !!ENDIF + +-!!IF !isEmpty(CMAKE_USR_MOVE_WORKAROUND) +-!!IF !isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +-set(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$[QT_INSTALL_PREFIX]\") +-!!ELSE +-get_filename_component(_IMPORT_PREFIX \"${CMAKE_CURRENT_LIST_FILE}\" PATH) +-# Use original install prefix when loaded through a +-# cross-prefix symbolic link such as /lib -> /usr/lib. +-get_filename_component(_realCurr \"${_IMPORT_PREFIX}\" REALPATH) +-get_filename_component(_realOrig \"$$CMAKE_INSTALL_LIBS_DIR/cmake/Qt5$${CMAKE_MODULE_NAME}\" REALPATH) +-if(_realCurr STREQUAL _realOrig) +- get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$CMAKE_INSTALL_LIBS_DIR/$${CMAKE_RELATIVE_INSTALL_LIBS_DIR}\" ABSOLUTE) +-else() +- get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"${CMAKE_CURRENT_LIST_DIR}/$${CMAKE_RELATIVE_INSTALL_DIR}\" ABSOLUTE) +-endif() +-unset(_realOrig) +-unset(_realCurr) +-unset(_IMPORT_PREFIX) +-!!ENDIF +-!!ELIF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +-get_filename_component(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"${CMAKE_CURRENT_LIST_DIR}/$${CMAKE_RELATIVE_INSTALL_DIR}\" ABSOLUTE) +-!!ELSE +-set(_qt5$${CMAKE_MODULE_NAME}_install_prefix \"$$[QT_INSTALL_PREFIX]\") +-!!ENDIF +- + !!IF !equals(TEMPLATE, aux) + # For backwards compatibility only. Use Qt5$${CMAKE_MODULE_NAME}_VERSION instead. + set(Qt5$${CMAKE_MODULE_NAME}_VERSION_STRING "$$eval(QT.$${MODULE}.MAJOR_VERSION).$$eval(QT.$${MODULE}.MINOR_VERSION).$$eval(QT.$${MODULE}.PATCH_VERSION)") +@@ -59,7 +35,10 @@ macro(_populate_$${CMAKE_MODULE_NAME}_ta + set_property(TARGET Qt5::$${CMAKE_MODULE_NAME} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) + + !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}${LIB_LOCATION}\") ++ set(imported_location \"@NIX_OUT@/$${CMAKE_DLL_DIR}${LIB_LOCATION}\") ++ if(NOT EXISTS \"${imported_location}\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_DLL_DIR}${LIB_LOCATION}\") ++ endif() + !!ELSE + set(imported_location \"$${CMAKE_DLL_DIR}${LIB_LOCATION}\") + !!ENDIF +@@ -74,45 +53,18 @@ macro(_populate_$${CMAKE_MODULE_NAME}_ta + \"IMPORTED_LINK_INTERFACE_LIBRARIES_${Configuration}\" \"${_Qt5$${CMAKE_MODULE_NAME}_LIB_DEPENDENCIES}\" + ) + +-!!IF !isEmpty(CMAKE_WINDOWS_BUILD) +-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_implib \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") +-!!ELSE +- set(imported_implib \"IMPORTED_IMPLIB_${Configuration}\" \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") +-!!ENDIF +- _qt5_$${CMAKE_MODULE_NAME}_check_file_exists(${imported_implib}) +- if(NOT \"${IMPLIB_LOCATION}\" STREQUAL \"\") +- set_target_properties(Qt5::$${CMAKE_MODULE_NAME} PROPERTIES +- \"IMPORTED_IMPLIB_${Configuration}\" ${imported_implib} +- ) +- endif() +-!!ENDIF + endmacro() + !!ENDIF + + if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME}) + + !!IF !no_module_headers +-!!IF !isEmpty(CMAKE_BUILD_IS_FRAMEWORK) +- set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework\" +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Headers\" +- ) +-!!IF isEmpty(CMAKE_NO_PRIVATE_INCLUDES) +- set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/\" +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}Qt$${CMAKE_MODULE_NAME}.framework/Versions/$$section(VERSION, ., 0, 0)/Headers/$$VERSION/$${MODULE_INCNAME}\" +- ) +-!!ELSE +- set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") +-!!ENDIF +-!!ELSE + !!IF isEmpty(CMAKE_INCLUDE_DIR_IS_ABSOLUTE) +- set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$$CMAKE_INCLUDE_DIR\" \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}\") ++ set(_Qt5$${CMAKE_MODULE_NAME}_OWN_INCLUDE_DIRS \"@NIX_DEV@/$$CMAKE_INCLUDE_DIR\" \"@NIX_DEV@/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}\") + !!IF isEmpty(CMAKE_NO_PRIVATE_INCLUDES) + set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION\" +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION/$${MODULE_INCNAME}\" ++ \"@NIX_DEV@/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION\" ++ \"@NIX_DEV@/$${CMAKE_INCLUDE_DIR}$${MODULE_INCNAME}/$$VERSION/$${MODULE_INCNAME}\" + ) + !!ELSE + set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") +@@ -128,7 +80,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME + set(Qt5$${CMAKE_MODULE_NAME}_PRIVATE_INCLUDE_DIRS \"\") + !!ENDIF + !!ENDIF +-!!ENDIF ++ + !!IF !isEmpty(CMAKE_ADD_SOURCE_INCLUDE_DIRS) + include(\"${CMAKE_CURRENT_LIST_DIR}/ExtraSourceIncludes.cmake\" OPTIONAL) + !!ENDIF +@@ -253,28 +205,19 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME + + !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) + !!IF isEmpty(CMAKE_DEBUG_TYPE) +-!!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) +-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- if (EXISTS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) +-!!ELSE // CMAKE_LIB_DIR_IS_ABSOLUTE +- if (EXISTS \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) +-!!ENDIF // CMAKE_LIB_DIR_IS_ABSOLUTE +- _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" \"\" ) +-!!ELSE // CMAKE_STATIC_WINDOWS_BUILD + if (EXISTS + !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" ++ \"@NIX_OUT@/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" + !!ELSE + \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" + !!ENDIF + AND EXISTS + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) ++ \"@NIX_DEV@/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) + !!ELSE + \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) + !!ENDIF + _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) +-!!ENDIF // CMAKE_STATIC_WINDOWS_BUILD + endif() + !!ENDIF // CMAKE_DEBUG_TYPE + !!ENDIF // CMAKE_FIND_OTHER_LIBRARY_BUILD +@@ -282,36 +225,23 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME + !!ENDIF // CMAKE_RELEASE_TYPE + + !!IF !isEmpty(CMAKE_DEBUG_TYPE) +-!!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) +- _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" \"\" ) +-!!ELSE + _populate_$${CMAKE_MODULE_NAME}_target_properties(DEBUG \"$${CMAKE_LIB_FILE_LOCATION_DEBUG}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_DEBUG}\" ) +-!!ENDIF // CMAKE_STATIC_WINDOWS_BUILD + + !!IF !isEmpty(CMAKE_FIND_OTHER_LIBRARY_BUILD) + !!IF isEmpty(CMAKE_RELEASE_TYPE) +-!!IF !isEmpty(CMAKE_STATIC_WINDOWS_BUILD) +-!!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- if (EXISTS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) +-!!ELSE // CMAKE_LIB_DIR_IS_ABSOLUTE +- if (EXISTS \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) +-!!ENDIF // CMAKE_LIB_DIR_IS_ABSOLUTE +- _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" \"\" ) +-!!ELSE // CMAKE_STATIC_WINDOWS_BUILD + if (EXISTS + !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" ++ \"@NIX_OUT@/$${CMAKE_DLL_DIR}$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" + !!ELSE + \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" + !!ENDIF + AND EXISTS + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) ++ \"@NIX_DEV@/$${CMAKE_LIB_DIR}$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) + !!ELSE + \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) + !!ENDIF + _populate_$${CMAKE_MODULE_NAME}_target_properties(RELEASE \"$${CMAKE_LIB_FILE_LOCATION_RELEASE}\" \"$${CMAKE_IMPLIB_FILE_LOCATION_RELEASE}\" ) +-!!ENDIF // CMAKE_STATIC_WINDOWS_BUILD + endif() + !!ENDIF // CMAKE_RELEASE_TYPE + !!ENDIF // CMAKE_FIND_OTHER_LIBRARY_BUILD +@@ -329,7 +259,7 @@ if (NOT TARGET Qt5::$${CMAKE_MODULE_NAME + set_property(TARGET Qt5::${Plugin} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) + + !!IF isEmpty(CMAKE_PLUGIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\") ++ set(imported_location \"@NIX_OUT@/$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\") + !!ELSE + set(imported_location \"$${CMAKE_PLUGIN_DIR}${PLUGIN_LOCATION}\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/gui/Qt5GuiConfigExtras.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/gui/Qt5GuiConfigExtras.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/gui/Qt5GuiConfigExtras.cmake.in +@@ -2,7 +2,7 @@ + !!IF !isEmpty(CMAKE_ANGLE_EGL_DLL_RELEASE) + + !!IF isEmpty(CMAKE_INCLUDE_DIR_IS_ABSOLUTE) +-set(Qt5Gui_EGL_INCLUDE_DIRS \"${_qt5$${CMAKE_MODULE_NAME}_install_prefix}/$$CMAKE_INCLUDE_DIR/QtANGLE\") ++set(Qt5Gui_EGL_INCLUDE_DIRS \"@NIX_DEV@/$$CMAKE_INCLUDE_DIR/QtANGLE\") + !!ELSE + set(Qt5Gui_EGL_INCLUDE_DIRS \"$$CMAKE_INCLUDE_DIR/QtANGLE\") + !!ENDIF +@@ -17,13 +17,13 @@ macro(_populate_qt5gui_gl_target_propert + set_property(TARGET Qt5::${TargetName} APPEND PROPERTY IMPORTED_CONFIGURATIONS ${Configuration}) + + !!IF isEmpty(CMAKE_DLL_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Gui_install_prefix}/$${CMAKE_DLL_DIR}${LIB_LOCATION}\") ++ set(imported_location \"@NIX_OUT@/$${CMAKE_DLL_DIR}${LIB_LOCATION}\") + !!ELSE + set(imported_location \"$${CMAKE_DLL_DIR}${LIB_LOCATION}\") + !!ENDIF + + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_implib \"${_qt5Gui_install_prefix}/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") ++ set(imported_implib \"@NIX_DEV@/$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") + !!ELSE + set(imported_implib \"$${CMAKE_LIB_DIR}${IMPLIB_LOCATION}\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/widgets/Qt5WidgetsConfigExtras.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/widgets/Qt5WidgetsConfigExtras.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/widgets/Qt5WidgetsConfigExtras.cmake.in +@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::uic) + add_executable(Qt5::uic IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Widgets_install_prefix}/$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}uic$$CMAKE_BIN_SUFFIX\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtras.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/Qt5CoreConfigExtras.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtras.cmake.in +@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qmake) + add_executable(Qt5::qmake IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}qmake$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -18,7 +18,7 @@ if (NOT TARGET Qt5::moc) + add_executable(Qt5::moc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}moc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -35,7 +35,7 @@ if (NOT TARGET Qt5::rcc) + add_executable(Qt5::rcc IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}rcc$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -131,7 +131,7 @@ if (NOT TARGET Qt5::WinMain) + !!IF !isEmpty(CMAKE_RELEASE_TYPE) + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_RELEASE}\") + !!ENDIF +@@ -145,7 +145,7 @@ if (NOT TARGET Qt5::WinMain) + set_property(TARGET Qt5::WinMain APPEND PROPERTY IMPORTED_CONFIGURATIONS DEBUG) + + !!IF isEmpty(CMAKE_LIB_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5Core_install_prefix}/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ELSE + set(imported_location \"$${CMAKE_LIB_DIR}$${CMAKE_WINMAIN_FILE_LOCATION_DEBUG}\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDirForInstall.cmake.in +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_INSTALL_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"@NIX_DEV@/$${CMAKE_INSTALL_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_INSTALL_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/Qt5CoreConfigExtrasMkspecDir.cmake.in +@@ -1,6 +1,6 @@ + + !!IF isEmpty(CMAKE_HOST_DATA_DIR_IS_ABSOLUTE) +-set(_qt5_corelib_extra_includes \"${_qt5Core_install_prefix}/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") ++set(_qt5_corelib_extra_includes \"@NIX_DEV@/$${CMAKE_HOST_DATA_DIR}/mkspecs/$${CMAKE_MKSPEC}\") + !!ELSE + set(_qt5_corelib_extra_includes \"$${CMAKE_HOST_DATA_DIR}mkspecs/$${CMAKE_MKSPEC}\") + !!ENDIF +Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/dbus/Qt5DBusConfigExtras.cmake.in +=================================================================== +--- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/dbus/Qt5DBusConfigExtras.cmake.in ++++ qt-everywhere-opensource-src-5.6.0/qtbase/src/dbus/Qt5DBusConfigExtras.cmake.in +@@ -3,7 +3,7 @@ if (NOT TARGET Qt5::qdbuscpp2xml) + add_executable(Qt5::qdbuscpp2xml IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5DBus_install_prefix}/$${CMAKE_BIN_DIR}qdbuscpp2xml$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}qdbuscpp2xml$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}qdbuscpp2xml$$CMAKE_BIN_SUFFIX\") + !!ENDIF +@@ -18,7 +18,7 @@ if (NOT TARGET Qt5::qdbusxml2cpp) + add_executable(Qt5::qdbusxml2cpp IMPORTED) + + !!IF isEmpty(CMAKE_BIN_DIR_IS_ABSOLUTE) +- set(imported_location \"${_qt5DBus_install_prefix}/$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\") ++ set(imported_location \"@NIX_DEV@/$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\") + !!ELSE + set(imported_location \"$${CMAKE_BIN_DIR}qdbusxml2cpp$$CMAKE_BIN_SUFFIX\") + !!ENDIF diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix index cd7af6823131..c28e6fcbb390 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix @@ -211,6 +211,14 @@ stdenv.mkDerivation { # freetype-2.5.4 changed signedness of some struct fields NIX_CFLAGS_COMPILE = "-Wno-error=sign-compare"; + postInstall = '' + find "$out" -name "*.cmake" | while read file; do + substituteInPlace "$file" \ + --subst-var-by NIX_OUT "$out" \ + --subst-var-by NIX_DEV "$dev" + done + ''; + preFixup = '' # We cannot simply set these paths in configureFlags because libQtCore retains # references to the paths it was built with. diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/series b/pkgs/development/libraries/qt-5/5.6/qtbase/series index 2196d8383752..44e2d9040807 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/series +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/series @@ -7,3 +7,4 @@ xdg-config-dirs.patch nix-profiles-library-paths.patch compose-search-path.patch libressl.patch +cmake-paths.patch 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 0e73e0d31ebf..4d2119bd0bcb 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 @@ -142,3 +142,15 @@ _qtLinkAllModules() { } 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 20826c2a5df80c3f90c8a6adc9b813fb4c32376e Mon Sep 17 00:00:00 2001 From: Joel Moberg Date: Wed, 1 Jun 2016 17:05:46 +0200 Subject: [PATCH 155/520] nixos kde5: improve test IceWM is not part of KDE 5 and is now no longer part of the test. KDE 5 applications: Dolphin, System Monitor, and System Settings are started in this test. --- nixos/tests/sddm-kde5.nix | 41 ++++++++++++++++++++++++++++++--------- 1 file changed, 32 insertions(+), 9 deletions(-) diff --git a/nixos/tests/sddm-kde5.nix b/nixos/tests/sddm-kde5.nix index f97a6d12b63c..0247d267aaa4 100644 --- a/nixos/tests/sddm-kde5.nix +++ b/nixos/tests/sddm-kde5.nix @@ -1,4 +1,6 @@ -import ./make-test.nix ({ pkgs, ...} : { +import ./make-test.nix ({ pkgs, ...} : + +{ name = "sddm"; meta = with pkgs.stdenv.lib.maintainers; { maintainers = [ ttuegel ]; @@ -6,6 +8,7 @@ import ./make-test.nix ({ pkgs, ...} : { machine = { lib, ... }: { imports = [ ./common/user-account.nix ]; + virtualisation.memorySize = 1024; services.xserver.enable = true; services.xserver.displayManager.sddm = { enable = true; @@ -14,18 +17,38 @@ import ./make-test.nix ({ pkgs, ...} : { user = "alice"; }; }; - services.xserver.windowManager.default = "icewm"; - services.xserver.windowManager.icewm.enable = true; - services.xserver.desktopManager.default = "none"; services.xserver.desktopManager.kde5.enable = true; }; enableOCR = true; - testScript = { nodes, ... }: '' - startAll; - $machine->waitForFile("/home/alice/.Xauthority"); - $machine->succeed("xauth merge ~alice/.Xauthority"); - $machine->waitForWindow("^IceWM "); + testScript = { nodes, ... }: + let xdo = "${pkgs.xdotool}/bin/xdotool"; in + '' + sub krunner { + my ($win,) = @_; + $machine->execute("${xdo} key Alt+F2 sleep 1 type $win"); + $machine->execute("${xdo} search --sync --onlyvisible --class krunner sleep 5 key Return"); + } + + $machine->waitUntilSucceeds("pgrep plasmashell"); + $machine->succeed("xauth merge ~alice/.Xauthority"); + $machine->waitForWindow(qr/Desktop.*/); + + # Check that logging in has given the user ownership of devices. + $machine->succeed("getfacl /dev/snd/timer | grep -q alice"); + + krunner("dolphin"); + $machine->waitForWindow(qr/.*Dolphin/); + + krunner("konsole"); + $machine->waitForWindow(qr/.*Konsole/); + + krunner("systemsettings5"); + $machine->waitForWindow(qr/.*Settings/); + $machine->sleep(20); + + $machine->execute("${xdo} key Alt+F1 sleep 10"); + $machine->screenshot("screen"); ''; }) From 1177d734e48a845a84ac2d30782bc3581e34c551 Mon Sep 17 00:00:00 2001 From: Alexey Shmalko Date: Wed, 1 Jun 2016 18:57:25 +0300 Subject: [PATCH 156/520] cpputest: 3.7.2 -> 3.8 --- pkgs/development/libraries/cpputest/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/cpputest/default.nix b/pkgs/development/libraries/cpputest/default.nix index 6494a0428e0a..56154c060d1e 100644 --- a/pkgs/development/libraries/cpputest/default.nix +++ b/pkgs/development/libraries/cpputest/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - version = "3.7.2"; + version = "3.8"; name = "cpputest-${version}"; src = fetchurl { - url = "https://github.com/cpputest/cpputest/releases/download/${version}/${name}.tar.gz"; - sha256 = "0lwn226d8mrppdyzcvr08vsnnp6h0mpy5kz5a475ish87az00pcc"; + url = "https://github.com/cpputest/cpputest/releases/download/v${version}/${name}.tar.gz"; + sha256 = "0mk48xd3klyqi7wf3f4wn4zqxxzmvrhhl32r25jzrixzl72wq7f8"; }; meta = { From bc9be9425a841b8f5d128d68d607f1177e8e58b1 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 19:52:10 +0200 Subject: [PATCH 157/520] pythonPackages.llvmlite: 0.8.0 -> 0.11.0 --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 47657b379f2c..d99071dba2cc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11991,16 +11991,16 @@ in modules // { llvmlite = buildPythonPackage rec { name = "llvmlite-${version}"; - version = "0.8.0"; + version = "0.11.0"; disabled = isPyPy; src = pkgs.fetchurl { url = "mirror://pypi/l/llvmlite/${name}.tar.gz"; - sha256 = "a10d8d5e597c6a54ec418baddd31a51a0b7937a895d75b240d890aead946081c"; + sha256 = "1gc2yd4j855fb16nb341lm4z3hd4j40lhswqv116xlg4p5dyxkwk"; }; - llvm = pkgs.llvm_36; + llvm = pkgs.llvm_37; propagatedBuildInputs = with self; [ llvm ] ++ optional (pythonOlder "3.4") enum34; @@ -12008,6 +12008,8 @@ in modules // { # https://github.com/numba/llvmlite/issues/93 patchPhase = '' substituteInPlace ffi/Makefile.linux --replace "-static-libstdc++" "" + + substituteInPlace llvmlite/tests/test_binding.py --replace "test_linux" "nope" ''; # Set directory containing llvm-config binary preConfigure = '' From 5d4e360086497385d676704e2b64a3903b637d53 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 19:53:01 +0200 Subject: [PATCH 158/520] pythonPackages.numba: 0.23.1 -> 0.26.0 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index d99071dba2cc..7c213e472deb 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -13846,12 +13846,12 @@ in modules // { }; numba = buildPythonPackage rec { - version = "0.23.1"; + version = "0.26.0"; name = "numba-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/n/numba/${name}.tar.gz"; - sha256 = "80ce9968591db7c93e36258cc5e6734eb1e42826332799746dc6c073a6d5d317"; + sha256 = "1ai06ks2ly6wcw2fpljmmyr41y9jidds8qingyih8cbq37fpym44"; }; NIX_CFLAGS_COMPILE = stdenv.lib.optionalString stdenv.isDarwin "-I${pkgs.libcxx}/include/c++/v1"; From 473782b514693cc94630088dc6d05e8043c9ee5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 1 Jun 2016 15:31:14 +0100 Subject: [PATCH 159/520] travis-ci: use --show-trace --- maintainers/scripts/travis-nox-review-pr.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index 416fd03692f8..f797352c5408 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -19,7 +19,7 @@ if [[ $1 == nix ]]; then elif [[ $1 == nox ]]; then source $HOME/.nix-profile/etc/profile.d/nix.sh echo "=== Installing nox..." - nix-build -A nox '' + nix-build -A nox '' --show-trace elif [[ $1 == build ]]; then source $HOME/.nix-profile/etc/profile.d/nix.sh @@ -27,10 +27,10 @@ elif [[ $1 == build ]]; then echo "Skipping NixOS things on darwin" else echo "=== Checking NixOS options" - nix-build nixos/release.nix -A options + nix-build nixos/release.nix -A options --show-trace echo "=== Checking tarball creation" - nix-build pkgs/top-level/release.nix -A tarball + nix-build pkgs/top-level/release.nix -A tarball --show-trace fi if [[ $TRAVIS_PULL_REQUEST == false ]]; then From 8a63f7e067a6dfa4e5c34a691aca89d1674c5b95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 1 Jun 2016 19:35:49 +0100 Subject: [PATCH 160/520] sway: 2016-02-08 -> 0.7 --- .../window-managers/sway/default.nix | 13 ++++---- pkgs/development/libraries/wlc/default.nix | 33 ++++++++----------- 2 files changed, 19 insertions(+), 27 deletions(-) diff --git a/pkgs/applications/window-managers/sway/default.nix b/pkgs/applications/window-managers/sway/default.nix index 7f494f3e0f22..81fbedc4917b 100644 --- a/pkgs/applications/window-managers/sway/default.nix +++ b/pkgs/applications/window-managers/sway/default.nix @@ -1,23 +1,22 @@ -{ stdenv, fetchFromGitHub -, makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl +{ stdenv, fetchFromGitHub, pango, libinput +, makeWrapper, cmake, pkgconfig, asciidoc, libxslt, docbook_xsl, cairo , wayland, wlc, libxkbcommon, pixman, fontconfig, pcre, json_c, dbus_libs }: stdenv.mkDerivation rec { name = "sway-${version}"; - version = "git-2016-02-08"; + version = "0.7"; src = fetchFromGitHub { owner = "Sircmpwn"; repo = "sway"; - - rev = "16e904634c65128610537bed7fcb16ac3bb45165"; - sha256 = "04qvdjaarglq3qsjbb9crjkad3y1v7s51bk82sl8w26c71jbhklg"; + rev = "0.7"; + sha256 = "05mn68brqz7j3a1sb5xd3pxzzdd8swnhw2g7cc9f7rdjr5dlrjip"; }; nativeBuildInputs = [ makeWrapper cmake pkgconfig asciidoc libxslt docbook_xsl ]; - buildInputs = [ wayland wlc libxkbcommon pixman fontconfig pcre json_c dbus_libs ]; + 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; diff --git a/pkgs/development/libraries/wlc/default.nix b/pkgs/development/libraries/wlc/default.nix index b219bd2f44d7..71cd246e7424 100644 --- a/pkgs/development/libraries/wlc/default.nix +++ b/pkgs/development/libraries/wlc/default.nix @@ -1,13 +1,11 @@ -{ lib, stdenv, fetchurl, fetchgit, cmake, pkgconfig +{ lib, stdenv, fetchurl, fetchgit, cmake, pkgconfig, fetchFromGitHub , glibc, wayland, pixman, libxkbcommon, libinput, libxcb, xcbutilwm, xcbutilimage, mesa, libdrm, udev, systemd, dbus_libs , libpthreadstubs, libX11, libXau, libXdmcp, libXext, libXdamage, libxshmfence, libXxf86vm }: stdenv.mkDerivation rec { name = "wlc-${version}"; - version = "git-2016-01-31"; - repo = "https://github.com/Cloudef/wlc"; - rev = "faa4d3cba670576c202b0844e087b13538f772c5"; + version = "v0.0.3"; chck_repo = "https://github.com/Cloudef/chck"; chck_rev = "fe5e2606b7242aa5d89af2ea9fd048821128d2bc"; @@ -17,9 +15,11 @@ stdenv.mkDerivation rec { wl_protos_rev_short = "0b05b70"; srcs = [ - (fetchurl { - url = "${repo}/archive/${rev}.tar.gz"; - sha256 = "cdf6a772dc90060d57aa1a915a4daff0f79802c141fec92ef2710245d727af67"; + (fetchFromGitHub { + owner = "Cloudef"; + repo = "wlc"; + rev = version; + sha256 = "0l29axg4y7qjd5hf3kgf38hkjykb4mcsjkba0zdm583kkjzdzkb2"; }) (fetchurl { url = "${chck_repo}/archive/${chck_rev}.tar.gz"; @@ -31,20 +31,13 @@ stdenv.mkDerivation rec { sha256 = "9c1cfbb570142b2109ecef4d11b17f25e94ed2e0569f522ea56f244c60465224"; }) ]; + + sourceRoot = "wlc-${version}-src"; - sourceRoot = "wlc-${rev}"; postUnpack = '' - rm -rf wlc-${rev}/lib/chck wlc-${rev}/protos/wayland-protocols - ln -s ../../chck-${chck_rev} wlc-${rev}/lib/chck - ln -s ../../wayland-protocols-${wl_protos_rev_short} wlc-${rev}/protos/wayland-protocols - ''; - - patchPhase = '' - ( echo '#include '; - echo '#include '; - cat src/platform/backend/drm.c - ) >src/platform/backend/drm.c-fix; - mv src/platform/backend/drm.c-fix src/platform/backend/drm.c; + rm -rf wlc-*/lib/chck ${sourceRoot}/protos/wayland-protocols + ln -s ../../chck-${chck_rev} ${sourceRoot}/lib/chck + ln -s ../../wayland-protocols-${wl_protos_rev_short} ${sourceRoot}/protos/wayland-protocols ''; nativeBuildInputs = [ cmake pkgconfig ]; @@ -60,7 +53,7 @@ stdenv.mkDerivation rec { meta = { description = "A library for making a simple Wayland compositor"; - homepage = repo; + homepage = https://github.com/Cloudef/wlc; license = lib.licenses.mit; platforms = lib.platforms.linux; maintainers = with lib.maintainers; [ ]; From 7afc940da13917a95da2af2aeacd3142a21dd0d9 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 13:41:56 +0200 Subject: [PATCH 161/520] pythonPackages.pytest_29: init at 2.9.2 --- pkgs/top-level/python-packages.nix | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 7c213e472deb..36773fe60551 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4374,7 +4374,9 @@ in modules // { }; }; - pytest = buildPythonPackage rec { + pytest = self.pytest_27; + + pytest_27 = buildPythonPackage rec { name = "pytest-2.7.3"; src = pkgs.fetchurl { @@ -4399,7 +4401,7 @@ in modules // { }; }; - pytest_28 = self.pytest.override rec { + pytest_28 = self.pytest_27.override rec { name = "pytest-2.8.6"; src = pkgs.fetchurl { @@ -4408,6 +4410,15 @@ in modules // { }; }; + pytest_29 = self.pytest_27.override rec { + name = "pytest-2.9.2"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pytest/${name}.tar.gz"; + sha256 = "1n6igbc1b138wx1q5gca4pqw1j6nsyicfxds5n0b5989kaxqmh8j"; + }; + }; + pytestcache = buildPythonPackage rec { name = "pytest-cache-1.0"; src = pkgs.fetchurl { From 3e8e6695a026fd54b37cda842b3610c349c02b6c Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 13:42:29 +0200 Subject: [PATCH 162/520] pythonPackages.pytest: 2.7.3 -> 2.9.2 --- 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 36773fe60551..906642dd0bc7 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4374,7 +4374,7 @@ in modules // { }; }; - pytest = self.pytest_27; + pytest = self.pytest_29; pytest_27 = buildPythonPackage rec { name = "pytest-2.7.3"; From 344225ce680181f1f272559345c22d3bcbe4152e Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Wed, 1 Jun 2016 15:26:33 +0200 Subject: [PATCH 163/520] pythonPackages.pip: disable tests --- pkgs/top-level/python-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 906642dd0bc7..c17b808f1676 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16344,6 +16344,8 @@ in modules // { installFlags = [ "--ignore-installed" ]; buildInputs = with self; [ mock scripttest virtualenv pretend pytest ]; + # Pip wants pytest, but tests are not distributed + doCheck = false; }; From 3e631800d1ddc93523be4a3a6880a33dc80efb2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 1 Jun 2016 20:02:58 +0100 Subject: [PATCH 164/520] Add hydra package and its NixOS module. This was originally removed in d4d0e449d7b96704eeaa2570255fb41c85c49613. The intent was not to maintain hydra expression at two places. Nowadays we have enough devs to maintain this despite copy/pasta. This should encourage more people to use Hydra, which is a really great piece of software together with Nix. Tested a deploy using https://github.com/peti/hydra-tutorial --- nixos/modules/module-list.nix | 1 + .../continuous-integration/hydra/default.nix | 418 ++++++++++++++++++ pkgs/development/tools/misc/hydra/default.nix | 142 ++++++ pkgs/top-level/all-packages.nix | 2 + pkgs/top-level/perl-packages.nix | 12 + 5 files changed, 575 insertions(+) create mode 100644 nixos/modules/services/continuous-integration/hydra/default.nix create mode 100644 pkgs/development/tools/misc/hydra/default.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index f3e9cd75a950..509634cf34c1 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -128,6 +128,7 @@ ./services/continuous-integration/jenkins/default.nix ./services/continuous-integration/jenkins/slave.nix ./services/continuous-integration/jenkins/job-builder.nix + ./services/continuous-integration/hydra/default.nix ./services/databases/4store-endpoint.nix ./services/databases/4store.nix ./services/databases/couchdb.nix diff --git a/nixos/modules/services/continuous-integration/hydra/default.nix b/nixos/modules/services/continuous-integration/hydra/default.nix new file mode 100644 index 000000000000..c8edfaf18537 --- /dev/null +++ b/nixos/modules/services/continuous-integration/hydra/default.nix @@ -0,0 +1,418 @@ +{ config, pkgs, lib, ... }: + +with lib; + +let + + cfg = config.services.hydra; + + baseDir = "/var/lib/hydra"; + + hydraConf = pkgs.writeScript "hydra.conf" cfg.extraConfig; + + hydraEnv = + { HYDRA_DBI = cfg.dbi; + HYDRA_CONFIG = "${baseDir}/hydra.conf"; + HYDRA_DATA = "${baseDir}"; + }; + + env = + { NIX_REMOTE = "daemon"; + SSL_CERT_FILE = "/etc/ssl/certs/ca-certificates.crt"; # Remove in 16.03 + PGPASSFILE = "${baseDir}/pgpass"; + NIX_REMOTE_SYSTEMS = concatStringsSep ":" cfg.buildMachinesFiles; + } // optionalAttrs (cfg.smtpHost != null) { + EMAIL_SENDER_TRANSPORT = "SMTP"; + EMAIL_SENDER_TRANSPORT_host = cfg.smtpHost; + } // hydraEnv // cfg.extraEnv; + + serverEnv = env // + { HYDRA_TRACKER = cfg.tracker; + COLUMNS = "80"; + PGPASSFILE = "${baseDir}/pgpass-www"; # grrr + } // (optionalAttrs cfg.debugServer { DBIC_TRACE = "1"; }); + + localDB = "dbi:Pg:dbname=hydra;user=hydra;"; + + haveLocalDB = cfg.dbi == localDB; + +in + +{ + ###### interface + options = { + + services.hydra = rec { + + enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to run Hydra services. + ''; + }; + + dbi = mkOption { + type = types.str; + default = localDB; + example = "dbi:Pg:dbname=hydra;host=postgres.example.org;user=foo;"; + description = '' + The DBI string for Hydra database connection. + ''; + }; + + package = mkOption { + type = types.path; + default = pkgs.hydra; + defaultText = "pkgs.hydra"; + description = "The Hydra package."; + }; + + hydraURL = mkOption { + type = types.str; + description = '' + The base URL for the Hydra webserver instance. Used for links in emails. + ''; + }; + + listenHost = mkOption { + type = types.str; + default = "*"; + example = "localhost"; + description = '' + The hostname or address to listen on or * to listen + on all interfaces. + ''; + }; + + port = mkOption { + type = types.int; + default = 3000; + description = '' + TCP port the web server should listen to. + ''; + }; + + minimumDiskFree = mkOption { + type = types.int; + default = 0; + description = '' + Threshold of minimum disk space (GiB) to determine if the queue runner should run or not. + ''; + }; + + minimumDiskFreeEvaluator = mkOption { + type = types.int; + default = 0; + description = '' + Threshold of minimum disk space (GiB) to determine if the evaluator should run or not. + ''; + }; + + notificationSender = mkOption { + type = types.str; + description = '' + Sender email address used for email notifications. + ''; + }; + + smtpHost = mkOption { + type = types.nullOr types.str; + default = null; + example = ["localhost"]; + description = '' + Hostname of the SMTP server to use to send email. + ''; + }; + + tracker = mkOption { + type = types.str; + default = ""; + description = '' + Piece of HTML that is included on all pages. + ''; + }; + + logo = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + Path to a file containing the logo of your Hydra instance. + ''; + }; + + debugServer = mkOption { + type = types.bool; + default = false; + description = "Whether to run the server in debug mode."; + }; + + extraConfig = mkOption { + type = types.lines; + description = "Extra lines for the Hydra configuration."; + }; + + extraEnv = mkOption { + type = types.attrsOf types.str; + default = {}; + description = "Extra environment variables for Hydra."; + }; + + gcRootsDir = mkOption { + type = types.path; + default = "/nix/var/nix/gcroots/hydra"; + description = "Directory that holds Hydra garbage collector roots."; + }; + + buildMachinesFiles = mkOption { + type = types.listOf types.path; + default = []; + example = [ "/etc/nix/machines" "/var/lib/hydra/provisioner/machines" ]; + description = "List of files containing build machines."; + }; + + useSubstitutes = mkOption { + type = types.bool; + default = false; + description = '' + Whether to use binary caches for downloading store paths. Note that + binary substitutions trigger (a potentially large number of) additional + HTTP requests that slow down the queue monitor thread significantly. + Also, this Hydra instance will serve those downloaded store paths to + its users with its own signature attached as if it had built them + itself, so don't enable this feature unless your active binary caches + are absolute trustworthy. + ''; + }; + }; + + }; + + + ###### implementation + + config = mkIf cfg.enable { + + users.extraGroups.hydra = { }; + + users.extraUsers.hydra = + { description = "Hydra"; + group = "hydra"; + createHome = true; + home = baseDir; + useDefaultShell = true; + }; + + users.extraUsers.hydra-queue-runner = + { description = "Hydra queue runner"; + group = "hydra"; + useDefaultShell = true; + home = "${baseDir}/queue-runner"; # really only to keep SSH happy + }; + + users.extraUsers.hydra-www = + { description = "Hydra web server"; + group = "hydra"; + useDefaultShell = true; + }; + + nix.trustedUsers = [ "hydra-queue-runner" ]; + + services.hydra.extraConfig = + '' + using_frontend_proxy 1 + base_uri ${cfg.hydraURL} + notification_sender ${cfg.notificationSender} + max_servers 25 + ${optionalString (cfg.logo != null) '' + hydra_logo ${cfg.logo} + ''} + gc_roots_dir ${cfg.gcRootsDir} + ''; + + environment.systemPackages = [ cfg.package ]; + + environment.variables = hydraEnv; + + nix.extraOptions = '' + gc-keep-outputs = true + gc-keep-derivations = true + + # The default (`true') slows Nix down a lot since the build farm + # has so many GC roots. + gc-check-reachability = false + ''; + + systemd.services.hydra-init = + { wantedBy = [ "multi-user.target" ]; + requires = optional haveLocalDB "postgresql.service"; + after = optional haveLocalDB "postgresql.service"; + environment = env; + preStart = '' + mkdir -p ${baseDir} + chown hydra.hydra ${baseDir} + chmod 0750 ${baseDir} + + ln -sf ${hydraConf} ${baseDir}/hydra.conf + + mkdir -m 0700 -p ${baseDir}/www + chown hydra-www.hydra ${baseDir}/www + + mkdir -m 0700 -p ${baseDir}/queue-runner + mkdir -m 0750 -p ${baseDir}/build-logs + chown hydra-queue-runner.hydra ${baseDir}/queue-runner ${baseDir}/build-logs + + ${optionalString haveLocalDB '' + if ! [ -e ${baseDir}/.db-created ]; then + ${config.services.postgresql.package}/bin/createuser hydra + ${config.services.postgresql.package}/bin/createdb -O hydra hydra + touch ${baseDir}/.db-created + fi + ''} + + if [ ! -e ${cfg.gcRootsDir} ]; then + + # Move legacy roots directory. + if [ -e /nix/var/nix/gcroots/per-user/hydra/hydra-roots ]; then + mv /nix/var/nix/gcroots/per-user/hydra/hydra-roots ${cfg.gcRootsDir} + fi + + mkdir -p ${cfg.gcRootsDir} + fi + + # Move legacy hydra-www roots. + if [ -e /nix/var/nix/gcroots/per-user/hydra-www/hydra-roots ]; then + find /nix/var/nix/gcroots/per-user/hydra-www/hydra-roots/ -type f \ + | xargs -r mv -f -t ${cfg.gcRootsDir}/ + rmdir /nix/var/nix/gcroots/per-user/hydra-www/hydra-roots + fi + + chown hydra.hydra ${cfg.gcRootsDir} + chmod 2775 ${cfg.gcRootsDir} + ''; + serviceConfig.ExecStart = "${cfg.package}/bin/hydra-init"; + serviceConfig.PermissionsStartOnly = true; + serviceConfig.User = "hydra"; + serviceConfig.Type = "oneshot"; + serviceConfig.RemainAfterExit = true; + }; + + systemd.services.hydra-server = + { wantedBy = [ "multi-user.target" ]; + requires = [ "hydra-init.service" ]; + after = [ "hydra-init.service" ]; + environment = serverEnv; + serviceConfig = + { ExecStart = + "@${cfg.package}/bin/hydra-server hydra-server -f -h '${cfg.listenHost}' " + + "-p ${toString cfg.port} --max_spare_servers 5 --max_servers 25 " + + "--max_requests 100 ${optionalString cfg.debugServer "-d"}"; + User = "hydra-www"; + PermissionsStartOnly = true; + Restart = "always"; + }; + }; + + systemd.services.hydra-queue-runner = + { wantedBy = [ "multi-user.target" ]; + requires = [ "hydra-init.service" ]; + after = [ "hydra-init.service" "network.target" ]; + path = [ cfg.package pkgs.nettools pkgs.openssh pkgs.bzip2 config.nix.package ]; + environment = env // { + PGPASSFILE = "${baseDir}/pgpass-queue-runner"; # grrr + IN_SYSTEMD = "1"; # to get log severity levels + }; + serviceConfig = + { ExecStart = "@${cfg.package}/bin/hydra-queue-runner hydra-queue-runner -v --option build-use-substitutes ${if cfg.useSubstitutes then "true" else "false"}"; + ExecStopPost = "${cfg.package}/bin/hydra-queue-runner --unlock"; + User = "hydra-queue-runner"; + Restart = "always"; + + # Ensure we can get core dumps. + LimitCORE = "infinity"; + WorkingDirectory = "${baseDir}/queue-runner"; + }; + }; + + systemd.services.hydra-evaluator = + { wantedBy = [ "multi-user.target" ]; + requires = [ "hydra-init.service" ]; + after = [ "hydra-init.service" "network.target" ]; + path = [ pkgs.nettools ]; + environment = env; + serviceConfig = + { ExecStart = "@${cfg.package}/bin/hydra-evaluator hydra-evaluator"; + User = "hydra"; + Restart = "always"; + WorkingDirectory = baseDir; + }; + }; + + systemd.services.hydra-update-gc-roots = + { requires = [ "hydra-init.service" ]; + after = [ "hydra-init.service" ]; + environment = env; + serviceConfig = + { ExecStart = "@${cfg.package}/bin/hydra-update-gc-roots hydra-update-gc-roots"; + User = "hydra"; + }; + startAt = "2,14:15"; + }; + + systemd.services.hydra-send-stats = + { wantedBy = [ "multi-user.target" ]; + after = [ "hydra-init.service" ]; + environment = env; + serviceConfig = + { ExecStart = "@${cfg.package}/bin/hydra-send-stats hydra-send-stats"; + User = "hydra"; + }; + }; + + # If there is less than a certain amount of free disk space, stop + # the queue/evaluator to prevent builds from failing or aborting. + systemd.services.hydra-check-space = + { script = + '' + if [ $(($(stat -f -c '%a' /nix/store) * $(stat -f -c '%S' /nix/store))) -lt $((${toString cfg.minimumDiskFree} * 1024**3)) ]; then + echo "stopping Hydra queue runner due to lack of free space..." + systemctl stop hydra-queue-runner + fi + if [ $(($(stat -f -c '%a' /nix/store) * $(stat -f -c '%S' /nix/store))) -lt $((${toString cfg.minimumDiskFreeEvaluator} * 1024**3)) ]; then + echo "stopping Hydra evaluator due to lack of free space..." + systemctl stop hydra-evaluator + fi + ''; + startAt = "*:0/5"; + }; + + # Periodically compress build logs. The queue runner compresses + # logs automatically after a step finishes, but this doesn't work + # if the queue runner is stopped prematurely. + systemd.services.hydra-compress-logs = + { path = [ pkgs.bzip2 ]; + script = + '' + find /var/lib/hydra/build-logs -type f -name "*.drv" -mtime +3 -size +0c | xargs -r bzip2 -v -f + ''; + startAt = "Sun 01:45"; + }; + + services.postgresql.enable = mkIf haveLocalDB true; + + services.postgresql.identMap = optionalString haveLocalDB + '' + hydra-users hydra hydra + hydra-users hydra-queue-runner hydra + hydra-users hydra-www hydra + hydra-users root hydra + ''; + + services.postgresql.authentication = optionalString haveLocalDB + '' + local hydra all ident map=hydra-users + ''; + + }; + +} diff --git a/pkgs/development/tools/misc/hydra/default.nix b/pkgs/development/tools/misc/hydra/default.nix new file mode 100644 index 000000000000..510a0679527e --- /dev/null +++ b/pkgs/development/tools/misc/hydra/default.nix @@ -0,0 +1,142 @@ +{ stdenv, nixUnstable, perlPackages, buildEnv, releaseTools, fetchFromGitHub +, makeWrapper, autoconf, automake, libtool, unzip, pkgconfig, sqlite, libpqxx +, gitAndTools, mercurial, darcs, subversion, bazaar, openssl, bzip2, libxslt +, guile, perl, postgresql92, aws-sdk-cpp, nukeReferences, git, boehmgc +, docbook_xsl, openssh, gnused, coreutils, findutils, gzip, lzma, gnutar +, rpm, dpkg, cdrkit }: + +with stdenv; + +let + perlDeps = buildEnv { + name = "hydra-perl-deps"; + paths = with perlPackages; + [ ModulePluggable + CatalystActionREST + CatalystAuthenticationStoreDBIxClass + CatalystDevel + CatalystDispatchTypeRegex + CatalystPluginAccessLog + CatalystPluginAuthorizationRoles + CatalystPluginCaptcha + CatalystPluginSessionStateCookie + CatalystPluginSessionStoreFastMmap + CatalystPluginStackTrace + CatalystPluginUnicodeEncoding + CatalystTraitForRequestProxyBase + CatalystViewDownload + CatalystViewJSON + CatalystViewTT + CatalystXScriptServerStarman + CryptRandPasswd + DBDPg + DBDSQLite + DataDump + DateTime + DigestSHA1 + EmailMIME + EmailSender + FileSlurp + IOCompress + IPCRun + JSONXS + LWP + LWPProtocolHttps + NetAmazonS3 + NetStatsd + PadWalker + Readonly + SQLSplitStatement + SetScalar + Starman + SysHostnameLong + TestMore + TextDiff + TextTable + XMLSimple + nixUnstable + git + boehmgc + ]; + }; +in releaseTools.nixBuild rec { + name = "hydra-${version}"; + version = "2016-04-15"; + + src = fetchFromGitHub { + owner = "NixOS"; + repo = "hydra"; + rev = "177bf25d648092826a75369191503a3f2bb763a4"; + sha256 = "0ngipzm2i2vz5ygfd70hh82d027snpl85r8ncn1rxlkak0g8fxsl"; + }; + + buildInputs = + [ makeWrapper autoconf automake libtool unzip nukeReferences pkgconfig sqlite libpqxx + gitAndTools.topGit mercurial darcs subversion bazaar openssl bzip2 libxslt + guile # optional, for Guile + Guix support + perlDeps perl nixUnstable + postgresql92 # for running the tests + (lib.overrideDerivation (aws-sdk-cpp.override { + apis = ["s3"]; + customMemoryManagement = false; + }) (attrs: { + src = fetchFromGitHub { + owner = "edolstra"; + repo = "aws-sdk-cpp"; + rev = "local"; + sha256 = "1vhgsxkhpai9a7dk38q4r239l6dsz2jvl8hii24c194lsga3g84h"; + }; + })) + ]; + + hydraPath = lib.makeBinPath ( + [ libxslt sqlite subversion openssh nixUnstable coreutils findutils + gzip bzip2 lzma gnutar unzip git gitAndTools.topGit mercurial darcs gnused bazaar + ] ++ lib.optionals stdenv.isLinux [ rpm dpkg cdrkit ] ); + + postUnpack = '' + # Clean up when building from a working tree. + (cd $sourceRoot && (git ls-files -o --directory | xargs -r rm -rfv)) || true + ''; + + configureFlags = [ "--with-docbook-xsl=${docbook_xsl}/xml/xsl/docbook" ]; + + preHook = '' + PATH=$(pwd)/src/script:$(pwd)/src/hydra-eval-jobs:$(pwd)/src/hydra-queue-runner:$PATH + PERL5LIB=$(pwd)/src/lib:$PERL5LIB; + ''; + + preConfigure = "autoreconf -vfi"; + + enableParallelBuilding = true; + + preCheck = '' + patchShebangs . + export LOGNAME=${LOGNAME:-foo} + ''; + + postInstall = '' + mkdir -p $out/nix-support + for i in $out/bin/*; do + read -n 4 chars < $i + if [[ $chars =~ ELF ]]; then continue; fi + wrapProgram $i \ + --prefix PERL5LIB ':' $out/libexec/hydra/lib:$PERL5LIB \ + --prefix PATH ':' $out/bin:$hydraPath \ + --set HYDRA_RELEASE ${version} \ + --set HYDRA_HOME $out/libexec/hydra \ + --set NIX_RELEASE ${nixUnstable.name or "unknown"} + done + ''; # */ + + dontStrip = true; + + passthru.perlDeps = perlDeps; + + meta = with stdenv.lib; { + description = "Nix-based continuous build system"; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ domenkozar ]; + }; + } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 88bbeca62121..1091807486be 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7373,6 +7373,8 @@ in hwloc = callPackage ../development/libraries/hwloc {}; + hydra = callPackage ../development/tools/misc/hydra {}; + hydraAntLogger = callPackage ../development/libraries/java/hydra-ant-logger { }; hyena = callPackage ../development/libraries/hyena { }; diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 044f1fd6c225..d6aeec53e1de 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9444,6 +9444,18 @@ let self = _self // overrides; _self = with self; { }; }; + NetStatsd = buildPerlPackage { + name = "Net-Statsd-0.11"; + src = fetchurl { + url = mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-0.11.tar.gz; + sha256 = "0f56c95846c7e65e6d32cec13ab9df65716429141f106d2dc587f1de1e09e163"; + }; + meta = { + description = "Sends statistics to the stats daemon over UDP"; + license = "perl"; + }; + }; + NetTwitterLite = buildPerlPackage { name = "Net-Twitter-Lite-0.11002"; src = fetchurl { From 81cdd0bf96f7a8932e079175366b8d679d615445 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Wed, 1 Jun 2016 21:55:18 +0100 Subject: [PATCH 165/520] fix manual --- nixos/doc/manual/manual.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/doc/manual/manual.xml b/nixos/doc/manual/manual.xml index 42b2cf75a77a..2c28dd448016 100644 --- a/nixos/doc/manual/manual.xml +++ b/nixos/doc/manual/manual.xml @@ -26,9 +26,9 @@ xlink:href="https://github.com/NixOS/nixpkgs/issues">NixOS’ GitHub issue tracker. - Commands prefixed with # have to be run as + Commands prefixed with # have to be run as root, either requiring to login as root user or temporarily switching - to it using sudo for example. + to it using sudo for example. From adfe65edf2f07031fba6380eacc085582c74bb14 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Wed, 1 Jun 2016 12:56:46 +0300 Subject: [PATCH 166/520] haskell.cabal-install: use new Cabal --- pkgs/development/haskell-modules/configuration-common.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9973d5bca4d8..2b3492b5b36b 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -8,7 +8,7 @@ self: super: { Cabal_1_18_1_7 = dontCheck super.Cabal_1_18_1_7; Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0; - cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_22_4_0; }); + cabal-install_ = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_7; }); # Link statically to avoid runtime dependency on GHC. From d82b15d57bf9e40ff8f3541a1a093c48f8f7fda6 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 2 Jun 2016 01:11:01 +0300 Subject: [PATCH 167/520] haskell.cabal-install: remove override --- pkgs/development/haskell-modules/configuration-common.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 2b3492b5b36b..b1c004f24831 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -8,7 +8,6 @@ self: super: { Cabal_1_18_1_7 = dontCheck super.Cabal_1_18_1_7; Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0; - cabal-install_ = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_7; }); # Link statically to avoid runtime dependency on GHC. From f2b5694abcb5dc07c0dc93b822ee185d63d53f4b Mon Sep 17 00:00:00 2001 From: mingchuan Date: Wed, 1 Jun 2016 17:01:42 +0800 Subject: [PATCH 168/520] pstoedit: depend on libwebp to fix linker failure This fixes the linker failure saying "cannot find -lwebp" Closes #15888 --- pkgs/tools/graphics/pstoedit/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/graphics/pstoedit/default.nix b/pkgs/tools/graphics/pstoedit/default.nix index 624f5321c2a6..c8ecebc08689 100644 --- a/pkgs/tools/graphics/pstoedit/default.nix +++ b/pkgs/tools/graphics/pstoedit/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, pkgconfig, ghostscript, gd, libjpeg, zlib, plotutils }: +{ stdenv, fetchurl, pkgconfig, ghostscript, gd, libjpeg, zlib, plotutils, libwebp }: stdenv.mkDerivation rec { name = "pstoedit-3.62"; @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40"; }; - buildInputs = [ pkgconfig ghostscript gd libjpeg zlib plotutils ]; + buildInputs = [ pkgconfig ghostscript gd libjpeg zlib plotutils libwebp ]; meta = { description = "Translates PostScript and PDF graphics into other vector formats"; From c82b6c61161d721691c1618a843a31fea94d23fb Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 1 Jun 2016 22:45:19 +0200 Subject: [PATCH 169/520] pstoedit: 3.62 -> 3.70 Note that kde4.calligra, the only reverse dependency, fails to build, but I have confirmed that it fails also with the previous pstoedit version so the failure appears unrelated (nor does the error really indicate that pstoedit is at fault ...). Also - Change meta.homepage; the original domain didn't work properly for me - Split dev output; may want to split out bin/lib as well, for some decent saving - Build with imagemagick for a slight size increase --- pkgs/tools/graphics/pstoedit/default.nix | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/pkgs/tools/graphics/pstoedit/default.nix b/pkgs/tools/graphics/pstoedit/default.nix index c8ecebc08689..094d9deadbf1 100644 --- a/pkgs/tools/graphics/pstoedit/default.nix +++ b/pkgs/tools/graphics/pstoedit/default.nix @@ -1,20 +1,25 @@ -{ stdenv, fetchurl, pkgconfig, ghostscript, gd, libjpeg, zlib, plotutils, libwebp }: +{ stdenv, fetchurl, pkgconfig +, zlib, ghostscript, imagemagick, plotutils, gd +, libjpeg, libwebp +}: stdenv.mkDerivation rec { - name = "pstoedit-3.62"; + name = "pstoedit-3.70"; src = fetchurl { url = "mirror://sourceforge/pstoedit/${name}.tar.gz"; - sha256 = "0j410dm9nqwa7n03yiyz0jwvln0jlqc3n9iv4nls33yl6x3c8x40"; + sha256 = "130kz0ghsrggdn70kygrmsy3n533hwd948q69vyvqz44yw9n3f06"; }; - buildInputs = [ pkgconfig ghostscript gd libjpeg zlib plotutils libwebp ]; + outputs = [ "dev" "out" ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ zlib ghostscript imagemagick plotutils gd libjpeg libwebp ]; - meta = { + meta = with stdenv.lib; { description = "Translates PostScript and PDF graphics into other vector formats"; - homepage = http://www.helga-glunz.homepage.t-online.de/pstoedit; - license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.marcweber ]; - platforms = stdenv.lib.platforms.linux; + homepage = https://sourceforge.net/projects/pstoedit/; + license = licenses.gpl2; + maintainers = [ maintainers.marcweber ]; + platforms = platforms.linux; }; } From e05dd52f3dc7c6a1c7d629ae5d68d24bfabaafa5 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 2 Jun 2016 00:19:48 +0200 Subject: [PATCH 170/520] ming: 0.4.5 -> 0.4.7 Split outputs - bin: 1.7mb - dev: 127kb - out: 472kb --- pkgs/development/libraries/ming/default.nix | 29 ++++++++++++++------- 1 file changed, 20 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/ming/default.nix b/pkgs/development/libraries/ming/default.nix index 9df90555218e..ba512ec5d8cb 100644 --- a/pkgs/development/libraries/ming/default.nix +++ b/pkgs/development/libraries/ming/default.nix @@ -1,22 +1,32 @@ -{ fetchurl, stdenv, flex, bison, freetype, zlib, libpng -, perl }: +{ stdenv, fetchFromGitHub +, autoreconfHook, flex, bison, perl +, zlib, freetype, libpng, giflib +}: stdenv.mkDerivation rec { - name = "ming-0.4.5"; + pname = "ming"; + version = "0.4.7"; + name = "${pname}-${version}"; - src = fetchurl { - url = "mirror://sourceforge/ming/${name}.tar.bz2"; - sha256 = "1sws4cs9i9hysr1l0b8hsmqf4gh06ldc24fw6avzr9y3vydhinl2"; + src = fetchFromGitHub { + repo = "libming"; + owner = "libming"; + rev = "${pname}-${stdenv.lib.replaceStrings ["."] ["_"] version}"; + sha256 = "17ngz1n1mnknixzchywkhbw9s3scad8ajmk97gx14xbsw1603gd2"; }; # We don't currently build the Python, Perl, PHP, etc. bindings. # Perl is needed for the test suite, though. - buildInputs = [ flex bison freetype zlib libpng perl ]; + outputs = [ "dev" "out" "bin" ]; + nativeBuildInputs = [ autoreconfHook flex bison perl ]; + buildInputs = [ freetype zlib libpng giflib ]; + + postFixup = ''moveToOutput "bin/ming-config" $dev''; doCheck = true; - meta = { + meta = with stdenv.lib; { description = "Library for generating Flash `.swf' files"; longDescription = '' @@ -28,6 +38,7 @@ stdenv.mkDerivation rec { homepage = http://www.libming.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; + platforms = platforms.unix; }; } From 098c58cac841bff28a8e9eeb1f795bb50d388fed Mon Sep 17 00:00:00 2001 From: Eric Sagnes Date: Wed, 1 Jun 2016 20:50:12 +0900 Subject: [PATCH 171/520] fcitx: 4.2.9 -> 4.2.9.1, fix build --- pkgs/tools/inputmethods/fcitx/default.nix | 35 +++++++++++-------- pkgs/tools/inputmethods/fcitx/fcitx-ecm.patch | 25 +++++++++++++ 2 files changed, 46 insertions(+), 14 deletions(-) create mode 100644 pkgs/tools/inputmethods/fcitx/fcitx-ecm.patch diff --git a/pkgs/tools/inputmethods/fcitx/default.nix b/pkgs/tools/inputmethods/fcitx/default.nix index d2e46f704c83..ba3a3f76ed93 100644 --- a/pkgs/tools/inputmethods/fcitx/default.nix +++ b/pkgs/tools/inputmethods/fcitx/default.nix @@ -1,27 +1,34 @@ { stdenv, fetchurl, pkgconfig, cmake, intltool, gettext , libxml2, enchant, isocodes, icu, libpthreadstubs -, pango, cairo, libxkbfile, libXau, libXdmcp +, pango, cairo, libxkbfile, libXau, libXdmcp, libxkbcommon , dbus, gtk2, gtk3, qt4, kde5 }: stdenv.mkDerivation rec { name = "fcitx-${version}"; - version = "4.2.9"; + version = "4.2.9.1"; src = fetchurl { - url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz"; - sha256 = "0v7wdf3qf74vz8q090w8k574wvfcpj9ksfcfdw93nmzyk1q5p4rs"; + url = "http://download.fcitx-im.org/fcitx/${name}_dict.tar.xz"; + sha256 = "0xvcmm4yi7kagf55d0yl3ql5ssbkm9410fwbz3kd988pchichdsk"; }; - patchPhase = '' + 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 = with stdenv.lib; [ - cmake enchant pango gettext libxml2 isocodes pkgconfig libxkbfile - intltool cairo icu libpthreadstubs libXau libXdmcp - dbus gtk2 gtk3 qt4 kde5.extra-cmake-modules + buildInputs = [ + cmake enchant gettext isocodes pkgconfig intltool icu + libpthreadstubs libXau libXdmcp libxkbfile libxkbcommon libxml2 + dbus cairo gtk2 gtk3 pango qt4 ]; cmakeFlags = '' @@ -34,11 +41,11 @@ stdenv.mkDerivation rec { -DENABLE_XDGAUTOSTART=OFF ''; - meta = { - homepage = "https://code.google.com/p/fcitx/"; + meta = with stdenv.lib; { + homepage = "https://github.com/fcitx/fcitx"; description = "A Flexible Input Method Framework"; - license = stdenv.lib.licenses.gpl2; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; [ ericsagnes ]; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = with maintainers; [ ericsagnes ]; }; } diff --git a/pkgs/tools/inputmethods/fcitx/fcitx-ecm.patch b/pkgs/tools/inputmethods/fcitx/fcitx-ecm.patch new file mode 100644 index 000000000000..8a886f2bc78e --- /dev/null +++ b/pkgs/tools/inputmethods/fcitx/fcitx-ecm.patch @@ -0,0 +1,25 @@ +diff --git a/CMakeLists.txt b/CMakeLists.txt +index fd54ad8..ebb33d0 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -5,8 +5,7 @@ project(fcitx) + set(version 4.2.9) + + +-find_package(ECM 0.0.11 REQUIRED NO_MODULE) +-set(CMAKE_MODULE_PATH "${ECM_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) ++set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) + set(CMAKE_AUTOMOC_RELAXED_MODE TRUE) + + set_property(GLOBAL PROPERTY "__FCITX_INTERNAL_BUILD" On) +--- a/cmake/FindXKBCommon.cmake ++++ b/cmake/FindXKBCommon.cmake +@@ -1,5 +1,5 @@ + +-include(ECMFindModuleHelpersStub) ++include(ECMFindModuleHelpers) + + ecm_find_package_version_check(XKBCommon) + +-- +2.8.0 From 61b4f1463ca74536cad898f3d352f70402231697 Mon Sep 17 00:00:00 2001 From: Mayeu - Cast Date: Thu, 12 May 2016 13:10:46 +0200 Subject: [PATCH 172/520] owncloud-client: Fix "libocsync.so.0 not found" error Close #15130 --- .../networking/owncloud-client/default.nix | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/owncloud-client/default.nix b/pkgs/applications/networking/owncloud-client/default.nix index 8963f8dc01d0..bbbee40a7b45 100644 --- a/pkgs/applications/networking/owncloud-client/default.nix +++ b/pkgs/applications/networking/owncloud-client/default.nix @@ -13,14 +13,9 @@ stdenv.mkDerivation rec { buildInputs = [ cmake qt4 pkgconfig qtkeychain sqlite]; - #configurePhase = '' - # mkdir build - # cd build - # cmake -DBUILD_WITH_QT4=on \ - # -DCMAKE_INSTALL_PREFIX=$out \ - # -DCMAKE_BUILD_TYPE=Release \ - # .. - #''; + cmakeFlags = [ + "-UCMAKE_INSTALL_LIBDIR" + ]; enableParallelBuilding = true; From 76db3f6e63ecb5d06ee8dfa24ec739f89a82106a Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Mon, 30 May 2016 18:24:38 -0400 Subject: [PATCH 173/520] esqueleto: fix dependencies --- .../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 b1c004f24831..d2aeda8d49cc 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1011,4 +1011,13 @@ self: super: { # Tools that use gtk2hs-buildtools now depend on them in a custom-setup stanza cairo = addBuildTool super.cairo self.gtk2hs-buildtools; pango = addBuildTool super.pango self.gtk2hs-buildtools; + + # esqueleto requires an older version of the persistent library, and + # corresponding versions of -template and -sqlite for for its test + # suite. + esqueleto = super.esqueleto.overrideScope (self: super: { + persistent-template = super.persistent-template_2_1_8_1; + persistent-sqlite = super.persistent-sqlite_2_2_1; + persistent = super.persistent_2_2_4_1; + }); } From d631679b830674a1b9568407fa9108339ccd2fc6 Mon Sep 17 00:00:00 2001 From: Michael Alan Dorman Date: Mon, 30 May 2016 20:48:28 -0400 Subject: [PATCH 174/520] cabal: fix expressions --- pkgs/development/haskell-modules/configuration-common.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index d2aeda8d49cc..af9e2d0f9120 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -7,7 +7,8 @@ self: super: { # Some packages need a non-core version of Cabal. Cabal_1_18_1_7 = dontCheck super.Cabal_1_18_1_7; Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; - Cabal_1_22_4_0 = dontCheck super.Cabal_1_22_4_0; + Cabal_1_22_4_0 = (dontCheck super.Cabal_1_22_4_0).overrideScope (self: super: { binary = self.binary_0_7_6_1; }); + cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_7; }); # Link statically to avoid runtime dependency on GHC. From 3fb2006846a6b823c8bc04fff86ffa3ab396b596 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 1 Jun 2016 18:17:46 +0200 Subject: [PATCH 175/520] haskell-bytes: fix LTS build --- pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix | 1 + 1 file changed, 1 insertion(+) 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 18ed30da237f..fcadc790baa9 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -206,6 +206,7 @@ self: super: { # GHC versions prior to 8.x require additional build inputs. aeson = disableCabalFlag (addBuildDepend super.aeson self.semigroups) "old-locale"; case-insensitive = addBuildDepend super.case-insensitive self.semigroups; + bytes = addBuildDepend super.bytes self.doctest; semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]); From c571a08ff1f994beba5133211df259037d4bec99 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 1 Jun 2016 18:21:28 +0200 Subject: [PATCH 176/520] Add LTS Haskell 6.1. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 2bf6dd1ec3d7..07481871465a 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -406,7 +406,10 @@ rec { lts-6_0 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.0.nix { }; }; - lts-6 = packages.lts-6_0; + lts-6_1 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.1.nix { }; + }; + lts-6 = packages.lts-6_1; lts = packages.lts-6; }; From edfee2098f1440a694277b55bfa25f28601b70bd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 1 Jun 2016 19:56:12 +0200 Subject: [PATCH 177/520] configuration-hackage2nix.yaml: update list of broken builds --- .../configuration-hackage2nix.yaml | 4680 ++++++++++++++++- 1 file changed, 4677 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index a5591694356e..8b578dce3f2d 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -147,16 +147,4690 @@ dont-distribute-packages: yices-painless: [ i686-linux, x86_64-linux, x86_64-darwin ] # soft restrictions because of build errors + 3dmodels: [ i686-linux, x86_64-linux ] + 4Blocks: [ i686-linux, x86_64-darwin, x86_64-linux ] + abc-puzzle: [ x86_64-darwin ] + abcBridge: [ i686-linux, x86_64-linux ] + abstract-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + AC-BuildPlatform: [ i686-linux, x86_64-linux ] + AC-EasyRaster-GTK: [ i686-linux, x86_64-linux ] + AC-HalfInteger: [ i686-linux, x86_64-linux ] + AC-MiniTest: [ i686-linux, x86_64-linux ] + AC-Terminal: [ i686-linux, x86_64-linux ] + AC-VanillaArray: [ i686-linux, x86_64-linux ] + accelerate-arithmetic: [ i686-linux, x86_64-linux ] + accelerate-fftw: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-fourier: [ i686-linux, x86_64-linux ] + accelerate-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-typelits: [ i686-linux, x86_64-darwin, x86_64-linux ] + accelerate-utility: [ i686-linux, x86_64-linux ] + accentuateus: [ i686-linux, x86_64-linux ] + access-time: [ i686-linux, x86_64-linux ] + acid-state-dist: [ i686-linux, x86_64-darwin, x86_64-linux ] + acid-state-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + acid-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-hq9plus: [ i686-linux, x86_64-linux ] + acme-inator: [ i686-linux, x86_64-darwin, x86_64-linux ] + acme-numbersystem: [ i686-linux, x86_64-linux ] + acme-schoenfinkel: [ i686-linux, x86_64-linux ] + acme-zero: [ i686-linux, x86_64-linux ] + ACME: [ i686-linux, x86_64-linux ] + ActionKid: [ i686-linux, x86_64-darwin, x86_64-linux ] + activehs: [ i686-linux, x86_64-darwin, x86_64-linux ] + actor: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive-Blaisorblade: [ i686-linux, x86_64-linux ] + adaptive-containers: [ i686-linux, x86_64-linux ] + adaptive-tuple: [ i686-linux, x86_64-darwin, x86_64-linux ] + Adaptive: [ i686-linux, x86_64-linux ] + adhoc-network: [ i686-linux, x86_64-linux ] + adict: [ i686-linux, x86_64-linux ] + adobe-swatch-exchange: [ i686-linux, x86_64-linux ] + adp-multi-monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + adp-multi: [ i686-linux, x86_64-linux ] + ADPfusion: [ i686-linux, x86_64-darwin, x86_64-linux ] + Advgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Basics: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Net: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Double: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real-Interval: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-Real: [ i686-linux, x86_64-darwin, x86_64-linux ] + AERN-RnToRm-Plot: [ i686-linux, x86_64-linux ] + AERN-RnToRm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-applicative: [ i686-linux, x86_64-linux ] + aeson-bson: [ i686-linux, x86_64-linux ] + aeson-diff: [ i686-linux, x86_64-linux ] + aeson-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + aeson-native: [ i686-linux, x86_64-linux ] + aeson-schema: [ i686-linux, x86_64-linux ] + aeson-smart: [ i686-linux, x86_64-linux ] + aeson-value-parser: [ i686-linux, x86_64-linux ] + aeson-yak: [ i686-linux, x86_64-linux ] + AesonBson: [ i686-linux, x86_64-linux ] + afv: [ i686-linux, x86_64-linux ] + Agata: [ i686-linux, x86_64-linux ] + agda-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + agda-snippets-hakyll: [ i686-linux, x86_64-linux ] + AGI: [ i686-linux, x86_64-linux ] + AhoCorasick: [ i686-linux, x86_64-linux ] + air-th: [ i686-linux, x86_64-linux ] + airbrake: [ i686-linux, x86_64-linux ] + aivika-distributed: [ i686-linux, x86_64-darwin, x86_64-linux ] + aivika-experiment-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ajhc: [ i686-linux, x86_64-linux ] + al: [ i686-linux, x86_64-linux ] + algebra-sql: [ i686-linux, x86_64-linux ] + algebra: [ i686-linux, x86_64-linux ] + algebraic-classes: [ i686-linux, x86_64-linux ] + algebraic: [ i686-linux, x86_64-linux ] + AlignmentAlgorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + Allure: [ i686-linux, x86_64-linux ] + alms: [ i686-linux, x86_64-darwin, x86_64-linux ] + alpha: [ i686-linux, x86_64-linux ] + alpino-tools: [ i686-linux, x86_64-linux ] + alsa-midi: [ i686-linux, x86_64-linux ] + alsa-pcm-tests: [ i686-linux, x86_64-linux ] + alsa-seq-tests: [ i686-linux, x86_64-linux ] + alsa: [ i686-linux, x86_64-linux ] + alternative-io: [ i686-linux, x86_64-linux ] + altfloat: [ i686-linux, x86_64-linux ] + alure: [ i686-linux, x86_64-darwin, x86_64-linux ] + ALUT: [ x86_64-darwin ] + amazon-emailer-client-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazon-emailer: [ i686-linux, x86_64-linux ] + amazon-products: [ i686-linux, x86_64-linux ] + amazonka-apigateway: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-autoscaling: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-certificatemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudformation: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudfront: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudhsm: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudsearch-domains: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudtrail: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudwatch-events: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudwatch-logs: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cloudwatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-codecommit: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-codedeploy: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-codepipeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cognito-identity: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cognito-idp: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-cognito-sync: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-config: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-datapipeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-devicefarm: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-directconnect: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-dms: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ds: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-dynamodb-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-dynamodb: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ec2: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ecr: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ecs: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-efs: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-elasticache: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-elasticbeanstalk: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-elasticsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-elastictranscoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-elb: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-emr: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-gamelift: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-glacier: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-iam: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-importexport: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-inspector: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-iot-dataplane: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-iot: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-kinesis-firehose: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-kinesis: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-kms: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-lambda: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-marketplace-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-marketplace-metering: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ml: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-opsworks: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-rds: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-redshift: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-route53-domains: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-route53: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-sdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ses: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-sns: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-sqs: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-ssm: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-storagegateway: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-sts: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-support: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-swf: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-waf: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka-workspaces: [ i686-linux, x86_64-darwin, x86_64-linux ] + amazonka: [ i686-linux, x86_64-darwin, x86_64-linux ] + AMI: [ i686-linux, x86_64-linux ] + ampersand: [ i686-linux, x86_64-darwin, x86_64-linux ] + analyze-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + anansi-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anatomy: [ i686-linux, x86_64-darwin, x86_64-linux ] + android-lint-summary: [ i686-linux, x86_64-linux ] + AndroidViewHierarchyImporter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Animas: [ i686-linux, x86_64-linux ] + Annotations: [ i686-linux, x86_64-linux ] + antagonist: [ i686-linux, x86_64-linux ] + antfarm: [ i686-linux, x86_64-linux ] + anticiv: [ i686-linux, x86_64-linux ] + antigate: [ i686-linux, x86_64-linux ] + antimirov: [ i686-linux, x86_64-linux ] + antisplice: [ i686-linux, x86_64-linux ] + antlrc: [ i686-linux, x86_64-darwin, x86_64-linux ] + anydbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + aosd: [ i686-linux, x86_64-linux ] + apelsin: [ i686-linux, x86_64-linux ] + api-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + apiary-authenticate: [ i686-linux, x86_64-linux ] + apiary-clientsession: [ i686-linux, x86_64-linux ] + apiary-cookie: [ i686-linux, x86_64-linux ] + apiary-eventsource: [ i686-linux, x86_64-linux ] + apiary-helics: [ i686-linux, x86_64-linux ] + apiary-http-client: [ i686-linux, x86_64-linux ] + apiary-logger: [ i686-linux, x86_64-linux ] + apiary-memcached: [ i686-linux, x86_64-linux ] + apiary-mongoDB: [ i686-linux, x86_64-linux ] + apiary-persistent: [ i686-linux, x86_64-linux ] + apiary-purescript: [ i686-linux, x86_64-linux ] + apiary-session: [ i686-linux, x86_64-linux ] + apiary-websockets: [ i686-linux, x86_64-linux ] + apiary: [ i686-linux, x86_64-linux ] + apis: [ i686-linux, x86_64-darwin, x86_64-linux ] + apotiki: [ i686-linux, x86_64-linux ] + app-lens: [ i686-linux, x86_64-linux ] + appc: [ i686-linux, x86_64-linux ] + ApplePush: [ i686-linux, x86_64-darwin, x86_64-linux ] + AppleScript: [ i686-linux, x86_64-linux ] + applicative-fail: [ i686-linux, x86_64-linux ] + applicative-parsec: [ i686-linux, x86_64-linux ] + applicative-quoters: [ i686-linux, x86_64-linux ] + apply-refact: [ i686-linux, x86_64-linux ] + approx-rand-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + approximate: [ i686-linux, x86_64-darwin, x86_64-linux ] + arb-fft: [ i686-linux, x86_64-linux ] + arbb-vm: [ i686-linux, x86_64-darwin, x86_64-linux ] + archiver: [ i686-linux, x86_64-linux ] + archlinux-web: [ i686-linux, x86_64-linux ] + archlinux: [ i686-linux, x86_64-linux ] + arff: [ i686-linux, x86_64-linux ] + arghwxhaskell: [ x86_64-darwin ] + argon2: [ i686-linux, x86_64-linux ] + argon: [ i686-linux, x86_64-linux ] + argparser: [ i686-linux, x86_64-linux ] + arguedit: [ i686-linux, x86_64-linux ] + ariadne: [ i686-linux, x86_64-darwin, x86_64-linux ] + arion: [ i686-linux, x86_64-linux ] + arith-encode: [ i686-linux, x86_64-darwin, x86_64-linux ] + arithmetic: [ i686-linux ] + arithmoi: [ i686-linux ] + armada: [ i686-linux, x86_64-linux ] + array-forth: [ i686-linux, x86_64-linux ] + array-primops: [ i686-linux, x86_64-linux ] + ArrayRef: [ i686-linux, x86_64-linux ] + arrow-improve: [ i686-linux, x86_64-linux ] + arrowapply-utils: [ i686-linux, x86_64-linux ] + arrowp: [ i686-linux, x86_64-linux ] + ArrowVHDL: [ i686-linux, x86_64-linux ] + ascii85-conduit: [ i686-linux, x86_64-linux ] + asic: [ i686-linux, x86_64-linux ] + asil: [ i686-linux, x86_64-linux ] + AspectAG: [ i686-linux, x86_64-darwin, x86_64-linux ] + assimp: [ i686-linux, x86_64-darwin, x86_64-linux ] + astrds: [ i686-linux, x86_64-linux ] + astview: [ i686-linux, x86_64-darwin, x86_64-linux ] + async-extras: [ i686-linux, x86_64-linux ] + aterm-utils: [ i686-linux, x86_64-linux ] + atlassian-connect-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + atlassian-connect-descriptor: [ i686-linux, x86_64-linux ] + atom-msp430: [ x86_64-darwin, x86_64-linux ] + atomic-primops-foreign: [ i686-linux, x86_64-linux ] + atomic-primops-vector: [ i686-linux, x86_64-darwin, x86_64-linux ] + atomo: [ i686-linux, x86_64-darwin, x86_64-linux ] + AttoBencode: [ i686-linux, x86_64-linux ] + AttoJson: [ i686-linux, x86_64-linux ] + attoparsec-csv: [ i686-linux, x86_64-linux ] + attoparsec-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + attoparsec-text-enumerator: [ i686-linux, x86_64-linux ] + attoparsec-text: [ i686-linux, x86_64-linux ] + Attrac: [ i686-linux, x86_64-linux ] + atuin: [ i686-linux, x86_64-darwin, x86_64-linux ] + audiovisual: [ i686-linux, x86_64-linux ] + augeas: [ i686-linux, x86_64-linux ] + augur: [ i686-linux, x86_64-linux ] + Aurochs: [ i686-linux, x86_64-linux ] + authoring: [ i686-linux, x86_64-linux ] + AutoForms: [ i686-linux, x86_64-darwin, x86_64-linux ] + autoproc: [ i686-linux, x86_64-linux ] + avahi: [ i686-linux, x86_64-darwin, x86_64-linux ] + avers-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + avers-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + avers: [ i686-linux, x86_64-darwin, x86_64-linux ] + AvlTree: [ i686-linux, x86_64-linux ] + awesomium-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium-raw: [ i686-linux, x86_64-darwin, x86_64-linux ] + awesomium: [ i686-linux, x86_64-darwin, x86_64-linux ] + aws-configuration-tools: [ i686-linux, x86_64-linux ] + aws-dynamodb-streams: [ i686-linux, x86_64-linux ] + aws-ec2: [ i686-linux, x86_64-linux ] + aws-elastic-transcoder: [ i686-linux, x86_64-linux ] + aws-general: [ i686-linux, x86_64-linux ] + aws-kinesis-client: [ i686-linux, x86_64-linux ] + aws-kinesis-reshard: [ i686-linux, x86_64-linux ] + aws-kinesis: [ i686-linux, x86_64-linux ] + aws-lambda: [ i686-linux, x86_64-linux ] + aws-performance-tests: [ i686-linux, x86_64-linux ] + aws-sdk-text-converter: [ i686-linux, x86_64-linux ] + aws-sdk-xml-unordered: [ i686-linux, x86_64-linux ] + aws-sdk: [ i686-linux, x86_64-linux ] + aws-sign4: [ i686-linux, x86_64-linux ] + aws-sns: [ i686-linux, x86_64-linux ] + azure-service-api: [ i686-linux, x86_64-darwin, x86_64-linux ] + azurify: [ i686-linux, x86_64-linux ] + b-tree: [ i686-linux, x86_64-linux ] + babylon: [ x86_64-darwin ] + backdropper: [ i686-linux, x86_64-darwin, x86_64-linux ] + bacteria: [ x86_64-darwin ] + bag: [ i686-linux, x86_64-linux ] + Baggins: [ i686-linux, x86_64-linux ] + bamboo-launcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-highlight: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-plugin-photo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-blueprint: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo-theme-mini-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamboo: [ i686-linux, x86_64-darwin, x86_64-linux ] + bamse: [ i686-linux, x86_64-linux ] + barchart: [ i686-linux, x86_64-darwin, x86_64-linux ] + barcodes-code128: [ i686-linux, x86_64-linux ] + barley: [ i686-linux, x86_64-linux ] + Barracuda: [ i686-linux, x86_64-linux ] + barrie: [ i686-linux, x86_64-darwin, x86_64-linux ] + barrier-monad: [ i686-linux, x86_64-linux ] + base-generics: [ i686-linux, x86_64-linux ] + basic-sop: [ i686-linux, x86_64-linux ] + BASIC: [ i686-linux, x86_64-darwin, x86_64-linux ] + baskell: [ i686-linux, x86_64-linux ] + battleships: [ i686-linux, x86_64-darwin, x86_64-linux ] + bayes-stack: [ i686-linux, x86_64-darwin, x86_64-linux ] + BCMtools: [ i686-linux, x86_64-linux ] + beam: [ i686-linux, x86_64-linux ] + beamable: [ i686-linux, x86_64-darwin, x86_64-linux ] + beautifHOL: [ i686-linux, x86_64-darwin, x86_64-linux ] + bed-and-breakfast: [ i686-linux, x86_64-linux ] + Befunge93: [ i686-linux, x86_64-linux ] + bein: [ i686-linux, x86_64-darwin, x86_64-linux ] + bencoding: [ i686-linux, x86_64-linux ] + berkeleydb: [ i686-linux, x86_64-linux ] + BerkeleyDBXML: [ i686-linux, x86_64-linux ] + berp: [ i686-linux, x86_64-linux ] + bet: [ i686-linux, x86_64-linux ] + bff-mono: [ i686-linux, x86_64-linux ] + bff: [ i686-linux, x86_64-darwin, x86_64-linux ] + bgzf: [ i686-linux, x86_64-linux ] + bibdb: [ i686-linux, x86_64-linux ] + bidirectionalization-combined: [ i686-linux, x86_64-darwin, x86_64-linux ] + bidispec: [ i686-linux, x86_64-linux ] + BiGUL: [ i686-linux, x86_64-linux ] + billboard-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + billeksah-forms: [ i686-linux, x86_64-linux ] + billeksah-main: [ i686-linux, x86_64-linux ] + billeksah-pane: [ i686-linux, x86_64-linux ] + billeksah-services: [ i686-linux, x86_64-linux ] + bimaps: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-derive: [ i686-linux, x86_64-darwin, x86_64-linux ] + binary-file: [ i686-linux, x86_64-linux ] + binary-indexed-tree: [ i686-linux, x86_64-linux ] + binary-protocol-zmq: [ i686-linux, x86_64-linux ] + binary-streams: [ i686-linux, x86_64-linux ] + bind-marshal: [ i686-linux, x86_64-linux ] + binding-gtk: [ i686-linux, x86_64-linux ] + binding-wx: [ x86_64-darwin ] + bindings-apr-util: [ i686-linux, x86_64-linux ] + bindings-apr: [ i686-linux, x86_64-linux ] + bindings-bfd: [ i686-linux, x86_64-linux ] + bindings-cctools: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-codec2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-common: [ i686-linux, x86_64-linux ] + bindings-dc1394: [ i686-linux, x86_64-linux ] + bindings-eskit: [ i686-linux, x86_64-linux ] + bindings-EsounD: [ i686-linux, x86_64-linux ] + bindings-fann: [ i686-linux, x86_64-linux ] + bindings-friso: [ i686-linux, x86_64-linux ] + bindings-gsl: [ i686-linux, x86_64-linux ] + bindings-gts: [ i686-linux, x86_64-linux ] + bindings-hamlib: [ x86_64-darwin ] + bindings-hdf5: [ i686-linux, x86_64-linux ] + bindings-K8055: [ i686-linux, x86_64-linux ] + bindings-libftdi: [ i686-linux, x86_64-linux ] + bindings-librrd: [ i686-linux, x86_64-linux ] + bindings-libstemmer: [ i686-linux, x86_64-linux ] + bindings-libv4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-libzip: [ i686-linux, x86_64-darwin, x86_64-linux ] + bindings-linux-videodev2: [ i686-linux, x86_64-linux ] + bindings-mpdecimal: [ i686-linux, x86_64-linux ] + bindings-portaudio: [ x86_64-darwin ] + bindings-sane: [ i686-linux, x86_64-linux ] + bindings-sc3: [ i686-linux, x86_64-linux ] + bindings-sipc: [ i686-linux, x86_64-linux ] + bindings-wlc: [ i686-linux, x86_64-linux ] + bindynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + bio: [ i686-linux, x86_64-linux ] + Biobase: [ i686-linux, x86_64-linux ] + BiobaseBlast: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseDotP: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseFasta: [ i686-linux, x86_64-linux ] + BiobaseFR3D: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseInfernal: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseMAF: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTrainingData: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTurner: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseVienna: [ i686-linux, x86_64-darwin, x86_64-linux ] + BiobaseXNA: [ i686-linux, x86_64-darwin, x86_64-linux ] + biohazard: [ i686-linux, x86_64-darwin, x86_64-linux ] + bioinformatics-toolkit: [ i686-linux, x86_64-linux ] + biophd: [ i686-linux, x86_64-linux ] + biosff: [ i686-linux, x86_64-linux ] + biostockholm: [ i686-linux, x86_64-linux ] + bird: [ i686-linux, x86_64-darwin, x86_64-linux ] + BirdPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + bit-vector: [ i686-linux ] + bitcoin-payment-channel: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitcoin-rpc: [ i686-linux, x86_64-linux ] + bitly-cli: [ i686-linux, x86_64-linux ] + Bitly: [ i686-linux, x86_64-linux ] + bitmaps: [ i686-linux, x86_64-linux ] + bits-conduit: [ i686-linux, x86_64-linux ] + bitset: [ i686-linux, x86_64-darwin, x86_64-linux ] + bitspeak: [ i686-linux, x86_64-linux ] + bitstream: [ i686-linux, x86_64-linux ] + bittorrent: [ i686-linux, x86_64-linux ] + bkr: [ i686-linux, x86_64-linux ] + bla: [ i686-linux, x86_64-darwin, x86_64-linux ] + black-jewel: [ i686-linux, x86_64-darwin, x86_64-linux ] + blake2: [ i686-linux ] + blakesum-demo: [ i686-linux, x86_64-darwin, x86_64-linux ] + blakesum: [ i686-linux, x86_64-linux ] + blas-hs: [ i686-linux, x86_64-linux ] + blas: [ i686-linux, x86_64-linux ] + blaze-html-contrib: [ i686-linux, x86_64-linux ] + blaze-html-hexpat: [ i686-linux, x86_64-linux ] + blaze-textual-native: [ i686-linux, x86_64-linux ] + blip: [ i686-linux, x86_64-linux ] + Blobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + blogination: [ i686-linux, x86_64-darwin, x86_64-linux ] + BlogLiterately-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + BlogLiterately: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloodhound-amazonka-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + bloomfilter-redis: [ i686-linux, x86_64-linux ] + blosum: [ i686-linux, x86_64-linux ] + bloxorz: [ x86_64-darwin ] + blubber-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + blubber: [ i686-linux, x86_64-darwin, x86_64-linux ] + Blueprint: [ i686-linux, x86_64-linux ] + bluetile: [ i686-linux, x86_64-darwin, x86_64-linux ] + BNFC-meta: [ i686-linux, x86_64-linux ] + board-games: [ i686-linux, x86_64-linux ] + bogre-banana: [ i686-linux, x86_64-linux ] + bond-haskell-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + bond: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bookshelf: [ i686-linux, x86_64-darwin, x86_64-linux ] + boolean-normal-forms: [ i686-linux, x86_64-linux ] + boomerang: [ i686-linux, x86_64-linux ] + boomslang: [ i686-linux, x86_64-linux ] + borel: [ i686-linux, x86_64-darwin, x86_64-linux ] + bot: [ i686-linux, x86_64-linux ] + bound-gen: [ i686-linux, x86_64-linux ] + bound: [ i686-linux, x86_64-linux ] + braid: [ i686-linux, x86_64-darwin, x86_64-linux ] + Bravo: [ i686-linux, x86_64-linux ] + breakout: [ i686-linux, x86_64-darwin, x86_64-linux ] + breve: [ x86_64-darwin ] + brians-brain: [ i686-linux, x86_64-linux ] + brillig: [ i686-linux, x86_64-linux ] + broker-haskell: [ i686-linux, x86_64-linux ] + bsd-sysctl: [ i686-linux, x86_64-linux ] + bson-generics: [ i686-linux, x86_64-linux ] + bson-mapping: [ i686-linux, x86_64-linux ] + btree-concurrent: [ i686-linux, x86_64-linux ] + buffer-builder-aeson: [ i686-linux, x86_64-linux ] + buffer-builder: [ i686-linux, x86_64-linux ] + buffon: [ i686-linux, x86_64-linux ] + buildbox-tools: [ i686-linux, x86_64-linux ] + buildwrapper: [ i686-linux, x86_64-linux ] + bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + buster-gtk: [ i686-linux, x86_64-linux ] + buster-network: [ i686-linux, x86_64-linux ] + Buster: [ i686-linux, x86_64-linux ] + buster: [ i686-linux, x86_64-linux ] + bustle: [ i686-linux, x86_64-darwin, x86_64-linux ] + butterflies: [ i686-linux, x86_64-darwin, x86_64-linux ] + bv: [ i686-linux, x86_64-darwin, x86_64-linux ] + bytable: [ i686-linux, x86_64-linux ] + bytestring-class: [ i686-linux, x86_64-linux ] + bytestring-csv: [ i686-linux, x86_64-linux ] + bytestring-rematch: [ i686-linux, x86_64-linux ] + bytestringparser: [ i686-linux, x86_64-linux ] + bytestringreadp: [ i686-linux, x86_64-linux ] + c-io: [ i686-linux, x86_64-linux ] + cabal-constraints: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-debian: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-dev: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabal-ghc-dynflags: [ i686-linux, x86_64-linux ] + cabal-ghci: [ i686-linux, x86_64-linux ] + cabal-graphdeps: [ i686-linux, x86_64-linux ] + Cabal-ide-backend: [ i686-linux, x86_64-linux ] + cabal-install-bundle: [ i686-linux, x86_64-linux ] + cabal-install-ghc72: [ i686-linux, x86_64-linux ] + cabal-install-ghc74: [ i686-linux, x86_64-linux ] + cabal-query: [ i686-linux, x86_64-linux ] + cabal-setup: [ i686-linux, x86_64-linux ] + cabal-test: [ i686-linux, x86_64-linux ] + cabal-upload: [ i686-linux, x86_64-linux ] + cabal2arch: [ i686-linux, x86_64-linux ] + cabal2doap: [ i686-linux, x86_64-linux ] + cabal2ghci: [ i686-linux, x86_64-linux ] + cabal2spec: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalgraph: [ i686-linux, x86_64-linux ] + cabalmdvrpm: [ i686-linux, x86_64-darwin, x86_64-linux ] + cabalrpmdeps: [ i686-linux, x86_64-darwin, x86_64-linux ] + CabalSearch: [ i686-linux, x86_64-linux ] + cabalvchk: [ i686-linux, x86_64-linux ] + cabocha: [ i686-linux, x86_64-linux ] + cake3: [ i686-linux, x86_64-linux ] + cakyrespa: [ i686-linux, x86_64-linux ] + cal3d-examples: [ i686-linux, x86_64-linux ] + cal3d-opengl: [ i686-linux, x86_64-linux ] + cal3d: [ i686-linux, x86_64-linux ] + calc: [ i686-linux, x86_64-darwin, x86_64-linux ] + caldims: [ i686-linux, x86_64-darwin, x86_64-linux ] + caledon: [ i686-linux, x86_64-linux ] + call-haskell-from-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + call: [ i686-linux, x86_64-darwin, x86_64-linux ] + camfort: [ i686-linux, x86_64-linux ] + campfire: [ i686-linux, x86_64-darwin, x86_64-linux ] + cantor: [ i686-linux, x86_64-linux ] + cao: [ i686-linux, x86_64-linux ] + cap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Capabilities: [ i686-linux, x86_64-linux ] + capri: [ i686-linux, x86_64-linux ] + car-pool: [ i686-linux, x86_64-darwin, x86_64-linux ] + carboncopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + carettah: [ i686-linux, x86_64-linux ] + casadi-bindings-control: [ i686-linux, x86_64-linux ] + casadi-bindings-core: [ i686-linux, x86_64-linux ] + casadi-bindings-internal: [ i686-linux, x86_64-linux ] + casadi-bindings-ipopt-interface: [ i686-linux, x86_64-linux ] + casadi-bindings-snopt-interface: [ i686-linux, x86_64-linux ] + casadi-bindings: [ i686-linux, x86_64-linux ] + Cascade: [ i686-linux, x86_64-linux ] + cascading: [ i686-linux, x86_64-linux ] + cash: [ i686-linux, x86_64-darwin, x86_64-linux ] + cassandra-thrift: [ i686-linux, x86_64-linux ] + cassava-conduit: [ i686-linux, x86_64-linux ] + cassy: [ i686-linux, x86_64-darwin, x86_64-linux ] + casui: [ i686-linux, x86_64-darwin, x86_64-linux ] + catamorphism: [ i686-linux, x86_64-linux ] + Catana: [ i686-linux, x86_64-linux ] + categorical-algebra: [ i686-linux, x86_64-linux ] + category-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + CBOR: [ i686-linux, x86_64-linux ] + CC-delcont-alt: [ i686-linux, x86_64-linux ] + CC-delcont-cxe: [ i686-linux, x86_64-linux ] + CC-delcont-exc: [ i686-linux, x86_64-linux ] + CC-delcont-ref-tf: [ i686-linux, x86_64-linux ] + CC-delcont-ref: [ i686-linux, x86_64-linux ] + CCA: [ i686-linux, x86_64-linux ] + cci: [ i686-linux, x86_64-linux ] + cctools-workqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + cedict: [ i686-linux, x86_64-linux ] + ceilometer-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + cerberus: [ i686-linux, x86_64-linux ] + cereal-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + cereal-ieee754: [ i686-linux, x86_64-linux ] + cereal-plus: [ i686-linux, x86_64-linux ] + certificate: [ i686-linux, x86_64-darwin, x86_64-linux ] + cf: [ i686-linux, x86_64-linux ] + cfipu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cflp: [ i686-linux, x86_64-linux ] + cfopu: [ i686-linux, x86_64-darwin, x86_64-linux ] + cgen: [ i686-linux, x86_64-linux ] + cgi-utils: [ i686-linux, x86_64-linux ] + chalkboard-viewer: [ i686-linux, x86_64-linux ] + chalkboard: [ i686-linux, x86_64-linux ] + charade: [ i686-linux, x86_64-darwin, x86_64-linux ] + Chart-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + chatter: [ i686-linux, x86_64-linux ] + chatty-text: [ i686-linux, x86_64-linux ] + chatty: [ i686-linux, x86_64-linux ] + check-pvp: [ i686-linux, x86_64-linux ] + checked: [ i686-linux, x86_64-linux ] + chell-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] + chevalier-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + Chitra: [ i686-linux, x86_64-linux ] + chorale: [ i686-linux, x86_64-linux ] + chp-mtl: [ i686-linux, x86_64-linux ] + chp-plus: [ i686-linux, x86_64-linux ] + chp-spec: [ i686-linux, x86_64-linux ] + chp-transformers: [ i686-linux, x86_64-linux ] + chp: [ i686-linux, x86_64-linux ] + ChristmasTree: [ i686-linux, x86_64-linux ] + chuchu: [ i686-linux, x86_64-linux ] + chunks: [ i686-linux, x86_64-darwin, x86_64-linux ] + cil: [ i686-linux, x86_64-linux ] + cinvoke: [ i686-linux, x86_64-linux ] + cio: [ i686-linux, x86_64-linux ] + citation-resolve: [ i686-linux, x86_64-linux ] + citeproc-hs-pandoc-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + citeproc-hs: [ i686-linux, x86_64-linux ] + cjk: [ i686-linux, x86_64-linux ] + clafer: [ i686-linux, x86_64-linux ] + claferIG: [ i686-linux, x86_64-linux ] + claferwiki: [ i686-linux, x86_64-darwin, x86_64-linux ] clang-pure: [ i686-linux, x86_64-linux, x86_64-darwin ] + CLASE: [ i686-linux, x86_64-darwin, x86_64-linux ] + clash-ghc: [ i686-linux, x86_64-linux ] + clash-prelude-quickcheck: [ i686-linux, x86_64-linux ] + clash: [ i686-linux, x86_64-darwin, x86_64-linux ] + ClassLaws: [ i686-linux, x86_64-linux ] + ClassyPrelude: [ i686-linux, x86_64-linux ] + clckwrks-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-dot-com: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-bugs: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-ircbot: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-media: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-plugin-page: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-clckwrks: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks-theme-geo-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + clckwrks: [ i686-linux, x86_64-darwin, x86_64-linux ] + clean-home: [ i686-linux, x86_64-darwin, x86_64-linux ] + clean-unions: [ i686-linux, x86_64-linux ] + Clean: [ i686-linux, x86_64-linux ] + clevercss: [ i686-linux, x86_64-linux ] + click-clack: [ i686-linux, x86_64-darwin, x86_64-linux ] + clifford: [ i686-linux, x86_64-linux ] + clipper: [ i686-linux, x86_64-linux ] + clippings: [ i686-linux, x86_64-darwin, x86_64-linux ] + clocked: [ i686-linux, x86_64-linux ] + clogparse: [ i686-linux, x86_64-darwin, x86_64-linux ] + clone-all: [ i686-linux, x86_64-linux ] + cloud-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + cloudfront-signer: [ i686-linux, x86_64-linux ] + cloudyfs: [ i686-linux, x86_64-linux ] + clua: [ i686-linux, x86_64-darwin, x86_64-linux ] + cluss: [ i686-linux, x86_64-darwin, x86_64-linux ] + clustertools: [ i686-linux, x86_64-linux ] + clutterhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmath: [ i686-linux, x86_64-linux ] + cmathml3: [ i686-linux, x86_64-linux ] + CMCompare: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmdargs-browser: [ i686-linux, x86_64-linux ] + cmdtheline: [ i686-linux, x86_64-darwin, x86_64-linux ] + cmonad: [ i686-linux, x86_64-linux ] + cmph: [ i686-linux, x86_64-linux ] + cnc-spec-compiler: [ i686-linux, x86_64-linux ] + cndict: [ i686-linux, x86_64-linux ] + Coadjute: [ i686-linux, x86_64-linux ] + Codec-Image-DevIL: [ i686-linux, x86_64-linux ] + codec-libevent: [ i686-linux, x86_64-linux ] + codec: [ i686-linux, x86_64-linux ] + codecov-haskell: [ i686-linux, x86_64-linux ] + codemonitor: [ i686-linux, x86_64-darwin, x86_64-linux ] + codepad: [ i686-linux, x86_64-linux ] + codex: [ i686-linux, x86_64-linux ] + cognimeta-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + coin: [ i686-linux, x86_64-darwin, x86_64-linux ] + coinbase-exchange: [ i686-linux, x86_64-linux ] + colada: [ i686-linux, x86_64-linux ] + collada-output: [ i686-linux, x86_64-darwin, x86_64-linux ] + collada-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + collections-api: [ i686-linux, x86_64-linux ] + collections-base-instances: [ i686-linux, x86_64-linux ] + collections: [ i686-linux, x86_64-linux ] + color-counter: [ i686-linux, x86_64-darwin, x86_64-linux ] + coltrane: [ i686-linux, x86_64-linux ] + com: [ i686-linux, x86_64-linux ] + combinat-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinat: [ i686-linux, x86_64-darwin, x86_64-linux ] + combinator-interactive: [ i686-linux, x86_64-linux ] + combinatorial-problems: [ i686-linux, x86_64-linux ] + Combinatorrent: [ i686-linux, x86_64-linux ] + combobuffer: [ i686-linux, x86_64-linux ] + comfort-graph: [ i686-linux, x86_64-linux ] + Commando: [ i686-linux, x86_64-linux ] + commodities: [ i686-linux, x86_64-linux ] + commsec-keyexchange: [ i686-linux, x86_64-linux ] + commsec: [ i686-linux, x86_64-linux ] + comonad-extras: [ i686-linux, x86_64-linux ] + comonad-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + compact-map: [ i686-linux, x86_64-linux ] + compact-string: [ i686-linux, x86_64-darwin, x86_64-linux ] + compdata-automata: [ i686-linux, x86_64-linux ] + compdata-dags: [ i686-linux, x86_64-linux ] + compensated: [ i686-linux, x86_64-darwin, x86_64-linux ] + compilation: [ i686-linux, x86_64-linux ] + complex-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + complexity: [ i686-linux, x86_64-linux ] + compose-trans: [ i686-linux, x86_64-linux ] + compression: [ i686-linux, x86_64-linux ] + compstrat: [ i686-linux, x86_64-linux ] + comptrans: [ i686-linux, x86_64-linux ] + computational-algebra: [ i686-linux, x86_64-linux ] + concraft-hr: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft-pl: [ i686-linux, x86_64-darwin, x86_64-linux ] + concraft: [ i686-linux, x86_64-darwin, x86_64-linux ] + concrete-typerep: [ i686-linux, x86_64-linux ] + concurrent-machines: [ i686-linux, x86_64-linux ] + concurrent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConcurrentUtils: [ i686-linux, x86_64-linux ] + Condor: [ i686-linux, x86_64-linux ] + condor: [ i686-linux, x86_64-linux ] + condorcet: [ i686-linux, x86_64-linux ] + conductive-hsc3: [ i686-linux, x86_64-linux ] + conduit-audio-lame: [ i686-linux, x86_64-linux ] + conduit-audio-samplerate: [ i686-linux, x86_64-linux ] + conduit-network-stream: [ i686-linux, x86_64-linux ] + conduit-resumablesink: [ i686-linux, x86_64-linux ] + config-manager: [ i686-linux, x86_64-linux ] + config-select: [ i686-linux, x86_64-linux ] + ConfigFileTH: [ i686-linux, x86_64-linux ] + Configger: [ i686-linux, x86_64-darwin, x86_64-linux ] + conjure: [ i686-linux, x86_64-linux ] + consistent: [ i686-linux, x86_64-linux ] + const-math-ghc-plugin: [ i686-linux, x86_64-linux ] + constrained-categories: [ i686-linux, x86_64-darwin, x86_64-linux ] + ConstraintKinds: [ i686-linux, x86_64-linux ] + constructible: [ i686-linux, x86_64-darwin, x86_64-linux ] + constructive-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + Consumer: [ i686-linux, x86_64-linux ] + consumers: [ i686-linux, x86_64-linux ] + container: [ i686-linux, x86_64-darwin, x86_64-linux ] + context-stack: [ i686-linux, x86_64-linux ] + continue: [ i686-linux, x86_64-linux ] + continuum: [ i686-linux, x86_64-linux ] + Contract: [ i686-linux, x86_64-darwin, x86_64-linux ] + control-event: [ i686-linux, x86_64-linux ] + control-monad-attempt: [ i686-linux, x86_64-linux ] + control-monad-failure-mtl: [ i686-linux, x86_64-linux ] + control-monad-failure: [ i686-linux, x86_64-linux ] + Control-Monad-MultiPass: [ i686-linux, x86_64-linux ] + Control-Monad-ST2: [ i686-linux, x86_64-linux ] + contstuff-monads-tf: [ i686-linux, x86_64-linux ] + contstuff-transformers: [ i686-linux, x86_64-linux ] + convert: [ i686-linux, x86_64-darwin, x86_64-linux ] + convertible-ascii: [ i686-linux, x86_64-linux ] + convertible-text: [ i686-linux, x86_64-linux ] + copilot-cbmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot-language: [ i686-linux, x86_64-linux ] + copilot-libraries: [ i686-linux, x86_64-linux ] + copilot-sbv: [ i686-linux, x86_64-darwin, x86_64-linux ] + copilot-theorem: [ i686-linux, x86_64-linux ] + copilot: [ i686-linux, x86_64-darwin, x86_64-linux ] + COrdering: [ i686-linux, x86_64-linux ] + core-haskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + core: [ i686-linux, x86_64-linux ] + corebot-bliki: [ i686-linux, x86_64-darwin, x86_64-linux ] + CoreDump: [ i686-linux, x86_64-linux ] + CoreFoundation: [ i686-linux, x86_64-darwin, x86_64-linux ] + coroutine-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + Coroutine: [ i686-linux, x86_64-linux ] + couch-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + couch-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + couchdb-conduit: [ i686-linux, x86_64-linux ] + couchdb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + CouchDB: [ i686-linux, x86_64-linux ] + court: [ i686-linux, x86_64-linux ] + CPBrainfuck: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpio-conduit: [ i686-linux, x86_64-linux ] + cplex-hs: [ i686-linux, x86_64-linux ] + cplusplus-th: [ i686-linux, x86_64-linux ] + cpsa: [ i686-linux, x86_64-darwin, x86_64-linux ] + cpuperf: [ i686-linux, x86_64-linux ] + cql-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + cql: [ i686-linux, x86_64-darwin, x86_64-linux ] + cqrs-postgresql: [ i686-linux, x86_64-linux ] + cqrs-sqlite3: [ i686-linux, x86_64-linux ] + cqrs-test: [ i686-linux, x86_64-linux ] + cr: [ i686-linux, x86_64-linux ] + crack: [ i686-linux, x86_64-linux ] + Craft3e: [ i686-linux, x86_64-linux ] + craftwerk-cairo: [ i686-linux, x86_64-linux ] + craftwerk-gtk: [ i686-linux, x86_64-linux ] + craftwerk: [ i686-linux, x86_64-linux ] + craze: [ i686-linux, x86_64-linux ] + crc16: [ i686-linux, x86_64-darwin, x86_64-linux ] + crc: [ i686-linux, x86_64-linux ] + creatur: [ i686-linux, x86_64-linux ] + crf-chain1-constrained: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain1: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + crf-chain2-tiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + criterion-plus: [ i686-linux, x86_64-linux ] + crocodile: [ i686-linux, x86_64-linux ] + cron-compat: [ i686-linux, x86_64-linux ] + cruncher-types: [ i686-linux, x86_64-linux ] + crunghc: [ i686-linux, x86_64-linux ] + crypto-cipher-benchmarks: [ i686-linux, x86_64-linux ] + crypto-classical: [ i686-linux, x86_64-linux ] + crypto-enigma: [ i686-linux, x86_64-linux ] + cryptol: [ i686-linux, x86_64-darwin, x86_64-linux ] + cryptonite-openssl: [ i686-linux, x86_64-linux ] + cryptsy-api: [ i686-linux, x86_64-linux ] + crystalfontz: [ i686-linux, x86_64-darwin, x86_64-linux ] + cse-ghc-plugin: [ i686-linux, x86_64-linux ] + csound-catalog: [ i686-linux, x86_64-linux, x86_64-darwin ] + csp: [ i686-linux, x86_64-linux ] + CSPM-cspm: [ i686-linux, x86_64-linux ] + CSPM-Frontend: [ i686-linux, x86_64-linux ] + CSPM-Interpreter: [ i686-linux, x86_64-linux ] + CSPM-ToProlog: [ i686-linux, x86_64-linux ] + cspmchecker: [ i686-linux, x86_64-linux ] + css: [ i686-linux, x86_64-linux ] + csv-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + ctemplate: [ i686-linux, x86_64-linux ] + ctkl: [ i686-linux, x86_64-linux ] + ctpl: [ i686-linux, x86_64-linux ] + cubicbezier: [ i686-linux, x86_64-linux ] + cuboid: [ i686-linux ] + cudd: [ i686-linux, x86_64-linux ] + curry-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + curry-frontend: [ i686-linux, x86_64-darwin, x86_64-linux ] + CurryDB: [ i686-linux, x86_64-linux ] + curves: [ i686-linux, x86_64-linux ] + custom-prelude: [ i686-linux, x86_64-linux ] + CV: [ i686-linux, x86_64-darwin, x86_64-linux ] + cyclotomic: [ i686-linux ] + cypher: [ i686-linux, x86_64-linux ] + d-bus: [ i686-linux, x86_64-linux ] + DAG-Tournament: [ i686-linux, x86_64-linux ] + Dangerous: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dao: [ i686-linux, x86_64-linux ] + dao: [ i686-linux, x86_64-linux ] + dapi: [ i686-linux, x86_64-linux ] + darcs-benchmark: [ i686-linux, x86_64-linux ] + darcs-beta: [ i686-linux, x86_64-linux ] + darcs-buildpackage: [ i686-linux, x86_64-linux ] + darcs-cabalized: [ i686-linux, x86_64-linux ] + darcs-fastconvert: [ i686-linux, x86_64-linux ] + darcs-graph: [ i686-linux, x86_64-linux ] + darcs-monitor: [ i686-linux, x86_64-linux ] + darcs2dot: [ i686-linux, x86_64-linux ] + darcsden: [ i686-linux, x86_64-darwin, x86_64-linux ] + DarcsHelpers: [ i686-linux, x86_64-linux ] + darcswatch: [ i686-linux, x86_64-linux ] + darkplaces-demo: [ i686-linux, x86_64-linux ] + dash-haskell: [ i686-linux, x86_64-linux ] + data-accessor-template: [ i686-linux, x86_64-linux ] + data-category: [ i686-linux, x86_64-linux ] + data-cycle: [ i686-linux, x86_64-linux ] + data-dispersal: [ i686-linux, x86_64-linux ] + data-dword: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-easy: [ i686-linux, x86_64-linux ] + data-fin: [ i686-linux, x86_64-linux ] + data-flags: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-ivar: [ i686-linux, x86_64-linux ] + data-layer: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-fd: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-named: [ i686-linux, x86_64-linux ] + data-nat: [ i686-linux, x86_64-linux ] + data-object-json: [ i686-linux, x86_64-linux ] + data-object-yaml: [ i686-linux, x86_64-linux ] + data-quotientref: [ i686-linux, x86_64-linux ] + data-result: [ i686-linux, x86_64-darwin, x86_64-linux ] + Data-Rope: [ i686-linux, x86_64-linux ] + data-rope: [ i686-linux, x86_64-linux ] + data-rtuple: [ i686-linux, x86_64-linux ] + data-store: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-stringmap: [ i686-linux, x86_64-linux ] + data-transform: [ i686-linux, x86_64-darwin, x86_64-linux ] + data-type: [ i686-linux, x86_64-linux ] + datadog: [ i686-linux, x86_64-linux ] + datalog: [ i686-linux, x86_64-darwin, x86_64-linux ] + DataTreeView: [ i686-linux, x86_64-linux ] + dbjava: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbmigrations: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + dbus-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + DBus: [ i686-linux, x86_64-linux ] + dclabel: [ i686-linux, x86_64-linux ] + ddc-build: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-core-eval: [ i686-linux, x86_64-linux ] + ddc-core-flow: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-driver: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + ddc-war: [ i686-linux, x86_64-linux ] + ddci-core: [ i686-linux, x86_64-linux ] + dead-code-detection: [ i686-linux, x86_64-linux ] + dead-simple-json: [ i686-linux, x86_64-linux ] + debian-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + debian: [ i686-linux, x86_64-linux ] + decepticons: [ i686-linux, x86_64-linux ] + DecisionTree: [ i686-linux, x86_64-linux ] + decoder-conduit: [ i686-linux, x86_64-linux ] + dedukti: [ i686-linux, x86_64-linux ] + deeplearning-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-bounded: [ i686-linux, x86_64-darwin, x86_64-linux ] + deepseq-th: [ i686-linux, x86_64-linux ] + deepzoom: [ i686-linux, x86_64-linux ] + defargs: [ i686-linux, x86_64-darwin, x86_64-linux ] + DefendTheKing: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-base: [ i686-linux, x86_64-linux ] + definitive-filesystem: [ i686-linux, x86_64-linux ] + definitive-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + definitive-parser: [ i686-linux, x86_64-linux ] + definitive-reactive: [ i686-linux, x86_64-linux ] + definitive-sound: [ i686-linux, x86_64-linux ] + deka-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + deka: [ i686-linux, x86_64-linux ] + delicious: [ i686-linux, x86_64-linux ] + delta-h: [ i686-linux, x86_64-linux ] + delta: [ i686-linux, x86_64-linux ] + demarcate: [ i686-linux, x86_64-linux ] + denominate: [ i686-linux, x86_64-linux ] + dependent-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + depends: [ i686-linux, x86_64-linux ] + dephd: [ i686-linux, x86_64-linux ] + dequeue: [ i686-linux, x86_64-darwin, x86_64-linux ] + derangement: [ i686-linux, x86_64-linux ] + derivation-trees: [ i686-linux, x86_64-linux ] + derive-gadt: [ i686-linux, x86_64-linux ] + derive-IG: [ i686-linux, x86_64-linux ] + derive-monoid: [ i686-linux, x86_64-linux ] + derive-topdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + derive-trie: [ i686-linux, x86_64-linux ] + derp-lib: [ i686-linux, x86_64-linux ] + dewdrop: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dflow: [ i686-linux, x86_64-linux ] + dfsbuild: [ i686-linux, x86_64-darwin, x86_64-linux ] + dgim: [ i686-linux, x86_64-linux ] + dgs: [ i686-linux, x86_64-linux ] + diagrams-builder: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-canvas: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-graphviz: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-haddock: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-hsqml: [ i686-linux, x86_64-linux ] + diagrams-html5: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-pgf: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-postscript: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-qrcode: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-rasterific: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-reflex: [ i686-linux, x86_64-linux ] + diagrams-rubiks-cube: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-svg: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-tikz: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + dialog: [ i686-linux, x86_64-linux ] + dice-entropy-conduit: [ i686-linux, x86_64-linux ] + dice: [ i686-linux, x86_64-darwin, x86_64-linux ] + dictparser: [ i686-linux, x86_64-linux ] + diffcabal: [ i686-linux, x86_64-linux ] + DifferenceLogic: [ i686-linux, x86_64-linux ] + DifferentialEvolution: [ i686-linux, x86_64-darwin, x86_64-linux ] + digestive-functors-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + digestive-functors-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DigitalOcean: [ i686-linux, x86_64-linux ] + DimensionalHash: [ i686-linux, x86_64-linux ] + dingo-core: [ i686-linux, x86_64-linux ] + dingo-example: [ i686-linux, x86_64-linux ] + dingo-widgets: [ i686-linux, x86_64-linux ] + diophantine: [ i686-linux, x86_64-linux ] + diplomacy-server: [ i686-linux, x86_64-linux ] + direct-binary-files: [ i686-linux, x86_64-linux ] + direct-fastcgi: [ i686-linux, x86_64-linux ] + direct-http: [ i686-linux, x86_64-linux ] + direct-plugins: [ i686-linux, x86_64-linux ] + directed-cubical: [ i686-linux, x86_64-linux ] + dirfiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + discogs-haskell: [ i686-linux, x86_64-linux ] + discount: [ i686-linux, x86_64-linux ] + disjoint-set: [ i686-linux, x86_64-linux ] + DisTract: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-closure: [ i686-linux, x86_64-linux ] + distributed-process-async: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-azure: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-client-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-ekg: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-execution: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-lifted: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-monad-control: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-p2p: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-registry: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-simplelocalnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-supervisor: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-task: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process-zookeeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-process: [ i686-linux, x86_64-darwin, x86_64-linux ] + distributed-static: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + dixi: [ i686-linux, x86_64-darwin, x86_64-linux ] + djinn-th: [ i686-linux, x86_64-linux ] + DMuCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + DnaProteinAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + dnscache: [ i686-linux, x86_64-linux ] + doc-review: [ i686-linux, x86_64-darwin, x86_64-linux ] + doccheck: [ i686-linux, x86_64-linux ] + docidx: [ i686-linux, x86_64-linux ] + docker: [ i686-linux, x86_64-linux ] + dockercook: [ i686-linux, x86_64-darwin, x86_64-linux ] + doctest-discover-configurator: [ i686-linux, x86_64-linux ] + doctest-discover: [ i686-linux, x86_64-linux ] + DocTest: [ i686-linux, x86_64-darwin, x86_64-linux ] + DOM: [ i686-linux, x86_64-linux ] + dominion: [ i686-linux, x86_64-darwin, x86_64-linux ] + dotenv: [ i686-linux, x86_64-linux ] + dotfs: [ i686-linux, x86_64-linux ] + dow: [ x86_64-darwin ] + download-media-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + download: [ i686-linux, x86_64-darwin, x86_64-linux ] + dozenal: [ i686-linux, x86_64-linux ] + DP: [ i686-linux, x86_64-linux ] + dph-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-base: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-copy: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-lifted-vseg: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-interface: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-par: [ i686-linux, x86_64-darwin, x86_64-linux ] + dph-prim-seq: [ i686-linux, x86_64-darwin, x86_64-linux ] + dpkg: [ i686-linux, x86_64-linux ] + DPM: [ i686-linux, x86_64-darwin, x86_64-linux ] + drClickOn: [ i686-linux, x86_64-linux ] + dresdner-verkehrsbetriebe: [ i686-linux, x86_64-linux ] + DrHylo: [ i686-linux, x86_64-linux ] + DrIFT-cabalized: [ i686-linux, x86_64-linux ] + DrIFT: [ i686-linux, x86_64-linux ] + dropbox-sdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + dropsolve: [ i686-linux, x86_64-darwin, x86_64-linux ] + ds-kanren: [ i686-linux, x86_64-linux ] + dsh-sql: [ i686-linux, x86_64-linux ] + DSH: [ i686-linux, x86_64-linux ] + dsmc-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + dsmc: [ i686-linux, x86_64-darwin, x86_64-linux ] + DSTM: [ i686-linux, x86_64-darwin, x86_64-linux ] + dstring: [ i686-linux, x86_64-linux ] + DTC: [ i686-linux, x86_64-linux ] + dtd-text: [ i686-linux, x86_64-linux ] + dtd-types: [ i686-linux, x86_64-linux ] + dtd: [ i686-linux, x86_64-linux ] + duplo: [ i686-linux, x86_64-linux ] + Dust-crypto: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools-pcap: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + Dust: [ i686-linux, x86_64-darwin, x86_64-linux ] + dvda: [ i686-linux, x86_64-linux ] + dvdread: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-cabal: [ i686-linux, x86_64-linux ] + dynamic-graph: [ i686-linux, x86_64-linux ] + dynamic-linker-template: [ i686-linux, x86_64-linux ] + dynamic-object: [ i686-linux, x86_64-linux ] + dynamic-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + dynamic-pp: [ i686-linux, x86_64-darwin, x86_64-linux ] + DynamicTimeWarp: [ i686-linux, x86_64-linux ] + dynobud: [ i686-linux, x86_64-darwin, x86_64-linux ] + DysFRP-Cairo: [ i686-linux, x86_64-linux ] + DysFRP-Craftwerk: [ i686-linux, x86_64-linux ] + easy-api: [ i686-linux, x86_64-linux ] + easyjson: [ i686-linux, x86_64-linux ] + easyplot: [ i686-linux, x86_64-linux ] + easyrender: [ i686-linux, x86_64-linux ] + ebnf-bff: [ i686-linux, x86_64-linux ] + ecdsa: [ i686-linux, x86_64-linux ] + ecma262: [ i686-linux, x86_64-darwin, x86_64-linux ] + ecu: [ i686-linux, x86_64-linux ] + eddie: [ i686-linux, x86_64-darwin, x86_64-linux ] + edenmodules: [ i686-linux, x86_64-linux ] + edenskel: [ i686-linux, x86_64-linux ] + edentv: [ i686-linux, x86_64-linux ] + edge: [ i686-linux, x86_64-darwin, x86_64-linux ] + edit-lenses: [ i686-linux, x86_64-linux ] + editable: [ i686-linux, x86_64-linux ] + editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + EditTimeReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + EEConfig: [ i686-linux, x86_64-darwin, x86_64-linux ] + effect-monad: [ i686-linux, x86_64-linux ] + effective-aspects-mzv: [ i686-linux, x86_64-linux ] + effective-aspects: [ i686-linux, x86_64-linux ] + egison-quote: [ i686-linux, x86_64-linux ] + ehaskell: [ i686-linux, x86_64-linux ] + ehs: [ i686-linux, x86_64-linux ] + eibd-client-simple: [ i686-linux, x86_64-linux ] + EitherT: [ i686-linux, x86_64-linux ] + ekg-rrd: [ i686-linux ] + electrum-mnemonic: [ i686-linux ] + elerea-examples: [ x86_64-darwin ] + elevator: [ i686-linux, x86_64-linux ] + elision: [ i686-linux, x86_64-linux ] + elm-export: [ i686-linux, x86_64-linux ] + emacs-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + email-header: [ i686-linux, x86_64-linux ] + email-postmark: [ i686-linux, x86_64-linux ] + email: [ i686-linux, x86_64-linux ] + embeddock-example: [ i686-linux, x86_64-linux ] + embeddock: [ i686-linux, x86_64-linux ] + embroidery: [ i686-linux, x86_64-darwin, x86_64-linux ] + emgm: [ i686-linux, x86_64-linux ] + Emping: [ i686-linux, x86_64-linux ] + enumerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumeration: [ i686-linux, x86_64-darwin, x86_64-linux ] + enumfun: [ i686-linux, x86_64-linux ] + EnumMap: [ i686-linux, x86_64-linux ] + enummapmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + enummapset-th: [ i686-linux, x86_64-linux ] + env-parser: [ i686-linux, x86_64-linux ] + epoll: [ i686-linux, x86_64-linux ] + epub-metadata: [ i686-linux, x86_64-linux ] + epub-tools: [ i686-linux, x86_64-linux ] + epubname: [ i686-linux, x86_64-linux ] + Eq: [ i686-linux, x86_64-linux ] + equational-reasoning: [ i686-linux, x86_64-linux ] + erf-native: [ i686-linux, x86_64-linux ] + eros-client: [ i686-linux, x86_64-linux ] + eros-http: [ i686-linux, x86_64-linux ] + eros: [ i686-linux, x86_64-linux ] + error-message: [ i686-linux, x86_64-darwin, x86_64-linux ] + ersatz-toysat: [ i686-linux, x86_64-linux ] + esotericbot: [ i686-linux, x86_64-linux ] + EsounD: [ i686-linux, x86_64-darwin, x86_64-linux ] + esqueleto: [ i686-linux, x86_64-linux ] + estimators: [ i686-linux, x86_64-linux ] + estreps: [ i686-linux, x86_64-linux ] + Etage-Graph: [ i686-linux, x86_64-linux ] + Etage: [ i686-linux, x86_64-linux ] + EtaMOO: [ x86_64-darwin ] + Eternal10Seconds: [ i686-linux, x86_64-linux ] + eternal: [ i686-linux, x86_64-linux ] + Etherbunny: [ i686-linux, x86_64-darwin, x86_64-linux ] + ethereum-client-haskell: [ i686-linux, x86_64-linux ] + ethereum-merkle-patricia-db: [ i686-linux, x86_64-linux ] + euphoria: [ i686-linux, x86_64-linux ] + eurofxref: [ i686-linux, x86_64-linux ] + Euterpea: [ i686-linux, x86_64-linux ] + event-driven: [ i686-linux, x86_64-linux ] + event-monad: [ i686-linux, x86_64-darwin, x86_64-linux ] + EventSocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + eventstore: [ x86_64-linux ] + every-bit-counts: [ i686-linux, x86_64-darwin, x86_64-linux ] + ewe: [ i686-linux, x86_64-linux ] + exact-real: [ i686-linux, x86_64-darwin, x86_64-linux ] + exception-hierarchy: [ i686-linux, x86_64-linux ] + exhaustive: [ i686-linux, x86_64-linux ] + exif: [ i686-linux, x86_64-linux ] + existential: [ i686-linux, x86_64-darwin, x86_64-linux ] + exists: [ i686-linux, x86_64-linux ] + exp-extended: [ i686-linux, x86_64-darwin, x86_64-linux ] + exp-pairs: [ i686-linux, x86_64-darwin, x86_64-linux ] + expand: [ i686-linux, x86_64-darwin, x86_64-linux ] + expat-enumerator: [ i686-linux, x86_64-linux ] + explain: [ i686-linux, x86_64-linux ] + explicit-sharing: [ i686-linux, x86_64-linux ] + explore: [ i686-linux, x86_64-darwin, x86_64-linux ] + exposed-containers: [ i686-linux, x86_64-linux ] + extcore: [ i686-linux, x86_64-linux ] + extemp: [ i686-linux, x86_64-darwin, x86_64-linux ] + extended-categories: [ i686-linux, x86_64-linux ] + extensible-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + Extra: [ i686-linux, x86_64-linux ] + ez-couch: [ i686-linux, x86_64-linux ] + faceted: [ i686-linux, x86_64-linux ] + factory: [ i686-linux, x86_64-darwin, x86_64-linux ] + factual-api: [ i686-linux, x86_64-linux ] + fadno-braids: [ i686-linux, x86_64-darwin, x86_64-linux ] + FailureT: [ i686-linux, x86_64-linux ] + falling-turnip: [ i686-linux, x86_64-darwin, x86_64-linux ] + fallingblocks: [ i686-linux, x86_64-linux ] + family-tree: [ i686-linux, x86_64-darwin, x86_64-linux ] + fast-digits: [ i686-linux ] + fast-tags: [ i686-linux, x86_64-darwin, x86_64-linux ] + fastbayes: [ i686-linux, x86_64-linux ] + fastirc: [ i686-linux, x86_64-linux ] + fault-tree: [ i686-linux, x86_64-linux ] + fay-hsx: [ i686-linux, x86_64-linux ] + fcd: [ i686-linux, x86_64-linux ] + fckeditor: [ i686-linux, x86_64-darwin, x86_64-linux ] + FComp: [ i686-linux, x86_64-darwin, x86_64-linux ] + fdo-trash: [ i686-linux, x86_64-linux ] + feed-cli: [ i686-linux, x86_64-linux ] + feed-gipeda: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed-translator: [ i686-linux, x86_64-linux ] + feed2lj: [ i686-linux, x86_64-darwin, x86_64-linux ] + feed2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + feldspar-language: [ i686-linux, x86_64-darwin, x86_64-linux ] + fenfire: [ i686-linux, x86_64-linux ] + FermatsLastMargin: [ i686-linux, x86_64-darwin, x86_64-linux ] + FerryCore: [ i686-linux, x86_64-linux ] + ffeed: [ i686-linux, x86_64-linux ] + ffmpeg-tutorials: [ i686-linux, x86_64-darwin, x86_64-linux ] + fibon: [ i686-linux, x86_64-linux ] + fields: [ i686-linux, x86_64-linux ] + FieldTrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + fieldwise: [ i686-linux, x86_64-linux ] + file-location: [ i686-linux, x86_64-linux ] + filecache: [ x86_64-darwin ] + filediff: [ i686-linux, x86_64-darwin, x86_64-linux ] + FileManip: [ i686-linux, x86_64-linux ] + FileManipCompat: [ i686-linux, x86_64-linux ] + FilePather: [ i686-linux, x86_64-darwin, x86_64-linux ] + filepather: [ i686-linux, x86_64-darwin, x86_64-linux ] + filestore: [ i686-linux, x86_64-linux ] + filesystem-conduit: [ i686-linux, x86_64-linux ] + filesystem-enumerator: [ i686-linux, x86_64-linux ] + FileSystem: [ i686-linux, x86_64-linux ] + Finance-Quote-Yahoo: [ i686-linux, x86_64-linux ] + Finance-Treasury: [ i686-linux, x86_64-darwin, x86_64-linux ] + find-conduit: [ i686-linux, x86_64-linux ] + FiniteMap: [ i686-linux, x86_64-darwin, x86_64-linux ] + firstify: [ i686-linux, x86_64-linux ] + FirstOrderTheory: [ i686-linux, x86_64-linux ] + fishfood: [ i686-linux, x86_64-darwin, x86_64-linux ] + fit: [ i686-linux, x86_64-linux ] + fitsio: [ i686-linux, x86_64-darwin, x86_64-linux ] + fix-parser-simple: [ i686-linux, x86_64-linux ] + fix-symbols-gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] + fixed-point-vector-space: [ i686-linux, x86_64-linux ] + fixed-point-vector: [ i686-linux, x86_64-linux ] + fixed-point: [ i686-linux, x86_64-linux ] + fixed-precision: [ i686-linux, x86_64-linux ] + fixed-storable-array: [ i686-linux, x86_64-linux ] + fixfile: [ i686-linux, x86_64-linux ] + flaccuraterip: [ i686-linux, x86_64-darwin, x86_64-linux ] + flexiwrap-smallcheck: [ i686-linux, x86_64-linux ] + flexiwrap: [ i686-linux, x86_64-linux ] + flickr: [ i686-linux, x86_64-darwin, x86_64-linux ] + Flippi: [ i686-linux, x86_64-darwin, x86_64-linux ] + flite: [ i686-linux, x86_64-darwin, x86_64-linux ] + floating-bits: [ i686-linux, x86_64-linux ] + flow2dot: [ i686-linux, x86_64-linux ] + flowdock-api: [ i686-linux, x86_64-linux ] + flowdock-rest: [ i686-linux, x86_64-linux ] + flower: [ i686-linux, x86_64-linux ] + flowlocks-framework: [ i686-linux, x86_64-linux ] + flowsim: [ i686-linux, x86_64-linux ] fltkhs-demos: [ i686-linux, x86_64-linux, x86_64-darwin ] fltkhs-fluid-demos: [ i686-linux, x86_64-linux, x86_64-darwin ] fltkhs-hello-world: [ i686-linux, x86_64-linux, x86_64-darwin ] + FM-SBLEX: [ i686-linux, x86_64-darwin, x86_64-linux ] + FModExRaw: [ i686-linux, x86_64-linux ] + foldl-incremental: [ i686-linux, x86_64-linux ] + folds-common: [ i686-linux, x86_64-linux ] + follower: [ i686-linux, x86_64-darwin, x86_64-linux ] + foma: [ i686-linux, x86_64-linux ] + font-opengl-basic4x6: [ i686-linux, x86_64-linux ] + foo: [ i686-linux, x86_64-darwin, x86_64-linux ] + for-free: [ i686-linux, x86_64-linux ] + forbidden-fruit: [ i686-linux, x86_64-linux ] + fordo: [ i686-linux, x86_64-linux ] + formal: [ i686-linux, x86_64-darwin, x86_64-linux ] + FormalGrammars: [ i686-linux, x86_64-darwin, x86_64-linux ] + format-status: [ i686-linux, x86_64-linux ] + format: [ i686-linux, x86_64-darwin, x86_64-linux ] + forml: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + formlets: [ i686-linux, x86_64-darwin, x86_64-linux ] + formura: [ i686-linux, x86_64-linux ] + ForSyDe: [ i686-linux, x86_64-darwin, x86_64-linux ] + forth-hll: [ i686-linux, x86_64-linux ] + foscam-sort: [ i686-linux, x86_64-linux ] + Foster: [ i686-linux, x86_64-darwin, x86_64-linux ] + fpco-api: [ i686-linux, x86_64-linux ] + fpnla-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + Fractaler: [ i686-linux, x86_64-linux ] + frag: [ i686-linux, x86_64-linux ] + franchise: [ i686-linux, x86_64-linux ] + Frank: [ i686-linux, x86_64-linux ] + freddy: [ i686-linux, x86_64-linux ] + free-functors: [ i686-linux, x86_64-linux ] + free-game: [ i686-linux, x86_64-linux ] + free-operational: [ i686-linux, x86_64-linux ] + free-theorems-counterexamples: [ i686-linux, x86_64-linux ] + free-theorems-seq-webui: [ i686-linux, x86_64-linux ] + free-theorems-seq: [ i686-linux, x86_64-linux ] + free-theorems-webui: [ i686-linux, x86_64-linux ] + free-theorems: [ i686-linux, x86_64-linux ] + freekick2: [ i686-linux, x86_64-linux ] + freer: [ i686-linux ] + freesect: [ i686-linux, x86_64-linux ] + freesound: [ i686-linux, x86_64-linux ] + FreeTypeGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + friday-juicypixels: [ i686-linux, x86_64-linux ] + frp-arduino: [ i686-linux, x86_64-darwin, x86_64-linux ] + fs-events: [ i686-linux, x86_64-linux ] + fsmActions: [ i686-linux, x86_64-linux ] + ftdi: [ i686-linux, x86_64-linux ] + FTGL-bytestring: [ i686-linux, x86_64-linux ] + ftp-conduit: [ i686-linux, x86_64-linux ] + ftshell: [ i686-linux, x86_64-darwin, x86_64-linux ] + full-sessions: [ i686-linux, x86_64-linux ] + full-text-search: [ i686-linux, x86_64-linux ] + fullstop: [ i686-linux, x86_64-linux ] + funbot-client: [ i686-linux, x86_64-linux ] + funbot-git-hook: [ i686-linux, x86_64-linux ] + funcons-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + function-combine: [ i686-linux, x86_64-linux ] + functional-arrow: [ i686-linux, x86_64-darwin, x86_64-linux ] + functor-utils: [ i686-linux, x86_64-linux ] + functorm: [ i686-linux, x86_64-linux ] + funion: [ i686-linux, x86_64-linux ] + funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + fusion: [ i686-linux, x86_64-linux ] + future: [ i686-linux, x86_64-linux ] + fuzzytime: [ i686-linux, x86_64-linux ] + fwgl-glfw: [ i686-linux, x86_64-linux ] + fwgl: [ i686-linux, x86_64-linux ] + g-npm: [ i686-linux, x86_64-linux ] + gact: [ i686-linux, x86_64-linux ] + gameclock: [ i686-linux, x86_64-linux ] + Gamgine: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ganymede: [ i686-linux, x86_64-linux ] + gbu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gc-monitoring-wai: [ i686-linux, x86_64-linux ] + gd: [ x86_64-darwin ] + gdiff-ig: [ i686-linux, x86_64-linux ] + gdiff-th: [ i686-linux, x86_64-linux ] + gearbox: [ i686-linux, x86_64-linux ] + GeBoP: [ x86_64-darwin ] + geek-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + geek: [ i686-linux, x86_64-linux ] + gelatin: [ i686-linux, x86_64-linux ] + gemstone: [ i686-linux, x86_64-linux ] + gencheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + gender: [ i686-linux, x86_64-linux ] + genders: [ i686-linux, x86_64-linux ] + general-prelude: [ i686-linux, x86_64-linux ] + GeneralTicTacToe: [ i686-linux, x86_64-linux ] + generators: [ i686-linux, x86_64-linux ] + generic-accessors: [ i686-linux, x86_64-linux ] + generic-church: [ i686-linux, x86_64-linux ] + generic-maybe: [ i686-linux, x86_64-linux ] + generic-pretty: [ i686-linux, x86_64-linux ] + generic-random: [ i686-linux, x86_64-linux ] + generic-storable: [ i686-linux, x86_64-linux ] + generic-xml: [ i686-linux, x86_64-darwin, x86_64-linux ] + genericserialize: [ i686-linux, x86_64-linux ] + genetics: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + geni-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenI: [ i686-linux, x86_64-darwin, x86_64-linux ] + geniconvert: [ i686-linux, x86_64-darwin, x86_64-linux ] + genifunctors: [ i686-linux, x86_64-linux ] + geniplate: [ i686-linux, x86_64-linux ] + geniserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenSmsPdu: [ i686-linux, x86_64-darwin, x86_64-linux ] + GenussFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + geo-resolver: [ i686-linux, x86_64-linux ] + GeocoderOpenCage: [ i686-linux, x86_64-linux ] + geodetics: [ i686-linux, x86_64-linux ] + geoip2: [ i686-linux ] + GeoIp: [ i686-linux, x86_64-linux ] + geom2d: [ i686-linux ] + GeomPredicates-SSE: [ i686-linux, x86_64-linux ] + getemx: [ i686-linux, x86_64-darwin, x86_64-linux ] + getflag: [ i686-linux, x86_64-linux ] + gf: [ i686-linux, x86_64-darwin, x86_64-linux ] + ggtsTC: [ i686-linux, x86_64-linux ] + ghc-datasize: [ i686-linux, x86_64-linux ] + ghc-dup: [ i686-linux, x86_64-linux ] + ghc-events-analyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-events-parallel: [ i686-linux, x86_64-linux ] + ghc-exactprint: [ i686-linux, x86_64-linux ] + ghc-generic-instances: [ i686-linux, x86_64-linux ] + ghc-heap-view: [ i686-linux, x86_64-linux ] + ghc-imported-from: [ i686-linux, x86_64-linux ] + ghc-mod: [ i686-linux, x86_64-linux ] + ghc-parser: [ i686-linux, x86_64-linux ] + ghc-pkg-autofix: [ i686-linux, x86_64-linux ] + ghc-pkg-lib: [ i686-linux, x86_64-linux ] + ghc-session: [ i686-linux, x86_64-linux ] + ghc-simple: [ i686-linux, x86_64-linux ] + ghc-syb: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghc-vis: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghci-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ghci-haskeline: [ i686-linux, x86_64-linux ] + ghci-lib: [ i686-linux, x86_64-linux ] + ghci-ng: [ i686-linux, x86_64-linux ] + ghcjs-dom-hello: [ i686-linux, x86_64-linux ] + ghcjs-dom: [ i686-linux, x86_64-linux ] + ghcjs-prim: [ i686-linux, x86_64-linux ] + ghclive: [ i686-linux, x86_64-darwin, x86_64-linux ] + ght: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-atk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gdkpixbuf: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gio: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-girepository: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gobject: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gst: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstaudio: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstbase: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gstvideo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gtk-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gtkosxapplication: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-gtksource: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-javascriptcore: [ i686-linux, x86_64-linux ] + gi-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-pango: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-pangocairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-poppler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-soup: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-vte: [ i686-linux, x86_64-linux ] + gi-webkit2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit2webextension: [ i686-linux, x86_64-darwin, x86_64-linux ] + gi-webkit: [ i686-linux, x86_64-linux ] + Gifcurry: [ i686-linux, x86_64-darwin, x86_64-linux ] + ginger: [ i686-linux, x86_64-linux ] + ginsu: [ i686-linux, x86_64-linux ] + gist: [ i686-linux, x86_64-linux ] + git-all: [ i686-linux, x86_64-linux ] + git-checklist: [ i686-linux, x86_64-linux ] + git-date: [ i686-linux, x86_64-linux ] + git-gpush: [ i686-linux, x86_64-linux ] + git-repair: [ i686-linux, x86_64-linux ] + git-sanity: [ i686-linux, x86_64-linux ] + git-vogue: [ i686-linux, x86_64-linux ] + git: [ i686-linux, x86_64-linux ] + gitdo: [ i686-linux, x86_64-linux ] + github-backup: [ i686-linux, x86_64-linux ] + github-utils: [ i686-linux, x86_64-linux ] + gitit: [ i686-linux, x86_64-darwin, x86_64-linux ] + gitlib-cross: [ i686-linux, x86_64-linux ] + gitlib-s3: [ i686-linux, x86_64-linux ] + gitlib-utils: [ i686-linux, x86_64-linux ] + glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gladexml-accessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + GLFW-OGL: [ i686-linux, x86_64-linux ] + GLFW-task: [ x86_64-darwin ] + GLFW: [ x86_64-darwin ] + glicko: [ i686-linux, x86_64-linux ] + glider-nlp: [ i686-linux, x86_64-linux ] + GLMatrix: [ i686-linux, x86_64-linux ] + global-config: [ i686-linux, x86_64-linux ] + global-variables: [ i686-linux, x86_64-linux ] + global: [ i686-linux, x86_64-darwin, x86_64-linux ] + glome-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeVec: [ i686-linux, x86_64-darwin, x86_64-linux ] + GlomeView: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-accelerate: [ i686-linux, x86_64-linux ] + gloss-banana: [ i686-linux, x86_64-linux ] + gloss-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-juicy: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-raster: [ i686-linux, x86_64-darwin, x86_64-linux ] + gloss-sodium: [ i686-linux, x86_64-linux ] + GLUtil: [ i686-linux, x86_64-linux ] + gmap: [ i686-linux, x86_64-linux ] + gmndl: [ i686-linux, x86_64-linux ] + gnome-desktop: [ i686-linux, x86_64-linux ] + gnome-keyring: [ i686-linux, x86_64-linux ] + gnomevfs: [ i686-linux, x86_64-linux ] + gnss-converters: [ i686-linux, x86_64-linux ] + goa: [ i686-linux, x86_64-linux ] + goal-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-geometry: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-probability: [ i686-linux, x86_64-darwin, x86_64-linux ] + goal-simulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + gofer-prelude: [ i686-linux, x86_64-linux ] + gogol-adexchange-buyer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adexchange-seller: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-datatransfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-directory: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-emailmigration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-admin-reports: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adsense-host: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-adsense: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-affiliates: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-android-enterprise: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-android-publisher: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-appengine: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-activity: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-calendar: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-licensing: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-reseller: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-apps-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-appstate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-autoscaler: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-bigquery: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-billing: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-blogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-books: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-civicinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-classroom: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-cloudtrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-compute: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-container: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-customsearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dataflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-datastore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-deploymentmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dfareporting: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-discovery: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-doubleclick-bids: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-doubleclick-search: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-drive: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fitness: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fonts: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-freebasesearch: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-fusiontables: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games-configuration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games-management: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-games: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-genomics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-gmail: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-groups-migration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-groups-settings: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-identity-toolkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-latencytest: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-logging: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-maps-coordinate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-maps-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-mirror: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-monitoring: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-oauth2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-pagespeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-partners: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-play-moviespartner: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-plus-domains: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-prediction: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-proximitybeacon: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-pubsub: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-qpxexpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-replicapool-updater: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-replicapool: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-resourcemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-resourceviews: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-shopping-content: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-siteverification: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-spectrum: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-sqladmin: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-storage-transfer: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-tagmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-taskqueue: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-translate: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-urlshortener: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-useraccounts: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-webmaster-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube-analytics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube-reporting: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol-youtube: [ i686-linux, x86_64-darwin, x86_64-linux ] + gogol: [ i686-linux, x86_64-darwin, x86_64-linux ] + gooey: [ i686-linux, x86_64-linux ] + google-html5-slide: [ i686-linux, x86_64-darwin, x86_64-linux ] + google-translate: [ i686-linux, x86_64-linux ] + GoogleDirections: [ i686-linux, x86_64-linux ] + googleplus: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleSB: [ i686-linux, x86_64-darwin, x86_64-linux ] + GoogleTranslate: [ i686-linux, x86_64-linux ] + gopherbot: [ i686-linux, x86_64-linux ] + gore-and-ash-demo: [ i686-linux, x86_64-linux ] + gore-and-ash-network: [ i686-linux, x86_64-linux ] + gore-and-ash-sync: [ i686-linux, x86_64-linux ] + gpah: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-Collada: [ i686-linux, x86_64-linux ] + GPipe-Examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GPipe-TextureLoad: [ i686-linux, x86_64-linux ] + gps2htmlReport: [ i686-linux, x86_64-darwin, x86_64-linux ] + gps: [ i686-linux, x86_64-linux ] + gpx-conduit: [ i686-linux, x86_64-linux ] + GPX: [ i686-linux, x86_64-darwin, x86_64-linux ] + grammar-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + GrammarProducts: [ i686-linux, x86_64-darwin, x86_64-linux ] + grapefruit-examples: [ i686-linux, x86_64-linux ] + grapefruit-frp: [ i686-linux, x86_64-linux ] + grapefruit-records: [ i686-linux, x86_64-linux ] + grapefruit-ui-gtk: [ i686-linux, x86_64-linux ] + grapefruit-ui: [ i686-linux, x86_64-linux ] + graph-rewriting-cl: [ i686-linux, x86_64-linux ] + graph-utils: [ i686-linux, x86_64-linux ] + graph-visit: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graph500: [ i686-linux, x86_64-darwin, x86_64-linux ] + Graphalyze: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphbuilder: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + GraphHammer: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphics-formats-collada: [ i686-linux, x86_64-linux ] + graphicsFormats: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphicstools: [ i686-linux, x86_64-darwin, x86_64-linux ] + graphtype: [ i686-linux, x86_64-darwin, x86_64-linux ] + grasp: [ i686-linux, x86_64-linux ] + greencard-lib: [ i686-linux, x86_64-linux ] + greencard: [ i686-linux, x86_64-linux ] + greg-client: [ i686-linux, x86_64-linux ] + gremlin-haskell: [ i686-linux, x86_64-linux ] + Grempa: [ i686-linux, x86_64-linux ] + grid: [ i686-linux, x86_64-linux ] + gridfs: [ i686-linux, x86_64-linux ] + gridland: [ i686-linux, x86_64-linux ] + grm: [ i686-linux, x86_64-linux ] + groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-inspector: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + groundhog: [ i686-linux, x86_64-darwin, x86_64-linux ] + Grow: [ i686-linux, x86_64-linux ] + GrowlNotify: [ i686-linux, x86_64-darwin, x86_64-linux ] + gruff-examples: [ i686-linux, x86_64-linux ] + gruff: [ i686-linux, x86_64-linux ] + gsl-random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] + gsl-random: [ i686-linux, x86_64-linux ] + gsmenu: [ i686-linux, x86_64-linux ] + GTALib: [ i686-linux, x86_64-linux ] + gtfs: [ i686-linux, x86_64-linux ] + gtk-largeTreeStore: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-mac-integration: [ i686-linux, x86_64-linux ] + gtk-serialized-event: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk-toy: [ i686-linux, x86_64-linux ] + gtk2hs-cast-glade: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gnomevfs: [ i686-linux, x86_64-linux ] + gtk2hs-cast-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-gtkglext: [ i686-linux, x86_64-linux ] + gtk2hs-cast-gtksourceview2: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-cast-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-hello: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk2hs-rpn: [ i686-linux, x86_64-linux ] + Gtk2hsGenerics: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtk3: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkglext: [ i686-linux, x86_64-linux ] + GtkGLTV: [ i686-linux, x86_64-linux ] + gtkimageview: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtkrsync: [ i686-linux, x86_64-darwin, x86_64-linux ] + gtksourceview3: [ i686-linux, x86_64-linux ] + guarded-rewriting: [ i686-linux, x86_64-linux ] + guess-combinator: [ i686-linux, x86_64-darwin, x86_64-linux ] + guid: [ i686-linux, x86_64-linux ] + GuiHaskell: [ i686-linux, x86_64-darwin, x86_64-linux ] + GuiTV: [ i686-linux, x86_64-darwin, x86_64-linux ] + h-booru: [ i686-linux, x86_64-linux ] + h-gpgme: [ i686-linux, x86_64-linux ] + h2048: [ i686-linux, x86_64-linux ] + H: [ i686-linux, x86_64-darwin ] + haar: [ i686-linux, x86_64-linux ] + Hach: [ i686-linux, x86_64-linux ] + hack-contrib-press: [ i686-linux, x86_64-linux ] + hack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-frontend-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-epoll: [ i686-linux, x86_64-linux ] + hack-handler-evhttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-fastcgi: [ i686-linux, x86_64-linux ] + hack-handler-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-handler-hyena: [ i686-linux, x86_64-linux ] + hack-handler-kibro: [ i686-linux, x86_64-linux ] + hack-handler-simpleserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-cleanpath: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack-middleware-jsonp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hack2-handler-mongrel2-http: [ i686-linux, x86_64-linux ] + hack2-handler-warp: [ i686-linux, x86_64-linux ] + hack2-interface-wai: [ i686-linux, x86_64-linux ] + hackage-proxy: [ i686-linux, x86_64-linux ] + hackage-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage-sparks: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2hwn: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackage2twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hackernews: [ i686-linux, x86_64-linux ] + HackMail: [ i686-linux, x86_64-darwin, x86_64-linux ] + hactor: [ i686-linux, x86_64-linux ] + haddock-leksah: [ i686-linux, x86_64-linux ] + haddocset: [ i686-linux, x86_64-linux ] + hadoop-rpc: [ i686-linux, x86_64-linux ] + hadoop-tools: [ i686-linux, x86_64-linux ] + haggis: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haggressive: [ i686-linux, x86_64-linux ] + haiji: [ i686-linux, x86_64-linux ] + hailgun-send: [ i686-linux, x86_64-darwin, x86_64-linux ] + hailgun: [ i686-linux, x86_64-darwin, x86_64-linux ] + hairy: [ i686-linux, x86_64-linux ] + hakaru: [ i686-linux, x86_64-linux ] + hakismet: [ i686-linux, x86_64-linux ] + hakyll-agda: [ i686-linux, x86_64-linux ] + hakyll-blaze-templates: [ i686-linux, x86_64-linux ] + hakyll-contrib-csv: [ i686-linux, x86_64-linux ] + hakyll-contrib-elm: [ i686-linux, x86_64-linux ] + hakyll-contrib-hyphenation: [ i686-linux, x86_64-linux ] + hakyll-contrib-links: [ i686-linux, x86_64-linux ] + hakyll-contrib: [ i686-linux, x86_64-linux ] + hakyll-convert: [ i686-linux, x86_64-linux ] + hakyll-filestore: [ i686-linux, x86_64-linux ] + hakyll-R: [ i686-linux, x86_64-linux ] + hakyll-sass: [ i686-linux, x86_64-linux ] + hakyll: [ i686-linux, x86_64-linux ] + halberd: [ i686-linux, x86_64-linux ] + HaLeX: [ i686-linux, x86_64-linux ] + halfs: [ i686-linux, x86_64-linux ] + halipeto: [ i686-linux, x86_64-darwin, x86_64-linux ] + halma: [ i686-linux, x86_64-darwin, x86_64-linux ] + haltavista: [ i686-linux, x86_64-darwin, x86_64-linux ] + hampp: [ i686-linux, x86_64-linux ] + hamtmap: [ i686-linux, x86_64-linux ] + hamusic: [ i686-linux, x86_64-linux ] + handsy: [ i686-linux, x86_64-linux ] + hannahci: [ i686-linux, x86_64-linux ] + haphviz: [ i686-linux, x86_64-linux ] + happindicator3: [ i686-linux, x86_64-darwin, x86_64-linux ] + happindicator: [ i686-linux, x86_64-linux ] + happraise: [ i686-linux, x86_64-linux ] + HAppS-Data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-IxSet: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Server: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-State: [ i686-linux, x86_64-darwin, x86_64-linux ] + happs-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + HAppS-Util: [ i686-linux, x86_64-linux ] + happstack-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-authenticate: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-clientsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-contrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-dlg: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-fastcgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-foundation: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-hamlet: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-heist: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-helpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-hsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-hstringtemplate: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-jmacro: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-lite: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-monad-peel: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-server-tls-cryptonite: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-server-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-static-routing: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack-yui: [ i686-linux, x86_64-darwin, x86_64-linux ] + happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + happybara-webkit-server: [ i686-linux, x86_64-linux ] + happybara-webkit: [ i686-linux, x86_64-linux ] + happybara: [ i686-linux, x86_64-linux ] + hapstone: [ i686-linux ] + HaPy: [ i686-linux, x86_64-linux ] + harchive: [ i686-linux, x86_64-linux ] + hardware-edsl: [ i686-linux, x86_64-linux ] + HaRe: [ i686-linux, x86_64-linux ] + hark: [ i686-linux, x86_64-darwin, x86_64-linux ] + HARM: [ i686-linux, x86_64-linux ] + harmony: [ i686-linux, x86_64-linux ] + HarmTrace-Base: [ i686-linux, x86_64-darwin, x86_64-linux ] + HarmTrace: [ i686-linux, x86_64-darwin, x86_64-linux ] + haroonga-httpd: [ i686-linux, x86_64-linux ] + haroonga: [ i686-linux, x86_64-linux ] + harvest-api: [ i686-linux, x86_64-linux ] + has-th: [ i686-linux, x86_64-linux ] + has: [ i686-linux, x86_64-linux ] + hascal: [ i686-linux, x86_64-linux ] + hascat-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-setup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat-system: [ i686-linux, x86_64-darwin, x86_64-linux ] + hascat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Haschoo: [ i686-linux, x86_64-linux ] + HasGP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hash: [ i686-linux, x86_64-linux ] + hashable-generics: [ i686-linux, x86_64-linux ] + hashed-storage: [ i686-linux, x86_64-linux ] + Hashell: [ i686-linux, x86_64-darwin, x86_64-linux ] + hashids: [ i686-linux, x86_64-linux ] + hashmap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasim: [ i686-linux, x86_64-linux ] + hask-home: [ i686-linux, x86_64-linux ] + hask: [ i686-linux, x86_64-linux ] + haskanoid: [ i686-linux, x86_64-linux ] + haskarrow: [ i686-linux, x86_64-linux ] + haskeem: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskeline-class: [ i686-linux, x86_64-linux ] + haskell-aliyun: [ i686-linux, x86_64-linux ] + haskell-awk: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-brainfuck: [ i686-linux, x86_64-linux ] + haskell-cnc: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-course-preludes: [ i686-linux, x86_64-linux ] + haskell-docs: [ i686-linux, x86_64-linux ] + haskell-formatter: [ i686-linux, x86_64-linux ] + haskell-ftp: [ i686-linux, x86_64-linux ] + haskell-generate: [ i686-linux, x86_64-linux ] + haskell-gi-base: [ i686-linux ] + haskell-gi: [ i686-linux ] + haskell-mpfr: [ i686-linux, x86_64-linux ] + haskell-names: [ i686-linux, x86_64-linux ] + haskell-openflow: [ i686-linux, x86_64-linux ] + haskell-packages: [ i686-linux, x86_64-linux ] + haskell-pdf-presenter: [ i686-linux, x86_64-linux ] + haskell-platform-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-player: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-plot: [ i686-linux, x86_64-linux ] + haskell-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell-rules: [ i686-linux, x86_64-linux ] + haskell-src-meta-mwotton: [ i686-linux, x86_64-linux ] + haskell-token-utils: [ i686-linux, x86_64-linux ] + haskell-tor: [ i686-linux, x86_64-linux ] + haskell-type-exts: [ i686-linux, x86_64-linux ] + haskell-tyrant: [ i686-linux, x86_64-linux ] + haskell-xmpp: [ i686-linux, x86_64-linux ] + haskell2010: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskell98: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-connect-hdbc-catchio-mtl: [ i686-linux, x86_64-linux ] + haskelldb-connect-hdbc-catchio-tf: [ i686-linux, x86_64-linux ] + haskelldb-connect-hdbc-catchio-transformers: [ i686-linux, x86_64-linux ] + haskelldb-connect-hdbc-lifted: [ i686-linux, x86_64-linux ] + haskelldb-connect-hdbc: [ i686-linux, x86_64-linux ] + haskelldb-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskelldb-flat: [ i686-linux, x86_64-linux ] + haskelldb-hdbc-mysql: [ i686-linux, x86_64-linux ] + haskelldb-hdbc-odbc: [ i686-linux, x86_64-linux ] + haskelldb-hdbc-postgresql: [ i686-linux, x86_64-linux ] + haskelldb-hdbc-sqlite3: [ i686-linux, x86_64-linux ] + haskelldb-hdbc: [ i686-linux, x86_64-linux ] + haskelldb-hsql-mysql: [ i686-linux, x86_64-linux ] + haskelldb-hsql-odbc: [ i686-linux, x86_64-linux ] + haskelldb-hsql-postgresql: [ i686-linux, x86_64-linux ] + haskelldb-hsql-sqlite3: [ i686-linux, x86_64-linux ] + haskelldb-hsql: [ i686-linux, x86_64-linux ] + haskelldb-th: [ i686-linux, x86_64-linux ] + haskelldb-wx: [ i686-linux, x86_64-linux ] + haskelldb: [ i686-linux, x86_64-linux ] + HaskellLM: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaskellNN: [ i686-linux, x86_64-linux ] + Haskelloids: [ i686-linux, x86_64-linux ] + haskellscrabble: [ i686-linux, x86_64-linux ] + HaskellTorrent: [ i686-linux, x86_64-linux ] + haskgame: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskheap: [ i686-linux, x86_64-linux ] + haskhol-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskintex: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-crypto: [ i686-linux, x86_64-linux ] + haskoin-node: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin-protocol: [ i686-linux, x86_64-linux ] + haskoin-script: [ i686-linux, x86_64-linux ] + haskoin-util: [ i686-linux, x86_64-linux ] + haskoin-wallet: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoin: [ i686-linux, x86_64-linux ] + haskoon-httpspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon-salvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskoon: [ i686-linux, x86_64-darwin, x86_64-linux ] + haskore-realtime: [ i686-linux, x86_64-linux ] + haskore-supercollider: [ i686-linux, x86_64-linux ] + haskore-synthesizer: [ i686-linux, x86_64-linux ] + haskore: [ i686-linux, x86_64-linux ] + HaskRel: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasktags: [ i686-linux, x86_64-darwin, x86_64-linux ] + haslo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasloGUI: [ i686-linux, x86_64-darwin, x86_64-linux ] + hasparql-client: [ i686-linux, x86_64-linux ] + hasql-backend: [ i686-linux, x86_64-linux ] + hasql-postgres-options: [ i686-linux, x86_64-linux ] + hasql-postgres: [ i686-linux, x86_64-linux ] + haste-cabal-install: [ i686-linux, x86_64-linux ] + haste-Cabal: [ i686-linux, x86_64-linux ] haste-gapi: [ i686-linux, x86_64-linux, x86_64-darwin ] haste-perch: [ i686-linux, x86_64-linux, x86_64-darwin ] + hat: [ i686-linux, x86_64-linux ] + Hate: [ i686-linux, x86_64-linux ] + hatex-guide: [ i686-linux, x86_64-darwin, x86_64-linux ] + HaTeX-meta: [ i686-linux, x86_64-linux ] + haverer: [ i686-linux, x86_64-linux ] + HaVSA: [ i686-linux, x86_64-darwin, x86_64-linux ] + hawitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hawk: [ i686-linux, x86_64-linux ] + haxl-amazonka: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxl-facebook: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] + haxparse: [ i686-linux, x86_64-linux ] + haxr-th: [ i686-linux, x86_64-linux ] + hayland: [ i686-linux, x86_64-linux ] + hayoo-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hayoo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hback: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbb: [ i686-linux, x86_64-linux ] + hBDD-CMUBDD: [ i686-linux, x86_64-darwin, x86_64-linux ] + hBDD-CUDD: [ i686-linux, x86_64-linux ] + hbeat: [ i686-linux, x86_64-linux ] + hblas: [ i686-linux, x86_64-linux ] + hblock: [ i686-linux, x86_64-darwin, x86_64-linux ] + hbro: [ i686-linux, x86_64-linux ] + hburg: [ i686-linux, x86_64-darwin, x86_64-linux ] + HCard: [ i686-linux, x86_64-linux ] + hcheat: [ i686-linux, x86_64-darwin, x86_64-linux ] + hchesslib: [ i686-linux, x86_64-linux ] + HCL: [ i686-linux, x86_64-linux ] + hcron: [ i686-linux, x86_64-linux ] + hCsound: [ i686-linux, x86_64-linux ] + hcube: [ i686-linux, x86_64-linux ] + hcwiid: [ i686-linux, x86_64-linux ] + hdaemonize-buildfix: [ i686-linux, x86_64-linux ] + hdbc-aeson: [ i686-linux, x86_64-linux ] + HDBC-mysql: [ i686-linux, x86_64-linux ] + HDBC-odbc: [ i686-linux, x86_64-linux ] + HDBC-postgresql-hstore: [ i686-linux, x86_64-linux ] + hdbc-postgresql-hstore: [ i686-linux, x86_64-linux ] + HDBC-postgresql: [ i686-linux, x86_64-linux ] + HDBC-session: [ i686-linux, x86_64-linux ] + HDBC-sqlite3: [ i686-linux, x86_64-linux ] + hdbc-tuple: [ i686-linux, x86_64-linux ] + HDBC: [ i686-linux, x86_64-linux ] + hdbi-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-postgresql: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdbi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hDFA: [ i686-linux, x86_64-linux ] + hdigest: [ i686-linux, x86_64-linux ] + hdirect: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdis86: [ i686-linux, x86_64-darwin, x86_64-linux ] + hdiscount: [ i686-linux, x86_64-linux ] + hdm: [ i686-linux, x86_64-linux ] + hdo: [ i686-linux, x86_64-linux ] + hdph-closure: [ i686-linux, x86_64-linux ] + hdph: [ i686-linux, x86_64-linux ] + hdr-histogram: [ i686-linux ] + HDRUtils: [ i686-linux, x86_64-darwin, x86_64-linux ] + hecc: [ i686-linux, x86_64-linux ] + Hedi: [ i686-linux, x86_64-darwin, x86_64-linux ] + heist-aeson: [ i686-linux, x86_64-linux ] + helics-wai: [ i686-linux, x86_64-linux ] + helics: [ i686-linux, x86_64-linux ] + helium: [ i686-linux, x86_64-darwin, x86_64-linux ] + helix: [ i686-linux, x86_64-linux ] + hell: [ i686-linux, x86_64-linux ] + hellage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hellnet: [ i686-linux, x86_64-darwin, x86_64-linux ] + helm: [ i686-linux, x86_64-linux ] + help-esb: [ i686-linux, x86_64-linux ] + hemkay: [ i686-linux, x86_64-linux ] + hemokit: [ i686-linux, x86_64-linux ] + hen: [ i686-linux, x86_64-darwin, x86_64-linux ] + henet: [ i686-linux, x86_64-darwin, x86_64-linux ] + hepevt: [ i686-linux, x86_64-darwin, x86_64-linux ] + her-lexer-parsec: [ i686-linux, x86_64-linux ] + her-lexer: [ i686-linux, x86_64-linux ] + HERA: [ i686-linux, x86_64-linux ] + herbalizer: [ i686-linux, x86_64-linux ] + HerbiePlugin: [ i686-linux, x86_64-linux ] + heredocs: [ i686-linux, x86_64-linux ] + Hermes: [ i686-linux, x86_64-linux ] + hermit-syb: [ i686-linux, x86_64-linux ] + hermit: [ i686-linux, x86_64-linux ] + herringbone-embed: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone-wai: [ i686-linux, x86_64-darwin, x86_64-linux ] + herringbone: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesh: [ i686-linux, x86_64-darwin, x86_64-linux ] + hesql: [ i686-linux, x86_64-linux ] + hetris: [ i686-linux, x86_64-linux ] + heukarya: [ i686-linux, x86_64-linux ] + hevolisa-dph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hevolisa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + hexpat-pickle-generic: [ i686-linux, x86_64-linux ] + hexquote: [ i686-linux, x86_64-linux ] + hF2: [ i686-linux, x86_64-linux ] + hfann: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfiar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hflags: [ i686-linux, x86_64-linux ] + hfmt: [ i686-linux, x86_64-linux ] + hfoil: [ i686-linux, x86_64-darwin, x86_64-linux ] + hfractal: [ i686-linux, x86_64-darwin, x86_64-linux ] + HFrequencyQueue: [ i686-linux, x86_64-linux ] + hfusion: [ i686-linux, x86_64-linux ] + hg-buildpackage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgalib: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-API: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-Audio: [ i686-linux, x86_64-linux ] + HGamer3D-Bullet-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-CAudio-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-CEGUI-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-Common: [ i686-linux, x86_64-linux ] + HGamer3D-Data: [ i686-linux, x86_64-linux ] + HGamer3D-Enet-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-Graphics3D: [ i686-linux, x86_64-linux ] + HGamer3D-GUI: [ i686-linux, x86_64-linux ] + HGamer3D-InputSystem: [ i686-linux, x86_64-linux ] + HGamer3D-Network: [ i686-linux, x86_64-linux ] + HGamer3D-Ogre-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-OIS-Binding: [ i686-linux, x86_64-darwin, x86_64-linux ] + HGamer3D-SDL2-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-SFML-Binding: [ i686-linux, x86_64-linux ] + HGamer3D-WinEvent: [ i686-linux, x86_64-linux ] + HGamer3D-Wire: [ i686-linux, x86_64-linux ] + HGamer3D: [ i686-linux, x86_64-linux ] + hgen: [ i686-linux, x86_64-linux ] + hgeometric: [ i686-linux, x86_64-linux ] + hgeometry: [ i686-linux, x86_64-linux ] + hgithub: [ i686-linux, x86_64-darwin, x86_64-linux ] + hgom: [ i686-linux, x86_64-linux ] + HGraphStorage: [ i686-linux, x86_64-linux ] + hgrev: [ i686-linux, x86_64-linux ] + hgrib: [ i686-linux, x86_64-darwin, x86_64-linux ] + hharp: [ i686-linux, x86_64-darwin, x86_64-linux ] + HHDL: [ i686-linux, x86_64-linux ] + hiccup: [ i686-linux, x86_64-darwin, x86_64-linux ] + hichi: [ i686-linux, x86_64-linux ] + hieraclus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hierarchical-clustering-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hierarchical-exceptions: [ i686-linux, x86_64-linux ] + hiernotify: [ i686-linux, x86_64-linux ] + Hieroglyph: [ i686-linux, x86_64-linux ] + HiggsSet: [ i686-linux, x86_64-linux ] + higherorder: [ i686-linux, x86_64-linux ] + highjson: [ i686-linux, x86_64-darwin, x86_64-linux ] + highWaterMark: [ i686-linux, x86_64-linux ] + himg: [ i686-linux, x86_64-darwin, x86_64-linux ] + himpy: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinduce-classifier-decisiontree: [ i686-linux, x86_64-linux ] + hinduce-classifier: [ i686-linux, x86_64-linux ] + hinduce-examples: [ i686-linux, x86_64-linux ] + hinotify-bytestring: [ x86_64-darwin ] + hinstaller: [ i686-linux, x86_64-linux ] + hint-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hint: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinvaders: [ i686-linux, x86_64-darwin, x86_64-linux ] + hinze-streams: [ i686-linux, x86_64-darwin, x86_64-linux ] + hip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hipbot: [ i686-linux, x86_64-linux ] + hipe: [ i686-linux, x86_64-linux ] + HipmunkPlayground: [ x86_64-darwin ] + hircules: [ i686-linux, x86_64-linux ] + hirt: [ i686-linux, x86_64-linux ] + Hish: [ i686-linux, x86_64-linux ] + hissmetrics: [ i686-linux, x86_64-linux ] + hist-pl-fusion: [ i686-linux, x86_64-linux ] + hist-pl-lmf: [ i686-linux, x86_64-linux ] + hist-pl: [ i686-linux, x86_64-linux ] + historian: [ i686-linux, x86_64-linux ] + HJavaScript: [ i686-linux, x86_64-linux ] + hjs: [ i686-linux, x86_64-linux ] + HJScript: [ i686-linux, x86_64-linux ] + HJVM: [ i686-linux, x86_64-linux ] + hlbfgsb: [ i686-linux, x86_64-linux ] + hlcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + HLearn-algebra: [ i686-linux, x86_64-linux ] + HLearn-approximation: [ i686-linux, x86_64-linux ] + HLearn-classification: [ i686-linux, x86_64-linux ] + HLearn-datastructures: [ i686-linux, x86_64-linux ] + HLearn-distributions: [ i686-linux, x86_64-linux ] + hledger-chart: [ i686-linux, x86_64-linux ] + hledger-ui: [ i686-linux, x86_64-linux ] + hledger-vty: [ i686-linux, x86_64-linux ] + hledger-web: [ i686-linux, x86_64-linux ] + hlibev: [ i686-linux, x86_64-linux ] + hlibfam: [ i686-linux, x86_64-linux ] + HList: [ i686-linux, x86_64-darwin, x86_64-linux ] + HListPP: [ i686-linux, x86_64-linux ] + HLogger: [ i686-linux, x86_64-linux ] + hlogger: [ i686-linux, x86_64-linux ] + hly: [ i686-linux, x86_64-linux ] + HMap: [ i686-linux, x86_64-linux ] + hmark: [ i686-linux, x86_64-linux ] + hmarkup: [ i686-linux, x86_64-linux ] + hmatrix-banded: [ i686-linux, x86_64-linux ] + hmatrix-mmap: [ i686-linux, x86_64-linux ] + hmatrix-nipals: [ i686-linux, x86_64-linux ] + hmatrix-quadprogpp: [ i686-linux, x86_64-linux ] + hmatrix-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmatrix-special: [ i686-linux, x86_64-linux ] + hmatrix-static: [ i686-linux, x86_64-linux ] + hmatrix-svdlibc: [ i686-linux, x86_64-linux ] + hmatrix-syntax: [ i686-linux, x86_64-linux ] + hmeap-utils: [ i686-linux, x86_64-linux ] + hmeap: [ i686-linux, x86_64-linux ] + hmenu: [ i686-linux, x86_64-linux ] + hmk: [ i686-linux, x86_64-linux ] + hmm-hmatrix: [ i686-linux, x86_64-linux ] + hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] + HMM: [ i686-linux, x86_64-linux ] + hMollom: [ i686-linux, x86_64-linux ] + hmp3: [ i686-linux, x86_64-linux ] + Hmpf: [ i686-linux, x86_64-darwin, x86_64-linux ] + hmpfr: [ i686-linux, x86_64-linux ] + hmumps: [ i686-linux, x86_64-linux ] + hnetcdf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HNM: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoauth: [ i686-linux, x86_64-linux ] + hob: [ i686-linux, x86_64-linux ] + hobbes: [ i686-linux, x86_64-linux ] + hobbits: [ i686-linux, x86_64-linux ] + HODE: [ i686-linux, x86_64-linux ] + hoe: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hoed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hofix-mtl: [ i686-linux, x86_64-linux ] + hog: [ i686-linux, x86_64-linux ] + hogg: [ i686-linux, x86_64-linux ] + hogre-examples: [ i686-linux, x86_64-linux ] + hogre: [ i686-linux, x86_64-linux ] + hois: [ i686-linux, x86_64-linux ] + hole: [ i686-linux, x86_64-linux ] + Holumbus-Distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-MapReduce: [ i686-linux, x86_64-darwin, x86_64-linux ] + Holumbus-Searchengine: [ i686-linux, x86_64-linux ] + Holumbus-Storage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homeomorphic: [ i686-linux, x86_64-linux ] + hommage: [ i686-linux, x86_64-darwin, x86_64-linux ] + homplexity: [ i686-linux, x86_64-linux ] + HongoDB: [ i686-linux, x86_64-linux ] + honi: [ i686-linux, x86_64-linux ] + honk: [ x86_64-darwin ] + hood-off: [ i686-linux, x86_64-linux ] + hoodie: [ i686-linux, x86_64-linux ] + hoodle-builder: [ i686-linux, x86_64-linux ] + hoodle-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-extra: [ i686-linux, x86_64-linux ] + hoodle-parser: [ i686-linux, x86_64-linux ] + hoodle-publish: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-render: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoodle-types: [ i686-linux, x86_64-linux ] + hoodle: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoogle-index: [ i686-linux, x86_64-linux ] + hoovie: [ i686-linux, x86_64-linux ] + hopencc: [ i686-linux, x86_64-linux ] + hopencl: [ i686-linux, x86_64-linux ] + hopenpgp-tools: [ i686-linux, x86_64-darwin, x86_64-linux ] + hOpenPGP: [ i686-linux, x86_64-darwin, x86_64-linux ] + hopfield: [ i686-linux, x86_64-darwin, x86_64-linux ] + hops: [ i686-linux, x86_64-darwin, x86_64-linux ] + hoq: [ i686-linux, x86_64-linux ] + hosts-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hotswap: [ i686-linux, x86_64-linux ] + hourglass-fuzzy-parsing: [ i686-linux, x86_64-linux ] + houseman: [ i686-linux, x86_64-linux ] + hp2any-core: [ i686-linux, x86_64-linux ] + hp2any-graph: [ i686-linux, x86_64-darwin, x86_64-linux ] + hp2any-manager: [ i686-linux, x86_64-linux ] + hpaco-lib: [ i686-linux, x86_64-linux ] + hpaco: [ i686-linux, x86_64-linux ] + hpage: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpaste: [ i686-linux, x86_64-linux ] + hpasteit: [ i686-linux, x86_64-linux ] + HPath: [ i686-linux, x86_64-linux ] + hpc-tracer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HPi: [ i686-linux, x86_64-linux ] hplayground: [ i686-linux, x86_64-linux, x86_64-darwin ] + hplaylist: [ i686-linux, x86_64-linux ] + HPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpodder: [ i686-linux, x86_64-linux ] + HPong: [ i686-linux, x86_64-darwin, x86_64-linux ] + hpqtypes: [ i686-linux, x86_64-linux ] + hprotoc-fork: [ i686-linux, x86_64-linux ] + hps-cairo: [ i686-linux, x86_64-linux ] + hpylos: [ i686-linux, x86_64-darwin, x86_64-linux ] + hquantlib: [ i686-linux, x86_64-linux ] + hR: [ i686-linux, x86_64-linux ] + hranker: [ i686-linux, x86_64-linux ] + HRay: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hricket: [ i686-linux, x86_64-linux ] + HROOT-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-graf: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-hist: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT-math: [ i686-linux, x86_64-darwin, x86_64-linux ] + HROOT: [ i686-linux, x86_64-darwin, x86_64-linux ] + hruby: [ i686-linux ] + hs-blake2: [ i686-linux, x86_64-linux ] + hs-captcha: [ x86_64-darwin ] + hs-carbon-examples: [ i686-linux, x86_64-linux ] + hs-cdb: [ i686-linux, x86_64-linux ] + hs-dotnet: [ i686-linux, x86_64-linux ] + hs-duktape: [ i686-linux, x86_64-linux ] + hs-ffmpeg: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-fltk: [ i686-linux, x86_64-linux ] + hs-gchart: [ i686-linux, x86_64-linux ] + hs-gen-iface: [ i686-linux, x86_64-linux ] + hs-GeoIP: [ i686-linux, x86_64-linux ] + hs-java: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-json-rpc: [ i686-linux, x86_64-linux ] + hs-logo: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-mesos: [ i686-linux, x86_64-linux ] + hs-nombre-generator: [ i686-linux, x86_64-linux ] + hs-pgms: [ i686-linux, x86_64-linux ] + hs-pkpass: [ i686-linux, x86_64-linux ] + hs-twitter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs-twitterarchiver: [ i686-linux, x86_64-linux ] + hs-vcard: [ i686-linux, x86_64-darwin, x86_64-linux ] + hs2bf: [ i686-linux, x86_64-linux ] + hs2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Hs2lib: [ i686-linux, x86_64-linux ] + hsbackup: [ i686-linux, x86_64-linux ] + hsbencher-fusion: [ i686-linux, x86_64-linux ] + hsc3-cairo: [ i686-linux, x86_64-linux ] + hsc3-data: [ i686-linux, x86_64-linux ] + hsc3-forth: [ i686-linux, x86_64-linux ] + hsc3-graphs: [ i686-linux, x86_64-linux ] + hsc3-lang: [ i686-linux, x86_64-linux ] + hsc3-lisp: [ i686-linux, x86_64-linux ] + hsc3-plot: [ i686-linux, x86_64-linux ] + hsc3-rec: [ i686-linux, x86_64-linux ] + hsc3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsc3-unsafe: [ i686-linux, x86_64-linux ] + hscamwire: [ i686-linux, x86_64-darwin, x86_64-linux ] + hscassandra: [ i686-linux, x86_64-linux ] + hsclock: [ i686-linux, x86_64-linux ] + hsdip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsdns-cache: [ i686-linux, x86_64-linux ] + Hsed: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsfacter: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSFFIG: [ i686-linux, x86_64-darwin, x86_64-linux ] + HSGEP: [ i686-linux, x86_64-linux ] + hsgnutls-yj: [ i686-linux, x86_64-linux ] + hsgnutls: [ i686-linux, x86_64-linux ] + hsgsom: [ i686-linux, x86_64-linux ] + HSH: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHaruPDF: [ i686-linux, x86_64-linux ] + HSHHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsHyperEstraier: [ i686-linux, x86_64-linux ] + hSimpleDB: [ i686-linux, x86_64-linux ] + HsJudy: [ i686-linux, x86_64-linux ] + hskeleton: [ i686-linux, x86_64-linux ] + hslackbuilder: [ i686-linux, x86_64-linux ] + hslibsvm: [ i686-linux, x86_64-linux ] + hslinks: [ i686-linux, x86_64-darwin, x86_64-linux ] + hslogger-reader: [ i686-linux, x86_64-linux ] + hslogger-template: [ i686-linux, x86_64-linux ] + hsmagick: [ i686-linux, x86_64-linux ] + HSmarty: [ i686-linux, x86_64-linux ] + Hsmtlib: [ i686-linux, x86_64-linux ] + hsmtpclient: [ i686-linux, x86_64-linux ] + hsndfile-storablevector: [ i686-linux, x86_64-linux ] + hsnock: [ i686-linux, x86_64-linux ] + hsns: [ i686-linux, x86_64-linux ] + hsntp: [ i686-linux, x86_64-linux ] + hsoptions: [ i686-linux, x86_64-linux ] + HSoundFile: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsp-cgi: [ i686-linux, x86_64-linux ] + hsparklines: [ x86_64-darwin ] + hsparql: [ i686-linux, x86_64-linux ] + hspear: [ i686-linux, x86_64-linux ] + hspec-experimental: [ i686-linux, x86_64-linux ] + hspec-shouldbe: [ i686-linux, x86_64-linux ] + hspec-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + hspec-test-sandbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + HsPerl5: [ i686-linux, x86_64-linux ] + hspread: [ i686-linux, x86_64-linux ] + hspresent: [ i686-linux, x86_64-linux ] + hsprocess: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsql-mysql: [ i686-linux, x86_64-linux ] + hsqml-datamodel-vinyl: [ i686-linux, x86_64-linux ] + hsqml-datamodel: [ i686-linux, x86_64-linux ] + hsqml-demo-morris: [ i686-linux, x86_64-linux ] + hsqml-demo-notes: [ i686-linux, x86_64-linux ] + hsqml-demo-samples: [ i686-linux, x86_64-linux ] + hsqml-morris: [ i686-linux, x86_64-linux ] + hsqml: [ i686-linux, x86_64-linux ] + hsseccomp: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsSqlite3: [ i686-linux, x86_64-linux ] + HsSVN: [ i686-linux, x86_64-linux ] + hstest: [ i686-linux, x86_64-linux ] + hstidy: [ i686-linux, x86_64-linux ] + hstorchat: [ i686-linux, x86_64-linux ] + hstradeking: [ i686-linux, x86_64-linux ] + HStringTemplateHelpers: [ i686-linux, x86_64-darwin, x86_64-linux ] + hstyle: [ i686-linux, x86_64-linux ] + hstzaar: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsubconvert: [ i686-linux, x86_64-linux ] + HSvm: [ i686-linux, x86_64-linux ] + hswip: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx-jmacro: [ i686-linux, x86_64-linux ] + hsx-xhtml: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsx: [ i686-linux, x86_64-darwin, x86_64-linux ] + hsXenCtrl: [ i686-linux, x86_64-linux ] + hsyscall: [ i686-linux, x86_64-linux ] + hszephyr: [ i686-linux, x86_64-linux ] + HTab: [ i686-linux, x86_64-linux ] + hTalos: [ i686-linux, x86_64-linux ] + HTicTacToe: [ i686-linux, x86_64-linux ] + html-entities: [ i686-linux, x86_64-darwin, x86_64-linux ] + html-rules: [ i686-linux, x86_64-linux ] + html-tokenizer: [ i686-linux, x86_64-linux ] + htodo: [ i686-linux, x86_64-linux ] + hts: [ i686-linux, x86_64-linux ] + htsn-import: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-client-request-modifiers: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-conduit-browser: [ i686-linux, x86_64-linux ] + http-conduit-downloader: [ i686-linux, x86_64-linux ] + http-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + http-monad: [ i686-linux, x86_64-linux ] + http-proxy: [ i686-linux, x86_64-linux ] + http-response-decoder: [ i686-linux, x86_64-linux ] + http-shed: [ i686-linux, x86_64-linux ] + http-wget: [ i686-linux, x86_64-linux ] + https-everywhere-rules: [ i686-linux, x86_64-linux ] + httpspec: [ i686-linux, x86_64-linux ] + htune: [ i686-linux, x86_64-linux ] + htzaar: [ x86_64-darwin ] + hubris: [ i686-linux, x86_64-darwin, x86_64-linux ] + hugs2yc: [ i686-linux, x86_64-linux ] + hulk: [ i686-linux, x86_64-linux ] + HulkImport: [ i686-linux, x86_64-linux ] + hums: [ i686-linux, x86_64-linux ] + HUnit-Diff: [ i686-linux, x86_64-linux ] + hunit-gui: [ i686-linux, x86_64-darwin, x86_64-linux ] + HUnit-Plus: [ i686-linux, x86_64-darwin, x86_64-linux ] + hunit-rematch: [ i686-linux, x86_64-linux ] + hunt-searchengine: [ i686-linux, x86_64-linux ] + hunt-server: [ i686-linux, x86_64-linux ] + hurdle: [ i686-linux, x86_64-linux ] + husky: [ i686-linux, x86_64-linux ] + hutton: [ i686-linux, x86_64-linux ] + huzzy: [ i686-linux, x86_64-linux ] + hVOIDP: [ i686-linux, x86_64-linux ] + hw-bits: [ i686-linux ] + hw-conduit: [ i686-linux ] + hw-json: [ i686-linux ] + hw-rankselect: [ i686-linux ] + hw-succinct: [ i686-linux ] + hworker-ses: [ i686-linux, x86_64-darwin, x86_64-linux ] + hws: [ i686-linux, x86_64-darwin, x86_64-linux ] + hwsl2-bytevector: [ i686-linux ] + hwsl2-reducers: [ i686-linux ] + hwsl2: [ i686-linux ] + hXmixer: [ i686-linux, x86_64-darwin, x86_64-linux ] + HXMPP: [ i686-linux, x86_64-linux ] + hxmppc: [ i686-linux, x86_64-linux ] + hxournal: [ i686-linux, x86_64-linux ] + HXQ: [ i686-linux, x86_64-linux ] + hxt-binary: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxt-filter: [ i686-linux, x86_64-darwin, x86_64-linux ] + hxthelper: [ i686-linux, x86_64-linux ] + hxweb: [ i686-linux, x86_64-linux ] + hyakko: [ i686-linux, x86_64-darwin, x86_64-linux ] + hybrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + hydra-hs: [ i686-linux, x86_64-linux ] + hydrogen-cli-args: [ i686-linux, x86_64-linux ] + hydrogen-cli: [ i686-linux, x86_64-linux ] + hydrogen-data: [ i686-linux, x86_64-linux ] + hydrogen-multimap: [ i686-linux, x86_64-linux ] + hydrogen-parsing: [ i686-linux, x86_64-linux ] + hydrogen-prelude-parsec: [ i686-linux, x86_64-linux ] + hydrogen-prelude: [ i686-linux, x86_64-linux ] + hydrogen-syntax: [ i686-linux, x86_64-linux ] + hydrogen-util: [ i686-linux, x86_64-linux ] + hyena: [ i686-linux, x86_64-linux ] + hylogen: [ i686-linux, x86_64-linux ] + hylolib: [ i686-linux, x86_64-linux ] + hylotab: [ i686-linux, x86_64-linux ] + hyloutils: [ i686-linux, x86_64-linux ] + hyperdrive: [ i686-linux, x86_64-linux ] + hyperloglog: [ i686-linux, x86_64-darwin, x86_64-linux ] + hyperpublic: [ i686-linux, x86_64-darwin, x86_64-linux ] + hypher: [ i686-linux, x86_64-linux ] + i18n: [ i686-linux, x86_64-linux ] + IcoGrid: [ i686-linux, x86_64-darwin, x86_64-linux ] + ide-backend-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + ide-backend-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + ide-backend: [ i686-linux, x86_64-darwin, x86_64-linux ] + ideas-math: [ i686-linux, x86_64-linux ] + idiii: [ i686-linux, x86_64-linux ] + idna2008: [ i686-linux, x86_64-linux ] + idris: [ i686-linux, x86_64-linux ] + IDynamic: [ i686-linux, x86_64-linux ] + ieee-utils: [ i686-linux, x86_64-linux ] + iException: [ i686-linux, x86_64-linux ] + ifcxt: [ i686-linux, x86_64-linux ] + IFS: [ i686-linux, x86_64-linux ] + ige-mac-integration: [ i686-linux, x86_64-darwin, x86_64-linux ] + igraph: [ i686-linux, x86_64-linux ] + igrf: [ i686-linux, x86_64-linux ] + ihaskell-aeson: [ i686-linux, x86_64-linux ] + ihaskell-basic: [ i686-linux, x86_64-linux ] + ihaskell-blaze: [ i686-linux, x86_64-linux ] + ihaskell-charts: [ i686-linux, x86_64-linux ] + ihaskell-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-display: [ i686-linux, x86_64-linux ] + ihaskell-hatex: [ i686-linux, x86_64-linux ] + ihaskell-inline-r: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-juicypixels: [ i686-linux, x86_64-linux ] + ihaskell-magic: [ i686-linux, x86_64-linux ] + ihaskell-parsec: [ i686-linux, x86_64-linux ] + ihaskell-plot: [ i686-linux, x86_64-linux ] + ihaskell-rlangqq: [ i686-linux, x86_64-darwin, x86_64-linux ] + ihaskell-widgets: [ i686-linux, x86_64-linux ] + ihaskell: [ i686-linux, x86_64-linux ] + ihttp: [ i686-linux, x86_64-linux ] + illuminate: [ i686-linux, x86_64-linux ] + imagefilters: [ x86_64-darwin ] + imagemagick: [ i686-linux ] + imagepaste: [ i686-linux, x86_64-darwin, x86_64-linux ] + imap: [ i686-linux, x86_64-darwin, x86_64-linux ] + imbib: [ i686-linux, x86_64-linux ] + imgurder: [ i686-linux, x86_64-darwin, x86_64-linux ] + imm: [ i686-linux, x86_64-darwin, x86_64-linux ] + imparse: [ i686-linux, x86_64-linux ] + imperative-edsl-vhdl: [ i686-linux, x86_64-linux ] + imperative-edsl: [ i686-linux, x86_64-linux ] + ImperativeHaskell: [ i686-linux, x86_64-linux ] + implicit-logging: [ i686-linux, x86_64-linux ] + improve: [ i686-linux, x86_64-linux ] + INblobs: [ i686-linux, x86_64-darwin, x86_64-linux ] + inch: [ i686-linux, x86_64-linux ] + incremental-computing: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-maps: [ i686-linux, x86_64-darwin, x86_64-linux ] + incremental-sat-solver: [ i686-linux, x86_64-linux ] + increments: [ i686-linux, x86_64-darwin, x86_64-linux ] + indian-language-font-converter: [ i686-linux, x86_64-linux ] + indices: [ i686-linux, x86_64-linux ] + indieweb-algorithms: [ i686-linux, x86_64-linux ] + inf-interval: [ i686-linux, x86_64-linux ] + infer-upstream: [ i686-linux, x86_64-linux ] + infernu: [ i686-linux, x86_64-linux ] + infinity: [ i686-linux, x86_64-linux ] + infix: [ i686-linux, x86_64-linux ] + InfixApplicative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inflist: [ i686-linux, x86_64-linux ] + informative: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-c-cpp: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-c: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-java: [ i686-linux, x86_64-darwin, x86_64-linux ] + inline-r: [ i686-linux, x86_64-darwin ] + instant-aeson: [ i686-linux, x86_64-linux ] + instant-bytes: [ i686-linux, x86_64-linux ] + instant-deepseq: [ i686-linux, x86_64-linux ] + instant-generics: [ i686-linux, x86_64-linux ] + instant-hashable: [ i686-linux, x86_64-linux ] + instant-zipper: [ i686-linux, x86_64-linux ] + integer-pure: [ i686-linux, x86_64-linux ] + intel-aes: [ i686-linux, x86_64-linux ] + interleavableGen: [ i686-linux, x86_64-darwin, x86_64-linux ] + interleavableIO: [ i686-linux, x86_64-linux ] + internetmarke: [ i686-linux, x86_64-linux ] + intero: [ i686-linux, x86_64-linux ] + interpolatedstring-qq-mwotton: [ i686-linux, x86_64-linux ] + interpolatedstring-qq: [ i686-linux, x86_64-linux ] + interruptible: [ i686-linux, x86_64-linux ] + interspersed: [ i686-linux, x86_64-darwin, x86_64-linux ] + intset: [ i686-linux, x86_64-linux ] + invertible-syntax: [ i686-linux, x86_64-linux ] + invertible: [ i686-linux, x86_64-darwin, x86_64-linux ] + io-capture: [ i686-linux, x86_64-linux ] + io-reactive: [ i686-linux, x86_64-linux ] + IOR: [ i686-linux, x86_64-linux ] + IORefCAS: [ i686-linux, x86_64-linux ] + iotransaction: [ i686-linux, x86_64-linux ] + ipatch: [ i686-linux, x86_64-linux ] + ipc: [ i686-linux, x86_64-linux ] + ipopt-hs: [ i686-linux, x86_64-linux ] + iptables-helpers: [ i686-linux, x86_64-linux ] + iptadmin: [ i686-linux, x86_64-linux ] + irc-client: [ i686-linux, x86_64-linux ] + ironforge: [ i686-linux, x86_64-linux ] + is: [ i686-linux, x86_64-linux ] + isevaluated: [ i686-linux, x86_64-linux ] + isiz: [ i686-linux, x86_64-darwin, x86_64-linux ] + ismtp: [ i686-linux, x86_64-linux ] + iso8583-bitmaps: [ i686-linux, x86_64-linux ] + itanium-abi: [ i686-linux, x86_64-linux ] + iter-stats: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-compress: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-parsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + iterio-server: [ i686-linux, x86_64-linux ] + iterIO: [ i686-linux, x86_64-linux ] + ivor: [ i686-linux, x86_64-darwin, x86_64-linux ] + ivory-backend-c: [ i686-linux, x86_64-linux ] + ivory-bitdata: [ i686-linux, x86_64-linux ] + ivory-eval: [ i686-linux, x86_64-linux ] + ivory-examples: [ i686-linux, x86_64-linux ] + ivory-hw: [ i686-linux, x86_64-linux ] + ivory-opts: [ i686-linux, x86_64-linux ] + ivory-quickcheck: [ i686-linux, x86_64-linux ] + ivory-serialize: [ i686-linux, x86_64-linux ] + ivory-stdlib: [ i686-linux, x86_64-linux ] + ivory: [ i686-linux, x86_64-linux ] + ivy-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + ixdopp: [ i686-linux, x86_64-linux ] + ixmonad: [ i686-linux, x86_64-linux ] + ixset-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + ixset: [ i686-linux, x86_64-darwin, x86_64-linux ] + iyql: [ i686-linux, x86_64-darwin, x86_64-linux ] + j2hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack-bindings: [ i686-linux, x86_64-darwin, x86_64-linux ] + jack: [ x86_64-darwin ] + JackMiniMix: [ i686-linux, x86_64-linux ] + jackminimix: [ i686-linux, x86_64-linux ] + jacobi-roots: [ i686-linux, x86_64-linux ] + jalla: [ i686-linux, x86_64-linux ] + jarfind: [ i686-linux, x86_64-linux ] + java-bridge-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-bridge: [ i686-linux, x86_64-darwin, x86_64-linux ] + java-reflect: [ i686-linux, x86_64-darwin, x86_64-linux ] + javaclass: [ i686-linux ] + Javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + javasf: [ i686-linux, x86_64-darwin, x86_64-linux ] + Javav: [ i686-linux, x86_64-linux ] + javav: [ i686-linux, x86_64-linux ] + jespresso: [ i686-linux, x86_64-linux ] + jmacro-rpc-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + jobqueue: [ i686-linux, x86_64-linux ] + join: [ i686-linux, x86_64-darwin, x86_64-linux ] + joinlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + jonathanscard: [ i686-linux, x86_64-linux ] + jort: [ i686-linux, x86_64-linux ] + jose: [ i686-linux, x86_64-darwin, x86_64-linux ] + js-good-parts: [ i686-linux, x86_64-linux ] + jsaddle-dom: [ i686-linux, x86_64-linux ] + jsaddle-hello: [ i686-linux, x86_64-linux ] + jsaddle: [ i686-linux, x86_64-linux ] + jsc: [ i686-linux, x86_64-linux ] + JsContracts: [ i686-linux, x86_64-linux ] + jsmw: [ i686-linux, x86_64-linux ] + json-ast-json-encoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-ast-quickcheck: [ i686-linux, x86_64-linux ] + json-autotype: [ i686-linux, x86_64-linux ] + json-b: [ i686-linux, x86_64-linux ] + JSON-Combinator-Examples: [ i686-linux, x86_64-linux ] + JSON-Combinator: [ i686-linux, x86_64-linux ] + json-encoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-enumerator: [ i686-linux, x86_64-linux ] + json-extra: [ i686-linux, x86_64-linux ] + json-incremental-decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + json-pointer-aeson: [ i686-linux, x86_64-linux ] + json-pointer-hasql: [ i686-linux, x86_64-linux ] + json-pointer: [ i686-linux, x86_64-linux ] + json-qq: [ i686-linux, x86_64-linux ] + json-sop: [ i686-linux, x86_64-linux ] + json-stream: [ i686-linux ] + json-tools: [ i686-linux, x86_64-linux ] + json2-hdbc: [ i686-linux, x86_64-linux ] + json2: [ i686-linux, x86_64-linux ] + JSONb: [ i686-linux, x86_64-linux ] + JsonGrammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + jsonresume: [ i686-linux, x86_64-linux ] + jsonschema-gen: [ i686-linux, x86_64-linux ] + jspath: [ i686-linux, x86_64-linux ] + juandelacosa: [ i686-linux, x86_64-darwin, x86_64-linux ] + judy: [ i686-linux, x86_64-linux ] + JuicyPixels-extra: [ i686-linux ] + JuicyPixels-repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + jukebox: [ x86_64-darwin ] + JunkDB-driver-gdbm: [ i686-linux, x86_64-darwin, x86_64-linux ] + JYU-Utils: [ i686-linux, x86_64-linux ] + kangaroo: [ i686-linux, x86_64-linux ] + kansas-lava-cores: [ i686-linux, x86_64-linux ] + kansas-lava-papilio: [ i686-linux, x86_64-linux ] + kansas-lava-shake: [ i686-linux, x86_64-linux ] + kansas-lava: [ i686-linux, x86_64-linux ] + karakuri: [ i686-linux, x86_64-linux ] + katip-elasticsearch: [ i686-linux, x86_64-linux ] + katip: [ i686-linux, x86_64-linux ] + katt: [ i686-linux, x86_64-linux ] + keera-hails-mvc-environment-gtk: [ i686-linux, x86_64-linux ] + keera-hails-mvc-model-lightmodel: [ i686-linux, x86_64-linux ] + keera-hails-mvc-model-protectedmodel: [ i686-linux, x86_64-linux ] + keera-hails-mvc-solutions-gtk: [ i686-linux, x86_64-linux ] + keera-hails-reactive-fs: [ i686-linux, x86_64-linux ] + keera-hails-reactive-gtk: [ i686-linux, x86_64-linux ] + keera-hails-reactive-network: [ i686-linux, x86_64-linux ] + keera-hails-reactive-polling: [ i686-linux, x86_64-linux ] + keera-hails-reactive-wx: [ i686-linux, x86_64-darwin, x86_64-linux ] + keera-hails-reactive-yampa: [ i686-linux, x86_64-linux ] + keera-hails-reactivelenses: [ i686-linux, x86_64-linux ] + keera-hails-reactivevalues: [ i686-linux, x86_64-linux ] + keera-posture: [ i686-linux, x86_64-linux ] + keiretsu: [ i686-linux, x86_64-linux ] + Ketchup: [ i686-linux, x86_64-linux ] + kevin: [ i686-linux, x86_64-darwin, x86_64-linux ] + keyring: [ i686-linux, x86_64-darwin, x86_64-linux ] + keystore: [ i686-linux, x86_64-darwin, x86_64-linux ] + kicad-data: [ i686-linux, x86_64-linux ] + kickass-torrents-dump-parser: [ i686-linux, x86_64-linux ] + KiCS-debugger: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS-prophecy: [ i686-linux, x86_64-darwin, x86_64-linux ] + KiCS: [ i686-linux, x86_64-darwin, x86_64-linux ] + kif-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + kit: [ i686-linux, x86_64-linux ] + kmeans-par: [ i686-linux, x86_64-linux ] + knots: [ i686-linux, x86_64-linux ] + koellner-phonetic: [ i686-linux, x86_64-linux ] + Konf: [ i686-linux, x86_64-linux ] + korfu: [ i686-linux, x86_64-darwin, x86_64-linux ] + kqueue: [ i686-linux, x86_64-linux ] + krpc: [ i686-linux, x86_64-linux ] + ks-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + kure-your-boilerplate: [ i686-linux, x86_64-linux ] + KyotoCabinet: [ i686-linux, x86_64-linux ] + l-bfgs-b: [ i686-linux, x86_64-linux ] + L-seed: [ i686-linux, x86_64-linux ] + labeled-graph: [ i686-linux, x86_64-linux ] + laborantin-hs: [ i686-linux, x86_64-linux ] + labyrinth-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + labyrinth: [ i686-linux, x86_64-darwin, x86_64-linux ] + lagrangian: [ i686-linux, x86_64-linux ] + laika: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-bridge: [ i686-linux, x86_64-linux ] + lambda-devs: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambda-toolbox: [ i686-linux, x86_64-linux ] + lambdaBase: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-haskell-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-irc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-misc-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-novelty-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-reference-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-social-plugins: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdabot-utils: [ i686-linux, x86_64-linux ] + lambdabot: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaCalculator: [ i686-linux, x86_64-linux ] + lambdacat: [ i686-linux, x86_64-linux ] + lambdacms-core: [ i686-linux, x86_64-linux ] + lambdacms-media: [ i686-linux, x86_64-linux ] + lambdacube-bullet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdacube-compiler: [ i686-linux, x86_64-linux ] + lambdacube-engine: [ i686-linux, x86_64-linux ] + lambdacube-examples: [ i686-linux, x86_64-linux ] + lambdacube-samples: [ i686-linux, x86_64-linux ] + lambdacube: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaFeed: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaHack: [ i686-linux, x86_64-linux ] + LambdaINet: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdaLit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaNet: [ i686-linux, x86_64-linux ] + LambdaPrettyQuote: [ i686-linux, x86_64-darwin, x86_64-linux ] + LambdaShell: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdatwit: [ i686-linux, x86_64-darwin, x86_64-linux ] + lambdiff: [ i686-linux, x86_64-linux ] + lame-tester: [ i686-linux, x86_64-linux ] + language-bash: [ i686-linux, x86_64-linux ] + language-boogie: [ i686-linux, x86_64-linux ] + language-c-comments: [ i686-linux, x86_64-linux ] + language-c-inline: [ i686-linux, x86_64-linux ] + language-eiffel: [ i686-linux, x86_64-linux ] + language-go: [ i686-linux, x86_64-linux ] + language-java-classfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-mixal: [ i686-linux, x86_64-linux ] + language-objc: [ i686-linux, x86_64-linux ] + language-puppet: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-python-colour: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + language-sh: [ i686-linux, x86_64-linux ] + language-spelling: [ i686-linux, x86_64-linux ] + language-sqlite: [ i686-linux, x86_64-linux ] + Lastik: [ i686-linux, x86_64-linux ] + lat: [ i686-linux, x86_64-darwin, x86_64-linux ] + latest-npm-version: [ i686-linux, x86_64-linux ] + latex-formulae-hakyll: [ i686-linux, x86_64-linux ] + latex-formulae-image: [ i686-linux, x86_64-linux ] + latex-formulae-pandoc: [ i686-linux, x86_64-linux ] + LATS: [ i686-linux, x86_64-linux ] + launchpad-control: [ i686-linux, x86_64-linux ] + layers-game: [ i686-linux, x86_64-darwin, x86_64-linux ] + layers: [ i686-linux, x86_64-linux ] + layout-bootstrap: [ i686-linux, x86_64-linux ] + layout: [ i686-linux, x86_64-linux ] + lazyarray: [ i686-linux, x86_64-linux ] + lazysplines: [ i686-linux, x86_64-linux ] + lcs: [ i686-linux, x86_64-linux ] + lda: [ i686-linux, x86_64-darwin, x86_64-linux ] + ldif: [ i686-linux, x86_64-linux ] + leaf: [ i686-linux, x86_64-darwin, x86_64-linux ] + leaky: [ i686-linux, x86_64-darwin, x86_64-linux ] + leancheck: [ i686-linux, x86_64-linux ] + learn-physics-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + learn-physics: [ i686-linux, x86_64-darwin, x86_64-linux ] + learning-hmm: [ i686-linux, x86_64-darwin, x86_64-linux ] leksah: [ i686-linux, x86_64-linux, x86_64-darwin ] + lens-sop: [ i686-linux, x86_64-linux ] + lenses: [ i686-linux, x86_64-linux ] + lensref: [ i686-linux, x86_64-linux ] + lenz-template: [ i686-linux, x86_64-linux ] + leveldb-haskell-fork: [ i686-linux, x86_64-linux ] + levmar-chart: [ i686-linux, x86_64-linux ] + levmar: [ i686-linux, x86_64-linux ] + lgtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + lha: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhae: [ i686-linux, x86_64-darwin, x86_64-linux ] + lhe: [ i686-linux, x86_64-darwin, x86_64-linux ] + LibClang: [ i686-linux, x86_64-linux ] + libconfig: [ i686-linux, x86_64-linux ] + libcspm: [ i686-linux, x86_64-linux ] + libexpect: [ i686-linux, x86_64-linux ] + libGenI: [ i686-linux, x86_64-linux ] + libgraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + libhbb: [ i686-linux, x86_64-linux ] + libjenkins: [ i686-linux, x86_64-linux ] + libltdl: [ i686-linux, x86_64-linux ] + libmpd: [ i686-linux, x86_64-linux ] + liboleg: [ i686-linux, x86_64-linux ] + libpafe: [ i686-linux, x86_64-linux ] + libpq: [ i686-linux, x86_64-linux ] + librandomorg: [ i686-linux, x86_64-linux ] + libssh2-conduit: [ i686-linux, x86_64-linux ] + libsystemd-daemon: [ i686-linux, x86_64-linux ] + libxls: [ i686-linux, x86_64-linux ] + libxml: [ i686-linux, x86_64-linux ] + libxslt: [ i686-linux, x86_64-linux ] + LibZip: [ i686-linux, x86_64-darwin, x86_64-linux ] + lifter: [ i686-linux, x86_64-linux ] + lighttpd-conf-qq: [ i686-linux, x86_64-linux ] + lighttpd-conf: [ i686-linux, x86_64-linux ] + Limit: [ i686-linux, x86_64-linux ] + limp-cbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + lin-alg: [ i686-linux, x86_64-linux ] + linda: [ i686-linux, x86_64-linux ] + linear-algebra-cblas: [ i686-linux, x86_64-linux ] + linear-circuit: [ i686-linux, x86_64-linux ] + linear-maps: [ i686-linux, x86_64-linux ] + linear-opengl: [ i686-linux, x86_64-linux ] + linearEqSolver: [ i686-linux, x86_64-darwin, x86_64-linux ] + linearscan-hoopl: [ i686-linux, x86_64-linux ] + LinearSplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinguisticsTypes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LinkChecker: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkchk: [ i686-linux, x86_64-darwin, x86_64-linux ] + linkcore: [ i686-linux, x86_64-linux ] + linode: [ i686-linux, x86_64-linux ] + linux-blkid: [ i686-linux, x86_64-linux ] + linux-file-extents: [ x86_64-darwin ] + linux-kmod: [ i686-linux, x86_64-linux ] + linux-perf: [ i686-linux, x86_64-linux ] + linux-ptrace: [ i686-linux, x86_64-linux ] + linx-gateway: [ i686-linux, x86_64-darwin, x86_64-linux ] + lio-eci11: [ i686-linux, x86_64-linux ] + lio-simple: [ i686-linux, x86_64-linux ] + liquid-fixpoint: [ i686-linux, x86_64-linux ] + liquidhaskell-cabal-demo: [ i686-linux, x86_64-linux ] + liquidhaskell-cabal: [ i686-linux, x86_64-linux ] + liquidhaskell: [ i686-linux, x86_64-linux ] + list-remote-forwards: [ i686-linux, x86_64-linux ] + list-t-attoparsec: [ i686-linux, x86_64-linux ] + list-t-html-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + list-t-libcurl: [ i686-linux, x86_64-linux ] + list-t-text: [ i686-linux, x86_64-linux ] + listlike-instances: [ i686-linux, x86_64-linux ] + literals: [ i686-linux, x86_64-linux ] + live-sequencer: [ i686-linux, x86_64-linux ] + ll-picosat: [ i686-linux, x86_64-darwin, x86_64-linux ] + llsd: [ i686-linux, x86_64-linux ] + llvm-analysis: [ i686-linux, x86_64-linux ] + llvm-base-types: [ i686-linux, x86_64-linux ] + llvm-base-util: [ i686-linux, x86_64-linux ] + llvm-base: [ i686-linux, x86_64-linux ] + llvm-data-interop: [ i686-linux, x86_64-linux ] + llvm-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ffi: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general-pure: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-ht: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tf: [ i686-linux, x86_64-darwin, x86_64-linux ] + llvm-tools: [ i686-linux, x86_64-linux ] + llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + lmdb: [ x86_64-darwin ] + lmonad-yesod: [ i686-linux, x86_64-linux ] + lmonad: [ i686-linux, x86_64-linux ] + local-search: [ i686-linux, x86_64-linux ] + loch: [ i686-linux, x86_64-linux ] + locked-poll: [ i686-linux, x86_64-darwin, x86_64-linux ] + log-domain: [ i686-linux, x86_64-darwin, x86_64-linux ] + log-effect: [ i686-linux, x86_64-linux ] + log2json: [ i686-linux, x86_64-linux ] + log: [ i686-linux, x86_64-linux ] + logging-effect: [ i686-linux, x86_64-linux ] + logic-classes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-MPI: [ i686-linux, x86_64-linux ] + LogicGrowsOnTrees-network: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + LogicGrowsOnTrees: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojban: [ i686-linux, x86_64-darwin, x86_64-linux ] + lojbanParser: [ i686-linux, x86_64-linux ] + lojbanXiragan: [ i686-linux, x86_64-linux ] + lojysamban: [ i686-linux, x86_64-linux ] + lol-apps: [ i686-linux, x86_64-darwin, x86_64-linux ] + lol: [ i686-linux, x86_64-darwin, x86_64-linux ] + loli: [ i686-linux, x86_64-darwin, x86_64-linux ] + loop-effin: [ i686-linux, x86_64-linux ] + loopy: [ i686-linux, x86_64-linux ] + lord: [ i686-linux, x86_64-linux ] + loris: [ i686-linux, x86_64-linux ] + lostcities: [ i686-linux, x86_64-darwin, x86_64-linux ] + ls-usb: [ i686-linux, x86_64-darwin, x86_64-linux ] + lscabal: [ i686-linux, x86_64-linux ] + LslPlus: [ i686-linux, x86_64-darwin, x86_64-linux ] + lsystem: [ i686-linux, x86_64-darwin, x86_64-linux ] + ltk: [ i686-linux, x86_64-darwin, x86_64-linux ] + luachunk: [ i686-linux, x86_64-linux ] + lucienne: [ i686-linux, x86_64-darwin, x86_64-linux ] + Lucu: [ i686-linux, x86_64-linux ] + lui: [ i686-linux, x86_64-darwin, x86_64-linux ] + luka: [ i686-linux, x86_64-linux ] + lushtags: [ i686-linux, x86_64-darwin, x86_64-linux ] + luthor: [ i686-linux, x86_64-linux ] + lvish: [ i686-linux, x86_64-linux ] + lvmlib: [ i686-linux, x86_64-darwin, x86_64-linux ] + lxc: [ i686-linux, x86_64-linux ] + lye: [ i686-linux, x86_64-linux ] + lzma-streams: [ i686-linux ] + lzma: [ i686-linux ] + maam: [ i686-linux, x86_64-linux ] + macbeth-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + machines-binary: [ i686-linux, x86_64-linux ] + machines-directory: [ i686-linux, x86_64-linux ] + machines-io: [ i686-linux, x86_64-linux ] + machines-process: [ i686-linux, x86_64-linux ] + machines-zlib: [ i686-linux, x86_64-linux ] + machines: [ i686-linux, x86_64-linux ] + macosx-make-standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] + mage: [ i686-linux, x86_64-linux ] + MagicHaskeller: [ i686-linux, x86_64-darwin, x86_64-linux ] + magico: [ i686-linux, x86_64-linux ] + mahoro: [ i686-linux, x86_64-darwin, x86_64-linux ] + maid: [ i686-linux, x86_64-linux ] + mailbox-count: [ i686-linux, x86_64-linux ] + majordomo: [ i686-linux, x86_64-linux ] + majority: [ i686-linux, x86_64-darwin, x86_64-linux ] + make-hard-links: [ i686-linux, x86_64-linux ] + make-package: [ i686-linux, x86_64-linux ] + makedo: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-all: [ i686-linux, x86_64-linux ] + manatee-anything: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-browser: [ i686-linux, x86_64-linux ] + manatee-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-curl: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-filemanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-imageviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-ircclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-mplayer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-pdfviewer: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-processmanager: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-reader: [ i686-linux, x86_64-linux ] + manatee-template: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee-terminal: [ i686-linux, x86_64-linux ] + manatee-welcome: [ i686-linux, x86_64-darwin, x86_64-linux ] + manatee: [ i686-linux, x86_64-darwin, x86_64-linux ] + mandulia: [ i686-linux, x86_64-linux ] + mangopay: [ i686-linux, x86_64-linux ] + manifold-random: [ i686-linux, x86_64-darwin, x86_64-linux ] + manifolds: [ i686-linux, x86_64-darwin, x86_64-linux ] + mappy: [ i686-linux, x86_64-linux ] + marionetta: [ i686-linux, x86_64-linux ] + markdown-kate: [ i686-linux, x86_64-darwin, x86_64-linux ] + markdown-pap: [ i686-linux, x86_64-linux ] + markdown2svg: [ i686-linux, x86_64-linux ] + markov-processes: [ i686-linux, x86_64-darwin, x86_64-linux ] + markup-preview: [ i686-linux, x86_64-linux ] + marmalade-upload: [ i686-linux, x86_64-darwin, x86_64-linux ] + marquise: [ i686-linux, x86_64-darwin, x86_64-linux ] + marxup: [ i686-linux, x86_64-linux ] + masakazu-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + matchers: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathblog: [ i686-linux, x86_64-darwin, x86_64-linux ] + mathlink: [ i686-linux, x86_64-darwin, x86_64-linux ] + matlab: [ i686-linux, x86_64-linux ] + matsuri: [ i686-linux, x86_64-darwin, x86_64-linux ] + maude: [ i686-linux, x86_64-linux ] + maxent: [ i686-linux, x86_64-linux ] + maxsharing: [ i686-linux, x86_64-linux ] + maybench: [ i686-linux, x86_64-linux ] + MaybeT-monads-tf: [ i686-linux, x86_64-linux ] + MaybeT-transformers: [ i686-linux, x86_64-linux ] + MaybeT: [ i686-linux, x86_64-darwin, x86_64-linux ] + MazesOfMonad: [ i686-linux, x86_64-linux ] + mbox-tools: [ i686-linux, x86_64-linux ] + MC-Fold-DP: [ i686-linux, x86_64-linux ] + mcmc-samplers: [ i686-linux, x86_64-linux ] + mdcat: [ i686-linux, x86_64-darwin, x86_64-linux ] + Measure: [ i686-linux, x86_64-linux ] + mecab: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki2latex: [ i686-linux, x86_64-darwin, x86_64-linux ] + mediawiki: [ i686-linux, x86_64-linux ] + medium-sdk-haskell: [ i686-linux, x86_64-linux ] + mega-sdist: [ i686-linux, x86_64-linux ] + melody: [ i686-linux, x86_64-linux ] + memo-sqlite: [ i686-linux, x86_64-darwin, x86_64-linux ] + memoize: [ i686-linux, x86_64-darwin, x86_64-linux ] + meta-misc: [ i686-linux, x86_64-linux ] + meta-par-accelerate: [ i686-linux, x86_64-darwin, x86_64-linux ] + metadata: [ i686-linux, x86_64-linux ] + MetaHDBC: [ i686-linux, x86_64-linux ] + metaplug: [ i686-linux, x86_64-darwin, x86_64-linux ] + metric: [ i686-linux, x86_64-linux ] + Metrics: [ i686-linux, x86_64-linux ] + metronome: [ i686-linux, x86_64-darwin, x86_64-linux ] + mgeneric: [ i686-linux, x86_64-linux ] + Mhailist: [ i686-linux, x86_64-darwin, x86_64-linux ] + MHask: [ i686-linux, x86_64-linux ] + mi: [ i686-linux, x86_64-linux ] + Michelangelo: [ i686-linux, x86_64-linux ] + microformats2-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + microlens-aeson: [ i686-linux ] + midi-music-box: [ i686-linux, x86_64-darwin, x86_64-linux ] + midisurface: [ i686-linux, x86_64-linux ] + mighttpd: [ i686-linux, x86_64-darwin, x86_64-linux ] + milena: [ i686-linux, x86_64-linux ] + mime-string: [ i686-linux, x86_64-linux ] + minesweeper: [ i686-linux, x86_64-darwin, x86_64-linux ] + MiniAgda: [ i686-linux, x86_64-linux ] + miniforth: [ i686-linux, x86_64-linux ] + minimung: [ i686-linux, x86_64-darwin, x86_64-linux ] + minioperational: [ i686-linux, x86_64-linux ] + miniplex: [ i686-linux, x86_64-linux ] + minirotate: [ i686-linux, x86_64-linux ] + minisat: [ x86_64-darwin ] + ministg: [ i686-linux, x86_64-linux ] + mirror-tweet: [ i686-linux, x86_64-darwin, x86_64-linux ] + misfortune: [ i686-linux, x86_64-darwin, x86_64-linux ] + missing-py2: [ i686-linux, x86_64-darwin, x86_64-linux ] + MissingPy: [ i686-linux, x86_64-darwin, x86_64-linux ] + mix-arrows: [ i686-linux, x86_64-linux ] + mkbndl: [ i686-linux, x86_64-darwin, x86_64-linux ] + ml-w: [ i686-linux, x86_64-linux ] + mlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + mmtl-base: [ i686-linux, x86_64-linux ] + mmtl: [ i686-linux, x86_64-linux ] + moan: [ i686-linux, x86_64-linux ] + modelicaparser: [ i686-linux, x86_64-linux ] + modsplit: [ i686-linux, x86_64-darwin, x86_64-linux ] + modular-arithmetic: [ i686-linux, x86_64-linux ] + modular-prelude-classy: [ i686-linux, x86_64-linux ] + modular-prelude: [ i686-linux, x86_64-linux ] + module-management: [ i686-linux, x86_64-linux ] + modulespection: [ i686-linux, x86_64-linux ] + MoeDict: [ i686-linux, x86_64-linux ] + mole: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-abort-fd: [ i686-linux, x86_64-linux ] + monad-atom-simple: [ i686-linux, x86_64-linux ] + monad-atom: [ i686-linux, x86_64-linux ] + monad-codec: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-exception: [ i686-linux, x86_64-linux ] + monad-interleave: [ i686-linux, x86_64-linux ] + monad-levels: [ i686-linux, x86_64-linux ] + monad-lrs: [ i686-linux, x86_64-darwin, x86_64-linux ] + monad-memo: [ i686-linux, x86_64-linux ] + monad-mersenne-random: [ i686-linux, x86_64-linux ] + monad-open: [ i686-linux, x86_64-linux ] + monad-ran: [ i686-linux, x86_64-linux ] + monad-statevar: [ i686-linux, x86_64-linux ] + monad-stlike-io: [ i686-linux, x86_64-linux ] + monad-stlike-stm: [ i686-linux, x86_64-linux ] + monad-tx: [ i686-linux, x86_64-linux ] + monad-unify: [ i686-linux, x86_64-linux ] + monadacme: [ i686-linux, x86_64-linux ] + MonadCatchIO-mtl-foreign: [ i686-linux, x86_64-linux ] + MonadCatchIO-transformers-foreign: [ i686-linux, x86_64-linux ] + monadiccp-gecode: [ i686-linux, x86_64-darwin, x86_64-linux ] + monadiccp: [ i686-linux, x86_64-darwin, x86_64-linux ] + Monadius: [ i686-linux, x86_64-linux ] + MonadLab: [ i686-linux, x86_64-darwin, x86_64-linux ] + MonadRandomLazy: [ i686-linux, x86_64-linux ] + monarch: [ i686-linux, x86_64-linux ] + Monaris: [ i686-linux, x86_64-linux ] + Monatron-IO: [ i686-linux, x86_64-linux ] + Monatron: [ i686-linux, x86_64-linux ] + mondo: [ i686-linux, x86_64-linux ] + mongodb-queue: [ i686-linux, x86_64-linux ] + mongrel2-handler: [ i686-linux, x86_64-linux ] + mono-foldable: [ i686-linux, x86_64-linux ] + Monocle: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoid-owns: [ i686-linux, x86_64-darwin, x86_64-linux ] + monoidplus: [ i686-linux, x86_64-linux ] + monoids: [ i686-linux, x86_64-linux ] + monte-carlo: [ i686-linux, x86_64-linux ] + moo: [ i686-linux, x86_64-linux ] + moonshine: [ i686-linux, x86_64-darwin, x86_64-linux ] + morfette: [ i686-linux, x86_64-linux ] + morfeusz: [ i686-linux, x86_64-linux ] + mosaico-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + mount: [ i686-linux, x86_64-linux ] + mp3decoder: [ i686-linux, x86_64-darwin, x86_64-linux ] + mp: [ i686-linux, x86_64-linux ] + mpdmate: [ i686-linux, x86_64-linux ] + mpppc: [ i686-linux, x86_64-linux ] + mpretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + mprover: [ i686-linux, x86_64-darwin, x86_64-linux ] + mps: [ i686-linux, x86_64-darwin, x86_64-linux ] + mpvguihs: [ i686-linux, x86_64-darwin, x86_64-linux ] + mrm: [ i686-linux, x86_64-linux ] + msgpack-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack-idl: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + msgpack: [ i686-linux, x86_64-darwin, x86_64-linux ] + msh: [ i686-linux, x86_64-linux ] + mtgoxapi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mtl-evil-instances: [ i686-linux, x86_64-linux ] + mtl-tf: [ i686-linux, x86_64-linux ] + mtlx: [ i686-linux, x86_64-linux ] + mtp: [ i686-linux, x86_64-linux ] + MuCheck-Hspec: [ i686-linux, x86_64-darwin, x86_64-linux ] + MuCheck-HUnit: [ i686-linux, x86_64-darwin, x86_64-linux ] + MuCheck-QuickCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + MuCheck-SmallCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + MuCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + mudbath: [ i686-linux, x86_64-linux ] + mueval: [ i686-linux, x86_64-linux ] + mulang: [ i686-linux, x86_64-linux ] + multi-cabal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multifocal: [ i686-linux, x86_64-darwin, x86_64-linux ] + multipass: [ i686-linux, x86_64-linux ] + multiplate-simplified: [ i686-linux, x86_64-linux ] + multirec-alt-deriver: [ i686-linux, x86_64-linux ] + multirec-binary: [ i686-linux, x86_64-linux ] + multirec: [ i686-linux, x86_64-linux ] + multisetrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + muon: [ i686-linux, x86_64-darwin, x86_64-linux ] + murder: [ i686-linux, x86_64-darwin, x86_64-linux ] + murmur: [ i686-linux, x86_64-darwin, x86_64-linux ] + murmurhash3: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-graphics: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-parts: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-preludes: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-score: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-sibelius: [ i686-linux, x86_64-darwin, x86_64-linux ] + music-suite: [ i686-linux, x86_64-darwin, x86_64-linux ] + musicbrainz-email: [ i686-linux, x86_64-linux ] + musicxml: [ i686-linux, x86_64-linux ] + mustache2hs: [ i686-linux, x86_64-linux ] + mutable-iter: [ i686-linux, x86_64-darwin, x86_64-linux ] + mute-unmute: [ i686-linux, x86_64-linux ] + mvc-updates: [ i686-linux, x86_64-linux ] + mvclient: [ i686-linux, x86_64-darwin, x86_64-linux ] + myo: [ i686-linux, x86_64-linux ] + mysnapsession-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysnapsession: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-effect: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-quasi: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple-typed: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + myTestlll: [ i686-linux, x86_64-linux ] + mzv: [ i686-linux, x86_64-linux ] + n-m: [ i686-linux, x86_64-darwin, x86_64-linux ] + nagios-plugin-ekg: [ i686-linux, x86_64-linux ] + named-lock: [ i686-linux, x86_64-linux ] + nano-cryptr: [ i686-linux, x86_64-darwin, x86_64-linux ] + nano-hmac: [ i686-linux, x86_64-linux ] + nano-md5: [ i686-linux, x86_64-linux ] + nanoAgda: [ i686-linux, x86_64-linux ] + nanocurses: [ i686-linux, x86_64-linux ] + nanovg: [ i686-linux, x86_64-darwin, x86_64-linux ] + nanq: [ i686-linux ] + narc: [ i686-linux, x86_64-linux ] + nats-queue: [ i686-linux, x86_64-darwin, x86_64-linux ] + natural-number: [ i686-linux, x86_64-linux ] + NaturalLanguageAlphabets: [ i686-linux, x86_64-darwin, x86_64-linux ] + nc-indicators: [ i686-linux, x86_64-linux ] + neat: [ i686-linux, x86_64-linux ] + needle: [ i686-linux, x86_64-darwin, x86_64-linux ] + nehe-tuts: [ i686-linux, x86_64-linux ] + nemesis-titan: [ i686-linux, x86_64-linux ] + nerf: [ i686-linux, x86_64-darwin, x86_64-linux ] + nero-wai: [ i686-linux, x86_64-linux ] + nero-warp: [ i686-linux, x86_64-linux ] + nero: [ i686-linux, x86_64-linux ] + nested-routes: [ i686-linux, x86_64-darwin, x86_64-linux ] + netcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + netlines: [ i686-linux, x86_64-linux ] + NetSNMP: [ i686-linux, x86_64-linux ] + netspec: [ i686-linux, x86_64-linux ] + nettle-frp: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-netkit: [ i686-linux, x86_64-darwin, x86_64-linux ] + nettle-openflow: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-address: [ i686-linux, x86_64-linux ] + network-builder: [ i686-linux, x86_64-linux ] + network-bytestring: [ i686-linux, x86_64-linux ] + network-connection: [ i686-linux, x86_64-linux ] + network-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-interfacerequest: [ x86_64-darwin ] + network-ip: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-minihttp: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-netpacket: [ x86_64-darwin ] + network-rpca: [ i686-linux, x86_64-linux ] + network-server: [ i686-linux, x86_64-linux ] + network-simple-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-topic-models: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-transport-amqp: [ i686-linux, x86_64-linux ] + network-transport-zeromq: [ i686-linux, x86_64-darwin, x86_64-linux ] + network-uri-static: [ i686-linux, x86_64-linux ] + network-websocket: [ i686-linux, x86_64-darwin, x86_64-linux ] + newports: [ i686-linux, x86_64-linux ] + newsynth: [ i686-linux, x86_64-linux ] + newt: [ i686-linux, x86_64-linux ] + newtype-deriving: [ i686-linux, x86_64-linux ] + newtype-th: [ i686-linux, x86_64-linux ] + ngrams-loader: [ i686-linux, x86_64-linux ] + NGrams: [ i686-linux, x86_64-linux ] + niagra: [ i686-linux, x86_64-linux ] + nibblestring: [ i686-linux, x86_64-linux ] + nikepub: [ i686-linux, x86_64-darwin, x86_64-linux ] + nimber: [ i686-linux ] + Ninjas: [ i686-linux, x86_64-linux ] + nitro: [ i686-linux, x86_64-linux ] + nixfromnpm: [ i686-linux, x86_64-linux ] + nkjp: [ i686-linux, x86_64-linux ] + nm: [ i686-linux, x86_64-darwin, x86_64-linux ] + nme: [ i686-linux, x86_64-linux ] + nntp: [ i686-linux, x86_64-linux ] + no-role-annots: [ i686-linux, x86_64-linux ] + noise: [ i686-linux, x86_64-linux ] + Nomyx-Core: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Language: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Rules: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx-Web: [ i686-linux, x86_64-darwin, x86_64-linux ] + Nomyx: [ i686-linux, x86_64-darwin, x86_64-linux ] + NonEmptyList: [ i686-linux, x86_64-darwin, x86_64-linux ] + noodle: [ i686-linux, x86_64-linux ] + NoSlow: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + not-gloss: [ i686-linux, x86_64-darwin, x86_64-linux ] + notcpp: [ i686-linux, x86_64-linux ] + notmuch-haskell: [ i686-linux, x86_64-linux ] + notmuch-web: [ i686-linux, x86_64-linux ] + np-linear: [ i686-linux, x86_64-linux ] + nptools: [ i686-linux, x86_64-darwin, x86_64-linux ] + nthable: [ i686-linux, x86_64-darwin, x86_64-linux ] + NTRU: [ i686-linux, x86_64-linux ] + null-canvas: [ i686-linux, x86_64-linux ] + nullpipe: [ i686-linux, x86_64-linux ] + NumberSieves: [ i686-linux, x86_64-linux ] + numerals-base: [ i686-linux, x86_64-linux ] + numerals: [ i686-linux, x86_64-linux ] + Nussinov78: [ i686-linux, x86_64-darwin, x86_64-linux ] + nvim-hs-contrib: [ i686-linux, x86_64-linux ] + nvim-hs: [ i686-linux, x86_64-linux ] + NXT: [ i686-linux, x86_64-linux ] + NXTDSL: [ i686-linux, x86_64-linux ] + nymphaea: [ i686-linux, x86_64-darwin, x86_64-linux ] + oberon0: [ i686-linux, x86_64-darwin, x86_64-linux ] + obj: [ i686-linux, x86_64-darwin, x86_64-linux ] + Object: [ i686-linux, x86_64-linux ] + ObjectIO: [ i686-linux, x86_64-darwin, x86_64-linux ] + octohat: [ i686-linux, x86_64-linux ] + octopus: [ i686-linux, x86_64-linux ] + oculus: [ i686-linux, x86_64-linux ] + OddWord: [ i686-linux ] + oden-go-packages: [ i686-linux, x86_64-linux ] + OGL: [ i686-linux, x86_64-linux ] + ohloh-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + oi: [ i686-linux, x86_64-linux ] + oidc-client: [ i686-linux, x86_64-linux ] + ois-input-manager: [ i686-linux, x86_64-linux ] + olwrapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + omaketex: [ i686-linux, x86_64-linux ] + Omega: [ i686-linux, x86_64-linux ] + omega: [ i686-linux, x86_64-linux ] + omnicodec: [ i686-linux, x86_64-linux ] + on-a-horse: [ i686-linux, x86_64-linux ] + one-liner: [ i686-linux, x86_64-linux ] + oneormore: [ i686-linux, x86_64-linux ] + onu-course: [ i686-linux, x86_64-linux ] + opaleye-sqlite: [ i686-linux, x86_64-linux ] + open-pandoc: [ i686-linux, x86_64-linux ] + open-typerep: [ i686-linux ] + open-union: [ x86_64-linux ] + OpenAFP-Utils: [ i686-linux, x86_64-linux ] + OpenAFP: [ i686-linux, x86_64-linux ] + OpenAL: [ x86_64-darwin ] + OpenCL: [ i686-linux, x86_64-linux ] + OpenCLRaw: [ i686-linux, x86_64-linux ] + opencog-atomspace: [ i686-linux, x86_64-linux ] + opencv-raw: [ i686-linux, x86_64-linux ] + openexchangerates: [ i686-linux, x86_64-linux ] + openflow: [ i686-linux, x86_64-linux ] + OpenGLCheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + opengles: [ i686-linux, x86_64-linux ] + OpenGLRaw21: [ i686-linux, x86_64-linux ] + openid: [ i686-linux, x86_64-linux ] + openpgp-crypto-api: [ i686-linux, x86_64-linux ] + openpgp-Crypto: [ i686-linux, x86_64-linux ] + OpenSCAD: [ i686-linux, x86_64-linux ] + opensoundcontrol-ht: [ i686-linux, x86_64-linux ] + openssh-github-keys: [ i686-linux, x86_64-linux ] + opentheory-char: [ i686-linux, x86_64-linux ] + OpenVG: [ i686-linux, x86_64-linux ] + OpenVGRaw: [ i686-linux, x86_64-linux ] + Operads: [ i686-linux, x86_64-linux ] + operational-alacarte: [ i686-linux, x86_64-linux ] + opml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + optimal-blocks: [ i686-linux, x86_64-linux ] + optimusprime: [ i686-linux, x86_64-darwin, x86_64-linux ] + orchestrate: [ i686-linux, x86_64-darwin, x86_64-linux ] + OrchestrateDB: [ i686-linux, x86_64-linux ] + orchid-demo: [ i686-linux, x86_64-linux ] + orchid: [ i686-linux, x86_64-linux ] + order-maintenance: [ i686-linux, x86_64-darwin, x86_64-linux ] + ordrea: [ i686-linux, x86_64-linux ] + orgmode-parse: [ i686-linux, x86_64-linux ] + origami: [ i686-linux, x86_64-linux ] + osm-conduit: [ i686-linux, x86_64-linux ] + osm-download: [ i686-linux, x86_64-linux ] + OSM: [ i686-linux, x86_64-darwin, x86_64-linux ] + ot: [ i686-linux, x86_64-linux ] + overture: [ i686-linux, x86_64-linux ] + package-vt: [ i686-linux, x86_64-linux ] + packedstring: [ i686-linux, x86_64-linux ] + packman: [ i686-linux, x86_64-linux ] + packunused: [ i686-linux, x86_64-linux ] + padKONTROL: [ i686-linux, x86_64-linux ] + PageIO: [ i686-linux, x86_64-linux ] + panda: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-citeproc: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-crossref: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-csv2table: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-include: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc-plantuml-diagrams: [ i686-linux, x86_64-linux ] + pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] + pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] + PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] + papillon: [ i686-linux, x86_64-linux ] + pappy: [ i686-linux, x86_64-linux ] + paragon: [ i686-linux, x86_64-linux ] + Paraiso: [ i686-linux, x86_64-darwin, x86_64-linux ] + parallel-tasks: [ i686-linux, x86_64-linux ] + parameterized-data: [ i686-linux, x86_64-darwin, x86_64-linux ] + parco-attoparsec: [ i686-linux, x86_64-linux ] + parco-parsec: [ i686-linux, x86_64-linux ] + parco: [ i686-linux, x86_64-linux ] + parconc-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + Parry: [ i686-linux, x86_64-darwin, x86_64-linux ] + parse-help: [ i686-linux, x86_64-linux ] + parsely: [ i686-linux, x86_64-linux ] + parser-helper: [ i686-linux, x86_64-linux ] + parser241: [ i686-linux, x86_64-linux ] + parsergen: [ i686-linux, x86_64-linux ] + parsestar: [ i686-linux, x86_64-linux ] + partial-isomorphisms: [ i686-linux, x86_64-linux ] + partial-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + partial: [ i686-linux, x86_64-linux ] + partly: [ i686-linux, x86_64-linux ] + passage: [ i686-linux, x86_64-linux ] + pastis: [ i686-linux, x86_64-linux ] + pasty: [ i686-linux, x86_64-linux ] + Pathfinder: [ i686-linux, x86_64-linux ] + pathfindingcore: [ i686-linux, x86_64-darwin, x86_64-linux ] + patterns: [ i686-linux, x86_64-linux ] + paypal-adaptive-hoops: [ i686-linux, x86_64-linux ] + paypal-api: [ i686-linux, x86_64-linux ] + pb: [ i686-linux, x86_64-linux ] + pcf: [ i686-linux, x86_64-linux ] + PCLT-DB: [ i686-linux, x86_64-linux ] + PCLT: [ i686-linux, x86_64-linux ] + pdynload: [ i686-linux, x86_64-linux ] + peakachu: [ i686-linux, x86_64-linux ] + pec: [ i686-linux, x86_64-linux ] + peg: [ i686-linux, x86_64-linux ] + peggy: [ i686-linux, x86_64-linux ] + pell: [ i686-linux, x86_64-linux ] + penny-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + penny: [ i686-linux, x86_64-darwin, x86_64-linux ] + peparser: [ i686-linux, x86_64-darwin, x86_64-linux ] + perdure: [ i686-linux, x86_64-darwin, x86_64-linux ] + PerfectHash: [ i686-linux, x86_64-linux ] + perfecthash: [ i686-linux, x86_64-linux ] + permute: [ i686-linux, x86_64-linux ] + PermuteEffects: [ i686-linux, x86_64-darwin, x86_64-linux ] + persistable-record: [ i686-linux, x86_64-linux ] + persistable-types-HDBC-pg: [ i686-linux, x86_64-linux ] + persistent-database-url: [ i686-linux, x86_64-linux ] + persistent-hssqlppp: [ i686-linux, x86_64-linux ] + persistent-map: [ i686-linux, x86_64-linux ] + persistent-odbc: [ i686-linux, x86_64-linux ] + persistent-protobuf: [ i686-linux, x86_64-linux ] + persistent-ratelimit: [ i686-linux, x86_64-linux ] + persona-idp: [ i686-linux, x86_64-darwin, x86_64-linux ] + persona: [ i686-linux, x86_64-darwin, x86_64-linux ] + pesca: [ i686-linux, x86_64-linux ] + peyotls-codec: [ i686-linux, x86_64-linux ] + peyotls: [ i686-linux, x86_64-linux ] + pez: [ i686-linux, x86_64-linux ] + pg-harness-server: [ i686-linux, x86_64-linux ] + pg-harness: [ i686-linux, x86_64-darwin, x86_64-linux ] + pg-store: [ i686-linux, x86_64-linux ] + pgdl: [ i686-linux, x86_64-linux ] + pgsql-simple: [ i686-linux, x86_64-linux ] + pgstream: [ i686-linux, x86_64-linux ] + phasechange: [ i686-linux, x86_64-linux ] + phoityne: [ i686-linux, x86_64-darwin, x86_64-linux ] + phone-numbers: [ i686-linux, x86_64-linux ] + phone-push: [ i686-linux, x86_64-linux ] + phooey: [ i686-linux, x86_64-darwin, x86_64-linux ] + photoname: [ i686-linux, x86_64-linux ] + phraskell: [ i686-linux, x86_64-linux ] + Phsu: [ i686-linux, x86_64-darwin, x86_64-linux ] + phybin: [ i686-linux, x86_64-linux ] + pi-calculus: [ i686-linux, x86_64-linux ] + pianola: [ i686-linux, x86_64-darwin, x86_64-linux ] + piet: [ i686-linux, x86_64-linux ] + piki: [ i686-linux, x86_64-linux ] + pinch: [ i686-linux ] + Pipe: [ i686-linux, x86_64-linux ] + pipes-attoparsec-streaming: [ i686-linux, x86_64-linux ] + pipes-cereal-plus: [ i686-linux, x86_64-linux ] + pipes-conduit: [ i686-linux, x86_64-linux ] + pipes-core: [ i686-linux, x86_64-linux ] + pipes-courier: [ i686-linux, x86_64-linux ] + pipes-extra: [ i686-linux, x86_64-linux ] + pipes-files: [ i686-linux, x86_64-linux ] + pipes-network-tls: [ i686-linux, x86_64-darwin, x86_64-linux ] + pipes-p2p-examples: [ i686-linux, x86_64-linux ] + pipes-shell: [ i686-linux, x86_64-linux ] + pisigma: [ i686-linux, x86_64-linux ] + Piso: [ i686-linux, x86_64-linux ] + pit: [ i686-linux, x86_64-linux ] + pivotal-tracker: [ i686-linux, x86_64-linux ] + pkggraph: [ i686-linux, x86_64-linux ] + planar-graph: [ i686-linux, x86_64-linux ] + plat: [ i686-linux, x86_64-linux ] + plist-buddy: [ i686-linux, x86_64-linux ] + plivo: [ i686-linux, x86_64-linux ] + plot-gtk3: [ i686-linux, x86_64-darwin, x86_64-linux ] + Plot-ho-matic: [ i686-linux, x86_64-darwin, x86_64-linux ] + PlslTools: [ i686-linux, x86_64-darwin, x86_64-linux ] + plugins-auto: [ i686-linux, x86_64-linux ] + plugins-multistage: [ i686-linux, x86_64-linux ] + plugins: [ i686-linux, x86_64-linux ] + plumbers: [ i686-linux, x86_64-linux ] + ply-loader: [ i686-linux, x86_64-linux ] + png-file: [ i686-linux, x86_64-linux ] + pngload-fixed: [ i686-linux, x86_64-linux ] + pngload: [ i686-linux, x86_64-darwin, x86_64-linux ] + pocket-dns: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-lenses: [ i686-linux, x86_64-darwin, x86_64-linux ] + pointless-rewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + polar-configfile: [ i686-linux, x86_64-linux ] + polar-shader: [ i686-linux, x86_64-linux ] + polh-lexicon: [ i686-linux, x86_64-linux ] + Pollutocracy: [ i686-linux, x86_64-linux ] + poly-arity: [ i686-linux, x86_64-darwin, x86_64-linux ] + polynom: [ i686-linux, x86_64-linux ] + polynomial: [ i686-linux, x86_64-linux ] + polyseq: [ i686-linux, x86_64-linux ] + polytypeable-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + polytypeable: [ i686-linux, x86_64-linux ] + pong-server: [ i686-linux, x86_64-linux ] + pontarius-mediaserver: [ i686-linux, x86_64-linux ] + pontarius-xmpp: [ i686-linux, x86_64-linux ] + pontarius-xpmn: [ i686-linux, x86_64-linux ] + pool-conduit: [ i686-linux, x86_64-linux ] + pool: [ i686-linux, x86_64-linux ] + popenhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + poppler: [ i686-linux, x86_64-linux ] + porte: [ i686-linux, x86_64-linux ] + porter: [ i686-linux, x86_64-darwin, x86_64-linux ] + ports: [ i686-linux, x86_64-darwin, x86_64-linux ] + posix-acl: [ i686-linux, x86_64-linux ] + posix-waitpid: [ i686-linux, x86_64-linux ] + postcodes: [ i686-linux, x86_64-linux ] + postgresql-orm: [ i686-linux, x86_64-darwin, x86_64-linux ] + postgresql-query: [ i686-linux, x86_64-linux ] + postgresql-simple-sop: [ i686-linux, x86_64-linux ] + postgresql-simple-typed: [ i686-linux, x86_64-linux ] + postgresql-typed: [ i686-linux, x86_64-linux ] + PostgreSQL: [ i686-linux, x86_64-linux ] + postie: [ i686-linux, x86_64-linux ] + postmaster: [ i686-linux, x86_64-linux ] + potrace-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + powermate: [ i686-linux, x86_64-linux ] + powerpc: [ i686-linux, x86_64-linux ] + pqc: [ i686-linux, x86_64-linux ] + pqueue-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + practice-room: [ i686-linux, x86_64-darwin, x86_64-linux ] + precis: [ i686-linux, x86_64-linux ] + pred-trie: [ i686-linux, x86_64-darwin, x86_64-linux ] + prednote-test: [ i686-linux, x86_64-darwin, x86_64-linux ] + prefork: [ i686-linux, x86_64-linux ] + pregame: [ i686-linux, x86_64-linux ] + prelude-generalize: [ i686-linux, x86_64-linux ] + prelude-plus: [ i686-linux, x86_64-linux ] + preprocess-haskell: [ i686-linux, x86_64-linux ] + present: [ i686-linux, x86_64-linux ] + press: [ i686-linux, x86_64-linux ] + presto-hdbc: [ i686-linux, x86_64-linux ] + primitive-simd: [ i686-linux, x86_64-linux ] + PrimitiveArray-Pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-board: [ i686-linux, x86_64-darwin, x86_64-linux ] + primula-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + pringletons: [ i686-linux, x86_64-linux ] + print-debugger: [ i686-linux, x86_64-linux ] + Printf-TH: [ i686-linux, x86_64-darwin, x86_64-linux ] + priority-queue: [ i686-linux, x86_64-linux ] + PriorityChansConverger: [ i686-linux, x86_64-linux ] + ProbabilityMonads: [ i686-linux, x86_64-darwin, x86_64-linux ] + proc: [ i686-linux, x86_64-linux ] + process-iterio: [ i686-linux, x86_64-linux ] + process-leksah: [ i686-linux, x86_64-linux ] + process-listlike: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-progress: [ i686-linux, x86_64-darwin, x86_64-linux ] + process-qq: [ i686-linux, x86_64-linux ] + processing: [ i686-linux, x86_64-darwin, x86_64-linux ] + procrastinating-structure: [ i686-linux, x86_64-linux ] + procrastinating-variable: [ i686-linux, x86_64-linux ] + procstat: [ i686-linux, x86_64-linux ] + prof2dot: [ i686-linux, x86_64-darwin, x86_64-linux ] + progress: [ i686-linux, x86_64-linux ] + progressbar: [ i686-linux, x86_64-linux ] + progression: [ i686-linux, x86_64-darwin, x86_64-linux ] + progressive: [ i686-linux, x86_64-linux ] + proj4-hs-bindings: [ i686-linux, x86_64-linux ] + prolog-graph-lib: [ i686-linux, x86_64-linux ] + prolog-graph: [ i686-linux, x86_64-linux ] + prolog: [ i686-linux, x86_64-linux ] + prologue: [ i686-linux, x86_64-darwin, x86_64-linux ] + propane: [ i686-linux, x86_64-darwin, x86_64-linux ] + Proper: [ i686-linux, x86_64-linux ] + property-list: [ i686-linux, x86_64-darwin, x86_64-linux ] + proplang: [ i686-linux, x86_64-darwin, x86_64-linux ] + proteaaudio: [ i686-linux, x86_64-linux ] + protobuf-native: [ i686-linux, x86_64-linux ] + protobuf: [ i686-linux, x86_64-linux ] + protocol-buffers-descriptor-fork: [ i686-linux, x86_64-linux ] + protocol-buffers-fork: [ i686-linux, x86_64-linux ] + prove-everywhere-server: [ i686-linux, x86_64-linux ] + proxy-kindness: [ i686-linux, x86_64-linux ] + pub: [ i686-linux, x86_64-linux ] + publicsuffixlistcreate: [ i686-linux, x86_64-linux ] + pubnub: [ i686-linux, x86_64-linux ] + pubsub: [ i686-linux, x86_64-linux ] + puffytools: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugixml: [ i686-linux, x86_64-linux ] + pugs-hsregex: [ i686-linux, x86_64-darwin, x86_64-linux ] + pugs-HsSyck: [ i686-linux, x86_64-linux ] + Pugs: [ i686-linux, x86_64-linux ] + PUH-Project: [ i686-linux, x86_64-linux ] + punkt: [ i686-linux, x86_64-linux ] + Pup-Events-Demo: [ i686-linux, x86_64-linux ] + puppetresources: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-ccs: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify-general: [ i686-linux, x86_64-darwin, x86_64-linux ] + push-notify: [ i686-linux, x86_64-darwin, x86_64-linux ] + pushme: [ i686-linux, x86_64-linux ] + putlenses: [ i686-linux, x86_64-linux ] + puzzle-draw-cmdline: [ i686-linux, x86_64-darwin, x86_64-linux ] + puzzle-draw: [ i686-linux, x86_64-darwin, x86_64-linux ] + pvd: [ i686-linux, x86_64-darwin, x86_64-linux ] + python-pickle: [ i686-linux, x86_64-linux ] + qc-oi-testgenerator: [ i686-linux, x86_64-linux ] + qd-vec: [ i686-linux, x86_64-linux ] + qd: [ i686-linux, x86_64-linux ] + qed: [ i686-linux, x86_64-linux ] + qhull-simple: [ i686-linux, x86_64-linux ] + QIO: [ i686-linux, x86_64-linux ] + qt: [ i686-linux, x86_64-linux ] + QuadEdge: [ i686-linux, x86_64-linux ] + quadratic-irrational: [ i686-linux, x86_64-linux ] + QuadTree: [ i686-linux, x86_64-linux ] + quantfin: [ i686-linux, x86_64-darwin, x86_64-linux ] + quantum-arrow: [ i686-linux, x86_64-linux ] + QuasiText: [ i686-linux, x86_64-linux ] + qudb: [ i686-linux, x86_64-linux ] + Quelea: [ i686-linux, x86_64-linux ] + quenya-verb: [ i686-linux, x86_64-linux ] + querystring-pickle: [ i686-linux, x86_64-linux ] + queuelike: [ i686-linux, x86_64-darwin, x86_64-linux ] + QuickAnnotate: [ i686-linux, x86_64-linux ] + quickbooks: [ i686-linux, x86_64-linux ] + QuickCheck-GenT: [ i686-linux, x86_64-linux ] + quickcheck-poly: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-regex: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-relaxng: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickcheck-rematch: [ i686-linux, x86_64-linux ] + QuickPlot: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickpull: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickset: [ i686-linux, x86_64-linux ] + Quickson: [ i686-linux, x86_64-linux ] + quickterm: [ i686-linux, x86_64-darwin, x86_64-linux ] + quicktest: [ i686-linux, x86_64-darwin, x86_64-linux ] + quickwebapp: [ i686-linux, x86_64-linux ] + quiver-groups: [ i686-linux, x86_64-darwin, x86_64-linux ] + quiver-interleave: [ i686-linux, x86_64-linux ] + quiver-sort: [ i686-linux, x86_64-darwin, x86_64-linux ] + quoridor-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + qux: [ i686-linux, x86_64-darwin, x86_64-linux ] + R-pandoc: [ i686-linux, x86_64-linux ] + rabocsv2qif: [ i686-linux, x86_64-linux ] + rad: [ i686-linux, x86_64-linux ] + radium-formula-parser: [ i686-linux, x86_64-linux ] + rados-haskell: [ i686-linux, x86_64-linux ] + rail-compiler-editor: [ i686-linux, x86_64-darwin, x86_64-linux ] + rainbow-tests: [ i686-linux, x86_64-darwin, x86_64-linux ] + rakhana: [ i686-linux, x86_64-linux ] + ralist: [ i686-linux, x86_64-linux ] + rallod: [ i686-linux, x86_64-darwin, x86_64-linux ] + rand-vars: [ i686-linux, x86_64-linux ] + randfile: [ i686-linux, x86_64-linux ] + random-access-list: [ i686-linux, x86_64-linux ] + random-eff: [ i686-linux, x86_64-linux ] + random-effin: [ i686-linux, x86_64-linux ] + random-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-fu: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-hypergeometric: [ i686-linux, x86_64-darwin, x86_64-linux ] + random-stream: [ i686-linux, x86_64-linux ] + random-variates: [ i686-linux ] + Random123: [ i686-linux, x86_64-darwin, x86_64-linux ] + RandomDotOrg: [ i686-linux, x86_64-linux ] + Randometer: [ i686-linux, x86_64-darwin, x86_64-linux ] + rangemin: [ i686-linux, x86_64-linux ] + rank1dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ranka: [ i686-linux, x86_64-darwin, x86_64-linux ] + Rasenschach: [ i686-linux, x86_64-linux ] + raven-haskell-scotty: [ i686-linux, x86_64-linux ] + rbr: [ i686-linux, x86_64-linux ] + rcu: [ i686-linux, x86_64-linux ] + rdf4h: [ i686-linux, x86_64-linux ] + rdioh: [ i686-linux, x86_64-linux ] + reaction-logic: [ i686-linux, x86_64-linux ] + reactive-bacon: [ i686-linux, x86_64-linux ] + reactive-balsa: [ i686-linux, x86_64-linux ] + reactive-banana-sdl: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-banana-threepenny: [ i686-linux, x86_64-linux ] + reactive-banana-wx: [ x86_64-darwin ] + reactive-fieldtrip: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-glut: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactive-thread: [ i686-linux, x86_64-linux ] + reactive: [ i686-linux, x86_64-darwin, x86_64-linux ] + reactor: [ i686-linux, x86_64-linux ] + readshp: [ i686-linux, x86_64-darwin, x86_64-linux ] + really-simple-xml-parser: [ i686-linux, x86_64-darwin, x86_64-linux ] + reasonable-lens: [ i686-linux, x86_64-linux ] + record-aeson: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-gl: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-preprocessor: [ i686-linux, x86_64-darwin, x86_64-linux ] + record-syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + record: [ i686-linux, x86_64-darwin, x86_64-linux ] + records-th: [ i686-linux, x86_64-linux ] + records: [ i686-linux, x86_64-linux ] + recursion-schemes: [ i686-linux, x86_64-darwin, x86_64-linux ] + redHandlers: [ i686-linux, x86_64-darwin, x86_64-linux ] + Redmine: [ i686-linux, x86_64-linux ] + reedsolomon: [ i686-linux, x86_64-linux ] + ref: [ i686-linux, x86_64-darwin, x86_64-linux ] + Ref: [ i686-linux, x86_64-linux ] + Referees: [ i686-linux, x86_64-linux ] + references: [ i686-linux, x86_64-linux ] + refh: [ i686-linux, x86_64-linux ] + refined: [ i686-linux, x86_64-linux ] + reflection-extras: [ i686-linux, x86_64-linux ] + reflex-dom-contrib: [ i686-linux, x86_64-linux ] + reflex-dom-helpers: [ i686-linux, x86_64-linux ] + reflex-dom: [ i686-linux, x86_64-linux ] + reflex-jsx: [ i686-linux, x86_64-linux ] + reflex-orphans: [ i686-linux, x86_64-linux ] + reform-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + reform-hsp: [ i686-linux, x86_64-linux ] + regex-deriv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-dfa: [ i686-linux, x86_64-linux ] + regex-genex: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-parsec: [ i686-linux, x86_64-linux ] + regex-pderiv: [ i686-linux, x86_64-darwin, x86_64-linux ] + regex-tdfa-utf8: [ i686-linux, x86_64-linux ] + regex-tre: [ i686-linux, x86_64-linux ] + regex-xmlschema: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexchar: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexdot: [ i686-linux, x86_64-darwin, x86_64-linux ] + regexp-tries: [ i686-linux, x86_64-linux ] + regexqq: [ i686-linux, x86_64-linux ] + regional-pointers: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadsfd: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-monadstf: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + regions: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-extras: [ i686-linux, x86_64-linux ] + regular-web: [ i686-linux, x86_64-darwin, x86_64-linux ] + regular-xmlpickler: [ i686-linux, x86_64-linux ] + regular: [ i686-linux, x86_64-linux ] + reheat: [ i686-linux, x86_64-linux ] + rei: [ i686-linux, x86_64-linux ] + reified-records: [ i686-linux, x86_64-linux ] + reify: [ i686-linux, x86_64-linux ] + reinterpret-cast: [ i686-linux ] + relational-postgresql8: [ i686-linux, x86_64-linux ] + relational-query-HDBC: [ i686-linux, x86_64-linux ] + relational-query: [ i686-linux, x86_64-linux ] + relational-record-examples: [ i686-linux, x86_64-linux ] + relational-record: [ i686-linux, x86_64-linux ] + relational-schemas: [ i686-linux, x86_64-linux ] + remote-debugger: [ i686-linux, x86_64-linux ] + remote-json-client: [ i686-linux, x86_64-linux ] + remote-json-server: [ i686-linux, x86_64-linux ] + remote-json: [ i686-linux, x86_64-linux ] + remote: [ i686-linux, x86_64-linux ] + remotion: [ i686-linux, x86_64-linux ] + reorderable: [ i686-linux, x86_64-linux ] + repa-algorithms: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-array: [ i686-linux, x86_64-linux ] + repa-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-convert: [ i686-linux, x86_64-linux ] + repa-devil: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-fftw: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-flow: [ i686-linux, x86_64-linux ] + repa-io: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-linear-algebra: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-plugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-series: [ i686-linux, x86_64-linux ] + repa-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa-stream: [ i686-linux, x86_64-linux ] + repa-v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + repa: [ i686-linux, x86_64-darwin, x86_64-linux ] + repl-toolkit: [ i686-linux, x86_64-linux ] + repl: [ i686-linux, x86_64-darwin, x86_64-linux ] + RepLib: [ i686-linux, x86_64-linux ] + repo-based-blog: [ i686-linux, x86_64-darwin, x86_64-linux ] + repr: [ i686-linux, x86_64-linux ] + representable-functors: [ i686-linux, x86_64-linux ] + representable-tries: [ i686-linux, x86_64-linux ] + resistor-cube: [ i686-linux, x86_64-linux ] + resource-embed: [ i686-linux, x86_64-linux ] + resource-simple: [ i686-linux, x86_64-linux ] + respond: [ i686-linux, x86_64-darwin, x86_64-linux ] + rest-example: [ i686-linux, x86_64-linux ] + rest-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + restful-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + RESTng: [ i686-linux, x86_64-darwin, x86_64-linux ] + restricted-workers: [ i686-linux, x86_64-linux ] + restyle: [ i686-linux, x86_64-linux ] + resumable-exceptions: [ i686-linux, x86_64-linux ] + rethinkdb-model: [ i686-linux, x86_64-linux ] + ReviewBoard: [ i686-linux, x86_64-linux ] + rewrite: [ i686-linux, x86_64-linux ] + rewriting: [ i686-linux, x86_64-linux ] + rex: [ i686-linux, x86_64-linux ] + rezoom: [ i686-linux, x86_64-linux ] + rhythm-game-tutorial: [ i686-linux, x86_64-darwin, x86_64-linux ] + riemann: [ i686-linux, x86_64-linux ] + riot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ripple-federation: [ i686-linux, x86_64-linux ] + ripple: [ i686-linux, x86_64-linux ] + risc386: [ i686-linux, x86_64-linux ] + rivers: [ i686-linux, x86_64-linux ] + RJson: [ i686-linux, x86_64-darwin, x86_64-linux ] + Rlang-QQ: [ i686-linux, x86_64-darwin, x86_64-linux ] + rmonad: [ i686-linux, x86_64-linux ] + RMP: [ i686-linux, x86_64-linux ] + RNAdesign: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAdraw: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFold: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAFoldProgs: [ i686-linux, x86_64-darwin, x86_64-linux ] + RNAwolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + robot: [ i686-linux, x86_64-linux ] + roguestar-engine: [ i686-linux, x86_64-darwin, x86_64-linux ] + roguestar-gl: [ i686-linux, x86_64-linux ] + roguestar-glut: [ i686-linux, x86_64-linux ] + RollingDirectory: [ i686-linux, x86_64-linux ] + rope: [ i686-linux, x86_64-linux ] + roshask: [ i686-linux, x86_64-linux ] + rosso: [ i686-linux, x86_64-linux ] + rounding: [ i686-linux, x86_64-linux ] + roundtrip-aeson: [ i686-linux, x86_64-linux ] + roundtrip-string: [ i686-linux, x86_64-linux ] + roundtrip-xml: [ i686-linux, x86_64-linux ] + roundtrip: [ i686-linux, x86_64-linux ] + route-generator: [ i686-linux, x86_64-darwin, x86_64-linux ] + route-planning: [ i686-linux, x86_64-linux ] + rowrecord: [ i686-linux, x86_64-linux ] + rpc-framework: [ i686-linux, x86_64-linux ] + rpc: [ i686-linux, x86_64-linux ] + rpm: [ i686-linux, x86_64-linux ] + rsagl-frp: [ i686-linux, x86_64-linux ] + rsagl-math: [ i686-linux, x86_64-linux ] + rsagl: [ i686-linux, x86_64-linux ] + rss2irc: [ i686-linux, x86_64-darwin, x86_64-linux ] + rss: [ i686-linux, x86_64-darwin, x86_64-linux ] + rtcm: [ i686-linux, x86_64-linux ] + rtorrent-rpc: [ i686-linux, x86_64-linux ] + rtorrent-state: [ i686-linux, x86_64-linux ] + ruby-qq: [ i686-linux, x86_64-linux ] + ruff: [ i686-linux, x86_64-linux ] + ruler-core: [ i686-linux, x86_64-darwin, x86_64-linux ] + ruler: [ i686-linux, x86_64-linux ] + rungekutta: [ i686-linux, x86_64-linux ] + RxHaskell: [ i686-linux, x86_64-linux ] + s-cargot: [ i686-linux, x86_64-linux ] + safe-freeze: [ i686-linux, x86_64-linux ] + safe-globals: [ i686-linux, x86_64-linux ] + safe-lazy-io: [ i686-linux, x86_64-linux ] + safe-plugins: [ i686-linux, x86_64-linux ] + safecopy: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-bytestring: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + safer-file-handles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sai-shape-syb: [ i686-linux, x86_64-linux ] + Salsa: [ i686-linux, x86_64-linux ] + salvia-demo: [ i686-linux, x86_64-linux ] + salvia-extras: [ i686-linux, x86_64-linux ] + salvia-protocol: [ i686-linux, x86_64-linux ] + salvia-sessions: [ i686-linux, x86_64-linux ] + salvia-websocket: [ i686-linux, x86_64-linux ] + salvia: [ i686-linux, x86_64-linux ] + samtools-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sarsi: [ i686-linux, x86_64-darwin, x86_64-linux ] + sasl: [ i686-linux, x86_64-linux ] + sat-micro-hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + sat: [ i686-linux, x86_64-linux ] + satchmo-backends: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-funsat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-minisat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo-toysat: [ i686-linux, x86_64-darwin, x86_64-linux ] + satchmo: [ i686-linux, x86_64-darwin, x86_64-linux ] + SBench: [ i686-linux, x86_64-linux ] + sbp: [ i686-linux, x86_64-linux ] + sbv: [ i686-linux, x86_64-darwin, x86_64-linux ] + sbvPlugin: [ i686-linux, x86_64-darwin, x86_64-linux ] + scaleimage: [ i686-linux, x86_64-darwin, x86_64-linux ] + scalp-webhooks: [ i686-linux, x86_64-darwin, x86_64-linux ] + scan-vector-machine: [ i686-linux, x86_64-darwin, x86_64-linux ] + scc: [ i686-linux, x86_64-linux ] + scenegraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + schedevr: [ i686-linux, x86_64-linux ] + scholdoc-citeproc: [ i686-linux, x86_64-linux ] + scholdoc-texmath: [ i686-linux, x86_64-linux ] + scholdoc-types: [ i686-linux, x86_64-linux ] + scholdoc: [ i686-linux, x86_64-linux ] + science-constants-dimensional: [ i686-linux, x86_64-linux ] + scion-browser: [ i686-linux, x86_64-linux ] + scion: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope-cairo: [ i686-linux, x86_64-darwin, x86_64-linux ] + scope: [ i686-linux, x86_64-darwin, x86_64-linux ] + scottish: [ i686-linux, x86_64-linux ] + scotty-binding-play: [ i686-linux, x86_64-linux ] + scotty-blaze: [ i686-linux, x86_64-linux ] + scotty-fay: [ i686-linux, x86_64-linux ] + scotty-hastache: [ i686-linux, x86_64-linux ] + scotty-session: [ i686-linux, x86_64-darwin, x86_64-linux ] + scrabble-bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + ScratchFs: [ i686-linux, x86_64-linux ] + scrobble: [ i686-linux, x86_64-linux ] + scrz: [ i686-linux, x86_64-linux ] + Scurry: [ i686-linux, x86_64-linux ] + scyther-proof: [ i686-linux, x86_64-linux ] + sdl2-compositor: [ i686-linux, x86_64-linux ] + sdl2-image: [ i686-linux, x86_64-linux ] + sdr: [ x86_64-linux ] + seacat: [ i686-linux, x86_64-linux ] + search: [ i686-linux, x86_64-linux ] + sec: [ i686-linux, x86_64-linux ] + secdh: [ i686-linux, x86_64-linux ] + second-transfer: [ i686-linux, x86_64-linux ] + secp256k1: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-santa: [ i686-linux, x86_64-darwin, x86_64-linux ] + secret-sharing: [ i686-linux, x86_64-linux ] + secrm: [ i686-linux, x86_64-darwin, x86_64-linux ] + sednaDBXML: [ i686-linux, x86_64-darwin, x86_64-linux ] + selectors: [ i686-linux, x86_64-linux ] + selenium-server: [ i686-linux, x86_64-linux ] + selenium: [ i686-linux, x86_64-linux ] + selinux: [ i686-linux, x86_64-linux ] + Semantique: [ i686-linux, x86_64-linux ] + semi-iso: [ i686-linux, x86_64-darwin, x86_64-linux ] + semigroupoids-syntax: [ i686-linux, x86_64-linux ] + semigroups-actions: [ i686-linux, x86_64-darwin, x86_64-linux ] + semiring: [ i686-linux, x86_64-linux ] + semver-range: [ i686-linux, x86_64-linux ] + sensei: [ i686-linux, x86_64-linux ] + sensenet: [ i686-linux, x86_64-linux ] + sentry: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqaid: [ i686-linux, x86_64-darwin, x86_64-linux ] + seqalign: [ i686-linux ] + SeqAlign: [ i686-linux, x86_64-linux ] + seqloc-datafiles: [ i686-linux, x86_64-darwin, x86_64-linux ] + sequent-core: [ i686-linux, x86_64-linux ] + sequor: [ i686-linux, x86_64-linux ] + serpentine: [ i686-linux, x86_64-linux ] + servant-csharp: [ i686-linux, x86_64-linux ] + servant-docs: [ i686-linux ] + servant-elm: [ i686-linux, x86_64-linux ] + servant-examples: [ i686-linux, x86_64-linux ] + servant-github: [ i686-linux, x86_64-linux ] + servant-haxl-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + servant-jquery: [ i686-linux, x86_64-linux ] + servant-pandoc: [ i686-linux ] + servant-pool: [ i686-linux, x86_64-linux ] + servant-postgresql: [ i686-linux, x86_64-linux ] + servant-scotty: [ i686-linux, x86_64-linux ] + servant-swagger: [ i686-linux, x86_64-linux ] + serversession-backend-acid-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + serversession-backend-persistent: [ i686-linux, x86_64-linux ] + serversession-frontend-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + ses-html-snaplet: [ i686-linux, x86_64-darwin, x86_64-linux ] + SessionLogger: [ i686-linux, x86_64-linux ] + sessions: [ i686-linux, x86_64-linux ] + set-cover: [ i686-linux, x86_64-linux ] + set-with: [ i686-linux, x86_64-linux ] + setters: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp-grammar: [ i686-linux, x86_64-darwin, x86_64-linux ] + sexp: [ i686-linux, x86_64-linux ] + sexpr: [ i686-linux, x86_64-linux ] + sext: [ i686-linux, x86_64-linux ] + SFML-control: [ i686-linux, x86_64-linux ] + SFML: [ i686-linux, x86_64-linux ] + SFont: [ i686-linux, x86_64-linux ] + SG: [ i686-linux, x86_64-darwin, x86_64-linux ] + SGdemo: [ i686-linux, x86_64-darwin, x86_64-linux ] + sgrep: [ i686-linux, x86_64-linux ] + shadower: [ i686-linux, x86_64-linux ] + shady-gen: [ i686-linux, x86_64-linux ] + shady-graphics: [ i686-linux, x86_64-linux ] + shake-extras: [ i686-linux, x86_64-linux ] + shaker: [ i686-linux, x86_64-linux ] + shapely-data: [ i686-linux, x86_64-linux ] + shared-buffer: [ i686-linux, x86_64-linux ] + she: [ i686-linux, x86_64-linux ] + shelduck: [ x86_64-darwin ] + shell-pipe: [ i686-linux, x86_64-linux ] + Shellac-compatline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-editline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-haskeline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac-readline: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shellac: [ i686-linux, x86_64-darwin, x86_64-linux ] + shellish: [ i686-linux, x86_64-linux ] + showdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + shpider: [ i686-linux, x86_64-darwin, x86_64-linux ] + Shu-thing: [ i686-linux, x86_64-darwin, x86_64-linux ] + sifflet-lib: [ i686-linux, x86_64-linux ] + signals: [ i686-linux, x86_64-linux ] + signed-multiset: [ i686-linux, x86_64-linux ] + simd: [ i686-linux, x86_64-linux ] + simgi: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-bluetooth: [ i686-linux, x86_64-linux ] + simple-c-value: [ i686-linux, x86_64-linux ] + simple-conduit: [ i686-linux, x86_64-linux ] + simple-config: [ i686-linux, x86_64-linux ] + simple-css: [ i686-linux, x86_64-linux ] + simple-firewire: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-form: [ i686-linux, x86_64-linux ] + simple-index: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-log-syslog: [ i686-linux, x86_64-linux ] + simple-pascal: [ i686-linux, x86_64-linux ] + simple-postgresql-orm: [ i686-linux, x86_64-darwin, x86_64-linux ] + simple-vec3: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleGL: [ i686-linux, x86_64-darwin, x86_64-linux ] + SimpleH: [ i686-linux, x86_64-linux ] + SimpleLog: [ i686-linux, x86_64-darwin, x86_64-linux ] + simplenote: [ i686-linux, x86_64-linux ] + simpleprelude: [ i686-linux, x86_64-linux ] + SimpleServer: [ i686-linux, x86_64-linux ] + simplessh: [ i686-linux, x86_64-linux ] + simplest-sqlite: [ i686-linux, x86_64-linux ] + simseq: [ i686-linux, x86_64-linux ] + sindre: [ i686-linux, x86_64-linux ] + sirkel: [ i686-linux, x86_64-darwin, x86_64-linux ] + sized-vector: [ i686-linux, x86_64-linux ] + sized: [ i686-linux, x86_64-linux ] + sjsp: [ i686-linux, x86_64-linux ] + skeleton: [ i686-linux, x86_64-linux ] + skell: [ i686-linux, x86_64-linux ] + skype4hs: [ i686-linux, x86_64-darwin, x86_64-linux ] + slack: [ i686-linux, x86_64-linux ] + slidemews: [ i686-linux, x86_64-darwin, x86_64-linux ] + Slides: [ i686-linux, x86_64-darwin, x86_64-linux ] + sloth: [ i686-linux, x86_64-linux ] + smallarray: [ i686-linux, x86_64-linux ] + smallpt-hs: [ i686-linux, x86_64-linux ] + smallstring: [ i686-linux, x86_64-linux ] + smartcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + smartconstructor: [ i686-linux, x86_64-linux ] + smartGroup: [ i686-linux, x86_64-linux ] + smartword: [ i686-linux, x86_64-darwin, x86_64-linux ] + sme: [ i686-linux, x86_64-linux ] + Smooth: [ i686-linux, x86_64-linux ] + smsaero: [ i686-linux, x86_64-linux ] + smt-lib: [ i686-linux, x86_64-darwin, x86_64-linux ] + smtlib2: [ i686-linux, x86_64-linux ] + smtp-mail-ng: [ i686-linux, x86_64-linux ] + smtp2mta: [ i686-linux, x86_64-darwin, x86_64-linux ] + snake-game: [ i686-linux, x86_64-linux ] + snap-accept: [ i686-linux, x86_64-linux ] + snap-auth-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-cors: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-error-collector: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-extras: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-loader-dynamic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-predicates: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-routes: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-testing: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap-web-routes: [ i686-linux, x86_64-darwin, x86_64-linux ] + snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-acid-state: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-actionlog: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-amqp: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-auth-acid: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-coffee: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-css-min: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-environments: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-fay: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-ghcjs: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hasql: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-haxl: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hdbc: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-hslogger: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-i18n: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-influxdb: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mandrill: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongodb-minimalistic: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mongoDB: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-mysql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-oauth: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-persistent: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-postgresql-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-postmark: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-purescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-recaptcha: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-redson: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-rest: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-riak: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sass: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sedna: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-ses-html: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-sqlite-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-stripe: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-tasks: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-typed-sessions: [ i686-linux, x86_64-darwin, x86_64-linux ] + snaplet-wordpress: [ i686-linux, x86_64-darwin, x86_64-linux ] + snappy-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + sndfile-enumerators: [ i686-linux, x86_64-darwin, x86_64-linux ] sneathlane-haste: [ i686-linux, x86_64-linux, x86_64-darwin ] - treersec: [ i686-linux, x86_64-linux, x86_64-darwin ] - yi-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + SNet: [ i686-linux, x86_64-linux ] + snm: [ i686-linux, x86_64-linux ] + snow-white: [ i686-linux, x86_64-darwin, x86_64-linux ] + snowglobe: [ i686-linux, x86_64-linux ] + Snusmumrik: [ i686-linux, x86_64-linux ] + SoccerFun: [ i686-linux, x86_64-linux ] + SoccerFunGL: [ i686-linux, x86_64-linux ] + sock2stream: [ i686-linux, x86_64-darwin, x86_64-linux ] + socket-sctp: [ i686-linux, x86_64-linux ] + socketio: [ i686-linux, x86_64-linux ] + socketson: [ i686-linux, x86_64-linux ] + sodium: [ i686-linux, x86_64-linux ] + solr: [ i686-linux, x86_64-darwin, x86_64-linux ] + sonic-visualiser: [ i686-linux, x86_64-linux ] + SoOSiM: [ i686-linux, x86_64-linux ] + sort-by-pinyin: [ i686-linux, x86_64-linux ] + sorted: [ i686-linux, x86_64-linux ] + sound-collage: [ i686-linux, x86_64-linux ] + source-code-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + SourceGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + sousit: [ i686-linux, x86_64-linux ] + soxlib: [ i686-linux, x86_64-linux ] + soyuz: [ i686-linux, x86_64-linux ] + SpaceInvaders: [ i686-linux ] + SpacePrivateers: [ i686-linux, x86_64-linux ] + spaceprobe: [ i686-linux, x86_64-linux ] + spanout: [ i686-linux, x86_64-linux ] + sparkle: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparse: [ i686-linux, x86_64-linux ] + sparsebit: [ i686-linux, x86_64-darwin, x86_64-linux ] + sparsecheck: [ i686-linux, x86_64-linux ] + spata: [ i686-linux, x86_64-darwin, x86_64-linux ] + special-functors: [ i686-linux, x86_64-linux ] + special-keys: [ i686-linux, x86_64-darwin, x86_64-linux ] + specialize-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + species: [ i686-linux, x86_64-linux ] + sphero: [ i686-linux, x86_64-linux ] + sphinx-cli: [ i686-linux, x86_64-darwin, x86_64-linux ] + spice: [ i686-linux, x86_64-darwin, x86_64-linux ] + spike: [ i686-linux, x86_64-linux ] + splaytree: [ i686-linux, x86_64-linux ] + spline3: [ i686-linux, x86_64-darwin, x86_64-linux ] + splines: [ i686-linux, x86_64-linux ] + split-record: [ i686-linux, x86_64-linux ] + Spock-auth: [ i686-linux, x86_64-darwin, x86_64-linux ] + Spock-digestive: [ x86_64-darwin ] + Spock-lucid: [ x86_64-darwin ] + Spock-worker: [ x86_64-darwin ] + Spock: [ x86_64-darwin ] + spoonutil: [ i686-linux, x86_64-linux ] + spoty: [ i686-linux, x86_64-linux ] + Sprig: [ i686-linux, x86_64-linux ] + spsa: [ i686-linux, x86_64-linux ] + spy: [ i686-linux, x86_64-linux ] + sql-simple-mysql: [ i686-linux, x86_64-darwin, x86_64-linux ] + sql-simple-pool: [ i686-linux, x86_64-linux ] + sql-simple-postgresql: [ i686-linux, x86_64-linux ] + sql-simple-sqlite: [ i686-linux, x86_64-linux ] + sql-simple: [ i686-linux, x86_64-linux ] + SQLDeps: [ i686-linux, x86_64-linux ] + sqlite-simple-typed: [ i686-linux, x86_64-linux ] + sqlvalue-list: [ i686-linux, x86_64-linux ] + squeeze: [ i686-linux, x86_64-darwin, x86_64-linux ] + srcinst: [ i686-linux, x86_64-linux ] + sssp: [ i686-linux, x86_64-linux ] + sstable: [ i686-linux, x86_64-darwin, x86_64-linux ] + stable-marriage: [ i686-linux, x86_64-linux ] + stable-tree: [ i686-linux, x86_64-linux ] + stack-hpc-coveralls: [ i686-linux, x86_64-linux ] + stack-prism: [ i686-linux, x86_64-darwin, x86_64-linux ] + stackage-curator: [ i686-linux, x86_64-darwin, x86_64-linux ] + standalone-derive-topdown: [ i686-linux, x86_64-linux ] + standalone-haddock: [ i686-linux, x86_64-linux ] + starrover2: [ i686-linux, x86_64-linux ] + state-record: [ i686-linux, x86_64-linux ] + stateful-mtl: [ i686-linux, x86_64-darwin, x86_64-linux ] + statgrab: [ i686-linux, x86_64-linux ] + statistics-dirichlet: [ i686-linux, x86_64-linux ] + statistics-fusion: [ i686-linux, x86_64-linux ] + stb-truetype: [ i686-linux, x86_64-linux ] + step-function: [ i686-linux, x86_64-linux ] + stepwise: [ i686-linux, x86_64-linux ] + stm-chunked-queues: [ i686-linux, x86_64-darwin, x86_64-linux ] + stmcontrol: [ i686-linux, x86_64-darwin, x86_64-linux ] + Stomp: [ i686-linux, x86_64-linux ] + storable-static-array: [ i686-linux, x86_64-linux ] + storablevector-carray: [ i686-linux, x86_64-linux ] + storablevector-streamfusion: [ i686-linux, x86_64-linux ] + storablevector: [ i686-linux, x86_64-linux ] + store: [ i686-linux, x86_64-linux ] + Strafunski-Sdf2Haskell: [ i686-linux, x86_64-linux ] + stratum-tool: [ i686-linux, x86_64-linux ] + stratux-types: [ i686-linux, x86_64-linux ] + stratux: [ i686-linux, x86_64-linux ] + stream-fusion: [ i686-linux, x86_64-linux ] + stream: [ i686-linux, x86_64-linux ] + streamed: [ i686-linux, x86_64-linux ] + streaming-utils: [ i686-linux ] + strict-concurrency: [ i686-linux, x86_64-linux ] + StrictBench: [ i686-linux, x86_64-darwin, x86_64-linux ] + string-typelits: [ i686-linux, x86_64-darwin, x86_64-linux ] + stringlike: [ i686-linux, x86_64-linux ] + strive: [ i686-linux, x86_64-darwin, x86_64-linux ] + structs: [ i686-linux, x86_64-linux ] + structural-induction: [ i686-linux, x86_64-linux ] + structural-traversal: [ i686-linux, x86_64-linux ] + structured-haskell-mode: [ i686-linux, x86_64-linux ] + structured-mongoDB: [ i686-linux, x86_64-linux ] + structures: [ i686-linux, x86_64-linux ] + stunts: [ i686-linux, x86_64-darwin, x86_64-linux ] + sub-state: [ i686-linux, x86_64-linux ] + subhask: [ i686-linux, x86_64-darwin, x86_64-linux ] + subleq-toolchain: [ i686-linux, x86_64-linux ] + SuffixStructures: [ i686-linux, x86_64-linux ] + suitable: [ i686-linux, x86_64-linux ] + sunlight: [ i686-linux, x86_64-linux ] + sunroof-compiler: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + sunroof-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + super-user-spark: [ i686-linux, x86_64-linux ] + supercollider-ht: [ i686-linux, x86_64-linux ] + supercollider-midi: [ i686-linux, x86_64-linux ] + superdoc: [ i686-linux, x86_64-linux ] + supero: [ i686-linux, x86_64-linux ] + supervisor: [ i686-linux, x86_64-linux ] + supplemented: [ i686-linux, x86_64-darwin, x86_64-linux ] + SVG2Q: [ i686-linux, x86_64-darwin, x86_64-linux ] + svg2q: [ i686-linux, x86_64-darwin, x86_64-linux ] + SVGFonts: [ i686-linux, x86_64-darwin, x86_64-linux ] + svm-simple: [ i686-linux, x86_64-linux ] + svndump: [ i686-linux, x86_64-linux ] + swagger2: [ i686-linux ] + swapper: [ i686-linux, x86_64-darwin, x86_64-linux ] + swearjure: [ i686-linux, x86_64-linux ] + swf: [ i686-linux, x86_64-linux ] + swift-lda: [ i686-linux, x86_64-linux ] + swish: [ i686-linux, x86_64-linux ] + sws: [ i686-linux, x86_64-linux ] + syb-extras: [ i686-linux, x86_64-linux ] + syb-with-class-instances-text: [ i686-linux, x86_64-darwin, x86_64-linux ] + syb-with-class: [ i686-linux, x86_64-darwin, x86_64-linux ] + SybWidget: [ i686-linux, x86_64-darwin, x86_64-linux ] + sylvia: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym-plot: [ i686-linux, x86_64-darwin, x86_64-linux ] + sym: [ i686-linux, x86_64-linux ] + symengine-hs: [ i686-linux, x86_64-linux ] + sync-mht: [ i686-linux ] + sync: [ i686-linux, x86_64-linux ] + syncthing-hs: [ i686-linux, x86_64-linux ] + syntactic: [ i686-linux ] + syntax-attoparsec: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example-json: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-example: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-pretty: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-printer: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees-fork-bairyn: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax-trees: [ i686-linux, x86_64-darwin, x86_64-linux ] + syntax: [ i686-linux, x86_64-darwin, x86_64-linux ] + SyntaxMacros: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-alsa: [ i686-linux, x86_64-linux ] + synthesizer-core: [ i686-linux, x86_64-linux ] + synthesizer-dimensional: [ i686-linux, x86_64-linux ] + synthesizer-filter: [ i686-linux, x86_64-linux ] + synthesizer-llvm: [ i686-linux, x86_64-darwin, x86_64-linux ] + synthesizer-midi: [ i686-linux, x86_64-linux ] + synthesizer: [ i686-linux, x86_64-linux ] + sys-process: [ i686-linux, x86_64-linux ] + Sysmon: [ i686-linux, x86_64-linux ] + system-canonicalpath: [ i686-linux, x86_64-linux ] + system-lifted: [ i686-linux, x86_64-linux ] + system-random-effect: [ i686-linux, x86_64-linux ] + t-regex: [ i686-linux, x86_64-darwin, x86_64-linux ] + t3-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + t3-server: [ i686-linux, x86_64-darwin, x86_64-linux ] + ta: [ i686-linux, x86_64-linux ] + tables: [ i686-linux, x86_64-darwin, x86_64-linux ] + Tables: [ i686-linux, x86_64-linux ] + tablestorage: [ i686-linux, x86_64-linux ] + tabloid: [ i686-linux, x86_64-darwin, x86_64-linux ] + tagged-list: [ i686-linux, x86_64-linux ] + tagged-th: [ i686-linux, x86_64-linux ] + tagsoup-ht: [ i686-linux, x86_64-linux ] + tagsoup-parsec: [ i686-linux, x86_64-linux ] + takusen-oracle: [ i686-linux, x86_64-linux ] + Takusen: [ i686-linux, x86_64-linux ] + tamarin-prover-term: [ i686-linux, x86_64-linux ] + tamarin-prover-theory: [ i686-linux, x86_64-linux ] + tamarin-prover-utils: [ i686-linux, x86_64-linux ] + tamarin-prover: [ i686-linux, x86_64-linux ] + target: [ i686-linux, x86_64-darwin, x86_64-linux ] + task-distribution: [ i686-linux, x86_64-darwin, x86_64-linux ] + task: [ i686-linux, x86_64-linux ] + tasty-groundhog-converters: [ i686-linux, x86_64-darwin, x86_64-linux ] + tasty-integrate: [ i686-linux, x86_64-linux ] + TBC: [ i686-linux, x86_64-linux ] + TBit: [ i686-linux, x86_64-linux ] + tbox: [ i686-linux, x86_64-linux ] + tccli: [ i686-linux, x86_64-linux ] + tcp: [ i686-linux, x86_64-linux ] + tdd-util: [ i686-linux, x86_64-linux ] + tdoc: [ i686-linux, x86_64-linux ] + TeaHS: [ i686-linux, x86_64-linux ] + teams: [ i686-linux, x86_64-linux ] + telegram: [ i686-linux, x86_64-linux ] + template-default: [ i686-linux, x86_64-linux ] + template-haskell-util: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-hsml: [ i686-linux, x86_64-darwin, x86_64-linux ] + template-yj: [ i686-linux, x86_64-linux ] + tempodb: [ i686-linux, x86_64-linux ] temporal-csound: [ i686-linux, x86_64-linux, x86_64-darwin ] - csound-catalog: [ i686-linux, x86_64-linux, x86_64-darwin ] + tempus: [ i686-linux, x86_64-linux ] + tensor: [ i686-linux, x86_64-linux ] + term-rewriting: [ i686-linux, x86_64-linux ] + termbox-bindings: [ i686-linux, x86_64-linux ] + termplot: [ i686-linux, x86_64-linux ] + terntup: [ i686-linux, x86_64-linux ] + terrahs: [ i686-linux, x86_64-darwin, x86_64-linux ] + tersmu: [ i686-linux, x86_64-linux ] + test-framework-doctest: [ i686-linux, x86_64-linux ] + test-framework-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-sandbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-framework-th-prime: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-sandbox-compose: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-sandbox-hunit: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-sandbox-quickcheck: [ i686-linux, x86_64-darwin, x86_64-linux ] + test-sandbox: [ i686-linux, x86_64-darwin, x86_64-linux ] + testloop: [ i686-linux, x86_64-darwin, x86_64-linux ] + testpack: [ i686-linux, x86_64-linux ] + testpattern: [ i686-linux, x86_64-linux ] + testPkg: [ i686-linux, x86_64-linux ] + testrunner: [ i686-linux, x86_64-linux ] + tex2txt: [ i686-linux, x86_64-linux ] + texrunner: [ i686-linux, x86_64-linux ] + text-json-qq: [ i686-linux, x86_64-linux ] + text-normal: [ i686-linux, x86_64-linux ] + text-register-machine: [ i686-linux, x86_64-linux ] + text-xml-generic: [ i686-linux, x86_64-darwin, x86_64-linux ] + text-xml-qq: [ i686-linux, x86_64-linux ] + textmatetags: [ i686-linux, x86_64-darwin, x86_64-linux ] + tfp-th: [ i686-linux, x86_64-linux ] + th-alpha: [ i686-linux, x86_64-linux ] + th-build: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-context: [ i686-linux, x86_64-linux ] + th-fold: [ i686-linux, x86_64-linux ] + th-instance-reification: [ i686-linux, x86_64-linux ] + th-instances: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-kinds-fork: [ i686-linux, x86_64-linux ] + th-kinds: [ i686-linux, x86_64-darwin, x86_64-linux ] + th-printf: [ i686-linux, x86_64-linux ] + th-sccs: [ i686-linux, x86_64-linux ] + th-traced: [ i686-linux, x86_64-linux ] + th-typegraph: [ i686-linux, x86_64-linux ] + th-utilities: [ i686-linux, x86_64-linux ] + THEff: [ i686-linux, x86_64-linux ] + Theora: [ i686-linux, x86_64-linux ] + theoremquest-client: [ i686-linux, x86_64-linux ] + thih: [ i686-linux, x86_64-linux ] + thimk: [ i686-linux, x86_64-linux ] + Thingie: [ i686-linux, x86_64-linux ] + thorn: [ i686-linux, x86_64-linux ] + threads-supervisor: [ x86_64-linux ] + threepenny-gui: [ i686-linux, x86_64-linux ] + Thrift: [ i686-linux, x86_64-linux ] + thrift: [ i686-linux, x86_64-linux ] + thumbnail-plus: [ x86_64-darwin ] + thumbnail: [ x86_64-darwin ] + tianbar: [ i686-linux, x86_64-linux ] + tic-tac-toe: [ i686-linux, x86_64-darwin, x86_64-linux ] + tickle: [ i686-linux ] + TicTacToe: [ i686-linux, x86_64-linux ] + tidal-midi: [ i686-linux, x86_64-linux ] + tie-knot: [ i686-linux, x86_64-darwin, x86_64-linux ] + tiger: [ i686-linux, x86_64-darwin, x86_64-linux ] + tighttp: [ i686-linux, x86_64-linux ] + timberc: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-extras: [ i686-linux, x86_64-linux ] + time-exts: [ i686-linux, x86_64-darwin, x86_64-linux ] + time-http: [ i686-linux, x86_64-linux ] + time-qq: [ i686-linux ] + time-series: [ i686-linux, x86_64-linux ] + time-w3c: [ i686-linux, x86_64-linux ] + timecalc: [ i686-linux, x86_64-linux ] + timeout: [ i686-linux, x86_64-linux ] + timeparsers: [ i686-linux, x86_64-linux ] + TimePiece: [ i686-linux, x86_64-linux ] + timeplot: [ i686-linux, x86_64-linux ] + timestamp-subprocess-lines: [ i686-linux, x86_64-linux ] + timezone-olson-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + timezone-olson: [ i686-linux, x86_64-darwin, x86_64-linux ] + timezone-series: [ i686-linux, x86_64-darwin, x86_64-linux ] + tinc: [ i686-linux, x86_64-darwin, x86_64-linux ] + TinyLaunchbury: [ i686-linux, x86_64-linux ] + TinyURL: [ i686-linux, x86_64-linux ] + tip-haskell-frontend: [ i686-linux, x86_64-linux ] + tip-lib: [ i686-linux, x86_64-linux ] + Titim: [ i686-linux, x86_64-darwin, x86_64-linux ] + tkhs: [ i686-linux, x86_64-linux ] + tkyprof: [ i686-linux, x86_64-linux ] + tls-extra: [ i686-linux, x86_64-darwin, x86_64-linux ] + to-haskell: [ i686-linux, x86_64-linux ] + to-string-class: [ i686-linux, x86_64-linux ] + to-string-instances: [ i686-linux, x86_64-linux ] + todos: [ i686-linux, x86_64-linux ] + tofromxml: [ i686-linux, x86_64-linux ] + toilet: [ i686-linux, x86_64-linux ] + toktok: [ i686-linux, x86_64-darwin, x86_64-linux ] + tokyocabinet-haskell: [ i686-linux, x86_64-linux ] + tomato-rubato-openal: [ x86_64-darwin ] + toml: [ i686-linux, x86_64-linux ] + toolshed: [ i686-linux, x86_64-darwin, x86_64-linux ] + Top: [ i686-linux, x86_64-linux ] + topkata: [ i686-linux, x86_64-darwin, x86_64-linux ] + torch: [ i686-linux, x86_64-linux ] + Tournament: [ i686-linux, x86_64-linux ] + toysolver: [ i686-linux, x86_64-linux ] + trace: [ i686-linux, x86_64-linux ] + traced: [ i686-linux, x86_64-linux ] + tracker: [ i686-linux, x86_64-linux ] + traildb: [ i686-linux, x86_64-linux ] + trajectory: [ i686-linux, x86_64-darwin, x86_64-linux ] + transactional-events: [ i686-linux, x86_64-linux ] + transf: [ i686-linux, x86_64-darwin, x86_64-linux ] + transformations: [ i686-linux, x86_64-linux ] + transformers-convert: [ i686-linux, x86_64-linux ] + transformers-eff: [ i686-linux, x86_64-linux ] + transformers-runnable: [ i686-linux, x86_64-linux ] + transient-universe: [ i686-linux, x86_64-linux ] + transient: [ i686-linux, x86_64-linux ] + translate: [ i686-linux, x86_64-linux ] + traypoweroff: [ i686-linux, x86_64-linux ] + treersec: [ i686-linux, x86_64-linux, x86_64-darwin ] + tremulous-query: [ i686-linux, x86_64-linux ] + TrendGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + trhsx: [ i686-linux, x86_64-linux ] + triangulation: [ i686-linux, x86_64-darwin, x86_64-linux ] + TrieMap: [ i686-linux, x86_64-linux ] + trimpolya: [ i686-linux, x86_64-linux ] + tropical: [ i686-linux, x86_64-linux ] + tsession-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + tsession: [ i686-linux, x86_64-linux ] + tskiplist: [ i686-linux, x86_64-linux ] + tsp-viz: [ i686-linux, x86_64-linux ] + tuntap: [ i686-linux, x86_64-linux ] + tuple-gen: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-hlist: [ i686-linux, x86_64-darwin, x86_64-linux ] + tuple-morph: [ i686-linux, x86_64-darwin, x86_64-linux ] + tupleinstances: [ i686-linux, x86_64-linux ] + turing-music: [ x86_64-darwin ] + twee: [ x86_64-darwin ] + twentefp-rosetree: [ i686-linux, x86_64-linux ] + twentyseven: [ i686-linux, x86_64-darwin, x86_64-linux ] + twhs: [ i686-linux, x86_64-darwin, x86_64-linux ] + twidge: [ i686-linux, x86_64-darwin, x86_64-linux ] + twilight-stm: [ i686-linux, x86_64-darwin, x86_64-linux ] + twill: [ i686-linux, x86_64-linux ] + twiml: [ i686-linux, x86_64-linux ] + twine: [ i686-linux, x86_64-darwin, x86_64-linux ] + twisty: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-types-lens: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + twitter: [ i686-linux, x86_64-linux ] + tx: [ i686-linux, x86_64-darwin, x86_64-linux ] + TYB: [ i686-linux, x86_64-linux ] + typalyze: [ i686-linux, x86_64-linux ] + type-cache: [ i686-linux, x86_64-linux ] + type-cereal: [ i686-linux, x86_64-linux ] + type-combinators-quote: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-combinators: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-digits: [ i686-linux, x86_64-linux ] + type-equality-check: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-functions: [ i686-linux, x86_64-linux ] + type-int: [ i686-linux, x86_64-linux ] + type-level-bst: [ i686-linux, x86_64-linux ] + type-level: [ i686-linux, x86_64-darwin, x86_64-linux ] + type-natural: [ i686-linux, x86_64-linux ] + type-operators: [ i686-linux, x86_64-linux ] + type-ord-spine-cereal: [ i686-linux, x86_64-linux ] + type-ord: [ i686-linux, x86_64-linux ] + type-prelude: [ i686-linux, x86_64-linux ] + type-settheory: [ i686-linux, x86_64-linux ] + type-spine: [ i686-linux, x86_64-linux ] + type-structure: [ i686-linux, x86_64-linux ] + type-sub-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + typeable-th: [ i686-linux, x86_64-linux ] + TypeClass: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-spreadsheet: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-wire-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + typed-wire: [ i686-linux, x86_64-linux ] + typedquery: [ i686-linux, x86_64-linux ] + typehash: [ i686-linux, x86_64-linux ] + TypeIlluminator: [ i686-linux, x86_64-darwin, x86_64-linux ] + typelevel-tensor: [ i686-linux, x86_64-linux ] + typeparams: [ i686-linux, x86_64-linux ] + typescript-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] + uAgda: [ i686-linux, x86_64-linux ] + uber: [ i686-linux, x86_64-linux ] + uberlast: [ i686-linux, x86_64-linux ] + uconv: [ i686-linux, x86_64-linux ] + udbus-model: [ i686-linux, x86_64-darwin, x86_64-linux ] + udbus: [ i686-linux, x86_64-darwin, x86_64-linux ] + uhc-light: [ i686-linux, x86_64-linux ] + ui-command: [ i686-linux, x86_64-darwin, x86_64-linux ] + UMM: [ i686-linux, x86_64-darwin, x86_64-linux ] + unamb-custom: [ i686-linux, x86_64-linux ] + unbound: [ i686-linux, x86_64-linux ] + unbounded-delays-units: [ i686-linux, x86_64-linux ] + unboxed-containers: [ i686-linux, x86_64-linux ] + unbreak: [ i686-linux, x86_64-linux ] + uni-graphs: [ i686-linux, x86_64-darwin, x86_64-linux ] + uni-htk: [ i686-linux, x86_64-darwin, x86_64-linux ] + uni-uDrawGraph: [ i686-linux, x86_64-darwin, x86_64-linux ] + unicode-normalization: [ i686-linux, x86_64-darwin, x86_64-linux ] + unicoder: [ i686-linux, x86_64-linux ] + uniform-io: [ i686-linux, x86_64-linux ] + union-map: [ i686-linux, x86_64-linux ] + uniqueid: [ i686-linux, x86_64-linux ] + units-attoparsec: [ i686-linux, x86_64-linux ] + unittyped: [ i686-linux, x86_64-linux ] + universe-th: [ i686-linux, x86_64-darwin, x86_64-linux ] + unix-process-conduit: [ i686-linux, x86_64-linux ] + unlit: [ i686-linux, x86_64-linux ] + unordered-containers-rematch: [ i686-linux, x86_64-linux ] + unpack-funcs: [ i686-linux, x86_64-linux ] + unroll-ghc-plugin: [ i686-linux, x86_64-linux ] + unscramble: [ i686-linux, x86_64-linux ] + unsequential: [ i686-linux, x86_64-darwin, x86_64-linux ] + up: [ i686-linux, x86_64-linux ] + uploadcare: [ i686-linux, x86_64-linux ] + upskirt: [ i686-linux, x86_64-linux ] + ureader: [ i686-linux, x86_64-linux ] + urembed: [ i686-linux, x86_64-linux ] + uri-conduit: [ i686-linux, x86_64-linux ] + uri-enumerator-file: [ i686-linux, x86_64-linux ] + uri-enumerator: [ i686-linux, x86_64-linux ] + url-generic: [ i686-linux, x86_64-linux ] + urlcheck: [ i686-linux, x86_64-linux ] + urldecode: [ i686-linux, x86_64-linux ] + urldisp-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + UrlDisp: [ i686-linux, x86_64-darwin, x86_64-linux ] + URLT: [ i686-linux, x86_64-darwin, x86_64-linux ] + urxml: [ i686-linux, x86_64-linux ] + usb-enumerator: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-hid: [ i686-linux, x86_64-linux ] + usb-iteratee: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb-safe: [ i686-linux, x86_64-darwin, x86_64-linux ] + usb: [ i686-linux, x86_64-linux ] + userid: [ i686-linux, x86_64-darwin, x86_64-linux ] + users-persistent: [ i686-linux, x86_64-linux ] + utc: [ i686-linux, x86_64-linux ] + utf8-prelude: [ i686-linux, x86_64-linux ] + UTFTConverter: [ i686-linux, x86_64-linux ] + uu-options: [ i686-linux, x86_64-linux ] + uuagc-diagrams: [ i686-linux, x86_64-darwin, x86_64-linux ] + uuid-orphans: [ i686-linux, x86_64-darwin, x86_64-linux ] + uvector-algorithms: [ i686-linux, x86_64-linux ] + uvector: [ i686-linux, x86_64-linux ] + v4l2-examples: [ i686-linux, x86_64-darwin, x86_64-linux ] + v4l2: [ i686-linux, x86_64-darwin, x86_64-linux ] + vacuum-cairo: [ i686-linux, x86_64-linux ] + vacuum-graphviz: [ i686-linux, x86_64-linux ] + vacuum-opengl: [ i686-linux, x86_64-linux ] + vacuum-ubigraph: [ i686-linux, x86_64-linux ] + vacuum: [ i686-linux, x86_64-linux ] + validations: [ i686-linux, x86_64-linux ] + vampire: [ i686-linux, x86_64-linux ] + var: [ i686-linux, x86_64-linux ] + variable-precision: [ i686-linux, x86_64-darwin, x86_64-linux ] + varying: [ i686-linux, x86_64-linux ] + vaultaire-common: [ i686-linux, x86_64-darwin, x86_64-linux ] + vcache-trie: [ x86_64-darwin ] + vcache: [ x86_64-darwin ] + vcsgui: [ i686-linux, x86_64-darwin, x86_64-linux ] + Vec-Boolean: [ i686-linux, x86_64-linux ] + Vec-OpenGLRaw: [ i686-linux, x86_64-linux ] + Vec-Transform: [ i686-linux, x86_64-darwin, x86_64-linux ] + vect-opengl: [ i686-linux, x86_64-linux ] + vector-bytestring: [ i686-linux, x86_64-linux ] + vector-clock: [ i686-linux, x86_64-linux ] + vector-conduit: [ i686-linux, x86_64-linux ] + vector-functorlazy: [ i686-linux, x86_64-linux ] + vector-heterogenous: [ i686-linux, x86_64-linux ] + vector-instances-collections: [ i686-linux, x86_64-linux ] + vector-random: [ i686-linux, x86_64-linux ] + vector-read-instances: [ i686-linux, x86_64-linux ] + vector-space-opengl: [ i686-linux, x86_64-linux ] + vector-static: [ i686-linux, x86_64-linux ] + verilog: [ i686-linux, x86_64-linux ] + versions: [ i686-linux, x86_64-linux ] + vigilance: [ i686-linux, x86_64-darwin, x86_64-linux ] + vimus: [ x86_64-linux ] + vintage-basic: [ i686-linux, x86_64-linux ] + vinyl-gl: [ i686-linux, x86_64-linux ] + vinyl-json: [ i686-linux, x86_64-linux ] + vinyl-operational: [ i686-linux, x86_64-linux ] + vinyl-plus: [ i686-linux, x86_64-linux ] + vinyl-vectors: [ i686-linux, x86_64-linux ] + virthualenv: [ i686-linux, x86_64-linux ] + vision: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-graphrewrite: [ i686-linux, x86_64-darwin, x86_64-linux ] + visual-prof: [ i686-linux, x86_64-linux ] + vivid: [ i686-linux, x86_64-linux ] + vk-aws-route53: [ i686-linux, x86_64-linux ] + VKHS: [ i686-linux, x86_64-linux ] + vowpal-utils: [ i686-linux, x86_64-linux ] + voyeur: [ i686-linux, x86_64-linux ] + vte: [ i686-linux, x86_64-linux ] + vtegtk3: [ i686-linux, x86_64-linux ] + vty-menu: [ i686-linux, x86_64-linux ] + vty-ui-extras: [ i686-linux, x86_64-linux ] + vty-ui: [ i686-linux, x86_64-linux ] + vulkan: [ i686-linux, x86_64-linux ] + wacom-daemon: [ i686-linux, x86_64-linux ] + waddle: [ i686-linux, x86_64-linux ] + wai-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-dispatch: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-graceful: [ i686-linux, x86_64-linux ] + wai-handler-devel: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-handler-snap: [ i686-linux, x86_64-linux ] + wai-handler-webkit: [ i686-linux, x86_64-linux ] + wai-hastache: [ i686-linux, x86_64-linux ] + wai-lite: [ i686-linux, x86_64-linux ] + wai-logger-prefork: [ i686-linux, x86_64-linux ] + wai-middleware-cache-redis: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-catch: [ i686-linux, x86_64-linux ] + wai-middleware-content-type: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-crowd: [ i686-linux ] + wai-middleware-headers: [ i686-linux, x86_64-linux ] + wai-middleware-hmac-client: [ i686-linux, x86_64-linux ] + wai-middleware-preprocessor: [ i686-linux, x86_64-linux ] + wai-middleware-route: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-middleware-static-caching: [ i686-linux, x86_64-linux ] + wai-middleware-verbs: [ i686-linux, x86_64-darwin, x86_64-linux ] + wai-routes: [ i686-linux, x86_64-linux ] + wai-session-tokyocabinet: [ i686-linux, x86_64-linux ] + wai-static-cache: [ i686-linux, x86_64-linux ] + wai-thrift: [ i686-linux, x86_64-linux ] + wai-throttler: [ i686-linux, x86_64-linux ] + warp-dynamic: [ i686-linux, x86_64-linux ] + warp-static: [ i686-linux, x86_64-linux ] + warp-tls-uid: [ i686-linux, x86_64-darwin, x86_64-linux ] + WashNGo: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchdog: [ i686-linux, x86_64-linux ] + watcher: [ i686-linux, x86_64-darwin, x86_64-linux ] + watchit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WaveFront: [ i686-linux, x86_64-linux ] + wavesurfer: [ i686-linux, x86_64-linux ] + wavy: [ i686-linux, x86_64-linux ] + weather-api: [ i686-linux, x86_64-linux ] + web-browser-in-haskell: [ i686-linux, x86_64-linux ] + web-encodings: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-fpco: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-inv-route: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-mongrel2: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-boomerang: [ i686-linux, x86_64-linux ] + web-routes-happstack: [ i686-linux, x86_64-darwin, x86_64-linux ] + web-routes-quasi: [ i686-linux, x86_64-linux ] + web-routes-regular: [ i686-linux, x86_64-linux ] + web-routes-th: [ i686-linux, x86_64-linux ] + web-routes-transformers: [ i686-linux, x86_64-linux ] + webapi: [ i686-linux, x86_64-linux ] + webapp: [ i686-linux, x86_64-linux ] + WebBits-Html: [ i686-linux, x86_64-linux ] + WebBits-multiplate: [ i686-linux, x86_64-linux ] + WebCont: [ i686-linux, x86_64-darwin, x86_64-linux ] + webdriver-snoy: [ i686-linux, x86_64-linux ] + webify: [ i686-linux, x86_64-linux ] + webkit-javascriptcore: [ i686-linux, x86_64-linux ] + webkitgtk3: [ i686-linux, x86_64-linux ] + Webrexp: [ i686-linux, x86_64-linux ] + webserver: [ i686-linux, x86_64-darwin, x86_64-linux ] + websnap: [ i686-linux, x86_64-linux ] + webwire: [ i686-linux, x86_64-linux ] + wedged: [ i686-linux, x86_64-darwin, x86_64-linux ] + weighted-regexp: [ i686-linux, x86_64-linux ] + welshy: [ i686-linux, x86_64-linux ] + wheb-mongo: [ i686-linux, x86_64-linux ] + wheb-redis: [ i686-linux, x86_64-linux ] + wheb-strapped: [ i686-linux, x86_64-linux ] + Wheb: [ i686-linux, x86_64-linux ] + whim: [ i686-linux, x86_64-linux ] + whitespace: [ i686-linux, x86_64-darwin, x86_64-linux ] + wikicfp-scraper: [ i686-linux, x86_64-linux ] + WikimediaParser: [ i686-linux, x86_64-linux ] + wikipedia4epub: [ i686-linux, x86_64-darwin, x86_64-linux ] + windowslive: [ i686-linux, x86_64-linux ] + winerror: [ i686-linux, x86_64-linux ] + winio: [ i686-linux, x86_64-linux ] + wiring: [ i686-linux, x86_64-linux ] + wkt: [ i686-linux, x86_64-linux ] + WL500gPControl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wlc-hs: [ i686-linux, x86_64-linux ] + WMSigner: [ i686-linux ] + wobsurv: [ i686-linux, x86_64-linux ] + woffex: [ i686-linux, x86_64-linux ] + wolf: [ i686-linux, x86_64-darwin, x86_64-linux ] + word24: [ i686-linux, x86_64-linux ] + WordAlignment: [ i686-linux, x86_64-darwin, x86_64-linux ] + Wordlint: [ i686-linux, x86_64-linux ] + WordNet-ghc74: [ i686-linux, x86_64-linux ] + WordNet: [ i686-linux, x86_64-linux ] + wordpass: [ i686-linux, x86_64-darwin, x86_64-linux ] + wordsearch: [ i686-linux, x86_64-linux ] + wordsetdiff: [ i686-linux, x86_64-darwin, x86_64-linux ] + workflow-osx: [ i686-linux, x86_64-darwin, x86_64-linux ] + wp-archivebot: [ i686-linux, x86_64-linux ] + wraxml: [ i686-linux, x86_64-darwin, x86_64-linux ] + wright: [ i686-linux, x86_64-linux ] + wtk-gtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wtk: [ i686-linux, x86_64-darwin, x86_64-linux ] + wumpus-basic: [ i686-linux, x86_64-linux ] + wumpus-core: [ i686-linux, x86_64-linux ] + wumpus-drawing: [ i686-linux, x86_64-linux ] + wumpus-microprint: [ i686-linux, x86_64-linux ] + wumpus-tree: [ i686-linux, x86_64-linux ] + WURFL: [ i686-linux, x86_64-darwin, x86_64-linux ] + wx: [ x86_64-darwin ] + wxAsteroids: [ x86_64-darwin ] + wxc: [ x86_64-darwin ] + wxcore: [ x86_64-darwin ] + WXDiffCtrl: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxFruit: [ i686-linux, x86_64-darwin, x86_64-linux ] + WxGeneric: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxhnotepad: [ i686-linux, x86_64-darwin, x86_64-linux ] + wxturtle: [ i686-linux, x86_64-darwin, x86_64-linux ] + wyvern: [ i686-linux, x86_64-linux ] + x-dsp: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-extras: [ i686-linux, x86_64-linux ] + X11-rm: [ i686-linux, x86_64-linux ] + X11-xdamage: [ i686-linux, x86_64-darwin, x86_64-linux ] + X11-xfixes: [ i686-linux, x86_64-linux ] + x11-xinput: [ i686-linux, x86_64-linux ] + xchat-plugin: [ x86_64-linux ] + xdot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Xec: [ i686-linux, x86_64-linux ] + xfconf: [ i686-linux, x86_64-linux ] + xhaskell-library: [ i686-linux, x86_64-linux ] + xhb-atom-cache: [ i686-linux, x86_64-linux ] + xhb-ewmh: [ i686-linux, x86_64-linux ] + xhb: [ i686-linux, x86_64-linux ] + xine: [ i686-linux, x86_64-linux ] + xing-api: [ i686-linux, x86_64-linux ] + xkbcommon: [ i686-linux, x86_64-darwin, x86_64-linux ] + xkcd: [ i686-linux, x86_64-linux ] + xlsx-templater: [ i686-linux, x86_64-linux ] + xml-catalog: [ i686-linux, x86_64-linux ] + xml-enumerator-combinators: [ i686-linux, x86_64-linux ] + xml-enumerator: [ i686-linux, x86_64-linux ] + xml-parsec: [ i686-linux, x86_64-linux ] + xml-pipe: [ i686-linux, x86_64-linux ] + xml-prettify: [ i686-linux, x86_64-linux ] + xml-push: [ i686-linux, x86_64-linux ] + xml-query-xml-conduit: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml-query-xml-types: [ i686-linux, x86_64-darwin, x86_64-linux ] + xml2json: [ i686-linux, x86_64-linux ] + xml2x: [ i686-linux, x86_64-linux ] + XmlHtmlWriter: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmltv: [ i686-linux, x86_64-linux ] + xmms2-client-glib: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmms2-client: [ i686-linux, x86_64-darwin, x86_64-linux ] + XMMS: [ i686-linux, x86_64-linux ] + xmobar: [ i686-linux, x86_64-linux ] + xmonad-bluetilebranch: [ i686-linux, x86_64-linux ] + xmonad-contrib-bluetilebranch: [ i686-linux, x86_64-linux ] + xmonad-eval: [ i686-linux, x86_64-darwin, x86_64-linux ] + xmpipe: [ i686-linux, x86_64-linux ] + XMPP: [ i686-linux, x86_64-darwin, x86_64-linux ] + xournal-convert: [ i686-linux, x86_64-linux ] + xournal-render: [ i686-linux, x86_64-linux ] + xsact: [ i686-linux, x86_64-linux ] + XSaiga: [ i686-linux, x86_64-linux ] + xslt: [ i686-linux, x86_64-linux ] + xtc: [ x86_64-darwin ] + y0l0bot: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yablog: [ i686-linux, x86_64-darwin, x86_64-linux ] + YACPong: [ i686-linux, x86_64-linux ] + yahoo-web-search: [ i686-linux, x86_64-linux ] + yajl-enumerator: [ i686-linux, x86_64-linux ] + yajl: [ i686-linux, x86_64-linux ] + yaml-rpc-scotty: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc-snap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-rpc: [ i686-linux, x86_64-darwin, x86_64-linux ] + yaml-union: [ i686-linux, x86_64-linux ] + yaml2owl: [ i686-linux, x86_64-linux ] + YamlReference: [ i686-linux, x86_64-darwin, x86_64-linux ] + yampa-canvas: [ i686-linux ] + yampa-glfw: [ i686-linux, x86_64-linux ] + yampa-glut: [ i686-linux, x86_64-linux ] + yampa2048: [ i686-linux ] + Yampa: [ i686-linux ] + YampaSynth: [ i686-linux ] + yaop: [ i686-linux, x86_64-linux ] + yarr-image-io: [ i686-linux, x86_64-linux ] + yarr: [ i686-linux, x86_64-linux ] + yate: [ i686-linux, x86_64-linux ] + yavie: [ i686-linux, x86_64-linux ] + ycextra: [ i686-linux, x86_64-linux ] + yeshql: [ i686-linux, x86_64-linux ] + yesod-angular-ui: [ i686-linux, x86_64-linux ] + yesod-auth-account-fork: [ i686-linux, x86_64-linux ] + yesod-auth-bcrypt: [ i686-linux, x86_64-linux ] + yesod-auth-ldap: [ i686-linux, x86_64-linux ] + yesod-auth-pam: [ i686-linux, x86_64-linux ] + yesod-auth-smbclient: [ i686-linux, x86_64-linux ] + yesod-bootstrap: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-comments: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-content-pdf: [ i686-linux, x86_64-linux ] + yesod-continuations: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-crud-persist: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-crud: [ i686-linux, x86_64-linux ] + yesod-datatables: [ i686-linux, x86_64-linux ] + yesod-examples: [ i686-linux, x86_64-linux ] + yesod-goodies: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-links: [ i686-linux, x86_64-linux ] + yesod-mangopay: [ i686-linux, x86_64-linux ] + yesod-markdown: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-media-simple: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-paginate: [ i686-linux, x86_64-linux ] + yesod-pagination: [ i686-linux, x86_64-linux ] + yesod-paginator: [ i686-linux, x86_64-linux ] + yesod-platform: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-pnotify: [ i686-linux, x86_64-linux ] + yesod-pure: [ i686-linux, x86_64-linux ] + yesod-purescript: [ i686-linux, x86_64-linux ] + yesod-raml-bin: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-docs: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-raml-mock: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-routes-typescript: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-routes: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-rst: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-s3: [ i686-linux, x86_64-darwin, x86_64-linux ] + yesod-session-redis: [ i686-linux, x86_64-linux ] + yesod-tableview: [ i686-linux, x86_64-linux ] + yesod-test-json: [ i686-linux, x86_64-linux ] + yesod-tls: [ i686-linux, x86_64-linux ] + yesod-vend: [ i686-linux, x86_64-linux ] + yesod-worker: [ i686-linux, x86_64-linux ] + YFrob: [ i686-linux, x86_64-darwin, x86_64-linux ] + yhccore: [ i686-linux, x86_64-linux ] + yi-contrib: [ i686-linux, x86_64-linux, x86_64-darwin ] + yices: [ i686-linux, x86_64-linux ] + yjftp: [ i686-linux, x86_64-linux ] + Yogurt-Standalone: [ i686-linux, x86_64-darwin, x86_64-linux ] + Yogurt: [ i686-linux, x86_64-linux ] + yoko: [ i686-linux, x86_64-linux ] + york-lava: [ i686-linux, x86_64-darwin, x86_64-linux ] + yql: [ i686-linux, x86_64-darwin, x86_64-linux ] + yst: [ i686-linux, x86_64-darwin, x86_64-linux ] + yuiGrid: [ i686-linux, x86_64-linux ] + yuuko: [ i686-linux, x86_64-darwin, x86_64-linux ] + yxdb-utils: [ i686-linux, x86_64-darwin, x86_64-linux ] + zampolit: [ i686-linux, x86_64-darwin, x86_64-linux ] + zasni-gerna: [ i686-linux, x86_64-linux ] + zendesk-api: [ i686-linux, x86_64-linux ] + zeno: [ i686-linux, x86_64-linux ] + zeromq-haskell: [ i686-linux, x86_64-linux ] + zeromq3-conduit: [ i686-linux, x86_64-linux ] + zeromq3-haskell: [ i686-linux, x86_64-linux ] + zeroth: [ i686-linux, x86_64-linux ] + ZFS: [ i686-linux, x86_64-linux ] + zipedit: [ i686-linux, x86_64-linux ] + zipper: [ i686-linux, x86_64-linux ] + ZMachine: [ i686-linux, x86_64-linux ] + zmcat: [ i686-linux, x86_64-linux ] + zmqat: [ i686-linux, x86_64-linux ] + zoneinfo: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-pcm: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache-sndfile: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom-cache: [ i686-linux, x86_64-darwin, x86_64-linux ] + zoom: [ i686-linux, x86_64-darwin, x86_64-linux ] + zsh-battery: [ i686-linux, x86_64-linux ] + Zwaluw: [ i686-linux, x86_64-linux ] From 05cdb0f621240d7e5815ffdb3af814872eb4d6fd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 1 Jun 2016 18:57:14 +0200 Subject: [PATCH 178/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-28-g35f7635 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/21e9bc8a5e44cdc316185051f797eeae2d61547b - LTS Haskell: https://github.com/fpco/lts-haskell/commit/042ef2187b44a2d6959602fe35c94b804817cf0f - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/2f54d84973f8ea7ab09fac4ff5d90b5b6a576b93 --- .../haskell-modules/configuration-lts-0.0.nix | 8 + .../haskell-modules/configuration-lts-0.1.nix | 8 + .../haskell-modules/configuration-lts-0.2.nix | 8 + .../haskell-modules/configuration-lts-0.3.nix | 8 + .../haskell-modules/configuration-lts-0.4.nix | 8 + .../haskell-modules/configuration-lts-0.5.nix | 8 + .../haskell-modules/configuration-lts-0.6.nix | 8 + .../haskell-modules/configuration-lts-0.7.nix | 8 + .../haskell-modules/configuration-lts-1.0.nix | 8 + .../haskell-modules/configuration-lts-1.1.nix | 8 + .../configuration-lts-1.10.nix | 8 + .../configuration-lts-1.11.nix | 8 + .../configuration-lts-1.12.nix | 8 + .../configuration-lts-1.13.nix | 8 + .../configuration-lts-1.14.nix | 8 + .../configuration-lts-1.15.nix | 8 + .../haskell-modules/configuration-lts-1.2.nix | 8 + .../haskell-modules/configuration-lts-1.4.nix | 8 + .../haskell-modules/configuration-lts-1.5.nix | 8 + .../haskell-modules/configuration-lts-1.7.nix | 8 + .../haskell-modules/configuration-lts-1.8.nix | 8 + .../haskell-modules/configuration-lts-1.9.nix | 8 + .../haskell-modules/configuration-lts-2.0.nix | 8 + .../haskell-modules/configuration-lts-2.1.nix | 8 + .../configuration-lts-2.10.nix | 9 + .../configuration-lts-2.11.nix | 9 + .../configuration-lts-2.12.nix | 9 + .../configuration-lts-2.13.nix | 9 + .../configuration-lts-2.14.nix | 9 + .../configuration-lts-2.15.nix | 9 + .../configuration-lts-2.16.nix | 9 + .../configuration-lts-2.17.nix | 10 + .../configuration-lts-2.18.nix | 10 + .../configuration-lts-2.19.nix | 10 + .../haskell-modules/configuration-lts-2.2.nix | 8 + .../configuration-lts-2.20.nix | 10 + .../configuration-lts-2.21.nix | 10 + .../configuration-lts-2.22.nix | 10 + .../haskell-modules/configuration-lts-2.3.nix | 8 + .../haskell-modules/configuration-lts-2.4.nix | 9 + .../haskell-modules/configuration-lts-2.5.nix | 9 + .../haskell-modules/configuration-lts-2.6.nix | 9 + .../haskell-modules/configuration-lts-2.7.nix | 9 + .../haskell-modules/configuration-lts-2.8.nix | 9 + .../haskell-modules/configuration-lts-2.9.nix | 9 + .../haskell-modules/configuration-lts-3.0.nix | 11 + .../haskell-modules/configuration-lts-3.1.nix | 11 + .../configuration-lts-3.10.nix | 11 + .../configuration-lts-3.11.nix | 11 + .../configuration-lts-3.12.nix | 11 + .../configuration-lts-3.13.nix | 11 + .../configuration-lts-3.14.nix | 11 + .../configuration-lts-3.15.nix | 11 + .../configuration-lts-3.16.nix | 11 + .../configuration-lts-3.17.nix | 11 + .../configuration-lts-3.18.nix | 11 + .../configuration-lts-3.19.nix | 11 + .../haskell-modules/configuration-lts-3.2.nix | 11 + .../configuration-lts-3.20.nix | 11 + .../configuration-lts-3.21.nix | 11 + .../configuration-lts-3.22.nix | 11 + .../haskell-modules/configuration-lts-3.3.nix | 11 + .../haskell-modules/configuration-lts-3.4.nix | 11 + .../haskell-modules/configuration-lts-3.5.nix | 11 + .../haskell-modules/configuration-lts-3.6.nix | 11 + .../haskell-modules/configuration-lts-3.7.nix | 11 + .../haskell-modules/configuration-lts-3.8.nix | 11 + .../haskell-modules/configuration-lts-3.9.nix | 11 + .../haskell-modules/configuration-lts-4.0.nix | 14 + .../haskell-modules/configuration-lts-4.1.nix | 14 + .../haskell-modules/configuration-lts-4.2.nix | 15 + .../haskell-modules/configuration-lts-5.0.nix | 17 + .../haskell-modules/configuration-lts-5.1.nix | 17 + .../configuration-lts-5.10.nix | 26 + .../configuration-lts-5.11.nix | 26 + .../configuration-lts-5.12.nix | 28 + .../configuration-lts-5.13.nix | 28 + .../configuration-lts-5.14.nix | 30 + .../configuration-lts-5.15.nix | 30 + .../configuration-lts-5.16.nix | 32 + .../configuration-lts-5.17.nix | 33 + .../configuration-lts-5.18.nix | 33 + .../haskell-modules/configuration-lts-5.2.nix | 18 + .../haskell-modules/configuration-lts-5.3.nix | 19 + .../haskell-modules/configuration-lts-5.4.nix | 23 + .../haskell-modules/configuration-lts-5.5.nix | 23 + .../haskell-modules/configuration-lts-5.6.nix | 23 + .../haskell-modules/configuration-lts-5.7.nix | 26 + .../haskell-modules/configuration-lts-5.8.nix | 26 + .../haskell-modules/configuration-lts-5.9.nix | 26 + .../haskell-modules/configuration-lts-6.0.nix | 48 + .../haskell-modules/configuration-lts-6.1.nix | 51 + .../haskell-modules/hackage-packages.nix | 6441 ++++++++++++++++- 93 files changed, 7424 insertions(+), 281 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index a1a76f562c45..30c7a9516165 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4397,6 +4401,7 @@ self: super: { "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"; @@ -5481,6 +5486,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7694,6 +7700,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8162,6 +8169,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index de99a4305798..fe0fd741bf0b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4397,6 +4401,7 @@ self: super: { "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"; @@ -5481,6 +5486,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7694,6 +7700,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8162,6 +8169,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 7d4890440681..b6992b4aff19 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4397,6 +4401,7 @@ self: super: { "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"; @@ -5481,6 +5486,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7694,6 +7700,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8162,6 +8169,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 442c8064c149..5ef07e7734e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4397,6 +4401,7 @@ self: super: { "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"; @@ -5481,6 +5486,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7694,6 +7700,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8162,6 +8169,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index aaa28d9ea69e..1392d61fdacf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4395,6 +4399,7 @@ self: super: { "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"; @@ -5479,6 +5484,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7691,6 +7697,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8159,6 +8166,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index ddc36102e55a..59a4b1533d6f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1451,6 +1452,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2593,6 +2595,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2722,6 +2725,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4395,6 +4399,7 @@ self: super: { "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"; @@ -5479,6 +5484,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7691,6 +7697,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8159,6 +8166,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index a76634279526..4dbc35a9a85a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1450,6 +1451,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2592,6 +2594,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2721,6 +2724,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4393,6 +4397,7 @@ self: super: { "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"; @@ -5477,6 +5482,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7688,6 +7694,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8156,6 +8163,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 0938bf86b1e1..97222ac91776 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -250,6 +250,7 @@ self: super: { "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_0"; @@ -1450,6 +1451,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2592,6 +2594,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2721,6 +2724,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4393,6 +4397,7 @@ self: super: { "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"; @@ -5477,6 +5482,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7688,6 +7694,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8156,6 +8163,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index a81b094549b9..6c00ed77bed0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1448,6 +1449,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2586,6 +2588,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2715,6 +2718,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4386,6 +4390,7 @@ self: super: { "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"; @@ -5469,6 +5474,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7679,6 +7685,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8146,6 +8153,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index b8b50fa07b74..59c3fd1c7dbb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1448,6 +1449,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2584,6 +2586,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2713,6 +2716,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4382,6 +4386,7 @@ self: super: { "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"; @@ -5463,6 +5468,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7672,6 +7678,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8137,6 +8144,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index eff88508dabc..47282b8ccbf0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4371,6 +4375,7 @@ self: super: { "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"; @@ -5447,6 +5452,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7651,6 +7657,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8115,6 +8122,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 740af97ac4b7..e083f9007f93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4370,6 +4374,7 @@ self: super: { "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"; @@ -5444,6 +5449,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7648,6 +7654,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8112,6 +8119,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index 56ea8aaa31c9..ae6084d1f182 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4370,6 +4374,7 @@ self: super: { "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"; @@ -5444,6 +5449,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7648,6 +7654,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8112,6 +8119,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 9c8da29c0427..097bd09b7abe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4369,6 +4373,7 @@ self: super: { "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"; @@ -5443,6 +5448,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7647,6 +7653,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8111,6 +8118,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 6cbe830d2a54..9895d6623db1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1446,6 +1447,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2577,6 +2579,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2706,6 +2709,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4366,6 +4370,7 @@ self: super: { "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"; @@ -5440,6 +5445,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7643,6 +7649,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8107,6 +8114,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 9f6d68c7515f..57cb98588c90 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -249,6 +249,7 @@ self: super: { "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_1"; @@ -1445,6 +1446,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2574,6 +2576,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2703,6 +2706,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4362,6 +4366,7 @@ self: super: { "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"; @@ -5436,6 +5441,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7636,6 +7642,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8099,6 +8106,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 1705a720d169..db6d2e44e2eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1448,6 +1449,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2582,6 +2584,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2711,6 +2714,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4379,6 +4383,7 @@ self: super: { "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"; @@ -5460,6 +5465,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7666,6 +7672,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8131,6 +8138,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index e6e83a57225b..1ef559565b32 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2581,6 +2583,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2710,6 +2713,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4376,6 +4380,7 @@ self: super: { "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"; @@ -5457,6 +5462,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7662,6 +7668,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8127,6 +8134,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index d1bdbbdf4bd2..0067ae9e1eea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4375,6 +4379,7 @@ self: super: { "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"; @@ -5456,6 +5461,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7661,6 +7667,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8126,6 +8133,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 60bd904fb2bb..f57d2ce7d534 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4375,6 +4379,7 @@ self: super: { "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"; @@ -5451,6 +5456,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7656,6 +7662,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8121,6 +8128,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index 7aa8fcfbef09..f549de8c4480 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4372,6 +4376,7 @@ self: super: { "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"; @@ -5448,6 +5453,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7652,6 +7658,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8117,6 +8124,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index ef6add61991f..3795e7bc5d43 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -249,6 +249,7 @@ self: super: { "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_0"; @@ -1447,6 +1448,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2580,6 +2582,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2709,6 +2712,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4371,6 +4375,7 @@ self: super: { "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"; @@ -5447,6 +5452,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_16_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7651,6 +7657,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = dontDistribute super."servant-server"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8116,6 +8123,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 50e30368e5cb..d4bde7ba4e2a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1437,6 +1438,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2563,6 +2565,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2692,6 +2695,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4349,6 +4353,7 @@ self: super: { "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"; @@ -5412,6 +5417,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7598,6 +7604,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8057,6 +8064,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index a818df3aca52..ac54a7f78cbf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1437,6 +1438,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2562,6 +2564,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2691,6 +2694,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4348,6 +4352,7 @@ self: super: { "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"; @@ -5411,6 +5416,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7597,6 +7603,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8056,6 +8063,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 6d807cd07ad4..e118bf17a7cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1433,6 +1434,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1647,6 +1649,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2552,6 +2555,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2680,6 +2684,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4331,6 +4336,7 @@ self: super: { "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"; @@ -5390,6 +5396,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7571,6 +7578,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8024,6 +8032,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index b6dd0c7ee7bc..dbe948952d67 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2551,6 +2554,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2679,6 +2683,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4329,6 +4334,7 @@ self: super: { "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"; @@ -5388,6 +5394,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7567,6 +7574,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8019,6 +8027,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 15c5dcb6790d..aa6c0f11dd39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2551,6 +2554,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2679,6 +2683,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4329,6 +4334,7 @@ self: super: { "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"; @@ -5388,6 +5394,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7566,6 +7573,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8018,6 +8026,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 970101491d26..4140f53d15ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2551,6 +2554,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2679,6 +2683,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4329,6 +4334,7 @@ self: super: { "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"; @@ -5387,6 +5393,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7565,6 +7572,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8017,6 +8025,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 532619c95554..36092a13f041 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2551,6 +2554,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2679,6 +2683,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4328,6 +4333,7 @@ self: super: { "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"; @@ -5385,6 +5391,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7563,6 +7570,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8015,6 +8023,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 850d9e1f8547..4c1ed19ab331 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2551,6 +2554,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2679,6 +2683,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4327,6 +4332,7 @@ self: super: { "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"; @@ -5384,6 +5390,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7561,6 +7568,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8012,6 +8020,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 0dc74484dec4..8019c21e776a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1432,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1646,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2550,6 +2553,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2678,6 +2682,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4324,6 +4329,7 @@ self: super: { "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"; @@ -5381,6 +5387,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_2"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7557,6 +7564,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8008,6 +8016,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 6ea5fa61d3ea..757ef785beb9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2548,6 +2552,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2676,6 +2681,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4320,6 +4326,7 @@ self: super: { "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"; @@ -5377,6 +5384,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7552,6 +7560,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8003,6 +8012,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index b7c191ec986b..3c4af87d63cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2547,6 +2551,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2675,6 +2680,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4318,6 +4324,7 @@ self: super: { "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"; @@ -5375,6 +5382,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7549,6 +7557,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8000,6 +8009,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 57f95041811c..230654468a88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2547,6 +2551,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2675,6 +2680,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4317,6 +4323,7 @@ self: super: { "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"; @@ -5374,6 +5381,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7548,6 +7556,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -7999,6 +8008,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index e287806e6c06..762eb95287df 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1436,6 +1437,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2560,6 +2562,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2689,6 +2692,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4346,6 +4350,7 @@ self: super: { "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"; @@ -5409,6 +5414,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7595,6 +7601,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8054,6 +8061,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 67054c340589..6f7c39908f32 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2547,6 +2551,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2675,6 +2680,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4317,6 +4323,7 @@ self: super: { "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"; @@ -5374,6 +5381,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7548,6 +7556,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -7998,6 +8007,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index f1c3faa74eed..1aff7b988ff8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2547,6 +2551,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2675,6 +2680,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4317,6 +4323,7 @@ self: super: { "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"; @@ -5374,6 +5381,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7547,6 +7555,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -7997,6 +8006,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 65fb5ffd1699..d4e1a7d91445 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1414,6 +1415,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1431,6 +1433,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1645,6 +1648,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2547,6 +2551,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2675,6 +2680,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4317,6 +4323,7 @@ self: super: { "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"; @@ -5373,6 +5380,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_3"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7546,6 +7554,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -7996,6 +8005,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 0de46ff57ea2..256e70203cfe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1436,6 +1437,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -2560,6 +2562,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2689,6 +2692,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4345,6 +4349,7 @@ self: super: { "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"; @@ -5407,6 +5412,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7593,6 +7599,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8052,6 +8059,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index e2e6729197e6..fceccbc7610c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1436,6 +1437,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1653,6 +1655,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2559,6 +2562,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2688,6 +2692,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4344,6 +4349,7 @@ self: super: { "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"; @@ -5406,6 +5412,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7590,6 +7597,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8049,6 +8057,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 407a6d348cf3..80634ecf19c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1436,6 +1437,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1653,6 +1655,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2558,6 +2561,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2687,6 +2691,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4343,6 +4348,7 @@ self: super: { "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"; @@ -5405,6 +5411,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7589,6 +7596,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8048,6 +8056,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 8760560699d3..81b43db85344 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -248,6 +248,7 @@ self: super: { "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_1"; @@ -1434,6 +1435,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1650,6 +1652,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2555,6 +2558,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2684,6 +2688,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4338,6 +4343,7 @@ self: super: { "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"; @@ -5400,6 +5406,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7583,6 +7590,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8042,6 +8050,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 73b09b7b95b6..1dbeefa2757a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1434,6 +1435,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1650,6 +1652,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2555,6 +2558,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2684,6 +2688,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4338,6 +4343,7 @@ self: super: { "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"; @@ -5400,6 +5406,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7584,6 +7591,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8043,6 +8051,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index cdf91b748052..e927b2522961 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1433,6 +1434,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1649,6 +1651,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2554,6 +2557,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2683,6 +2687,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4336,6 +4341,7 @@ self: super: { "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"; @@ -5398,6 +5404,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7581,6 +7588,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8037,6 +8045,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 13cda9837f12..6325f573ae56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -248,6 +248,7 @@ self: super: { "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"; @@ -1433,6 +1434,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = dontDistribute super."asciidiagram"; @@ -1647,6 +1649,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2552,6 +2555,7 @@ self: super: { "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-hash" = dontDistribute super."data-hash"; "data-interval" = dontDistribute super."data-interval"; "data-inttrie" = doDistribute super."data-inttrie_0_1_0"; @@ -2681,6 +2685,7 @@ self: super: { "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"; "dependent-map" = dontDistribute super."dependent-map"; @@ -4332,6 +4337,7 @@ self: super: { "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"; @@ -5393,6 +5399,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_10_2_1"; "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" = doDistribute super."language-ecmascript_0_17"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -7575,6 +7582,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_2_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession" = dontDistribute super."serversession"; "serversession-backend-acid-state" = dontDistribute super."serversession-backend-acid-state"; @@ -8029,6 +8037,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 585cc40ead85..f0dab63c93a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -835,6 +836,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1398,6 +1400,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1606,6 +1609,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2492,6 +2496,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2617,6 +2622,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4236,6 +4242,7 @@ self: super: { "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"; @@ -5269,6 +5276,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6375,6 +6383,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7406,6 +7415,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7844,6 +7854,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 127522c53e56..47e0f6ff411d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -835,6 +836,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1397,6 +1399,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1605,6 +1608,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2491,6 +2495,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2616,6 +2621,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4234,6 +4240,7 @@ self: super: { "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"; @@ -5267,6 +5274,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6372,6 +6380,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7401,6 +7410,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7839,6 +7849,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index cfad4099da79..33f08dc49934 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2481,6 +2485,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2606,6 +2611,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4215,6 +4221,7 @@ self: super: { "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"; @@ -5243,6 +5250,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6341,6 +6349,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7366,6 +7375,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7800,6 +7810,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 867bf26e51a4..e4f83ddcfaf3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2481,6 +2485,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2606,6 +2611,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4214,6 +4220,7 @@ self: super: { "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"; @@ -5242,6 +5249,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6340,6 +6348,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7365,6 +7374,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7799,6 +7809,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 9c6c19e9b285..9baee82b8fc7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2480,6 +2484,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2605,6 +2610,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4212,6 +4218,7 @@ self: super: { "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"; @@ -5240,6 +5247,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6338,6 +6346,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7362,6 +7371,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7796,6 +7806,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 9318b13ae7dc..958fa5a46891 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2480,6 +2484,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2605,6 +2610,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4212,6 +4218,7 @@ self: super: { "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"; @@ -5239,6 +5246,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6336,6 +6344,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7359,6 +7368,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7793,6 +7803,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 6766f4005290..475e11de73f8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2478,6 +2482,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2603,6 +2608,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4210,6 +4216,7 @@ self: super: { "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"; @@ -5236,6 +5243,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6333,6 +6341,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7356,6 +7365,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7790,6 +7800,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 97240611d619..05de0e13094b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2478,6 +2482,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2603,6 +2608,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4209,6 +4215,7 @@ self: super: { "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"; @@ -5233,6 +5240,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6330,6 +6338,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7352,6 +7361,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7786,6 +7796,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index fb1fa1f8904f..b471ee61b9c8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -832,6 +833,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1392,6 +1394,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1598,6 +1601,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2477,6 +2481,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2602,6 +2607,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4208,6 +4214,7 @@ self: super: { "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"; @@ -5232,6 +5239,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6327,6 +6335,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7347,6 +7356,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7781,6 +7791,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 28aba74c754e..be08f924d956 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -832,6 +833,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1391,6 +1393,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1597,6 +1600,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2476,6 +2480,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2601,6 +2606,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4206,6 +4212,7 @@ self: super: { "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"; @@ -5229,6 +5236,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6322,6 +6330,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7342,6 +7351,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7776,6 +7786,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 01bb9446281b..0e7eaeb86d7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -832,6 +833,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1391,6 +1393,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1597,6 +1600,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2476,6 +2480,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2601,6 +2606,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4206,6 +4212,7 @@ self: super: { "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"; @@ -5228,6 +5235,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6321,6 +6329,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7341,6 +7350,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7775,6 +7785,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 363427117dbf..ef0d5c475a96 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -832,6 +833,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1391,6 +1393,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1596,6 +1599,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2473,6 +2477,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2598,6 +2603,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4203,6 +4209,7 @@ self: super: { "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"; @@ -5222,6 +5229,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_3"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6313,6 +6321,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7333,6 +7342,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7766,6 +7776,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 2d1c4a004fc5..b6400b7ea4ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1395,6 +1397,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1603,6 +1606,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2489,6 +2493,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2614,6 +2619,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4230,6 +4236,7 @@ self: super: { "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"; @@ -5263,6 +5270,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6367,6 +6375,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7395,6 +7404,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_1"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7832,6 +7842,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 3ff47c8c80ab..96eb5a425c98 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -831,6 +832,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1390,6 +1392,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1595,6 +1598,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2472,6 +2476,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2597,6 +2602,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4202,6 +4208,7 @@ self: super: { "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"; @@ -5221,6 +5228,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6312,6 +6320,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7331,6 +7340,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_5"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7763,6 +7773,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 6a1c012bc72b..d9587589253d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -831,6 +832,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1390,6 +1392,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1595,6 +1598,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2471,6 +2475,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2596,6 +2601,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4199,6 +4205,7 @@ self: super: { "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"; @@ -5216,6 +5223,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6305,6 +6313,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7322,6 +7331,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; @@ -7750,6 +7760,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 50908d05544b..e48769116548 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -831,6 +832,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1390,6 +1392,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1595,6 +1598,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2471,6 +2475,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2596,6 +2601,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4198,6 +4204,7 @@ self: super: { "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"; @@ -5213,6 +5220,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_4"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6302,6 +6310,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7319,6 +7328,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "servius" = dontDistribute super."servius"; "ses-html" = dontDistribute super."ses-html"; @@ -7747,6 +7757,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 9c4d3fb457c7..dc7564000fe4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1395,6 +1397,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1603,6 +1606,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2489,6 +2493,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2614,6 +2619,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4229,6 +4235,7 @@ self: super: { "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"; @@ -5261,6 +5268,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6365,6 +6373,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7393,6 +7402,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7829,6 +7839,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index f19e97ef85c7..11c7beeb3a41 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1395,6 +1397,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1603,6 +1606,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2489,6 +2493,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2614,6 +2619,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4229,6 +4235,7 @@ self: super: { "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"; @@ -5261,6 +5268,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6365,6 +6373,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7393,6 +7402,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_1"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7828,6 +7838,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index d60c54c2737e..0762ac4ece0c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1394,6 +1396,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1602,6 +1605,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2488,6 +2492,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2613,6 +2618,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4227,6 +4233,7 @@ self: super: { "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"; @@ -5256,6 +5263,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6358,6 +6366,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7385,6 +7394,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7820,6 +7830,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index cba4bcc227b4..23258fbfc172 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1394,6 +1396,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1602,6 +1605,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = dontDistribute super."binary-orphans"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2488,6 +2492,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2613,6 +2618,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4225,6 +4231,7 @@ self: super: { "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"; @@ -5253,6 +5260,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6354,6 +6362,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7381,6 +7390,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_2"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7816,6 +7826,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index e37423fc1587..e3903cc58890 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1394,6 +1396,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1600,6 +1603,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_1_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2485,6 +2489,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2610,6 +2615,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4221,6 +4227,7 @@ self: super: { "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"; @@ -5249,6 +5256,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_0_1"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6350,6 +6358,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7375,6 +7384,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7809,6 +7819,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 38bef7afa715..992b70692999 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -834,6 +835,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1394,6 +1396,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1600,6 +1603,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2483,6 +2487,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2608,6 +2613,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4218,6 +4224,7 @@ self: super: { "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"; @@ -5246,6 +5253,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_2"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6346,6 +6354,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7371,6 +7380,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7805,6 +7815,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index 89928d051460..ab8fad99deea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -239,6 +239,7 @@ self: super: { "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"; @@ -833,6 +834,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1393,6 +1395,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = dontDistribute super."ascii-progress"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1599,6 +1602,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_2_0"; "binary-parser" = dontDistribute super."binary-parser"; @@ -2481,6 +2485,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2606,6 +2611,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_1_1_3"; @@ -4215,6 +4221,7 @@ self: super: { "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"; @@ -5243,6 +5250,7 @@ self: super: { "language-c-quote" = doDistribute super."language-c-quote_0_11_2_1"; "language-cil" = dontDistribute super."language-cil"; "language-css" = dontDistribute super."language-css"; + "language-dart" = dontDistribute super."language-dart"; "language-dot" = dontDistribute super."language-dot"; "language-ecmascript" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6343,6 +6351,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-isomorphisms" = dontDistribute super."partial-isomorphisms"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; @@ -7368,6 +7377,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_4"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servant-yaml" = dontDistribute super."servant-yaml"; "serversession-backend-acid-state" = doDistribute super."serversession-backend-acid-state_1_0_2"; "serversession-backend-persistent" = doDistribute super."serversession-backend-persistent_1_0_1"; @@ -7802,6 +7812,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 8f288783fc10..53a4b50135dd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -237,6 +238,7 @@ self: super: { "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"; @@ -818,6 +820,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1369,6 +1372,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1570,6 +1574,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = doDistribute super."binary-parser_0_5_0_1"; @@ -2429,6 +2434,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2554,6 +2560,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2984,6 +2991,7 @@ self: super: { "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_2"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3837,6 +3845,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4127,6 +4136,7 @@ self: super: { "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"; @@ -5107,6 +5117,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6164,6 +6175,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7148,6 +7160,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7569,6 +7582,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 64628dd92b0d..138433a3c591 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -237,6 +238,7 @@ self: super: { "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"; @@ -818,6 +820,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1367,6 +1370,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1568,6 +1572,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = doDistribute super."binary-parser_0_5_0_1"; @@ -2427,6 +2432,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2552,6 +2558,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2981,6 +2988,7 @@ self: super: { "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3833,6 +3841,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4123,6 +4132,7 @@ self: super: { "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"; @@ -5099,6 +5109,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -6154,6 +6165,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7138,6 +7150,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7559,6 +7572,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 96d57166f244..e321aadc6952 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -237,6 +238,7 @@ self: super: { "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"; @@ -818,6 +820,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1367,6 +1370,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1568,6 +1572,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-orphans" = doDistribute super."binary-orphans_0_1_3_0"; "binary-parser" = doDistribute super."binary-parser_0_5_0_1"; @@ -2424,6 +2429,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2548,6 +2554,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2975,6 +2982,7 @@ self: super: { "extensible-effects" = dontDistribute super."extensible-effects"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3823,6 +3831,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4110,6 +4119,7 @@ self: super: { "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"; @@ -5082,6 +5092,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5716,6 +5727,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -6134,6 +6146,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7112,6 +7125,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = dontDistribute super."servant-swagger"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html" = dontDistribute super."ses-html"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; @@ -7528,6 +7542,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index ca09b1762c53..322ec8aba568 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -236,6 +237,7 @@ self: super: { "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"; @@ -568,6 +570,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -812,6 +815,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1359,6 +1363,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1558,6 +1563,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-parser" = doDistribute super."binary-parser_0_5_0_1"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2405,6 +2411,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2527,6 +2534,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2947,6 +2955,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3548,6 +3557,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3786,6 +3796,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4073,6 +4084,7 @@ self: super: { "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"; @@ -5041,6 +5053,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_1"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5673,6 +5686,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -6086,6 +6100,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7055,6 +7070,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_1"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7465,6 +7481,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index f9a10509e0a0..92d20610294f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -236,6 +237,7 @@ self: super: { "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"; @@ -567,6 +569,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -811,6 +814,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1357,6 +1361,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1556,6 +1561,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-parser" = doDistribute super."binary-parser_0_5_1"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2400,6 +2406,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2522,6 +2529,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2942,6 +2950,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3543,6 +3552,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3781,6 +3791,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4068,6 +4079,7 @@ self: super: { "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"; @@ -5035,6 +5047,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5666,6 +5679,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -6079,6 +6093,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7046,6 +7061,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7456,6 +7472,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 553b2a43f3d6..5c977fabe902 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -549,6 +551,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -561,6 +564,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -805,6 +809,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1347,6 +1352,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1546,6 +1552,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2378,6 +2385,7 @@ self: super: { "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"; @@ -2499,6 +2507,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2619,6 +2628,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2909,6 +2919,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3500,6 +3511,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3737,6 +3749,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4020,6 +4033,7 @@ self: super: { "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"; @@ -4038,6 +4052,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4974,6 +4989,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5592,6 +5608,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5732,6 +5749,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5995,6 +6013,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6486,6 +6505,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6947,6 +6967,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7087,6 +7108,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7352,6 +7374,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7382,6 +7405,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7860,6 +7885,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 31ee37f13bd2..164a7e61aede 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -548,6 +550,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -560,6 +563,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -804,6 +808,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1345,6 +1350,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1543,6 +1549,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2373,6 +2380,7 @@ self: super: { "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"; @@ -2494,6 +2502,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2614,6 +2623,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2903,6 +2913,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3494,6 +3505,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3731,6 +3743,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4014,6 +4027,7 @@ self: super: { "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"; @@ -4032,6 +4046,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4963,6 +4978,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5581,6 +5597,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5721,6 +5738,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5984,6 +6002,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6474,6 +6493,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6935,6 +6955,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7075,6 +7096,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7340,6 +7362,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7370,6 +7393,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7846,6 +7871,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index c437c0b87d4d..6d8880464eef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -547,6 +549,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -559,6 +562,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -803,6 +807,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1344,6 +1349,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1542,6 +1548,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2368,6 +2375,7 @@ self: super: { "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"; @@ -2489,6 +2497,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2609,6 +2618,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2896,6 +2906,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3487,6 +3498,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3724,6 +3736,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4007,6 +4020,7 @@ self: super: { "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"; @@ -4025,6 +4039,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4955,6 +4970,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5567,6 +5583,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5707,6 +5724,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5970,6 +5988,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6458,6 +6477,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6918,6 +6938,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7058,6 +7079,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7322,10 +7344,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7350,6 +7375,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7826,6 +7853,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index a8af96375789..b78fa98f9c8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -547,6 +549,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -559,6 +562,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -803,6 +807,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1343,6 +1348,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1538,6 +1544,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2360,6 +2367,7 @@ self: super: { "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"; @@ -2481,6 +2489,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2601,6 +2610,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2887,6 +2897,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3478,6 +3489,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3715,6 +3727,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3998,6 +4011,7 @@ self: super: { "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"; @@ -4016,6 +4030,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4942,6 +4957,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5552,6 +5568,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5692,6 +5709,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5954,6 +5972,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6440,6 +6459,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6900,6 +6920,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7040,6 +7061,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7304,10 +7326,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_2"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7332,6 +7357,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7808,6 +7835,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 0495d4ccab5b..9218d745d0db 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -546,6 +548,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -558,6 +561,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -801,6 +805,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1340,6 +1345,7 @@ self: super: { "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"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1534,6 +1540,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2237,6 +2244,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2350,6 +2358,7 @@ self: super: { "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"; @@ -2471,6 +2480,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2591,6 +2601,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2877,6 +2888,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3466,6 +3478,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3703,6 +3716,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3986,6 +4000,7 @@ self: super: { "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"; @@ -4004,6 +4019,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4929,6 +4945,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5537,6 +5554,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5676,6 +5694,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5938,6 +5957,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6422,6 +6442,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6882,6 +6903,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6908,6 +6930,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -7019,6 +7042,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7282,10 +7306,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7310,6 +7337,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7784,6 +7813,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 3d2668401f7f..3b96edd4e4bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -545,6 +547,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -557,6 +560,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -800,6 +804,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1339,6 +1344,7 @@ self: super: { "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"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1533,6 +1539,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2235,6 +2242,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2347,6 +2355,7 @@ self: super: { "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"; @@ -2468,6 +2477,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2588,6 +2598,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2873,6 +2884,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_5"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3461,6 +3473,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3698,6 +3711,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3979,6 +3993,7 @@ self: super: { "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"; @@ -3997,6 +4012,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4922,6 +4938,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5529,6 +5546,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5668,6 +5686,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5930,6 +5949,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6412,6 +6432,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6872,6 +6893,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6898,6 +6920,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -7009,6 +7032,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7272,10 +7296,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7300,6 +7327,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7772,6 +7801,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index a26b96eb3009..9a4465fa5b03 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -544,6 +546,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -556,6 +559,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -799,6 +803,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1335,6 +1340,7 @@ self: super: { "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"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1525,6 +1531,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2223,6 +2230,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2335,6 +2343,7 @@ self: super: { "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"; @@ -2456,6 +2465,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2567,6 +2577,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2851,6 +2862,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_5"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3438,6 +3450,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3675,6 +3688,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3954,6 +3968,7 @@ self: super: { "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"; @@ -3972,6 +3987,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4895,6 +4911,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5499,6 +5516,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5637,6 +5655,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5899,6 +5918,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6378,6 +6398,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6834,6 +6855,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6860,6 +6882,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -6971,6 +6994,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7159,6 +7183,7 @@ self: super: { "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_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7229,10 +7254,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-commons" = doDistribute super."streaming-commons_0_1_15_4"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; @@ -7257,6 +7285,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7726,6 +7756,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7778,6 +7809,7 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_1_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 703373890846..bdda79f37c36 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -542,6 +544,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -554,6 +557,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -796,6 +800,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1333,6 +1338,7 @@ self: super: { "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"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1522,6 +1528,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2219,6 +2226,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2331,6 +2339,7 @@ self: super: { "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"; @@ -2452,6 +2461,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2563,6 +2573,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2847,6 +2858,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_6"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3434,6 +3446,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3671,6 +3684,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3857,6 +3871,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_5"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3948,6 +3963,7 @@ self: super: { "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"; @@ -3966,6 +3982,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4889,6 +4906,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5492,6 +5510,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5629,6 +5648,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5890,6 +5910,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6369,6 +6390,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6824,6 +6846,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6850,6 +6873,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -6961,6 +6985,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7149,6 +7174,7 @@ self: super: { "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_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7219,10 +7245,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7246,6 +7275,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7713,6 +7744,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7765,6 +7797,7 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_1_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index a9fd71590161..0b6e428f66e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -180,6 +180,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -234,6 +235,7 @@ self: super: { "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"; @@ -542,6 +544,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -554,6 +557,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JunkDB" = dontDistribute super."JunkDB"; @@ -795,6 +799,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1332,6 +1337,7 @@ self: super: { "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"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1521,6 +1527,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2216,6 +2223,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-conduit" = dontDistribute super."cryptonite-conduit"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; @@ -2328,6 +2336,7 @@ self: super: { "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"; @@ -2449,6 +2458,7 @@ self: super: { "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"; "dependent-state" = dontDistribute super."dependent-state"; @@ -2556,6 +2566,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2839,6 +2850,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_7"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3425,6 +3437,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3661,6 +3674,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3847,6 +3861,7 @@ self: super: { "haxl-amazonka" = dontDistribute super."haxl-amazonka"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_5"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3938,6 +3953,7 @@ self: super: { "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"; @@ -3956,6 +3972,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4874,6 +4891,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5474,6 +5492,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5610,6 +5629,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -5870,6 +5890,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6348,6 +6369,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6803,6 +6825,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -6829,6 +6852,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-language-c" = doDistribute super."shake-language-c_0_8_6"; @@ -6940,6 +6964,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7128,6 +7153,7 @@ self: super: { "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_13_3"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; @@ -7198,10 +7224,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -7225,6 +7254,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7691,6 +7722,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_3"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7741,6 +7773,7 @@ self: super: { "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; "typography-geometry" = dontDistribute super."typography-geometry"; + "tz" = doDistribute super."tz_0_1_1_0"; "uAgda" = dontDistribute super."uAgda"; "ua-parser" = dontDistribute super."ua-parser"; "uacpid" = dontDistribute super."uacpid"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 65f0abd36319..068b52835c60 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -182,6 +182,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -236,6 +237,7 @@ self: super: { "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"; @@ -554,6 +556,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -566,6 +569,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -810,6 +814,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1356,6 +1361,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1555,6 +1561,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-parser" = doDistribute super."binary-parser_0_5_1"; "binary-protocol" = dontDistribute super."binary-protocol"; @@ -2399,6 +2406,7 @@ self: super: { "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-inttrie" = doDistribute super."data-inttrie_0_1_0"; "data-ivar" = dontDistribute super."data-ivar"; @@ -2521,6 +2529,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2939,6 +2948,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3537,6 +3547,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3775,6 +3786,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4062,6 +4074,7 @@ self: super: { "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"; @@ -5027,6 +5040,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5655,6 +5669,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -6068,6 +6083,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7030,6 +7046,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7440,6 +7457,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 088932e94fdc..13050ff44d99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -552,6 +554,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -564,6 +567,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -808,6 +812,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1353,6 +1358,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1552,6 +1558,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2394,6 +2401,7 @@ self: super: { "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"; @@ -2515,6 +2523,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2930,6 +2939,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3525,6 +3535,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3763,6 +3774,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4050,6 +4062,7 @@ self: super: { "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"; @@ -5014,6 +5027,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5640,6 +5654,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -6052,6 +6067,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -7011,6 +7027,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7152,6 +7169,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7418,6 +7436,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index a252a63a5439..670826bc0752 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -551,6 +553,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -563,6 +566,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -807,6 +811,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1351,6 +1356,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1550,6 +1556,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2390,6 +2397,7 @@ self: super: { "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"; @@ -2511,6 +2519,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2632,6 +2641,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2922,6 +2932,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3515,6 +3526,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3753,6 +3765,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4040,6 +4053,7 @@ self: super: { "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"; @@ -5004,6 +5018,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5628,6 +5643,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5769,6 +5785,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6036,6 +6053,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6530,6 +6548,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6993,6 +7012,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7134,6 +7154,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7400,6 +7421,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7912,6 +7934,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 9a3818c04615..c3687c3f72c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -551,6 +553,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -563,6 +566,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -807,6 +811,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1351,6 +1356,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1550,6 +1556,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2387,6 +2394,7 @@ self: super: { "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"; @@ -2508,6 +2516,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2629,6 +2638,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2919,6 +2929,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3512,6 +3523,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3750,6 +3762,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4036,6 +4049,7 @@ self: super: { "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"; @@ -4999,6 +5013,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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" = doDistribute super."language-ecmascript_0_17_0_2"; "language-ecmascript-analysis" = dontDistribute super."language-ecmascript-analysis"; @@ -5623,6 +5638,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5764,6 +5780,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6031,6 +6048,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6525,6 +6543,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6988,6 +7007,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7129,6 +7149,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7395,6 +7416,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7907,6 +7929,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 2ae05e7ee39d..b0924b641df4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -550,6 +552,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -562,6 +565,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -806,6 +810,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1350,6 +1355,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1549,6 +1555,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2385,6 +2392,7 @@ self: super: { "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"; @@ -2506,6 +2514,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2627,6 +2636,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2917,6 +2927,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3508,6 +3519,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3745,6 +3757,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4030,6 +4043,7 @@ self: super: { "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"; @@ -4993,6 +5007,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5615,6 +5630,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5755,6 +5771,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6022,6 +6039,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6514,6 +6532,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6977,6 +6996,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7118,6 +7138,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7384,6 +7405,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7895,6 +7917,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_1_1"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_1_1"; "twitter-types-lens" = doDistribute super."twitter-types-lens_0_7_1"; "tx" = dontDistribute super."tx"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 49297c4c48b0..706a542f5c7a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -550,6 +552,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -562,6 +565,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -806,6 +810,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1350,6 +1355,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1549,6 +1555,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2382,6 +2389,7 @@ self: super: { "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"; @@ -2503,6 +2511,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2624,6 +2633,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2914,6 +2924,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3505,6 +3516,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3742,6 +3754,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4027,6 +4040,7 @@ self: super: { "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"; @@ -4045,6 +4059,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4988,6 +5003,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5609,6 +5625,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5749,6 +5766,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6016,6 +6034,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6508,6 +6527,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6970,6 +6990,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7111,6 +7132,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7377,6 +7399,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7407,6 +7430,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7886,6 +7911,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index f70ef10b1d7b..1c5881c4979a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -550,6 +552,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -562,6 +565,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -806,6 +810,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1350,6 +1355,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1549,6 +1555,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2382,6 +2389,7 @@ self: super: { "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"; @@ -2503,6 +2511,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2624,6 +2633,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2914,6 +2924,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3505,6 +3516,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3742,6 +3754,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4027,6 +4040,7 @@ self: super: { "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"; @@ -4045,6 +4059,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4988,6 +5003,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5609,6 +5625,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5749,6 +5766,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6016,6 +6034,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6508,6 +6527,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6970,6 +6990,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_6"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7111,6 +7132,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7377,6 +7399,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7407,6 +7430,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7886,6 +7911,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 9d8b36c2da71..86c2e35e3979 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -181,6 +181,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -235,6 +236,7 @@ self: super: { "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"; @@ -550,6 +552,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -562,6 +565,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JuicyPixels-repa" = doDistribute super."JuicyPixels-repa_0_7_0_1"; @@ -806,6 +810,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1349,6 +1354,7 @@ self: super: { "ascii" = dontDistribute super."ascii"; "ascii-flatten" = dontDistribute super."ascii-flatten"; "ascii-progress" = doDistribute super."ascii-progress_0_3_2_0"; + "ascii-table" = dontDistribute super."ascii-table"; "ascii-vector-avc" = dontDistribute super."ascii-vector-avc"; "ascii85-conduit" = dontDistribute super."ascii85-conduit"; "asciidiagram" = doDistribute super."asciidiagram_1_1_1_1"; @@ -1548,6 +1554,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -2380,6 +2387,7 @@ self: super: { "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"; @@ -2501,6 +2509,7 @@ self: super: { "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"; "dependent-map" = doDistribute super."dependent-map_0_2_1_0"; @@ -2621,6 +2630,7 @@ self: super: { "distributed-process-task" = dontDistribute super."distributed-process-task"; "distributed-process-tests" = dontDistribute super."distributed-process-tests"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "dixi" = doDistribute super."dixi_0_6_0_5"; @@ -2911,6 +2921,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_3"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3502,6 +3513,7 @@ self: super: { "google-mail-filters" = dontDistribute super."google-mail-filters"; "google-oauth2" = dontDistribute super."google-oauth2"; "google-search" = dontDistribute super."google-search"; + "google-translate" = doDistribute super."google-translate_0_1_1_2"; "googleplus" = dontDistribute super."googleplus"; "googlepolyline" = dontDistribute super."googlepolyline"; "gopherbot" = dontDistribute super."gopherbot"; @@ -3739,6 +3751,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -4022,6 +4035,7 @@ self: super: { "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"; @@ -4040,6 +4054,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hformat" = dontDistribute super."hformat"; @@ -4979,6 +4994,7 @@ self: super: { "language-c-quote" = dontDistribute super."language-c-quote"; "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"; @@ -5600,6 +5616,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multiset-comb" = dontDistribute super."multiset-comb"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; @@ -5740,6 +5757,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-transport-inmemory" = dontDistribute super."network-transport-inmemory"; "network-transport-tcp" = doDistribute super."network-transport-tcp_0_4_2"; @@ -6004,6 +6022,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -6495,6 +6514,7 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6956,6 +6976,7 @@ self: super: { "servant-scotty" = dontDistribute super."servant-scotty"; "servant-server" = doDistribute super."servant-server_0_4_4_7"; "servant-swagger" = doDistribute super."servant-swagger_0_1_2"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "servius" = doDistribute super."servius_1_2_0_1"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; @@ -7096,6 +7117,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -7361,6 +7383,7 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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"; @@ -7391,6 +7414,8 @@ self: super: { "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_2"; "strive" = dontDistribute super."strive"; "strptime" = dontDistribute super."strptime"; @@ -7869,6 +7894,7 @@ self: super: { "twitter" = dontDistribute super."twitter"; "twitter-conduit" = doDistribute super."twitter-conduit_0_1_2"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "twitter-types" = doDistribute super."twitter-types_0_7_2"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index fefaa0006f8a..f72d1c38e0de 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -178,6 +178,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -232,6 +233,7 @@ self: super: { "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"; @@ -462,6 +464,7 @@ self: super: { "HaLeX" = dontDistribute super."HaLeX"; "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; + "HaTeX" = doDistribute super."HaTeX_3_17_0_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -535,6 +538,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -547,6 +551,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JunkDB" = dontDistribute super."JunkDB"; @@ -782,6 +787,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1221,6 +1227,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1237,8 +1244,10 @@ self: super: { "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"; + "asciidiagram" = doDistribute super."asciidiagram_1_3_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1416,6 +1425,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1914,6 +1924,7 @@ self: super: { "compact-socket" = dontDistribute super."compact-socket"; "compact-string" = dontDistribute super."compact-string"; "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = doDistribute super."compactmap_0_1_4"; "compare-type" = dontDistribute super."compare-type"; "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; @@ -2088,6 +2099,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2197,6 +2209,7 @@ self: super: { "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"; @@ -2314,6 +2327,7 @@ self: super: { "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"; "dependent-state" = dontDistribute super."dependent-state"; @@ -2408,6 +2422,7 @@ self: super: { "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; "distributed-process-platform" = dontDistribute super."distributed-process-platform"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "djembe" = dontDistribute super."djembe"; @@ -2639,6 +2654,7 @@ self: super: { "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"; @@ -2679,6 +2695,7 @@ self: super: { "extensible-effects" = doDistribute super."extensible-effects_1_11_0_3"; "external-sort" = dontDistribute super."external-sort"; "extra" = doDistribute super."extra_1_4_7"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -3013,6 +3030,7 @@ self: super: { "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-options" = dontDistribute super."ghc-options"; @@ -3472,6 +3490,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3657,6 +3676,7 @@ self: super: { "hawitter" = dontDistribute super."hawitter"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_5"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3746,6 +3766,7 @@ self: super: { "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"; @@ -3764,6 +3785,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hfov" = dontDistribute super."hfov"; @@ -4642,6 +4664,7 @@ self: super: { "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"; @@ -4650,6 +4673,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_6_0_4"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5220,6 +5244,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; @@ -5351,6 +5376,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -5468,6 +5494,7 @@ self: super: { "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = doDistribute super."opaleye-trans_0_3_2"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-signals" = dontDistribute super."open-signals"; @@ -5604,6 +5631,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -5962,6 +5990,7 @@ self: super: { "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"; @@ -6059,7 +6088,9 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; "ratio-int" = dontDistribute super."ratio-int"; @@ -6480,6 +6511,8 @@ self: super: { "servant-response" = dontDistribute super."servant-response"; "servant-router" = dontDistribute super."servant-router"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6504,6 +6537,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-minify" = dontDistribute super."shake-minify"; @@ -6610,6 +6644,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -6795,6 +6830,7 @@ self: super: { "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"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -6860,10 +6896,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6885,6 +6924,9 @@ self: super: { "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"; @@ -6919,6 +6961,7 @@ self: super: { "supervisor" = dontDistribute super."supervisor"; "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; + "svg-tree" = doDistribute super."svg-tree_0_5_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6926,6 +6969,7 @@ self: super: { "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"; @@ -7032,6 +7076,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_2_0"; "teleport" = dontDistribute super."teleport"; "tellbot" = doDistribute super."tellbot_0_6_0_12"; "template-default" = dontDistribute super."template-default"; @@ -7326,6 +7371,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7375,6 +7421,7 @@ self: super: { "typesafe-endian" = dontDistribute super."typesafe-endian"; "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; + "tz" = doDistribute super."tz_0_1_1_0"; "uAgda" = dontDistribute super."uAgda"; "uacpid" = dontDistribute super."uacpid"; "uber" = dontDistribute super."uber"; @@ -7850,6 +7897,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_5_1"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 53faa9e98f86..317f7133e6b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -177,6 +177,7 @@ self: super: { "ClassyPrelude" = dontDistribute super."ClassyPrelude"; "Clean" = dontDistribute super."Clean"; "Clipboard" = dontDistribute super."Clipboard"; + "ClustalParser" = doDistribute super."ClustalParser_1_1_3"; "Coadjute" = dontDistribute super."Coadjute"; "Codec-Compression-LZF" = dontDistribute super."Codec-Compression-LZF"; "Codec-Image-DevIL" = dontDistribute super."Codec-Image-DevIL"; @@ -231,6 +232,7 @@ self: super: { "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"; @@ -460,6 +462,7 @@ self: super: { "HaLeX" = dontDistribute super."HaLeX"; "HaMinitel" = dontDistribute super."HaMinitel"; "HaPy" = dontDistribute super."HaPy"; + "HaTeX" = doDistribute super."HaTeX_3_17_0_1"; "HaTeX-meta" = dontDistribute super."HaTeX-meta"; "HaTeX-qq" = dontDistribute super."HaTeX-qq"; "HaVSA" = dontDistribute super."HaVSA"; @@ -533,6 +536,7 @@ self: super: { "InfixApplicative" = dontDistribute super."InfixApplicative"; "Interpolation" = dontDistribute super."Interpolation"; "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "IntervalMap" = doDistribute super."IntervalMap_0_5_0_1"; "Irc" = dontDistribute super."Irc"; "IrrHaskell" = dontDistribute super."IrrHaskell"; "IsNull" = dontDistribute super."IsNull"; @@ -545,6 +549,7 @@ self: super: { "Javav" = dontDistribute super."Javav"; "JsContracts" = dontDistribute super."JsContracts"; "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels" = doDistribute super."JuicyPixels_3_2_7"; "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; "JuicyPixels-extra" = dontDistribute super."JuicyPixels-extra"; "JunkDB" = dontDistribute super."JunkDB"; @@ -778,6 +783,7 @@ self: super: { "Ranged-sets" = dontDistribute super."Ranged-sets"; "Ranka" = dontDistribute super."Ranka"; "Rasenschach" = dontDistribute super."Rasenschach"; + "Rasterific" = doDistribute super."Rasterific_0_6_1"; "Redmine" = dontDistribute super."Redmine"; "Ref" = dontDistribute super."Ref"; "Referees" = dontDistribute super."Referees"; @@ -1217,6 +1223,7 @@ self: super: { "arith-encode" = dontDistribute super."arith-encode"; "arithmatic" = dontDistribute super."arithmatic"; "arithmetic" = dontDistribute super."arithmetic"; + "arithmoi" = doDistribute super."arithmoi_0_4_1_3"; "armada" = dontDistribute super."armada"; "arpa" = dontDistribute super."arpa"; "array-forth" = dontDistribute super."array-forth"; @@ -1233,8 +1240,10 @@ self: super: { "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"; + "asciidiagram" = doDistribute super."asciidiagram_1_3_1"; "asic" = dontDistribute super."asic"; "asil" = dontDistribute super."asil"; "asn1-data" = dontDistribute super."asn1-data"; @@ -1411,6 +1420,7 @@ self: super: { "binary-file" = dontDistribute super."binary-file"; "binary-generic" = dontDistribute super."binary-generic"; "binary-indexed-tree" = dontDistribute super."binary-indexed-tree"; + "binary-list" = doDistribute super."binary-list_1_1_1_0"; "binary-literal-qq" = dontDistribute super."binary-literal-qq"; "binary-protocol" = dontDistribute super."binary-protocol"; "binary-protocol-zmq" = dontDistribute super."binary-protocol-zmq"; @@ -1900,6 +1910,7 @@ self: super: { "compact-socket" = dontDistribute super."compact-socket"; "compact-string" = dontDistribute super."compact-string"; "compact-string-fix" = dontDistribute super."compact-string-fix"; + "compactmap" = doDistribute super."compactmap_0_1_4"; "compare-type" = dontDistribute super."compare-type"; "compdata" = doDistribute super."compdata_0_10"; "compdata-automata" = dontDistribute super."compdata-automata"; @@ -2074,6 +2085,7 @@ self: super: { "cryptohash-md5" = dontDistribute super."cryptohash-md5"; "cryptohash-sha1" = dontDistribute super."cryptohash-sha1"; "cryptohash-sha256" = dontDistribute super."cryptohash-sha256"; + "cryptonite" = doDistribute super."cryptonite_0_15"; "cryptonite-openssl" = dontDistribute super."cryptonite-openssl"; "cryptsy-api" = dontDistribute super."cryptsy-api"; "crystalfontz" = dontDistribute super."crystalfontz"; @@ -2182,6 +2194,7 @@ self: super: { "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"; @@ -2297,6 +2310,7 @@ self: super: { "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"; "dependent-state" = dontDistribute super."dependent-state"; @@ -2391,6 +2405,7 @@ self: super: { "distributed-process-p2p" = dontDistribute super."distributed-process-p2p"; "distributed-process-platform" = dontDistribute super."distributed-process-platform"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; + "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; "djembe" = dontDistribute super."djembe"; @@ -2615,6 +2630,7 @@ self: super: { "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"; @@ -2653,6 +2669,8 @@ self: super: { "extensible" = dontDistribute super."extensible"; "extensible-data" = dontDistribute super."extensible-data"; "external-sort" = dontDistribute super."external-sort"; + "extra" = doDistribute super."extra_1_4_8"; + "extract-dependencies" = doDistribute super."extract-dependencies_0_2_0_0"; "extractelf" = dontDistribute super."extractelf"; "ez-couch" = dontDistribute super."ez-couch"; "faceted" = dontDistribute super."faceted"; @@ -2983,6 +3001,7 @@ self: super: { "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-options" = dontDistribute super."ghc-options"; @@ -3436,6 +3455,7 @@ self: super: { "hans-pcap" = dontDistribute super."hans-pcap"; "hans-pfq" = dontDistribute super."hans-pfq"; "haphviz" = dontDistribute super."haphviz"; + "hapistrano" = doDistribute super."hapistrano_0_2_1_1"; "happindicator" = dontDistribute super."happindicator"; "happindicator3" = dontDistribute super."happindicator3"; "happraise" = dontDistribute super."happraise"; @@ -3621,6 +3641,7 @@ self: super: { "hawitter" = dontDistribute super."hawitter"; "haxl-facebook" = dontDistribute super."haxl-facebook"; "haxparse" = dontDistribute super."haxparse"; + "haxr" = doDistribute super."haxr_3000_11_1_5"; "haxr-th" = dontDistribute super."haxr-th"; "haxy" = dontDistribute super."haxy"; "hayland" = dontDistribute super."hayland"; @@ -3708,6 +3729,7 @@ self: super: { "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"; @@ -3726,6 +3748,7 @@ self: super: { "hfann" = dontDistribute super."hfann"; "hfd" = dontDistribute super."hfd"; "hfiar" = dontDistribute super."hfiar"; + "hflags" = doDistribute super."hflags_0_4_1"; "hfmt" = dontDistribute super."hfmt"; "hfoil" = dontDistribute super."hfoil"; "hfov" = dontDistribute super."hfov"; @@ -4595,6 +4618,7 @@ self: super: { "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"; @@ -4603,6 +4627,7 @@ self: super: { "language-go" = dontDistribute super."language-go"; "language-guess" = dontDistribute super."language-guess"; "language-java-classfile" = dontDistribute super."language-java-classfile"; + "language-javascript" = doDistribute super."language-javascript_0_6_0_4"; "language-kort" = dontDistribute super."language-kort"; "language-lua" = dontDistribute super."language-lua"; "language-lua-qq" = dontDistribute super."language-lua-qq"; @@ -5167,6 +5192,7 @@ self: super: { "multirec" = dontDistribute super."multirec"; "multirec-alt-deriver" = dontDistribute super."multirec-alt-deriver"; "multirec-binary" = dontDistribute super."multirec-binary"; + "multiset" = doDistribute super."multiset_0_3_2"; "multisetrewrite" = dontDistribute super."multisetrewrite"; "multistate" = dontDistribute super."multistate"; "muon" = dontDistribute super."muon"; @@ -5297,6 +5323,7 @@ self: super: { "network-socket-options" = dontDistribute super."network-socket-options"; "network-stream" = dontDistribute super."network-stream"; "network-topic-models" = dontDistribute super."network-topic-models"; + "network-transport" = doDistribute super."network-transport_0_4_3_1"; "network-transport-amqp" = dontDistribute super."network-transport-amqp"; "network-uri-static" = dontDistribute super."network-uri-static"; "network-wai-router" = dontDistribute super."network-wai-router"; @@ -5414,6 +5441,7 @@ self: super: { "opaleye" = doDistribute super."opaleye_0_4_2_0"; "opaleye-classy" = dontDistribute super."opaleye-classy"; "opaleye-sqlite" = dontDistribute super."opaleye-sqlite"; + "opaleye-trans" = doDistribute super."opaleye-trans_0_3_2"; "open-haddock" = dontDistribute super."open-haddock"; "open-pandoc" = dontDistribute super."open-pandoc"; "open-signals" = dontDistribute super."open-signals"; @@ -5548,6 +5576,7 @@ self: super: { "parsimony" = dontDistribute super."parsimony"; "partage" = dontDistribute super."partage"; "partial" = dontDistribute super."partial"; + "partial-handler" = doDistribute super."partial-handler_1_0_0_0"; "partial-lens" = dontDistribute super."partial-lens"; "partial-uri" = dontDistribute super."partial-uri"; "partly" = dontDistribute super."partly"; @@ -5634,6 +5663,7 @@ self: super: { "pgm" = dontDistribute super."pgm"; "pgsql-simple" = dontDistribute super."pgsql-simple"; "pgstream" = dontDistribute super."pgstream"; + "phantom-state" = doDistribute super."phantom-state_0_2_1_0"; "phasechange" = dontDistribute super."phasechange"; "phash" = dontDistribute super."phash"; "phizzle" = dontDistribute super."phizzle"; @@ -5894,6 +5924,7 @@ self: super: { "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"; @@ -5991,7 +6022,9 @@ self: super: { "range-space" = dontDistribute super."range-space"; "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; + "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; "rascal" = dontDistribute super."rascal"; + "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; "ratel" = doDistribute super."ratel_0_1_3"; "ratio-int" = dontDistribute super."ratio-int"; @@ -6166,6 +6199,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_3"; "retryer" = dontDistribute super."retryer"; "revdectime" = dontDistribute super."revdectime"; "reverse-apply" = dontDistribute super."reverse-apply"; @@ -6407,6 +6441,8 @@ self: super: { "servant-response" = dontDistribute super."servant-response"; "servant-router" = dontDistribute super."servant-router"; "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; "sessions" = dontDistribute super."sessions"; "set-cover" = dontDistribute super."set-cover"; @@ -6431,6 +6467,7 @@ self: super: { "shadowsocks" = dontDistribute super."shadowsocks"; "shady-gen" = dontDistribute super."shady-gen"; "shady-graphics" = dontDistribute super."shady-graphics"; + "shake" = doDistribute super."shake_0_15_6"; "shake-cabal-build" = dontDistribute super."shake-cabal-build"; "shake-extras" = dontDistribute super."shake-extras"; "shake-minify" = dontDistribute super."shake-minify"; @@ -6537,6 +6574,7 @@ self: super: { "slack" = dontDistribute super."slack"; "slack-api" = dontDistribute super."slack-api"; "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "slave-thread" = doDistribute super."slave-thread_1_0_1"; "sleep" = dontDistribute super."sleep"; "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; "slidemews" = dontDistribute super."slidemews"; @@ -6722,6 +6760,7 @@ self: super: { "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"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -6786,10 +6825,13 @@ self: super: { "stratum-tool" = dontDistribute super."stratum-tool"; "stratux" = dontDistribute super."stratux"; "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" = doDistribute super."streaming_0_1_4_1"; + "streaming-bytestring" = doDistribute super."streaming-bytestring_0_1_4_3"; "streaming-histogram" = dontDistribute super."streaming-histogram"; "streaming-png" = dontDistribute super."streaming-png"; "streaming-utils" = dontDistribute super."streaming-utils"; @@ -6811,6 +6853,9 @@ self: super: { "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"; @@ -6845,6 +6890,7 @@ self: super: { "supervisor" = dontDistribute super."supervisor"; "supplemented" = dontDistribute super."supplemented"; "suspend" = dontDistribute super."suspend"; + "svg-tree" = doDistribute super."svg-tree_0_5_1"; "svg2q" = dontDistribute super."svg2q"; "svgcairo" = dontDistribute super."svgcairo"; "svgutils" = dontDistribute super."svgutils"; @@ -6852,6 +6898,7 @@ self: super: { "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"; @@ -6957,6 +7004,7 @@ self: super: { "teams" = dontDistribute super."teams"; "teeth" = dontDistribute super."teeth"; "telegram" = dontDistribute super."telegram"; + "telegram-api" = doDistribute super."telegram-api_0_4_2_0"; "teleport" = dontDistribute super."teleport"; "template-default" = dontDistribute super."template-default"; "template-haskell-util" = dontDistribute super."template-haskell-util"; @@ -7247,6 +7295,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_5"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7296,6 +7345,7 @@ self: super: { "typesafe-endian" = dontDistribute super."typesafe-endian"; "typescript-docs" = dontDistribute super."typescript-docs"; "typical" = dontDistribute super."typical"; + "tz" = doDistribute super."tz_0_1_1_0"; "uAgda" = dontDistribute super."uAgda"; "uacpid" = dontDistribute super."uacpid"; "uber" = dontDistribute super."uber"; @@ -7763,6 +7813,7 @@ self: super: { "yesod-angular" = dontDistribute super."yesod-angular"; "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-hashdb" = doDistribute super."yesod-auth-hashdb_1_5_1"; "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"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index eb10cce23d9f..48e2bae6cbdc 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -32,6 +32,7 @@ self: { homepage = "https://github.com/capsjac/3dmodels"; description = "3D model parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "4Blocks" = callPackage @@ -49,6 +50,7 @@ self: { homepage = "http://lambdacolyte.wordpress.com/2009/08/06/tetris-in-haskell/"; description = "A tetris-like game (works with GHC 6.8.3 and Gtk2hs 0.9.13)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AAI" = callPackage @@ -111,6 +113,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Detect which OS you're running on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-Colour" = callPackage @@ -133,6 +136,7 @@ self: { libraryHaskellDepends = [ array base gtk ]; description = "GTK+ pixel plotting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-HalfInteger" = callPackage @@ -144,6 +148,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Efficient half-integer type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-MiniTest" = callPackage @@ -155,6 +160,7 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "A simple test framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-PPM" = callPackage @@ -188,6 +194,7 @@ self: { libraryHaskellDepends = [ ansi-terminal base ]; description = "Trivial wrapper over ansi-terminal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-VanillaArray" = callPackage @@ -200,6 +207,7 @@ self: { jailbreak = true; description = "Immutable arrays with plain integer indicies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AC-Vector" = callPackage @@ -238,6 +246,7 @@ self: { homepage = "http://alkalisoftware.net"; description = "Essential features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ADPfusion" = callPackage @@ -265,6 +274,7 @@ self: { homepage = "https://github.com/choener/ADPfusion"; description = "Efficient, high-level dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Basics" = callPackage @@ -286,6 +296,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "foundational type classes for approximating exact real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Net" = callPackage @@ -303,6 +314,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "Compositional lazy dataflow networks for exact real number computation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real" = callPackage @@ -321,6 +333,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Double" = callPackage @@ -346,6 +359,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-Real-Interval" = callPackage @@ -364,6 +378,7 @@ self: { homepage = "http://code.google.com/p/aern/"; description = "arbitrary precision real interval arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm" = callPackage @@ -382,6 +397,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "polynomial function enclosures (PFEs) approximating exact real functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AERN-RnToRm-Plot" = callPackage @@ -401,6 +417,7 @@ self: { homepage = "http://www-users.aston.ac.uk/~konecnym/DISCERN"; description = "GL plotting of polynomial function enclosures (PFEs)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AES" = callPackage @@ -444,6 +461,7 @@ self: { homepage = "http://src.seereason.com/haskell-agi"; description = "A library for writing AGI scripts for Asterisk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ALUT" = callPackage @@ -462,6 +480,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding for the OpenAL Utility Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) freealut;}; "AMI" = callPackage @@ -478,6 +497,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/ami"; description = "Low-level bindings for Asterisk Manager Interface (AMI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ANum" = callPackage @@ -597,6 +617,7 @@ self: { homepage = "https://github.com/egonSchiele/actionkid"; description = "An easy-to-use video game framework for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Adaptive" = callPackage @@ -613,6 +634,7 @@ self: { jailbreak = true; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Adaptive-Blaisorblade" = callPackage @@ -626,6 +648,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Library for incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Advgame" = callPackage @@ -640,6 +663,7 @@ self: { jailbreak = true; description = "Lisperati's adventure game in Lisp translated to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AesonBson" = callPackage @@ -658,6 +682,7 @@ self: { homepage = "https://github.com/nh2/AesonBson"; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Agata" = callPackage @@ -674,6 +699,7 @@ self: { jailbreak = true; description = "Generator-generator for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Agda_2_4_2_3" = callPackage @@ -865,6 +891,7 @@ self: { homepage = "http://github.com/lymar/AhoCorasick"; description = "Aho-Corasick string matching algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AlgorithmW" = callPackage @@ -898,6 +925,7 @@ self: { homepage = "https://github.com/choener/AlignmentAlgorithms"; description = "Collection of alignment algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Allure" = callPackage @@ -921,6 +949,7 @@ self: { homepage = "http://allureofthestars.com"; description = "Near-future Sci-Fi roguelike and tactical squad game"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AndroidViewHierarchyImporter" = callPackage @@ -941,6 +970,7 @@ self: { jailbreak = true; description = "Android view hierarchy importer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Animas" = callPackage @@ -953,6 +983,7 @@ self: { homepage = "https://github.com/eamsden/Animas"; description = "Updated version of Yampa: a library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Annotations" = callPackage @@ -965,6 +996,7 @@ self: { testHaskellDepends = [ base mtl multirec parsec ]; description = "Constructing, analyzing and destructing annotated trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Ansi2Html" = callPackage @@ -997,6 +1029,7 @@ self: { executableHaskellDepends = [ base ]; description = "Library for Apple Push Notification Service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AppleScript" = callPackage @@ -1010,6 +1043,7 @@ self: { homepage = "https://github.com/reinerp/haskell-AppleScript"; description = "Call AppleScript from Haskell, and then call back into Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ApproxFun-hs" = callPackage @@ -1035,6 +1069,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/ArrayRef"; description = "Unboxed references, dynamic arrays and more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ArrowVHDL" = callPackage @@ -1048,6 +1083,7 @@ self: { homepage = "https://github.com/frosch03/arrowVHDL"; description = "A library to generate Netlist code from Arrow descriptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AspectAG" = callPackage @@ -1065,6 +1101,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/AspectAG"; description = "Attribute Grammars in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AttoBencode" = callPackage @@ -1087,6 +1124,7 @@ self: { homepage = "http://bitbucket.org/FlorianHartwig/attobencode"; description = "Fast Bencode encoding and parsing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AttoJson" = callPackage @@ -1104,6 +1142,7 @@ self: { homepage = "http://github.com/konn/AttoJSON"; description = "Simple lightweight JSON parser, generator & manipulator based on ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Attrac" = callPackage @@ -1121,6 +1160,7 @@ self: { homepage = "http://patch-tag.com/r/rhz/StrangeAttractors"; description = "Visualisation of Strange Attractors in 3-Dimensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Aurochs" = callPackage @@ -1134,6 +1174,7 @@ self: { executableHaskellDepends = [ base containers parsec pretty ]; description = "Yet another parser generator for C/C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "AutoForms" = callPackage @@ -1150,6 +1191,7 @@ self: { homepage = "http://autoforms.sourceforge.net/"; description = "GUI library based upon generic programming (SYB3)"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "AvlTree" = callPackage @@ -1161,6 +1203,7 @@ self: { libraryHaskellDepends = [ base COrdering ]; description = "Balanced binary trees using the AVL algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BASIC" = callPackage @@ -1172,6 +1215,7 @@ self: { libraryHaskellDepends = [ base containers llvm random timeit ]; description = "Embedded BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BCMtools" = callPackage @@ -1198,6 +1242,7 @@ self: { ]; description = "Big Contact Map Tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BNFC" = callPackage @@ -1240,6 +1285,7 @@ self: { jailbreak = true; description = "Deriving Parsers and Quasi-Quoters from BNF Grammars"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Baggins" = callPackage @@ -1255,6 +1301,7 @@ self: { homepage = "http://pageperso.lif.univ-mrs.fr/~pierre-etienne.meunier/Baggins"; description = "Tools for self-assembly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Bang" = callPackage @@ -1301,6 +1348,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "An ad-hoc P2P chat program"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Befunge93" = callPackage @@ -1316,6 +1364,7 @@ self: { homepage = "http://coder.bsimmons.name/blog/2010/05/befunge-93-interpreter-on-hackage"; description = "An interpreter for the Befunge-93 Programming Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BenchmarkHistory" = callPackage @@ -1363,6 +1412,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/BerkeleyDBXML"; description = "Berkeley DB XML binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) db; dbxml = null; inherit (pkgs) xercesc; inherit (pkgs) xqilla;}; @@ -1391,6 +1441,7 @@ self: { homepage = "http://www.prg.nii.ac.jp/project/bigul/"; description = "The Bidirectional Generic Update Language"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BigPixel" = callPackage @@ -1439,6 +1490,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Base library for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BiobaseBlast" = callPackage @@ -1451,6 +1503,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "BLAST-related tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseDotP" = callPackage @@ -1463,6 +1516,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Vienna / DotBracket / ExtSS parsers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFR3D" = callPackage @@ -1480,6 +1534,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Importer for FR3D resources"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseFasta" = callPackage @@ -1500,6 +1555,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "conduit-based FASTA parser"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BiobaseInfernal" = callPackage @@ -1521,6 +1577,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Infernal data structures and tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseMAF" = callPackage @@ -1533,6 +1590,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Multiple Alignment Format"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseNewick" = callPackage @@ -1578,6 +1636,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "RNA folding training data"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTurner" = callPackage @@ -1596,6 +1655,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Turner RNA parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseTypes" = callPackage @@ -1622,6 +1682,7 @@ self: { homepage = "https://github.com/choener/BiobaseTypes"; description = "Collection of types for bioinformatics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseVienna" = callPackage @@ -1638,6 +1699,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Import Vienna energy parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BiobaseXNA" = callPackage @@ -1663,6 +1725,7 @@ self: { homepage = "https://github.com/choener/BiobaseXNA"; description = "Efficient RNA/DNA representations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BirdPP" = callPackage @@ -1677,6 +1740,7 @@ self: { jailbreak = true; description = "A preprocessor for Bird-style Literate Haskell comments with Haddock markup"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BitSyntax" = callPackage @@ -1703,6 +1767,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A library to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BlastHTTP_1_0_1" = callPackage @@ -1763,6 +1828,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/darcs/Blobs/"; description = "Diagram editor"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately_0_7_1_7" = callPackage @@ -2032,6 +2098,7 @@ self: { homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BlogLiterately-diagrams_0_1_4_3" = callPackage @@ -2120,6 +2187,7 @@ self: { jailbreak = true; description = "Include images in blog posts with inline diagrams code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "BluePrintCSS" = callPackage @@ -2144,6 +2212,7 @@ self: { homepage = "http://github.com/gcross/Blueprint"; description = "Preview of a new build system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Bookshelf" = callPackage @@ -2164,6 +2233,7 @@ self: { homepage = "http://www.cse.chalmers.se/~emax/bookshelf/Manual.shelf.html"; description = "A simple document organizer with some wiki functionality"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Boolean" = callPackage @@ -2204,6 +2274,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bravo"; description = "Static text template generation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "BufferedSocket" = callPackage @@ -2241,6 +2312,7 @@ self: { homepage = "http://github.com/michaelxavier/Buster"; description = "Hits a set of urls periodically to bust caches"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CBOR" = callPackage @@ -2262,6 +2334,7 @@ self: { homepage = "https://github.com/orclev/CBOR"; description = "Encode/Decode values to/from CBOR"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CC-delcont" = callPackage @@ -2291,6 +2364,7 @@ self: { doHaddock = false; description = "Three new monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CC-delcont-cxe" = callPackage @@ -2302,6 +2376,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CC-delcont-exc" = callPackage @@ -2313,6 +2388,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CC-delcont-ref" = callPackage @@ -2324,6 +2400,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CC-delcont-ref-tf" = callPackage @@ -2335,6 +2412,7 @@ self: { libraryHaskellDepends = [ base ref-tf transformers ]; description = "A monad transformers for multi-prompt delimited control using refercence cells"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CCA" = callPackage @@ -2353,6 +2431,7 @@ self: { homepage = "not available"; description = "preprocessor and library for Causal Commutative Arrows (CCA)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CHXHtml" = callPackage @@ -2384,6 +2463,7 @@ self: { homepage = "http://www.zonetora.co.uk/clase/"; description = "Cursor Library for A Structured Editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CLI" = callPackage @@ -2417,6 +2497,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/cmcompare/"; description = "Infernal covariance model comparison"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CMQ" = callPackage @@ -2445,6 +2526,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An algebraic data type similar to Prelude Ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CPBrainfuck" = callPackage @@ -2458,6 +2540,7 @@ self: { executableHaskellDepends = [ base haskell98 ]; description = "A simple Brainfuck interpretter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "CPL" = callPackage @@ -2519,6 +2602,7 @@ self: { jailbreak = true; description = "A CSP-M parser compatible with FDR-2.91"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CSPM-Interpreter" = callPackage @@ -2536,6 +2620,7 @@ self: { jailbreak = true; description = "An interpreter for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CSPM-ToProlog" = callPackage @@ -2552,6 +2637,7 @@ self: { jailbreak = true; description = "some modules specific for the ProB tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CSPM-cspm" = callPackage @@ -2578,6 +2664,7 @@ self: { jailbreak = true; description = "cspm command line tool for analyzing CSPM specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CTRex" = callPackage @@ -2624,6 +2711,7 @@ self: { homepage = "http://aleator.github.com/CV/"; description = "OpenCV based machine vision library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {opencv_calib3d = null; opencv_contrib = null; opencv_core = null; opencv_features2d = null; opencv_flann = null; opencv_gpu = null; opencv_highgui = null; opencv_imgproc = null; @@ -2876,6 +2964,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "A framework for packaging Haskell software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CabalSearch" = callPackage @@ -2895,6 +2984,7 @@ self: { homepage = "http://github.com/brinchj/cabalsearch"; description = "Search cabal packages by name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Capabilities" = callPackage @@ -2908,6 +2998,7 @@ self: { homepage = "https://github.com/Icelandjack/Capabilities"; description = "Separate and contain effects of IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Cardinality" = callPackage @@ -2973,6 +3064,7 @@ self: { homepage = "http://github.com/rampion/Cascade"; description = "Playing with reified categorical composition"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Catana" = callPackage @@ -2984,6 +3076,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "A monad for complex manipulation of a stream"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ChannelT" = callPackage @@ -3337,6 +3430,7 @@ self: { homepage = "https://github.com/timbod7/haskell-chart/wiki"; description = "Diagrams backend for Charts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Chart-gtk" = callPackage @@ -3536,6 +3630,7 @@ self: { homepage = "https://github.com/ckkashyap/Chitra"; description = "A platform independent mechanism to render graphics using vnc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ChristmasTree" = callPackage @@ -3553,6 +3648,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Center/TTTAS"; description = "Alternative approach of 'read' that composes grammars instead of parsers"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CirruParser" = callPackage @@ -3578,6 +3674,7 @@ self: { homepage = "http://wiki.portal.chalmers.se/cse/pmwiki.php/FP/ClassLaws"; description = "Stating and checking laws for type class methods"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ClassyPrelude" = callPackage @@ -3589,6 +3686,7 @@ self: { libraryHaskellDepends = [ base strict ]; description = "Prelude replacement using classes instead of concrete types where reasonable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Clean" = callPackage @@ -3601,21 +3699,22 @@ self: { jailbreak = true; description = "A light, clean and powerful utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Clipboard" = callPackage - ({ mkDerivation, base }: + ({ mkDerivation, base, directory, unix, utf8-string, X11 }: mkDerivation { pname = "Clipboard"; - version = "2.2.0.3"; - sha256 = "e3639d09e39048b03be957492a5a55877ec1ee30900102c83682f0e7ee73ec62"; - libraryHaskellDepends = [ base ]; + version = "2.3.0.1"; + sha256 = "f559fa28d98f98355b6478b583f8f111e00573fd5b70111ad6ca11c12388ee1c"; + libraryHaskellDepends = [ base directory unix utf8-string X11 ]; homepage = "http://haskell.org/haskellwiki/Clipboard"; description = "System clipboard interface"; license = stdenv.lib.licenses.bsd3; }) {}; - "ClustalParser" = callPackage + "ClustalParser_1_1_3" = callPackage ({ mkDerivation, base, cmdargs, either-unwrap, hspec, parsec , vector }: @@ -3630,9 +3729,10 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing Clustal tools output"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ClustalParser_1_1_4" = callPackage + "ClustalParser" = callPackage ({ mkDerivation, base, cmdargs, either-unwrap, hspec, parsec , vector }: @@ -3647,7 +3747,6 @@ self: { testHaskellDepends = [ base hspec parsec ]; description = "Libary for parsing Clustal tools output"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coadjute" = callPackage @@ -3667,6 +3766,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/coadjute/"; description = "A generic build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Codec-Compression-LZF" = callPackage @@ -3691,6 +3791,7 @@ self: { librarySystemDepends = [ libdevil ]; description = "An FFI interface to the DevIL library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libdevil;}; "Combinatorrent" = callPackage @@ -3715,6 +3816,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Command" = callPackage @@ -3751,6 +3853,7 @@ self: { homepage = "https://github.com/sordina/Commando"; description = "Watch some files; Rerun a command"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ComonadSheet" = callPackage @@ -3790,6 +3893,7 @@ self: { homepage = "http://alkalisoftware.net"; description = "Concurrent utilities"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Concurrential" = callPackage @@ -3826,6 +3930,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ConfigFile" = callPackage @@ -3853,6 +3958,7 @@ self: { ]; description = "Template haskell for reading ConfigFiles"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Configger" = callPackage @@ -3864,6 +3970,7 @@ self: { libraryHaskellDepends = [ base Dangerous MissingH mtl parsec ]; description = "Parse config files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Configurable" = callPackage @@ -3916,6 +4023,7 @@ self: { jailbreak = true; description = "Repackages standard type classes with the ConstraintKinds extension"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Consumer" = callPackage @@ -3928,6 +4036,7 @@ self: { homepage = "http://src.seereason.com/ghc6103/haskell-consumer"; description = "A monad and monad transformer for consuming streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ContArrow" = callPackage @@ -3964,6 +4073,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/~oc/contracts.html"; description = "Practical typed lazy contracts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Control-Engine" = callPackage @@ -3997,6 +4107,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-MultiPass"; description = "A Library for Writing Multi-Pass Algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Control-Monad-ST2" = callPackage @@ -4015,6 +4126,7 @@ self: { homepage = "https://github.com/kevinbackhouse/Control-Monad-ST2"; description = "A variation on the ST monad with two type parameters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CoreDump" = callPackage @@ -4027,6 +4139,7 @@ self: { jailbreak = true; description = "A GHC plugin for printing GHC's internal Core data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CoreErlang" = callPackage @@ -4060,6 +4173,7 @@ self: { homepage = "https://github.com/reinerp/CoreFoundation"; description = "Bindings to Mac OSX's CoreFoundation framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Coroutine" = callPackage @@ -4071,6 +4185,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Type-safe coroutines using lightweight session types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "CouchDB" = callPackage @@ -4092,6 +4207,7 @@ self: { homepage = "http://github.com/hsenag/haskell-couchdb/"; description = "CouchDB interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Craft3e" = callPackage @@ -4110,6 +4226,7 @@ self: { homepage = "http://www.haskellcraft.com/"; description = "Code for Haskell: the Craft of Functional Programming, 3rd ed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Crypto" = callPackage @@ -4158,6 +4275,7 @@ self: { ]; description = "CurryDB: In-memory Key/Value Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DAG-Tournament" = callPackage @@ -4175,6 +4293,7 @@ self: { ]; description = "Real-Time Game Tournament Evaluator"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DAV_1_0_3" = callPackage @@ -4324,6 +4443,7 @@ self: { homepage = "https://github.com/alexkay/hdbus"; description = "D-Bus bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DCFL" = callPackage @@ -4358,6 +4478,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/d-mucheck"; description = "Distributed Mutation Analysis framework for MuCheck"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DOM" = callPackage @@ -4370,6 +4491,7 @@ self: { jailbreak = true; description = "DOM Level 2 bindings for the WebBits package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DP" = callPackage @@ -4387,6 +4509,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Pragmatic framework for dynamic programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DPM" = callPackage @@ -4411,6 +4534,7 @@ self: { jailbreak = true; description = "Darcs Patch Manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DRBG_0_5_4" = callPackage @@ -4514,6 +4638,7 @@ self: { ]; description = "Database Supported Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DSTM" = callPackage @@ -4534,6 +4659,7 @@ self: { ]; description = "A framework for using STM within distributed systems"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DTC" = callPackage @@ -4546,6 +4672,7 @@ self: { homepage = "https://github.com/Daniel-Diaz/DTC"; description = "Data To Class transformation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Dangerous" = callPackage @@ -4557,6 +4684,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Monads for operations that can exit early and produce warnings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dao" = callPackage @@ -4587,6 +4715,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DarcsHelpers" = callPackage @@ -4599,6 +4728,7 @@ self: { jailbreak = true; description = "Code used by Patch-Shack that seemed sensible to open for reusability"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Data-Hash-Consistent" = callPackage @@ -4626,6 +4756,7 @@ self: { libraryHaskellDepends = [ base bytestring unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DataTreeView" = callPackage @@ -4643,6 +4774,7 @@ self: { ]; description = "A GTK widget for displaying arbitrary Data.Data.Data instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Deadpan-DDP" = callPackage @@ -4713,6 +4845,7 @@ self: { homepage = "http://page.mi.fu-berlin.de/~aneumann/decisiontree.html"; description = "A very simple implementation of decision trees for discrete attributes"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DeepArrow" = callPackage @@ -4744,6 +4877,26 @@ self: { homepage = "http://github.com/yairchu/defend/tree"; description = "A simple RTS game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Delta-Lambda" = callPackage + ({ mkDerivation, base, bytestring, cereal, cpphs, filepath + , haskeline, megaparsec, mtl, options, parallel, text, wl-pprint + }: + mkDerivation { + pname = "Delta-Lambda"; + version = "0.1.0.0"; + sha256 = "461c514ead6bb39501bd54dd0b5005d27dfefded510d3c803906414d67318535"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cereal cpphs filepath haskeline megaparsec mtl + options parallel text wl-pprint + ]; + jailbreak = true; + description = "A demonstration interpreter for type system delta-lambda (of N.G. De-bruijn)"; + license = stdenv.lib.licenses.mit; }) {}; "DescriptiveKeys" = callPackage @@ -4772,6 +4925,7 @@ self: { ]; description = "Processing Real-time event streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Diff_0_3_0" = callPackage @@ -4846,6 +5000,7 @@ self: { homepage = "https://github.com/dillonhuff/DifferenceLogic"; description = "A theory solver for conjunctions of literals in difference logic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DifferentialEvolution" = callPackage @@ -4863,6 +5018,7 @@ self: { homepage = "http://yousource.it.jyu.fi/optimization-with-haskell"; description = "Global optimization using Differential Evolution"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Digit" = callPackage @@ -4899,6 +5055,7 @@ self: { jailbreak = true; description = "A client library for the DigitalOcean API"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DimensionalHash" = callPackage @@ -4910,6 +5067,7 @@ self: { libraryHaskellDepends = [ base ]; description = "An n-dimensional hash using Morton numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DirectSound" = callPackage @@ -4944,6 +5102,7 @@ self: { homepage = "http://distract.wellquite.org/"; description = "Distributed Bug Tracking System"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DiscussionSupportSystem" = callPackage @@ -5047,6 +5206,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Frameshift-aware alignment of protein sequences with DNA sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DocTest" = callPackage @@ -5066,6 +5226,7 @@ self: { homepage = "http://haskell.org/haskellwiki/DocTest"; description = "Test interactive Haskell examples"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Docs" = callPackage @@ -5098,6 +5259,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/DrHylo"; description = "A tool for deriving hylomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DrIFT" = callPackage @@ -5115,6 +5277,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DrIFT-cabalized" = callPackage @@ -5129,6 +5292,7 @@ self: { homepage = "http://repetae.net/computer/haskell/DrIFT/"; description = "Program to derive type class instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Dung" = callPackage @@ -5168,6 +5332,7 @@ self: { ]; description = "Polymorphic protocol engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-crypto" = callPackage @@ -5194,6 +5359,7 @@ self: { ]; description = "Cryptographic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "Dust-tools" = callPackage @@ -5218,6 +5384,7 @@ self: { ]; description = "Network filtering exploration tools"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Dust-tools-pcap" = callPackage @@ -5239,6 +5406,7 @@ self: { ]; description = "Network filtering exploration tools that rely on pcap"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "DynamicTimeWarp" = callPackage @@ -5258,6 +5426,7 @@ self: { homepage = "https://github.com/zombiecalypse/DynamicTimeWarp"; description = "Dynamic time warping of sequences"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DysFRP" = callPackage @@ -5284,6 +5453,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "DysFRP-Craftwerk" = callPackage @@ -5301,6 +5471,7 @@ self: { homepage = "https://github.com/tilk/DysFRP"; description = "dysFunctional Reactive Programming on Craftwerk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "EEConfig" = callPackage @@ -5312,6 +5483,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "ExtremlyEasyConfig - Extremly Simple parser for config files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Earley_0_9_0" = callPackage @@ -5434,6 +5606,7 @@ self: { homepage = "http://github.com/bspaans/EditTimeReport"; description = "Query language and report generator for edit logs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EitherT" = callPackage @@ -5452,6 +5625,7 @@ self: { jailbreak = true; description = "EitherT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Elm" = callPackage @@ -5509,6 +5683,7 @@ self: { homepage = "http://www.muitovar.com"; description = "derives heuristic rules from nominal data"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Encode" = callPackage @@ -5566,6 +5741,7 @@ self: { jailbreak = true; description = "More general IntMap replacement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Eq" = callPackage @@ -5585,6 +5761,7 @@ self: { jailbreak = true; description = "Render math formula in ASCII, and perform some simplifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "EqualitySolver" = callPackage @@ -5620,6 +5797,7 @@ self: { homepage = "http://cielonegro.org/EsounD.html"; description = "Type-safe bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "EstProgress" = callPackage @@ -5657,6 +5835,7 @@ self: { homepage = "http://verement.github.io/etamoo"; description = "A new implementation of the LambdaMOO server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) pcre;}; "Etage" = callPackage @@ -5673,6 +5852,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A general data-flow framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Etage-Graph" = callPackage @@ -5693,6 +5873,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "Data-flow based graph algorithms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Eternal10Seconds" = callPackage @@ -5707,6 +5888,7 @@ self: { homepage = "http://www.kryozahiro.org/eternal10/"; description = "A 2-D shooting game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Etherbunny" = callPackage @@ -5729,6 +5911,7 @@ self: { homepage = "http://etherbunny.anytini.com/"; description = "A network analysis toolkit for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libpcap;}; "EuroIT" = callPackage @@ -5760,6 +5943,7 @@ self: { homepage = "http://www.euterpea.com"; description = "Library for computer music research and education"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "EventSocket" = callPackage @@ -5775,6 +5959,7 @@ self: { ]; description = "Interfaces with FreeSwitch Event Socket"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Extra" = callPackage @@ -5795,6 +5980,7 @@ self: { homepage = "https://github.com/ddssff/haskell-extra"; description = "A grab bag of modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FComp" = callPackage @@ -5821,6 +6007,7 @@ self: { jailbreak = true; description = "Compose music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FM-SBLEX" = callPackage @@ -5835,6 +6022,7 @@ self: { homepage = "http://spraakbanken.gu.se/eng/research/swefn/fm-sblex"; description = "A set of computational morphology tools for Swedish diachronic lexicons"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FModExRaw" = callPackage @@ -5848,6 +6036,7 @@ self: { homepage = "https://github.com/skypers/hsFModEx"; description = "The Haskell FModEx raw API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {fmodex64 = null;}; "FPretty" = callPackage @@ -5888,6 +6077,7 @@ self: { librarySystemDepends = [ ftgl ]; description = "Portable TrueType font rendering for OpenGL using the Freetype2 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ftgl;}; "FTPLine" = callPackage @@ -5933,6 +6123,7 @@ self: { libraryHaskellDepends = [ base base-unicode-symbols mmtl ]; description = "Failure Monad Transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FastxPipe" = callPackage @@ -6013,6 +6204,7 @@ self: { homepage = "http://www.scannedinavian.com/"; description = "Annotate ps and pdf documents"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FerryCore" = callPackage @@ -6029,6 +6221,7 @@ self: { ]; description = "Ferry Core Components"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Feval" = callPackage @@ -6061,6 +6254,7 @@ self: { homepage = "http://haskell.org/haskellwiki/FieldTrip"; description = "Functional 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileManip" = callPackage @@ -6076,6 +6270,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FileManipCompat" = callPackage @@ -6091,6 +6286,7 @@ self: { ]; description = "Expressive file and directory manipulation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FilePather" = callPackage @@ -6108,6 +6304,7 @@ self: { homepage = "https://github.com/tonymorris/filepather"; description = "Functions on System.FilePath"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FileSystem" = callPackage @@ -6125,6 +6322,7 @@ self: { homepage = "http://ddiaz.asofilak.es/packages/FileSystem"; description = "File system data structure and monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Finance-Quote-Yahoo" = callPackage @@ -6141,6 +6339,7 @@ self: { homepage = "http://www.b7j0c.org/stuff/haskell-yquote.xhtml"; description = "Obtain quote data from finance.yahoo.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Finance-Treasury" = callPackage @@ -6158,6 +6357,7 @@ self: { homepage = "http://www.ecoin.net/haskell/Finance-Treasury.html"; description = "Obtain Treasury yield curve data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FindBin" = callPackage @@ -6181,6 +6381,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "A finite map implementation, derived from the paper: Efficient sets: a balancing act, S. Adams, Journal of functional programming 3(4) Oct 1993, pp553-562"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FirstOrderTheory" = callPackage @@ -6193,6 +6394,7 @@ self: { jailbreak = true; description = "Grammar and typeclass for first order theories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FixedPoint-simple" = callPackage @@ -6223,6 +6425,7 @@ self: { homepage = "http://www.flippac.org/projects/flippi/"; description = "Wiki"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Focus" = callPackage @@ -6392,6 +6595,7 @@ self: { homepage = "http://www.ict.kth.se/forsyde/"; description = "ForSyDe's Haskell-embedded Domain Specific Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ForestStructures" = callPackage @@ -6450,6 +6654,7 @@ self: { homepage = "https://github.com/choener/FormalGrammars"; description = "(Context-free) grammars in formal language theory"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Foster" = callPackage @@ -6468,6 +6673,7 @@ self: { jailbreak = true; description = "Utilities to generate and solve puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FpMLv53" = callPackage @@ -6517,6 +6723,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Frames_0_1_2_1" = callPackage @@ -6569,6 +6776,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/Frank/"; description = "An experimental programming language with typed algebraic effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "FreeTypeGL" = callPackage @@ -6583,6 +6791,7 @@ self: { jailbreak = true; description = "Loadable texture fonts for OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "FunGEn" = callPackage @@ -6674,6 +6883,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW"; description = "A Haskell binding for GLFW"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa;}; "GLFW-OGL" = callPackage @@ -6687,6 +6897,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GLFW-OGL"; description = "A binding for GLFW (OGL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXrandr;}; "GLFW-b_1_4_7_3" = callPackage @@ -6757,6 +6968,7 @@ self: { homepage = "http://github.com/ninegua/GLFW-task"; description = "GLFW utility functions to use together with monad-task"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GLHUI" = callPackage @@ -6811,6 +7023,7 @@ self: { homepage = "https://github.com/fiendfan1/GLMatrix"; description = "Utilities for working with OpenGL matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GLURaw_1_4_0_1" = callPackage @@ -7084,6 +7297,7 @@ self: { ]; description = "Miscellaneous OpenGL utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GPX" = callPackage @@ -7102,6 +7316,7 @@ self: { homepage = "https://github.com/tonymorris/geo-gpx"; description = "Parse GPX files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe_2_1_5" = callPackage @@ -7173,6 +7388,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe meshes from Collada files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GPipe-Examples" = callPackage @@ -7190,6 +7406,7 @@ self: { ]; description = "Examples for the GPipes package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GPipe-GLFW_1_2_1" = callPackage @@ -7229,6 +7446,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GPipe"; description = "Load GPipe textures from filesystem"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GTALib" = callPackage @@ -7249,6 +7467,7 @@ self: { homepage = "https://bitbucket.org/emoto/gtalib"; description = "A library for GTA programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Gamgine" = callPackage @@ -7269,6 +7488,7 @@ self: { jailbreak = true; description = "Some kind of game library or set of utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Ganymede" = callPackage @@ -7288,6 +7508,7 @@ self: { homepage = "https://github.com/BMeph/Ganymede"; description = "An Io interpreter in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GaussQuadIntegration" = callPackage @@ -7315,6 +7536,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GeBoP"; description = "Several games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "GenI" = callPackage @@ -7349,6 +7571,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GenSmsPdu" = callPackage @@ -7362,6 +7585,7 @@ self: { executableHaskellDepends = [ base haskell98 QuickCheck random ]; description = "Automatic SMS message generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Genbank" = callPackage @@ -7395,6 +7619,7 @@ self: { homepage = "http://afonso.xyz"; description = "A general TicTacToe game implementation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GenericPretty" = callPackage @@ -7436,6 +7661,7 @@ self: { homepage = "https://github.com/choener/GenussFold"; description = "MCFGs for Genus-1 RNA Pseudoknots"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GeoIp" = callPackage @@ -7447,6 +7673,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap syb ]; description = "Pure bindings for the MaxMind IP database"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GeocoderOpenCage" = callPackage @@ -7460,6 +7687,7 @@ self: { homepage = "https://github.com/juergenhah/Haskell-Geocoder-OpenCage.git"; description = "Geocoder and Reverse Geocoding Service Wrapper"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Geodetic" = callPackage @@ -7494,6 +7722,7 @@ self: { libraryHaskellDepends = [ base GeomPredicates ]; description = "Geometric predicates (Intel SSE)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GiST" = callPackage @@ -7525,6 +7754,7 @@ self: { homepage = "https://github.com/lettier/gifcurry"; description = "Create animated GIFs, overlaid with optional text, from video files"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GiveYouAHead" = callPackage @@ -7567,6 +7797,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Ray Tracing Library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GlomeVec" = callPackage @@ -7580,6 +7811,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Glome"; description = "Simple 3D vector library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) llvm;}; "GlomeView" = callPackage @@ -7598,6 +7830,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "SDL Frontend for Glome ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleChart" = callPackage @@ -7626,6 +7859,7 @@ self: { homepage = "https://github.com/favilo/GoogleDirections.git"; description = "Haskell Interface to Google Directions API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GoogleSB" = callPackage @@ -7641,6 +7875,7 @@ self: { ]; description = "Interface to Google Safe Browsing API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GoogleSuggest" = callPackage @@ -7668,6 +7903,7 @@ self: { ]; description = "Interface to Google Translate API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GotoT-transformers" = callPackage @@ -7704,6 +7940,7 @@ self: { homepage = "https://github.com/choener/GrammarProducts"; description = "Grammar products and higher-dimensional grammars"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Graph500" = callPackage @@ -7722,6 +7959,7 @@ self: { executableHaskellDepends = [ array base mtl ]; description = "Graph500 benchmark-related definitions and data set generator"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer" = callPackage @@ -7736,6 +7974,7 @@ self: { ]; description = "GraphHammer Haskell graph analyses framework inspired by STINGER"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphHammer-examples" = callPackage @@ -7753,6 +7992,7 @@ self: { ]; description = "Test harness for TriangleCount analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GraphSCC" = callPackage @@ -7782,6 +8022,7 @@ self: { jailbreak = true; description = "Graph-Theoretic Analysis library"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Grempa" = callPackage @@ -7797,6 +8038,7 @@ self: { ]; description = "Embedded grammar DSL and LALR parser generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GroteTrap" = callPackage @@ -7833,6 +8075,7 @@ self: { homepage = "http://coiffier.net/projects/grow.html"; description = "A declarative make-like interpreter"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GrowlNotify" = callPackage @@ -7853,6 +8096,7 @@ self: { ]; description = "Notification utility for Growl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Gtk2hsGenerics" = callPackage @@ -7868,6 +8112,7 @@ self: { ]; description = "Convenience functions to extend Gtk2hs"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GtkGLTV" = callPackage @@ -7883,6 +8128,7 @@ self: { ]; description = "OpenGL support for Gtk-based GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "GtkTV" = callPackage @@ -7916,6 +8162,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/guihaskell/"; description = "A graphical REPL and development environment for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "GuiTV" = callPackage @@ -7928,6 +8175,7 @@ self: { homepage = "http://haskell.org/haskellwiki/GuiTV"; description = "GUIs for Tangible Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "H" = callPackage @@ -7952,6 +8200,7 @@ self: { doCheck = false; description = "The Haskell/R mixed programming environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {}; "HARM" = callPackage @@ -7967,6 +8216,7 @@ self: { homepage = "http://www.engr.uconn.edu/~jeffm/Classes/CSE240-Spring-2001/Lectures/index.html"; description = "A simple ARM emulator in haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HAppS-Data" = callPackage @@ -7984,6 +8234,7 @@ self: { jailbreak = true; description = "HAppS data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-IxSet" = callPackage @@ -7999,6 +8250,7 @@ self: { syb-with-class template-haskell ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Server" = callPackage @@ -8020,6 +8272,7 @@ self: { jailbreak = true; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-State" = callPackage @@ -8040,6 +8293,7 @@ self: { jailbreak = true; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HAppS-Util" = callPackage @@ -8056,6 +8310,7 @@ self: { ]; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HAppSHelpers" = callPackage @@ -8085,6 +8340,7 @@ self: { homepage = "http://github.com/m4dc4p/hcl/tree/master"; description = "High-level library for building command line interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HCard" = callPackage @@ -8099,6 +8355,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/HCard"; description = "A library for implementing a Deck of Cards"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HCodecs" = callPackage @@ -8134,6 +8391,7 @@ self: { homepage = "https://github.com/hdbc/hdbc"; description = "Haskell Database Connectivity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HDBC-mysql" = callPackage @@ -8146,6 +8404,7 @@ self: { homepage = "http://github.com/bos/hdbc-mysql"; description = "MySQL driver for HDBC"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HDBC-odbc" = callPackage @@ -8165,6 +8424,7 @@ self: { homepage = "https://github.com/hdbc/hdbc-odbc"; description = "ODBC driver for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) unixODBC;}; "HDBC-postgresql" = callPackage @@ -8187,6 +8447,7 @@ self: { homepage = "http://github.com/hdbc/hdbc-postgresql"; description = "PostgreSQL driver for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) postgresql;}; "HDBC-postgresql-hstore" = callPackage @@ -8200,6 +8461,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/hdbc-postgresql-hstore"; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HDBC-session" = callPackage @@ -8212,6 +8474,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Bracketed connection for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HDBC-sqlite3" = callPackage @@ -8229,6 +8492,7 @@ self: { homepage = "https://github.com/hdbc/hdbc-sqlite3"; description = "Sqlite v3 driver for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) sqlite;}; "HDRUtils" = callPackage @@ -8245,6 +8509,7 @@ self: { homepage = "http://vis.renci.org/jeff/pfs"; description = "Utilities for reading, manipulating, and writing HDR images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pfstools;}; "HERA" = callPackage @@ -8256,6 +8521,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ mpfr ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mpfr;}; "HFrequencyQueue" = callPackage @@ -8269,6 +8535,7 @@ self: { homepage = "https://github.com/Bellaz/HfrequencyList"; description = "A Queue with a random (weighted) pick function"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HFuse" = callPackage @@ -8316,6 +8583,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-API" = callPackage @@ -8334,6 +8602,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - API"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HGamer3D-Audio" = callPackage @@ -8350,6 +8619,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Audio Functionality"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Bullet-Binding" = callPackage @@ -8362,6 +8632,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windows Game Engine for the Haskell Programmer - Bullet Bindings"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-CAudio-Binding" = callPackage @@ -8377,6 +8648,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - cAudio Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DCAudio015 = null;}; "HGamer3D-CEGUI-Binding" = callPackage @@ -8394,6 +8666,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "A Toolset for the Haskell Game Programmer - CEGUI Bindings"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {CEGUIBase = null; CEGUIOgreRenderer = null; hg3dcegui050 = null;}; @@ -8412,6 +8685,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Game Engine and Utilities"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Data" = callPackage @@ -8428,6 +8702,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - Data Definitions"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Enet-Binding" = callPackage @@ -8441,6 +8716,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Enet Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) enet; hg3denet050 = null;}; "HGamer3D-GUI" = callPackage @@ -8458,6 +8734,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "GUI Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Graphics3D" = callPackage @@ -8478,6 +8755,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Toolset for the Haskell Game Programmer - 3D Graphics Functionality"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-InputSystem" = callPackage @@ -8495,6 +8773,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Joystick, Mouse and Keyboard Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Network" = callPackage @@ -8511,6 +8790,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Networking Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-OIS-Binding" = callPackage @@ -8529,6 +8809,7 @@ self: { homepage = "http://www.althainz.de/HGamer3D.html"; description = "Library to enable 3D game development for Haskell - OIS Bindings"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {HGamer3DOIS015 = null;}; "HGamer3D-Ogre-Binding" = callPackage @@ -8548,6 +8829,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Ogre Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OgreMain = null; OgrePaging = null; OgreProperty = null; OgreRTShaderSystem = null; OgreTerrain = null; hg3dogre050 = null;}; @@ -8567,6 +8849,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SDL2 Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL2; hg3dsdl2050 = null; inherit (pkgs.xorg) libX11;}; @@ -8585,6 +8868,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "SFML Binding for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {hg3dsfml050 = null; sfml-audio = null; sfml-network = null; sfml-system = null; sfml-window = null;}; @@ -8602,6 +8886,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Windowing and Event Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGamer3D-Wire" = callPackage @@ -8621,6 +8906,7 @@ self: { homepage = "http://www.hgamer3d.org"; description = "Wire Functionality for HGamer3D"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HGraphStorage" = callPackage @@ -8646,6 +8932,7 @@ self: { homepage = "https://github.com/JPMoresmau/HGraphStorage"; description = "Graph database stored on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HHDL" = callPackage @@ -8659,6 +8946,7 @@ self: { homepage = "http://thesz.mskhug.ru/svn/hhdl/hackage/hhdl/"; description = "Hardware Description Language embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HJScript" = callPackage @@ -8671,6 +8959,7 @@ self: { homepage = "http://patch-tag.com/r/nibro/hjscript"; description = "HJScript is a Haskell EDSL for writing JavaScript programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HJVM" = callPackage @@ -8694,6 +8983,7 @@ self: { homepage = "https://github.com/JPMoresmau/HJVM"; description = "A library to create a Java Virtual Machine and manipulate Java objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {jvm = null;}; "HJavaScript" = callPackage @@ -8705,6 +8995,7 @@ self: { libraryHaskellDepends = [ base pretty ]; description = "HJavaScript is an abstract syntax for a typed subset of JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLearn-algebra" = callPackage @@ -8726,6 +9017,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Algebraic foundation for homomorphic learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLearn-approximation" = callPackage @@ -8744,6 +9036,7 @@ self: { HLearn-datastructures HLearn-distributions list-extras vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLearn-classification" = callPackage @@ -8768,6 +9061,7 @@ self: { jailbreak = true; homepage = "http://github.com/mikeizbicki/HLearn/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLearn-datastructures" = callPackage @@ -8783,6 +9077,7 @@ self: { MonadRandom QuickCheck vector ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLearn-distributions" = callPackage @@ -8807,6 +9102,7 @@ self: { homepage = "http://github.com/mikeizbicki/HLearn/"; description = "Distributions for use with the HLearn library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HList_0_4_1_0" = callPackage @@ -8853,6 +9149,7 @@ self: { doCheck = false; description = "Heterogeneous lists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HListPP" = callPackage @@ -8870,6 +9167,7 @@ self: { homepage = "http://code.haskell.org/~aavogt/HListPP"; description = "A preprocessor for HList labelable labels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HLogger" = callPackage @@ -8886,6 +9184,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HMM" = callPackage @@ -8897,6 +9196,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HMap" = callPackage @@ -8913,6 +9213,7 @@ self: { homepage = "https://github.com/atzeus/HMap"; description = "Fast heterogeneous maps and unconstrained typeable like functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HNM" = callPackage @@ -8935,6 +9236,7 @@ self: { homepage = "http://sert.homedns.org/hs/hnm/"; description = "Happy Network Manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HODE" = callPackage @@ -8947,6 +9249,7 @@ self: { librarySystemDepends = [ ode ]; description = "Binding to libODE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ode;}; "HOpenCV" = callPackage @@ -9005,6 +9308,7 @@ self: { homepage = "http://github.com/solidsnack/HPath"; description = "Extract Haskell declarations by name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HPi" = callPackage @@ -9018,6 +9322,7 @@ self: { homepage = "https://github.com/WJWH/HPi"; description = "GPIO, I2C and SPI functions for the Raspberry Pi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {bcm2835 = null;}; "HPlot" = callPackage @@ -9037,6 +9342,7 @@ self: { homepage = "http://yakov.cc/HPlot.html"; description = "A minimal monadic PLplot interface for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {plplotd-gnome2 = null;}; "HPong" = callPackage @@ -9055,6 +9361,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/04/23/hpong-012/"; description = "A simple OpenGL Pong game based on GLFW"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT" = callPackage @@ -9074,6 +9381,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT RooFit modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-core" = callPackage @@ -9086,6 +9394,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Core modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-graf" = callPackage @@ -9100,6 +9409,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Graf modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-hist" = callPackage @@ -9112,6 +9422,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Hist modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-io" = callPackage @@ -9124,6 +9435,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT IO modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HROOT-math" = callPackage @@ -9136,6 +9448,7 @@ self: { homepage = "http://ianwookim.org/HROOT"; description = "Haskell binding to ROOT Math modules"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HRay" = callPackage @@ -9150,6 +9463,7 @@ self: { homepage = "http://boegel.kejo.be/ELIS/Haskell/HRay/"; description = "Haskell raytracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSFFIG" = callPackage @@ -9172,6 +9486,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HSFFIG"; description = "Generate FFI import declarations from C include files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSGEP" = callPackage @@ -9191,6 +9506,7 @@ self: { homepage = "http://github.com/mjsottile/hsgep/"; description = "Gene Expression Programming evolutionary algorithm in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HSH" = callPackage @@ -9211,6 +9527,7 @@ self: { homepage = "http://software.complete.org/hsh"; description = "Library to mix shell scripting with Haskell programs"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSHHelpers" = callPackage @@ -9229,6 +9546,7 @@ self: { jailbreak = true; description = "Convenience functions that use HSH, instances for HSH"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSet" = callPackage @@ -9271,6 +9589,7 @@ self: { homepage = "https://github.com/agrafix/HSmarty"; description = "Small template engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HSoundFile" = callPackage @@ -9287,6 +9606,7 @@ self: { homepage = "http://mml.music.utexas.edu/jwlato/HSoundFile"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HStringTemplate_0_7_3" = callPackage @@ -9365,6 +9685,7 @@ self: { homepage = "http://patch-tag.com/tphyahoo/r/tphyahoo/HStringTemplateHelpers"; description = "Convenience functions and instances for HStringTemplate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HSvm" = callPackage @@ -9376,6 +9697,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Haskell Bindings for libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HTF_0_12_2_3" = callPackage @@ -9755,6 +10077,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HTicTacToe" = callPackage @@ -9772,6 +10095,7 @@ self: { homepage = "http://github.com/snkkid/HTicTacToe"; description = "An SDL tic-tac-toe game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HUnit_1_2_5_2" = callPackage @@ -9843,6 +10167,7 @@ self: { homepage = "https://github.com/dag/HUnit-Diff"; description = "Assertions for HUnit with difference reporting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HUnit-Plus" = callPackage @@ -9864,6 +10189,7 @@ self: { homepage = "https://github.com/emc2/HUnit-Plus"; description = "A test framework building on HUnit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HUnit-approx" = callPackage @@ -9905,6 +10231,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hxmpp/"; description = "A (prototyped) easy to use XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HXQ" = callPackage @@ -9922,6 +10249,7 @@ self: { homepage = "http://lambda.uta.edu/HXQ/"; description = "A Compiler from XQuery to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaLeX" = callPackage @@ -9936,6 +10264,7 @@ self: { homepage = "http://www.di.uminho.pt/~jas/Research/HaLeX/HaLeX.html"; description = "HaLeX enables modelling, manipulation and animation of regular languages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaMinitel" = callPackage @@ -9962,6 +10291,7 @@ self: { homepage = "https://github.com/sakana/HaPy"; description = "Haskell bindings for Python"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaRe_0_8_2_1" = callPackage @@ -10096,6 +10426,7 @@ self: { homepage = "https://github.com/RefactoringTools/HaRe/wiki"; description = "the Haskell Refactorer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaTeX_3_15_0_0" = callPackage @@ -10190,7 +10521,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "HaTeX" = callPackage + "HaTeX_3_17_0_1" = callPackage ({ mkDerivation, base, bytestring, containers, matrix, parsec , QuickCheck, tasty, tasty-quickcheck, text, transformers , wl-pprint-extras @@ -10209,6 +10540,28 @@ self: { homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; description = "The Haskell LaTeX library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "HaTeX" = callPackage + ({ mkDerivation, base, bytestring, containers, matrix, parsec + , QuickCheck, tasty, tasty-quickcheck, text, transformers + , wl-pprint-extras + }: + mkDerivation { + pname = "HaTeX"; + version = "3.17.0.2"; + sha256 = "3f5aced48ee59425e3ccaa2b6c4490f43b395fe9331b3be4a277261ac45e80fe"; + libraryHaskellDepends = [ + base bytestring containers matrix parsec QuickCheck text + transformers wl-pprint-extras + ]; + testHaskellDepends = [ + base QuickCheck tasty tasty-quickcheck text + ]; + homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; + description = "The Haskell LaTeX library"; + license = stdenv.lib.licenses.bsd3; }) {}; "HaTeX-meta" = callPackage @@ -10228,6 +10581,7 @@ self: { jailbreak = true; description = "This package is deprecated. From version 3, HaTeX does not need this anymore."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaTeX-qq" = callPackage @@ -10265,6 +10619,7 @@ self: { jailbreak = true; description = "An implementation of the Version Space Algebra learning framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaXml_1_24_1" = callPackage @@ -10364,6 +10719,7 @@ self: { homepage = "http://github.com/dmalikov/HaCh"; description = "Simple chat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HackMail" = callPackage @@ -10385,6 +10741,7 @@ self: { homepage = "http://patch-tag.com/publicrepos/Hackmail"; description = "A Procmail Replacement as Haskell EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haggressive" = callPackage @@ -10403,6 +10760,7 @@ self: { homepage = "https://github.com/Pold87/Haggressive"; description = "Aggression analysis for Tweets on Twitter"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HandlerSocketClient" = callPackage @@ -10503,6 +10861,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/HarmTrace"; description = "Harmony Analysis and Retrieval of Music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HarmTrace-Base" = callPackage @@ -10523,6 +10882,7 @@ self: { homepage = "https://bitbucket.org/bash/harmtrace-base"; description = "Parsing and unambiguously representing musical chords"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HasGP" = callPackage @@ -10540,6 +10900,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~sbh11/HasGP"; description = "A Haskell library for inference using Gaussian processes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Haschoo" = callPackage @@ -10559,6 +10920,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/misc-projects.html#haschoo"; description = "Minimalist R5RS Scheme interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hashell" = callPackage @@ -10578,6 +10940,7 @@ self: { jailbreak = true; description = "Simple shell written in Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskRel" = callPackage @@ -10594,6 +10957,7 @@ self: { jailbreak = true; description = "HaskRel, Haskell as a DBMS with support for the relational algebra"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellForMaths" = callPackage @@ -10617,6 +10981,7 @@ self: { libraryHaskellDepends = [ base hmatrix ]; description = "Pure Haskell implementation of the Levenberg-Marquardt algorithm"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HaskellNN" = callPackage @@ -10628,6 +10993,7 @@ self: { libraryHaskellDepends = [ base hmatrix random ]; description = "High Performance Neural Network in Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaskellNet_0_4_2" = callPackage @@ -10790,6 +11156,7 @@ self: { ]; description = "A concurrent bittorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HaskellTutorials" = callPackage @@ -10824,6 +11191,7 @@ self: { homepage = "http://www.matthewhayden.co.uk"; description = "A reproduction of the Atari 1979 classic \"Asteroids\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hate" = callPackage @@ -10849,6 +11217,7 @@ self: { homepage = "http://github.com/bananu7/Hate"; description = "A small 2D game framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hawk" = callPackage @@ -10871,6 +11240,7 @@ self: { jailbreak = true; description = "Haskell Web Application Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hayoo" = callPackage @@ -10899,6 +11269,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "The Hayoo! search engine for Haskell API search on hackage"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hclip" = callPackage @@ -10932,6 +11303,7 @@ self: { ]; description = "Line oriented editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HerbiePlugin" = callPackage @@ -10951,6 +11323,7 @@ self: { homepage = "github.com/mikeizbicki/herbie-haskell"; description = "automatically improve your code's numeric stability"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hermes" = callPackage @@ -10970,6 +11343,7 @@ self: { jailbreak = true; description = "Message-based middleware layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hieroglyph" = callPackage @@ -10989,6 +11363,7 @@ self: { homepage = "http://vis.renci.org/jeff/hieroglyph"; description = "Purely functional 2D graphics for visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HiggsSet" = callPackage @@ -11006,6 +11381,7 @@ self: { homepage = "http://github.com/lpeterse/HiggsSet"; description = "A multi-index set with advanced query capabilites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hipmunk" = callPackage @@ -11039,6 +11415,7 @@ self: { homepage = "https://github.com/meteficha/HipmunkPlayground"; description = "A playground for testing Hipmunk"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Hish" = callPackage @@ -11060,6 +11437,7 @@ self: { jailbreak = true; homepage = "https://github.com/jaiyalas/Hish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Histogram" = callPackage @@ -11087,6 +11465,7 @@ self: { ]; description = "An MPD client designed for a Home Theatre PC"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hoed" = callPackage @@ -11109,6 +11488,7 @@ self: { homepage = "https://wiki.haskell.org/Hoed"; description = "Lightweight algorithmic debugging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "HoleyMonoid" = callPackage @@ -11141,6 +11521,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "intra- and inter-program communication"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-MapReduce" = callPackage @@ -11163,6 +11544,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed MapReduce framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Holumbus-Searchengine" = callPackage @@ -11184,6 +11566,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Holumbus-Storage" = callPackage @@ -11204,6 +11587,7 @@ self: { homepage = "http://holumbus.fh-wedel.de"; description = "a distributed storage system"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Homology" = callPackage @@ -11236,6 +11620,7 @@ self: { jailbreak = true; description = "A Simple Key Value Store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HostAndPort" = callPackage @@ -11264,6 +11649,7 @@ self: { homepage = "http://github.com/Raynes/Hricket"; description = "A Cricket scoring application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hs2lib" = callPackage @@ -11292,6 +11678,7 @@ self: { homepage = "http://blog.zhox.com/category/hs2lib/"; description = "A Library and Preprocessor that makes it easier to create shared libs from Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HsASA" = callPackage @@ -11315,6 +11702,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell binding to libharu (http://libharu.sourceforge.net/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HsHyperEstraier" = callPackage @@ -11333,6 +11721,7 @@ self: { homepage = "http://cielonegro.org/HsHyperEstraier.html"; description = "HyperEstraier binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {hyperestraier = null; qdbm = null;}; "HsJudy" = callPackage @@ -11346,6 +11735,7 @@ self: { homepage = "http://www.pugscode.org/"; description = "Judy bindings, and some nice APIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {Judy = null;}; "HsOpenSSL" = callPackage @@ -11406,6 +11796,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Haskell interface to embedded Perl 5 interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HsSVN" = callPackage @@ -11419,6 +11810,7 @@ self: { homepage = "https://github.com/phonohawk/HsSVN"; description = "Partial Subversion (SVN) binding for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HsSyck" = callPackage @@ -11466,6 +11858,7 @@ self: { homepage = "http://github.com/rukav/Hsed"; description = "Stream Editor in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Hsmtlib" = callPackage @@ -11485,6 +11878,7 @@ self: { homepage = "https://github.com/MfesGA/Hsmtlib"; description = "Haskell library for easy interaction with SMT-LIB 2 compliant solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "HueAPI" = callPackage @@ -11520,6 +11914,7 @@ self: { homepage = "http://github.com/tobs169/HulkImport#readme"; description = "Easily bulk import CSV data to SQL Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Hungarian-Munkres" = callPackage @@ -11548,6 +11943,7 @@ self: { jailbreak = true; description = "Indexable, serializable form of Data.Dynamic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "IFS" = callPackage @@ -11564,6 +11960,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "Iterated Function System generation for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "INblobs" = callPackage @@ -11583,6 +11980,7 @@ self: { homepage = "http://haskell.di.uminho.pt/jmvilaca/INblobs/"; description = "Editor and interpreter for Interaction Nets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IOR" = callPackage @@ -11594,6 +11992,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Region based resource management for the IO monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "IORefCAS" = callPackage @@ -11611,6 +12010,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki"; description = "Atomic compare and swap for IORefs and STRefs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "IOSpec" = callPackage @@ -11674,6 +12074,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/IcoGrid"; description = "Library for generating grids of hexagons and pentagons mapped to a sphere"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "IfElse" = callPackage @@ -11708,6 +12109,7 @@ self: { homepage = "https://github.com/mmirman/ImperativeHaskell"; description = "A library for writing Imperative style haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "IndentParser" = callPackage @@ -11744,6 +12146,7 @@ self: { libraryHaskellDepends = [ base haskell98 ]; description = "liftA2 for infix operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Interpolation" = callPackage @@ -11798,7 +12201,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "IntervalMap" = callPackage + "IntervalMap_0_5_0_1" = callPackage ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: mkDerivation { pname = "IntervalMap"; @@ -11809,6 +12212,20 @@ self: { homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; description = "Containers for intervals, with efficient search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "IntervalMap" = callPackage + ({ mkDerivation, base, Cabal, containers, deepseq, QuickCheck }: + mkDerivation { + pname = "IntervalMap"; + version = "0.5.1.0"; + sha256 = "a27392a6ebe2a3d8e3edddd0ee32bb9ad91aacf2b33e47eaba27d6d6f670125e"; + libraryHaskellDepends = [ base containers deepseq ]; + testHaskellDepends = [ base Cabal containers deepseq QuickCheck ]; + homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; + description = "Containers for intervals, with efficient search"; + license = stdenv.lib.licenses.bsd3; }) {}; "Irc" = callPackage @@ -11877,6 +12294,7 @@ self: { ]; description = "A combinator library on top of a generalised JSON type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JSON-Combinator-Examples" = callPackage @@ -11890,6 +12308,7 @@ self: { ]; description = "Example uses of the JSON-Combinator library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JSONb" = callPackage @@ -11916,6 +12335,7 @@ self: { homepage = "http://github.com/solidsnack/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JYU-Utils" = callPackage @@ -11936,6 +12356,7 @@ self: { jailbreak = true; description = "Some utility functions for JYU projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JackMiniMix" = callPackage @@ -11948,6 +12369,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Javasf" = callPackage @@ -11964,6 +12386,7 @@ self: { ]; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Javav" = callPackage @@ -11977,6 +12400,7 @@ self: { executableHaskellDepends = [ base ]; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JsContracts" = callPackage @@ -12000,6 +12424,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "Design-by-contract for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "JsonGrammar" = callPackage @@ -12022,6 +12447,7 @@ self: { homepage = "https://github.com/MedeaMelana/JsonGrammar2"; description = "Combinators for bidirectional JSON parsing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels_3_1_7_1" = callPackage @@ -12285,7 +12711,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "JuicyPixels" = callPackage + "JuicyPixels_3_2_7" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl , primitive, transformers, vector, zlib }: @@ -12300,9 +12726,10 @@ self: { homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "JuicyPixels_3_2_7_1" = callPackage + "JuicyPixels" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl , primitive, transformers, vector, zlib }: @@ -12317,7 +12744,6 @@ self: { homepage = "https://github.com/Twinside/Juicy.Pixels"; description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels-canvas" = callPackage @@ -12344,6 +12770,7 @@ self: { homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; description = "Efficiently scale, crop, flip images with JuicyPixels"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "JuicyPixels-repa_0_7" = callPackage @@ -12388,6 +12815,7 @@ self: { ]; description = "Convenience functions to obtain array representations of images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JuicyPixels-scale-dct" = callPackage @@ -12452,6 +12880,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "JunkDB-driver-hashtables" = callPackage @@ -12550,6 +12979,7 @@ self: { homepage = "https://github.com/Hamcha/Ketchup"; description = "A super small web framework for those who don't like big and fancy codebases"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "KiCS" = callPackage @@ -12575,6 +13005,7 @@ self: { homepage = "http://www.curry-language.org"; description = "A compiler from Curry to Haskell"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {kics = null;}; "KiCS-debugger" = callPackage @@ -12597,6 +13028,7 @@ self: { homepage = "http://curry-language.org"; description = "debug features for kics"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "KiCS-prophecy" = callPackage @@ -12613,6 +13045,7 @@ self: { homepage = "http://curry-language.org"; description = "a transformation used by the kics debugger"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Kleislify" = callPackage @@ -12637,6 +13070,7 @@ self: { homepage = "http://www.gkayaalp.com/p/konf.html"; description = "A configuration language and a parser"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Kriens" = callPackage @@ -12665,6 +13099,7 @@ self: { homepage = "https://code.google.com/p/kyotocabinet-hs/"; description = "Kyoto Cabinet DB bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) kyotocabinet;}; "L-seed" = callPackage @@ -12684,6 +13119,7 @@ self: { homepage = "http://www.entropia.de/wiki/L-seed"; description = "Plant growing programming game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "LATS" = callPackage @@ -12700,6 +13136,7 @@ self: { homepage = "http://github.com/guaraqe/lats#readme"; description = "Linear Algebra on Typed Spaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "LDAP" = callPackage @@ -12757,6 +13194,7 @@ self: { ]; description = "A basic lambda calculator with beta reduction and a REPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "LambdaDB" = callPackage @@ -12815,6 +13253,7 @@ self: { homepage = "http://github.com/LambdaHack/LambdaHack"; description = "A game engine library for roguelike dungeon crawlers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "LambdaINet" = callPackage @@ -12834,6 +13273,7 @@ self: { homepage = "not available"; description = "Graphical Interaction Net Evaluator for Optimal Evaluation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaNet" = callPackage @@ -12850,6 +13290,7 @@ self: { jailbreak = true; description = "A configurable and extensible neural network library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "LambdaPrettyQuote" = callPackage @@ -12875,6 +13316,7 @@ self: { homepage = "http://github.com/jfischoff/LambdaPrettyQuote"; description = "Quasiquoter, and Arbitrary helpers for the lambda calculus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LambdaShell" = callPackage @@ -12893,6 +13335,7 @@ self: { homepage = "http://rwd.rdockins.name/lambda/home/"; description = "Simple shell for evaluating lambda expressions"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lambdajudge" = callPackage @@ -12952,6 +13395,7 @@ self: { homepage = "http://code.google.com/p/lastik"; description = "A library for compiling programs in a variety of languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Lattices" = callPackage @@ -13035,6 +13479,7 @@ self: { homepage = "https://github.com/chetant/LibClang/issues"; description = "Haskell bindings for libclang (a C++ parsing library)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "LibZip_0_10_2" = callPackage @@ -13073,6 +13518,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Bindings to libzip, a library for manipulating zip archives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Limit" = callPackage @@ -13084,6 +13530,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Wrapper for data that can be unbounded"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "LinearSplit" = callPackage @@ -13098,6 +13545,7 @@ self: { homepage = "http://github.com/rukav/LinearSplit"; description = "Partition the sequence of items to the subsequences in the order given"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinguisticsTypes" = callPackage @@ -13123,6 +13571,7 @@ self: { homepage = "https://github.com/choener/LinguisticsTypes"; description = "Collection of types for natural language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LinkChecker" = callPackage @@ -13141,6 +13590,7 @@ self: { homepage = "http://janzzstimmpfle.de/~jens/software/LinkChecker/"; description = "Check a bunch of local html files for broken links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "List" = callPackage @@ -13286,6 +13736,7 @@ self: { jailbreak = true; description = "a parallel implementation of logic programming using distributed tree exploration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-MPI" = callPackage @@ -13312,6 +13763,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses MPI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openmpi;}; "LogicGrowsOnTrees-network" = callPackage @@ -13341,6 +13793,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes running in a network"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LogicGrowsOnTrees-processes" = callPackage @@ -13370,6 +13823,7 @@ self: { jailbreak = true; description = "an adapter for LogicGrowsOnTrees that uses multiple processes for parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "LslPlus" = callPackage @@ -13392,6 +13846,7 @@ self: { homepage = "http:/lslplus.sourceforge.net/"; description = "An execution and testing framework for the Linden Scripting Language (LSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Lucu" = callPackage @@ -13414,6 +13869,7 @@ self: { homepage = "http://cielonegro.org/Lucu.html"; description = "HTTP Daemonic Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MASMGen" = callPackage @@ -13446,6 +13902,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/mcfolddp/"; description = "Folding algorithm based on nucleotide cyclic motifs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MFlow_0_4_5_9" = callPackage @@ -13510,6 +13967,7 @@ self: { homepage = "https://github.com/DanBurton/MHask#readme"; description = "The category of monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MSQueue" = callPackage @@ -13566,6 +14024,7 @@ self: { homepage = "http://nautilus.cs.miyazaki-u.ac.jp/~skata/MagicHaskeller.html"; description = "Automatic inductive functional programmer by systematic search"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MailchimpSimple" = callPackage @@ -13600,6 +14059,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MaybeT-monads-tf" = callPackage @@ -13612,6 +14072,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer compatible with monads-tf (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MaybeT-transformers" = callPackage @@ -13624,6 +14085,7 @@ self: { jailbreak = true; description = "MaybeT monad transformer using transformers instead of mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MazesOfMonad" = callPackage @@ -13642,6 +14104,7 @@ self: { ]; description = "Console-based Role Playing Game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MeanShift" = callPackage @@ -13666,6 +14129,7 @@ self: { jailbreak = true; description = "A library for units of measurement"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MemoTrie_0_6_2" = callPackage @@ -13728,6 +14192,7 @@ self: { jailbreak = true; description = "Statically checked database access"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MetaObject" = callPackage @@ -13752,6 +14217,7 @@ self: { homepage = "http://github.com/benhamner/Metrics/"; description = "Evaluation metrics commonly used in supervised machine learning"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Mhailist" = callPackage @@ -13771,6 +14237,7 @@ self: { jailbreak = true; description = "Haskell mailing list manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Michelangelo" = callPackage @@ -13788,6 +14255,7 @@ self: { jailbreak = true; description = "OpenGL for dummies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MicrosoftTranslator" = callPackage @@ -13825,6 +14293,7 @@ self: { homepage = "http://www.tcs.ifi.lmu.de/~abel/miniagda/"; description = "A toy dependently typed programming language with type-based termination"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MissingH_1_3_0_1" = callPackage @@ -13946,6 +14415,7 @@ self: { homepage = "http://github.com/softmechanics/missingpy"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Modulo" = callPackage @@ -13987,6 +14457,7 @@ self: { homepage = "https://github.com/audreyt/MoeDict.hs"; description = "Utilities working with MoeDict.tw JSON dataset"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MonadCatchIO-mtl" = callPackage @@ -14016,6 +14487,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MonadCatchIO-transformers_0_3_1_2" = callPackage @@ -14067,6 +14539,7 @@ self: { jailbreak = true; description = "Polymorphic combinators for working with foreign functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MonadCompose" = callPackage @@ -14102,6 +14575,7 @@ self: { homepage = "http://monadgarden.cs.missouri.edu/MonadLab"; description = "Automatically generate layered monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MonadPrompt" = callPackage @@ -14242,6 +14716,7 @@ self: { libraryHaskellDepends = [ base MonadRandom mtl random ]; description = "Lazy monad for psuedo random-number generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "MonadStack" = callPackage @@ -14269,6 +14744,7 @@ self: { homepage = "http://www.geocities.jp/takascience/haskell/monadius_en.html"; description = "2-D arcade scroller"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Monaris" = callPackage @@ -14287,6 +14763,7 @@ self: { homepage = "https://github.com/fumieval/Monaris/"; description = "A simple tetris clone"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Monatron" = callPackage @@ -14298,6 +14775,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library with uniform liftings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Monatron-IO" = callPackage @@ -14311,6 +14789,7 @@ self: { homepage = "https://github.com/kreuzschlitzschraubenzieher/Monatron-IO"; description = "MonadIO instances for the Monatron transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Monocle" = callPackage @@ -14322,6 +14801,7 @@ self: { libraryHaskellDepends = [ base containers haskell98 mtl ]; description = "Symbolic computations in strict monoidal categories with LaTeX output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MorseCode" = callPackage @@ -14354,6 +14834,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/mucheck"; description = "Automated Mutation Testing"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MuCheck-HUnit" = callPackage @@ -14369,6 +14850,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/mucheck-hunit"; description = "Automated Mutation Testing for HUnit tests"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MuCheck-Hspec" = callPackage @@ -14384,6 +14866,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/mucheck-hspec"; description = "Automated Mutation Testing for Hspec tests"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MuCheck-QuickCheck" = callPackage @@ -14399,6 +14882,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/mucheck-quickcheck"; description = "Automated Mutation Testing for QuickCheck tests"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "MuCheck-SmallCheck" = callPackage @@ -14414,6 +14898,7 @@ self: { homepage = "https://bitbucket.com/osu-testing/mucheck-smallcheck"; description = "Automated Mutation Testing for SmallCheck tests"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Munkres" = callPackage @@ -14541,6 +15026,7 @@ self: { executableHaskellDepends = [ base HCL HTTP network regex-compat ]; description = "Simple application for calculating n-grams using Google"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "NTRU" = callPackage @@ -14558,6 +15044,7 @@ self: { jailbreak = true; description = "NTRU Cryptography"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "NXT" = callPackage @@ -14583,6 +15070,7 @@ self: { homepage = "http://mitar.tnode.com"; description = "A Haskell interface to Lego Mindstorms NXT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {bluetooth = null;}; "NXTDSL" = callPackage @@ -14602,6 +15090,7 @@ self: { homepage = "https://github.com/agrafix/legoDSL"; description = "Generate NXC Code from DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "NanoProlog" = callPackage @@ -14645,6 +15134,7 @@ self: { homepage = "https://github.com/choener/NaturalLanguageAlphabets"; description = "Simple scoring schemes for word alignments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NaturalSort" = callPackage @@ -14740,6 +15230,7 @@ self: { homepage = "https://github.com/ptek/netsnmp"; description = "Bindings for net-snmp's C API for clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) net_snmp;}; "Network-NineP" = callPackage @@ -14806,6 +15297,7 @@ self: { homepage = "http://github.com/glguy/ninjas"; description = "Ninja game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "NoSlow" = callPackage @@ -14827,6 +15319,7 @@ self: { homepage = "http://code.haskell.org/NoSlow"; description = "Microbenchmarks for various array libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NoTrace_0_3_0_0" = callPackage @@ -14887,6 +15380,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Core" = callPackage @@ -14914,6 +15408,7 @@ self: { homepage = "http://www.nomyx.net"; description = "A Nomic game in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Language" = callPackage @@ -14934,6 +15429,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Rules" = callPackage @@ -14950,6 +15446,7 @@ self: { ]; description = "Language to express rules for Nomic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nomyx-Web" = callPackage @@ -14975,6 +15472,7 @@ self: { homepage = "http://www.nomyx.net"; description = "Web gui for Nomyx"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NonEmpty" = callPackage @@ -15003,6 +15501,7 @@ self: { homepage = "http://code.google.com/p/nonempty/"; description = "A list with a length of at least one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "NumInstances" = callPackage @@ -15038,6 +15537,7 @@ self: { homepage = "http://patch-tag.com/r/lpsmith/NumberSieves"; description = "Number Theoretic Sieves: primes, factorization, and Euler's Totient"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "NumberTheory" = callPackage @@ -15081,6 +15581,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "Nussinov78 using the ADPfusion library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Nutri" = callPackage @@ -15106,6 +15607,7 @@ self: { homepage = "http://haskell.org/haskellwiki/OGL"; description = "A context aware binding for the OpenGL graphics system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OSM" = callPackage @@ -15122,6 +15624,7 @@ self: { homepage = "https://github.com/tonymorris/geo-osm"; description = "Parse OpenStreetMap files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OTP" = callPackage @@ -15147,6 +15650,7 @@ self: { homepage = "https://github.com/yokto/object"; description = "Object oriented programming for haskell using multiparameter typeclasses"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ObjectIO" = callPackage @@ -15162,6 +15666,7 @@ self: { winspool ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {comctl32 = null; comdlg32 = null; gdi32 = null; kernel32 = null; ole32 = null; shell32 = null; user32 = null; winmm = null; winspool = null;}; @@ -15288,6 +15793,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "Provides a wrapper for deriving word types with fewer bits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Omega" = callPackage @@ -15300,6 +15806,7 @@ self: { testHaskellDepends = [ base containers HUnit ]; description = "Integer sets and relations using Presburger arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OneTuple" = callPackage @@ -15328,6 +15835,7 @@ self: { homepage = "https://github.com/audreyt/openafp/"; description = "IBM AFP document format parser and generator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenAFP-Utils" = callPackage @@ -15348,6 +15856,7 @@ self: { ]; description = "Assorted utilities to work with AFP data streams"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenAL" = callPackage @@ -15368,6 +15877,7 @@ self: { homepage = "https://github.com/haskell-openal/ALUT"; description = "A binding to the OpenAL cross-platform 3D audio API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) openal;}; "OpenCL" = callPackage @@ -15384,6 +15894,7 @@ self: { homepage = "https://github.com/IFCA/opencl"; description = "Haskell high-level wrapper for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OpenCL = null;}; "OpenCLRaw" = callPackage @@ -15397,6 +15908,7 @@ self: { homepage = "http://vis.renci.org/jeff/opencl"; description = "The OpenCL Standard for heterogenous data-parallel computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenCLWrappers" = callPackage @@ -15551,6 +16063,7 @@ self: { ]; description = "Quickcheck instances for various data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "OpenGLRaw_1_5_0_0" = callPackage @@ -15659,6 +16172,7 @@ self: { jailbreak = true; description = "The intersection of OpenGL 2.1 and OpenGL 3.1 Core"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenSCAD" = callPackage @@ -15679,6 +16193,7 @@ self: { homepage = "https://chiselapp.com/user/mwm/repository/OpenSCAD/"; description = "ADT wrapper and renderer for OpenSCAD models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenVG" = callPackage @@ -15691,6 +16206,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "OpenVG (ShivaVG-0.2.1) binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OpenVGRaw" = callPackage @@ -15704,6 +16220,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Raw binding to OpenVG (ShivaVG-0.2.1 implementation)."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Operads" = callPackage @@ -15717,6 +16234,7 @@ self: { homepage = "http://math.stanford.edu/~mik/operads"; description = "Groebner basis computation for Operads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OptDir" = callPackage @@ -15766,6 +16284,7 @@ self: { homepage = "https://github.com/dwd31415/Haskell-OrchestrateDB"; description = "Unofficial Haskell Client Library for the Orchestrate.io API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "OrderedBits" = callPackage @@ -15840,6 +16359,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT"; description = "Extension to Show: templating, catalogizing, languages, parameters, etc"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PCLT-DB" = callPackage @@ -15857,6 +16377,7 @@ self: { homepage = "http://github.com/Andrey-Sisoyev/PCLT-DB"; description = "An addon to PCLT package: enchance PCLT catalog with PostgreSQL powers"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PDBtools" = callPackage @@ -15919,6 +16440,7 @@ self: { jailbreak = true; description = "This is a package which includes Assignments, Email, User and Reviews modules for Programming in Haskell course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PageIO" = callPackage @@ -15945,6 +16467,7 @@ self: { ]; description = "Page-oriented extraction and composition library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Paillier" = callPackage @@ -15984,6 +16507,7 @@ self: { jailbreak = true; description = "Pandoc support for literate Agda"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Paraiso" = callPackage @@ -16009,6 +16533,7 @@ self: { homepage = "http://www.paraiso-lang.org/wiki/index.php/Main_Page"; description = "a code generator for partial differential equations solvers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Parry" = callPackage @@ -16027,6 +16552,7 @@ self: { homepage = "http://parry.lif.univ-mrs.fr"; description = "A proven synchronization server for high performance computing"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ParsecTools" = callPackage @@ -16101,6 +16627,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Relational optimiser and code generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libxml2;}; "Peano" = callPackage @@ -16140,6 +16667,7 @@ self: { librarySystemDepends = [ cmph ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cmph = null;}; "PermuteEffects" = callPackage @@ -16153,6 +16681,7 @@ self: { homepage = "https://github.com/MedeaMelana/PermuteEffects"; description = "Permutations of effectful computations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Phsu" = callPackage @@ -16179,6 +16708,7 @@ self: { homepage = "localhost:9119"; description = "Personal Happstack Server Utils"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Pipe" = callPackage @@ -16191,6 +16721,7 @@ self: { homepage = "http://iki.fi/matti.niemenmaa/pipe/"; description = "Process piping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Piso" = callPackage @@ -16203,6 +16734,7 @@ self: { homepage = "https://github.com/MedeaMelana/Piso"; description = "Partial isomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PlayHangmanGame" = callPackage @@ -16258,6 +16790,7 @@ self: { executableHaskellDepends = [ base containers generic-accessors ]; description = "Real-time line plotter for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PlslTools" = callPackage @@ -16277,6 +16810,7 @@ self: { homepage = "LLayland.wordpress.com"; description = "So far just a lint like program for PL/SQL. Diff and refactoring tools are planned"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Plural" = callPackage @@ -16301,6 +16835,7 @@ self: { executableHaskellDepends = [ array base clock GLUT random ]; description = "An imaginary world"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PortFusion" = callPackage @@ -16339,6 +16874,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Thin wrapper over the C postgresql library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "PrimitiveArray" = callPackage @@ -16387,6 +16923,7 @@ self: { homepage = "https://github.com/choener/PrimitiveArray-Pretty"; description = "Pretty-printing for primitive arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Printf-TH" = callPackage @@ -16397,6 +16934,7 @@ self: { sha256 = "7ddb98d79c320b71c5ffd9f2a0eda2f1898f31ff53ee5f84dfc95c108ada2f58"; libraryHaskellDepends = [ base haskell98 pretty template-haskell ]; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PriorityChansConverger" = callPackage @@ -16408,6 +16946,7 @@ self: { libraryHaskellDepends = [ base containers stm ]; description = "Read single output from an array of inputs - channels with priorities"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ProbabilityMonads" = callPackage @@ -16419,6 +16958,7 @@ self: { libraryHaskellDepends = [ base MaybeT MonadRandom mtl ]; description = "Probability distribution monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "PropLogic" = callPackage @@ -16449,6 +16989,7 @@ self: { homepage = "https://github.com/dillonhuff/Proper"; description = "An implementation of propositional logic in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ProxN" = callPackage @@ -16485,6 +17026,7 @@ self: { homepage = "http://pugscode.org/"; description = "A Perl 6 Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Pup-Events" = callPackage @@ -16537,6 +17079,7 @@ self: { ]; description = "A networked event handling framework for hooking into other programs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Pup-Events-PQueue" = callPackage @@ -16575,6 +17118,7 @@ self: { homepage = "http://www.cs.nott.ac.uk/~asg/QIO/"; description = "The Quantum IO Monad is a library for defining quantum computations in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QLearn" = callPackage @@ -16599,6 +17143,7 @@ self: { libraryHaskellDepends = [ base random vector ]; description = "QuadEdge structure for representing triangulations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QuadTree" = callPackage @@ -16612,6 +17157,7 @@ self: { jailbreak = true; description = "QuadTree library for Haskell, with lens support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QuasiText" = callPackage @@ -16628,6 +17174,7 @@ self: { homepage = "https://github.com/mikeplus64/QuasiText"; description = "A QuasiQuoter for Text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Quelea" = callPackage @@ -16648,6 +17195,7 @@ self: { homepage = "http://gowthamk.github.io/Quelea"; description = "Programming with Eventual Consistency over Cassandra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QuickAnnotate" = callPackage @@ -16664,6 +17212,7 @@ self: { homepage = "http://code.haskell.org/QuickAnnotate/"; description = "Annotation Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QuickCheck_1_2_0_1" = callPackage @@ -16755,6 +17304,7 @@ self: { homepage = "https://github.com/nikita-volkov/QuickCheck-GenT"; description = "A GenT monad transformer for QuickCheck library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "QuickCheck-safe" = callPackage @@ -16789,6 +17339,7 @@ self: { homepage = "http://github.com/tepf/QuickPlot#readme"; description = "Quick and easy data visualization with Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Quickson" = callPackage @@ -16804,6 +17355,7 @@ self: { homepage = "https://github.com/ssadler/quickson"; description = "Quick JSON extractions with Aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "R-pandoc" = callPackage @@ -16823,6 +17375,7 @@ self: { jailbreak = true; description = "A pandoc filter to express R plots inside markdown"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "RANSAC" = callPackage @@ -16868,6 +17421,7 @@ self: { jailbreak = true; description = "A framework for writing RESTful applications"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RFC1751" = callPackage @@ -16902,6 +17456,7 @@ self: { ]; description = "A reflective JSON serializer/parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RMP" = callPackage @@ -16922,6 +17477,7 @@ self: { executableSystemDepends = [ canlib ftd2xx ]; description = "Binding to code that controls a Segway RMP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {canlib = null; ftd2xx = null;}; "RNAFold" = callPackage @@ -16945,6 +17501,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/adpfusion"; description = "RNA secondary structure prediction"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAFoldProgs" = callPackage @@ -16965,6 +17522,7 @@ self: { jailbreak = true; description = "RNA secondary structure folding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdesign" = callPackage @@ -16990,6 +17548,7 @@ self: { executableHaskellDepends = [ bytestring cmdargs file-embed ]; description = "Multi-target RNA sequence design"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAdraw" = callPackage @@ -17010,6 +17569,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "Draw RNA secondary structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RNAlien_1_0_0" = callPackage @@ -17092,6 +17652,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/software/rnawolf/"; description = "RNA folding with non-canonical basepairs and base-triplets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RSA_2_1_0_1" = callPackage @@ -17191,6 +17752,7 @@ self: { homepage = "http://github.com/Manticore/haskell-random123"; description = "Haskell port of Random123 library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RandomDotOrg" = callPackage @@ -17202,6 +17764,7 @@ self: { libraryHaskellDepends = [ base HTTP-Simple network ]; description = "Interface to random.org"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Randometer" = callPackage @@ -17216,6 +17779,7 @@ self: { homepage = "http://github.com/Soares/Randometer.hs"; description = "Randomness intuition trainer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Range" = callPackage @@ -17256,6 +17820,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/ranka"; description = "HTTP to XMPP omegle chats gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Rasenschach" = callPackage @@ -17276,6 +17841,7 @@ self: { homepage = "http://hub.darcs.net/martingw/Rasenschach"; description = "Soccer simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Rasterific_0_4" = callPackage @@ -17388,7 +17954,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Rasterific" = callPackage + "Rasterific_0_6_1" = callPackage ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity , free, JuicyPixels, mtl, primitive, vector, vector-algorithms }: @@ -17404,6 +17970,23 @@ self: { doCheck = false; description = "A pure haskell drawing engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Rasterific" = callPackage + ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity + , free, JuicyPixels, mtl, primitive, vector, vector-algorithms + }: + mkDerivation { + pname = "Rasterific"; + version = "0.6.1.1"; + sha256 = "1887b28b9921dfb2d4d64cb888e5febce17db828103a7e2aed0a978d9fa78665"; + libraryHaskellDepends = [ + base bytestring containers dlist FontyFruity free JuicyPixels mtl + primitive vector vector-algorithms + ]; + description = "A pure haskell drawing engine"; + license = stdenv.lib.licenses.bsd3; }) {}; "ReadArgs" = callPackage @@ -17447,6 +18030,7 @@ self: { homepage = "https://github.com/lookunder/RedmineHs"; description = "Library to access Redmine's REST services"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Ref" = callPackage @@ -17460,6 +18044,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "RefSerialize_0_3_1_3" = callPackage @@ -17513,6 +18098,7 @@ self: { homepage = "https://github.com/pablocouto/Referees"; description = "A utility for computing distributions of material to review among reviewers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "RepLib" = callPackage @@ -17530,6 +18116,7 @@ self: { homepage = "https://github.com/sweirich/replib"; description = "Generic programming library with representation types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ReplicateEffects" = callPackage @@ -17560,6 +18147,7 @@ self: { ]; description = "Haskell bindings to ReviewBoard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "RichConditional" = callPackage @@ -17597,6 +18185,7 @@ self: { homepage = "http://code.haskell.org/~aavogt/Rlang-QQ"; description = "quasiquoter for inline-R code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "RollingDirectory" = callPackage @@ -17621,6 +18210,7 @@ self: { ]; description = "Limits the size of a directory's contents"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "RoyalMonad" = callPackage @@ -17645,6 +18235,7 @@ self: { homepage = "https://github.com/jspahrsummers/RxHaskell"; description = "Reactive Extensions for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SBench" = callPackage @@ -17662,6 +18253,7 @@ self: { ]; description = "A benchmark suite for runtime and heap measurements over a series of inputs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SConfig" = callPackage @@ -17785,6 +18377,7 @@ self: { homepage = "https://github.com/jeannekamikaze/SFML"; description = "SFML bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {csfml-audio = null; csfml-graphics = null; csfml-network = null; csfml-system = null; csfml-window = null; sfml-audio = null; sfml-graphics = null; sfml-network = null; @@ -17800,6 +18393,7 @@ self: { homepage = "https://github.com/SFML-haskell/SFML-control"; description = "Higher level library on top of SFML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SFont" = callPackage @@ -17812,6 +18406,7 @@ self: { homepage = "http://liamoc.net/static/SFont"; description = "SFont SDL Bitmap Fonts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SG" = callPackage @@ -17823,6 +18418,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Small geometry library for dealing with vectors and collision detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SGdemo" = callPackage @@ -17837,6 +18433,7 @@ self: { jailbreak = true; description = "An example of using the SG and OpenGL libraries"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SHA_1_6_4_1" = callPackage @@ -17918,6 +18515,7 @@ self: { homepage = "http://www.snet-home.org/"; description = "Declarative coördination language for streaming networks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SQLDeps" = callPackage @@ -17933,6 +18531,7 @@ self: { ]; description = "Calculate db-data dependencies of functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "STL" = callPackage @@ -17975,6 +18574,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGFonts_1_4_0_3" = callPackage @@ -18013,6 +18613,7 @@ self: { ]; description = "Fonts from the SVG-Font format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SVGPath" = callPackage @@ -18101,6 +18702,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Salsa"; description = "A .NET Bridge for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) glib; inherit (pkgs) mono;}; "Saturnin" = callPackage @@ -18162,6 +18764,7 @@ self: { homepage = "http://github.com/hirschenberger/ScratchFS"; description = "Size limited temp filesystem based on fuse"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Scurry" = callPackage @@ -18181,6 +18784,7 @@ self: { homepage = "http://code.google.com/p/scurry/"; description = "A cross platform P2P VPN application built using Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SegmentTree" = callPackage @@ -18213,6 +18817,7 @@ self: { jailbreak = true; description = "Command-line tool for maintaining the Semantique database"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Semigroup" = callPackage @@ -18236,6 +18841,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SessionLogger" = callPackage @@ -18252,6 +18858,7 @@ self: { jailbreak = true; description = "Easy Loggingframework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ShellCheck" = callPackage @@ -18289,6 +18896,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-compatline" = callPackage @@ -18301,6 +18909,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-editline" = callPackage @@ -18313,6 +18922,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-haskeline" = callPackage @@ -18325,6 +18935,7 @@ self: { jailbreak = true; description = "Haskeline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Shellac-readline" = callPackage @@ -18337,6 +18948,7 @@ self: { homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ShowF" = callPackage @@ -18374,6 +18986,7 @@ self: { homepage = "http://www.geocities.jp/takascience/index_en.html"; description = "A vector shooter game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleAES" = callPackage @@ -18414,6 +19027,7 @@ self: { jailbreak = true; description = "A Simple Graphics Library from the SimpleH framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleH" = callPackage @@ -18431,6 +19045,7 @@ self: { jailbreak = true; description = "A light, clean and powerful Haskell utility library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SimpleLog" = callPackage @@ -18451,6 +19066,7 @@ self: { homepage = "https://github.com/exFalso/SimpleLog/"; description = "Simple, configurable logging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SimpleServer" = callPackage @@ -18472,6 +19088,7 @@ self: { jailbreak = true; description = "A simple static file server, for when apache is overkill"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SizeCompare" = callPackage @@ -18500,6 +19117,7 @@ self: { jailbreak = true; description = "Generate slides from Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Smooth" = callPackage @@ -18516,6 +19134,7 @@ self: { jailbreak = true; description = "A tiny, lazy SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SmtLib" = callPackage @@ -18553,6 +19172,7 @@ self: { homepage = "http://bitbucket.org/jetxee/snusmumrik/"; description = "E-library directory based on FUSE virtual file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zip;}; "SoOSiM" = callPackage @@ -18571,6 +19191,7 @@ self: { homepage = "http://www.soos-project.eu/"; description = "Abstract full system simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SoccerFun" = callPackage @@ -18591,6 +19212,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "Football simulation framework for teaching functional programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SoccerFunGL" = callPackage @@ -18611,6 +19233,7 @@ self: { homepage = "http://www.cs.ru.nl/~peter88/SoccerFun/SoccerFun.html"; description = "OpenGL UI for the SoccerFun framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Sonnex" = callPackage @@ -18644,6 +19267,7 @@ self: { jailbreak = true; description = "Static code analysis using graph-theoretic techniques"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Southpaw" = callPackage @@ -18676,6 +19300,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Video game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "SpacePrivateers" = callPackage @@ -18698,6 +19323,7 @@ self: { homepage = "https://github.com/tuturto/space-privateers"; description = "Simple space pirate roguelike"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SpinCounter" = callPackage @@ -18979,6 +19605,7 @@ self: { homepage = "http://www.spock.li"; description = "Another Haskell web framework for rapid development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-auth" = callPackage @@ -18992,6 +19619,7 @@ self: { homepage = "https://github.com/agrafix/Spock-auth"; description = "Provides authentification helpers for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Spock-digestive_0_1_0_0" = callPackage @@ -19045,6 +19673,7 @@ self: { homepage = "https://github.com/agrafix/Spock-digestive"; description = "Digestive functors support for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-lucid" = callPackage @@ -19059,6 +19688,7 @@ self: { homepage = "http://github.com/aelve/Spock-lucid"; description = "Lucid support for Spock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "Spock-worker_0_2_1_3" = callPackage @@ -19096,6 +19726,7 @@ self: { homepage = "http://github.com/agrafix/Spock-worker"; description = "Background workers for Spock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "SpreadsheetML" = callPackage @@ -19119,6 +19750,7 @@ self: { homepage = "http://liamoc.net/static/Sprig"; description = "Binding to Sprig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Stasis" = callPackage @@ -19241,6 +19873,7 @@ self: { homepage = "http://github.com/rukav/Stomp"; description = "Client library for Stomp brokers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Strafunski-ATermLib" = callPackage @@ -19272,6 +19905,7 @@ self: { jailbreak = true; description = "Converts SDF to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Strafunski-StrategyLib" = callPackage @@ -19337,6 +19971,7 @@ self: { homepage = "http://bonsaicode.wordpress.com/2009/06/07/strictbench-0-1/"; description = "Benchmarking code through strict evaluation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SuffixStructures" = callPackage @@ -19361,6 +19996,7 @@ self: { homepage = "http://www.bioinf.uni-leipzig.de/~choener/"; description = "Suffix array construction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "SybWidget" = callPackage @@ -19377,6 +20013,7 @@ self: { jailbreak = true; description = "Library which aids constructing generic (SYB3-based) widgets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "SyntaxMacros" = callPackage @@ -19394,6 +20031,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/SyntaxMacrosForFree"; description = "Syntax Macros in the form of an EDSL"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Sysmon" = callPackage @@ -19412,6 +20050,7 @@ self: { homepage = "http://github.com/rukav/Sysmon"; description = "Sybase 15 sysmon reports processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TBC" = callPackage @@ -19432,6 +20071,7 @@ self: { ]; description = "Testing By Convention"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TBit" = callPackage @@ -19449,6 +20089,7 @@ self: { jailbreak = true; description = "Utilities for condensed matter physics tight binding calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TCache" = callPackage @@ -19477,6 +20118,7 @@ self: { jailbreak = true; description = "TH implementation of effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TTTAS" = callPackage @@ -19516,6 +20158,7 @@ self: { ]; description = "Template Your Boilerplate - a Template Haskell version of SYB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TableAlgebra" = callPackage @@ -19545,6 +20188,7 @@ self: { jailbreak = true; description = "A client for Quill databases"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tablify" = callPackage @@ -19605,6 +20249,7 @@ self: { executableHaskellDepends = [ base mtl old-time ]; description = "Database library with left-fold interface, for PostgreSQL, Oracle, SQLite, ODBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tape" = callPackage @@ -19670,6 +20315,7 @@ self: { homepage = "http://liamoc.net/tea"; description = "TeaHS Game Creation Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tensor" = callPackage @@ -19726,6 +20372,7 @@ self: { libraryHaskellDepends = [ base ]; librarySystemDepends = [ ogg theora ]; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {ogg = null; theora = null;}; "Thingie" = callPackage @@ -19737,6 +20384,7 @@ self: { libraryHaskellDepends = [ base cairo gtk mtl ]; description = "Purely functional 2D drawing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ThreadObjects" = callPackage @@ -19766,6 +20414,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tic-Tac-Toe" = callPackage @@ -19796,6 +20445,7 @@ self: { ]; description = "A sub-project (exercise) for a functional programming course"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TigerHash" = callPackage @@ -19829,6 +20479,7 @@ self: { ]; description = "A simple tile-based digital clock screen saver"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TinyLaunchbury" = callPackage @@ -19840,6 +20491,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Simple implementation of call-by-need using Launchbury's semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TinyURL" = callPackage @@ -19851,6 +20503,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Use TinyURL to compress URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Titim" = callPackage @@ -19865,6 +20518,7 @@ self: { jailbreak = true; description = "Game for Lounge Marmelade"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Top" = callPackage @@ -19880,6 +20534,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "Constraint solving framework employed by the Helium Compiler"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Tournament" = callPackage @@ -19899,6 +20554,7 @@ self: { homepage = "http://github.com/clux/tournament.hs"; description = "Tournament related algorithms"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "TraceUtils" = callPackage @@ -20004,6 +20660,7 @@ self: { jailbreak = true; description = "A simple trend Graph script"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TrieMap" = callPackage @@ -20021,6 +20678,7 @@ self: { ]; description = "Automatic type inference of generalized tries with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Twofish" = callPackage @@ -20060,14 +20718,15 @@ self: { jailbreak = true; description = "Typing speed game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeCompose" = callPackage ({ mkDerivation, base, base-orphans }: mkDerivation { pname = "TypeCompose"; - version = "0.9.11"; - sha256 = "124c2f9971aa8e45c8cc4f706407f9c28805e63b387400a0b2b9e115aa22044a"; + version = "0.9.12"; + sha256 = "3a182c2cc93f8291b3aedfc32c0b1faa84a982601c1a24cbe7fe1ecc50e333e2"; libraryHaskellDepends = [ base base-orphans ]; homepage = "https://github.com/conal/TypeCompose"; description = "Type composition classes & instances"; @@ -20086,6 +20745,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/people/staff/oc/TypeIlluminator/"; description = "TypeIlluminator is a prototype tool exploring debugging of type errors/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "TypeNat" = callPackage @@ -20147,6 +20807,7 @@ self: { homepage = "http://www.korgwal.com/umm/"; description = "A small command-line accounting tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLT" = callPackage @@ -20164,6 +20825,7 @@ self: { ]; description = "Library for maintaining correctness of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "URLb" = callPackage @@ -20201,6 +20863,7 @@ self: { homepage = "http://github.com/cirquit/UTFTConverter"; description = "Processing popular picture formats into .c or .raw format in RGB565"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Unique" = callPackage @@ -20270,6 +20933,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/UrlDisp"; description = "Url dispatcher. Helps to retain friendly URLs in web applications."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Useful" = callPackage @@ -20318,6 +20982,7 @@ self: { homepage = "http://github.com/grwlf/vkhs"; description = "Provides access to Vkontakte social network via public API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Validation" = callPackage @@ -20357,6 +21022,7 @@ self: { jailbreak = true; description = "Provides Boolean instances for the Vec package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Vec-OpenGLRaw" = callPackage @@ -20369,6 +21035,7 @@ self: { homepage = "http://www.downstairspeople.org/darcs/Vec-opengl"; description = "Instances and functions to interoperate Vec and OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Vec-Transform" = callPackage @@ -20381,6 +21048,7 @@ self: { homepage = "https://github.com/tobbebex/Vec-Transform"; description = "This package is obsolete"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "VecN" = callPackage @@ -20502,6 +21170,7 @@ self: { jailbreak = true; description = "A simple command line tools to control the Asus WL500gP router"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WL500gPLib" = callPackage @@ -20537,6 +21206,7 @@ self: { jailbreak = true; description = "WebMoney authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "WURFL" = callPackage @@ -20548,6 +21218,7 @@ self: { libraryHaskellDepends = [ base haskell98 parsec ]; description = "Convert the WURFL file into a Parsec parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WXDiffCtrl" = callPackage @@ -20560,6 +21231,7 @@ self: { homepage = "http://wewantarock.wordpress.com"; description = "WXDiffCtrl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WashNGo" = callPackage @@ -20580,6 +21252,7 @@ self: { homepage = "http://www.informatik.uni-freiburg.de/~thiemann/haskell/WASH/"; description = "WASH is a family of EDSLs for programming Web applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WaveFront" = callPackage @@ -20596,6 +21269,7 @@ self: { jailbreak = true; description = "Parsers and utilities for the OBJ WaveFront 3D model format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Weather" = callPackage @@ -20641,6 +21315,7 @@ self: { homepage = "http://www.cs.brown.edu/research/plt/"; description = "JavaScript analysis tools"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "WebBits-multiplate" = callPackage @@ -20657,6 +21332,7 @@ self: { jailbreak = true; description = "A Multiplate instance for JavaScript"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "WebCont" = callPackage @@ -20676,6 +21352,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/webconts/snapshot/current/content/pretty"; description = "Continuation based web programming for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WeberLogic" = callPackage @@ -20719,6 +21396,7 @@ self: { jailbreak = true; description = "Regexp-like engine to scrap web data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Wheb" = callPackage @@ -20745,6 +21423,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "The frictionless WAI Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "WikimediaParser" = callPackage @@ -20756,6 +21435,7 @@ self: { libraryHaskellDepends = [ base parsec ]; description = "A parser for wikimedia style article markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Win32_2_3_1_0" = callPackage @@ -20968,6 +21648,7 @@ self: { homepage = "https://github.com/choener/WordAlignment"; description = "Bigram word pair alignments"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "WordNet" = callPackage @@ -20979,6 +21660,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "WordNet-ghc74" = callPackage @@ -20990,6 +21672,7 @@ self: { libraryHaskellDepends = [ array base containers filepath ]; description = "Haskell interface to the WordNet database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Wordlint" = callPackage @@ -21006,6 +21689,7 @@ self: { homepage = "https://github.com/gbgar/Wordlint"; description = "Plaintext prose redundancy linter"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Workflow_0_8_1" = callPackage @@ -21059,6 +21743,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxGeneric"; description = "Generic (SYB3) construction of wxHaskell widgets"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "X11" = callPackage @@ -21093,6 +21778,7 @@ self: { jailbreak = true; description = "Missing bindings to the X11 graphics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libX11;}; "X11-rm" = callPackage @@ -21104,6 +21790,7 @@ self: { libraryHaskellDepends = [ base X11 ]; description = "A binding to the resource management functions missing from X11"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "X11-xdamage" = callPackage @@ -21117,6 +21804,7 @@ self: { homepage = "http://darcs.haskell.org/X11-xdamage"; description = "A binding to the Xdamage X11 extension library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {Xdamage = null;}; "X11-xfixes" = callPackage @@ -21130,6 +21818,7 @@ self: { homepage = "https://github.com/reacocard/x11-xfixes"; description = "A binding to the Xfixes X11 extension library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {Xfixes = null;}; "X11-xft" = callPackage @@ -21192,6 +21881,7 @@ self: { homepage = "http://kawais.org.ua/XMMS/"; description = "XMMS2 client library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {xmmsclient = null; xmmsclient-glib = null;}; "XMPP" = callPackage @@ -21209,6 +21899,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "XMPP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "XSaiga" = callPackage @@ -21233,6 +21924,7 @@ self: { homepage = "http://hafiz.myweb.cs.uwindsor.ca/proHome.html"; description = "An implementation of a polynomial-time top-down parser suitable for NLP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Xauth" = callPackage @@ -21263,6 +21955,7 @@ self: { ]; description = "Gtk command launcher with identicon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "XmlHtmlWriter" = callPackage @@ -21275,6 +21968,7 @@ self: { homepage = "http://github.com/mmirman/haskogeneous/tree/XmlHtmlWriter"; description = "A library for writing XML and HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Xorshift128Plus" = callPackage @@ -21308,6 +22002,7 @@ self: { homepage = "http://github.com/snkkid/YACPong"; description = "Yet Another Pong Clone using SDL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "YFrob" = callPackage @@ -21320,6 +22015,7 @@ self: { homepage = "http://www.haskell.org/yampa/"; description = "Yampa-based library for programming robots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yablog" = callPackage @@ -21355,6 +22051,7 @@ self: { homepage = "http://gitweb.konn-san.com/repo/Yablog/tree/master"; description = "A simple blog engine powered by Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "YamlReference" = callPackage @@ -21380,6 +22077,7 @@ self: { homepage = "http://www.ben-kiki.org/oren/YamlReference"; description = "YAML reference implementation"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "Yampa_0_9_6" = callPackage @@ -21475,6 +22173,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yampa"; description = "Library for programming hybrid systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yampa-core" = callPackage @@ -21509,6 +22208,7 @@ self: { homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; description = "Software synthesizer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "Yocto" = callPackage @@ -21538,6 +22238,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A MUD client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "Yogurt-Standalone" = callPackage @@ -21558,6 +22259,7 @@ self: { homepage = "http://code.google.com/p/yogurt-mud/"; description = "A functional MUD client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) readline;}; "ZEBEDDE" = callPackage @@ -21588,6 +22290,7 @@ self: { homepage = "https://github.com/jkarni/ZipperFS"; description = "Oleg's Zipper FS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ZMachine" = callPackage @@ -21601,6 +22304,7 @@ self: { executableHaskellDepends = [ array base gtk mtl random ]; description = "A Z-machine interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ZipFold" = callPackage @@ -21655,6 +22359,7 @@ self: { homepage = "https://github.com/MedeaMelana/Zwaluw"; description = "Combinators for bidirectional URL routing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "a50" = callPackage @@ -21704,6 +22409,7 @@ self: { homepage = "https://github.com/pa-ba/abc-puzzle"; description = "Generate instances of the ABC Logic Puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "abcBridge" = callPackage @@ -21729,6 +22435,7 @@ self: { ]; description = "Bindings for ABC, A System for Sequential Synthesis and Verification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) abc;}; "abcnotation" = callPackage @@ -21823,6 +22530,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Provides the class ParAccelerate, nothing more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "abt" = callPackage @@ -21924,6 +22632,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-arithmetic/"; description = "Linear algebra and interpolation using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "accelerate-cublas" = callPackage @@ -22068,6 +22777,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fftw/"; description = "Accelerate frontend to the FFTW library (Fourier transform)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-fourier" = callPackage @@ -22091,6 +22801,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-fourier/"; description = "Fast Fourier transform and convolution using the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "accelerate-fourier-benchmark" = callPackage @@ -22129,6 +22840,7 @@ self: { homepage = "https://github.com/AccelerateHS/accelerate-io"; description = "Read and write Accelerate arrays in various formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-random" = callPackage @@ -22163,6 +22875,7 @@ self: { ]; description = "a typesafe way encode accelerate matrices and vectors"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "accelerate-utility" = callPackage @@ -22176,6 +22889,7 @@ self: { homepage = "http://code.haskell.org/~thielema/accelerate-utility/"; description = "Utility functions for the Accelerate framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "accentuateus" = callPackage @@ -22189,6 +22903,7 @@ self: { homepage = "http://accentuate.us/"; description = "A Haskell implementation of the Accentuate.us API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "access-time" = callPackage @@ -22202,6 +22917,7 @@ self: { homepage = "http://www.github.com/batterseapower/access-time"; description = "Cross-platform support for retrieving file access times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ace" = callPackage @@ -22264,6 +22980,7 @@ self: { homepage = "http://acid-state.seize.it/"; description = "Add ACID guarantees to any serializable Haskell data structure"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acid-state-dist" = callPackage @@ -22286,6 +23003,7 @@ self: { jailbreak = true; description = "A replication backend for acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acid-state-tls" = callPackage @@ -22303,6 +23021,7 @@ self: { homepage = "http://acid-state.seize.it/"; description = "Add TLS support for Data.Acid.Remote"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acl2" = callPackage @@ -22451,6 +23170,7 @@ self: { homepage = "http://github.com/joeyadams/haskell-acme-hq9plus"; description = "An embedded DSL for the HQ9+ programming language"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "acme-http" = callPackage @@ -22484,6 +23204,7 @@ self: { executableHaskellDepends = [ base ]; description = "Evil inventions in the Tri-State area"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "acme-io" = callPackage @@ -22603,6 +23324,7 @@ self: { jailbreak = true; description = "Define the less than and add and subtract for nats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "acme-omitted" = callPackage @@ -22704,6 +23426,7 @@ self: { ]; description = "Proper names for curry and uncurry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "acme-strfry" = callPackage @@ -22777,6 +23500,7 @@ self: { homepage = "https://github.com/ion1/acme-zero-one"; description = "The absorbing element of package dependencies"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "action-permutations" = callPackage @@ -22952,6 +23676,7 @@ self: { jailbreak = true; description = "Haskell code presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "activehs-base" = callPackage @@ -22990,6 +23715,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/actors-with-multi-headed-receive.html"; description = "Actors with multi-headed receive clauses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ad_4_2_1_1" = callPackage @@ -23130,6 +23856,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/adaptive-containers"; description = "Self optimizing container types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "adaptive-tuple" = callPackage @@ -23142,6 +23869,7 @@ self: { homepage = "http://inmachina.net/~jwlato/haskell/"; description = "Self-optimizing tuple types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "adb" = callPackage @@ -23209,6 +23937,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Ad-hoc P2P network protocol"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "adict" = callPackage @@ -23229,6 +23958,7 @@ self: { homepage = "https://github.com/kawu/adict"; description = "Approximate dictionary searching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "adjunctions_4_2" = callPackage @@ -23346,6 +24076,7 @@ self: { homepage = "https://github.com/stepcut/ase2css"; description = "parse Adobe Swatch Exchange files and (optionally) output .css files with the colors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "adp-multi" = callPackage @@ -23368,6 +24099,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "ADP for multiple context-free languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "adp-multi-monadiccp" = callPackage @@ -23389,6 +24121,7 @@ self: { homepage = "http://adp-multi.ruhoh.com"; description = "Subword construction in adp-multi using monadiccp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson_0_7_0_6" = callPackage @@ -23552,6 +24285,7 @@ self: { homepage = "https://github.com/gregwebs/aeson-applicative-dsl"; description = "make To/From JSOn instances from an applicative description"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-better-errors_0_9_0" = callPackage @@ -23606,6 +24340,7 @@ self: { jailbreak = true; description = "Mapping between Aeson's JSON and Bson objects"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-casing" = callPackage @@ -23763,6 +24498,7 @@ self: { homepage = "https://github.com/thsutton/aeson-diff"; description = "Extract and apply patches to JSON documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-extra_0_2_1_0" = callPackage @@ -23937,6 +24673,7 @@ self: { homepage = "https://github.com/phadej/aeson-extra#readme"; description = "Extra goodies for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aeson-filthy" = callPackage @@ -24033,6 +24770,7 @@ self: { homepage = "http://github.com/mailrank/aeson"; description = "Fast JSON parsing and encoding (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-parsec-picky" = callPackage @@ -24212,6 +24950,7 @@ self: { homepage = "https://github.com/Fuuzetsu/aeson-schema"; description = "Haskell JSON schema validator and parser generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-serialize" = callPackage @@ -24242,6 +24981,7 @@ self: { homepage = "https://github.com/lassoinc/aeson-smart"; description = "Smart derivation of Aeson instances"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-streams" = callPackage @@ -24379,6 +25119,7 @@ self: { homepage = "https://github.com/sannsyn/aeson-value-parser"; description = "An API for parsing \"aeson\" JSON tree into Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aeson-yak" = callPackage @@ -24392,6 +25133,7 @@ self: { 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; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "affine-invariant-ensemble-mcmc" = callPackage @@ -24450,6 +25192,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Infinite state model checking of iterative C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ag-pictgen" = callPackage @@ -24483,6 +25226,7 @@ self: { ]; description = "Http server for Agda (prototype)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "agda-snippets" = callPackage @@ -24521,6 +25265,7 @@ self: { homepage = "https://github.com/liamoc/agda-snippets#readme"; description = "Literate Agda support using agda-snippets, for Hakyll pages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "agentx" = callPackage @@ -24630,6 +25375,7 @@ self: { homepage = "https://github.com/nfjinjing/air-th"; description = "air"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "airbrake" = callPackage @@ -24650,6 +25396,7 @@ self: { homepage = "https://github.com/joelteon/airbrake"; description = "An Airbrake notifier for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "airship_0_4_1_0" = callPackage @@ -24864,6 +25611,7 @@ self: { homepage = "http://www.aivikasoft.com/en/products/aivika.html"; description = "Parallel distributed simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aivika-experiment" = callPackage @@ -24932,6 +25680,7 @@ self: { homepage = "http://github.com/dsorokin/aivika-experiment-diagrams"; description = "Diagrams backend for the Aivika simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aivika-transformers" = callPackage @@ -24975,6 +25724,7 @@ self: { homepage = "http://ajhc.metasepi.org/"; description = "Haskell compiler that produce binary through C language"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "al" = callPackage @@ -24989,6 +25739,7 @@ self: { homepage = "http://github.com/phaazon/al"; description = "OpenAL 1.1 raw API."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openal;}; "alarmclock_0_2_0_5" = callPackage @@ -25267,6 +26018,7 @@ self: { homepage = "http://github.com/ekmett/algebra/"; description = "Constructive abstract algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "algebra-dag" = callPackage @@ -25308,6 +26060,7 @@ self: { ]; description = "Relational Algebra and SQL Code Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "algebraic" = callPackage @@ -25321,6 +26074,7 @@ self: { homepage = "https://github.com/wdanilo/algebraic"; description = "General linear algebra structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "algebraic-classes" = callPackage @@ -25334,6 +26088,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/algebraic-classes"; description = "Conversions between algebraic classes and F-algebras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "align" = callPackage @@ -25438,6 +26193,7 @@ self: { homepage = "http://www.ccs.neu.edu/~tov/pubs/alms/"; description = "a practical affine language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "alpha" = callPackage @@ -25460,6 +26216,7 @@ self: { homepage = "http://www.alpha-lang.net/"; description = "A compiler for the Alpha language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "alpino-tools" = callPackage @@ -25484,6 +26241,7 @@ self: { homepage = "http://github.com/danieldk/alpino-tools"; description = "Alpino data manipulation tools"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "alsa" = callPackage @@ -25502,6 +26260,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Binding to the ALSA Library API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; "alsa-core" = callPackage @@ -25555,6 +26314,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/ALSA"; description = "Bindings for the ALSA sequencer API (MIDI stuff)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; "alsa-mixer" = callPackage @@ -25602,6 +26362,7 @@ self: { executableHaskellDepends = [ alsa base ]; description = "Tests for the ALSA audio signal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "alsa-seq" = callPackage @@ -25637,6 +26398,7 @@ self: { jailbreak = true; description = "Tests for the ALSA sequencer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "altcomposition" = callPackage @@ -25668,6 +26430,7 @@ self: { jailbreak = true; description = "IO as Alternative instance (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "altfloat" = callPackage @@ -25680,6 +26443,7 @@ self: { homepage = "http://repo.or.cz/w/altfloat.git"; description = "Alternative floating point support for GHC"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "alure" = callPackage @@ -25692,6 +26456,7 @@ self: { librarySystemDepends = [ alure ]; description = "A Haskell binding for ALURE"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) alure;}; "amazon-emailer" = callPackage @@ -25713,6 +26478,7 @@ self: { homepage = "https://github.com/dbp/amazon-emailer"; description = "A queue daemon for Amazon's SES with a PostgreSQL table as a queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "amazon-emailer-client-snap" = callPackage @@ -25729,6 +26495,7 @@ self: { homepage = "https://github.com/dbp/amazon-emailer-client-snap"; description = "Client library for amazon-emailer daemon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazon-products" = callPackage @@ -25756,6 +26523,7 @@ self: { homepage = "https://github.com/AndrewRademacher/hs-amazon-products"; description = "Connector for Amazon Products API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "amazonka_0_3_3_1" = callPackage @@ -25869,6 +26637,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Comprehensive Amazon Web Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-apigateway_1_3_7" = callPackage @@ -25907,6 +26676,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon API Gateway SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-autoscaling_0_3_3" = callPackage @@ -25987,6 +26757,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-certificatemanager" = callPackage @@ -26005,6 +26776,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Certificate Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudformation_0_3_3" = callPackage @@ -26085,6 +26857,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudfront_0_3_3" = callPackage @@ -26165,6 +26938,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudhsm_0_3_3" = callPackage @@ -26245,6 +27019,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudsearch_0_3_3" = callPackage @@ -26325,6 +27100,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudsearch-domains_0_3_3" = callPackage @@ -26405,6 +27181,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudtrail_0_3_3" = callPackage @@ -26485,6 +27262,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudwatch_0_3_3" = callPackage @@ -26565,6 +27343,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudwatch-events" = callPackage @@ -26583,6 +27362,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Events SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cloudwatch-logs_0_3_3" = callPackage @@ -26663,6 +27443,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codecommit_1_3_7" = callPackage @@ -26701,6 +27482,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeCommit SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codedeploy_0_3_3" = callPackage @@ -26781,6 +27563,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-codepipeline_1_3_7" = callPackage @@ -26819,6 +27602,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodePipeline SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cognito-identity_0_3_3" = callPackage @@ -26899,6 +27683,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cognito-idp" = callPackage @@ -26917,6 +27702,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity Provider SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-cognito-sync_0_3_3" = callPackage @@ -26997,6 +27783,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-config_0_3_3" = callPackage @@ -27077,6 +27864,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-core_0_3_3" = callPackage @@ -27239,6 +28027,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Core data types and functionality for Amazonka libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-datapipeline_0_3_3" = callPackage @@ -27319,6 +28108,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-devicefarm_1_3_7" = callPackage @@ -27357,6 +28147,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Device Farm SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-directconnect_0_3_3" = callPackage @@ -27437,6 +28228,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dms" = callPackage @@ -27455,6 +28247,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Database Migration Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ds_1_3_7" = callPackage @@ -27493,6 +28286,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Directory Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dynamodb_0_3_3" = callPackage @@ -27573,6 +28367,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-dynamodb-streams_1_3_7" = callPackage @@ -27611,6 +28406,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB Streams SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ec2_0_3_3" = callPackage @@ -27707,6 +28503,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ecr" = callPackage @@ -27725,6 +28522,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Registry SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ecs_0_3_3" = callPackage @@ -27805,6 +28603,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-efs_1_3_7" = callPackage @@ -27843,6 +28642,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic File System SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticache_0_3_3" = callPackage @@ -27923,6 +28723,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticbeanstalk_0_3_3" = callPackage @@ -28003,6 +28804,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elasticsearch_1_3_7" = callPackage @@ -28041,6 +28843,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elasticsearch Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elastictranscoder_0_3_3" = callPackage @@ -28121,6 +28924,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-elb_0_3_3" = callPackage @@ -28201,6 +29005,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-emr_0_3_3" = callPackage @@ -28281,6 +29086,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-gamelift" = callPackage @@ -28299,6 +29105,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon GameLift SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-glacier_0_3_3" = callPackage @@ -28379,6 +29186,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iam_0_3_3" = callPackage @@ -28459,6 +29267,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-importexport_0_3_3" = callPackage @@ -28539,6 +29348,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-inspector_1_3_7" = callPackage @@ -28577,6 +29387,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iot_1_3_7" = callPackage @@ -28615,6 +29426,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-iot-dataplane_1_3_7" = callPackage @@ -28653,6 +29465,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT Data Plane SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kinesis_0_3_3" = callPackage @@ -28733,6 +29546,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kinesis-firehose_1_3_7" = callPackage @@ -28771,6 +29585,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis Firehose SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-kms_0_3_3" = callPackage @@ -28851,6 +29666,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-lambda_0_3_3" = callPackage @@ -28931,6 +29747,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-marketplace-analytics_1_3_7" = callPackage @@ -28969,6 +29786,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-marketplace-metering" = callPackage @@ -28987,6 +29805,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Metering SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ml_0_3_6" = callPackage @@ -29039,6 +29858,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-opsworks_0_3_3" = callPackage @@ -29119,6 +29939,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-rds_0_3_3" = callPackage @@ -29199,6 +30020,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-redshift_0_3_3" = callPackage @@ -29279,6 +30101,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-route53_0_3_3" = callPackage @@ -29373,6 +30196,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-route53-domains_0_3_3" = callPackage @@ -29453,6 +30277,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-s3_0_3_3" = callPackage @@ -29535,6 +30360,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sdb_0_3_3" = callPackage @@ -29615,6 +30441,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ses_0_3_3" = callPackage @@ -29695,6 +30522,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sns_0_3_3" = callPackage @@ -29775,6 +30603,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sqs_0_3_3" = callPackage @@ -29855,6 +30684,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-ssm_0_3_3" = callPackage @@ -29935,6 +30765,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-storagegateway_0_3_3" = callPackage @@ -30015,6 +30846,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-sts_0_3_3" = callPackage @@ -30095,6 +30927,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-support_0_3_3" = callPackage @@ -30175,6 +31008,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-swf_0_3_3" = callPackage @@ -30257,6 +31091,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-test_1_3_7" = callPackage @@ -30303,6 +31138,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Common functionality for Amazonka library test-suites"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-waf_1_3_7" = callPackage @@ -30341,6 +31177,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WAF SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amazonka-workspaces_0_3_6" = callPackage @@ -30393,6 +31230,7 @@ self: { homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ampersand" = callPackage @@ -30424,6 +31262,7 @@ self: { homepage = "http://wiki.tarski.nl"; description = "Toolsuite for automated design of business processes"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "amqp_0_10_1" = callPackage @@ -30624,6 +31463,7 @@ self: { homepage = "https://github.com/dbp/analyze-client"; description = "Client for analyze service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anansi" = callPackage @@ -30680,6 +31520,7 @@ self: { homepage = "https://john-millikin.com/software/anansi/"; description = "Looms which use Pandoc to parse and produce a variety of formats"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "anatomy" = callPackage @@ -30706,6 +31547,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "Anatomy: Atomo documentation system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "android" = callPackage @@ -30747,6 +31589,7 @@ self: { homepage = "https://github.com/passy/android-lint-summary"; description = "A pretty printer for Android Lint errors"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "angel" = callPackage @@ -31030,6 +31873,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A web interface to Antisplice dungeons"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "antfarm" = callPackage @@ -31053,6 +31897,7 @@ self: { homepage = "http://hub.darcs.net/kowey/antfarm"; description = "Referring expressions for definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "anticiv" = callPackage @@ -31077,6 +31922,7 @@ self: { jailbreak = true; description = "This is an IRC bot for Mafia and Resistance"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "antigate" = callPackage @@ -31095,6 +31941,7 @@ self: { homepage = "https://github.com/exbb2/antigate"; description = "Interface for antigate.com captcha recognition API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "antimirov" = callPackage @@ -31109,6 +31956,7 @@ self: { executableHaskellDepends = [ base containers QuickCheck ]; description = "Define the language containment (=subtyping) relation on regulare expressions"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "antiquoter" = callPackage @@ -31138,6 +31986,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "An engine for text-based dungeons"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "antlrc" = callPackage @@ -31159,6 +32008,7 @@ self: { homepage = "https://github.com/markwright/antlrc"; description = "Haskell binding to the ANTLR parser generator C runtime library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {antlr3c = null;}; "anydbm" = callPackage @@ -31174,6 +32024,7 @@ self: { homepage = "http://software.complete.org/anydbm"; description = "Interface for DBM-like database systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "aosd" = callPackage @@ -31194,6 +32045,7 @@ self: { ]; description = "Bindings to libaosd, a library for Cairo-based on-screen displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {libaosd = null;}; "ap-reflect" = callPackage @@ -31250,6 +32102,7 @@ self: { homepage = "http://ojeling.net/apelsin"; description = "Server and community browser for the game Tremulous"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "api-builder" = callPackage @@ -31344,6 +32197,7 @@ self: { homepage = "http://github.com/iconnect/api-tools"; description = "DSL for generating API boilerplate and docs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apiary_1_4_3" = callPackage @@ -31444,6 +32298,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "Simple and type safe web framework that generate web API documentation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-authenticate" = callPackage @@ -31467,6 +32322,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "authenticate support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-clientsession" = callPackage @@ -31488,6 +32344,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "clientsession support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-cookie" = callPackage @@ -31508,6 +32365,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "Cookie support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-eventsource" = callPackage @@ -31523,6 +32381,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "eventsource support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-helics" = callPackage @@ -31544,6 +32403,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "helics support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-http-client" = callPackage @@ -31563,6 +32423,7 @@ self: { homepage = "https://github.com/winterland1989/apiary-http-client"; description = "A http client for Apiary"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-logger" = callPackage @@ -31585,6 +32446,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "fast-logger support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-memcached" = callPackage @@ -31605,6 +32467,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "memcached client for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-mongoDB" = callPackage @@ -31626,6 +32489,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "mongoDB support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-persistent" = callPackage @@ -31648,6 +32512,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "persistent support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-purescript" = callPackage @@ -31669,6 +32534,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "purescript compiler for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-session" = callPackage @@ -31686,6 +32552,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "session support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apiary-websockets" = callPackage @@ -31705,6 +32572,7 @@ self: { homepage = "https://github.com/philopon/apiary"; description = "websockets support for apiary web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apis" = callPackage @@ -31727,6 +32595,7 @@ self: { homepage = "https://github.com/fabianbergmark/APIs"; description = "A Template Haskell library for generating type safe API calls"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "apotiki" = callPackage @@ -31758,6 +32627,7 @@ self: { homepage = "https://github.com/pyr/apotiki"; description = "a faster debian repository"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "app-lens" = callPackage @@ -31771,6 +32641,7 @@ self: { homepage = "https://bitbucket.org/kztk/app-lens"; description = "applicative (functional) bidirectional programming beyond composition chains"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "app-settings" = callPackage @@ -31827,6 +32698,7 @@ self: { jailbreak = true; description = "app container types and tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "applicative-extras" = callPackage @@ -31858,6 +32730,7 @@ self: { homepage = "https://bitbucket.org/s9gf4ult/applicative-fail"; description = "Applicative functor and monad which collects all your fails"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "applicative-numbers" = callPackage @@ -31888,6 +32761,7 @@ self: { homepage = "https://www.github.com/ktvoelker/AParsec"; description = "An applicative parser combinator library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "applicative-quoters" = callPackage @@ -31899,6 +32773,7 @@ self: { libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; description = "Quasiquoters for idiom brackets and an applicative do-notation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "applicative-splice" = callPackage @@ -31979,6 +32854,7 @@ self: { jailbreak = true; description = "Perform refactorings specified by the refact library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "apportionment" = callPackage @@ -32023,6 +32899,7 @@ self: { homepage = "http://github.com/danieldk/approx-rand-test"; description = "Approximate randomization test"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate_0_2_1_1" = callPackage @@ -32148,6 +33025,7 @@ self: { homepage = "http://github.com/analytics/approximate/"; description = "Approximate discrete values and numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "approximate-equality" = callPackage @@ -32200,6 +33078,7 @@ self: { homepage = "https://github.com/ian-ross/arb-fft"; description = "Pure Haskell arbitrary length FFT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arbb-vm" = callPackage @@ -32217,6 +33096,7 @@ self: { homepage = "https://github.com/svenssonjoel/arbb-vm/wiki"; description = "FFI binding to the Intel Array Building Blocks (ArBB) virtual machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {arbb_dev = null;}; "arbtt_0_8_1_4" = callPackage @@ -32474,6 +33354,7 @@ self: { ]; description = "Archive supplied URLs in WebCite & Internet Archive"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "archlinux" = callPackage @@ -32490,6 +33371,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Support for working with Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "archlinux-web" = callPackage @@ -32516,6 +33398,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/archlinux"; description = "Website maintenance for Arch Linux packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "archnews" = callPackage @@ -32572,6 +33455,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/arff"; description = "Generate Attribute-Relation File Format (ARFF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arghwxhaskell" = callPackage @@ -32587,6 +33471,7 @@ self: { homepage = "https://wiki.haskell.org/Argh!"; description = "An interpreter for the Argh! programming language in wxHaskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "argon_0_4_0_0" = callPackage @@ -32648,6 +33533,7 @@ self: { homepage = "http://github.com/rubik/argon"; description = "Measure your code's complexity"; license = stdenv.lib.licenses.isc; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "argon2" = callPackage @@ -32666,6 +33552,7 @@ self: { homepage = "https://github.com/ocharles/argon2.git"; description = "Haskell bindings to libargon2 - the reference implementation of the Argon2 password-hashing function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "argparser" = callPackage @@ -32678,6 +33565,7 @@ self: { testHaskellDepends = [ base containers HTF HUnit ]; description = "Command line parsing framework for console applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arguedit" = callPackage @@ -32696,6 +33584,7 @@ self: { jailbreak = true; description = "A computer assisted argumentation transcription and editing software"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ariadne" = callPackage @@ -32724,6 +33613,7 @@ self: { homepage = "https://github.com/feuerbach/ariadne"; description = "Go-to-definition for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arion" = callPackage @@ -32748,6 +33638,7 @@ self: { homepage = "http://github.com/karun012/arion"; description = "Watcher and runner for Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arith-encode" = callPackage @@ -32769,6 +33660,7 @@ self: { homepage = "https://github.com/emc2/arith-encode"; description = "A practical arithmetic encoding (aka Godel numbering) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "arithmatic" = callPackage @@ -32807,6 +33699,7 @@ self: { ]; description = "Natural number arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "arithmoi_0_4_1_1" = callPackage @@ -32849,7 +33742,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "arithmoi" = callPackage + "arithmoi_0_4_1_3" = callPackage ({ mkDerivation, array, base, containers, ghc-prim, hspec , integer-gmp, mtl, random }: @@ -32866,6 +33759,30 @@ self: { homepage = "https://github.com/cartazio/arithmoi"; description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "arithmoi" = callPackage + ({ mkDerivation, array, base, containers, ghc-prim, integer-gmp + , mtl, QuickCheck, random, smallcheck, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck + }: + mkDerivation { + pname = "arithmoi"; + version = "0.4.2.0"; + sha256 = "6cc6ade285cdbd437c3e5587e588d4d55152a273e9c276a4679cc22a6e1d2a88"; + configureFlags = [ "-f-llvm" ]; + libraryHaskellDepends = [ + array base containers ghc-prim integer-gmp mtl random + ]; + testHaskellDepends = [ + base QuickCheck smallcheck tasty tasty-hunit tasty-quickcheck + tasty-smallcheck + ]; + homepage = "https://github.com/cartazio/arithmoi"; + description = "Efficient basic number-theoretic functions. Primes, powers, integer logarithms."; + license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "armada" = callPackage @@ -32879,6 +33796,7 @@ self: { executableHaskellDepends = [ base GLUT mtl OpenGL stm ]; description = "Space-based real time strategy game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arpa" = callPackage @@ -32933,6 +33851,7 @@ self: { jailbreak = true; description = "A simple interpreter for arrayForth, the language used on GreenArrays chips"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "array-memoize" = callPackage @@ -32961,6 +33880,7 @@ self: { jailbreak = true; description = "Extra foreign primops for primitive arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "array-utils" = callPackage @@ -32988,6 +33908,7 @@ self: { homepage = "https://github.com/prophile/arrow-improve/"; description = "Improved arrows"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arrow-list_0_6_1_5" = callPackage @@ -33024,6 +33945,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Utilities for working with ArrowApply instances more naturally"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arrowp" = callPackage @@ -33038,6 +33960,7 @@ self: { homepage = "http://www.haskell.org/arrows/"; description = "preprocessor translating arrow notation into Haskell 98"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "arrows" = callPackage @@ -33192,6 +34115,23 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "ascii-table" = callPackage + ({ mkDerivation, aeson, base, containers, dlist, text + , unordered-containers, vector, wl-pprint-extras + }: + mkDerivation { + pname = "ascii-table"; + version = "0.1.0.0"; + sha256 = "69e64e213743431132127814bf8f093a5f5383c9bd28132ff38fc20ac4ce0d15"; + libraryHaskellDepends = [ + aeson base containers dlist text unordered-containers vector + wl-pprint-extras + ]; + homepage = "https://github.com/Sentenai/ascii-table#readme"; + description = "ASCII table"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "ascii-vector-avc" = callPackage ({ mkDerivation, attoparsec, base, binary, bytestring, deepseq , deepseq-generics, HUnit, split, zlib @@ -33226,6 +34166,7 @@ self: { jailbreak = true; description = "Conduit for encoding ByteString into Ascii85"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "asciidiagram_1_1_1_1" = callPackage @@ -33253,7 +34194,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "asciidiagram" = callPackage + "asciidiagram_1_3_1" = callPackage ({ mkDerivation, base, bytestring, containers, directory, filepath , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative , rasterific-svg, svg-tree, text, vector @@ -33275,6 +34216,34 @@ self: { jailbreak = true; description = "Pretty rendering of Ascii diagram into svg or png"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "asciidiagram" = callPackage + ({ mkDerivation, base, blaze-html, bytestring, containers + , directory, filepath, FontyFruity, JuicyPixels, lens, linear, mtl + , optparse-applicative, rasterific-svg, svg-tree, text, vector + }: + mkDerivation { + pname = "asciidiagram"; + version = "1.3.1.1"; + sha256 = "7210b71dd14b86286ac874e4de7d042402bca7cb1cff4376269b590c1df0522f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers FontyFruity JuicyPixels lens linear mtl + rasterific-svg svg-tree text vector + ]; + executableHaskellDepends = [ + base bytestring directory filepath FontyFruity JuicyPixels + optparse-applicative rasterific-svg svg-tree text + ]; + testHaskellDepends = [ + base blaze-html containers directory filepath JuicyPixels + rasterific-svg svg-tree text + ]; + description = "Pretty rendering of Ascii diagram into svg or png"; + license = stdenv.lib.licenses.bsd3; }) {}; "asic" = callPackage @@ -33289,6 +34258,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Compiler"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "asil" = callPackage @@ -33308,6 +34278,7 @@ self: { homepage = "http://www.pros.upv.es/fittest/"; description = "Action Script Instrumentation Library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "asn1-data_0_7_1" = callPackage @@ -33580,6 +34551,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The Assimp asset import library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) assimp;}; "astar" = callPackage @@ -33613,6 +34585,7 @@ self: { jailbreak = true; description = "an incomplete 2d space game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "astview" = callPackage @@ -33632,6 +34605,7 @@ self: { ]; description = "A GTK-based abstract syntax tree viewer for custom languages and parsers"; license = stdenv.lib.licenses.bsdOriginal; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "astview-utils" = callPackage @@ -33756,6 +34730,7 @@ self: { homepage = "http://github.com/jfischoff/async-extras"; description = "Extra Utilities for the Async Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "async-manager" = callPackage @@ -33832,6 +34807,7 @@ self: { homepage = "https://github.com/GaloisInc/aterm-utils"; description = "Utility functions for working with aterms as generated by Minitermite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "atl" = callPackage @@ -33868,6 +34844,7 @@ self: { homepage = "https://bitbucket.org/ajknoll/atlassian-connect-core"; description = "Atlassian Connect snaplet for the Snap Framework and helper code"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atlassian-connect-descriptor" = callPackage @@ -33890,6 +34867,7 @@ self: { jailbreak = true; description = "Code that helps you create a valid Atlassian Connect Descriptor"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "atmos" = callPackage @@ -34020,6 +34998,7 @@ self: { homepage = "https://github.com/eightyeight/atom-msp430"; description = "Convenience functions for using Atom with the MSP430 microcontroller family"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" ]; }) {}; "atomic-primops_0_8" = callPackage @@ -34094,6 +35073,7 @@ self: { homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; description = "An atomic counter implemented using the FFI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "atomic-primops-vector" = callPackage @@ -34107,6 +35087,7 @@ self: { jailbreak = true; description = "Atomic operations on Data.Vector types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atomic-write" = callPackage @@ -34152,6 +35133,7 @@ self: { homepage = "http://atomo-lang.org/"; description = "A highly dynamic, extremely simple, very fun programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "atp-haskell" = callPackage @@ -34425,6 +35407,7 @@ self: { homepage = "https://github.com/robinbb/attoparsec-csv"; description = "A parser for CSV files that uses Attoparsec"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "attoparsec-enumerator_0_3_3" = callPackage @@ -34496,6 +35479,7 @@ self: { homepage = "http://github.com/gregorycollins"; description = "An adapter to convert attoparsec Parsers into blazing-fast Iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "attoparsec-parsec" = callPackage @@ -34525,6 +35509,7 @@ self: { homepage = "http://patch-tag.com/r/felipe/attoparsec-text/home"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "attoparsec-text-enumerator" = callPackage @@ -34537,6 +35522,7 @@ self: { jailbreak = true; description = "(deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "attoparsec-trans" = callPackage @@ -34579,6 +35565,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/epic.php"; description = "Embedded Turtle language compiler in Haskell, with Epic output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "audacity" = callPackage @@ -34615,6 +35602,7 @@ self: { homepage = "https://github.com/fumieval/audiovisual"; description = "A battery-included audiovisual framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "augeas" = callPackage @@ -34634,6 +35622,7 @@ self: { homepage = "http://trac.haskell.org/augeas"; description = "A Haskell FFI wrapper for the Augeas API"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) augeas;}; "augur" = callPackage @@ -34653,6 +35642,7 @@ self: { jailbreak = true; description = "Renaming media collections in a breeze"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aur" = callPackage @@ -34856,6 +35846,7 @@ self: { homepage = "http://github.com/nushio3/authoring"; description = "A library for writing papers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "auto" = callPackage @@ -35057,6 +36048,7 @@ self: { homepage = "http://code.haskell.org/autoproc"; description = "EDSL for Procmail scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "avahi" = callPackage @@ -35068,6 +36060,7 @@ self: { libraryHaskellDepends = [ base dbus-core text ]; description = "Minimal DBus bindings for Avahi daemon (http://avahi.org)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avatar-generator" = callPackage @@ -35179,6 +36172,7 @@ self: { ]; description = "empty"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avers-api_0_0_1" = callPackage @@ -35251,6 +36245,7 @@ self: { homepage = "http://github.com/wereHamster/avers-api"; description = "Types describing the core and extended Avers APIs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avers-server_0_0_1" = callPackage @@ -35342,6 +36337,7 @@ self: { homepage = "http://github.com/wereHamster/avers-server"; description = "Server implementation of the Avers API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "avl-static" = callPackage @@ -35400,6 +36396,7 @@ self: { ]; description = "High-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-glut" = callPackage @@ -35411,6 +36408,7 @@ self: { libraryHaskellDepends = [ awesomium awesomium-raw base GLUT ]; description = "Utilities for using Awesomium with GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "awesomium-raw" = callPackage @@ -35424,6 +36422,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Low-level Awesomium bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {awesomium = null;}; "aws_0_11" = callPackage @@ -35700,6 +36699,7 @@ self: { ]; description = "Configuration types, parsers & renderers for AWS services"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-dynamodb-conduit" = callPackage @@ -35742,6 +36742,7 @@ self: { jailbreak = true; description = "Haskell bindings for Amazon DynamoDB Streams"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-ec2" = callPackage @@ -35771,6 +36772,7 @@ self: { homepage = "https://github.com/zalora/aws-ec2"; description = "AWS EC2/VPC, ELB and CloudWatch client library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-elastic-transcoder" = callPackage @@ -35794,6 +36796,7 @@ self: { homepage = "http://github.com/iconnect/aws-elastic-transcoder"; description = "Haskell suite for the Elastic Transcoder service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-general" = callPackage @@ -35820,6 +36823,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-general"; description = "Bindings for Amazon Web Services (AWS) General Reference"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-kinesis" = callPackage @@ -35846,6 +36850,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis"; description = "Bindings for Amazon Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-kinesis-client" = callPackage @@ -35881,6 +36886,7 @@ self: { jailbreak = true; description = "A producer & consumer client library for AWS Kinesis"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-kinesis-reshard" = callPackage @@ -35911,6 +36917,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-kinesis-reshard"; description = "Reshard AWS Kinesis streams in response to Cloud Watch metrics"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-lambda" = callPackage @@ -35932,6 +36939,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-lambda"; description = "Haskell bindings for AWS Lambda"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-performance-tests" = callPackage @@ -35958,6 +36966,7 @@ self: { homepage = "http://github.com/alephcloud/hs-aws-performance-tests"; description = "Performance Tests for the Haskell bindings for Amazon Web Services (AWS)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-route53" = callPackage @@ -36004,6 +37013,7 @@ self: { homepage = "http://worksap-ate.github.com/aws-sdk"; description = "AWS SDK for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-sdk-text-converter" = callPackage @@ -36026,6 +37036,7 @@ self: { homepage = "https://github.com/yunomu/aws-sdk-text-converter"; description = "The text converter for aws-sdk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-sdk-xml-unordered" = callPackage @@ -36047,6 +37058,7 @@ self: { homepage = "https://github.com/worksap-ate/aws-sdk-xml-unordered"; description = "The xml parser for aws-sdk package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-sign4" = callPackage @@ -36072,6 +37084,7 @@ self: { homepage = "http://github.com/iconnect/aws-sign4"; description = "Amazon Web Services (AWS) Signature v4 HTTP request signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "aws-sns" = callPackage @@ -36096,6 +37109,7 @@ self: { homepage = "https://github.com/alephcloud/hs-aws-sns"; description = "Bindings for AWS SNS Version 2013-03-31"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "azure-acs" = callPackage @@ -36134,6 +37148,7 @@ self: { homepage = "github.com/haskell-distributed/azure-service-api"; description = "Haskell bindings for the Microsoft Azure Service Management API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "azure-servicebus" = callPackage @@ -36183,6 +37198,7 @@ self: { homepage = "http://arnovanlumig.com/azure"; description = "A simple library for accessing Azure blob storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "b-tree" = callPackage @@ -36203,6 +37219,7 @@ self: { homepage = "http://github.com/bgamari/b-tree"; description = "Immutable disk-based B* trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "b9_0_5_8" = callPackage @@ -36486,6 +37503,7 @@ self: { ]; description = "An implementation of a simple 2-player board game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "backdropper" = callPackage @@ -36504,6 +37522,7 @@ self: { jailbreak = true; description = "Rotates backdrops for X11 displays using Imagemagic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "backtracking-exceptions" = callPackage @@ -36549,6 +37568,7 @@ self: { homepage = "http://www.dmwit.com/bacteria"; description = "braindead utility to compose Xinerama backgrounds"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bag" = callPackage @@ -36560,6 +37580,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A simple stable bag"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bake_0_2" = callPackage @@ -36635,6 +37656,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo/tree/master"; description = "A blog engine on Hack"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-launcher" = callPackage @@ -36655,6 +37677,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-launcher"; description = "bamboo-launcher"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-highlight" = callPackage @@ -36672,6 +37695,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-plugin-highlight/"; description = "A highlight middleware"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-plugin-photo" = callPackage @@ -36690,6 +37714,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "A photo album middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-blueprint" = callPackage @@ -36708,6 +37733,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-blueprint"; description = "bamboo blueprint theme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamboo-theme-mini-html5" = callPackage @@ -36730,6 +37756,7 @@ self: { homepage = "http://github.com/nfjinjing/bamboo-theme-mini-html5"; description = "bamboo mini html5 theme"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bamse" = callPackage @@ -36748,6 +37775,7 @@ self: { executableHaskellDepends = [ HUnit QuickCheck ]; description = "A Windows Installer (MSI) generator framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bamstats" = callPackage @@ -36841,6 +37869,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-barchart"; description = "Creating Bar Charts in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barcodes-code128" = callPackage @@ -36853,6 +37882,7 @@ self: { jailbreak = true; description = "Generate Code 128 barcodes as PDFs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "barecheck_0_2_0_6" = callPackage @@ -36900,6 +37930,7 @@ self: { jailbreak = true; description = "A web based environment for learning and tinkering with Haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "barrie" = callPackage @@ -36912,6 +37943,7 @@ self: { homepage = "http://thewhitelion.org/haskell/barrie"; description = "Declarative Gtk GUI library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "barrier" = callPackage @@ -36949,6 +37981,7 @@ self: { jailbreak = true; description = "Implementation of barrier monad, can use custom front/back type"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "base_4_9_0_0" = callPackage @@ -37049,6 +38082,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/base-generics"; description = "This library provides some instances for extra GHC.Generic typeclass such as Int8, Word16 and some unboxed types as well."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "base-io-access" = callPackage @@ -37778,6 +38812,7 @@ self: { ]; description = "Basic examples and functions for generics-sop"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "baskell" = callPackage @@ -37794,6 +38829,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "An interpreter for a small functional language"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "battlenet" = callPackage @@ -37858,6 +38894,7 @@ self: { homepage = "https://github.com/zrho/afp"; description = "A web-based implementation of battleships including an AI opponent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bayes-stack" = callPackage @@ -37878,6 +38915,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "Framework for inferring generative probabilistic models with Gibbs sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bbdb" = callPackage @@ -38005,6 +39043,7 @@ self: { homepage = "http://travis.athougies.net/projects/beam.html"; description = "A type-safe SQL mapper for Haskell that doesn't use Template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "beamable" = callPackage @@ -38026,6 +39065,7 @@ self: { jailbreak = true; description = "Generic serializer/deserializer with compact representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "beautifHOL" = callPackage @@ -38040,6 +39080,7 @@ self: { homepage = "http://www.cs.indiana.edu/~lepike/pub_pages/holpp.html"; description = "A pretty-printer for higher-order logic"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bed-and-breakfast" = callPackage @@ -38060,6 +39101,7 @@ self: { homepage = "https://hackage.haskell.org/package/bed-and-breakfast"; description = "Efficient Matrix operations in 100% Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bein" = callPackage @@ -38082,6 +39124,7 @@ self: { ]; description = "Bein is a provenance and workflow management system for bioinformatics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bench" = callPackage @@ -38154,6 +39197,7 @@ self: { homepage = "https://github.com/cobit/bencoding"; description = "A library for encoding and decoding of BEncode data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bento" = callPackage @@ -38178,6 +39222,7 @@ self: { librarySystemDepends = [ db ]; description = "Pretty BerkeleyDB v4 binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) db;}; "berp" = callPackage @@ -38205,6 +39250,7 @@ self: { homepage = "http://wiki.github.com/bjpop/berp/"; description = "An implementation of Python 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bert" = callPackage @@ -38268,6 +39314,7 @@ self: { homepage = "https://github.com/Noeda/bet/"; description = "Betfair API bindings. Bet on sports on betting exchanges."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "betacode" = callPackage @@ -38327,6 +39374,7 @@ self: { jailbreak = true; description = "Bidirectionalization for Free! (POPL'09)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bff-mono" = callPackage @@ -38339,6 +39387,7 @@ self: { homepage = "https://bitbucket.org/kztk/bff-mono/"; description = "\"Bidirectionalization for Free\" for Monomorphic Transformations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bgmax" = callPackage @@ -38367,6 +39416,7 @@ self: { ]; description = "Blocked GZip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bibdb" = callPackage @@ -38391,6 +39441,7 @@ self: { homepage = "https://github.com/cacay/bibdb"; description = "A database based bibliography manager for BibTeX"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bibtex" = callPackage @@ -38424,6 +39475,7 @@ self: { homepage = "http://www.kb.ecei.tohoku.ac.jp/~kztk/b18n-combined/desc.html"; description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bidispec" = callPackage @@ -38435,6 +39487,7 @@ self: { libraryHaskellDepends = [ base bytestring mtl ]; description = "Specification of generators and parsers"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bidispec-extras" = callPackage @@ -38592,6 +39645,7 @@ self: { homepage = "http://ddmal.music.mcgill.ca/billboard"; description = "A parser for the Billboard chord dataset"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "billeksah-forms" = callPackage @@ -38611,6 +39665,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "billeksah-main" = callPackage @@ -38631,6 +39686,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah plugin base"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "billeksah-main-static" = callPackage @@ -38674,6 +39730,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "billeksah-services" = callPackage @@ -38691,6 +39748,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bimap_0_3_0" = callPackage @@ -38762,6 +39820,7 @@ self: { homepage = "https://github.com/choener/bimaps"; description = "bijections with multiple implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary_0_7_6_1" = callPackage @@ -38868,6 +39927,7 @@ self: { jailbreak = true; description = "Automatic deriving of Binary using GHC.Generics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binary-enum" = callPackage @@ -38896,6 +39956,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/binary-file"; description = "read/write binary file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binary-generic" = callPackage @@ -38923,6 +39984,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Binary Indexed Trees (a.k.a. Fenwick Trees)."; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binary-list_1_0_1_0" = callPackage @@ -38957,7 +40019,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary-list" = callPackage + "binary-list_1_1_1_0" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state , transformers }: @@ -38970,6 +40032,22 @@ self: { ]; description = "Lists of length a power of two"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "binary-list" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state + , transformers + }: + mkDerivation { + pname = "binary-list"; + version = "1.1.1.1"; + sha256 = "c27d5b1ecd362afd4e0bcf268fa1b471f7ce518b27ff9fab10e2c06073711b59"; + libraryHaskellDepends = [ + base binary bytestring deepseq phantom-state transformers + ]; + description = "Lists of length a power of two"; + license = stdenv.lib.licenses.bsd3; }) {}; "binary-literal-qq" = callPackage @@ -39172,6 +40250,7 @@ self: { homepage = "http://github.com/NicolasT/binary-protocol-zmq"; description = "Monad to ease implementing a binary network protocol over ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binary-search_0_1" = callPackage @@ -39270,6 +40349,7 @@ self: { homepage = "http://github.com/jonpetterbergman/binary-streams"; description = "data serialization/deserialization io-streams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binary-strict" = callPackage @@ -39466,6 +40546,7 @@ self: { homepage = "https://github.com/coreyoconnor/bind-marshal"; description = "Data marshaling library that uses type level equations to optimize buffering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binding-core" = callPackage @@ -39496,6 +40577,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in Gtk2Hs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "binding-wx" = callPackage @@ -39511,6 +40593,7 @@ self: { homepage = "https://bitbucket.org/accursoft/binding"; description = "Data Binding in WxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "bindings" = callPackage @@ -39573,6 +40656,7 @@ self: { homepage = "http://cielonegro.org/Bindings-EsounD.html"; description = "Low level bindings to EsounD (ESD; Enlightened Sound Daemon)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {esound = null;}; "bindings-GLFW_3_1_1_4" = callPackage @@ -39641,6 +40725,7 @@ self: { homepage = "https://github.com/jputcu/bindings-K8055"; description = "Bindings to Velleman K8055 dll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {K8055D = null;}; "bindings-apr" = callPackage @@ -39655,6 +40740,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime (APR)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {apr-1 = null;}; "bindings-apr-util" = callPackage @@ -39669,6 +40755,7 @@ self: { homepage = "http://cielonegro.org/Bindings-APR.html"; description = "Low level bindings to Apache Portable Runtime Utility (APR Utility)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {apr-util-1 = null;}; "bindings-audiofile" = callPackage @@ -39699,6 +40786,7 @@ self: { homepage = "http://projects.haskell.org/bindings-bfd/"; description = "Bindings for libbfd, a library of the GNU `binutils'"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {bfd = null; opcodes = null;}; "bindings-cctools" = callPackage @@ -39712,6 +40800,7 @@ self: { homepage = "http://bitbucket.org/badi/bindings-cctools"; description = "Bindings to the CCTools WorkQueue C library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "bindings-codec2" = callPackage @@ -39732,6 +40821,7 @@ self: { homepage = "https://github.com/relrod/bindings-codec2"; description = "Very low-level FFI bindings for Codec2"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {codec2 = null;}; "bindings-common" = callPackage @@ -39743,6 +40833,7 @@ self: { libraryHaskellDepends = [ base ]; description = "This package is obsolete. Look for bindings-DSL instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bindings-dc1394" = callPackage @@ -39757,6 +40848,7 @@ self: { homepage = "http://github.com/aleator/bindings-dc1394"; description = "Library for using firewire (iidc-1394) cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {dc1394 = null;}; "bindings-directfb" = callPackage @@ -39784,6 +40876,7 @@ self: { homepage = "http://github.com/a1kmm/bindings-eskit"; description = "Bindings to ESKit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {eskit = null;}; "bindings-fann" = callPackage @@ -39796,6 +40889,7 @@ self: { libraryPkgconfigDepends = [ fann ]; description = "Low level bindings to FANN neural network library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {fann = null;}; "bindings-fluidsynth" = callPackage @@ -39821,6 +40915,7 @@ self: { librarySystemDepends = [ friso ]; description = "Low level bindings for friso"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {friso = null;}; "bindings-glib" = callPackage @@ -39870,6 +40965,7 @@ self: { libraryPkgconfigDepends = [ gsl ]; description = "Low level bindings to GNU GSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) gsl;}; "bindings-gts" = callPackage @@ -39882,6 +40978,7 @@ self: { libraryPkgconfigDepends = [ gts ]; description = "Low level bindings supporting GTS, the GNU Triangulated Surface Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) gts;}; "bindings-hamlib" = callPackage @@ -39900,6 +40997,7 @@ self: { homepage = "https://github.com/relrod/hamlib-haskell"; description = "Hamlib bindings for Haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) hamlib;}; "bindings-hdf5" = callPackage @@ -39911,6 +41009,7 @@ self: { libraryHaskellDepends = [ base bindings-DSL ]; description = "Project bindings-* raw interface to HDF5 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bindings-levmar" = callPackage @@ -39962,6 +41061,7 @@ self: { libraryPkgconfigDepends = [ libftdi libusb ]; description = "Low level bindings to libftdi"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libftdi; inherit (pkgs) libusb;}; "bindings-librrd" = callPackage @@ -39975,6 +41075,7 @@ self: { homepage = "http://cielonegro.org/Bindings-librrd.html"; description = "Low level bindings to RRDtool"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {librrd = null;}; "bindings-libstemmer" = callPackage @@ -39992,6 +41093,7 @@ self: { jailbreak = true; description = "Binding for libstemmer with low level binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {stemmer = null;}; "bindings-libusb" = callPackage @@ -40018,6 +41120,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to libv4l2 for Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {v4l2 = null;}; "bindings-libzip_0_10_2" = callPackage @@ -40045,6 +41148,7 @@ self: { homepage = "http://bitbucket.org/astanin/hs-libzip/"; description = "Low level bindings to libzip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libzip;}; "bindings-linux-videodev2" = callPackage @@ -40057,6 +41161,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "bindings to Video For Linux Two (v4l2) kernel interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bindings-lxc" = callPackage @@ -40094,6 +41199,7 @@ self: { homepage = "http://www.github.com/massysett/bindings-mpdecimal"; description = "bindings to mpdecimal library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bindings-nettle" = callPackage @@ -40135,6 +41241,7 @@ self: { libraryPkgconfigDepends = [ portaudio ]; description = "Low-level bindings to portaudio library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) portaudio;}; "bindings-posix" = callPackage @@ -40204,6 +41311,7 @@ self: { homepage = "http://floss.scru.org/bindings-sane"; description = "FFI bindings to libsane"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {saneBackends = null;}; "bindings-sc3" = callPackage @@ -40217,6 +41325,7 @@ self: { homepage = "https://github.com/kaoskorobase/bindings-sc3/"; description = "Low-level bindings to the SuperCollider synthesis engine library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {scsynth = null;}; "bindings-sipc" = callPackage @@ -40233,6 +41342,7 @@ self: { homepage = "https://github.com/justinethier/hs-bindings-sipc"; description = "Low level bindings to SIPC"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {sipc = null;}; "bindings-sophia" = callPackage @@ -40293,6 +41403,7 @@ self: { homepage = "http://github.com/aktowns/bindings-wlc#readme"; description = "Bindings against the wlc library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) wlc;}; "bindings-yices" = callPackage @@ -40319,6 +41430,7 @@ self: { homepage = "https://github.com/lspitzner/bindynamic"; description = "A variation of Data.Dynamic.Dynamic with a Binary instance"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "binembed" = callPackage @@ -40394,6 +41506,7 @@ self: { homepage = "http://biohaskell.org/Libraries/Bio"; description = "A bioinformatics library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bioace" = callPackage @@ -40468,8 +41581,8 @@ self: { }: mkDerivation { pname = "biohazard"; - version = "0.6.5"; - sha256 = "1510dd8d46bca9acfc8509dd6e220ab80ce771f7a87a34a49ce1c4c754d04e36"; + version = "0.6.6"; + sha256 = "9e558ad4a3a37de20ebf28bf7c08160884e70898050527113eab136d8fc5a167"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -40489,6 +41602,7 @@ self: { homepage = "http://github.com/udo-stenzel/biohazard"; description = "bioinformatics support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bioinformatics-toolkit" = callPackage @@ -40524,6 +41638,7 @@ self: { ]; description = "A collection of bioinformatics tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "biophd_0_0_4" = callPackage @@ -40587,6 +41702,7 @@ self: { homepage = "https://github.com/dfornika/biophd/wiki"; description = "Library for reading phd sequence files"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "biopsl" = callPackage @@ -40621,6 +41737,7 @@ self: { homepage = "http://biohaskell.org/"; description = "Library and executables for working with SFF files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "biostockholm" = callPackage @@ -40644,6 +41761,7 @@ self: { jailbreak = true; description = "Parsing and rendering of Stockholm files (used by Pfam, Rfam and Infernal)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bird" = callPackage @@ -40664,6 +41782,7 @@ self: { homepage = "http://github.com/moonmaster9000/bird"; description = "A simple, sinatra-inspired web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bit-array" = callPackage @@ -40695,6 +41814,7 @@ self: { homepage = "https://github.com/acfoltzer/bit-vector"; description = "Simple bit vectors for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "bitarray" = callPackage @@ -40792,6 +41912,7 @@ self: { homepage = "https://github.com/runeksvendsen/bitcoin-payment-channel"; description = "Library for working with Bitcoin payment channels"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bitcoin-rpc" = callPackage @@ -40816,6 +41937,7 @@ self: { jailbreak = true; description = "Library to communicate with the Satoshi Bitcoin daemon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bitcoin-script" = callPackage @@ -40889,6 +42011,7 @@ self: { homepage = "http://bitbucket.org/jetxee/hs-bitly/"; description = "A command line tool to access bit.ly URL shortener."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bitmap" = callPackage @@ -40930,6 +42053,7 @@ self: { homepage = "https://github.com/bairyn/bitmaps"; description = "Bitmap library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bits" = callPackage @@ -40987,6 +42111,7 @@ self: { jailbreak = true; description = "Bitstream support for Conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bits-extras" = callPackage @@ -41017,6 +42142,7 @@ self: { jailbreak = true; description = "A space-efficient set data structure"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gmp;}; "bitspeak" = callPackage @@ -41036,6 +42162,7 @@ self: { jailbreak = true; description = "Proof-of-concept tool for writing using binary choices"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gdk2 = null; gtk2 = pkgs.gnome2.gtk; inherit (pkgs.gnome) pango;}; @@ -41057,6 +42184,7 @@ self: { homepage = "https://github.com/phonohawk/bitstream"; description = "Fast, packed, strict and lazy bit streams with stream fusion"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bitstring" = callPackage @@ -41103,6 +42231,7 @@ self: { homepage = "https://github.com/cobit/bittorrent"; description = "Bittorrent protocol implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bitvec" = callPackage @@ -41224,6 +42353,7 @@ self: { homepage = "https://github.com/ingesson/bkr"; description = "Backup utility for backing up to cloud storage services (S3 only right now)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bktrees" = callPackage @@ -41249,6 +42379,7 @@ self: { homepage = "http://github.com/nfjinjing/bla"; description = "a stupid cron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "black-jewel" = callPackage @@ -41270,6 +42401,7 @@ self: { homepage = "http://git.kaction.name/black-jewel"; description = "The pirate bay client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blacktip" = callPackage @@ -41307,6 +42439,7 @@ self: { homepage = "https://github.com/centromere/blake2"; description = "A library providing BLAKE2"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "blakesum" = callPackage @@ -41320,6 +42453,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blakesum-demo" = callPackage @@ -41339,6 +42473,7 @@ self: { homepage = "https://github.com/killerswan/Haskell-BLAKE"; description = "The BLAKE SHA-3 candidate hashes, in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blank-canvas_0_5" = callPackage @@ -41402,6 +42537,7 @@ self: { homepage = "http://github.com/patperry/blas"; description = "Bindings to the BLAS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blas-hs" = callPackage @@ -41416,6 +42552,7 @@ self: { homepage = "https://github.com/Rufflewind/blas-hs"; description = "Low-level Haskell bindings to Blas"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas;}; "blastxml" = callPackage @@ -41726,6 +42863,7 @@ self: { homepage = "https://github.com/egonSchiele/blaze-html-contrib"; description = "Some contributions to add handy things to blaze html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blaze-html-hexpat" = callPackage @@ -41739,6 +42877,7 @@ self: { homepage = "https://github.com/jaspervdj/blaze-html-hexpat"; description = "A hexpat backend for blaze-html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blaze-html-truncate" = callPackage @@ -42012,6 +43151,7 @@ self: { homepage = "http://github.com/mailrank/blaze-textual"; description = "Fast rendering of common datatypes (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blazeMarker" = callPackage @@ -42057,6 +43197,7 @@ self: { homepage = "https://github.com/bjpop/blip"; description = "Python to bytecode compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bliplib" = callPackage @@ -42106,6 +43247,7 @@ self: { executableHaskellDepends = [ base ConfigFile haskell98 old-time ]; description = "Very simple static blog software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloodhound_0_4_0_2" = callPackage @@ -42273,6 +43415,7 @@ self: { homepage = "http://github.com/MichaelXavier/bloodhound-amazonka-auth#readme"; description = "Adds convenient Amazon ElasticSearch Service authentication to Bloodhound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bloomfilter" = callPackage @@ -42309,8 +43452,10 @@ self: { base bytestring hashable hedis QuickCheck tasty tasty-hunit tasty-quickcheck tasty-rerun ]; + jailbreak = true; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "blosum" = callPackage @@ -42319,8 +43464,8 @@ self: { }: mkDerivation { pname = "blosum"; - version = "0.1.1.1"; - sha256 = "d74cf68e2c68ed539160735cc7928de6086b6d059be744ac4caba2b5664c0788"; + version = "0.1.1.2"; + sha256 = "acfbca000b0f7da3e20c5ae0b124ff029d4777a056f74546828fe6a9eee29d55"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -42333,6 +43478,7 @@ self: { homepage = "http://github.com/GregorySchwartz/blosum#readme"; description = "BLOSUM generator"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bloxorz" = callPackage @@ -42346,6 +43492,7 @@ self: { executableHaskellDepends = [ base GLFW OpenGL ]; description = "OpenGL Logic Game"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "blubber" = callPackage @@ -42365,6 +43512,7 @@ self: { homepage = "https://secure.plaimi.net/games/blubber.html"; description = "The blubber client; connects to the blubber server"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "blubber-server" = callPackage @@ -42387,6 +43535,7 @@ self: { homepage = "https://secure.plaimi.net/games/blubber.html"; description = "The blubber server, serves blubber clients"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bluetile" = callPackage @@ -42409,6 +43558,7 @@ self: { homepage = "http://www.bluetile.org/"; description = "full-featured tiling for the GNOME desktop environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "bluetileutils" = callPackage @@ -42485,6 +43635,7 @@ self: { homepage = "http://code.haskell.org/~thielema/games/"; description = "Three games for inclusion in a web server"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bogre-banana" = callPackage @@ -42502,6 +43653,7 @@ self: { ]; executableHaskellDepends = [ base hogre hois random ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bond" = callPackage @@ -42533,6 +43685,7 @@ self: { homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond-haskell" = callPackage @@ -42556,6 +43709,7 @@ self: { homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Runtime support for BOND serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bond-haskell-compiler" = callPackage @@ -42577,6 +43731,7 @@ self: { homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Bond code generator for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bool-extras" = callPackage @@ -42620,6 +43775,7 @@ self: { ]; description = "Boolean normal form: NNF, DNF & CNF"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "boolexpr" = callPackage @@ -42698,6 +43854,7 @@ self: { libraryHaskellDepends = [ base mtl template-haskell text ]; description = "Library for invertible parsing and printing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "boomslang" = callPackage @@ -42718,6 +43875,7 @@ self: { jailbreak = true; description = "Boomshine clone"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "borel" = callPackage @@ -42751,6 +43909,7 @@ self: { homepage = "https://github.com/anchor/borel-core"; description = "Metering System for OpenStack metrics provided by Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bot" = callPackage @@ -42763,6 +43922,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Bot"; description = "bots for functional reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "both_0_1_0_0" = callPackage @@ -42898,6 +44058,7 @@ self: { homepage = "http://github.com/ekmett/bound/"; description = "Making de Bruijn Succ Less"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bound-gen" = callPackage @@ -42909,6 +44070,7 @@ self: { libraryHaskellDepends = [ base bound monad-gen mtl ]; description = "Unwrap Scope's with globally fresh values"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bounded-tchan" = callPackage @@ -43038,6 +44200,7 @@ self: { homepage = "http://github.com/githubuser/braid#readme"; description = "Types and functions to work with braids and Khovanov homology"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "brainfuck" = callPackage @@ -43105,6 +44268,7 @@ self: { homepage = "http://github.com/Peaker/breakout/tree/master"; description = "A simple Breakout game implementation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "breve" = callPackage @@ -43128,6 +44292,7 @@ self: { homepage = "https://github.com/rnhmjoj/breve"; description = "a url shortener"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "brians-brain" = callPackage @@ -43142,6 +44307,7 @@ self: { homepage = "http://github.com/willdonnelly/brians-brain"; description = "A Haskell implementation of the Brian's Brain cellular automaton"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "brick_0_3_1" = callPackage @@ -43235,6 +44401,7 @@ self: { jailbreak = true; description = "Simple part of speech tagger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "broadcast-chan" = callPackage @@ -43274,6 +44441,7 @@ self: { homepage = "https://github.com/capn-freako/broker-haskell"; description = "Haskell bindings to Broker, Bro's messaging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {broker = null;}; "bsd-sysctl" = callPackage @@ -43285,6 +44453,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Access to the BSD sysctl(3) interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bson_0_3_1" = callPackage @@ -43385,6 +44554,7 @@ self: { jailbreak = true; description = "Generics functionality for BSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bson-lens" = callPackage @@ -43412,6 +44582,7 @@ self: { ]; description = "Mapping between BSON and algebraic data types"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bspack" = callPackage @@ -43464,6 +44635,7 @@ self: { homepage = "https://github.com/brinchj/btree-concurrent"; description = "A backend agnostic, concurrent BTree"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "btrfs_0_1_1_1" = callPackage @@ -43583,6 +44755,7 @@ self: { homepage = "https://github.com/chadaustin/buffer-builder"; description = "Library for efficiently building up buffers, one piece at a time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "buffer-builder-aeson" = callPackage @@ -43608,6 +44781,7 @@ self: { ]; description = "Serialize Aeson values with Data.BufferBuilder"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "buffer-pipe" = callPackage @@ -43639,6 +44813,7 @@ self: { homepage = "https://github.com/derekelkins/buffon"; description = "An implementation of Buffon machines"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bugzilla" = callPackage @@ -43708,6 +44883,7 @@ self: { homepage = "http://code.ouroborus.net/buildbox"; description = "Tools for working with buildbox benchmark result files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "buildwrapper" = callPackage @@ -43747,6 +44923,7 @@ self: { homepage = "https://github.com/JPMoresmau/BuildWrapper"; description = "A library and an executable that provide an easy API for a Haskell IDE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bullet" = callPackage @@ -43761,6 +44938,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Bullet"; description = "A wrapper for the Bullet physics engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bullet;}; "bumper_0_6_0_2" = callPackage @@ -43848,6 +45026,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "buster-gtk" = callPackage @@ -43865,6 +45044,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "buster-network" = callPackage @@ -43882,6 +45062,7 @@ self: { homepage = "http://vis.renci.org/jeff/buster"; description = "Almost but not quite entirely unlike FRP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bustle_0_5_2" = callPackage @@ -43965,6 +45146,7 @@ self: { homepage = "http://www.freedesktop.org/wiki/Software/Bustle/"; description = "Draw sequence diagrams of D-Bus traffic"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {system-glib = pkgs.glib;}; "butterflies" = callPackage @@ -43986,6 +45168,7 @@ self: { homepage = "http://code.mathr.co.uk/butterflies"; description = "butterfly tilings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "bv" = callPackage @@ -44000,6 +45183,7 @@ self: { homepage = "http://bitbucket.org/iago/bv-haskell"; description = "Bit-vector arithmetic library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "byline" = callPackage @@ -44032,6 +45216,7 @@ self: { libraryHaskellDepends = [ base bytestring word24 ]; description = "data from/to ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "byteable" = callPackage @@ -44349,6 +45534,7 @@ self: { jailbreak = true; description = "Classes for automatic conversion to and from strict and lazy bytestrings. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bytestring-conversion_0_3_0" = callPackage @@ -44402,6 +45588,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/bytestring-csv"; description = "Parse CSV formatted data efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bytestring-delta" = callPackage @@ -44639,6 +45826,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "Rematch support for ByteString"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bytestring-short" = callPackage @@ -44747,6 +45935,7 @@ self: { libraryHaskellDepends = [ base bytestring containers ]; description = "Combinator parsing with Data.ByteString.Lazy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bytestringparser-temporary" = callPackage @@ -44769,6 +45958,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "A ReadP style parser library for ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "bzlib_0_5_0_4" = callPackage @@ -44843,6 +46033,7 @@ self: { libraryHaskellDepends = [ base ]; description = "C IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "c-storable-deriving" = callPackage @@ -45119,6 +46310,7 @@ self: { homepage = "https://github.com/benarmston/cabal-constraints"; description = "Repeatable builds for cabalized Haskell projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-db" = callPackage @@ -45313,6 +46505,7 @@ self: { homepage = "https://github.com/ddssff/cabal-debian"; description = "Create a Debianization for a Cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dependency-licenses" = callPackage @@ -45352,6 +46545,7 @@ self: { homepage = "http://github.com/creswick/cabal-dev"; description = "Manage sandboxed Haskell build environments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabal-dir" = callPackage @@ -45393,6 +46587,7 @@ self: { homepage = "http://github.com/bgamari/cabal-ghc-dynflags"; description = "Conveniently configure GHC's dynamic flags for use with Cabal projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-ghci" = callPackage @@ -45410,6 +46605,7 @@ self: { homepage = "http://github.com/atnnn/cabal-ghci"; description = "Set up ghci with options taken from a .cabal file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-graphdeps" = callPackage @@ -45428,6 +46624,7 @@ self: { homepage = "https://john-millikin.com/software/cabal-graphdeps/"; description = "Generate graphs of install-time Cabal dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-helper_0_6_2_0" = callPackage @@ -45955,6 +47152,7 @@ self: { executableSystemDepends = [ zlib ]; description = "The (bundled) command-line interface for Cabal and Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zlib;}; "cabal-install-ghc72" = callPackage @@ -45976,6 +47174,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-install-ghc74" = callPackage @@ -45997,6 +47196,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "Temporary version of cabal-install for ghc-7.4"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-lenses" = callPackage @@ -46132,6 +47332,7 @@ self: { homepage = "http://github.com/explicitcall/cabal-query"; description = "Helpers for quering .cabal files or hackageDB's 00-index.tar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-rpm_0_9_4" = callPackage @@ -46336,6 +47537,7 @@ self: { homepage = "http://www.haskell.org/cabal/"; description = "The user interface for building and installing Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-sign" = callPackage @@ -46531,6 +47733,7 @@ self: { ]; description = "Automated test tool for cabal projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal-test-bin" = callPackage @@ -46614,6 +47817,7 @@ self: { jailbreak = true; description = "Command-line tool for uploading packages to Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal2arch" = callPackage @@ -46633,6 +47837,7 @@ self: { homepage = "http://github.com/archhaskell/"; description = "Create Arch Linux packages from Cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal2doap" = callPackage @@ -46650,6 +47855,7 @@ self: { homepage = "http://gregheartsfield.com/cabal2doap/"; description = "Cabal to Description-of-a-Project (DOAP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal2ebuild" = callPackage @@ -46683,6 +47889,7 @@ self: { ]; description = "A tool to generate .ghci file from .cabal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabal2nix" = callPackage @@ -46727,6 +47934,7 @@ self: { homepage = "https://fedorahosted.org/cabal2spec/"; description = "Generates RPM Spec files from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalQuery" = callPackage @@ -46780,6 +47988,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cabalgraph"; description = "Generate pretty graphs of module trees from cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabalmdvrpm" = callPackage @@ -46795,6 +48004,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-cabalmdvrpm;a=shortlog;topi=0"; description = "Create mandriva rpm from cabal package"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalrpmdeps" = callPackage @@ -46810,6 +48020,7 @@ self: { homepage = "http://nanardon.zarb.org/darcsweb/darcsweb.cgi?r=haskell-CabalRpmDeps;a=summary"; description = "Autogenerate rpm dependencies from cabal files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cabalvchk" = callPackage @@ -46823,6 +48034,7 @@ self: { executableHaskellDepends = [ base Cabal ]; description = "Verify installed package version against user-specified constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cabin" = callPackage @@ -46854,6 +48066,7 @@ self: { testHaskellDepends = [ base text-format ]; homepage = "http://github.com/pecorarista/hscabocha"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cabocha = null;}; "cached-io" = callPackage @@ -46931,6 +48144,31 @@ self: { license = stdenv.lib.licenses.publicDomain; }) {}; + "cacophony_0_7_0" = callPackage + ({ mkDerivation, aeson, async, base, base16-bytestring, bytestring + , cryptonite, deepseq, directory, free, hlint, lens, memory + , monad-coroutine, mtl, text, transformers + }: + mkDerivation { + pname = "cacophony"; + version = "0.7.0"; + sha256 = "e67a7fb0e957b47dd6a9b4b956cad17ff42022bca119bb08422d52050a51379f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cryptonite deepseq free lens memory monad-coroutine + mtl transformers + ]; + testHaskellDepends = [ + aeson async base base16-bytestring bytestring directory free hlint + lens mtl text + ]; + homepage = "https://github.com/centromere/cacophony"; + description = "A library implementing the Noise protocol"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "caf" = callPackage ({ mkDerivation, base }: mkDerivation { @@ -47054,6 +48292,24 @@ self: { }) {inherit (pkgs) cairo;}; "cairo" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools + , mtl, text, utf8-string + }: + mkDerivation { + pname = "cairo"; + version = "0.13.2.0"; + sha256 = "4d08ffd7979bac6c39a8143dad353f966d268719817c0230c9138146d977c104"; + libraryHaskellDepends = [ + array base bytestring mtl text utf8-string + ]; + libraryPkgconfigDepends = [ cairo ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Cairo library"; + license = stdenv.lib.licenses.bsd3; + }) {inherit (pkgs) cairo;}; + + "cairo_0_13_3_0" = callPackage ({ mkDerivation, array, base, bytestring, cairo, mtl, text , utf8-string }: @@ -47068,6 +48324,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; "cairo-appbase" = callPackage @@ -47131,6 +48388,7 @@ self: { homepage = "https://github.com/grwlf/cake3"; description = "Third cake the Makefile EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cakyrespa" = callPackage @@ -47149,6 +48407,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/cakyrespa.html"; description = "run turtle like LOGO with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cal3d" = callPackage @@ -47162,6 +48421,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Haskell binding to the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cal3d = null;}; "cal3d-examples" = callPackage @@ -47177,6 +48437,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "Examples for the Cal3d animation library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cal3d-opengl" = callPackage @@ -47190,6 +48451,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Cal3d_animation"; description = "OpenGL rendering for the Cal3D animation library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "calc" = callPackage @@ -47203,6 +48465,7 @@ self: { executableHaskellDepends = [ array base harpy haskell98 mtl ]; description = "A small compiler for arithmetic expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "calculator" = callPackage @@ -47246,6 +48509,7 @@ self: { ]; description = "Calculation tool and library supporting units"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caledon" = callPackage @@ -47265,6 +48529,7 @@ self: { homepage = "https://github.com/mmirman/caledon"; description = "a logic programming language based on the calculus of constructions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "call" = callPackage @@ -47292,6 +48557,7 @@ self: { homepage = "https://github.com/fumieval/call"; description = "The call game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "call-haskell-from-anything" = callPackage @@ -47311,6 +48577,7 @@ self: { homepage = "https://github.com/nh2/call-haskell-from-anything"; description = "Call Haskell functions from other languages via serialization and dynamic libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "camfort" = callPackage @@ -47338,6 +48605,7 @@ self: { ]; description = "CamFort - Cambridge Fortran infrastructure"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "camh" = callPackage @@ -47372,6 +48640,7 @@ self: { homepage = "http://github.com/michaelxavier/Campfire"; description = "Haskell implementation of the Campfire API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "canonical-filepath" = callPackage @@ -47469,6 +48738,7 @@ self: { homepage = "https://github.com/klangner/cantor"; description = "Application for analysis of java source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cao" = callPackage @@ -47490,6 +48760,7 @@ self: { homepage = "http://haslab.uminho.pt/mbb/software/cao-domain-specific-language-cryptography"; description = "CAO Compiler"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cap" = callPackage @@ -47503,6 +48774,7 @@ self: { executableHaskellDepends = [ array base containers haskell98 ]; description = "Interprets and debug the cap language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "capped-list" = callPackage @@ -47529,6 +48801,7 @@ self: { ]; description = "A simple wrapper over cabal-install to operate in project-private mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "car-pool" = callPackage @@ -47553,6 +48826,7 @@ self: { homepage = "http://hub.darcs.net/thielema/car-pool/"; description = "Simple web-server for organizing car-pooling for an event"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caramia" = callPackage @@ -47597,6 +48871,7 @@ self: { homepage = "http://github.com/jdevelop/carboncopy"; description = "Drop emails from threads being watched into special CC folder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "carettah" = callPackage @@ -47616,6 +48891,7 @@ self: { homepage = "https://github.com/master-q/carettah"; description = "A presentation tool written with Haskell"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "carray_0_1_6_2" = callPackage @@ -47777,6 +49053,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "mid-level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi = null;}; "casadi-bindings-control" = callPackage @@ -47794,6 +49071,7 @@ self: { jailbreak = true; description = "low level bindings to casadi-control"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi_control = null;}; "casadi-bindings-core" = callPackage @@ -47810,6 +49088,7 @@ self: { libraryPkgconfigDepends = [ casadi ]; description = "autogenerated low level bindings to casadi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi = null;}; "casadi-bindings-internal" = callPackage @@ -47823,6 +49102,7 @@ self: { homepage = "http://github.com/ghorn/casadi-bindings"; description = "low level bindings to CasADi"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi = null;}; "casadi-bindings-ipopt-interface" = callPackage @@ -47839,6 +49119,7 @@ self: { libraryPkgconfigDepends = [ casadi_ipopt_interface ]; description = "low level bindings to casadi-ipopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi_ipopt_interface = null;}; "casadi-bindings-snopt-interface" = callPackage @@ -47855,6 +49136,7 @@ self: { libraryPkgconfigDepends = [ casadi_snopt_interface ]; description = "low level bindings to casadi-snopt_interface"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {casadi_snopt_interface = null;}; "cascading" = callPackage @@ -47872,6 +49154,7 @@ self: { jailbreak = true; description = "DSL for HTML CSS (Cascading Style Sheets)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "case-conversion" = callPackage @@ -48090,6 +49373,7 @@ self: { homepage = "http://www.cs.st-andrews.ac.uk/~hwloidl/SCIEnce/SymGrid-Par/CASH/"; description = "the Computer Algebra SHell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "casing" = callPackage @@ -48150,6 +49434,7 @@ self: { homepage = "http://cassandra.apache.org/"; description = "thrift bindings to the cassandra database"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cassava_0_4_2_0" = callPackage @@ -48411,6 +49696,7 @@ self: { homepage = "https://github.com/domdere/cassava-conduit"; description = "Conduit interface for cassava package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cassava-streams" = callPackage @@ -48473,6 +49759,7 @@ self: { homepage = "http://github.com/ozataman/cassy"; description = "A high level driver for the Cassandra datastore"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "castle" = callPackage @@ -48507,6 +49794,7 @@ self: { homepage = "http://code.atnnn.com/projects/casui"; description = "Equation Manipulator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "catamorphism" = callPackage @@ -48520,6 +49808,7 @@ self: { homepage = "https://github.com/frerich/catamorphism"; description = "A package exposing a helper function for generating catamorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "catch-fd" = callPackage @@ -48544,6 +49833,7 @@ self: { libraryHaskellDepends = [ base newtype pointless-haskell void ]; description = "Categorical Monoids and Semirings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "categories" = callPackage @@ -48584,6 +49874,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "A meta-package documenting various packages inspired by category theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "category-printf" = callPackage @@ -48761,6 +50052,7 @@ self: { ]; description = "Bindings for the CCI networking library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cci = null;}; "ccnx" = callPackage @@ -48791,6 +50083,7 @@ self: { homepage = "http://bitbucket.org/badi/hs-cctools-workqueue"; description = "High-level interface to CCTools' WorkQueue library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {dttools = null;}; "cedict" = callPackage @@ -48809,6 +50102,7 @@ self: { jailbreak = true; description = "Convenient Chinese phrase & character lookup"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cef" = callPackage @@ -48848,6 +50142,7 @@ self: { homepage = "https://github.com/anchor/ceilometer-common"; description = "Common Haskell types and encoding for OpenStack Ceilometer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cellrenderer-cairo" = callPackage @@ -48890,6 +50185,7 @@ self: { homepage = "http://github.com/yogsototh/cerberus#readme"; description = "Protect and control API access with cerberus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cereal_0_4_1_0" = callPackage @@ -49042,6 +50338,7 @@ self: { libraryHaskellDepends = [ base bytestring cereal enumerator ]; description = "Deserialize things with cereal and enumerator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cereal-ieee754" = callPackage @@ -49055,6 +50352,7 @@ self: { homepage = "http://github.com/jystic/cereal-ieee754"; description = "Floating point support for the 'cereal' serialization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cereal-plus" = callPackage @@ -49080,16 +50378,16 @@ self: { homepage = "https://github.com/nikita-volkov/cereal-plus"; description = "An extended serialization library on top of \"cereal\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cereal-text" = callPackage ({ mkDerivation, base, cereal, text }: mkDerivation { pname = "cereal-text"; - version = "0.1.0.1"; - sha256 = "f86a00086d5f2cdfc652912a6e7e95946a414fedd1603549f50ead68d62757f3"; + version = "0.1.0.2"; + sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; libraryHaskellDepends = [ base cereal text ]; - jailbreak = true; homepage = "https://github.com/ulikoehler/cereal-text"; description = "Data.Text instances for the cereal serialization library"; license = stdenv.lib.licenses.asl20; @@ -49129,6 +50427,7 @@ self: { homepage = "http://github.com/vincenthz/hs-certificate"; description = "Certificates and Key Reader/Writer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cf" = callPackage @@ -49147,6 +50446,7 @@ self: { homepage = "http://github.com/mvr/cf"; description = "Exact real arithmetic using continued fractions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cfipu" = callPackage @@ -49165,6 +50465,7 @@ self: { homepage = "https://github.com/bairyn/cfipu"; description = "cfipu processor for toy brainfuck-like language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cflp" = callPackage @@ -49184,6 +50485,7 @@ self: { homepage = "http://www-ps.informatik.uni-kiel.de/~sebf/projects/cflp.html"; description = "Constraint Functional-Logic Programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cfopu" = callPackage @@ -49201,6 +50503,7 @@ self: { ]; description = "cfopu processor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cg" = callPackage @@ -49242,6 +50545,7 @@ self: { homepage = "http://anttisalonen.github.com/cgen"; description = "generates Haskell bindings and C wrappers for C++ libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cgi_3001_2_2_2" = callPackage @@ -49324,6 +50628,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-cgi-utils"; description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cgrep" = callPackage @@ -49394,6 +50699,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/ChalkBoard"; description = "Combinators for building and processing 2D images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chalkboard-viewer" = callPackage @@ -49407,6 +50713,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/chalkboard.php"; description = "OpenGL based viewer for chalkboard rendered images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chalmers-lava2000" = callPackage @@ -49470,6 +50777,7 @@ self: { homepage = "https://github.com/soostone/charade"; description = "Rapid prototyping websites with Snap and Heist"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "charset_0_3_7" = callPackage @@ -49598,6 +50906,7 @@ self: { homepage = "http://github.com/creswick/chatter"; description = "A library of simple NLP algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chatty" = callPackage @@ -49617,6 +50926,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Some monad transformers and typeclasses for abstraction of global dependencies"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chatty-text" = callPackage @@ -49630,6 +50940,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/chatty"; description = "Provides some classes and types for dealing with text, using the fundaments of Chatty"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chatty-utils" = callPackage @@ -49778,6 +51089,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Import_modules_properly"; description = "Check whether module and package imports conform to the PVP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "checked" = callPackage @@ -49789,6 +51101,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Bounds-checking integer types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "checkers_0_4_1" = callPackage @@ -49888,6 +51201,7 @@ self: { homepage = "https://john-millikin.com/software/chell/"; description = "HUnit support for the Chell testing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chell-quickcheck_0_2_4" = callPackage @@ -49946,6 +51260,7 @@ self: { jailbreak = true; description = "Query interface for Chevalier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chorale" = callPackage @@ -49964,6 +51279,7 @@ self: { homepage = "https://github.com/mocnik-science/chorale"; description = "A module containing basic functions that the prelude does not offer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chp" = callPackage @@ -49980,6 +51296,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "An implementation of concurrency ideas from Communicating Sequential Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chp-mtl" = callPackage @@ -49993,6 +51310,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "MTL class instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chp-plus" = callPackage @@ -50010,6 +51328,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A set of high-level concurrency utilities built on Communicating Haskell Processes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chp-spec" = callPackage @@ -50027,6 +51346,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "A mirror implementation of chp that generates a specification of the program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chp-transformers" = callPackage @@ -50040,6 +51360,7 @@ self: { homepage = "http://www.cs.kent.ac.uk/projects/ofa/chp/"; description = "Transformers instances for the CHP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chronograph" = callPackage @@ -50090,6 +51411,7 @@ self: { homepage = "http://github.com/marcotmarcot/chuchu"; description = "Behaviour Driven Development like Cucumber for Haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "chunked-data_0_1_0_1" = callPackage @@ -50140,6 +51462,7 @@ self: { homepage = "http://www.wellquite.org/chunks/"; description = "Simple template library with static safety"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "chunky" = callPackage @@ -50181,6 +51504,7 @@ self: { homepage = "http://tomahawkins.org"; description = "An interface to CIL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cinvoke" = callPackage @@ -50194,6 +51518,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Library/cinvoke"; description = "A binding to cinvoke"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cinvoke = null;}; "cio" = callPackage @@ -50206,6 +51531,7 @@ self: { homepage = "https://github.com/nikita-volkov/cio"; description = "A monad for concurrent IO on a thread pool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cipher-aes_0_2_9" = callPackage @@ -50518,6 +51844,7 @@ self: { homepage = "https://github.com/nushio3/citation-resolve"; description = "convert document IDs such as DOI, ISBN, arXiv ID to bibliographic reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "citeproc-hs" = callPackage @@ -50538,6 +51865,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs/"; description = "A Citation Style Language implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "citeproc-hs-pandoc-filter" = callPackage @@ -50558,6 +51886,7 @@ self: { homepage = "http://istitutocolli.org/repos/citeproc-hs-pandoc-filter/"; description = "A Pandoc filter for processing bibliographic references with citeproc-hs"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cityhash" = callPackage @@ -50593,6 +51922,7 @@ self: { homepage = "http://github.com/batterseapower/cjk"; description = "Data about Chinese, Japanese and Korean characters and languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clac" = callPackage @@ -50647,6 +51977,7 @@ self: { homepage = "http://clafer.org"; description = "Compiles Clafer models to other formats: Alloy, JavaScript, JSON, HTML, Dot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "claferIG" = callPackage @@ -50680,6 +52011,7 @@ self: { homepage = "http://clafer.org"; description = "claferIG is an interactive tool that generates instances of Clafer models"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "claferwiki" = callPackage @@ -50700,6 +52032,7 @@ self: { homepage = "http://github.com/gsdlab/claferwiki"; description = "A wiki-based IDE for literate modeling with Clafer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clang-pure" = callPackage @@ -50774,6 +52107,7 @@ self: { homepage = "http://clash.ewi.utwente.nl/"; description = "CAES Language for Synchronous Hardware (CLaSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clash-ghc_0_5_11" = callPackage @@ -51085,6 +52419,7 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clash-lib_0_5_10" = callPackage @@ -51484,6 +52819,7 @@ self: { jailbreak = true; description = "QuickCheck instances for various types in the CλaSH Prelude"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clash-systemverilog_0_5_7" = callPackage @@ -52952,6 +54288,7 @@ self: { 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-cli" = callPackage @@ -52970,6 +54307,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "a command-line interface for adminstrating some aspects of clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-dot-com" = callPackage @@ -52993,6 +54331,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "clckwrks.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-bugs" = callPackage @@ -53019,6 +54358,7 @@ self: { homepage = "http://clckwrks.com/"; description = "bug tracking plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-ircbot" = callPackage @@ -53043,6 +54383,7 @@ self: { homepage = "http://clckwrks.com/"; description = "ircbot plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-media" = callPackage @@ -53066,6 +54407,7 @@ self: { homepage = "http://clckwrks.com/"; description = "media plugin for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-plugin-page_0_4_3" = callPackage @@ -53117,6 +54459,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "support for CMS/Blogging in clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-bootstrap" = callPackage @@ -53134,6 +54477,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-clckwrks" = callPackage @@ -53151,6 +54495,7 @@ self: { homepage = "http://www.clckwrks.com/"; description = "simple bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clckwrks-theme-geo-bootstrap" = callPackage @@ -53164,6 +54509,7 @@ self: { homepage = "http://divshot.github.com/geo-bootstrap/"; description = "geo bootstrap based template for clckwrks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cld2" = callPackage @@ -53195,6 +54541,7 @@ self: { homepage = "https://github.com/ivanperez-keera/clean-home"; description = "Keep your home dir clean by finding old conf files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clean-unions" = callPackage @@ -53207,6 +54554,7 @@ self: { homepage = "https://github.com/fumieval/clean-unions"; description = "Open unions without need for Typeable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cless" = callPackage @@ -53242,6 +54590,7 @@ self: { homepage = "http://sandbox.pocoo.org/clevercss-hs/"; description = "A CSS preprocessor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cli" = callPackage @@ -53278,6 +54627,7 @@ self: { jailbreak = true; description = "Toy game (tetris on billiard board). Hipmunk in action."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clientsession" = callPackage @@ -53335,6 +54685,7 @@ self: { homepage = "http://github.com/spacekitteh/haskell-clifford"; description = "A Clifford algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clippard" = callPackage @@ -53360,6 +54711,7 @@ self: { homepage = "https://github.com/chetant/clipper"; description = "Haskell API to clipper (2d polygon union/intersection/xor/clipping API)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clippings" = callPackage @@ -53384,6 +54736,7 @@ self: { ]; description = "A parser/generator for Kindle-format clipping files (`My Clippings.txt`),"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clist" = callPackage @@ -53516,6 +54869,7 @@ self: { homepage = "http://patch-tag.com/r/shahn/clocked/home"; description = "timer functionality to clock IO commands"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {QtCore = null;}; "clogparse" = callPackage @@ -53532,6 +54886,7 @@ self: { ]; description = "Parse IRC logs such as the #haskell logs on tunes.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clone-all" = callPackage @@ -53553,6 +54908,7 @@ self: { homepage = "https://github.com/silky/clone-all"; description = "Clone all github repositories from a given user"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "closure" = callPackage @@ -53591,6 +54947,7 @@ self: { homepage = "http://github.com/haskell-distributed/cloud-haskell"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cloudfront-signer" = callPackage @@ -53608,6 +54965,7 @@ self: { homepage = "http://github.com/cdornan/cloudfront-signer"; description = "CloudFront URL signer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cloudyfs" = callPackage @@ -53628,6 +54986,7 @@ self: { homepage = "https://github.com/bhickey/cloudyfs"; description = "A cloud in the file system"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cltw" = callPackage @@ -53660,6 +55019,7 @@ self: { homepage = "http://zwizwa.be/-/meta"; description = "C to Lua data wrapper generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clumpiness" = callPackage @@ -53683,6 +55043,7 @@ self: { homepage = "https://github.com/Kinokkory/cluss"; description = "simple alternative to type classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "clustering" = callPackage @@ -53723,6 +55084,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Tools for manipulating sequence clusters"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "clutterhs" = callPackage @@ -53740,6 +55102,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Bindings to the Clutter animation library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) clutter; inherit (pkgs.gnome) pango;}; "cmaes" = callPackage @@ -53841,6 +55204,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cmath"; description = "A binding to the standard C math library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cmathml3" = callPackage @@ -53860,6 +55224,7 @@ self: { executableHaskellDepends = [ base Cabal filepath ]; description = "Data model, parser, serialiser and transformations for Content MathML 3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cmd-item" = callPackage @@ -53956,6 +55321,7 @@ self: { homepage = "http://community.haskell.org/~ndm/cmdargs/"; description = "Helper to enter cmdargs command lines using a web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cmdlib" = callPackage @@ -53992,6 +55358,7 @@ self: { homepage = "http://github.com/eli-frey/cmdtheline"; description = "Declarative command-line option parsing and documentation library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cml" = callPackage @@ -54015,6 +55382,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "A library for C-like programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cmph" = callPackage @@ -54033,6 +55401,7 @@ self: { testSystemDepends = [ cmph ]; description = "low level interface to CMPH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cmph = null;}; "cmu" = callPackage @@ -54068,18 +55437,20 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Compiler/Translator for CnC Specification Files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cndict" = callPackage ({ mkDerivation, array, base, bytestring, text }: mkDerivation { pname = "cndict"; - version = "0.7.5"; - sha256 = "e543fd14b60dd1fece431f4ac85bfd86dce5267af646312691e2e015ef182b24"; + version = "0.7.8"; + sha256 = "10574f4cd8b67667598b13398907b73c109853382795895fb1487ef05a83cd7f"; libraryHaskellDepends = [ array base bytestring text ]; homepage = "https://github.com/Lemmih/cndict"; description = "Chinese/Mandarin <-> English dictionary, Chinese lexer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "code-builder" = callPackage @@ -54114,6 +55485,7 @@ self: { homepage = "https://github.com/chpatrick/codec"; description = "First-class record construction and bidirectional serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "codec-libevent" = callPackage @@ -54136,6 +55508,7 @@ self: { ]; description = "Cross-platform structure serialisation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "codec-mbox" = callPackage @@ -54170,6 +55543,7 @@ self: { homepage = "https://github.com/guillaume-nargeot/codecov-haskell"; description = "Codecov.io support for Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "codemonitor" = callPackage @@ -54189,6 +55563,7 @@ self: { homepage = "http://github.com/rickardlindberg/codemonitor"; description = "Tool that automatically runs arbitrary commands when files change on disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "codepad" = callPackage @@ -54204,6 +55579,7 @@ self: { homepage = "http://github.com/chrisdone/codepad"; description = "Submit and retrieve paste output from CodePad.org."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "codex_0_3_0_8" = callPackage @@ -54371,6 +55747,7 @@ self: { homepage = "http://github.com/aloiscochard/codex"; description = "A ctags file generator for cabal project dependencies"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "codo-notation" = callPackage @@ -54424,6 +55801,7 @@ self: { homepage = "https://github.com/Cognimeta/cognimeta-utils"; description = "Utilities for Cognimeta products (such as perdure). API may change often."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coin" = callPackage @@ -54449,6 +55827,7 @@ self: { homepage = "https://bitbucket.org/borekpiotr/coin"; description = "Simple account manager"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coinbase-exchange" = callPackage @@ -54487,6 +55866,7 @@ self: { ]; description = "Connector library for the coinbase exchange"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "colada" = callPackage @@ -54512,6 +55892,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Colada implements incremental word class class induction using online LDA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "colchis" = callPackage @@ -54548,6 +55929,7 @@ self: { jailbreak = true; description = "Generate animated 3d objects in COLLADA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collada-types" = callPackage @@ -54564,6 +55946,7 @@ self: { jailbreak = true; description = "Data exchange between graphic applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "collapse-util" = callPackage @@ -54606,6 +55989,7 @@ self: { jailbreak = true; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "collections-api" = callPackage @@ -54618,6 +56002,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "API for collection data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "collections-base-instances" = callPackage @@ -54634,6 +56019,7 @@ self: { homepage = "http://code.haskell.org/collections/"; description = "Useful standard collections types and related functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "colock" = callPackage @@ -54669,6 +56055,7 @@ self: { homepage = "https://bitbucket.org/functionally/color-counter"; description = "Count colors in images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "colorize-haskell" = callPackage @@ -54728,6 +56115,7 @@ self: { homepage = "https://github.com/wellecks/coltrane"; description = "A jazzy, minimal web framework for Haskell, inspired by Sinatra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "com" = callPackage @@ -54739,6 +56127,7 @@ self: { doHaddock = false; description = "Haskell COM support library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "combinat" = callPackage @@ -54759,6 +56148,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Generate and manipulate various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinat-diagrams" = callPackage @@ -54776,6 +56166,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Graphical representations for various combinatorial objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "combinator-interactive" = callPackage @@ -54799,6 +56190,7 @@ self: { homepage = "https://github.com/fumieval/combinator-interactive"; description = "SKI Combinator interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "combinatorial-problems" = callPackage @@ -54815,6 +56207,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellCombinatorialProblems"; description = "A number of data structures to represent and allow the manipulation of standard combinatorial problems, used as test problems in computer science"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "combinatorics" = callPackage @@ -54844,6 +56237,7 @@ self: { homepage = "https://github.com/JohnLato/combobuffer"; description = "Various buffer implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "comfort-graph" = callPackage @@ -54864,6 +56258,7 @@ self: { homepage = "http://hub.darcs.net/thielema/comfort-graph"; description = "Graph structure with type parameters for nodes and edges"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "command" = callPackage @@ -54931,6 +56326,7 @@ self: { jailbreak = true; description = "Library for working with commoditized amounts and price histories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "commsec" = callPackage @@ -54946,6 +56342,7 @@ self: { ]; description = "Provide communications security using symmetric ephemeral keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "commsec-keyexchange" = callPackage @@ -54965,6 +56362,7 @@ self: { homepage = "https://github.com/TomMD/commsec-keyExchange"; description = "Key agreement for commsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "commutative" = callPackage @@ -55149,6 +56547,7 @@ self: { homepage = "http://github.com/ekmett/comonad-extras/"; description = "Exotic comonad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "comonad-random" = callPackage @@ -55161,6 +56560,7 @@ self: { jailbreak = true; description = "Comonadic interface for random values"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "comonad-transformers" = callPackage @@ -55202,6 +56602,7 @@ self: { ]; description = "Compact Data.Map implementation using Data.Binary"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "compact-socket" = callPackage @@ -55235,6 +56636,7 @@ self: { homepage = "http://twan.home.fmf.nl/compact-string/"; description = "Fast, packed and strict strings with Unicode support, based on bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compact-string-fix" = callPackage @@ -55265,7 +56667,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "compactmap" = callPackage + "compactmap_0_1_4" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: mkDerivation { pname = "compactmap"; @@ -55277,9 +56679,10 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A read-only memory-efficient key-value store"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "compactmap_0_1_4_1" = callPackage + "compactmap" = callPackage ({ mkDerivation, base, containers, hspec, QuickCheck, vector }: mkDerivation { pname = "compactmap"; @@ -55289,7 +56692,6 @@ self: { testHaskellDepends = [ base containers hspec QuickCheck ]; description = "A read-only memory-efficient key-value store"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "compare-type" = callPackage @@ -55391,6 +56793,7 @@ self: { jailbreak = true; description = "Tree automata on Compositional Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "compdata-dags" = callPackage @@ -55413,6 +56816,7 @@ self: { jailbreak = true; description = "Compositional Data Types on DAGs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "compdata-param" = callPackage @@ -55484,6 +56888,7 @@ self: { homepage = "http://github.com/analytics/compensated/"; description = "Compensated floating-point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "competition" = callPackage @@ -55508,6 +56913,7 @@ self: { libraryHaskellDepends = [ base MissingH ]; description = "Haskell functionality for quickly assembling simple compilers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "complex-generic" = callPackage @@ -55520,6 +56926,7 @@ self: { homepage = "https://gitorious.org/complex-generic"; description = "complex numbers with non-mandatory RealFloat"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "complex-integrate" = callPackage @@ -55549,6 +56956,7 @@ self: { jailbreak = true; description = "Empirical algorithmic complexity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "compose-ltr" = callPackage @@ -55573,6 +56981,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Composable monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "composition_1_0_1_0" = callPackage @@ -55703,6 +57112,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/compression/"; description = "Common compression algorithms"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "compstrat" = callPackage @@ -55719,6 +57129,7 @@ self: { jailbreak = true; description = "Strategy combinators for compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "comptrans" = callPackage @@ -55738,6 +57149,7 @@ self: { homepage = "https://github.com/jkoppel/comptrans"; description = "Automatically converting ASTs into compositional data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "computational-algebra" = callPackage @@ -55757,6 +57169,7 @@ self: { homepage = "https://github.com/konn/computational-algebra"; description = "Well-kinded computational algebra library, currently supporting Groebner basis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "computations" = callPackage @@ -55831,6 +57244,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological disambiguation based on constrained CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-hr" = callPackage @@ -55853,6 +57267,7 @@ self: { homepage = "https://github.com/vjeranc/concraft-hr"; description = "Part-of-speech tagger for Croatian"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concraft-pl" = callPackage @@ -55875,6 +57290,7 @@ self: { homepage = "http://zil.ipipan.waw.pl/Concraft"; description = "Morphological tagger for Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concrete-relaxng-parser" = callPackage @@ -55913,6 +57329,7 @@ self: { jailbreak = true; description = "Binary and Hashable instances for TypeRep"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "concurrent-barrier" = callPackage @@ -56034,6 +57451,7 @@ self: { ]; description = "Concurrent networked stream transducers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "concurrent-output_1_7_3" = callPackage @@ -56135,6 +57553,7 @@ self: { homepage = "https://github.com/joelteon/concurrent-state"; description = "MTL-like library using TVars"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "concurrent-supply_0_1_7" = callPackage @@ -56237,6 +57656,7 @@ self: { homepage = "https://github.com/klangner/Condor"; description = "Information retrieval library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "condorcet" = callPackage @@ -56249,6 +57669,7 @@ self: { homepage = "http://neugierig.org/software/darcs/condorcet"; description = "Library for Condorcet voting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "conductive-base" = callPackage @@ -56291,6 +57712,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=conductive-hsc3"; description = "a library with examples of using Conductive with hsc3"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "conductive-song" = callPackage @@ -56620,6 +58042,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the LAME MP3 library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {mp3lame = null;}; "conduit-audio-samplerate" = callPackage @@ -56639,6 +58062,7 @@ self: { homepage = "http://github.com/mtolly/conduit-audio"; description = "conduit-audio interface to the libsamplerate resampling library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {samplerate = null;}; "conduit-audio-sndfile" = callPackage @@ -57291,6 +58715,7 @@ self: { ]; description = "A base layer for network protocols using Conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "conduit-parse_0_1_1_0" = callPackage @@ -57350,6 +58775,7 @@ self: { homepage = "http://github.com/A1kmm/conduit-resumablesink"; description = "Allows conduit to resume sinks to feed multiple sources into it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "conduit-tokenize-attoparsec" = callPackage @@ -57408,6 +58834,7 @@ self: { homepage = "https://gitlab.com/guyonvarch/config-manager"; description = "Configuration management"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "config-select" = callPackage @@ -57423,6 +58850,7 @@ self: { ]; description = "A small program for swapping out dot files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "config-value" = callPackage @@ -57647,6 +59075,7 @@ self: { ]; description = "A BitTorrent client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "conlogger" = callPackage @@ -57762,6 +59191,7 @@ self: { testHaskellDepends = [ base lifted-async transformers ]; description = "Eventually consistent STM transactions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "console-program" = callPackage @@ -57793,6 +59223,7 @@ self: { homepage = "https://github.com/kfish/const-math-ghc-plugin"; description = "Compiler plugin for constant math elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "constrained-categories" = callPackage @@ -57805,6 +59236,7 @@ self: { homepage = "https://github.com/leftaroundabout/constrained-categories"; description = "Constrained clones of the category-theory type classes, using ConstraintKinds"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constrained-normal" = callPackage @@ -57943,6 +59375,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/constructible/"; description = "Exact computation with constructible real numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "constructive-algebra" = callPackage @@ -57955,6 +59388,7 @@ self: { jailbreak = true; description = "A library of constructive algebra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "consul-haskell_0_1" = callPackage @@ -58045,6 +59479,7 @@ self: { homepage = "https://github.com/scrive/consumers"; description = "Concurrent PostgreSQL data consumers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "container" = callPackage @@ -58065,6 +59500,7 @@ self: { homepage = "https://github.com/wdanilo/containers"; description = "Containers abstraction and utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "container-builder" = callPackage @@ -58203,6 +59639,7 @@ self: { homepage = "http://github.com/thinkpad20/context-stack"; description = "An abstraction of a stack and stack-based monadic context"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "continue" = callPackage @@ -58220,6 +59657,7 @@ self: { jailbreak = true; description = "Monads with suspension and arbitrary-spot reentry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "continued-fractions" = callPackage @@ -58256,6 +59694,7 @@ self: { ]; executableSystemDepends = [ hyperleveldb ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {hyperleveldb = null;}; "continuum-client" = callPackage @@ -58510,6 +59949,7 @@ self: { libraryHaskellDepends = [ base containers stm time ]; description = "Event scheduling system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "control-monad-attempt" = callPackage @@ -58523,6 +59963,7 @@ self: { homepage = "http://github.com/snoyberg/control-monad-attempt"; description = "Monad transformer for attempt. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "control-monad-exception" = callPackage @@ -58598,6 +60039,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error. (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "control-monad-failure-mtl" = callPackage @@ -58611,6 +60053,7 @@ self: { homepage = "http://github.com/pepeiborra/control-monad-failure"; description = "A class for monads which can fail with an error for mtl 1 (deprecated)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "control-monad-free_0_5_3" = callPackage @@ -58707,6 +60150,7 @@ self: { libraryHaskellDepends = [ base contstuff monads-tf ]; description = "ContStuff instances for monads-tf transformers (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "contstuff-transformers" = callPackage @@ -58719,6 +60163,7 @@ self: { jailbreak = true; description = "Deprecated interface between contstuff 0.7.0 and the transformers package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "converge" = callPackage @@ -58802,6 +60247,7 @@ self: { homepage = "https://github.com/wdanilo/convert"; description = "Safe and unsafe data conversion utilities with strong type-level operation. checking."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "convertible_1_1_0_0" = callPackage @@ -58859,6 +60305,7 @@ self: { homepage = "https://github.com/phonohawk/convertible-ascii"; description = "convertible instances for ascii"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "convertible-text" = callPackage @@ -58879,6 +60326,7 @@ self: { homepage = "http://github.com/snoyberg/convertible/tree/text"; description = "Typeclasses and instances for converting between types (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cookbook" = callPackage @@ -59028,6 +60476,7 @@ self: { homepage = "http://leepike.github.com/Copilot/"; description = "A stream DSL for writing embedded C programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-c99" = callPackage @@ -59066,6 +60515,7 @@ self: { ]; description = "Copilot interface to a C model-checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-core" = callPackage @@ -59099,6 +60549,7 @@ self: { ]; description = "A Haskell-embedded DSL for monitoring hard real-time distributed systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "copilot-libraries" = callPackage @@ -59115,6 +60566,7 @@ self: { homepage = "https://github.com/leepike/copilot-libraries"; description = "Libraries for the Copilot language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "copilot-sbv" = callPackage @@ -59130,6 +60582,7 @@ self: { ]; description = "A compiler for CoPilot targeting SBV"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "copilot-theorem" = callPackage @@ -59147,6 +60600,7 @@ self: { ]; description = "k-induction for Copilot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "copr" = callPackage @@ -59179,6 +60633,7 @@ self: { libraryHaskellDepends = [ base bytestring parsec pretty ]; description = "External core parser and pretty printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "core-haskell" = callPackage @@ -59195,6 +60650,7 @@ self: { homepage = "https://github.com/happlebao/Core-Haskell"; description = "A subset of Haskell using in UCC for teaching purpose"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "corebot-bliki" = callPackage @@ -59221,6 +60677,7 @@ self: { homepage = "http://github.com/coreyoconnor/corebot-bliki"; description = "A bliki written using yesod. Uses pandoc to process files stored in git."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-enumerator" = callPackage @@ -59247,6 +60704,7 @@ self: { homepage = "http://trac.haskell.org/SCC/wiki/coroutine-iteratee"; description = "Bridge between the monad-coroutine and iteratee packages"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "coroutine-object" = callPackage @@ -59277,6 +60735,7 @@ self: { jailbreak = true; description = "A CouchDB view server for Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "couch-simple" = callPackage @@ -59304,6 +60763,7 @@ self: { homepage = "https://github.com/mdorman/couch-simple"; description = "A modern, lightweight, complete client for CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) couchdb;}; "couchdb-conduit" = callPackage @@ -59335,6 +60795,7 @@ self: { homepage = "https://github.com/akaspin/couchdb-conduit"; description = "Couch DB client library using http-conduit and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "couchdb-enumerator" = callPackage @@ -59364,6 +60825,7 @@ self: { homepage = "http://bitbucket.org/wuzzeb/couchdb-enumerator"; description = "Couch DB client library using http-enumerator and aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "count" = callPackage @@ -59532,6 +60994,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/court"; description = "Simple and flexible CI system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "coverage" = callPackage @@ -59566,6 +61029,7 @@ self: { homepage = "http://github.com/da-x/cpio-conduit"; description = "Conduit-based CPIO"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cplex-hs" = callPackage @@ -59583,6 +61047,7 @@ self: { homepage = "https://github.com/stefan-j/cplex-haskell"; description = "high-level CPLEX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cplex = null;}; "cplusplus-th" = callPackage @@ -59601,6 +61066,7 @@ self: { homepage = "https://github.com/nicta/cplusplus-th"; description = "C++ Foreign Import Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cpphs_1_18_6" = callPackage @@ -59819,6 +61285,7 @@ self: { executableHaskellDepends = [ array base containers parallel ]; description = "Symbolic cryptographic protocol analyzer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cpu" = callPackage @@ -59861,6 +61328,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/cpuperf"; description = "Modify the cpu frequency on OpenBSD systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cpython" = callPackage @@ -59946,6 +61414,7 @@ self: { homepage = "https://github.com/twittner/cql/"; description = "Cassandra CQL binary protocol"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cql-io_0_14_5" = callPackage @@ -59993,6 +61462,7 @@ self: { homepage = "https://github.com/twittner/cql-io/"; description = "Cassandra CQL client"; license = stdenv.lib.licenses.mpl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cqrs" = callPackage @@ -60084,6 +61554,7 @@ self: { jailbreak = true; description = "PostgreSQL backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cqrs-sqlite3" = callPackage @@ -60105,6 +61576,7 @@ self: { jailbreak = true; description = "SQLite3 backend for the cqrs package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cqrs-test" = callPackage @@ -60122,6 +61594,7 @@ self: { jailbreak = true; description = "Command-Query Responsibility Segregation Test Support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cqrs-testkit" = callPackage @@ -60170,6 +61643,7 @@ self: { homepage = "https://github.com/scvalex/cr"; description = "Code review tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crack" = callPackage @@ -60182,6 +61656,7 @@ self: { librarySystemDepends = [ crack ]; description = "A haskell binding to cracklib"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {crack = null;}; "crackNum_1_3" = callPackage @@ -60190,6 +61665,8 @@ self: { pname = "crackNum"; version = "1.3"; sha256 = "48ec1bfd16da67ab655a2cd2fdbc12c4df6fb6f50f60e6964a86debdf9a76a19"; + revision = "1"; + editedCabalFile = "205bec731aae005dec5f0c08ceebc78a20f8b45e00be05d50d3b2ed1787e04fd"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-binary-ieee754 ieee754 ]; @@ -60205,6 +61682,8 @@ self: { pname = "crackNum"; version = "1.5"; sha256 = "ef41fe4afa6866a578b17f84ee231ed70493696fdca9fe54341e124215c1e205"; + revision = "1"; + editedCabalFile = "a8b9973ada5a3b5afbebd90991cf8913dc3f4c0f795ce8ebe61a0d4ff2802e13"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-binary-ieee754 ieee754 ]; @@ -60226,6 +61705,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "2D graphics library with integrated TikZ output"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "craftwerk-cairo" = callPackage @@ -60239,6 +61719,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Cairo backend for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "craftwerk-gtk" = callPackage @@ -60258,6 +61739,7 @@ self: { homepage = "http://mahrz.github.com/craftwerk.html"; description = "Gtk UI for Craftwerk"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "craze" = callPackage @@ -60286,6 +61768,7 @@ self: { homepage = "https://github.com/etcinit/craze#readme"; description = "HTTP Racing Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crc" = callPackage @@ -60303,6 +61786,7 @@ self: { homepage = "http://github.com/MichaelXavier/crc"; description = "Implements various Cyclic Redundancy Checks (CRC)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crc16" = callPackage @@ -60314,6 +61798,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Calculate the crc16-ccitt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crc16-table" = callPackage @@ -60352,6 +61837,7 @@ self: { homepage = "https://github.com/mhwombat/creatur"; description = "Framework for artificial life experiments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crf-chain1" = callPackage @@ -60373,6 +61859,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1"; description = "First-order, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain1-constrained" = callPackage @@ -60391,6 +61878,7 @@ self: { homepage = "https://github.com/kawu/crf-chain1-constrained"; description = "First-order, constrained, linear-chain conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-generic" = callPackage @@ -60410,6 +61898,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-generic"; description = "Second-order, generic, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "crf-chain2-tiers" = callPackage @@ -60429,6 +61918,7 @@ self: { homepage = "https://github.com/kawu/crf-chain2-tiers"; description = "Second-order, tiered, constrained, linear conditional random fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "critbit" = callPackage @@ -60576,6 +62066,7 @@ self: { homepage = "https://github.com/nikita-volkov/criterion-plus"; description = "Enhancement of the \"criterion\" benchmarking library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "criterion-to-html" = callPackage @@ -60625,6 +62116,7 @@ self: { homepage = "https://github.com/TomHammersley/HaskellRenderer/"; description = "An offline renderer supporting ray tracing and photon mapping"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cron_0_3_0" = callPackage @@ -60693,6 +62185,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "cron_0_4_1_1" = callPackage + ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat + , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit + , tasty-quickcheck, text, time, transformers-compat + }: + mkDerivation { + pname = "cron"; + version = "0.4.1.1"; + sha256 = "8983167e4bd73672cf29920d27737b3d2324ee897db62f59e0254ac2568960ce"; + libraryHaskellDepends = [ + attoparsec base mtl mtl-compat old-locale semigroups text time + ]; + testHaskellDepends = [ + attoparsec base derive quickcheck-instances semigroups tasty + tasty-hunit tasty-quickcheck text time transformers-compat + ]; + homepage = "http://github.com/michaelxavier/cron"; + description = "Cron datatypes and Attoparsec parser"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "cron-compat" = callPackage ({ mkDerivation, attoparsec, base, cron, derive, hspec , hspec-expectations, mtl, mtl-compat, old-locale, QuickCheck, text @@ -60714,6 +62228,7 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cruncher-types" = callPackage @@ -60727,6 +62242,7 @@ self: { homepage = "http://github.com/eval-so/cruncher-types"; description = "Request and Response types for Eval.so's API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crunghc" = callPackage @@ -60746,6 +62262,7 @@ self: { jailbreak = true; description = "A runghc replacement with transparent caching"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crypto-api" = callPackage @@ -60798,6 +62315,7 @@ self: { homepage = "http://github.com/vincenthz/hs-crypto-cipher"; description = "Generic cryptography cipher benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crypto-cipher-tests" = callPackage @@ -60853,6 +62371,7 @@ self: { homepage = "https://github.com/fosskers/crypto-classical"; description = "An educational tool for studying classical cryptography schemes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crypto-conduit" = callPackage @@ -60894,6 +62413,7 @@ self: { homepage = "https://github.com/orome/crypto-enigma-hs"; description = "An Enigma machine simulator with display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crypto-numbers_0_2_3" = callPackage @@ -61507,6 +63027,7 @@ self: { homepage = "http://www.cryptol.net/"; description = "Cryptol: The Language of Cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cryptonite_0_6" = callPackage @@ -61553,7 +63074,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cryptonite" = callPackage + "cryptonite_0_15" = callPackage ({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim , integer-gmp, memory, tasty, tasty-hunit, tasty-kat , tasty-quickcheck @@ -61572,6 +63093,28 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite"; description = "Cryptography Primitives sink"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "cryptonite" = callPackage + ({ mkDerivation, base, byteable, bytestring, deepseq, ghc-prim + , integer-gmp, memory, tasty, tasty-hunit, tasty-kat + , tasty-quickcheck + }: + mkDerivation { + pname = "cryptonite"; + version = "0.16"; + sha256 = "5c3bf190954986ea4af466914eb7a0c55a0b4c1c66552d00341277c89082511a"; + libraryHaskellDepends = [ + base bytestring deepseq ghc-prim integer-gmp memory + ]; + testHaskellDepends = [ + base byteable bytestring memory tasty tasty-hunit tasty-kat + tasty-quickcheck + ]; + homepage = "https://github.com/haskell-crypto/cryptonite"; + description = "Cryptography Primitives sink"; + license = stdenv.lib.licenses.bsd3; }) {}; "cryptonite-conduit" = callPackage @@ -61608,6 +63151,7 @@ self: { homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; description = "Crypto stuff using OpenSSL cryptographic library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl;}; "cryptsy-api" = callPackage @@ -61628,6 +63172,7 @@ self: { jailbreak = true; description = "Bindings for Cryptsy cryptocurrency exchange API"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "crystalfontz" = callPackage @@ -61639,6 +63184,7 @@ self: { libraryHaskellDepends = [ base crc16-table MaybeT serialport ]; description = "Control Crystalfontz LCD displays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cse-ghc-plugin" = callPackage @@ -61651,6 +63197,7 @@ self: { homepage = "http://thoughtpolice.github.com/cse-ghc-plugin"; description = "Compiler plugin for common subexpression elimination"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "csound-catalog" = callPackage @@ -61765,6 +63312,7 @@ self: { testHaskellDepends = [ base nondeterminism tasty tasty-hunit ]; description = "Discrete constraint satisfaction problem (CSP) solver"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cspmchecker" = callPackage @@ -61782,6 +63330,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A command line type checker for CSPM files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "css" = callPackage @@ -61793,6 +63342,7 @@ self: { libraryHaskellDepends = [ base mtl text ]; description = "Minimal monadic CSS DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "css-syntax_0_0_4" = callPackage @@ -61922,6 +63472,7 @@ self: { homepage = "http://github.com/ozataman/csv-conduit"; description = "A flexible, fast, conduit-based CSV parser library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "csv-enumerator" = callPackage @@ -62001,6 +63552,7 @@ self: { homepage = "http://darcs.imperialviolet.org/ctemplate"; description = "Binding to the Google ctemplate library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {ctemplate = null;}; "ctkl" = callPackage @@ -62013,6 +63565,7 @@ self: { jailbreak = true; description = "packaging of Manuel Chakravarty's CTK Light for Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ctpl" = callPackage @@ -62029,6 +63582,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/ctpl"; description = "A programming language for text modification"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ctrie_0_1_0_3" = callPackage @@ -62123,6 +63677,7 @@ self: { testHaskellDepends = [ base parsec tasty tasty-hunit ]; description = "Efficient manipulating of 2D cubic bezier curves"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cubicspline_0_1_1" = callPackage @@ -62182,6 +63737,7 @@ self: { executableHaskellDepends = [ base GLUT Yampa ]; description = "3D Yampa/GLUT Puzzle Game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "cuda" = callPackage @@ -62218,6 +63774,7 @@ self: { homepage = "https://github.com/adamwalker/haskell_cudd"; description = "Bindings to the CUDD binary decision diagrams library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cudd = null; dddmp = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -62315,6 +63872,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Functions for manipulating Curry programs"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "curry-frontend" = callPackage @@ -62334,6 +63892,7 @@ self: { homepage = "http://www.curry-language.org"; description = "Compile the functional logic language Curry to several intermediate formats"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cursedcsv" = callPackage @@ -62387,6 +63946,7 @@ self: { ]; description = "Library for drawing curve based images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "custom-prelude" = callPackage @@ -62400,6 +63960,7 @@ self: { homepage = "https://github.com/ajnsit/custom-prelude"; description = "An enhanced prelude, serving as a foundation for my projects"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "cv-combinators" = callPackage @@ -62431,6 +63992,7 @@ self: { jailbreak = true; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "cypher" = callPackage @@ -62451,6 +64013,7 @@ self: { jailbreak = true; description = "Haskell bindings for the neo4j \"cypher\" query language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "d-bus" = callPackage @@ -62481,6 +64044,7 @@ self: { ]; description = "Permissively licensed D-Bus client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "d3d11binding" = callPackage @@ -62642,6 +64206,7 @@ self: { ]; description = "Dao is meta programming language with its own built-in interpreted language, designed with artificial intelligence applications in mind"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dapi" = callPackage @@ -62662,6 +64227,7 @@ self: { homepage = "http://massysett.github.com/dapi"; description = "Prints a series of dates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs_2_10_2" = callPackage @@ -62828,6 +64394,7 @@ self: { homepage = "http://wiki.darcs.net/Development/Benchmarks"; description = "Comparative benchmark suite for darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs-beta" = callPackage @@ -62861,6 +64428,7 @@ self: { homepage = "http://darcs.net/"; description = "a distributed, interactive, smart revision control system"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) curl;}; "darcs-buildpackage" = callPackage @@ -62879,6 +64447,7 @@ self: { ]; description = "Tools to help manage Debian packages with Darcs"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs-cabalized" = callPackage @@ -62900,6 +64469,7 @@ self: { homepage = "http://darcs.net/"; description = "David's Advanced Version Control System"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) curl; inherit (pkgs) ncurses; inherit (pkgs) zlib;}; @@ -62921,6 +64491,7 @@ self: { jailbreak = true; description = "Import/export git fast-import streams to/from darcs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs-graph" = callPackage @@ -62940,6 +64511,7 @@ self: { jailbreak = true; description = "Generate graphs of darcs repository activity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs-monitor" = callPackage @@ -62958,6 +64530,7 @@ self: { homepage = "http://wiki.darcs.net/RelatedSoftware/DarcsMonitor"; description = "Darcs repository monitor (sends email)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcs-scripts" = callPackage @@ -62988,6 +64561,7 @@ self: { jailbreak = true; description = "Outputs dependencies of darcs patches in dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darcsden" = callPackage @@ -63017,6 +64591,7 @@ self: { homepage = "http://hackage.haskell.org/package/darcsden"; description = "Darcs repository UI and hosting/collaboration app (hub.darcs.net branch)."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "darcswatch" = callPackage @@ -63039,6 +64614,7 @@ self: { homepage = "http://darcswatch.nomeata.de/"; description = "Track application of Darcs patches"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darkplaces-demo" = callPackage @@ -63065,6 +64641,7 @@ self: { homepage = "https://github.com/bacher09/darkplaces-demo"; description = "Utility and parser for DarkPlaces demo files"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "darkplaces-rcon" = callPackage @@ -63154,6 +64731,7 @@ self: { homepage = "http://www.github.com/jfeltz/dash-haskell"; description = "Convert package Haddock to Dash docsets (IDE docs)"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-accessor_0_2_2_6" = callPackage @@ -63250,6 +64828,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Record_access"; description = "Utilities for accessing and manipulating fields of records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-accessor-transformers" = callPackage @@ -63336,6 +64915,7 @@ self: { homepage = "http://github.com/sjoerdvisscher/data-category"; description = "Category theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-cell" = callPackage @@ -63411,6 +64991,7 @@ self: { ]; description = "a cyclic doubly linked list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-default_0_5_3" = callPackage @@ -63698,6 +65279,7 @@ self: { homepage = "http://monoid.at/code"; description = "Space-efficient and privacy-preserving data dispersal algorithms"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-dword" = callPackage @@ -63715,6 +65297,7 @@ self: { homepage = "https://github.com/mvv/data-dword"; description = "Stick two binary words together to get a bigger one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-easy" = callPackage @@ -63735,6 +65318,7 @@ self: { homepage = "https://github.com/jcristovao/data-easy"; description = "Consistent set of utility functions for Maybe, Either, List and Monoids"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-embed" = callPackage @@ -63832,6 +65416,7 @@ self: { homepage = "http://code.haskell.org/~wren/"; description = "Finite totally ordered sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-fin-simple" = callPackage @@ -63881,6 +65466,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A package for working with bit masks and flags in general"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-flagset" = callPackage @@ -63918,6 +65504,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "data-function-tacit" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "data-function-tacit"; + version = "0.1.0.0"; + sha256 = "8ab215951769ddd4ab8cd2cec0aa3f2eee9ac3e80b47caf4d57f7fcb2a53b53b"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/erisco/data-function-tacit"; + description = "Write functions in tacit (pointless) style using Applicative and De Bruijn index notation"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "data-hash" = callPackage ({ mkDerivation, array, base, containers, QuickCheck , test-framework, test-framework-quickcheck2 @@ -63989,6 +65587,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Write-once variables with concurrency support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-json-token" = callPackage @@ -64035,6 +65634,7 @@ self: { homepage = "https://github.com/wdanilo/layer"; description = "Data layering utilities. Layer is a data-type which wrapps other one, but keeping additional information. If you want to access content of simple newtype object, use Lens.Wrapper instead."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-layout" = callPackage @@ -64064,6 +65664,7 @@ self: { homepage = "http://github.com/roconnor/data-lens/"; description = "Used to be Haskell 98 Lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-fd" = callPackage @@ -64079,6 +65680,7 @@ self: { homepage = "http://github.com/roconnor/data-lens-fd/"; description = "Lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-ixset" = callPackage @@ -64093,6 +65695,7 @@ self: { homepage = "https://github.com/dag/data-lens-ixset"; description = "A Lens for IxSet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-lens-light_0_1_2_1" = callPackage @@ -64131,6 +65734,7 @@ self: { homepage = "http://github.com/roconnor/data-lens-template/"; description = "Utilities for Data.Lens"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-list-sequences" = callPackage @@ -64180,6 +65784,7 @@ self: { homepage = "https://github.com/kawu/data-named"; description = "Data types for named entities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-nat" = callPackage @@ -64193,6 +65798,7 @@ self: { homepage = "http://github.com/glehel/data-nat"; description = "data Nat = Zero | Succ Nat"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-object" = callPackage @@ -64224,6 +65830,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-json/tree/master"; description = "Serialize JSON data to/from Haskell using the data-object library. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-object-yaml" = callPackage @@ -64244,6 +65851,7 @@ self: { homepage = "http://github.com/snoyberg/data-object-yaml"; description = "Serialize data to and from Yaml files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-or" = callPackage @@ -64302,6 +65910,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Reference cells that need two independent indices to be accessed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-r-tree" = callPackage @@ -64405,6 +66014,7 @@ self: { homepage = "https://github.com/wdanilo/data-result"; description = "Data types for returning results distinguishable by types"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-rev" = callPackage @@ -64429,6 +66039,7 @@ self: { libraryHaskellDepends = [ base bytestring bytestring-mmap unix ]; description = "Ropes, an alternative to (Byte)Strings"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-rtuple" = callPackage @@ -64442,6 +66053,7 @@ self: { homepage = "https://github.com/wdanilo/rtuple"; description = "Recursive tuple data structure. It is very usefull when implementing some lo-level operations, allowing to traverse different elements using Haskell's type classes."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-size" = callPackage @@ -64490,6 +66102,7 @@ self: { homepage = "https://github.com/Palmik/data-store"; description = "Type safe, in-memory dictionary with multidimensional keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-stringmap" = callPackage @@ -64508,6 +66121,7 @@ self: { ]; description = "An efficient implementation of maps from strings to arbitrary values"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-structure-inferrer" = callPackage @@ -64589,6 +66203,7 @@ self: { libraryHaskellDepends = [ base containers mtl ]; description = "Functions to transform data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "data-treify" = callPackage @@ -64612,6 +66227,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Basic type wrangling types and classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "data-util" = callPackage @@ -64686,6 +66302,7 @@ self: { homepage = "https://github.com/iand675/datadog"; description = "Datadog client for Haskell. Currently only StatsD supported, other support forthcoming."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dataenc" = callPackage @@ -64753,6 +66370,7 @@ self: { jailbreak = true; description = "An implementation of datalog in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "datapacker" = callPackage @@ -64957,6 +66575,7 @@ self: { homepage = "http://devel.comunidadhaskell.org/dbjava/"; description = "Decompiler Bytecode Java"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbmigrations_1_0" = callPackage @@ -65014,6 +66633,7 @@ self: { doCheck = false; description = "An implementation of relational database \"migrations\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus_0_10_10" = callPackage @@ -65110,6 +66730,7 @@ self: { homepage = "http://john-millikin.com/software/haskell-dbus/"; description = "Monadic and object-oriented interfaces to DBus"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-core" = callPackage @@ -65129,6 +66750,7 @@ self: { homepage = "https://john-millikin.com/software/dbus-core/"; description = "Low-level D-Bus protocol implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dbus-qq" = callPackage @@ -65200,6 +66822,7 @@ self: { jailbreak = true; description = "This packge is deprecated. See the the \"LIO.DCLabel\" in the \"lio\" package."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dclabel-eci11" = callPackage @@ -65249,6 +66872,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler build framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-code" = callPackage @@ -65314,6 +66938,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler semantic evaluator for the core language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ddc-core-flow" = callPackage @@ -65334,6 +66959,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler data flow compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-core-llvm" = callPackage @@ -65428,6 +67054,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler top-level driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-interface" = callPackage @@ -65483,6 +67110,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ddc-war" = callPackage @@ -65502,6 +67130,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciplined Disciple Compiler test driver and buildbot"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ddci-core" = callPackage @@ -65522,6 +67151,7 @@ self: { homepage = "http://disciple.ouroborus.net"; description = "Disciple Core language interactive interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dead-code-detection" = callPackage @@ -65548,6 +67178,7 @@ self: { homepage = "https://github.com/soenkehahn/dead-code-detection#readme"; description = "detect dead code in haskell projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dead-simple-json" = callPackage @@ -65564,6 +67195,7 @@ self: { homepage = "http://hub.darcs.net/scravy/dead-simple-json"; description = "Dead simple JSON parser, with some Template Haskell sugar"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "debian_3_87_2" = callPackage @@ -65623,6 +67255,7 @@ self: { homepage = "https://github.com/ddssff/debian-haskell"; description = "Modules for working with the Debian package system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "debian-binary" = callPackage @@ -65636,6 +67269,7 @@ self: { libraryHaskellDepends = [ base directory filepath HSH ]; description = "Utilities to work with debian binary packages"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "debian-build" = callPackage @@ -65691,6 +67325,7 @@ self: { jailbreak = true; description = "The categorical dual of transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "decimal-arithmetic" = callPackage @@ -65772,6 +67407,7 @@ self: { homepage = "https://github.com/hansonkd/decoder-conduit"; description = "Conduit for decoding ByteStrings using Data.Binary.Get"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dedukti" = callPackage @@ -65795,6 +67431,7 @@ self: { homepage = "http://www.lix.polytechnique.fr/dedukti"; description = "A type-checker for the λΠ-modulo calculus"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "deepcontrol" = callPackage @@ -65841,6 +67478,7 @@ self: { homepage = "https://github.com/ajtulloch/deeplearning-hs"; description = "Deep Learning in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq_1_3_0_1" = callPackage @@ -65896,6 +67534,7 @@ self: { homepage = "http://fremissant.net/deepseq-bounded"; description = "Bounded deepseq, including support for generic deriving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "deepseq-generics_0_1_1_1" = callPackage @@ -65978,6 +67617,7 @@ self: { jailbreak = true; description = "Template Haskell based deriver for optimised NFData instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "deepzoom" = callPackage @@ -65989,6 +67629,7 @@ self: { libraryHaskellDepends = [ base directory filepath hsmagick ]; description = "A DeepZoom image slicer. Only known to work on 32bit Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "defargs" = callPackage @@ -66001,6 +67642,7 @@ self: { homepage = "https://github.com/Kinokkory/defargs"; description = "default arguments in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-base" = callPackage @@ -66019,6 +67661,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "The base modules of the Definitive framework"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "definitive-filesystem" = callPackage @@ -66041,6 +67684,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A library that enable you to interact with the filesystem in a definitive way"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "definitive-graphics" = callPackage @@ -66065,6 +67709,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package allowing you to open windows, read image files and render text to be displayed or saved"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "definitive-parser" = callPackage @@ -66084,6 +67729,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A parser combinator library for the Definitive framework"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "definitive-reactive" = callPackage @@ -66104,6 +67750,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A simple Reactive library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "definitive-sound" = callPackage @@ -66125,6 +67772,7 @@ self: { homepage = "http://coiffier.net/projects/definitive-framework.html"; description = "A definitive package to handle sound and play it back"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "deiko-config" = callPackage @@ -66213,6 +67861,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {mpdec = null;}; "deka-tests" = callPackage @@ -66235,6 +67884,7 @@ self: { homepage = "https://github.com/massysett/deka"; description = "Tests for deka, decimal floating point arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "delaunay" = callPackage @@ -66283,6 +67933,7 @@ self: { homepage = "https://github.com/sof/delicious"; description = "Accessing the del.icio.us APIs from Haskell (v2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "delimited-text" = callPackage @@ -66336,6 +67987,7 @@ self: { homepage = "https://github.com/kryoxide/delta"; description = "A library for detecting file changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "delta-h" = callPackage @@ -66357,6 +68009,18 @@ self: { homepage = "https://bitbucket.org/gchrupala/delta-h"; description = "Online entropy-based model of lexical category acquisition"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "delude" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "delude"; + version = "0.1.0.3"; + sha256 = "7c16e61353db13bf446b24ffb97e8ec526579312d0907e56e8c64b62c09f064f"; + libraryHaskellDepends = [ base ]; + description = "Generalized the Prelude more functionally"; + license = stdenv.lib.licenses.mit; }) {}; "demarcate" = callPackage @@ -66370,6 +68034,7 @@ self: { homepage = "https://github.com/fizruk/demarcate"; description = "Demarcating transformed monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "denominate" = callPackage @@ -66386,6 +68051,7 @@ self: { homepage = "http://protempore.net/denominate/"; description = "Functions supporting bulk file and directory name normalization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dependent-map_0_1_1_3" = callPackage @@ -66438,6 +68104,7 @@ self: { homepage = "https://github.com/wdanilo/dependent-state"; description = "Control structure similar to Control.Monad.State, allowing multiple nested states, distinguishable by provided phantom types."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dependent-sum_0_2_1_0" = callPackage @@ -66528,6 +68195,7 @@ self: { ]; description = "A simple configuration management tool for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dephd" = callPackage @@ -66546,6 +68214,7 @@ self: { homepage = "http://malde.org/~ketil/biohaskell/dephd"; description = "Analyze quality of nucleotide sequences"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dequeue" = callPackage @@ -66560,6 +68229,7 @@ self: { testHaskellDepends = [ base Cabal cabal-test-quickcheck ]; description = "A typeclass and an implementation for double-ended queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derangement" = callPackage @@ -66571,6 +68241,7 @@ self: { libraryHaskellDepends = [ base fgl ]; description = "Find derangements of lists"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "derivation-trees" = callPackage @@ -66585,6 +68256,7 @@ self: { jailbreak = true; description = "Typeset Derivation Trees via MetaPost"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "derive_2_5_18" = callPackage @@ -66772,6 +68444,7 @@ self: { homepage = "http://github.com/konn/derive-IG"; description = "Macro to derive instances for Instant-Generics using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "derive-enumerable" = callPackage @@ -66807,6 +68480,7 @@ self: { jailbreak = true; description = "Instance deriving for (a subset of) GADTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "derive-monoid" = callPackage @@ -66824,6 +68498,7 @@ self: { homepage = "https://github.com/sboosali/derive-monoid#readme"; description = "derive Semigroup/Monoid/IsList"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "derive-topdown" = callPackage @@ -66840,6 +68515,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/derive-topdown"; description = "This library will help you generate Haskell empty Generic instances and deriving type instances from the top automatically to the bottom for composited data types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "derive-trie" = callPackage @@ -66853,6 +68529,7 @@ self: { homepage = "http://github.com/baldo/derive-trie"; description = "Automatic derivation of Trie implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "deriving-compat" = callPackage @@ -66897,6 +68574,7 @@ self: { homepage = "http://darcsden.com/kyagrd/derp-lib"; description = "combinators based on parsing with derivatives (derp) package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "descrilo" = callPackage @@ -67061,6 +68739,7 @@ self: { homepage = "https://github.com/kmcallister/dewdrop"; description = "Find gadgets for return-oriented programming on x86"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dfrac" = callPackage @@ -67091,6 +68770,7 @@ self: { ]; description = "Build Debian From Scratch CD/DVD images"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dgim" = callPackage @@ -67105,6 +68785,7 @@ self: { homepage = "https://github.com/musically-ut/haskell-dgim"; description = "Implementation of DGIM algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dgs" = callPackage @@ -67118,6 +68799,7 @@ self: { homepage = "http://www.dmwit.com/dgs"; description = "Haskell front-end for DGS' bot interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dia-base" = callPackage @@ -67200,6 +68882,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative vector graphics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-builder_0_6_0_2" = callPackage @@ -67405,6 +69088,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "hint-based build service for the diagrams graphics EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-cairo_1_2_0_4" = callPackage @@ -67592,6 +69276,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Cairo backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-canvas_0_3_0_3" = callPackage @@ -67677,6 +69362,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-contrib_1_1_2_4" = callPackage @@ -67966,6 +69652,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Collection of user contributions to diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-core_1_2_0_4" = callPackage @@ -68162,6 +69849,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Graph layout and drawing with GrahpViz and diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-gtk" = callPackage @@ -68177,6 +69865,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Backend for rendering diagrams directly to GTK windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-haddock_0_2_2_12" = callPackage @@ -68351,6 +70040,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Preprocessor for embedding diagrams in Haddock documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-hsqml" = callPackage @@ -68369,6 +70059,7 @@ self: { homepage = "https://github.com/marcinmrotek/diagrams-hsqml"; description = "HsQML (Qt5) backend for Diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diagrams-html5_1_3_0_2" = callPackage @@ -68452,6 +70143,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "HTML5 canvas backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-lib_1_2_0_7" = callPackage @@ -68657,6 +70349,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Embedded domain-specific language for declarative graphics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pandoc" = callPackage @@ -68681,6 +70374,7 @@ self: { jailbreak = true; description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pdf" = callPackage @@ -68700,6 +70394,7 @@ self: { homepage = "http://www.alpheccar.org"; description = "PDF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-pgf" = callPackage @@ -68721,6 +70416,7 @@ self: { homepage = "http://github.com/cchalmers/diagrams-pgf"; description = "PGF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-postscript_1_1_0_3" = callPackage @@ -68867,6 +70563,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Postscript backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-qrcode" = callPackage @@ -68883,6 +70580,7 @@ self: { homepage = "https://github.com/prowdsponsor/diagrams-qrcode"; description = "Draw QR codes to SVG, PNG, PDF or PS files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-rasterific_0_1_0_7" = callPackage @@ -69016,6 +70714,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Rasterific backend for diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-reflex" = callPackage @@ -69035,6 +70734,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "reflex backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diagrams-rubiks-cube" = callPackage @@ -69049,6 +70749,7 @@ self: { homepage = "https://github.com/timjb/rubiks-cube"; description = "Library for drawing the Rubik's Cube"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-solve_0_1" = callPackage @@ -69288,6 +70989,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "SVG backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-tikz" = callPackage @@ -69303,6 +71005,7 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "TikZ backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "diagrams-wx" = callPackage @@ -69321,6 +71024,7 @@ self: { homepage = "https://github.com/spinda/diagrams-wx#readme"; description = "Backend for rendering diagrams in wxWidgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dialog" = callPackage @@ -69338,6 +71042,7 @@ self: { homepage = "https://gitlab.com/lamefun/dialog"; description = "Simple dialog-based user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dice" = callPackage @@ -69351,6 +71056,7 @@ self: { libraryHaskellDepends = [ base parsec random-fu transformers ]; description = "Simplistic D&D style dice-rolling system"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dice-entropy-conduit" = callPackage @@ -69370,6 +71076,7 @@ self: { homepage = "http://monoid.at/code"; description = "Cryptographically secure n-sided dice via rejection sampling"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dicom" = callPackage @@ -69401,6 +71108,7 @@ self: { homepage = "http://github.com/mwotton/dictparser"; description = "Parsec parsers for the DICT format produced by dictfmt -t"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diet" = callPackage @@ -69488,6 +71196,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/diffcabal"; description = "Diff two .cabal files syntactically"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diffdump" = callPackage @@ -69827,6 +71536,7 @@ self: { homepage = "http://github.com/jaspervdj/digestive-functors"; description = "Happstack backend for the digestive-functors library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-heist" = callPackage @@ -69857,6 +71567,7 @@ self: { homepage = "http://src.seereason.com/digestive-functors-hsp"; description = "HSP support for digestive-functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "digestive-functors-lucid" = callPackage @@ -70064,6 +71775,7 @@ self: { jailbreak = true; description = "Dingo is a Rich Internet Application platform based on the Warp web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dingo-example" = callPackage @@ -70084,6 +71796,7 @@ self: { jailbreak = true; description = "Dingo Example"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dingo-widgets" = callPackage @@ -70103,6 +71816,7 @@ self: { jailbreak = true; description = "Dingo Widgets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diophantine" = callPackage @@ -70116,6 +71830,7 @@ self: { homepage = "https://github.com/llllllllll/Math.Diophantine"; description = "A quadratic diophantine equation solving library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "diplomacy" = callPackage @@ -70158,6 +71873,7 @@ self: { homepage = "https://github.com/avieth/diplomacy-server"; description = "Play Diplomacy over HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "direct-binary-files" = callPackage @@ -70170,6 +71886,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Serialization and deserialization monads for streams and ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "direct-daemonize" = callPackage @@ -70199,6 +71916,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Native implementation of the FastCGI protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "direct-http" = callPackage @@ -70219,6 +71937,7 @@ self: { homepage = "http://ireneknapp.com/software/"; description = "Native webserver that acts as a library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "direct-murmur-hash" = callPackage @@ -70243,6 +71962,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Lightweight replacement for Plugins, specific to GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "direct-sqlite_2_3_14" = callPackage @@ -70333,6 +72053,7 @@ self: { jailbreak = true; description = "Finite directed cubical complexes and associated algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "directory_1_2_6_3" = callPackage @@ -70413,6 +72134,7 @@ self: { unordered-containers ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dirstream" = callPackage @@ -70465,6 +72187,7 @@ self: { homepage = "http://github.com/accraze/discogs-haskell"; description = "Client for Discogs REST API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "discordian-calendar" = callPackage @@ -70491,6 +72214,7 @@ self: { homepage = "http://github.com/lightquake/discount"; description = "Haskell bindings to the discount Markdown library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {markdown = null;}; "discrete-space-map" = callPackage @@ -70545,6 +72269,7 @@ self: { homepage = "https://github.com/maxwellsayles/disjoint-set"; description = "Persistent disjoint-sets, a.k.a union-find."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "disjoint-sets-st" = callPackage @@ -70602,6 +72327,7 @@ self: { homepage = "https://github.com/tweag/distributed-closure"; description = "Serializable closures for distributed programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "distributed-process_0_5_2" = callPackage @@ -70722,6 +72448,7 @@ self: { homepage = "http://haskell-distributed.github.com/"; description = "Cloud Haskell: Erlang-style concurrency in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-async_0_2_1" = callPackage @@ -70782,6 +72509,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-async"; description = "Cloud Haskell Async API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-azure" = callPackage @@ -70806,6 +72534,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process"; description = "Microsoft Azure backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-client-server_0_1_2" = callPackage @@ -70871,6 +72600,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-client-server"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-ekg" = callPackage @@ -70886,6 +72616,7 @@ self: { ]; description = "Collect node stats for EKG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-execution_0_1_1" = callPackage @@ -70958,6 +72689,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-execution"; description = "Execution Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-extras_0_2_0" = callPackage @@ -71023,6 +72755,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-extras"; description = "Cloud Haskell Extras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-lifted" = callPackage @@ -71049,6 +72782,7 @@ self: { homepage = "https://github.com/jeremyjh/distributed-process-lifted"; description = "monad-control style typeclass and transformer instances for Process monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-monad-control" = callPackage @@ -71066,6 +72800,7 @@ self: { homepage = "http://haskell-distributed.github.io"; description = "Orphan instances for MonadBase and MonadBaseControl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-p2p" = callPackage @@ -71087,6 +72822,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/distributed-process-p2p/"; description = "Peer-to-peer node discovery for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-platform" = callPackage @@ -71119,6 +72855,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-platform"; description = "The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-registry" = callPackage @@ -71153,6 +72890,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-registry"; description = "Cloud Haskell Extended Process Registry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-simplelocalnet_0_2_2_0" = callPackage @@ -71221,6 +72959,7 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Simple zero-configuration backend for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-supervisor_0_1_2" = callPackage @@ -71288,6 +73027,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-supervisor"; description = "Supervisors for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-task_0_1_1" = callPackage @@ -71362,6 +73102,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process-task"; description = "Task Framework for The Cloud Haskell Application Platform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-tests" = callPackage @@ -71387,6 +73128,7 @@ self: { homepage = "http://github.com/haskell-distributed/distributed-process/tree/master/distributed-process-tests"; description = "Tests and test support tools for distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-process-zookeeper" = callPackage @@ -71416,6 +73158,7 @@ self: { homepage = "https://github.com/jeremyjh/distributed-process-zookeeper"; description = "A Zookeeper back-end for Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributed-static_0_3_1_0" = callPackage @@ -71471,7 +73214,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "distributed-static" = callPackage + "distributed-static_0_3_4_0" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , rank1dynamic }: @@ -71486,6 +73229,24 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Compositional, type-safe, polymorphic static values and closures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "distributed-static" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq + , rank1dynamic + }: + mkDerivation { + pname = "distributed-static"; + version = "0.3.5.0"; + sha256 = "e57b27ddd13ae033a6de5513b5bba75ff123ebb381cf6ab79fe887899f1e51f9"; + libraryHaskellDepends = [ + base binary bytestring containers deepseq rank1dynamic + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Compositional, type-safe, polymorphic static values and closures"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distribution" = callPackage @@ -71501,6 +73262,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution"; description = "Finite discrete probability distributions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distribution-plot" = callPackage @@ -71519,6 +73281,7 @@ self: { homepage = "https://github.com/redelmann/haskell-distribution-plot"; description = "Easily plot distributions from the distribution package.."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "distributive_0_4_4" = callPackage @@ -71757,6 +73520,7 @@ self: { homepage = "https://github.com/liamoc/dixi"; description = "A wiki implemented with a firm theoretical foundation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "djembe" = callPackage @@ -71847,6 +73611,7 @@ self: { homepage = "http://gitorious.org/djinn-th"; description = "Generate executable Haskell code from a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dlist_0_7_1" = callPackage @@ -71994,6 +73759,7 @@ self: { jailbreak = true; description = "Caching DNS resolver library and mass DNS resolver utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dnsrbl" = callPackage @@ -72046,6 +73812,7 @@ self: { homepage = "https://github.com/j3h/doc-review"; description = "Document review Web application, like http://book.realworldhaskell.org/"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "doccheck" = callPackage @@ -72065,6 +73832,7 @@ self: { homepage = "https://github.com/Fuuzetsu/doccheck"; description = "Checks Haddock comments for pitfalls and version changes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "docidx" = callPackage @@ -72084,6 +73852,7 @@ self: { homepage = "http://github.com/gimbo/docidx.hs"; description = "Generate an HTML index of installed Haskell packages and their documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "docker" = callPackage @@ -72112,6 +73881,7 @@ self: { homepage = "https://github.com/denibertovic/docker-hs"; description = "Haskell wrapper for Docker Remote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dockercook" = callPackage @@ -72147,6 +73917,7 @@ self: { homepage = "https://github.com/factisresearch/dockercook"; description = "A build tool for multiple docker image layers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dockerfile" = callPackage @@ -72342,6 +74113,7 @@ self: { homepage = "http://github.com/karun012/doctest-discover"; description = "Easy way to run doctests via cabal"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "doctest-discover-configurator" = callPackage @@ -72368,6 +74140,7 @@ self: { homepage = "http://github.com/relrod/doctest-discover-noaeson"; description = "Easy way to run doctests via cabal (no aeson dependency, uses configurator instead)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "doctest-prop" = callPackage @@ -72475,6 +74248,7 @@ self: { homepage = "http://github.com/egonschiele/dominion"; description = "A simulator for the board game Dominion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "domplate" = callPackage @@ -72552,6 +74326,7 @@ self: { homepage = "https://github.com/stackbuilders/dotenv-hs"; description = "Loads environment variables from dotenv files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dotfs" = callPackage @@ -72584,6 +74359,7 @@ self: { homepage = "http://github.com/toothbrush/dotfs"; description = "Filesystem to manage and parse dotfiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dotgen" = callPackage @@ -72670,6 +74446,7 @@ self: { ]; description = "Dungeons of Wor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "download" = callPackage @@ -72683,6 +74460,7 @@ self: { homepage = "https://github.com/psibi/download"; description = "High-level file download based on URLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "download-curl" = callPackage @@ -72716,6 +74494,7 @@ self: { homepage = "http://github.com/jaspervdj/download-media-content"; description = "Simple tool to download images from RSS feeds (e.g. Flickr, Picasa)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dozenal" = callPackage @@ -72729,6 +74508,7 @@ self: { homepage = "https://github.com/siddhanathan/dozenal"; description = "A Haskell library for using Dozenal (Duodecimal - Base 12) numbers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dozens" = callPackage @@ -72765,6 +74545,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common config and debugging functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-examples" = callPackage @@ -72785,6 +74566,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell example programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-base" = callPackage @@ -72803,6 +74585,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell common definitions used by other dph-lifted packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-copy" = callPackage @@ -72820,6 +74603,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators. (deprecated version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-lifted-vseg" = callPackage @@ -72838,6 +74622,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell lifted array combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-par" = callPackage @@ -72863,6 +74648,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (abstract interface)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-par" = callPackage @@ -72881,6 +74667,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (production version)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-prim-seq" = callPackage @@ -72898,6 +74685,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell"; description = "Data Parallel Haskell segmented arrays. (sequential implementation)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dph-seq" = callPackage @@ -72929,6 +74717,7 @@ self: { testPkgconfigDepends = [ libdpkg ]; description = "libdpkg bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) dpkg; libdpkg = null;}; "dpor_0_1_0_0" = callPackage @@ -72971,6 +74760,7 @@ self: { homepage = "https://github.com/cwi-swat/monadic-frp"; description = "Monadic FRP"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "draw-poker" = callPackage @@ -73027,6 +74817,7 @@ self: { jailbreak = true; description = "Library and program for querying DVB (Dresdner Verkehrsbetriebe AG)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "drifter" = callPackage @@ -73086,6 +74877,7 @@ self: { homepage = "http://github.com/cakoose/dropbox-sdk-haskell"; description = "A library to access the Dropbox HTTP API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dropsolve" = callPackage @@ -73105,6 +74897,7 @@ self: { jailbreak = true; description = "A command line tool for resolving dropbox conflicts. Deprecated! Please use confsolve."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ds-kanren" = callPackage @@ -73119,6 +74912,7 @@ self: { testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ]; description = "A subset of the miniKanren language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dsh-sql" = callPackage @@ -73146,6 +74940,7 @@ self: { ]; description = "SQL backend for Database Supported Haskell (DSH)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dsmc" = callPackage @@ -73164,6 +74959,7 @@ self: { jailbreak = true; description = "DSMC library for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dsmc-tools" = callPackage @@ -73183,6 +74979,7 @@ self: { jailbreak = true; description = "DSMC toolkit for rarefied gas dynamics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dson" = callPackage @@ -73237,6 +75034,7 @@ self: { homepage = "https://github.com/basvandijk/dstring"; description = "Difference strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dtab" = callPackage @@ -73279,6 +75077,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse and render DTD files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dtd-text" = callPackage @@ -73295,6 +75094,7 @@ self: { homepage = "http://github.com/m15k/hs-dtd-text"; description = "Parse and render XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dtd-types" = callPackage @@ -73307,6 +75107,7 @@ self: { homepage = "http://projects.haskell.org/dtd/"; description = "Basic types for representing XML DTDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dtrace" = callPackage @@ -73459,6 +75260,7 @@ self: { jailbreak = true; description = "Frontend development build tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dvda" = callPackage @@ -73481,6 +75283,7 @@ self: { ]; description = "Efficient automatic differentiation and code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dvdread" = callPackage @@ -73494,6 +75297,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A monadic interface to libdvdread"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {dvdread = null;}; "dvi-processing" = callPackage @@ -73625,6 +75429,7 @@ self: { homepage = "http://github.com/bennofs/dynamic-cabal/"; description = "Access the functions from the Cabal library without depending on it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dynamic-graph" = callPackage @@ -73643,6 +75448,7 @@ self: { homepage = "https://github.com/adamwalker/dynamic-graph"; description = "Draw and update graphs in real time with OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dynamic-linker-template" = callPackage @@ -73655,6 +75461,7 @@ self: { homepage = "http://github.com/hsyl20/dynamic-linker-template"; description = "Automatically derive dynamic linking methods from a data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dynamic-loader" = callPackage @@ -73702,6 +75509,7 @@ self: { ]; description = "Object-oriented programming with duck typing and singleton classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "dynamic-plot" = callPackage @@ -73724,6 +75532,7 @@ self: { homepage = "https://github.com/leftaroundabout/dynamic-plot"; description = "Interactive diagram windows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-pp" = callPackage @@ -73745,6 +75554,7 @@ self: { homepage = "https://github.com/emc2/dynamic-pp"; description = "A pretty-print library that employs a dynamic programming algorithm for optimal rendering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dynamic-state_0_2_0_0" = callPackage @@ -73835,6 +75645,7 @@ self: { ]; description = "your dynamic optimization buddy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "dyre" = callPackage @@ -73906,6 +75717,7 @@ self: { homepage = "http://github.com/sanetracker/easy-api"; description = "Utility code for building HTTP API bindings more quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "easy-bitcoin" = callPackage @@ -73966,6 +75778,7 @@ self: { homepage = "https://github.com/thinkpad20/easyjson"; description = "Haskell JSON library with an emphasis on simplicity, minimal dependencies, and ease of use"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "easyplot" = callPackage @@ -73978,6 +75791,7 @@ self: { homepage = "http://hub.darcs.net/scravy/easyplot"; description = "A tiny plotting library, utilizes gnuplot for plotting"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "easyrender" = callPackage @@ -73994,6 +75808,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/easyrender/"; description = "User-friendly creation of EPS, PostScript, and PDF files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ebeats" = callPackage @@ -74025,6 +75840,7 @@ self: { jailbreak = true; description = "Parser combinators & EBNF, BFFs!"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ec2-signature" = callPackage @@ -74061,6 +75877,7 @@ self: { homepage = "https://github.com/singpolyma/ecdsa-haskell"; description = "Basic ECDSA signing implementation"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ecma262" = callPackage @@ -74081,6 +75898,7 @@ self: { homepage = "https://github.com/fabianbergmark/ECMA-262"; description = "A ECMA-262 interpreter library"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ecu" = callPackage @@ -74100,6 +75918,7 @@ self: { jailbreak = true; description = "Tools for automotive ECU development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {canlib = null;}; "ed25519" = callPackage @@ -74150,6 +75969,7 @@ self: { homepage = "http://chiselapp.com/user/mwm/repository/eddie/"; description = "Command line file filtering with haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ede_0_2_8" = callPackage @@ -74262,6 +76082,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "Semi-explicit parallel programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "edenskel" = callPackage @@ -74273,6 +76094,7 @@ self: { libraryHaskellDepends = [ base edenmodules parallel ]; description = "Semi-explicit parallel programming skeleton library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "edentv" = callPackage @@ -74293,6 +76115,7 @@ self: { homepage = "http://www.mathematik.uni-marburg.de/~eden"; description = "A Tool to Visualize Parallel Functional Program Executions"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "edge" = callPackage @@ -74312,6 +76135,7 @@ self: { homepage = "http://frigidcode.com/code/edge"; description = "Top view space combat arcade game"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "edis" = callPackage @@ -74436,6 +76260,7 @@ self: { ]; description = "Symmetric, stateful edit lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "edit-lenses-demo" = callPackage @@ -74462,6 +76287,7 @@ self: { homepage = "https://github.com/maxpow4h/editable"; description = "Interactive editors for Generics"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "editline" = callPackage @@ -74475,6 +76301,7 @@ self: { homepage = "http://code.haskell.org/editline"; description = "Bindings to the editline library (libedit)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "editor-open" = callPackage @@ -74583,6 +76410,7 @@ self: { jailbreak = true; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "effective-aspects" = callPackage @@ -74605,6 +76433,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "effective-aspects-mzv" = callPackage @@ -74627,6 +76456,7 @@ self: { homepage = "http://pleiad.cl/EffectiveAspects"; description = "A monadic embedding of aspect oriented programming, using \"Monads, Zippers and Views\" instead of mtl"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "effects" = callPackage @@ -74708,6 +76538,7 @@ self: { homepage = "https://github.com/xenophobia/Egison-Quote"; description = "A quasi quotes for using Egison expression in Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "egison-tutorial" = callPackage @@ -74748,6 +76579,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/ehaskell/index.xhtml"; description = "like eruby, ehaskell is embedded haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ehs" = callPackage @@ -74770,6 +76602,7 @@ self: { homepage = "http://github.com/minpou/ehs/"; description = "Embedded haskell template using quasiquotes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eibd-client-simple" = callPackage @@ -74789,6 +76622,7 @@ self: { jailbreak = true; description = "EIBd Client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {eibclient = null;}; "eigen" = callPackage @@ -75235,6 +77069,7 @@ self: { homepage = "https://bitbucket.org/davecturner/ekg-rrd"; description = "Passes ekg statistics to rrdtool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "ekg-statsd_0_2_0_3" = callPackage @@ -75282,6 +77117,7 @@ self: { testHaskellDepends = [ base tasty tasty-quickcheck ]; description = "easy to remember mnemonic for a high-entropy value"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "elerea" = callPackage @@ -75309,6 +77145,7 @@ self: { executableHaskellDepends = [ base elerea GLFW OpenGL ]; description = "Example applications for Elerea"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "elerea-sdl" = callPackage @@ -75334,6 +77171,7 @@ self: { homepage = "https://github.com/fumieval/elevator"; description = "Immediately lifts to a desired level"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "elf" = callPackage @@ -75361,6 +77199,7 @@ self: { homepage = "http://github.com/crough/elision#readme"; description = "Arrows with holes"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "elm-bridge_0_1_0_0" = callPackage @@ -75624,6 +77463,7 @@ self: { homepage = "http://github.com/krisajenkins/elm-export"; description = "A library to generate Elm types from Haskell source"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "elm-get" = callPackage @@ -75897,6 +77737,7 @@ self: { homepage = "https://github.com/cocreature/emacs-keys"; description = "library to parse emacs style keybinding into the modifiers and the chars"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "email" = callPackage @@ -75914,6 +77755,7 @@ self: { jailbreak = true; description = "Sending eMail in Haskell made easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "email-header" = callPackage @@ -75936,6 +77778,7 @@ self: { homepage = "http://github.com/knrafto/email-header"; description = "Parsing and rendering of email and MIME headers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "email-postmark" = callPackage @@ -75952,6 +77795,7 @@ self: { jailbreak = true; description = "A simple wrapper to send emails via the api of the service postmark (http://postmarkapp.com/)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "email-validate_2_0_1" = callPackage @@ -76066,6 +77910,7 @@ self: { homepage = "https://github.com/nushio3/embeddock"; description = "Embed the values in scope in the haddock documentation of the module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "embeddock-example" = callPackage @@ -76078,6 +77923,7 @@ self: { homepage = "https://github.com/nushio3/embeddock-example"; description = "Example of using embeddock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "embroidery" = callPackage @@ -76097,6 +77943,7 @@ self: { homepage = "https://ludflu@github.com/ludflu/embroidery.git"; description = "support for embroidery formats in haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "emgm" = callPackage @@ -76111,6 +77958,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/EMGM"; description = "Extensible and Modular Generics for the Masses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "empty" = callPackage @@ -76472,6 +78320,7 @@ self: { homepage = "https://github.com/sboosali/enumerate"; description = "enumerate all the values in a finite type (automatically)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumeration" = callPackage @@ -76491,6 +78340,7 @@ self: { homepage = "https://github.com/emc2/enumeration"; description = "A practical API for building recursive enumeration procedures and enumerating datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enumerator" = callPackage @@ -76543,6 +78393,7 @@ self: { homepage = "https://github.com/liyang/enumfun"; description = "Finitely represented /total/ EnumMaps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "enummapmap" = callPackage @@ -76565,6 +78416,7 @@ self: { jailbreak = true; description = "Map of maps using Enum types as keys"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "enummapset" = callPackage @@ -76594,6 +78446,7 @@ self: { homepage = "https://github.com/liyang/enummapset-th"; description = "TH-generated EnumSet/EnumMap wrappers around IntSet/IntMap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "enumset" = callPackage @@ -76625,6 +78478,7 @@ self: { homepage = "http://github.com/tel/env-parser"; description = "Pull configuration information from the ENV"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "envelope" = callPackage @@ -76730,6 +78584,7 @@ self: { homepage = "https://gitlab.com/twittner/epoll"; description = "epoll bindings"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eprocess" = callPackage @@ -76779,6 +78634,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-metadata"; description = "Library for parsing epub document metadata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "epub-tools" = callPackage @@ -76801,6 +78657,7 @@ self: { homepage = "http://hub.darcs.net/dino/epub-tools"; description = "Command line utilities for working with epub files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "epubname" = callPackage @@ -76818,6 +78675,7 @@ self: { homepage = "http://ui3.info/d/proj/epubname.html"; description = "Rename epub ebook files based on meta information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eq_4_0_3" = callPackage @@ -76876,6 +78734,7 @@ self: { jailbreak = true; description = "Proof assistant for Haskell using DataKinds & PolyKinds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "equivalence" = callPackage @@ -76940,6 +78799,7 @@ self: { homepage = "http://code.haskell.org/~mokus/erf-native"; description = "Native Haskell implementation of the interface from the erf package"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "erlang" = callPackage @@ -76968,6 +78828,7 @@ self: { jailbreak = true; description = "A text censorship library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eros-client" = callPackage @@ -76986,6 +78847,7 @@ self: { jailbreak = true; description = "DEPRECATED in favor of eros-http"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eros-http" = callPackage @@ -77005,6 +78867,7 @@ self: { jailbreak = true; description = "JSON HTTP interface to Eros"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "errno" = callPackage @@ -77096,6 +78959,7 @@ self: { homepage = "http://github.com/gcross/error-message"; description = "Composable error messages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "error-util" = callPackage @@ -77348,6 +79212,7 @@ self: { homepage = "https://github.com/msakai/ersatz-toysat"; description = "toysat driver as backend for ersatz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ert" = callPackage @@ -77397,6 +79262,7 @@ self: { homepage = "http://www.killersmurf.com/projects/esotericbot"; description = "Esotericbot is a sophisticated, lightweight IRC bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "esqueleto_2_1_2_1" = callPackage @@ -77580,6 +79446,7 @@ self: { homepage = "https://github.com/prowdsponsor/esqueleto"; description = "Type-safe EDSL for SQL queries on persistent backends"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ess" = callPackage @@ -77626,6 +79493,7 @@ self: { jailbreak = true; description = "Tool for managing probability estimation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "estreps" = callPackage @@ -77643,6 +79511,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Repeats from ESTs"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "etcd" = callPackage @@ -77677,6 +79546,7 @@ self: { ]; description = "everything breaking the Fairbairn threshold"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ether_0_3_0_0" = callPackage @@ -77772,6 +79642,7 @@ self: { ]; description = "A Haskell version of an Ethereum client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ethereum-merkle-patricia-db" = callPackage @@ -77796,6 +79667,7 @@ self: { ]; description = "A modified Merkle Patricia DB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ethereum-rlp" = callPackage @@ -77877,6 +79749,7 @@ self: { homepage = "http://github.com/tsurucapital/euphoria"; description = "Dynamic network FRP with events and continuous values"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "eurofxref" = callPackage @@ -77894,6 +79767,7 @@ self: { jailbreak = true; description = "Free foreign exchange/currency feed from the European Central Bank"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "event_0_1_1" = callPackage @@ -77978,6 +79852,7 @@ self: { libraryHaskellDepends = [ base monads-tf yjtools ]; description = "library for event driven programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "event-handlers" = callPackage @@ -78026,6 +79901,7 @@ self: { homepage = "http://code.haskell.org/~mokus/event-monad"; description = "Event-graph simulation monad transformer"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "eventloop" = callPackage @@ -78120,7 +79996,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "eventstore" = callPackage + "eventstore_0_12_0_0" = callPackage ({ mkDerivation, aeson, array, async, base, bytestring, cereal , containers, dns, dotnet-timespan, http-client, network, protobuf , random, semigroups, stm, tasty, tasty-hunit, text, time @@ -78144,6 +80020,33 @@ self: { description = "EventStore TCP Client"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "eventstore" = callPackage + ({ mkDerivation, aeson, array, async, base, bytestring, cereal + , connection, containers, dns, dotnet-timespan, http-client + , protobuf, random, semigroups, stm, tasty, tasty-hunit, text, time + , unordered-containers, uuid + }: + mkDerivation { + pname = "eventstore"; + version = "0.13.0.0"; + sha256 = "5cacd62d1ff67ce2500d1bbff7670f2b8728b6a6c8418cc67fb04f4ca68780c3"; + libraryHaskellDepends = [ + aeson array async base bytestring cereal connection containers dns + dotnet-timespan http-client protobuf random semigroups stm text + time unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base connection dotnet-timespan stm tasty tasty-hunit text + time + ]; + homepage = "http://github.com/YoEight/eventstore"; + description = "EventStore TCP Client"; + license = stdenv.lib.licenses.bsd3; + platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "every-bit-counts" = callPackage @@ -78156,6 +80059,7 @@ self: { homepage = "http://research.microsoft.com/en-us/people/dimitris/pearl.pdf"; description = "A functional pearl on encoding and decoding using question-and-answer strategies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ewe" = callPackage @@ -78175,6 +80079,7 @@ self: { homepage = "http://github.com/jfcmacro/ewe"; description = "A language for teaching simple programming languages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ex-pool" = callPackage @@ -78285,6 +80190,7 @@ self: { homepage = "http://github.com/expipiplus1/exact-real"; description = "Exact real arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exception-hierarchy" = callPackage @@ -78298,6 +80204,7 @@ self: { homepage = "yet"; description = "Exception type hierarchy with TemplateHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "exception-mailer" = callPackage @@ -78655,6 +80562,7 @@ self: { homepage = "http://github.com/ocharles/exhaustive"; description = "Compile time checks that a computation considers producing data through all possible constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "exherbo-cabal" = callPackage @@ -78691,6 +80599,7 @@ self: { librarySystemDepends = [ exif ]; description = "A Haskell binding to a subset of libexif"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) exif;}; "exinst" = callPackage @@ -78778,6 +80687,7 @@ self: { homepage = "https://bitbucket.org/cipher2048/existential/wiki/Home"; description = "A library for existential types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exists" = callPackage @@ -78791,6 +80701,7 @@ self: { homepage = "http://github.com/glehel/exists"; description = "Existential datatypes holding evidence of constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "exit-codes" = callPackage @@ -78816,6 +80727,7 @@ self: { homepage = "http://code.mathr.co.uk/exp-extended"; description = "floating point with extended exponent range"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exp-pairs" = callPackage @@ -78837,6 +80749,7 @@ self: { homepage = "https://github.com/Bodigrim/exp-pairs"; description = "Linear programming over exponent pairs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expand" = callPackage @@ -78851,6 +80764,7 @@ self: { jailbreak = true; description = "Extensible Pandoc"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "expat-enumerator" = callPackage @@ -78868,6 +80782,7 @@ self: { homepage = "http://john-millikin.com/software/expat-enumerator/"; description = "Enumerator-based API for Expat"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "expiring-cache-map" = callPackage @@ -78915,6 +80830,7 @@ self: { homepage = "https://github.com/joelteon/explain"; description = "Show how expressions are parsed"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "explicit-determinant" = callPackage @@ -79012,6 +80928,7 @@ self: { homepage = "http://sebfisch.github.com/explicit-sharing"; description = "Explicit Sharing of Monadic Effects"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "explore" = callPackage @@ -79026,6 +80943,7 @@ self: { homepage = "http://corsis.sourceforge.net/haskell/explore"; description = "Experimental Plot data Reconstructor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "exposed-containers" = callPackage @@ -79047,6 +80965,7 @@ self: { jailbreak = true; description = "A distribution of the 'containers' package, with all modules exposed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "expression-parser" = callPackage @@ -79074,6 +80993,7 @@ self: { ]; description = "Libraries for processing GHC Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "extemp" = callPackage @@ -79097,6 +81017,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/extemp"; description = "automated printing for extemp speakers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extended-categories" = callPackage @@ -79110,6 +81031,7 @@ self: { homepage = "github.com/ian-mi/extended-categories"; description = "Extended Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "extended-reals" = callPackage @@ -79162,6 +81084,7 @@ self: { jailbreak = true; description = "Sums/products/lists/trees which can be extended in other modules"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "extensible-effects_1_11_0_3" = callPackage @@ -79422,7 +81345,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "extra" = callPackage + "extra_1_4_8" = callPackage ({ mkDerivation, base, directory, filepath, process, QuickCheck , time, unix }: @@ -79439,9 +81362,29 @@ self: { homepage = "https://github.com/ndmitchell/extra#readme"; description = "Extra functions I use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "extract-dependencies" = callPackage + "extra" = callPackage + ({ mkDerivation, base, directory, filepath, process, QuickCheck + , time, unix + }: + mkDerivation { + pname = "extra"; + version = "1.4.9"; + sha256 = "22608f43797319d101486c2377ecb7ae860fea9b509934156076832eb7c85df7"; + libraryHaskellDepends = [ + base directory filepath process time unix + ]; + testHaskellDepends = [ + base directory filepath QuickCheck time unix + ]; + homepage = "https://github.com/ndmitchell/extra#readme"; + description = "Extra functions I use"; + license = stdenv.lib.licenses.bsd3; + }) {}; + + "extract-dependencies_0_2_0_0" = callPackage ({ mkDerivation, async, base, Cabal, containers , package-description-remote }: @@ -79460,6 +81403,28 @@ self: { homepage = "https://github.com/yamadapc/stack-run-auto/extract-dependencies"; description = "Given a hackage package outputs the list of its dependencies"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "extract-dependencies" = callPackage + ({ mkDerivation, async, base, Cabal, containers + , package-description-remote + }: + mkDerivation { + pname = "extract-dependencies"; + version = "0.2.0.1"; + sha256 = "927fe70508cc8624585e31602c305281169e91270e10c624ae48cd7c0aac1c12"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base Cabal containers package-description-remote + ]; + executableHaskellDepends = [ + async base Cabal containers package-description-remote + ]; + homepage = "https://github.com/yamadapc/stack-run-auto"; + description = "Given a hackage package outputs the list of its dependencies"; + license = stdenv.lib.licenses.mit; }) {}; "extractelf" = callPackage @@ -79505,6 +81470,7 @@ self: { homepage = "https://github.com/nikita-volkov/ez-couch"; description = "A high level static library for working with CouchDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "faceted" = callPackage @@ -79518,6 +81484,7 @@ self: { homepage = "http://github.com/haskell-faceted/haskell-faceted"; description = "Faceted computation for dynamic information flow security"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "factory" = callPackage @@ -79542,6 +81509,7 @@ self: { homepage = "http://functionalley.eu/Factory/factory.html"; description = "Rational arithmetic in an irrational world"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "factual-api" = callPackage @@ -79560,6 +81528,7 @@ self: { homepage = "https://github.com/rudyl313/factual-haskell-driver"; description = "A driver for the Factual API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fad" = callPackage @@ -79590,6 +81559,7 @@ self: { homepage = "http://github.com/slpopejoy/"; description = "Braid representations in Haskell"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fail" = callPackage @@ -79698,6 +81668,7 @@ self: { homepage = "http://github.com/tranma/falling-turnip"; description = "Falling sand game/cellular automata simulation using regular parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fallingblocks" = callPackage @@ -79717,6 +81688,7 @@ self: { homepage = "http://bencode.blogspot.com/2009/03/falling-blocks-tetris-clone-in-haskell.html"; description = "A fun falling blocks game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "family-tree" = callPackage @@ -79735,6 +81707,7 @@ self: { homepage = "https://github.com/Taneb/family-tree"; description = "A family tree library for the Haskell programming language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "farmhash_0_1_0_4" = callPackage @@ -79864,6 +81837,7 @@ self: { homepage = "https://github.com/Bodigrim/fast-digits"; description = "The fast library for integer-to-digits conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "fast-logger_2_2_3" = callPackage @@ -80056,6 +82030,7 @@ self: { homepage = "https://github.com/elaforge/fast-tags"; description = "Fast incremental vi and emacs tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fast-tagsoup" = callPackage @@ -80134,6 +82109,7 @@ self: { homepage = "https://github.com/cscherrer/fastbayes"; description = "Bayesian modeling algorithms accelerated for particular model structures"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fastcgi" = callPackage @@ -80186,6 +82162,7 @@ self: { ]; description = "Fast Internet Relay Chat (IRC) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fault-tree" = callPackage @@ -80198,6 +82175,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A fault tree analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fay_0_21_2_1" = callPackage @@ -80627,6 +82605,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Clientside HTML generation for fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fay-jquery_0_6_0_2" = callPackage @@ -81050,6 +83029,7 @@ self: { homepage = "https://github.com/Neki/fcd"; description = "A faster way to navigate directories using the command line"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fckeditor" = callPackage @@ -81063,6 +83043,7 @@ self: { homepage = "http://peteg.org/"; description = "Server-Side Integration for FCKeditor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fclabels_2_0_2" = callPackage @@ -81192,6 +83173,7 @@ self: { homepage = "https://github.com/jkarlson/fdo-trash"; description = "Utilities related to freedesktop Trash standard"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "feature-flags" = callPackage @@ -81413,6 +83395,7 @@ self: { homepage = "http://www.syntaxpolice.org/darcs_repos/feed-cli"; description = "A simple command line interface for creating and updating feeds like RSS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "feed-collect" = callPackage @@ -81488,6 +83471,7 @@ self: { homepage = "http://github.com/sgraf812/feed-gipeda#readme"; description = "Simple project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed-translator" = callPackage @@ -81511,6 +83495,7 @@ self: { homepage = "https://github.com/dahlia/feed-translator"; description = "Translate syndication feeds"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "feed2lj" = callPackage @@ -81529,6 +83514,7 @@ self: { ]; description = "(unsupported)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feed2twitter" = callPackage @@ -81546,6 +83532,7 @@ self: { homepage = "http://github.com/tomlokhorst/feed2twitter"; description = "Send posts from a feed to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-compiler" = callPackage @@ -81573,6 +83560,7 @@ self: { homepage = "http://feldspar.github.com"; description = "Compiler for the Feldspar language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gcc_s = null;}; "feldspar-language" = callPackage @@ -81598,6 +83586,7 @@ self: { homepage = "http://feldspar.github.com"; description = "A functional embedded language for DSP and parallelism"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "feldspar-signal" = callPackage @@ -81671,6 +83660,7 @@ self: { homepage = "http://fenfire.org/"; description = "Graph-based notetaking system"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {raptor = null;}; "fez-conf" = callPackage @@ -81697,6 +83687,7 @@ self: { executableHaskellDepends = [ base pretty ]; description = "Haskell binding to the FriendFeed API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fficxx" = callPackage @@ -81772,6 +83763,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/ffmpeg-tutorials"; description = "Tutorials on ffmpeg usage to play video/audio"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fft_0_1_8_2" = callPackage @@ -81944,6 +83936,7 @@ self: { homepage = "http://github.com/dmpots/fibon/wiki"; description = "Tools for running and analyzing Haskell benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fibonacci" = callPackage @@ -81972,6 +83965,7 @@ self: { homepage = "http://github.com/AstraFIN/fields"; description = "First-class record field combinators with infix record field syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fields-json" = callPackage @@ -82000,6 +83994,7 @@ self: { jailbreak = true; description = "Provides Fieldwise typeclass for operations of fields of records treated as independent components"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fig" = callPackage @@ -82268,6 +84263,7 @@ self: { homepage = "https://github.com/gregwebs/FileLocation.hs"; description = "common functions that show file location information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "file-modules" = callPackage @@ -82310,6 +84306,7 @@ self: { homepage = "http://lpuppet.banquise.net/"; description = "A Linux-only cache system associating values to files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "filediff" = callPackage @@ -82333,6 +84330,7 @@ self: { homepage = "https://github.com/bgwines/filediff"; description = "Diffing and patching module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filelock" = callPackage @@ -82421,6 +84419,7 @@ self: { homepage = "https://github.com/tonymorris/filepather"; description = "Functions on System.FilePath"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "filestore" = callPackage @@ -82442,6 +84441,7 @@ self: { jailbreak = true; description = "Interface for versioning file stores"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "filesystem-conduit" = callPackage @@ -82465,6 +84465,7 @@ self: { homepage = "http://github.com/snoyberg/conduit"; description = "Use system-filepath data types with conduits. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "filesystem-enumerator" = callPackage @@ -82481,6 +84482,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-filesystem/"; description = "Enumerator-based API for manipulating the filesystem"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "filesystem-trees" = callPackage @@ -82581,6 +84583,7 @@ self: { ]; description = "A file-finding conduit that allows user control over traversals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fingertree_0_1_0_0" = callPackage @@ -82752,6 +84755,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/firstify/"; description = "Defunctionalisation for Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fishfood" = callPackage @@ -82774,6 +84778,7 @@ self: { homepage = "http://functionalley.eu"; description = "Calculates file-size frequency-distribution"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fit" = callPackage @@ -82794,6 +84799,7 @@ self: { jailbreak = true; description = "FIT file decoder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fitsio" = callPackage @@ -82807,6 +84813,7 @@ self: { homepage = "http://github.com/esessoms/fitsio"; description = "A library for reading and writing data files in the FITS data format"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cfitsio;}; "fix-imports" = callPackage @@ -82837,6 +84844,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "Simple fix-expression parser"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fix-symbols-gitit" = callPackage @@ -82848,6 +84856,7 @@ self: { libraryHaskellDepends = [ base containers gitit ]; description = "Gitit plugin: Turn some Haskell symbols into pretty math symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fixed_0_2_1" = callPackage @@ -82924,6 +84933,7 @@ self: { jailbreak = true; description = "Binary fixed-point arithmetic"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixed-point-vector" = callPackage @@ -82936,6 +84946,7 @@ self: { jailbreak = true; description = "Unbox instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixed-point-vector-space" = callPackage @@ -82948,6 +84959,7 @@ self: { jailbreak = true; description = "vector-space instances for the fixed-point package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixed-precision" = callPackage @@ -82965,6 +84977,7 @@ self: { homepage = "http://github.com/ekmett/fixed-precision"; description = "Fixed Precision Arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixed-storable-array" = callPackage @@ -82977,6 +84990,7 @@ self: { jailbreak = true; description = "Fixed-size wrapper for StorableArray, providing a Storable instance. Deprecated - use storable-static-array instead."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixed-vector_0_7_0_3" = callPackage @@ -83134,6 +85148,7 @@ self: { homepage = "https://github.com/revnull/fixfile"; description = "File-backed recursive data structures"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fixhs" = callPackage @@ -83226,6 +85241,7 @@ self: { homepage = "http://noaxiom.org/flAccurateRip"; description = "Verify FLAC files ripped form CD using AccurateRip™"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flamethrower" = callPackage @@ -83372,6 +85388,7 @@ self: { jailbreak = true; description = "Flexible wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flexiwrap-smallcheck" = callPackage @@ -83386,6 +85403,7 @@ self: { jailbreak = true; description = "SmallCheck (Serial) instances for flexiwrap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flickr" = callPackage @@ -83404,6 +85422,7 @@ self: { executableHaskellDepends = [ xhtml ]; description = "Haskell binding to the Flickr API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flippers" = callPackage @@ -83435,6 +85454,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "f-lite compiler, interpreter and libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "flo" = callPackage @@ -83484,6 +85504,7 @@ self: { testHaskellDepends = [ base ]; description = "Conversions between floating and integral values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "floatshow" = callPackage @@ -83605,6 +85626,7 @@ self: { homepage = "http://adept.linux.kiev.ua:8080/repos/flow2dot"; description = "Library and binary to generate sequence/flow diagrams from plain text source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flowdock" = callPackage @@ -83663,6 +85685,7 @@ self: { homepage = "https://github.com/gabemc/flowdock-api"; description = "API integration with Flowdock"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flowdock-rest" = callPackage @@ -83692,6 +85715,7 @@ self: { homepage = "https://github.com/futurice/haskell-flowdock-rest#readme"; description = "Flowdock REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flower" = callPackage @@ -83711,6 +85735,7 @@ self: { homepage = "http://biohaskell.org/Applications/Flower"; description = "Analyze 454 flowgrams (.SFF files)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flowlocks-framework" = callPackage @@ -83723,6 +85748,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Generalized Flow Locks Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "flowsim" = callPackage @@ -83742,6 +85768,7 @@ self: { homepage = "http://biohaskell.org/Applications/FlowSim"; description = "Simulate 454 pyrosequencing"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fltkhs" = callPackage @@ -84363,6 +86390,7 @@ self: { homepage = "https://github.com/tonyday567/foldl-incremental"; description = "incremental folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "foldl-transduce" = callPackage @@ -84441,6 +86469,7 @@ self: { testHaskellDepends = [ base containers tasty tasty-quickcheck ]; description = "A playground of common folds for folds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "follower" = callPackage @@ -84460,6 +86489,7 @@ self: { homepage = "http://rebworks.net/projects/follower/"; description = "Follow Tweets anonymously"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "foma" = callPackage @@ -84474,6 +86504,7 @@ self: { homepage = "http://github.com/joom/foma.hs"; description = "Simple Haskell bindings for Foma"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {foma = null;}; "font-opengl-basic4x6" = callPackage @@ -84489,6 +86520,7 @@ self: { jailbreak = true; description = "Basic4x6 font for OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "foo" = callPackage @@ -84505,6 +86537,7 @@ self: { homepage = "http://sourceforge.net/projects/fooengine/?abmode=1"; description = "Paper soccer, an OpenGL game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "for-free" = callPackage @@ -84522,6 +86555,7 @@ self: { jailbreak = true; description = "Functor, Monad, MonadPlus, etc for free"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "forbidden-fruit" = callPackage @@ -84544,6 +86578,7 @@ self: { homepage = "http://github.com/minpou/forbidden-fruit"; description = "A library accelerates imperative style programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "force-layout_0_3_0_8" = callPackage @@ -84675,6 +86710,7 @@ self: { executableHaskellDepends = [ base process transformers ]; description = "Run a command on files with magic substituion support (sequencing and regexp)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "forecast-io" = callPackage @@ -84805,6 +86841,7 @@ self: { jailbreak = true; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format" = callPackage @@ -84819,6 +86856,7 @@ self: { homepage = "https://github.com/bytbox/hs-format"; description = "Rendering from and scanning to format strings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "format-status" = callPackage @@ -84837,6 +86875,7 @@ self: { jailbreak = true; description = "A utility for writing the date to dzen2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "formattable" = callPackage @@ -84955,6 +86994,7 @@ self: { homepage = "http://texodus.github.com/forml"; description = "A statically typed, functional programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets" = callPackage @@ -84973,6 +87013,7 @@ self: { homepage = "http://github.com/chriseidhof/formlets/tree/master"; description = "Formlets implemented in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formlets-hsp" = callPackage @@ -84989,6 +87030,7 @@ self: { libraryToolDepends = [ trhsx ]; description = "HSP support for Formlets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "formura" = callPackage @@ -85011,6 +87053,7 @@ self: { homepage = "http://nushio3.github.io"; description = "Formura is a simple language to describe stencil computation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "forth-hll" = callPackage @@ -85023,6 +87066,7 @@ self: { jailbreak = true; description = "A simple eDSL for generating arrayForth code"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "foscam-directory" = callPackage @@ -85093,6 +87137,7 @@ self: { homepage = "https://github.com/tonymorris/foscam-sort"; description = "Foscam File format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fountain" = callPackage @@ -85180,6 +87225,7 @@ self: { homepage = "https://www.fpcomplete.com/page/api"; description = "Simple interface to the FP Complete IDE API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fpipe" = callPackage @@ -85226,6 +87272,7 @@ self: { ]; description = "Example implementations for FPNLA library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fptest" = callPackage @@ -85322,6 +87369,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Frag"; description = "A 3-D First Person Shooter Game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "frame" = callPackage @@ -85370,6 +87418,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A package for configuring and building Haskell software"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "freddy" = callPackage @@ -85390,6 +87439,7 @@ self: { homepage = "https://github.com/salemove/freddy-hs"; description = "RabbitMQ Messaging API supporting request-response"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free_4_9" = callPackage @@ -85523,6 +87573,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/free-functors"; description = "Free functors, adjoint to functors that forget class constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-game" = callPackage @@ -85546,6 +87597,7 @@ self: { homepage = "https://github.com/fumieval/free-game"; description = "Create games for free"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-http" = callPackage @@ -85580,6 +87632,7 @@ self: { jailbreak = true; description = "Operational Applicative, Alternative, Monad and MonadPlus from free types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-theorems" = callPackage @@ -85595,6 +87648,7 @@ self: { ]; description = "Automatic generation of free theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-theorems-counterexamples" = callPackage @@ -85613,6 +87667,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Automatically Generating Counterexamples to Naive Free Theorems"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-theorems-seq" = callPackage @@ -85631,6 +87686,7 @@ self: { jailbreak = true; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-theorems-seq-webui" = callPackage @@ -85649,6 +87705,7 @@ self: { ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-theorems-webui" = callPackage @@ -85667,6 +87724,7 @@ self: { ]; description = "CGI-based web interface for the free-theorems package"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "free-vl" = callPackage @@ -85706,6 +87764,7 @@ self: { homepage = "http://github.com/anttisalonen/freekick2"; description = "A soccer game"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "freenect_1_2" = callPackage @@ -85761,6 +87820,7 @@ self: { homepage = "https://gitlab.com/queertypes/freer"; description = "Implementation of the Freer Monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "freesect" = callPackage @@ -85780,6 +87840,7 @@ self: { homepage = "http://fremissant.net/freesect"; description = "A Haskell syntax extension for generalised sections"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "freesound" = callPackage @@ -85802,6 +87863,7 @@ self: { homepage = "https://github.com/kaoskorobase/freesound"; description = "Access the Freesound Project database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "freetype-simple" = callPackage @@ -85915,6 +87977,7 @@ self: { homepage = "https://github.com/TomMD/friday-juicypixels"; description = "Converts between the Friday and JuicyPixels image types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "friday-scale-dct" = callPackage @@ -85998,6 +88061,7 @@ self: { homepage = "http://github.com/frp-arduino/frp-arduino"; description = "Arduino programming without the hassle of C"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "frpnow" = callPackage @@ -86067,6 +88131,7 @@ self: { homepage = "http://github.com/nkpart/fs-events"; description = "A haskell binding to the FSEvents API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fsharp" = callPackage @@ -86094,6 +88159,7 @@ self: { homepage = "http://projects.haskell.org/fsmActions/"; description = "Finite state machines and FSM actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fsnotify_0_1_0_3" = callPackage @@ -86211,6 +88277,7 @@ self: { jailbreak = true; description = "A thin layer over USB to communicate with FTDI chips"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ftp-conduit" = callPackage @@ -86229,6 +88296,7 @@ self: { homepage = "https://github.com/litherum/ftp-conduit"; description = "FTP client package with conduit interface based off http-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ftphs" = callPackage @@ -86277,6 +88345,7 @@ self: { jailbreak = true; description = "Shell interface to the FreeTheorems library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fugue" = callPackage @@ -86300,6 +88369,7 @@ self: { homepage = "http://www.agusa.i.is.nagoya-u.ac.jp/person/sydney/full-sessions.html"; description = "a monad for protocol-typed network programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "full-text-search" = callPackage @@ -86320,6 +88390,7 @@ self: { jailbreak = true; description = "In-memory full text search engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fullstop" = callPackage @@ -86341,6 +88412,7 @@ self: { homepage = "http://hub.darcs.net/kowey/fullstop"; description = "Simple sentence segmenter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "funbot" = callPackage @@ -86389,6 +88461,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-client/"; description = "Report events to FunBot over a JSON/HTTP API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "funbot-ext-events" = callPackage @@ -86421,6 +88494,7 @@ self: { homepage = "https://notabug.org/fr33domlover/funbot-git-hook/"; description = "Git hook which sends events to FunBot"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "funcmp" = callPackage @@ -86458,6 +88532,7 @@ self: { homepage = "http://plancomps.org"; description = "A modular interpreter for executing funcons"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "function-combine" = callPackage @@ -86469,6 +88544,7 @@ self: { libraryHaskellDepends = [ base data-type ]; description = "Combining functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "function-instances-algebra" = callPackage @@ -86494,6 +88570,7 @@ self: { jailbreak = true; description = "Combinators that allow for a more functional/monadic style of Arrow programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "functional-kmp" = callPackage @@ -86572,6 +88649,7 @@ self: { homepage = "https://github.com/wdanilo/functor-utils"; description = "Collection of functor utilities, providing handy operators, like generalization of (.)."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "functorm" = callPackage @@ -86583,6 +88661,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Data.FunctorM (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "functors" = callPackage @@ -86614,6 +88693,7 @@ self: { homepage = "http://github.com/nathanwiegand/funion"; description = "A unioning file-system using HFuse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "funpat" = callPackage @@ -86649,6 +88729,7 @@ self: { homepage = "http://github.com/dbueno/funsat"; description = "A modern DPLL-style SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "fusion" = callPackage @@ -86665,6 +88746,7 @@ self: { homepage = "https://github.com/jwiegley/fusion"; description = "Effectful streaming library based on shortcut fusion techniques"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "futun" = callPackage @@ -86691,6 +88773,7 @@ self: { homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/future"; description = "Supposed to mimics and enhance proposed C++ \"future\" features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "future-resource" = callPackage @@ -86772,6 +88855,7 @@ self: { ]; description = "A 'ten past six' style clock"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fwgl" = callPackage @@ -86789,6 +88873,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "Game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fwgl-glfw" = callPackage @@ -86807,6 +88892,7 @@ self: { homepage = "https://github.com/ziocroc/FWGL"; description = "FWGL GLFW backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "fwgl-javascript" = callPackage @@ -86838,6 +88924,7 @@ self: { executableHaskellDepends = [ base HTTP json ]; description = "Generate Gentoo ebuilds from NodeJS/npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gact" = callPackage @@ -86855,6 +88942,7 @@ self: { ]; description = "General Alignment Clustering Tool"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "game-of-life" = callPackage @@ -86906,6 +88994,7 @@ self: { executableHaskellDepends = [ base cairo containers glib gtk time ]; description = "Game clock that shows two analog clock faces"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gamma" = callPackage @@ -86976,6 +89065,7 @@ self: { homepage = "http://www.daneel0yaitskov.000space.com"; description = "planar graph embedding into a plane"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gc" = callPackage @@ -87010,6 +89100,7 @@ self: { homepage = "https://github.com/yihuang/gc-monitoring-wai"; description = "a wai application to show GHC.GCStats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gconf" = callPackage @@ -87040,6 +89131,7 @@ self: { ]; description = "A Haskell binding to a subset of the GD graphics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; inherit (pkgs) freetype; inherit (pkgs) gd; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -87071,6 +89163,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic diff for the instant-generics library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gdiff-th" = callPackage @@ -87091,6 +89184,7 @@ self: { homepage = "https://github.com/jfischoff/gdiff-th"; description = "Generate gdiff GADTs and Instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gdo" = callPackage @@ -87125,6 +89219,7 @@ self: { homepage = "http://code.mathr.co.uk/gearbox"; description = "zooming rotating fractal gears graphics demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geek" = callPackage @@ -87146,6 +89241,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geek-server" = callPackage @@ -87169,6 +89265,7 @@ self: { homepage = "http://github.com/nfjinjing/geek"; description = "Geek blog engine server"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gelatin" = callPackage @@ -87192,6 +89289,7 @@ self: { ]; description = "An experimental real time renderer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gemstone" = callPackage @@ -87211,6 +89309,7 @@ self: { homepage = "http://corbinsimpson.com/"; description = "A simple library of helpers for SDL+GL games"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gencheck" = callPackage @@ -87228,6 +89327,7 @@ self: { homepage = "http://github.com/JacquesCarette/GenCheck"; description = "A testing framework inspired by QuickCheck and SmallCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gender" = callPackage @@ -87244,6 +89344,7 @@ self: { homepage = "https://github.com/womfoo/gender"; description = "Identify a persons gender by their first name"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "genders" = callPackage @@ -87259,6 +89360,7 @@ self: { testHaskellDepends = [ base bytestring hspec network vector ]; description = "Bindings to libgenders"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {genders = null;}; "general-prelude" = callPackage @@ -87273,6 +89375,7 @@ self: { ]; description = "Prelude replacement using generalized type classes where possible"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generator" = callPackage @@ -87298,24 +89401,27 @@ self: { homepage = "http://liamoc.net/pdf/Generator.pdf"; description = "Actually useful monadic random value generators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-accessors" = callPackage ({ mkDerivation, base, binary, cereal, HUnit, lens, linear , QuickCheck, spatial-math, test-framework, test-framework-hunit + , TypeCompose }: mkDerivation { pname = "generic-accessors"; - version = "0.6.0.0"; - sha256 = "78f8b96b5633f6f2953e6cda0d236da987743d990d7d9facd254fe10d41fc504"; + version = "0.6.0.1"; + sha256 = "c6f4fd2a221a2368baff60132746e122dc2818bfe69c901b337ef448e70cf4c9"; libraryHaskellDepends = [ - base binary cereal lens linear spatial-math + base binary cereal lens linear spatial-math TypeCompose ]; testHaskellDepends = [ base HUnit QuickCheck test-framework test-framework-hunit ]; description = "stringly-named getters for generic data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-aeson_0_2_0_2" = callPackage @@ -87477,6 +89583,7 @@ self: { ]; description = "Automatically convert Generic instances to and from church representations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-deepseq" = callPackage @@ -87581,6 +89688,7 @@ self: { homepage = "https://github.com/jfischoff/generic-maybe"; description = "A generic version of Data.Maybe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-pretty" = callPackage @@ -87601,6 +89709,7 @@ self: { homepage = "https://github.com/tanakh/generic-pretty"; description = "Pretty printing for Generic value"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-random" = callPackage @@ -87622,6 +89731,7 @@ self: { homepage = "http://github.com/lysxia/generic-random"; description = "Generic random generators"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-server" = callPackage @@ -87646,6 +89756,7 @@ self: { jailbreak = true; description = "Generic implementation of Storable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "generic-tree" = callPackage @@ -87697,6 +89808,7 @@ self: { ]; description = "Marshalling Haskell values to/from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "generic-xmlpickler_0_1_0_0" = callPackage @@ -87944,6 +90056,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Serialization library using Data.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "genetics" = callPackage @@ -87957,6 +90070,7 @@ self: { executableHaskellDepends = [ base random-fu ]; description = "A Genetic Algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-gui" = callPackage @@ -87979,6 +90093,7 @@ self: { homepage = "http://projects.haskell.org/GenI"; description = "GenI graphical user interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geni-util" = callPackage @@ -88003,6 +90118,7 @@ self: { homepage = "http://kowey.github.io/GenI"; description = "Companion tools for use with the GenI surface realiser"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "geniconvert" = callPackage @@ -88023,6 +90139,7 @@ self: { homepage = "http://wiki.loria.fr/wiki/GenI"; description = "Conversion utility for the GenI generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genifunctors" = callPackage @@ -88036,6 +90153,7 @@ self: { homepage = "https://github.com/danr/genifunctors"; description = "Generate generalized fmap, foldMap and traverse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geniplate" = callPackage @@ -88048,6 +90166,7 @@ self: { jailbreak = true; description = "Use Template Haskell to generate Uniplate-like functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geniplate-mirror_0_7_1" = callPackage @@ -88109,6 +90228,7 @@ self: { jailbreak = true; description = "Simple HTTP server for GenI results"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "genprog" = callPackage @@ -88159,6 +90279,7 @@ self: { homepage = "https://github.com/markenwerk/haskell-geo-resolver/"; description = "Performs geo location lookups and parses the results"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geo-uk" = callPackage @@ -88237,6 +90358,7 @@ self: { homepage = "https://github.com/PaulJohnson/geodetics"; description = "Terrestrial coordinate systems and geodetic calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "geohash" = callPackage @@ -88264,6 +90386,7 @@ self: { ]; description = "Pure haskell interface to MaxMind GeoIP database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "geojson" = callPackage @@ -88312,6 +90435,7 @@ self: { jailbreak = true; description = "package for geometry in euklidean 2d space"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "getemx" = callPackage @@ -88331,6 +90455,7 @@ self: { homepage = "http://bitbucket.org/kenko/getemx"; description = "Fetch from emusic using .emx files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "getflag" = callPackage @@ -88342,6 +90467,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Command-line parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "getopt-generics_0_10_0_1" = callPackage @@ -88433,6 +90559,7 @@ self: { homepage = "http://www.grammaticalframework.org/"; description = "Grammatical Framework"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ggtsTC" = callPackage @@ -88447,6 +90574,7 @@ self: { homepage = "http://a319-101.ipm.edu.mo/~wke/ggts/impl/"; description = "A type checker and runtime system of rCOS/g (impl. of ggts-FCS)."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-boot_8_0_1" = callPackage @@ -88523,6 +90651,7 @@ self: { homepage = "http://felsin9.de/nnis/ghc-datasize"; description = "Determine the size of data structures in GHC's memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-dump-tree" = callPackage @@ -88558,6 +90687,7 @@ self: { jailbreak = true; description = "Explicitly prevent sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-events" = callPackage @@ -88603,6 +90733,7 @@ self: { jailbreak = true; description = "Analyze and visualize event logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-events-parallel" = callPackage @@ -88627,6 +90758,7 @@ self: { jailbreak = true; description = "Library and tool for parsing .eventlog files from parallel GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-exactprint" = callPackage @@ -88649,6 +90781,7 @@ self: { jailbreak = true; description = "ExactPrint for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-gc-tune" = callPackage @@ -88676,6 +90809,7 @@ self: { homepage = "https://github.com/alanz/ghc-generic-instances"; description = "Derived instances of GHC.Generic of the GHC AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-heap-view_0_5_3" = callPackage @@ -88711,9 +90845,10 @@ self: { jailbreak = true; description = "Extract the heap representation of Haskell values and thunks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "ghc-imported-from" = callPackage + "ghc-imported-from_0_3_0_5" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , exceptions, filepath, ghc, ghc-mod, ghc-paths, ghc-syb-utils , haddock-api, hspec, hspec-discover, monad-journal, mtl @@ -88748,6 +90883,44 @@ self: { homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-imported-from" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, directory + , exceptions, filepath, ghc, ghc-mod, ghc-paths, ghc-syb-utils + , haddock-api, hspec, hspec-discover, monad-journal, mtl + , optparse-applicative, parsec, pipes-transduce, process + , process-streaming, safe, syb, transformers + }: + mkDerivation { + pname = "ghc-imported-from"; + version = "0.3.0.6"; + sha256 = "1a3ea468eb0b326c1794f7ec20c3d0e8493ff3d8fe67fd7e234ca56d26915bbe"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec pipes-transduce + process process-streaming safe syb transformers + ]; + executableHaskellDepends = [ + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec process + process-streaming safe syb transformers + ]; + testHaskellDepends = [ + base bytestring Cabal containers directory exceptions filepath ghc + ghc-mod ghc-paths ghc-syb-utils haddock-api hspec hspec-discover + monad-journal mtl optparse-applicative parsec process + process-streaming safe syb transformers + ]; + homepage = "https://github.com/carlohamalainen/ghc-imported-from"; + description = "Find the Haddock documentation for a symbol"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-make" = callPackage @@ -88928,6 +91101,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/ghc-mod/"; description = "Happy Haskell Programming"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-mtl" = callPackage @@ -89024,6 +91198,7 @@ self: { homepage = "https://github.com/gibiansky/IHaskell"; description = "Haskell source parser from GHC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-paths" = callPackage @@ -89053,6 +91228,7 @@ self: { jailbreak = true; description = "Simple utility to fix BROKEN package dependencies for cabal-install"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-pkg-lib" = callPackage @@ -89068,6 +91244,7 @@ self: { homepage = "https://github.com/JPMoresmau/ghc-pkg-lib"; description = "Provide library support for ghc-pkg information"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-prim_0_5_0_0" = callPackage @@ -89148,6 +91325,7 @@ self: { homepage = "http://github.com/pmlodawski/ghc-session"; description = "Simplified GHC API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-simple" = callPackage @@ -89165,6 +91343,7 @@ self: { homepage = "https://github.com/valderman/ghc-simple"; description = "Simplified interface to the GHC API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghc-srcspan-plugin" = callPackage @@ -89190,6 +91369,7 @@ self: { homepage = "http://github.com/nominolo/ghc-syb"; description = "Data and Typeable instances for the GHC API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghc-syb-utils_0_2_2" = callPackage @@ -89372,6 +91552,7 @@ self: { homepage = "http://felsin9.de/nnis/ghc-vis"; description = "Live visualization of data structures in GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci_8_0_1" = callPackage @@ -89401,6 +91582,7 @@ self: { jailbreak = true; description = "Display simple diagrams from ghci"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghci-haskeline" = callPackage @@ -89421,6 +91603,7 @@ self: { homepage = "http://code.haskell.org/~judah/ghci-haskeline"; description = "An implementation of ghci using the Haskeline line-input library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghci-lib" = callPackage @@ -89434,6 +91617,7 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A library for interactively evaluating Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghci-ng" = callPackage @@ -89457,6 +91641,7 @@ self: { homepage = "https://github.com/chrisdone/ghci-ng"; description = "Next generation GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghci-pretty" = callPackage @@ -89700,6 +91885,7 @@ self: { libraryHaskellDepends = [ base jsaddle-dom text transformers ]; description = "DOM library that supports both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghcjs-dom-hello" = callPackage @@ -89715,6 +91901,7 @@ self: { homepage = "https://github.com/ghcjs/ghcjs-dom-hello"; description = "GHCJS DOM Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ghcjs-hplay" = callPackage @@ -89777,6 +91964,7 @@ self: { homepage = "http://github.com/shapr/ghclive/"; description = "Interactive Haskell interpreter in a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ghczdecode" = callPackage @@ -89814,6 +92002,7 @@ self: { ]; description = "Trivial routines for inspecting git repositories"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-atk" = callPackage @@ -89833,6 +92022,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) atk;}; "gi-atk_2_0_4" = callPackage @@ -89872,6 +92062,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {cairo-gobject = null;}; "gi-cairo_1_0_4" = callPackage @@ -89911,6 +92102,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; "gi-gdk_3_0_4" = callPackage @@ -89952,6 +92144,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gdkpixbuf_2_0_4" = callPackage @@ -89991,6 +92184,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gio_2_0_4" = callPackage @@ -90030,6 +92224,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository (gobject-introspection) bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gobjectIntrospection;}; "gi-glib" = callPackage @@ -90049,6 +92244,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-glib_2_0_4" = callPackage @@ -90087,6 +92283,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "gi-gobject_2_0_4" = callPackage @@ -90126,6 +92323,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamer bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gstreamer;}; "gi-gstaudio" = callPackage @@ -90146,6 +92344,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerAudio bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstbase" = callPackage @@ -90165,6 +92364,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerBase bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstvideo" = callPackage @@ -90185,6 +92385,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerVideo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gtk_3_0_3" = callPackage @@ -90228,6 +92429,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome2.gtk;}; "gi-gtk-hs" = callPackage @@ -90246,6 +92448,7 @@ self: { homepage = "https://github.com/haskell-gi/gi-gtk-hs"; description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-gtkosxapplication" = callPackage @@ -90266,6 +92469,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GtkosxApplication bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gi-gtksource" = callPackage @@ -90287,6 +92491,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GtkSource bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtksourceview;}; "gi-javascriptcore" = callPackage @@ -90305,6 +92510,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {javascriptcoregtk = null;}; "gi-javascriptcore_4_0_4" = callPackage @@ -90344,6 +92550,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libnotify bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libnotify;}; "gi-pango" = callPackage @@ -90363,6 +92570,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "gi-pango_1_0_4" = callPackage @@ -90402,6 +92610,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "PangoCairo bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "gi-poppler" = callPackage @@ -90421,6 +92630,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Poppler bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) poppler;}; "gi-soup" = callPackage @@ -90440,6 +92650,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libsoup bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage @@ -90460,6 +92671,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -90482,6 +92694,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage @@ -90504,6 +92717,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2 bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk = null;}; "gi-webkit2webextension" = callPackage @@ -90525,6 +92739,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2-WebExtension bindings"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; "gimlh" = callPackage @@ -90566,6 +92781,7 @@ self: { homepage = "https://bitbucket.org/tdammers/ginger"; description = "An implementation of the Jinja2 template language in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ginsu" = callPackage @@ -90589,6 +92805,7 @@ self: { homepage = "http://repetae.net/computer/ginsu/"; description = "Ginsu Gale Client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl;}; "gio_0_13_0_3" = callPackage @@ -90672,6 +92889,24 @@ self: { }) {system-glib = pkgs.glib;}; "gio" = callPackage + ({ mkDerivation, array, base, bytestring, containers, glib + , gtk2hs-buildtools, mtl, system-glib + }: + mkDerivation { + pname = "gio"; + version = "0.13.2.0"; + sha256 = "e5049fabb2cd1da78bae2b6d9968bfe50491ecb0f7e4a75855499aeeb264fd72"; + libraryHaskellDepends = [ + array base bytestring containers glib mtl + ]; + libraryPkgconfigDepends = [ system-glib ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to GIO"; + license = stdenv.lib.licenses.lgpl21; + }) {system-glib = pkgs.glib;}; + + "gio_0_13_3_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib, mtl , system-glib }: @@ -90686,6 +92921,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to GIO"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {system-glib = pkgs.glib;}; "gipeda_0_1_0_2" = callPackage @@ -90871,6 +93107,7 @@ self: { homepage = "http://github.com/simonmichael/gist"; description = "A reliable command-line client for gist.github.com"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git" = callPackage @@ -90894,6 +93131,7 @@ self: { homepage = "https://github.com/vincenthz/hit"; description = "Git operations in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-all" = callPackage @@ -90913,6 +93151,7 @@ self: { homepage = "https://github.com/jwiegley/git-all"; description = "Determine which Git repositories need actions to be taken"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-annex_5_20150727" = callPackage @@ -91273,6 +93512,7 @@ self: { homepage = "https://github.com/dougalstanton/git-checklist"; description = "Maintain per-branch checklists in Git"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-date" = callPackage @@ -91291,6 +93531,7 @@ self: { homepage = "https://github.com/singpolyma/git-date-haskell"; description = "Bindings to the date parsing from Git"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-embed" = callPackage @@ -91372,6 +93613,7 @@ self: { homepage = "http://github.com/jwiegley/gitlib"; description = "More intelligent push-to-GitHub utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-jump" = callPackage @@ -91449,6 +93691,7 @@ self: { homepage = "http://git-repair.branchable.com/"; description = "repairs a damanged git repisitory"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-sanity" = callPackage @@ -91470,6 +93713,7 @@ self: { homepage = "github.com/aloiscochard/git-sanity"; description = "A sanity checker for your git history"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "git-vogue" = callPackage @@ -91499,6 +93743,7 @@ self: { homepage = "https://github.com/oswynb/git-vogue"; description = "A framework for pre-commit checks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gitHUD" = callPackage @@ -91558,6 +93803,7 @@ self: { homepage = "https://github.com/mattyhall/gitdo"; description = "Create Github issues out of TODO comments in code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "github_0_14_0" = callPackage @@ -91648,6 +93894,7 @@ self: { homepage = "https://github.com/joeyh/github-backup"; description = "backs up everything github knows about a repository, to the repository"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) git;}; "github-post-receive" = callPackage @@ -91760,6 +94007,7 @@ self: { homepage = "https://github.com/greenrd/github-utils"; description = "Useful functions that use the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "github-webhook-handler_0_0_7" = callPackage @@ -91864,6 +94112,7 @@ self: { homepage = "http://gitit.net"; description = "Wiki using happstack, git or darcs, and pandoc"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gitlib_3_1_0_1" = callPackage @@ -91974,6 +94223,7 @@ self: { ]; description = "Run tests between repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gitlib-libgit2_3_1_0_3" = callPackage @@ -92117,6 +94367,7 @@ self: { ]; description = "Gitlib repository backend for storing Git objects in Amazon S3"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gitlib-sample" = callPackage @@ -92185,6 +94436,7 @@ self: { ]; description = "Generic utility functions for working with Git repositories"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gitrev_1_0_0" = callPackage @@ -92482,6 +94734,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the glade library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libglade;}; "gladexml-accessor" = callPackage @@ -92493,6 +94746,7 @@ self: { libraryHaskellDepends = [ base glade HaXml template-haskell ]; description = "Automagically declares getters for widget handles in specified interface file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "glambda" = callPackage @@ -92672,6 +94926,24 @@ self: { }) {inherit (pkgs) glib;}; "glib" = callPackage + ({ mkDerivation, base, bytestring, containers, glib + , gtk2hs-buildtools, text, utf8-string + }: + mkDerivation { + pname = "glib"; + version = "0.13.3.0"; + sha256 = "8a2b765d92f8f6c138888ef1b76da25758f72e493c677355438015dc25451029"; + libraryHaskellDepends = [ + base bytestring containers text utf8-string + ]; + libraryPkgconfigDepends = [ glib ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the GLIB library for Gtk2Hs"; + license = stdenv.lib.licenses.lgpl21; + }) {inherit (pkgs) glib;}; + + "glib_0_13_4_0" = callPackage ({ mkDerivation, base, bytestring, containers, glib, text , utf8-string }: @@ -92686,6 +94958,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "glicko" = callPackage @@ -92703,6 +94976,7 @@ self: { jailbreak = true; description = "Glicko-2 implementation in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "glider-nlp" = callPackage @@ -92717,6 +94991,7 @@ self: { homepage = "https://github.com/klangner/glider-nlp"; description = "Natural Language Processing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "glintcollider" = callPackage @@ -92738,8 +95013,8 @@ self: { }: mkDerivation { pname = "gll"; - version = "0.3.0.9"; - sha256 = "4c5657403588a489d1a97ee2e85e9ed5e41e029a299918b59778f1e65dfde0e2"; + version = "0.3.0.10"; + sha256 = "48ebad1da940849343f359fd2ec1a6ed020b381f88a5e813213e20c7f9eba058"; libraryHaskellDepends = [ array base containers pretty regex-applicative text TypeCompose ]; @@ -92764,6 +95039,7 @@ self: { homepage = "https://github.com/bairyn/global"; description = "Library enabling unique top-level declarations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "global-config" = callPackage @@ -92785,6 +95061,7 @@ self: { homepage = "https://github.com/akaspin/global-config"; description = "Global mutable configuration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "global-lock" = callPackage @@ -92808,6 +95085,7 @@ self: { jailbreak = true; description = "Namespaced, global, and top-level mutable variables without unsafePerformIO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "glome-hs" = callPackage @@ -92833,6 +95111,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Glome"; description = "ray tracer"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss_1_9_2_1" = callPackage @@ -92882,6 +95161,7 @@ self: { jailbreak = true; description = "Extras to interface Gloss and Accelerate"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gloss-algorithms" = callPackage @@ -92910,6 +95190,7 @@ self: { homepage = "https://github.com/Twey/gloss-banana"; description = "An Interface for gloss in terms of a reactive-banana Behavior"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gloss-devil" = callPackage @@ -92921,6 +95202,7 @@ self: { libraryHaskellDepends = [ base bytestring gloss repa repa-devil ]; description = "Display images in Gloss using libdevil for decoding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-examples" = callPackage @@ -92943,6 +95225,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Examples using the gloss library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-game" = callPackage @@ -92955,6 +95238,7 @@ self: { homepage = "https://github.com/mchakravarty/gloss-game"; description = "Gloss wrapper that simplifies writing games"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-juicy" = callPackage @@ -92975,6 +95259,7 @@ self: { homepage = "http://github.com/alpmestan/gloss-juicy"; description = "Load any image supported by Juicy.Pixels in your gloss application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-raster" = callPackage @@ -92992,6 +95277,7 @@ self: { homepage = "http://gloss.ouroborus.net"; description = "Parallel rendering of raster images"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gloss-raster-accelerate" = callPackage @@ -93036,6 +95322,7 @@ self: { homepage = "https://github.com/Twey/gloss-sodium"; description = "A Sodium interface to the Gloss drawing package"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "glpk-hs" = callPackage @@ -93197,6 +95484,7 @@ self: { ]; description = "Composable maps and generic tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gmndl" = callPackage @@ -93216,6 +95504,7 @@ self: { jailbreak = true; description = "Mandelbrot Set explorer using GTK"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gnome-desktop" = callPackage @@ -93231,6 +95520,7 @@ self: { ]; description = "Randomly set a picture as the GNOME desktop background"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gnome-keyring" = callPackage @@ -93247,6 +95537,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-gnome-keyring/"; description = "Bindings for libgnome-keyring"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gnome_keyring;}; "gnomevfs" = callPackage @@ -93266,6 +95557,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GNOME Virtual File System library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gnome_vfs; gnome_vfs_module = null;}; "gnss-converters" = callPackage @@ -93289,6 +95581,7 @@ self: { homepage = "http://github.com/swift-nav/gnss-converters"; description = "GNSS Converters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gnuidn_0_2_1" = callPackage @@ -93376,6 +95669,7 @@ self: { libraryHaskellDepends = [ base directory filepath process ]; description = "GHCi bindings to lambdabot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "goal-core" = callPackage @@ -93396,6 +95690,7 @@ self: { jailbreak = true; description = "Core imports for Geometric Optimization Libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-geometry" = callPackage @@ -93410,6 +95705,7 @@ self: { executableHaskellDepends = [ base goal-core ]; description = "Scientific computing on geometric objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-probability" = callPackage @@ -93430,6 +95726,7 @@ self: { jailbreak = true; description = "Manifolds of probability distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goal-simulation" = callPackage @@ -93454,6 +95751,7 @@ self: { jailbreak = true; description = "Mealy based simulation tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "goatee" = callPackage @@ -93508,6 +95806,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/gofer-prelude"; description = "The Gofer 2.30 standard prelude"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gogol" = callPackage @@ -93532,6 +95831,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Comprehensive Google Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-buyer" = callPackage @@ -93544,6 +95844,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Buyer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adexchange-seller" = callPackage @@ -93556,6 +95857,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Ad Exchange Seller SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-datatransfer" = callPackage @@ -93568,6 +95870,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Data Transfer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-directory" = callPackage @@ -93580,6 +95883,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Directory SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-emailmigration" = callPackage @@ -93592,6 +95896,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Email Migration API v2 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-admin-reports" = callPackage @@ -93604,6 +95909,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Admin Reports SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense" = callPackage @@ -93616,6 +95922,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-adsense-host" = callPackage @@ -93628,6 +95935,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google AdSense Host SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-affiliates" = callPackage @@ -93640,6 +95948,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Affiliate Network SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-analytics" = callPackage @@ -93652,6 +95961,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-enterprise" = callPackage @@ -93664,6 +95974,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play EMM SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-android-publisher" = callPackage @@ -93676,6 +95987,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Developer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appengine" = callPackage @@ -93688,6 +96000,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App Engine Admin SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-activity" = callPackage @@ -93700,6 +96013,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Apps Activity SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-calendar" = callPackage @@ -93712,6 +96026,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Calendar SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-licensing" = callPackage @@ -93724,6 +96039,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise License Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-reseller" = callPackage @@ -93736,6 +96052,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Enterprise Apps Reseller SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-apps-tasks" = callPackage @@ -93748,6 +96065,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tasks SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-appstate" = callPackage @@ -93760,6 +96078,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google App State SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-autoscaler" = callPackage @@ -93772,6 +96091,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Autoscaler SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-bigquery" = callPackage @@ -93784,6 +96104,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google BigQuery SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-billing" = callPackage @@ -93796,6 +96117,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Billing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-blogger" = callPackage @@ -93808,6 +96130,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Blogger SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-books" = callPackage @@ -93820,6 +96143,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Books SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-civicinfo" = callPackage @@ -93832,6 +96156,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Civic Information SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-classroom" = callPackage @@ -93844,6 +96169,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Classroom SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-cloudtrace" = callPackage @@ -93856,6 +96182,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Trace SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-compute" = callPackage @@ -93868,6 +96195,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-container" = callPackage @@ -93880,6 +96208,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Container Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-core" = callPackage @@ -93904,6 +96233,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Core data types and functionality for Gogol libraries"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-customsearch" = callPackage @@ -93916,6 +96246,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google CustomSearch SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dataflow" = callPackage @@ -93928,6 +96259,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Dataflow SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-datastore" = callPackage @@ -93940,6 +96272,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Datastore SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-debugger" = callPackage @@ -93952,6 +96285,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Debugger SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-deploymentmanager" = callPackage @@ -93964,6 +96298,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Deployment Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dfareporting" = callPackage @@ -93976,6 +96311,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DCM/DFA Reporting And Trafficking SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-discovery" = callPackage @@ -93988,6 +96324,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google APIs Discovery Service SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-dns" = callPackage @@ -94000,6 +96337,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud DNS SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-bids" = callPackage @@ -94012,6 +96350,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Bid Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-doubleclick-search" = callPackage @@ -94024,6 +96363,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google DoubleClick Search SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-drive" = callPackage @@ -94036,6 +96376,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Drive SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fitness" = callPackage @@ -94048,6 +96389,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fitness SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fonts" = callPackage @@ -94060,6 +96402,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fonts Developer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-freebasesearch" = callPackage @@ -94072,6 +96415,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Freebase Search SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-fusiontables" = callPackage @@ -94084,6 +96428,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Fusion Tables SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games" = callPackage @@ -94096,6 +96441,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-configuration" = callPackage @@ -94108,6 +96454,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Publishing SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-games-management" = callPackage @@ -94120,6 +96467,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Game Services Management SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-genomics" = callPackage @@ -94132,6 +96480,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Genomics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-gmail" = callPackage @@ -94144,6 +96493,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Gmail SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-migration" = callPackage @@ -94156,6 +96506,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Migration SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-groups-settings" = callPackage @@ -94168,6 +96519,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Groups Settings SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-identity-toolkit" = callPackage @@ -94180,6 +96532,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Identity Toolkit SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-latencytest" = callPackage @@ -94192,6 +96545,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Network Performance Monitoring SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-logging" = callPackage @@ -94204,6 +96558,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Logging SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-coordinate" = callPackage @@ -94216,6 +96571,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Coordinate SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-maps-engine" = callPackage @@ -94228,6 +96584,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Maps Engine SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-mirror" = callPackage @@ -94240,6 +96597,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Mirror SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-monitoring" = callPackage @@ -94252,6 +96610,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Monitoring SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-oauth2" = callPackage @@ -94264,6 +96623,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google OAuth2 SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pagespeed" = callPackage @@ -94276,6 +96636,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google PageSpeed Insights SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-partners" = callPackage @@ -94288,6 +96649,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Partners SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-play-moviespartner" = callPackage @@ -94300,6 +96662,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Play Movies Partner SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus" = callPackage @@ -94312,6 +96675,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-plus-domains" = callPackage @@ -94324,6 +96688,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google + Domains SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-prediction" = callPackage @@ -94336,6 +96701,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Prediction SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-proximitybeacon" = callPackage @@ -94348,6 +96714,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Proximity Beacon SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-pubsub" = callPackage @@ -94360,6 +96727,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Pub/Sub SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-qpxexpress" = callPackage @@ -94372,6 +96740,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google QPX Express SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool" = callPackage @@ -94384,6 +96753,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-replicapool-updater" = callPackage @@ -94396,6 +96766,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Group Updater SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourcemanager" = callPackage @@ -94408,6 +96779,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Resource Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-resourceviews" = callPackage @@ -94420,6 +96792,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Compute Engine Instance Groups SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-shopping-content" = callPackage @@ -94432,6 +96805,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Content API for Shopping SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-siteverification" = callPackage @@ -94444,6 +96818,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Site Verification SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-spectrum" = callPackage @@ -94456,6 +96831,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Spectrum Database SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-sqladmin" = callPackage @@ -94468,6 +96844,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud SQL Administration SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage" = callPackage @@ -94480,6 +96857,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud Storage JSON SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-storage-transfer" = callPackage @@ -94492,6 +96870,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Storage Transfer SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-tagmanager" = callPackage @@ -94504,6 +96883,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Tag Manager SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-taskqueue" = callPackage @@ -94516,6 +96896,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google TaskQueue SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-translate" = callPackage @@ -94528,6 +96909,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Translate SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-urlshortener" = callPackage @@ -94540,6 +96922,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google URL Shortener SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-useraccounts" = callPackage @@ -94552,6 +96935,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Cloud User Accounts SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-webmaster-tools" = callPackage @@ -94564,6 +96948,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google Webmaster Tools SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube" = callPackage @@ -94576,6 +96961,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Data SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-analytics" = callPackage @@ -94588,6 +96974,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Analytics SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gogol-youtube-reporting" = callPackage @@ -94600,6 +96987,7 @@ self: { homepage = "https://github.com/brendanhay/gogol"; description = "Google YouTube Reporting SDK"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gooey" = callPackage @@ -94612,6 +97000,7 @@ self: { jailbreak = true; description = "Graphical user interfaces that are renderable, change over time and eventually produce a value"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "google-cloud_0_0_3" = callPackage @@ -94702,6 +97091,7 @@ self: { jailbreak = true; description = "Google HTML5 Slide generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "google-mail-filters" = callPackage @@ -94752,7 +97142,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "google-translate" = callPackage + "google-translate_0_1_1_2" = callPackage ({ mkDerivation, aeson, base, bytestring, either, servant , servant-client, text }: @@ -94766,6 +97156,24 @@ self: { jailbreak = true; description = "Google Translate API bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "google-translate" = callPackage + ({ mkDerivation, aeson, base, bytestring, http-api-data + , http-client, servant, servant-client, text, transformers + }: + mkDerivation { + pname = "google-translate"; + version = "0.2"; + sha256 = "92b07c3ed6f1a815f4ef456c1612a3412701493afd665a0133200f7ef51676d7"; + libraryHaskellDepends = [ + aeson base bytestring http-api-data http-client servant + servant-client text transformers + ]; + description = "Google Translate API bindings"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "googleplus" = callPackage @@ -94785,6 +97193,7 @@ self: { homepage = "http://github.com/michaelxavier/GooglePlus"; description = "Haskell implementation of the Google+ API v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "googlepolyline" = callPackage @@ -94822,6 +97231,7 @@ self: { ]; description = "Spidering robot to download files from Gopherspace"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gore-and-ash" = callPackage @@ -94908,6 +97318,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-demo"; description = "Demonstration game for Gore&Ash game engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gore-and-ash-glfw" = callPackage @@ -94966,6 +97377,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-network"; description = "Core module for Gore&Ash engine with low level network API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gore-and-ash-sdl" = callPackage @@ -95007,6 +97419,7 @@ self: { homepage = "https://github.com/Teaspot-Studio/gore-and-ash-sync"; description = "Gore&Ash module for high level network synchronization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gpah" = callPackage @@ -95027,6 +97440,7 @@ self: { ]; description = "Generic Programming Use in Hackage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpcsets" = callPackage @@ -95091,6 +97505,7 @@ self: { ]; description = "For manipulating GPS coordinates and trails"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gps2htmlReport" = callPackage @@ -95113,6 +97528,7 @@ self: { homepage = "https://github.com/robstewart57/Gps2HtmlReport"; description = "GPS to HTML Summary Report"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gpx-conduit" = callPackage @@ -95130,6 +97546,7 @@ self: { jailbreak = true; description = "Read GPX files using conduits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "graceful" = callPackage @@ -95165,6 +97582,7 @@ self: { homepage = "http://projects.haskell.org/grammar-combinators/"; description = "A parsing library of context-free grammar combinators"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "grapefruit-examples" = callPackage @@ -95182,6 +97600,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Examples using the Grapefruit library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "grapefruit-frp" = callPackage @@ -95199,6 +97618,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Functional Reactive Programming core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "grapefruit-records" = callPackage @@ -95211,6 +97631,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "A record system for Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "grapefruit-ui" = callPackage @@ -95228,6 +97649,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "Declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "grapefruit-ui-gtk" = callPackage @@ -95246,6 +97668,7 @@ self: { homepage = "http://grapefruit-project.org/"; description = "GTK+-based backend for declarative user interface programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "graph-core_0_2_1_0" = callPackage @@ -95388,6 +97811,7 @@ self: { homepage = "http://rochel.info/#graph-rewriting"; description = "Interactive graph rewriting system implementing various well-known combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "graph-rewriting-gl" = callPackage @@ -95554,6 +97978,7 @@ self: { homepage = "http://github.com/konn/graph-utils/"; description = "A simple wrapper & quasi quoter for fgl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "graph-visit" = callPackage @@ -95570,6 +97995,7 @@ self: { homepage = "https://github.com/atzedijkstra/graph-visit"; description = "Graph walk abstraction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graph-wrapper" = callPackage @@ -95606,6 +98032,7 @@ self: { homepage = "https://github.com/tel/graphbuilder"; description = "A declarative, monadic graph construction language for small graphs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphene" = callPackage @@ -95660,6 +98087,7 @@ self: { homepage = "http://github.com/luqui/collada"; description = "Load 3D geometry in the COLLADA format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "graphicsFormats" = callPackage @@ -95671,6 +98099,7 @@ self: { libraryHaskellDepends = [ base haskell98 OpenGL QuickCheck ]; description = "Classes for renderable objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphicstools" = callPackage @@ -95690,6 +98119,7 @@ self: { homepage = "https://yousource.it.jyu.fi/cvlab/pages/GraphicsTools"; description = "Tools for creating graphical UIs, based on wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphmod" = callPackage @@ -95787,6 +98217,7 @@ self: { homepage = "http://github.com/explicitcall/graphtype"; description = "A simple tool to illustrate dependencies between Haskell types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "graphviz_2999_17_0_1" = callPackage @@ -95927,6 +98358,7 @@ self: { homepage = "https://bitbucket.org/janmasrovira/am3-project/overview"; description = "GRASP implementation for the AMMM project"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gravatar_0_6" = callPackage @@ -96029,6 +98461,7 @@ self: { homepage = "https://github.com/sof/greencard"; description = "GreenCard, a foreign function pre-processor for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "greencard-lib" = callPackage @@ -96041,6 +98474,7 @@ self: { homepage = "http://www.haskell.org/greencard/"; description = "A foreign function interface pre-processor library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "greg-client" = callPackage @@ -96057,6 +98491,7 @@ self: { homepage = "http://code.google.com/p/greg/"; description = "A scalable distributed logger with a high-precision global time axis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gremlin-haskell" = callPackage @@ -96081,6 +98516,7 @@ self: { homepage = "http://github.com/nakaji-dayo/gremlin-haskell"; description = "Graph database client for TinkerPop3 Gremlin Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "greplicate" = callPackage @@ -96116,6 +98552,7 @@ self: { homepage = "https://github.com/mhwombat/grid"; description = "Tools for working with regular grids (graphs, lattices)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gridfs" = callPackage @@ -96134,6 +98571,7 @@ self: { homepage = "http://github.com/btubbs/haskell-gridfs#readme"; description = "GridFS (MongoDB file storage) implementation"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gridland" = callPackage @@ -96152,6 +98590,7 @@ self: { ]; description = "Grid-based multimedia engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "grm" = callPackage @@ -96173,6 +98612,7 @@ self: { executableToolDepends = [ happy ]; description = "grm grammar converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "groom" = callPackage @@ -96274,6 +98714,7 @@ self: { homepage = "http://github.com/lykahb/groundhog"; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-converters" = callPackage @@ -96292,6 +98733,7 @@ self: { ]; description = "Extended Converter Library for groundhog embedded types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-inspector" = callPackage @@ -96317,6 +98759,7 @@ self: { homepage = "http://github.com/lykahb/groundhog"; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-mysql_0_7_0" = callPackage @@ -96354,6 +98797,7 @@ self: { jailbreak = true; description = "MySQL backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-postgresql_0_7_0" = callPackage @@ -96418,6 +98862,7 @@ self: { jailbreak = true; description = "PostgreSQL backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-sqlite_0_7_0" = callPackage @@ -96454,6 +98899,7 @@ self: { ]; description = "Sqlite3 backend for the groundhog library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "groundhog-th_0_7_0" = callPackage @@ -96490,6 +98936,7 @@ self: { ]; description = "Type-safe datatype-database mapping library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "group-with" = callPackage @@ -96639,6 +99086,7 @@ self: { jailbreak = true; description = "fractal explorer GUI using the ruff library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gruff-examples" = callPackage @@ -96658,6 +99106,7 @@ self: { jailbreak = true; description = "Mandelbrot Set examples using ruff and gruff"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gsasl" = callPackage @@ -96695,6 +99144,7 @@ self: { homepage = "http://github.com/patperry/hs-gsl-random"; description = "Bindings the the GSL random number generation facilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gsl-random-fu" = callPackage @@ -96707,6 +99157,7 @@ self: { homepage = "http://code.haskell.org/~mokus/gsl-random-fu"; description = "Instances for using gsl-random with random-fu"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gsmenu" = callPackage @@ -96726,6 +99177,7 @@ self: { homepage = "http://sigkill.dk/programs/gsmenu"; description = "A visual generic menu"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gstreamer" = callPackage @@ -96777,6 +99229,7 @@ self: { ]; description = "The General Transit Feed Specification format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk_0_13_3" = callPackage @@ -96922,6 +99375,25 @@ self: { }) {gtk2 = pkgs.gnome2.gtk;}; "gtk" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2, gtk2hs-buildtools, mtl, pango, text + }: + mkDerivation { + pname = "gtk"; + version = "0.14.3"; + sha256 = "cd225f238ccc24b14d550292768f0cbec738eac7d130b926f827770df7960969"; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk2 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + doHaddock = false; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + }) {gtk2 = pkgs.gnome2.gtk;}; + + "gtk_0_14_4" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, mtl, pango, text }: @@ -96933,10 +99405,10 @@ self: { array base bytestring cairo containers gio glib mtl pango text ]; libraryPkgconfigDepends = [ gtk2 ]; - doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk2 = pkgs.gnome2.gtk;}; "gtk-helpers" = callPackage @@ -96981,6 +99453,7 @@ self: { testHaskellDepends = [ base containers gtk3 hspec ]; description = "Large TreeStore support for gtk2hs"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk-mac-integration" = callPackage @@ -96997,6 +99470,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gtk-mac-integration-gtk2 = null;}; "gtk-serialized-event" = callPackage @@ -97015,6 +99489,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "GTK+ Serialized event"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gdk2 = null;}; "gtk-simple-list-view" = callPackage @@ -97051,6 +99526,7 @@ self: { jailbreak = true; description = "Convenient Gtk canvas with mouse and keyboard input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk-traymanager" = callPackage @@ -97187,6 +99663,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: glade package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glib" = callPackage @@ -97213,6 +99690,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gnomevfs package"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk2hs-cast-gtk" = callPackage @@ -97228,6 +99706,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtk package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-gtkglext" = callPackage @@ -97243,6 +99722,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtkglext package"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk2hs-cast-gtksourceview2" = callPackage @@ -97259,6 +99739,7 @@ self: { ]; description = "A type class for cast functions of Gtk2hs: gtksourceview2 package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-th" = callPackage @@ -97270,6 +99751,7 @@ self: { libraryHaskellDepends = [ base hint template-haskell ]; description = "A type class for cast functions of Gtk2hs: TH package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-hello" = callPackage @@ -97285,6 +99767,7 @@ self: { homepage = "http://www.haskell.org/hello/"; description = "Gtk2Hs Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-rpn" = callPackage @@ -97297,6 +99780,7 @@ self: { jailbreak = true; description = "Adds a module to gtk2hs allowing layouts to be defined using reverse polish notation"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gtk3_0_13_4" = callPackage @@ -97511,6 +99995,32 @@ self: { }) {inherit (pkgs) gtk3;}; "gtk3" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time + , transformers + }: + mkDerivation { + pname = "gtk3"; + version = "0.14.3"; + sha256 = "aa2fde0dde64936a96c72b08b9cc0ebb1fb73aedb94625dc2163843f957956a0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk3 ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + executableHaskellDepends = [ + array base cairo text time transformers + ]; + doHaddock = false; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ 3 graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) gtk3;}; + + "gtk3_0_14_4" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk3, mtl, pango, text, time, transformers }: @@ -97527,10 +100037,11 @@ self: { executableHaskellDepends = [ array base cairo text time transformers ]; - doHaddock = false; + jailbreak = true; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; "gtk3-mac-integration" = callPackage @@ -97547,6 +100058,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gtkglext" = callPackage @@ -97564,6 +100076,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GTK+ OpenGL Extension"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gtkglext;}; "gtkimageview" = callPackage @@ -97583,6 +100096,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Binding to the GtkImageView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtkimageview;}; "gtkrsync" = callPackage @@ -97601,6 +100115,7 @@ self: { homepage = "http://hg.complete.org/gtkrsync"; description = "Gnome rsync progress display"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtksourceview2" = callPackage @@ -97656,6 +100171,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GtkSourceView library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) gtksourceview;}; "guarded-rewriting" = callPackage @@ -97668,6 +100184,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/GuardedRewriting"; description = "Datatype-generic rewriting with preconditions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "guess-combinator" = callPackage @@ -97680,6 +100197,7 @@ self: { homepage = "http://code.atnnn.com/project/guess"; description = "Generate simple combinators given their type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "guid" = callPackage @@ -97692,6 +100210,7 @@ self: { testHaskellDepends = [ base HUnit ]; description = "A simple wrapper around uuid"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "gulcii" = callPackage @@ -97757,6 +100276,7 @@ self: { homepage = "https://github.com/Fuuzetsu/h-booru"; description = "Haskell library for retrieving data from various booru image sites"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "h-gpgme" = callPackage @@ -97779,6 +100299,7 @@ self: { homepage = "https://github.com/rethab/h-gpgme"; description = "High Level Binding for GnuPG Made Easy (gpgme)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "h2048" = callPackage @@ -97801,6 +100322,7 @@ self: { homepage = "https://github.com/Javran/h2048"; description = "a haskell implementation of Game 2048"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hArduino" = callPackage @@ -97843,6 +100365,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to CMU/Long's BDD library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {bdd = null; mem = null;}; "hBDD-CUDD" = callPackage @@ -97858,6 +100381,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An FFI binding to the CUDD library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {cudd = null; epd = null; inherit (pkgs) mtr; inherit (pkgs) st; util = null;}; @@ -97875,6 +100399,7 @@ self: { jailbreak = true; description = "interface to CSound API"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {csound64 = null; inherit (pkgs) libsndfile;}; "hDFA" = callPackage @@ -97886,6 +100411,7 @@ self: { libraryHaskellDepends = [ base containers directory process ]; description = "A simple library for representing and minimising DFAs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hF2" = callPackage @@ -97897,6 +100423,7 @@ self: { libraryHaskellDepends = [ base cereal vector ]; description = "F(2^e) math for cryptography"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hGelf" = callPackage @@ -97956,6 +100483,7 @@ self: { homepage = "http://github.com/itkovian/hMollom"; description = "Library to interact with the @Mollom anti-spam service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hOpenPGP_1_11" = callPackage @@ -98201,6 +100729,7 @@ self: { homepage = "http://floss.scru.org/hOpenPGP/"; description = "native Haskell implementation of OpenPGP (RFC4880)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hPDB_1_2_0" = callPackage @@ -98432,6 +100961,7 @@ self: { libraryHaskellDepends = [ array base containers unix ]; description = "R bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hRESP" = callPackage @@ -98498,6 +101028,7 @@ self: { jailbreak = true; description = "Interface to Amazon's SimpleDB service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hTalos" = callPackage @@ -98512,6 +101043,7 @@ self: { homepage = "https://github.com/mgajda/hTalos"; description = "Parser, print and manipulate structures in PDB file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hTensor" = callPackage @@ -98539,6 +101071,7 @@ self: { homepage = "http://dslsrv4.cs.missouri.edu/~qqbm9"; description = "Optimal variable selection in chain graphical model"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hXmixer" = callPackage @@ -98556,6 +101089,7 @@ self: { ]; description = "A Gtk mixer GUI application for FreeBSD"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haar" = callPackage @@ -98574,6 +101108,7 @@ self: { homepage = "https://github.com/mhwombat/haar"; description = "Haar wavelet transforms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hablog" = callPackage @@ -98637,6 +101172,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-contrib"; description = "Hack contrib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-contrib-press" = callPackage @@ -98654,6 +101190,7 @@ self: { homepage = "http://github.com/bickfordb/hack-contrib-press"; description = "Hack helper that renders Press templates"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack-frontend-happstack" = callPackage @@ -98671,6 +101208,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "hack-frontend-happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-frontend-monadcgi" = callPackage @@ -98714,6 +101252,7 @@ self: { homepage = "https://gitlab.com/twittner/hack-handler-epoll"; description = "hack handler implementation using epoll"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack-handler-evhttp" = callPackage @@ -98732,6 +101271,7 @@ self: { homepage = "http://github.com/bickfordb/hack-handler-evhttp"; description = "Hack EvHTTP (libevent) Handler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {event = null;}; "hack-handler-fastcgi" = callPackage @@ -98746,6 +101286,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-fastcgi/tree/master"; description = "Hack handler direct to fastcgi (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fcgi;}; "hack-handler-happstack" = callPackage @@ -98763,6 +101304,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-happstack"; description = "Hack Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-handler-hyena" = callPackage @@ -98779,6 +101321,7 @@ self: { homepage = "http://github.com/nfjinjing/hack-handler-hyena"; description = "Hyena hack handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack-handler-kibro" = callPackage @@ -98793,6 +101336,7 @@ self: { homepage = "http://github.com/nfjinjing/hack/tree/master"; description = "Hack Kibro handler"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack-handler-simpleserver" = callPackage @@ -98810,6 +101354,7 @@ self: { homepage = "http://github.com/snoyberg/hack-handler-simpleserver/tree/master"; description = "A simplistic HTTP server handler for Hack. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-cleanpath" = callPackage @@ -98824,6 +101369,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-cleanpath/tree/master"; description = "Applies some basic redirect rules to get cleaner paths. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-clientsession" = callPackage @@ -98840,6 +101386,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-clientsession/tree/master"; description = "Middleware for easily keeping session data in client cookies. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack-middleware-gzip" = callPackage @@ -98868,6 +101415,7 @@ self: { homepage = "http://github.com/snoyberg/hack-middleware-jsonp/tree/master"; description = "Automatic wrapping of JSON responses to convert into JSONP. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2" = callPackage @@ -98933,6 +101481,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-happstack-server"; description = "Hack2 Happstack server handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hack2-handler-mongrel2-http" = callPackage @@ -98953,6 +101502,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-mongrel2-http"; description = "Hack2 Mongrel2 HTTP handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack2-handler-snap-server" = callPackage @@ -98988,6 +101538,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-handler-warp"; description = "Hack2 warp handler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hack2-interface-wai" = callPackage @@ -99006,6 +101557,7 @@ self: { homepage = "https://github.com/nfjinjing/hack2-interface-wai"; description = "Hack2 interface of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hackage-db" = callPackage @@ -99166,6 +101718,7 @@ self: { homepage = "http://github.com/snoyberg/hackage-proxy"; description = "Provide a proxy for Hackage which modifies responses in some way. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hackage-repo-tool" = callPackage @@ -99273,6 +101826,7 @@ self: { jailbreak = true; description = "The Hackage web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-sparks" = callPackage @@ -99292,6 +101846,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage-sparks"; description = "Generate sparkline graphs of hackage statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage-whatsnew" = callPackage @@ -99325,6 +101880,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hackage2hwn"; description = "Convert Hackage RSS feeds to wiki format for publishing on Haskell.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackage2twitter" = callPackage @@ -99339,6 +101895,7 @@ self: { homepage = "http://github.com/tomlokhorst/hackage2twitter"; description = "Send new Hackage releases to Twitter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hackager" = callPackage @@ -99375,6 +101932,7 @@ self: { testHaskellDepends = [ base hspec transformers ]; description = "API for Hacker News"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hackertyper" = callPackage @@ -99458,6 +102016,7 @@ self: { homepage = "https://github.com/Forkk/hactor"; description = "Lightweight Erlang-style actors for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hactors" = callPackage @@ -99608,6 +102167,7 @@ self: { homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haddock-library_1_1_1" = callPackage @@ -99689,6 +102249,7 @@ self: { homepage = "https://github.com/philopon/haddocset"; description = "Generate docset of Dash by Haddock haskell documentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hadoop-formats" = callPackage @@ -99729,6 +102290,7 @@ self: { homepage = "http://github.com/jystic/hadoop-rpc"; description = "Use the Hadoop RPC interface from Haskell"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hadoop-tools" = callPackage @@ -99757,6 +102319,7 @@ self: { homepage = "http://github.com/jystic/hadoop-tools"; description = "Fast command line tools for working with Hadoop"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haeredes" = callPackage @@ -99803,6 +102366,7 @@ self: { homepage = "http://github.com/tych0/haggis"; description = "A static site generator with blogging/comments support"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haha" = callPackage @@ -99857,6 +102421,7 @@ self: { jailbreak = true; description = "A typed template engine, subset of jinja2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hailgun" = callPackage @@ -99876,6 +102441,7 @@ self: { jailbreak = true; description = "Mailgun REST api interface for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hailgun-send" = callPackage @@ -99892,6 +102458,7 @@ self: { jailbreak = true; description = "A program to send emails throught the Mailgun api"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hails" = callPackage @@ -99981,6 +102548,7 @@ self: { homepage = "https://github.com/tfausak/hairy"; description = "A JSON REST API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakaru" = callPackage @@ -100011,6 +102579,7 @@ self: { homepage = "http://indiana.edu/~ppaml/"; description = "A probabilistic programming embedded DSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hake" = callPackage @@ -100041,6 +102610,7 @@ self: { homepage = "https://code.reaktor42.de/projects/hakismet"; description = "Akismet spam protection library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hako" = callPackage @@ -100573,6 +103143,7 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "A static website compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) utillinux;}; "hakyll-R" = callPackage @@ -100588,6 +103159,7 @@ self: { jailbreak = true; description = "A package allowing to write Hakyll blog posts in Rmd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-agda" = callPackage @@ -100606,6 +103178,7 @@ self: { homepage = "https://github.com/bitonic/hakyll-agda"; description = "Wrapper to integrate literate Agda files with Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-blaze-templates" = callPackage @@ -100618,6 +103191,7 @@ self: { jailbreak = true; description = "Blaze templates for Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-contrib" = callPackage @@ -100634,6 +103208,7 @@ self: { homepage = "http://jaspervdj.be/hakyll"; description = "Extra modules for the hakyll website compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-contrib-csv" = callPackage @@ -100651,6 +103226,7 @@ self: { homepage = "https://github.com/narrative/hakyll-contrib-csv#readme"; description = "Generate Html tables from Csv files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-contrib-elm" = callPackage @@ -100671,6 +103247,7 @@ self: { homepage = "https://github.com/narrative/hakyll-contrib-elm#readme"; description = "Compile Elm code for inclusion in Hakyll static site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-contrib-hyphenation" = callPackage @@ -100684,6 +103261,7 @@ self: { homepage = "https://bitbucket.org/rvlm/hakyll-contrib-hyphenation"; description = "automatic hyphenation for Hakyll"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-contrib-links" = callPackage @@ -100704,6 +103282,7 @@ self: { jailbreak = true; description = "A hakyll library that helps maintain a separate links database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-convert" = callPackage @@ -100725,6 +103304,7 @@ self: { homepage = "http://github.com/kowey/hakyll-convert"; description = "Convert from other blog engines to Hakyll"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-elm" = callPackage @@ -100757,6 +103337,7 @@ self: { homepage = "https://gitlab.com/aergus/hakyll-filestore"; description = "FileStore utilities for Hakyll"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hakyll-sass" = callPackage @@ -100774,6 +103355,7 @@ self: { homepage = "https://github.com/meoblast001/hakyll-sass"; description = "Hakyll SASS compiler over hsass"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "halberd" = callPackage @@ -100804,6 +103386,7 @@ self: { homepage = "http://github.com/haskell-suite/halberd/"; description = "A tool to generate missing import statements for Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "half_0_2_0_1" = callPackage @@ -100881,6 +103464,7 @@ self: { jailbreak = true; description = "The HAskelL File System (\"halfs\" -- intended for use on the HaLVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "halipeto" = callPackage @@ -100894,6 +103478,7 @@ self: { homepage = "http://github.com/peti/halipeto"; description = "Haskell Static Web Page Generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "halive" = callPackage @@ -100946,6 +103531,7 @@ self: { homepage = "https://github.com/timjb/halma"; description = "Library implementing Halma rules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haltavista" = callPackage @@ -100959,6 +103545,7 @@ self: { executableHaskellDepends = [ base hint process ]; description = "looks for functions given a set of example input/outputs"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hamid" = callPackage @@ -101003,6 +103590,7 @@ self: { jailbreak = true; description = "Haskell macro preprocessor"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hamtmap" = callPackage @@ -101015,6 +103603,7 @@ self: { homepage = "https://github.com/exclipy/pdata"; description = "A purely functional and persistent hash map"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hamusic" = callPackage @@ -101036,6 +103625,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/HaMusic"; description = "Library to handle abstract music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "handa-gdata" = callPackage @@ -101135,6 +103725,7 @@ self: { homepage = "https://github.com/utdemir/handsy"; description = "A DSL to describe common shell operations and interpeters for running them locally and remotely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "handwriting" = callPackage @@ -101193,6 +103784,7 @@ self: { jailbreak = true; description = "Simple Continuous Integration/Deployment System"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hans" = callPackage @@ -101259,9 +103851,10 @@ self: { ]; description = "Graphviz code generation with Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "hapistrano" = callPackage + "hapistrano_0_2_1_1" = callPackage ({ mkDerivation, base, base-compat, directory, either, filepath , hspec, mtl, process, temporary, time, time-locale-compat , transformers @@ -101284,6 +103877,31 @@ self: { homepage = "https://github.com/stackbuilders/hapistrano"; description = "A deployment library for Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hapistrano" = callPackage + ({ mkDerivation, base, base-compat, directory, either, filepath + , hspec, mtl, process, temporary, time, time-locale-compat + , transformers + }: + mkDerivation { + pname = "hapistrano"; + version = "0.2.1.2"; + sha256 = "23ad0b7a3702fad6fd19b82ffc2db2ef99308c1ed6b73c3bdad700e08a44ed09"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base either filepath mtl process time time-locale-compat + transformers + ]; + executableHaskellDepends = [ base base-compat ]; + testHaskellDepends = [ + base directory either filepath hspec mtl process temporary + ]; + homepage = "https://github.com/stackbuilders/hapistrano"; + description = "A deployment library for Haskell applications"; + license = stdenv.lib.licenses.mit; }) {}; "happindicator" = callPackage @@ -101302,6 +103920,7 @@ self: { jailbreak = true; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {appindicator = null;}; "happindicator3" = callPackage @@ -101319,6 +103938,7 @@ self: { homepage = "https://github.com/mlacorte/happindicator3"; description = "Binding to the appindicator library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {appindicator = null;}; "happraise" = callPackage @@ -101332,6 +103952,7 @@ self: { executableHaskellDepends = [ base directory filepath ]; description = "A small program for counting the comments in haskell source"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "happs-hsp" = callPackage @@ -101345,6 +103966,7 @@ self: { base bytestring HAppS-Server hsp mtl plugins ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-hsp-template" = callPackage @@ -101361,6 +103983,7 @@ self: { ]; description = "Utilities for using HSP templates in HAppS applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happs-tutorial" = callPackage @@ -101386,6 +104009,7 @@ self: { jailbreak = true; description = "A Happstack Tutorial that is its own web 2.0-type demo."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack" = callPackage @@ -101402,6 +104026,7 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-auth" = callPackage @@ -101422,6 +104047,7 @@ self: { homepage = "http://n-sch.de/happstack-auth"; description = "A Happstack Authentication Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-authenticate_2_3_2" = callPackage @@ -101545,6 +104171,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Happstack Authentication Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-clientsession" = callPackage @@ -101562,6 +104189,7 @@ self: { homepage = "http://happstack.com"; description = "client-side session data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-contrib" = callPackage @@ -101585,6 +104213,7 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-data" = callPackage @@ -101608,6 +104237,7 @@ self: { homepage = "http://happstack.com"; description = "Happstack data manipulation libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-dlg" = callPackage @@ -101626,6 +104256,7 @@ self: { homepage = "http://patch-tag.com/r/cdsmith/happstack-dlg"; description = "Cross-request user interactions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-facebook" = callPackage @@ -101653,6 +104284,7 @@ self: { homepage = "http://src.seereason.com/happstack-facebook/"; description = "A package for building Facebook applications using Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fastcgi" = callPackage @@ -101669,6 +104301,7 @@ self: { ]; description = "Happstack extension for use with FastCGI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay" = callPackage @@ -101686,6 +104319,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Fay with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-fay-ajax" = callPackage @@ -101719,6 +104353,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Glue code for using Happstack with acid-state, web-routes, reform, and HSP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hamlet" = callPackage @@ -101732,6 +104367,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for Hamlet HTML templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-heist" = callPackage @@ -101750,6 +104386,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using Heist templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-helpers" = callPackage @@ -101775,6 +104412,7 @@ self: { homepage = "http://patch-tag.com/r/tphyahoo/HAppSHelpers/home"; description = "Convenience functions for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hsp" = callPackage @@ -101792,6 +104430,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using HSP templates in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-hstringtemplate" = callPackage @@ -101809,6 +104448,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using HStringTemplate in Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-ixset" = callPackage @@ -101829,6 +104469,7 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-jmacro" = callPackage @@ -101847,6 +104488,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Support for using JMacro with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-lite" = callPackage @@ -101861,6 +104503,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Happstack minus the useless stuff"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-monad-peel" = callPackage @@ -101876,6 +104519,7 @@ self: { ]; description = "monad-peel instances for Happstack types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-plugins" = callPackage @@ -101893,6 +104537,7 @@ self: { homepage = "http://happstack.com"; description = "The haskell application server stack + reload"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server_7_3_9" = callPackage @@ -102080,6 +104725,7 @@ self: { homepage = "http://happstack.com"; description = "Web related tools and services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-server-tls" = callPackage @@ -102100,6 +104746,7 @@ self: { homepage = "http://www.happstack.com/"; description = "extend happstack-server with https:// support (TLS/SSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; "happstack-server-tls-cryptonite" = callPackage @@ -102118,6 +104765,7 @@ self: { jailbreak = true; description = "Extend happstack-server with native HTTPS support (TLS/SSL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-state" = callPackage @@ -102140,6 +104788,7 @@ self: { homepage = "http://happstack.com"; description = "Event-based distributed state"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-static-routing" = callPackage @@ -102156,6 +104805,7 @@ self: { homepage = "https://github.com/scrive/happstack-static-routing"; description = "Support for static URL routing with overlap detection for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-util" = callPackage @@ -102179,6 +104829,7 @@ self: { homepage = "http://happstack.com"; description = "Web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happstack-yui" = callPackage @@ -102201,6 +104852,7 @@ self: { homepage = "http://hub.darcs.net/dag/yui/browse/happstack-yui"; description = "Utilities for using YUI3 with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "happy_1_19_4" = callPackage @@ -102273,6 +104925,7 @@ self: { homepage = "https://github.com/cstrahan/happybara"; description = "Acceptance test framework for web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "happybara-webkit" = callPackage @@ -102294,6 +104947,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit"; description = "WebKit Happybara driver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "happybara-webkit-server" = callPackage @@ -102307,6 +104961,7 @@ self: { homepage = "https://github.com/cstrahan/happybara/happybara-webkit-server"; description = "WebKit Server binary for Happybara (taken from capybara-webkit)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hapstone" = callPackage @@ -102326,6 +104981,7 @@ self: { homepage = "http://github.com/ibabushkin/hapstone"; description = "Capstone bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) capstone;}; "har" = callPackage @@ -102361,6 +105017,7 @@ self: { homepage = "http://www.davidb.org/darcs/harchive/"; description = "Networked content addressed backup and restore software"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl; inherit (pkgs) sqlite;}; "hardware-edsl" = callPackage @@ -102379,6 +105036,7 @@ self: { homepage = "https://github.com/markus-git/hardware-edsl"; description = "Deep embedding of hardware descriptions with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hark" = callPackage @@ -102398,6 +105056,7 @@ self: { homepage = "http://code.google.com/p/hark/"; description = "A Gentoo package query tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "harmony" = callPackage @@ -102422,6 +105081,7 @@ self: { ]; description = "A web service specification compiler that generates implementation and tests"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haroonga" = callPackage @@ -102439,6 +105099,7 @@ self: { jailbreak = true; description = "Low level bindings for Groonga"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {groonga = null;}; "haroonga-httpd" = callPackage @@ -102458,6 +105119,7 @@ self: { jailbreak = true; description = "Yet another Groonga http server"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "harp" = callPackage @@ -102509,6 +105171,7 @@ self: { homepage = "https://github.com/stackbuilders/harvest-api"; description = "Bindings for Harvest API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "has" = callPackage @@ -102523,6 +105186,7 @@ self: { homepage = "http://github.com/nonowarn/has"; description = "Entity based records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "has-th" = callPackage @@ -102535,6 +105199,7 @@ self: { homepage = "http://github.com/chrisdone/has-th"; description = "Template Haskell function for Has records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hascal" = callPackage @@ -102552,6 +105217,7 @@ self: { homepage = "http://darcsden.com/mekeor/hascal"; description = "A minimalistic but extensible and precise calculator"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hascat" = callPackage @@ -102571,6 +105237,7 @@ self: { jailbreak = true; description = "Hascat Web Server"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-lib" = callPackage @@ -102589,6 +105256,7 @@ self: { jailbreak = true; description = "Hascat Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-setup" = callPackage @@ -102610,6 +105278,7 @@ self: { doHaddock = false; description = "Hascat Installation helper"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hascat-system" = callPackage @@ -102627,6 +105296,7 @@ self: { jailbreak = true; description = "Hascat System Package"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hash" = callPackage @@ -102647,6 +105317,7 @@ self: { homepage = "http://github.com/analytics/hash/"; description = "Hashing tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hashable_1_2_3_0" = callPackage @@ -102866,6 +105537,7 @@ self: { homepage = "https://github.com/wowus/hashable-generics"; description = "Automatically generates Hashable instances with GHC.Generics."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hashable-time" = callPackage @@ -102914,6 +105586,7 @@ self: { ]; description = "Hashed file storage support code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hashids" = callPackage @@ -102927,6 +105600,7 @@ self: { homepage = "http://hashids.org/"; description = "Hashids generates short, unique, non-sequential ids from numbers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hashmap" = callPackage @@ -102939,6 +105613,7 @@ self: { homepage = "http://git.auryn.cz/haskell/hashmap/"; description = "Persistent containers Map and Set based on hashing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hashring" = callPackage @@ -103044,6 +105719,7 @@ self: { homepage = "http://huygens.functor.nl/hasim/"; description = "Process-Based Discrete Event Simulation library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hask" = callPackage @@ -103062,6 +105738,7 @@ self: { homepage = "http://github.com/ekmett/hask"; description = "Categories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hask-home" = callPackage @@ -103081,6 +105758,7 @@ self: { homepage = "http://gregheartsfield.com/hask-home"; description = "Generate homepages for cabal packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskades" = callPackage @@ -103140,6 +105818,7 @@ self: { homepage = "http://github.com/ivanperez-keera/haskanoid"; description = "A breakout game written in Yampa using SDL"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskarrow" = callPackage @@ -103157,6 +105836,7 @@ self: { ]; description = "A dialect of haskell with order of execution based on dependency resolution"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskbot-core" = callPackage @@ -103243,6 +105923,7 @@ self: { homepage = "http://www.korgwal.com/haskeem/"; description = "A small scheme interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskeline_0_7_2_1" = callPackage @@ -103314,6 +105995,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/haskeline-class"; description = "Class interface for working with Haskeline"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-aliyun" = callPackage @@ -103337,6 +106019,7 @@ self: { homepage = "https://github.com/yihuang/haskell-aliyun/"; description = "haskell client of aliyun service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-awk" = callPackage @@ -103367,6 +106050,7 @@ self: { ]; description = "Transform text from the command-line using Haskell expressions"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-bcrypt" = callPackage @@ -103400,6 +106084,7 @@ self: { jailbreak = true; description = "BrainFuck interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-cnc" = callPackage @@ -103421,6 +106106,7 @@ self: { homepage = "http://software.intel.com/en-us/articles/intel-concurrent-collections-for-cc/"; description = "Library for parallel programming in the Intel Concurrent Collections paradigm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-coffee" = callPackage @@ -103464,6 +106150,7 @@ self: { jailbreak = true; description = "Small modules for a Haskell course in which Haskell is taught by implementing Prelude functionality"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-docs" = callPackage @@ -103488,6 +106175,7 @@ self: { homepage = "http://github.com/chrisdone/haskell-docs"; description = "A program to find and display the docs and type of a name"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-exp-parser" = callPackage @@ -103530,6 +106218,7 @@ self: { homepage = "https://github.com/evolutics/haskell-formatter"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-ftp" = callPackage @@ -103558,6 +106247,7 @@ self: { homepage = "https://github.com/yihuang/haskell-ftp"; description = "A Haskell ftp server with configurable backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-generate" = callPackage @@ -103575,6 +106265,7 @@ self: { homepage = "http://github.com/bennofs/haskell-generate/"; description = "Typesafe generation of haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-gi" = callPackage @@ -103601,6 +106292,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "haskell-gi-base" = callPackage @@ -103614,6 +106306,7 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi-base"; description = "Foundation for libraries generated by haskell-gi"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib;}; "haskell-import-graph" = callPackage @@ -103715,6 +106408,7 @@ self: { homepage = "http://github.com/comius/haskell-mpfr"; description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-mpi" = callPackage @@ -103851,6 +106545,7 @@ self: { homepage = "http://documentup.com/haskell-suite/haskell-names"; description = "Name resolution library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-neo4j-client_0_3_1_4" = callPackage @@ -103997,6 +106692,7 @@ self: { homepage = "https://github.com/brooksbp/haskell-openflow"; description = "OpenFlow protocol in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-packages_0_2_4_3" = callPackage @@ -104063,6 +106759,7 @@ 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 = [ "x86_64-darwin" ]; }) {}; "haskell-pdf-presenter" = callPackage @@ -104084,6 +106781,7 @@ self: { homepage = "http://michaeldadams.org/projects/haskell-pdf-presenter/"; description = "Tool for presenting PDF-based presentations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-platform-test" = callPackage @@ -104114,6 +106812,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/haskell-platform-test"; description = "A test system for the Haskell Platform environment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-player" = callPackage @@ -104123,8 +106822,8 @@ self: { }: mkDerivation { pname = "haskell-player"; - version = "0.1.1.0"; - sha256 = "1b24c8f4dc0dcd800b20d48951fa65c45662740fb8da0729c31f3c91e8234c87"; + version = "0.1.3.1"; + sha256 = "f818006cf015d99e8fa9b255063ff848312db577a93d868eb0a83f42e5e2d3f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -104133,9 +106832,11 @@ self: { ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; + jailbreak = true; homepage = "https://github.com/potomak/haskell-player"; description = "A terminal music player based on afplay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-plot" = callPackage @@ -104153,6 +106854,7 @@ self: { homepage = "https://github.com/kaizhang/haskell-plot"; description = "A library for generating 2D plots painlessly"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-qrencode" = callPackage @@ -104196,6 +106898,7 @@ self: { ]; description = "Reflect Haskell types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell-rules" = callPackage @@ -104208,6 +106911,7 @@ self: { jailbreak = true; description = "A DSL for expressing natural deduction rules in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-spacegoo" = callPackage @@ -104467,6 +107171,7 @@ self: { jailbreak = true; description = "Parse source to template-haskell abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-token-utils" = callPackage @@ -104492,6 +107197,7 @@ self: { homepage = "https://github.com/alanz/haskell-token-utils"; description = "Utilities to tie up tokens to an AST"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-tor" = callPackage @@ -104527,6 +107233,7 @@ self: { homepage = "http://github.com/GaloisInc/haskell-tor"; description = "A Haskell Tor Node"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-type-exts" = callPackage @@ -104541,6 +107248,7 @@ self: { homepage = "http://code.haskell.org/haskell-type-exts"; description = "A type checker for Haskell/haskell-src-exts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-typescript" = callPackage @@ -104565,6 +107273,7 @@ self: { homepage = "https://github.com/PeterScott/haskell-tyrant"; description = "Haskell implementation of the Tokyo Tyrant binary protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell-updater" = callPackage @@ -104602,6 +107311,7 @@ self: { homepage = "http://patch-tag.com/r/adept/haskell-xmpp/home"; description = "Haskell XMPP (eXtensible Message Passing Protocol, a.k.a. Jabber) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskell2010" = callPackage @@ -104615,6 +107325,7 @@ self: { homepage = "http://www.haskell.org/onlinereport/haskell2010/"; description = "Compatibility with Haskell 2010"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98" = callPackage @@ -104632,6 +107343,7 @@ self: { homepage = "http://www.haskell.org/definition/"; description = "Compatibility with Haskell 98"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskell98libraries" = callPackage @@ -104665,6 +107377,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "A library of combinators for generating and executing SQL statements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-connect-hdbc" = callPackage @@ -104677,6 +107390,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HDBC session for HaskellDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-connect-hdbc-catchio-mtl" = callPackage @@ -104693,6 +107407,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-mtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-connect-hdbc-catchio-tf" = callPackage @@ -104710,6 +107425,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-connect-hdbc-catchio-transformers" = callPackage @@ -104727,6 +107443,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using MonadCatchIO-transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-connect-hdbc-lifted" = callPackage @@ -104744,6 +107461,7 @@ self: { homepage = "http://twitter.com/khibino"; description = "Bracketed HaskellDB HDBC session using lifted-base"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-dynamic" = callPackage @@ -104760,6 +107478,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the dynamically loaded drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskelldb-flat" = callPackage @@ -104779,6 +107498,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "An experimental HaskellDB back-end in pure Haskell (no SQL)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hdbc" = callPackage @@ -104795,6 +107515,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hdbc-mysql" = callPackage @@ -104813,6 +107534,7 @@ self: { jailbreak = true; description = "HaskellDB support for the HDBC MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hdbc-odbc" = callPackage @@ -104831,6 +107553,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HDBC ODBC driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hdbc-postgresql" = callPackage @@ -104850,6 +107573,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HDBC PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) postgresql;}; "haskelldb-hdbc-sqlite3" = callPackage @@ -104868,6 +107592,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HDBC SQLite driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hsql" = callPackage @@ -104881,6 +107606,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hsql-mysql" = callPackage @@ -104900,6 +107626,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL MySQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hsql-odbc" = callPackage @@ -104919,6 +107646,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL ODBC driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hsql-oracle" = callPackage @@ -104958,6 +107686,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL PostgreSQL driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-hsql-sqlite" = callPackage @@ -104997,6 +107726,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for the HSQL SQLite3 driver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-th" = callPackage @@ -105010,6 +107740,7 @@ self: { homepage = "http://trac.haskell.org/haskelldb-th"; description = "Template Haskell utilities for HaskellDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskelldb-wx" = callPackage @@ -105021,6 +107752,7 @@ self: { homepage = "https://github.com/m4dc4p/haskelldb"; description = "HaskellDB support for WXHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskellscrabble" = callPackage @@ -105046,6 +107778,7 @@ self: { homepage = "http://www.github.com/happy0/haskellscrabble"; description = "A scrabble library capturing the core game logic of scrabble"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskellscript" = callPackage @@ -105110,6 +107843,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HaskGame"; description = "Haskell game library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskheap" = callPackage @@ -105128,6 +107862,7 @@ self: { homepage = "https://github.com/Raynes/haskheap"; description = "Haskell bindings to refheap"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskhol-core" = callPackage @@ -105148,6 +107883,7 @@ self: { homepage = "http://haskhol.org"; description = "The core logical system of HaskHOL, an EDSL for HOL theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskintex_0_5_0_2" = callPackage @@ -105261,6 +107997,7 @@ self: { homepage = "http://daniel-diaz.github.io/projects/haskintex"; description = "Haskell Evaluation inside of LaTeX code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskmon" = callPackage @@ -105303,6 +108040,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the Bitcoin protocol"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskoin-core" = callPackage @@ -105332,6 +108070,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the core Bitcoin protocol features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-crypto" = callPackage @@ -105356,6 +108095,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-crypto"; description = "Implementation of Bitcoin cryptographic primitives"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskoin-node" = callPackage @@ -105386,6 +108126,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitoin node"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoin-protocol" = callPackage @@ -105408,6 +108149,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-protocol"; description = "Implementation of the Bitcoin network protocol messages"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskoin-script" = callPackage @@ -105432,6 +108174,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-script"; description = "Implementation of Bitcoin script parsing and evaluation"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskoin-util" = callPackage @@ -105454,6 +108197,7 @@ self: { homepage = "http://github.com/plaprade/haskoin-util"; description = "Utility functions for the Network.Haskoin project"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskoin-wallet" = callPackage @@ -105494,6 +108238,7 @@ self: { homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of a Bitcoin SPV Wallet with BIP32 and multisig support"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon" = callPackage @@ -105511,6 +108256,7 @@ self: { ]; description = "Web Application Abstraction"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-httpspec" = callPackage @@ -105526,6 +108272,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskoon-salvia" = callPackage @@ -105543,6 +108290,7 @@ self: { ]; description = "Integrating HttpSpec with Haskoon"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haskore" = callPackage @@ -105569,6 +108317,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore"; description = "The Haskore Computer Music System"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskore-realtime" = callPackage @@ -105588,6 +108337,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Haskore/"; description = "Routines for realtime playback of Haskore songs"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskore-supercollider" = callPackage @@ -105611,6 +108361,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskore back-end for SuperCollider"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskore-synthesizer" = callPackage @@ -105632,6 +108383,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Music rendering coded in Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haskore-vintage" = callPackage @@ -105663,6 +108415,7 @@ self: { homepage = "http://github.com/MarcWeber/hasktags"; description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haslo" = callPackage @@ -105677,6 +108430,7 @@ self: { executableHaskellDepends = [ mtl old-time QuickCheck time wtk ]; description = "Loan calculator engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasloGUI" = callPackage @@ -105695,6 +108449,7 @@ self: { ]; description = "Loan calculator Gtk GUI. Based on haslo (Haskell Loan) library."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hasparql-client" = callPackage @@ -105707,6 +108462,7 @@ self: { homepage = "https://github.com/lhpaladin/HaSparql-Client"; description = "This package enables to write SPARQL queries to remote endpoints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haspell" = callPackage @@ -106219,6 +108975,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-backend"; description = "API for backends of \"hasql\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hasql-optparse-applicative" = callPackage @@ -106568,6 +109325,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres"; description = "A \"PostgreSQL\" backend for the \"hasql\" library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hasql-postgres-options" = callPackage @@ -106584,6 +109342,7 @@ self: { homepage = "https://github.com/nikita-volkov/hasql-postgres-options"; description = "An \"optparse-applicative\" parser for \"hasql-postgres\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hasql-th" = callPackage @@ -106867,6 +109626,7 @@ self: { homepage = "http://projects.haskell.org/hat/"; description = "The Haskell tracer, generating and viewing Haskell execution traces"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hatex-guide" = callPackage @@ -106883,6 +109643,7 @@ self: { ]; description = "HaTeX User's Guide"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hath" = callPackage @@ -106953,6 +109714,7 @@ self: { jailbreak = true; description = "Implementation of the rules of Love Letter"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hawitter" = callPackage @@ -106974,6 +109736,7 @@ self: { homepage = "http://d.hatena.ne.jp/xanxys/20100321/1269137834"; description = "A twitter client for GTK+. Beta version."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl" = callPackage @@ -107003,6 +109766,7 @@ self: { homepage = "https://github.com/facebook/Haxl"; description = "A Haskell library for efficient, concurrent, and concise data access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl-amazonka" = callPackage @@ -107022,6 +109786,7 @@ self: { homepage = "http://github.com/tvh/haxl-amazonka#readme"; description = "Haxl data source for accessing AWS services through amazonka"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxl-facebook" = callPackage @@ -107046,6 +109811,7 @@ self: { homepage = "https://github.com/facebook/Haxl"; description = "An example Haxl data source for accessing the Facebook Graph API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "haxparse" = callPackage @@ -107072,6 +109838,7 @@ self: { homepage = "https://github.com/joelteon/haxparse"; description = "Readable HaxBall replays"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haxr_3000_10_3_1" = callPackage @@ -107207,7 +109974,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "haxr" = callPackage + "haxr_3000_11_1_5" = callPackage ({ mkDerivation, array, base, base-compat, base64-bytestring , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams , http-types, io-streams, mtl, mtl-compat, network, network-uri @@ -107226,6 +109993,28 @@ self: { homepage = "http://www.haskell.org/haskellwiki/HaXR"; description = "XML-RPC client and server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "haxr" = callPackage + ({ mkDerivation, array, base, base-compat, base64-bytestring + , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams + , http-types, io-streams, mtl, mtl-compat, network, network-uri + , old-locale, old-time, template-haskell, time, utf8-string + }: + mkDerivation { + pname = "haxr"; + version = "3000.11.1.6"; + sha256 = "25b758d83061f35e90a07ad296f827762b61639a5eb81e60326a9de96d63351d"; + libraryHaskellDepends = [ + array base base-compat base64-bytestring blaze-builder bytestring + HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat + network network-uri old-locale old-time template-haskell time + utf8-string + ]; + homepage = "http://www.haskell.org/haskellwiki/HaXR"; + description = "XML-RPC client and server library"; + license = stdenv.lib.licenses.bsd3; }) {}; "haxr-th" = callPackage @@ -107239,6 +110028,7 @@ self: { homepage = "http://www.haskell.org/haxr/"; description = "Automatic deriving of XML-RPC structs for Haskell records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "haxy" = callPackage @@ -107277,6 +110067,7 @@ self: { jailbreak = true; description = "Haskell bindings for the C Wayland library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mesa; inherit (pkgs) wayland;}; "hayoo-cli" = callPackage @@ -107297,6 +110088,7 @@ self: { homepage = "https://github.com/Gonzih/hayoo-cli"; description = "Hayoo CLI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hback" = callPackage @@ -107315,6 +110107,7 @@ self: { homepage = "http://hback.googlecode.com/"; description = "N-back memory game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbayes" = callPackage @@ -107360,6 +110153,7 @@ self: { homepage = "https://bitbucket.org/bhris/hbb"; description = "Haskell Busy Bee, a backend for text editors"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hbcd" = callPackage @@ -107406,6 +110200,7 @@ self: { homepage = "http://www.dockerz.net/software/hbeat.html"; description = "A simple step sequencer GUI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL_mixer;}; "hblas" = callPackage @@ -107425,6 +110220,7 @@ self: { homepage = "http://github.com/wellposed/hblas/"; description = "Human friendly BLAS and Lapack bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; "hblock" = callPackage @@ -107445,6 +110241,7 @@ self: { jailbreak = true; description = "A mutable vector that provides indexation on the datatype fields it stores"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hbro" = callPackage @@ -107474,6 +110271,7 @@ self: { homepage = "https://github.com/k0ral/hbro"; description = "Minimal extensible web-browser"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hbro-contrib" = callPackage @@ -107512,6 +110310,7 @@ self: { homepage = "http://www.bytelabs.org/hburg.html"; description = "Haskell Bottom Up Rewrite Generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hcc" = callPackage @@ -107567,6 +110366,7 @@ self: { homepage = "http://github.com/nfjinjing/hcheat/"; description = "A collection of code cheatsheet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hchesslib" = callPackage @@ -107584,6 +110384,7 @@ self: { homepage = "https://github.com/nablaa/hchesslib"; description = "Chess library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hcltest" = callPackage @@ -107648,6 +110449,7 @@ self: { homepage = "http://github.com/tbh/hcron"; description = "A simple job scheduler, which just runs some IO action at a given time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hcube" = callPackage @@ -107667,6 +110469,7 @@ self: { ]; description = "Virtual Rubik's cube of arbitrary size"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hcwiid" = callPackage @@ -107680,6 +110483,7 @@ self: { homepage = "https://github.com/ivanperez-keera/hcwiid"; description = "Library to interface with the wiimote"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {bluetooth = null; inherit (pkgs) cwiid;}; "hdaemonize_0_5_0_0" = callPackage @@ -107746,6 +110550,7 @@ self: { homepage = "http://github.com/madhadron/hdaemonize"; description = "Library to handle the details of writing daemons for UNIX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdbc-aeson" = callPackage @@ -107764,6 +110569,7 @@ self: { homepage = "https://github.com/danchoi/hdbc-aeson"; description = "Deserialize from HDBC rows to FromJSON instances"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdbc-postgresql-hstore" = callPackage @@ -107777,6 +110583,7 @@ self: { homepage = "http://bitbucket.com/dpwiz/hdbc-postgresql-hstore"; description = "Manipulate data in PostgreSQL \"hstore\" columns"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdbc-tuple" = callPackage @@ -107788,6 +110595,7 @@ self: { libraryHaskellDepends = [ base convertible HDBC typical ]; description = "Type save tuples for HDBC"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdbi" = callPackage @@ -107817,6 +110625,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi"; description = "Haskell Database Independent interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-conduit" = callPackage @@ -107838,6 +110647,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-conduit"; description = "Conduit glue for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-postgresql" = callPackage @@ -107867,6 +110677,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-postgresql"; description = "PostgreSQL driver for hdbi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-sqlite" = callPackage @@ -107887,6 +110698,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-sqlite"; description = "SQlite driver for HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdbi-tests" = callPackage @@ -107908,6 +110720,7 @@ self: { homepage = "https://github.com/s9gf4ult/hdbi-tests"; description = "test suite for testing HDBI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdevtools_0_1_0_6" = callPackage @@ -108109,6 +110922,7 @@ self: { ]; description = "Server-side HTTP Digest (RFC2617) in the CGI monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdirect" = callPackage @@ -108126,6 +110940,7 @@ self: { homepage = "http://www.haskell.org/hdirect/"; description = "An IDL compiler for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdis86" = callPackage @@ -108138,6 +110953,7 @@ self: { homepage = "https://github.com/kmcallister/hdis86"; description = "Interface to the udis86 disassembler for x86 and x86-64 / AMD64"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hdiscount" = callPackage @@ -108152,6 +110968,7 @@ self: { homepage = "https://github.com/jamwt/hdiscount"; description = "Haskell bindings to the Discount markdown library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {markdown = null;}; "hdm" = callPackage @@ -108165,6 +110982,7 @@ self: { executableHaskellDepends = [ base directory process unix vty ]; description = "a small display manager"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdo" = callPackage @@ -108191,6 +111009,7 @@ self: { ]; description = "A Digital Ocean client in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdocs_0_4_1_3" = callPackage @@ -108358,6 +111177,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdph-closure" = callPackage @@ -108375,6 +111195,7 @@ self: { homepage = "https://github.com/PatrickMaier/HdpH"; description = "Explicit closures in Haskell distributed parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hdr-histogram" = callPackage @@ -108394,6 +111215,7 @@ self: { homepage = "http://github.com/joshbohde/hdr-histogram#readme"; description = "Haskell implementation of High Dynamic Range (HDR) Histograms"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "headergen" = callPackage @@ -108547,6 +111369,7 @@ self: { libraryHaskellDepends = [ base cereal crypto-api hF2 ]; description = "Elliptic Curve Cryptography for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hedis_0_6_9" = callPackage @@ -108606,8 +111429,8 @@ self: { }: mkDerivation { pname = "hedis"; - version = "0.8.3"; - sha256 = "233debced6ce6285ecc5974769a748d4c9b97bbde7eb4be097b907d668b69d9e"; + version = "0.9.1"; + sha256 = "bb2422ab8cb05c6854e1d339e9117108ad9591d18a76be9dcb4cbd2e6021b08d"; libraryHaskellDepends = [ base bytestring bytestring-lexing deepseq mtl network resource-pool scanner text time vector @@ -108917,6 +111740,7 @@ self: { ]; description = "Use JSON directly from Heist templates"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "heist-async" = callPackage @@ -108956,6 +111780,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {newrelic-collector-client = null; newrelic-common = null; newrelic-transaction = null;}; @@ -108976,6 +111801,7 @@ self: { homepage = "https://github.com/philopon/helics"; description = "New Relic® agent SDK wrapper for wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "helisp" = callPackage @@ -109013,6 +111839,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Helium Compiler"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "helix" = callPackage @@ -109039,6 +111866,7 @@ self: { homepage = "https://ajnsit.github.io/helix/"; description = "Web development micro framework for haskell with typesafe URLs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hell" = callPackage @@ -109063,6 +111891,7 @@ self: { executableHaskellDepends = [ base transformers utf8-string ]; description = "A Haskell shell based on shell-conduit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hellage" = callPackage @@ -109083,6 +111912,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hellage"; description = "Distributed hackage mirror"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hellnet" = callPackage @@ -109108,6 +111938,7 @@ self: { homepage = "http://bitcheese.net/wiki/hellnet/hspawn"; description = "Simple, distributed, anonymous data sharing network"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hello" = callPackage @@ -109146,6 +111977,7 @@ self: { homepage = "http://github.com/switchface/helm"; description = "A functionally reactive game engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "help-esb" = callPackage @@ -109163,6 +111995,7 @@ self: { homepage = "https://github.com/helpdotcom/help-esb.hs"; description = "A Haskell client for the Help.com team's ESB."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hemkay" = callPackage @@ -109180,6 +112013,7 @@ self: { ]; description = "A module music mixer and player"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hemkay-core" = callPackage @@ -109220,6 +112054,7 @@ self: { homepage = "https://github.com/nh2/hemokit"; description = "Haskell port of the Emokit EEG project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hen" = callPackage @@ -109242,6 +112077,7 @@ self: { homepage = "https://github.com/selectel/hen"; description = "Haskell bindings to Xen hypervisor interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {xenctrl = null;}; "henet" = callPackage @@ -109256,6 +112092,7 @@ self: { ]; description = "Bindings and high level interface for to ENet v1.3.9"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hepevt" = callPackage @@ -109267,6 +112104,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 lha ]; description = "HEPEVT parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "her-lexer" = callPackage @@ -109279,6 +112117,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A lexer for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "her-lexer-parsec" = callPackage @@ -109290,6 +112129,7 @@ self: { libraryHaskellDepends = [ base her-lexer parsec transformers ]; description = "Parsec frontend to \"her-lexer\" for Haskell source code"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "herbalizer" = callPackage @@ -109308,6 +112148,7 @@ self: { homepage = "https://github.com/danchoi/herbalizer"; description = "HAML to ERB translator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "here_1_2_6" = callPackage @@ -109388,6 +112229,7 @@ self: { homepage = "http://github.com/cutsea110/heredoc.git"; description = "heredocument"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "herf-time" = callPackage @@ -109430,6 +112272,7 @@ self: { jailbreak = true; description = "Haskell Equational Reasoning Model-to-Implementation Tunnel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hermit-syb" = callPackage @@ -109445,6 +112288,7 @@ self: { ]; description = "HERMIT plugin for optimizing Scrap-Your-Boilerplate traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hero-club-five-tenets" = callPackage @@ -109508,6 +112352,7 @@ self: { ]; description = "A library for compiling and serving static web assets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-embed" = callPackage @@ -109524,6 +112369,7 @@ self: { ]; description = "Embed preprocessed web assets in your executable with Template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "herringbone-wai" = callPackage @@ -109540,6 +112386,7 @@ self: { ]; description = "Wai adapter for the Herringbone web asset preprocessor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesh" = callPackage @@ -109565,6 +112412,7 @@ self: { homepage = "https://github.com/jekor/hesh"; description = "the Haskell Extensible Shell: Haskell for Bash-style scripts"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hesql" = callPackage @@ -109583,6 +112431,20 @@ self: { jailbreak = true; description = "Haskell's embedded SQL"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "hetero-dict" = callPackage + ({ mkDerivation, base, containers, primitive, template-haskell }: + mkDerivation { + pname = "hetero-dict"; + version = "0.1.0.1"; + sha256 = "8c25acb5c751492aa5d504e5262d9eb0f8a4e863b3038b267809d15a6db3d709"; + libraryHaskellDepends = [ + base containers primitive template-haskell + ]; + description = "Fast heterogeneous data structures"; + license = stdenv.lib.licenses.mit; }) {}; "hetero-map" = callPackage @@ -109611,6 +112473,7 @@ self: { homepage = "http://web.comlab.ox.ac.uk/oucl/work/ian.lynagh/Hetris/"; description = "Text Tetris"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "heukarya" = callPackage @@ -109626,6 +112489,7 @@ self: { homepage = "https://github.com/t3476/heukarya"; description = "A genetic programming based on tree structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hevolisa" = callPackage @@ -109641,6 +112505,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hevolisa-dph" = callPackage @@ -109658,6 +112523,7 @@ self: { ]; description = "Genetic Mona Lisa problem in Haskell - using Data Parallel Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hex" = callPackage @@ -109729,6 +112595,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hexpat/"; description = "Chunked XML parsing using iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hexpat-lens" = callPackage @@ -109780,6 +112647,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hexpat-tagsoup" = callPackage @@ -109822,6 +112690,7 @@ self: { ]; description = "Hexadecimal ByteString literals, with placeholders that bind variables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hexstring" = callPackage @@ -109888,6 +112757,7 @@ self: { executableSystemDepends = [ doublefann ]; description = "Haskell binding to the FANN library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {doublefann = null; fann = null;}; "hfd" = callPackage @@ -109907,6 +112777,7 @@ self: { jailbreak = true; description = "Flash debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfiar" = callPackage @@ -109923,6 +112794,7 @@ self: { homepage = "http://github.com/elbrujohalcon/hfiar"; description = "Four in a Row in Haskell!!"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hflags_0_4" = callPackage @@ -109938,7 +112810,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hflags" = callPackage + "hflags_0_4_1" = callPackage ({ mkDerivation, base, containers, template-haskell, text }: mkDerivation { pname = "hflags"; @@ -109948,6 +112820,20 @@ self: { homepage = "http://github.com/errge/hflags"; description = "Command line flag parser, very similar to Google's gflags"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hflags" = callPackage + ({ mkDerivation, base, containers, template-haskell, text }: + mkDerivation { + pname = "hflags"; + version = "0.4.2"; + sha256 = "2cd30d637f4011d9b614698ef7f7bf1f55c45900e6683d60c7b17af5750f2cc5"; + libraryHaskellDepends = [ base containers template-haskell text ]; + homepage = "http://github.com/errge/hflags"; + description = "Command line flag parser, very similar to Google's gflags"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hfmt" = callPackage @@ -109975,6 +112861,7 @@ self: { homepage = "http://github.com/danstiner/hfmt"; description = "Haskell source code formatter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hfoil" = callPackage @@ -109994,6 +112881,7 @@ self: { executableHaskellDepends = [ base ]; description = "Hess-Smith panel code for inviscid 2-d airfoil analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hformat" = callPackage @@ -110039,6 +112927,7 @@ self: { homepage = "http://github.com/cmh/Hfractal"; description = "OpenGL fractal renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hfsevents_0_1_5" = callPackage @@ -110081,6 +112970,7 @@ self: { homepage = "http://www.fing.edu.uy/inco/proyectos/fusion"; description = "A library for fusing a subset of Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hg-buildpackage" = callPackage @@ -110099,6 +112989,7 @@ self: { ]; description = "Tools to help manage Debian packages with Mercurial"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgal" = callPackage @@ -110121,6 +113012,7 @@ self: { libraryHaskellDepends = [ array base haskell98 mtl ]; description = "Haskell Genetic Algorithm Library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgdbmi" = callPackage @@ -110175,6 +113067,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hgeometric" = callPackage @@ -110187,6 +113080,7 @@ self: { homepage = "ftp://ftp.cs.man.ac.uk/pub/toby/gpc/"; description = "A geometric library with bindings to GPC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hgeometry" = callPackage @@ -110209,6 +113103,7 @@ self: { homepage = "http://fstaals.net/software/hgeometry"; description = "Data types for geometric objects, geometric algorithms, and data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hgettext" = callPackage @@ -110250,6 +113145,7 @@ self: { homepage = "https://github.com/noteed/hgithub"; description = "Haskell bindings to the GitHub API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hgl-example" = callPackage @@ -110286,6 +113182,7 @@ self: { homepage = "http://github.com/polux/hgom"; description = "An haskell port of the java version of gom"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hgopher" = callPackage @@ -110306,15 +113203,15 @@ self: { }: mkDerivation { pname = "hgrev"; - version = "0.1.5"; - sha256 = "e23dbba95f6f1cf9becb165c4233d5d744c8af0b57c049d4d9986d4e504658f6"; + version = "0.2.0"; + sha256 = "c92ae1487c35e619f725b13b16c0845b7fbabcdb8beaa5abb67b831d0ad912ef"; libraryHaskellDepends = [ aeson base bytestring directory filepath process template-haskell ]; - jailbreak = true; homepage = "https://github.com/LukeHoersten/hgrev"; description = "Compile Mercurial (hg) version info into Haskell code"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hgrib" = callPackage @@ -110336,6 +113233,7 @@ self: { homepage = "https://github.com/mjakob/hgrib"; description = "Unofficial bindings for GRIB API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {grib_api = null;}; "hharp" = callPackage @@ -110350,6 +113248,7 @@ self: { homepage = "http://www.harphttp.org"; description = "Binding to libharp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {harp = null;}; "hi" = callPackage @@ -110422,6 +113321,7 @@ self: { homepage = "http://hiccup.googlecode.com/"; description = "Relatively efficient Tcl interpreter with support for basic operations"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hichi" = callPackage @@ -110435,6 +113335,7 @@ self: { executableHaskellDepends = [ array base bytestring mtl network ]; description = "haskell robot for IChat protocol"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hid_0_2_1" = callPackage @@ -110522,6 +113423,7 @@ self: { libraryHaskellDepends = [ base containers HUnit mtl multiset ]; description = "Automated clustering of arbitrary elements in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-clustering" = callPackage @@ -110555,6 +113457,7 @@ self: { jailbreak = true; description = "Draw diagrams of dendrograms made by hierarchical-clustering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hierarchical-exceptions" = callPackage @@ -110566,6 +113469,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Template Haskell functions to easily create exception hierarchies"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hierarchy" = callPackage @@ -110608,6 +113512,7 @@ self: { homepage = "http://github.com/paolino/hiernotify"; description = "Notification library for a filesystem hierarchy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "highWaterMark" = callPackage @@ -110622,6 +113527,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Memory usage statistics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "higher-leveldb" = callPackage @@ -110631,8 +113537,8 @@ self: { }: mkDerivation { pname = "higher-leveldb"; - version = "0.3.0.1"; - sha256 = "42d99bd80aa8ca53b537529a580ba9222ad840f50bc7d300120254165cb888fa"; + version = "0.3.1.0"; + sha256 = "b6580aef684d6c08322dc9a98f9e37273d2ffaa5a92495573d25b73321e37b65"; libraryHaskellDepends = [ base bytestring cereal data-default leveldb-haskell lifted-base monad-control mtl resourcet transformers transformers-base @@ -110641,7 +113547,6 @@ self: { base bytestring cereal hspec leveldb-haskell lifted-base monad-control mtl process resourcet transformers transformers-base ]; - jailbreak = true; homepage = "https://github.com/jeremyjh/higher-leveldb"; description = "A rich monadic API for working with leveldb databases"; license = stdenv.lib.licenses.bsd3; @@ -110658,6 +113563,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Some higher order functions for Bool and []"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "highjson" = callPackage @@ -110677,6 +113583,7 @@ self: { homepage = "https://github.com/agrafix/highjson"; description = "Very fast JSON serialisation and parsing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "highlight-versions" = callPackage @@ -110953,6 +113860,7 @@ self: { homepage = "http://github.com/Fuuzetsu/himg"; description = "Simple gtk2hs image viewer. Point it at an image and fire away."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "himpy" = callPackage @@ -110976,6 +113884,7 @@ self: { homepage = "https://github.com/pyr/himpy"; description = "multithreaded snmp poller for riemann"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hindent_4_4_1" = callPackage @@ -111197,6 +114106,7 @@ self: { libraryHaskellDepends = [ base hinduce-missingh layout ]; description = "Interface and utilities for classifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hinduce-classifier-decisiontree" = callPackage @@ -111212,6 +114122,7 @@ self: { ]; description = "Decision Tree Classifiers for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hinduce-examples" = callPackage @@ -111230,6 +114141,7 @@ self: { ]; description = "Example data for hInduce"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hinduce-missingh" = callPackage @@ -111287,6 +114199,7 @@ self: { homepage = "https://github.com/hasufell/hinotify-bytestring.git"; description = "Haskell binding to inotify, using ByteString filepaths"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hinquire" = callPackage @@ -111325,6 +114238,7 @@ self: { homepage = "http://www.wellquite.org/hinstaller/"; description = "Installer wrapper for Haskell applications"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hint_0_4_2_1" = callPackage @@ -111469,6 +114383,7 @@ self: { homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hint-server" = callPackage @@ -111484,6 +114399,7 @@ self: { jailbreak = true; description = "A server process that runs hint"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinvaders" = callPackage @@ -111498,6 +114414,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Space Invaders"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hinze-streams" = callPackage @@ -111510,6 +114427,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/hinze-streams"; description = "Streams and Unique Fixed Points"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hip" = callPackage @@ -111529,6 +114447,7 @@ self: { homepage = "https://github.com/lehins/hip"; description = "Haskell Image Processing (HIP) Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hipbot" = callPackage @@ -111555,6 +114474,7 @@ self: { homepage = "https://github.com/purefn/hipbot"; description = "A library for building HipChat Bots"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hipchat-hs" = callPackage @@ -111590,6 +114510,7 @@ self: { homepage = "http://fstaals.net/software/hipe"; description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hips" = callPackage @@ -111624,6 +114545,7 @@ self: { ]; description = "IRC client"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hirt" = callPackage @@ -111646,6 +114568,7 @@ self: { homepage = "https://people.ksp.sk/~ivan/hirt"; description = "Calculates IRT 2PL and 3PL models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hissmetrics" = callPackage @@ -111663,6 +114586,7 @@ self: { homepage = "https://github.com/prowdsponsor/hissmetrics"; description = "Unofficial API bindings to KISSmetrics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hist-pl" = callPackage @@ -111688,6 +114612,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/umbrella"; description = "Umbrella package for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hist-pl-dawg" = callPackage @@ -111720,6 +114645,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/fusion"; description = "Merging historical dictionary with PoliMorf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hist-pl-lexicon" = callPackage @@ -111751,6 +114677,7 @@ self: { homepage = "https://github.com/kawu/hist-pl/tree/master/lmf"; description = "LMF parsing for the historical dictionary of Polish"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hist-pl-transliter" = callPackage @@ -111850,6 +114777,7 @@ self: { jailbreak = true; description = "Extract the interesting bits from shell history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hit_0_6_2" = callPackage @@ -111967,6 +114895,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Libraries_and_tools/HJS"; description = "JavaScript Parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hjsmin_0_1_4_7" = callPackage @@ -112300,6 +115229,7 @@ self: { homepage = "http://people.ksp.sk/~ivan/hlbfgsb"; description = "Haskell binding to L-BFGS-B version 3.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) gfortran;}; "hlcm" = callPackage @@ -112322,6 +115252,7 @@ self: { homepage = "http://membres-liglab.imag.fr/termier/HLCM/hlcm.html"; description = "Fast algorithm for mining closed frequent itemsets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hleap" = callPackage @@ -112604,6 +115535,7 @@ self: { homepage = "http://hledger.org"; description = "A pie chart image generator for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hledger-diff" = callPackage @@ -112898,6 +115830,7 @@ self: { homepage = "http://hledger.org"; description = "Curses-style user interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hledger-vty" = callPackage @@ -112917,6 +115850,7 @@ self: { homepage = "http://hledger.org"; description = "A curses-style console interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hledger-web_0_24_1" = callPackage @@ -113040,6 +115974,7 @@ self: { homepage = "http://hledger.org"; description = "Web interface for the hledger accounting tool"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hlibBladeRF" = callPackage @@ -113069,6 +116004,7 @@ self: { homepage = "http://github.com/aycanirican/hlibev"; description = "FFI interface to libev"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {ev = null;}; "hlibfam" = callPackage @@ -113081,6 +116017,7 @@ self: { librarySystemDepends = [ fam ]; description = "FFI interface to libFAM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fam;}; "hlibgit2_0_18_0_13" = callPackage @@ -113442,8 +116379,8 @@ self: { }: mkDerivation { pname = "hlint"; - version = "1.9.33"; - sha256 = "baa68124045097a4f1017bf54921687b53c46ecbf667907896d30f477972b5d1"; + version = "1.9.34"; + sha256 = "637c3b27238e1c2e217e0c78185507bdeff2c1ce747575a0cbade727ce5f89d5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -113467,6 +116404,7 @@ self: { homepage = "http://www.pontarius.org/sub-projects/hlogger/"; description = "Simple, concurrent, extendable and easy-to-use logging library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hlongurl" = callPackage @@ -113500,22 +116438,18 @@ self: { }) {}; "hlwm" = callPackage - ({ mkDerivation, base, monads-tf, stm, transformers, unix, X11 }: + ({ mkDerivation, base, stm, transformers, unix, X11 }: mkDerivation { pname = "hlwm"; - version = "0.1.0.1"; - sha256 = "f165e77b1ce116bdefbc67845b21618f7b71140c5c5b6c7725f8a50d0809e2ee"; + version = "0.1.0.2"; + sha256 = "8370a8e6d386a8342d9c4a683b3c085890ee092e95549737ccf26b4fc62fba8d"; revision = "1"; - editedCabalFile = "ce22b9186e03c83f13e56b33630f4af561b604c51374c23dc1ef4e24ced9a54e"; + editedCabalFile = "5375f1b11a455cfd90aeedf16499c79fc541857e7c73d4bdb41a704f2a561283"; isLibrary = true; isExecutable = true; - libraryHaskellDepends = [ - base monads-tf stm transformers unix X11 - ]; - executableHaskellDepends = [ - base monads-tf stm transformers unix X11 - ]; - jailbreak = true; + libraryHaskellDepends = [ base stm transformers unix X11 ]; + executableHaskellDepends = [ base stm transformers unix X11 ]; + homepage = "https://github.com/hpdeifel/hlwm-haskell"; description = "Bindings to the herbstluftwm window manager"; license = stdenv.lib.licenses.bsd2; }) {}; @@ -113530,6 +116464,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hly"; description = "Haskell LilyPond"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmark" = callPackage @@ -113549,6 +116484,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/hmark"; description = "A tool and library for Markov chains based text generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmarkup" = callPackage @@ -113562,6 +116498,7 @@ self: { ]; description = "Simple wikitext-like markup format implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix_0_16_1_0" = callPackage @@ -113743,6 +116680,7 @@ self: { homepage = "http://hub.darcs.net/thielema/hmatrix-banded/"; description = "HMatrix interface to LAPACK functions for banded matrices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) liblapack;}; "hmatrix-csv" = callPackage @@ -113891,6 +116829,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-mmap"; description = "Memory map Vector from disk into memory efficiently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-nipals" = callPackage @@ -113905,6 +116844,7 @@ self: { homepage = "http://github.com/alanfalloon/hmatrix-nipals"; description = "NIPALS method for Principal Components Analysis on large data-sets"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-quadprogpp" = callPackage @@ -113918,6 +116858,7 @@ self: { jailbreak = true; description = "Bindings to the QuadProg++ quadratic programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {QuadProgpp = null;}; "hmatrix-repa" = callPackage @@ -113930,6 +116871,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-repa"; description = "Adaptors for interoperability between hmatrix and repa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmatrix-special" = callPackage @@ -113942,6 +116884,7 @@ self: { homepage = "https://github.com/albertoruiz/hmatrix"; description = "Interface to GSL special functions"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-static" = callPackage @@ -113959,6 +116902,7 @@ self: { homepage = "http://code.haskell.org/hmatrix-static/"; description = "hmatrix with vector and matrix sizes encoded in types"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-svdlibc" = callPackage @@ -113974,6 +116918,7 @@ self: { homepage = "http://github.com/bgamari/hmatrix-svdlibc"; description = "SVDLIBC bindings for HMatrix"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-syntax" = callPackage @@ -113991,6 +116936,7 @@ self: { homepage = "http://github.com/reinerp/hmatrix-syntax"; description = "MATLAB-like syntax for hmatrix vectors and matrices"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmatrix-tests" = callPackage @@ -114024,6 +116970,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hmeap"; description = "Haskell Meapsoft Parser"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmeap-utils" = callPackage @@ -114044,6 +116991,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hmeap-utils"; description = "Haskell Meapsoft Parser Utilities"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmemdb" = callPackage @@ -114073,6 +117021,7 @@ self: { jailbreak = true; description = "CLI fuzzy finder and launcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmidi" = callPackage @@ -114105,6 +117054,7 @@ self: { homepage = "http://www.github.com/mboes/hmk"; description = "A make alternative based on Plan9's mk"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmm" = callPackage @@ -114121,6 +117071,7 @@ self: { homepage = "https://github.com/mikeizbicki/hmm"; description = "A hidden markov model library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hmm-hmatrix" = callPackage @@ -114140,6 +117091,7 @@ self: { homepage = "http://hub.darcs.net/thielema/hmm-hmatrix"; description = "Hidden Markov Models using HMatrix primitives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hmp3" = callPackage @@ -114161,6 +117113,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "An ncurses mp3 player written in Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "hmpfr" = callPackage @@ -114174,6 +117127,7 @@ self: { homepage = "http://code.google.com/p/hmpfr/"; description = "Haskell binding to the MPFR library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mpfr;}; "hmt" = callPackage @@ -114230,6 +117184,7 @@ self: { jailbreak = true; description = "Interpreter for the MUMPS langugae"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hnetcdf" = callPackage @@ -114261,6 +117216,7 @@ self: { homepage = "https://github.com/ian-ross/hnetcdf"; description = "Haskell NetCDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) netcdf;}; "hnix" = callPackage @@ -114351,6 +117307,7 @@ self: { ]; description = "A Haskell implementation of OAuth 1.0a protocol."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoauth2_0_4_3" = callPackage @@ -114590,6 +117547,7 @@ self: { homepage = "http://svalaskevicius.github.io/hob/"; description = "A source code editor aiming for the convenience of use"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hobbes" = callPackage @@ -114609,6 +117567,7 @@ self: { homepage = "http://github.com/jhickner/hobbes"; description = "A small file watcher for OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hobbits" = callPackage @@ -114626,6 +117585,7 @@ self: { jailbreak = true; description = "A library for canonically representing terms with binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoe" = callPackage @@ -114645,6 +117605,7 @@ self: { homepage = "http://github.com/tanakh/hoe"; description = "hoe: Haskell One-liner Evaluator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hofix-mtl" = callPackage @@ -114657,6 +117618,7 @@ self: { jailbreak = true; description = "defining @mtl@-ready monads as * -> * fixed-points"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hog" = callPackage @@ -114675,6 +117637,7 @@ self: { jailbreak = true; description = "Simple IRC logger bot"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hogg" = callPackage @@ -114693,6 +117656,7 @@ self: { homepage = "http://www.kfish.org/software/hogg/"; description = "Library and tools to manipulate the Ogg container format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hogre" = callPackage @@ -114709,6 +117673,7 @@ self: { homepage = "http://anttisalonen.github.com/hogre"; description = "Haskell binding to a subset of OGRE"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OGRE = null; OgreMain = null; cgen-hs = null; grgen = null;}; "hogre-examples" = callPackage @@ -114724,6 +117689,7 @@ self: { homepage = "http://github.com/anttisalonen/hogre-examples"; description = "Examples for using Hogre"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OgreMain = null;}; "hois" = callPackage @@ -114740,6 +117706,7 @@ self: { jailbreak = true; description = "OIS bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OIS = null;}; "hoist-error" = callPackage @@ -114776,6 +117743,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Higher kinded type removal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "holey-format" = callPackage @@ -114903,6 +117871,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/homeomorphic/"; description = "Homeomorphic Embedding Test"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hommage" = callPackage @@ -114916,6 +117885,7 @@ self: { ]; description = "Haskell Offline Music Manipulation And Generation EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hommage-ds" = callPackage @@ -114954,6 +117924,7 @@ self: { homepage = "https://github.com/mgajda/homplexity"; description = "Haskell code quality tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "honi" = callPackage @@ -114970,6 +117941,7 @@ self: { testSystemDepends = [ freenect OpenNI2 ]; description = "OpenNI 2 binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OpenNI2 = null; inherit (pkgs) freenect;}; "honk" = callPackage @@ -114982,6 +117954,7 @@ self: { homepage = "https://lambda.xyz/honk/"; description = "Cross-platform interface to the PC speaker"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hoobuddy" = callPackage @@ -115027,6 +118000,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Dummy package to disable Hood without having to remove all the calls to observe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hood2" = callPackage @@ -115057,6 +118031,7 @@ self: { jailbreak = true; description = "A small, toy roguelike"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoodle" = callPackage @@ -115077,6 +118052,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Executable for hoodle"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-builder" = callPackage @@ -115093,6 +118069,7 @@ self: { ]; description = "text builder for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoodle-core" = callPackage @@ -115126,6 +118103,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Core library for hoodle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXi;}; "hoodle-extra" = callPackage @@ -115152,6 +118130,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "extra hoodle tools"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoodle-parser" = callPackage @@ -115170,6 +118149,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "Hoodle file parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoodle-publish" = callPackage @@ -115197,6 +118177,7 @@ self: { homepage = "http://ianwookim.org/hoodle"; description = "publish hoodle files as a static web site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-render" = callPackage @@ -115217,6 +118198,7 @@ self: { ]; description = "Hoodle file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoodle-types" = callPackage @@ -115232,6 +118214,7 @@ self: { ]; description = "Data types for programs for hoodle file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hoogle_4_2_36" = callPackage @@ -115536,6 +118519,7 @@ self: { homepage = "http://github.com/bgamari/hoogle-index"; description = "Easily generate Hoogle indices for installed packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hooks-dir" = callPackage @@ -115593,6 +118577,7 @@ self: { homepage = "https://bitbucket.org/pvdbrand/hoovie"; description = "Haskell Media Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hopencc" = callPackage @@ -115611,6 +118596,7 @@ self: { homepage = "https://github.com/MnO2/hopencc"; description = "Haskell binding to libopencc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {opencc = null;}; "hopencl" = callPackage @@ -115631,6 +118617,7 @@ self: { homepage = "https://github.com/merijn/hopencl"; description = "Haskell bindings for OpenCL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OpenCL = null;}; "hopenpgp-tools_0_13" = callPackage @@ -115812,6 +118799,7 @@ self: { homepage = "http://floss.scru.org/hopenpgp-tools"; description = "hOpenPGP-based command-line tools"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hopenssl" = callPackage @@ -115858,6 +118846,7 @@ self: { homepage = "https://github.com/imperialhopfield/hopfield"; description = "Hopfield Networks, Boltzmann Machines and Clusters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {MagickCore = null; inherit (pkgs) imagemagick;}; "hopfield-networks" = callPackage @@ -115967,6 +118956,7 @@ self: { homepage = "http://akc.is/hops"; description = "Handy Operations on Power Series"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hoq" = callPackage @@ -115986,6 +118976,7 @@ self: { homepage = "http://github.com/valis/hoq"; description = "A language based on homotopy type theory with an interval type"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "horizon" = callPackage @@ -116101,6 +119092,7 @@ self: { homepage = "https://github.com/yihuang/hosts-server"; description = "An dns server which is extremely easy to config"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hothasktags" = callPackage @@ -116133,6 +119125,7 @@ self: { homepage = "https://github.com/mikeplus64/hotswap"; description = "Simple code hotswapping"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hourglass_0_2_6" = callPackage @@ -116220,6 +119213,7 @@ self: { homepage = "https://gitlab.com/doshitan/hourglass-fuzzy-parsing"; description = "A small library for parsing more human friendly date/time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "houseman" = callPackage @@ -116250,6 +119244,7 @@ self: { homepage = "https://github.com/fujimura/houseman#readme"; description = "A Haskell implementation of Foreman"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hp2any-core" = callPackage @@ -116267,6 +119262,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Heap profiling helper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hp2any-graph" = callPackage @@ -116289,6 +119285,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "Real-time heap graphing utility and profile stream server with a reusable graphing module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "hp2any-manager" = callPackage @@ -116309,6 +119306,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Hp2any"; description = "A utility to visualise and compare heap profiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hp2html" = callPackage @@ -116388,6 +119386,7 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpaco-lib" = callPackage @@ -116407,6 +119406,7 @@ self: { homepage = "https://bitbucket.org/tdammers/hpaco"; description = "Modular template compiler library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpage" = callPackage @@ -116429,6 +119429,7 @@ self: { homepage = "http://haskell.hpage.com"; description = "A scrapbook for Haskell developers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpapi" = callPackage @@ -116441,6 +119442,7 @@ self: { librarySystemDepends = [ papi ]; description = "Binding for the PAPI library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {papi = null;}; "hpaste" = callPackage @@ -116470,6 +119472,7 @@ self: { homepage = "http://hpaste.org/"; description = "Haskell paste web site"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpasteit" = callPackage @@ -116491,6 +119494,7 @@ self: { homepage = "http://github.com/parcs/hpasteit"; description = "A command-line client for hpaste.org"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpath" = callPackage @@ -116638,6 +119642,7 @@ self: { ]; description = "Tracer with AJAX interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpdft" = callPackage @@ -116666,8 +119671,8 @@ self: { }: mkDerivation { pname = "hpio"; - version = "0.8.0.0"; - sha256 = "f48c048641677e6e4357032089c3abfb1c6005fc2d0ba6a69c84cc435a5723cc"; + version = "0.8.0.1"; + sha256 = "0d327a22d17327be00927fc6284a4a0139167581c6d3fec268e14891d586b328"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -116719,6 +119724,7 @@ self: { executableHaskellDepends = [ base directory filepath process ]; description = "Application for managing playlist files on a music player"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpodder" = callPackage @@ -116740,6 +119746,7 @@ self: { homepage = "http://software.complete.org/hpodder"; description = "Podcast Aggregator (downloader)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hpp" = callPackage @@ -116789,6 +119796,7 @@ self: { homepage = "https://github.com/scrive/hpqtypes"; description = "Haskell bindings to libpqtypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) postgresql;}; "hprotoc_2_1_4" = callPackage @@ -117057,6 +120065,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hps" = callPackage @@ -117090,6 +120099,7 @@ self: { homepage = "http://slavepianos.org/rd/?t=hps-cairo"; description = "Cairo rendering for the haskell postscript library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hps-kmeans" = callPackage @@ -117148,6 +120158,7 @@ self: { homepage = "http://sourceforge.net/projects/hpylos/"; description = "AI of Pylos game with GLUT interface"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hpyrg" = callPackage @@ -117187,6 +120198,7 @@ self: { homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hquery" = callPackage @@ -117217,6 +120229,7 @@ self: { executableHaskellDepends = [ base HCL NonEmpty ]; description = "Basic utility for ranking a list of items"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hreader" = callPackage @@ -117270,6 +120283,7 @@ self: { ]; description = "Embed a Ruby intepreter in your Haskell program !"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) ruby;}; "hs-GeoIP" = callPackage @@ -117283,6 +120297,7 @@ self: { homepage = "http://github.com/ozataman/hs-GeoIP"; description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {GeoIP = null;}; "hs-bibutils_5_0" = callPackage @@ -117329,6 +120344,7 @@ self: { homepage = "https://github.com/tsuraan/hs-blake2"; description = "A cryptohash-inspired library for blake2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libb2;}; "hs-captcha" = callPackage @@ -117341,6 +120357,7 @@ self: { homepage = "http://www.dankna.com/software/"; description = "Generate images suitable for use as CAPTCHAs in online web-form security"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hs-carbon" = callPackage @@ -117370,6 +120387,7 @@ self: { ]; description = "Example Monte Carlo simulations implemented with Carbon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-cdb" = callPackage @@ -117386,6 +120404,7 @@ self: { homepage = "http://github.com/adamsmasher/hs-cdb"; description = "A library for reading CDB (Constant Database) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-dotnet" = callPackage @@ -117398,6 +120417,7 @@ self: { librarySystemDepends = [ ole32 oleaut32 ]; description = "Pragmatic .NET interop for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {ole32 = null; oleaut32 = null;}; "hs-duktape" = callPackage @@ -117419,6 +120439,7 @@ self: { homepage = "https://github.com/myfreeweb/hs-duktape"; description = "Haskell bindings for a very compact embedded ECMAScript (JavaScript) engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-excelx" = callPackage @@ -117448,6 +120469,7 @@ self: { homepage = "http://patch-tag.com/r/VasylPasternak/hs-ffmpeg"; description = "Bindings to FFMPEG library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-fltk" = callPackage @@ -117461,6 +120483,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hs-fltk/"; description = "Binding to GUI library FLTK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) fltk; fltk_images = null;}; "hs-gchart" = callPackage @@ -117473,6 +120496,7 @@ self: { homepage = "http://github.com/deepakjois/hs-gchart"; description = "Haskell wrapper for the Google Chart API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-gen-iface" = callPackage @@ -117491,6 +120515,7 @@ self: { ]; description = "Utility to generate haskell-names interface files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-gizapp" = callPackage @@ -117538,6 +120563,7 @@ self: { ]; description = "Java .class files assembler/disassembler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-json-rpc" = callPackage @@ -117552,6 +120578,7 @@ self: { homepage = "http://patch-tag.com/r/Azel/hs-json-rpc"; description = "JSON-RPC client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-logo" = callPackage @@ -117579,6 +120606,7 @@ self: { homepage = "http://deepakjois.github.com/hs-logo"; description = "Logo interpreter written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-mesos" = callPackage @@ -117603,6 +120631,7 @@ self: { tasty-quickcheck ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) mesos; inherit (pkgs) protobuf;}; "hs-nombre-generator" = callPackage @@ -117617,6 +120646,7 @@ self: { jailbreak = true; description = "Name generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-pgms" = callPackage @@ -117635,6 +120665,7 @@ self: { ]; description = "Programmer's Mine Sweeper in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-php-session" = callPackage @@ -117684,6 +120715,7 @@ self: { homepage = "https://github.com/tazjin/hs-pkpass"; description = "A library for Passbook pass creation & signing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-re" = callPackage @@ -117733,6 +120765,7 @@ self: { ]; description = "Haskell binding to the Twitter API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs-twitterarchiver" = callPackage @@ -117747,6 +120780,7 @@ self: { homepage = "https://github.com/deepakjois/hs-twitterarchiver"; description = "Commandline Twitter feed archiver"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs-vcard" = callPackage @@ -117759,6 +120793,7 @@ self: { homepage = "http://qrcard.us/"; description = "Implements the RFC 2426 vCard 3.0 spec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hs2048" = callPackage @@ -117799,6 +120834,7 @@ self: { homepage = "http://www.xanxys.net/hs2bf/"; description = "Haskell to Brainfuck compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hs2dot" = callPackage @@ -117818,6 +120854,7 @@ self: { homepage = "http://www.github.com/finnsson/hs2graphviz"; description = "Generate graphviz-code from Haskell-code"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsConfigure" = callPackage @@ -117848,6 +120885,7 @@ self: { jailbreak = true; description = "Sqlite3 bindings"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsXenCtrl" = callPackage @@ -117862,6 +120900,7 @@ self: { homepage = "http://haskell.org/haskellwiki/HsXenCtrl"; description = "FFI bindings to the Xen Control library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {xenctrl = null;}; "hsass_0_3_0" = callPackage @@ -117954,6 +120993,7 @@ self: { ]; description = "simple utility for rolling filesystem backups"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsbencher" = callPackage @@ -118020,6 +121060,7 @@ self: { jailbreak = true; description = "Backend for uploading benchmark data to Google Fusion Tables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc2hs" = callPackage @@ -118082,6 +121123,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-cairo"; description = "haskell supercollider cairo drawing"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-data" = callPackage @@ -118099,6 +121141,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-data"; description = "haskell supercollider data"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-db" = callPackage @@ -118142,6 +121185,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-forth"; description = "FORTH SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-graphs" = callPackage @@ -118173,6 +121217,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-graphs"; description = "Haskell SuperCollider Graphs"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-lang" = callPackage @@ -118193,6 +121238,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lang"; description = "Haskell SuperCollider Language"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-lisp" = callPackage @@ -118212,6 +121258,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-lisp"; description = "LISP SUPERCOLLIDER"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-plot" = callPackage @@ -118229,6 +121276,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hsc3-plot"; description = "Haskell SuperCollider Plotting"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-process" = callPackage @@ -118263,6 +121311,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-rec"; description = "Haskell SuperCollider Record Variants"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-rw" = callPackage @@ -118310,6 +121359,7 @@ self: { homepage = "https://github.com/kaoskorobase/hsc3-server"; description = "SuperCollider server resource management and synchronization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsc3-sf" = callPackage @@ -118351,6 +121401,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hsc3-unsafe"; description = "Unsafe Haskell SuperCollider"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsc3-utils" = callPackage @@ -118387,6 +121438,7 @@ self: { jailbreak = true; description = "Haskell bindings to IIDC1394 cameras, via Camwire"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {camwire_1394 = null; dc1394_control = null; raw1394 = null;}; "hscassandra" = callPackage @@ -118405,6 +121457,7 @@ self: { homepage = "https://github.com/necrobious/hscassandra"; description = "cassandra database interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hscd" = callPackage @@ -118435,6 +121488,7 @@ self: { homepage = "http://haskell.org/gtk2hs/archives/2006/01/26/cairo-eye-candy/"; description = "An elegant analog clock using Haskell, GTK and Cairo"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hscolour_1_20_3" = callPackage @@ -118692,6 +121746,7 @@ self: { homepage = "http://neugierig.org/software/darcs/hsdip/"; description = "hsdip - a Diplomacy parser/renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsdns" = callPackage @@ -118722,6 +121777,7 @@ self: { homepage = "https://github.com/bazqux/hsdns-cache"; description = "Caching asynchronous DNS resolver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hse-cpp" = callPackage @@ -118931,6 +121987,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A small and ugly library that emulates the output of the puppet facter program"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsfcsh" = callPackage @@ -118975,6 +122032,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgnutls-yj" = callPackage @@ -118988,6 +122046,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/hsgnutls"; description = "Library wrapping the GnuTLS API"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gcrypt = null; inherit (pkgs) gnutls;}; "hsgsom" = callPackage @@ -118999,6 +122058,7 @@ self: { libraryHaskellDepends = [ base containers random stm time ]; description = "An implementation of the GSOM clustering algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsgtd" = callPackage @@ -119163,6 +122223,7 @@ self: { libraryHaskellDepends = [ base Cabal ]; description = "Skeleton for new Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hslackbuilder" = callPackage @@ -119179,6 +122240,7 @@ self: { homepage = "http://code.haskell.org/~arossato/hslackbuilder"; description = "HSlackBuilder automatically generates slackBuild scripts from a cabal package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hslibsvm" = callPackage @@ -119191,6 +122253,7 @@ self: { librarySystemDepends = [ svm ]; description = "A FFI binding to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {svm = null;}; "hslinks" = callPackage @@ -119207,6 +122270,7 @@ self: { ]; description = "Resolves links to Haskell identifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hslogger_1_2_6" = callPackage @@ -119302,6 +122366,7 @@ self: { homepage = "http://github.com/prophet-on-that/hslogger-reader"; description = "Parsing hslogger-produced logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hslogger-template" = callPackage @@ -119313,6 +122378,7 @@ self: { libraryHaskellDepends = [ base hslogger mtl template-haskell ]; description = "Automatic generation of hslogger functions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hslogger4j" = callPackage @@ -119432,6 +122498,7 @@ self: { homepage = "https://github.com/vincentg/hsmagick"; description = "FFI bindings for the GraphicsMagick library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {GraphicsMagick = null; inherit (pkgs) bzip2; freetype2 = null; inherit (pkgs) jasper; inherit (pkgs) lcms; inherit (pkgs) libjpeg; inherit (pkgs) libpng; @@ -119465,6 +122532,7 @@ self: { homepage = "http://code.google.com/p/hsmtpclient/"; description = "Simple SMTP Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsndfile" = callPackage @@ -119491,6 +122559,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Hsndfile"; description = "Haskell bindings for libsndfile (Data.StorableVector interface)"; license = stdenv.lib.licenses.lgpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsndfile-vector" = callPackage @@ -119524,6 +122593,7 @@ self: { homepage = "https://github.com/mrdomino/hsnock/"; description = "Nock 5K interpreter"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsnoise" = callPackage @@ -119549,6 +122619,7 @@ self: { executableHaskellDepends = [ base network pcap ]; description = "a miniature network sniffer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsnsq" = callPackage @@ -119585,6 +122656,7 @@ self: { homepage = "http://www.cs.helsinki.fi/u/ekarttun/util/"; description = "Libraries to use SNTP protocol and small client/server implementations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsoptions" = callPackage @@ -119611,6 +122683,7 @@ self: { homepage = "https://github.com/josercruz01/hsoptions"; description = "Haskell library that supports command-line flag processing"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsp" = callPackage @@ -119635,6 +122708,7 @@ self: { homepage = "http://code.google.com/p/hsp"; description = "Facilitates running Haskell Server Pages web pages as CGI programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsparklines" = callPackage @@ -119647,6 +122721,7 @@ self: { homepage = "http://www.jasani.org/search/label/hsparklines"; description = "Sparklines for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hsparql" = callPackage @@ -119669,6 +122744,7 @@ self: { homepage = "https://github.com/robstewart57/hsparql"; description = "A SPARQL query generator and DSL, and a client to query a SPARQL server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hspear" = callPackage @@ -119685,6 +122761,7 @@ self: { homepage = "http://rd.slavepianos.org/?t=hspear"; description = "Haskell Spear Parser"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hspec_2_1_2" = callPackage @@ -120558,6 +123635,7 @@ self: { jailbreak = true; description = "An experimental DSL for testing on top of Hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hspec-jenkins" = callPackage @@ -120806,6 +123884,7 @@ self: { libraryHaskellDepends = [ hspec test-shouldbe ]; description = "Convenience wrapper and utilities for hspec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hspec-slow" = callPackage @@ -120925,6 +124004,7 @@ self: { homepage = "https://github.com/dbp/hspec-snap"; description = "A library for testing with Hspec and the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-structured-formatter" = callPackage @@ -120980,6 +124060,7 @@ self: { testHaskellDepends = [ base hspec test-sandbox ]; description = "Hspec convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hspec-wai_0_6_2" = callPackage @@ -121243,6 +124324,7 @@ self: { ]; description = "A client library for the spread toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hspresent" = callPackage @@ -121258,6 +124340,7 @@ self: { jailbreak = true; description = "A terminal presentation tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsprocess" = callPackage @@ -121283,6 +124366,7 @@ self: { ]; description = "The Haskell Stream Processor command line utility"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsql" = callPackage @@ -121308,6 +124392,7 @@ self: { librarySystemDepends = [ mysqlclient ]; description = "MySQL driver for HSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {mysqlclient = null;}; "hsql-odbc" = callPackage @@ -121365,6 +124450,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Haskell binding for Qt Quick"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {qt5 = null;}; "hsqml-datamodel" = callPackage @@ -121379,6 +124465,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel"; description = "HsQML (Qt5) data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {qt5 = null;}; "hsqml-datamodel-vinyl" = callPackage @@ -121396,6 +124483,7 @@ self: { homepage = "https://github.com/marcinmrotek/hsqml-datamodel-vinyl"; description = "HsQML DataModel instances for Vinyl Rec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-demo-morris" = callPackage @@ -121414,6 +124502,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-demo-notes" = callPackage @@ -121433,6 +124522,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "Sticky notes example program implemented in HsQML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-demo-samples" = callPackage @@ -121448,6 +124538,7 @@ self: { homepage = "http://www.gekkou.co.uk/software/hsqml/"; description = "HsQML sample programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsqml-morris" = callPackage @@ -121467,6 +124558,7 @@ self: { homepage = "http://www.gekkou.co.uk/"; description = "HsQML-based implementation of Nine Men's Morris"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsreadability" = callPackage @@ -121505,6 +124597,7 @@ self: { testHaskellDepends = [ base tasty tasty-hunit unix ]; description = "Haskell bindings to libseccomp"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {seccomp = null;}; "hsshellscript" = callPackage @@ -121651,6 +124744,7 @@ self: { homepage = "http://bitbucket.org/dave4420/hstest/wiki/Home"; description = "Runs tests via QuickCheck1 and HUnit; like quickCheck-script but uses GHC api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstidy" = callPackage @@ -121665,6 +124759,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/hstidy"; description = "Takes haskell source on stdin, parses it, then prettyprints it to stdout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstorchat" = callPackage @@ -121693,6 +124788,7 @@ self: { jailbreak = true; description = "Distributed instant messaging over Tor"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstradeking" = callPackage @@ -121718,6 +124814,7 @@ self: { jailbreak = true; description = "Tradeking API bindings for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstyle" = callPackage @@ -121736,6 +124833,7 @@ self: { jailbreak = true; description = "Checks Haskell source code for style compliance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hstzaar" = callPackage @@ -121756,6 +124854,7 @@ self: { homepage = "http://www.dcc.fc.up.pt/~pbv/stuff/hstzaar"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsubconvert" = callPackage @@ -121778,6 +124877,7 @@ self: { homepage = "https://github.com/jwiegley/hsubconvert"; description = "One-time, faithful conversion of Subversion repositories to Git"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsverilog" = callPackage @@ -121809,6 +124909,7 @@ self: { librarySystemDepends = [ ncurses readline swipl ]; description = "embedding prolog in haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses; inherit (pkgs) readline; swipl = null;}; @@ -121827,6 +124928,7 @@ self: { homepage = "http://patch-tag.com/r/nibro/hsx"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx-jmacro" = callPackage @@ -121841,6 +124943,7 @@ self: { homepage = "http://www.happstack.com/"; description = "hsp+jmacro support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsx-xhtml" = callPackage @@ -121853,6 +124956,7 @@ self: { homepage = "http://code.google.com/hsp"; description = "XHTML utilities to use together with HSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hsx2hs" = callPackage @@ -121885,6 +124989,7 @@ self: { homepage = "http://github.com/aycanirican/hsyscall"; description = "FFI to syscalls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hsyslog" = callPackage @@ -121926,6 +125031,7 @@ self: { librarySystemDepends = [ com_err zephyr ]; description = "Simple libzephyr bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {com_err = null; zephyr = null;}; "htaglib_1_0_1" = callPackage @@ -122171,18 +125277,18 @@ self: { }: mkDerivation { pname = "html-entities"; - version = "1.1.1.1"; - sha256 = "d837f8628acaa3ac7ffa7ef19128715aad1f516842144ace4e25599ab8a7c94b"; + version = "1.1.2"; + sha256 = "cb3fdaf2329b6af5b59bc36c6a6721b0fe4d53c1b30885c82faf7b11fcab34de"; libraryHaskellDepends = [ attoparsec base-prelude text unordered-containers ]; testHaskellDepends = [ base base-prelude directory doctest filepath ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/html-entities"; description = "A codec library for HTML-escaped text and HTML-entities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "html-kure" = callPackage @@ -122232,6 +125338,7 @@ self: { homepage = "http://github.com/kylcarte/html-rules/"; description = "Perform traversals of HTML structures using sets of rules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "html-tokenizer" = callPackage @@ -122254,6 +125361,7 @@ self: { homepage = "https://github.com/nikita-volkov/html-tokenizer"; description = "An \"attoparsec\"-based HTML tokenizer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "html-truncate" = callPackage @@ -122314,6 +125422,7 @@ self: { homepage = "http://github.com/pirapira/htodo"; description = "A todo application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "htoml" = callPackage @@ -122365,6 +125474,7 @@ self: { homepage = "http://rd.slavepianos.org/t/hts"; description = "Haskell Music Typesetting"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "htsn" = callPackage @@ -122430,6 +125540,7 @@ self: { ]; description = "Import XML files from The Sports Network into an RDBMS"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-accept" = callPackage @@ -123483,6 +126594,7 @@ self: { homepage = "https://github.com/spl/http-client-request-modifiers"; description = "Convenient monadic HTTP request modifiers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-client-session" = callPackage @@ -123821,6 +126933,7 @@ self: { homepage = "https://github.com/exbb2/http-conduit-browser"; description = "Browser interface to the http-conduit package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-conduit-downloader" = callPackage @@ -123841,6 +126954,7 @@ self: { homepage = "https://github.com/bazqux/http-conduit-downloader"; description = "HTTP downloader tailored for web-crawler needs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-date_0_0_4" = callPackage @@ -123970,6 +127084,7 @@ self: { homepage = "http://github.com/snoyberg/http-enumerator"; description = "HTTP client package with enumerator interface and HTTPS support. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "http-kinder" = callPackage @@ -124135,6 +127250,7 @@ self: { jailbreak = true; description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-proxy" = callPackage @@ -124163,6 +127279,7 @@ self: { homepage = "https://github.com/erikd/http-proxy"; description = "A library for writing HTTP and HTTPS proxies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-querystring" = callPackage @@ -124199,6 +127316,7 @@ self: { homepage = "https://github.com/sannsyn/http-response-decoder"; description = "Declarative DSL for parsing an HTTP response"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-reverse-proxy_0_4_1_2" = callPackage @@ -124341,6 +127459,7 @@ self: { libraryHaskellDepends = [ base network ]; description = "A simple websever with an interact style API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http-streams" = callPackage @@ -124472,6 +127591,7 @@ self: { homepage = "http://github.com/snoyberg/http-wget/tree/master"; description = "Provide a simple HTTP client interface by wrapping the wget command line tool. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "http2_1_0_4" = callPackage @@ -124666,6 +127786,7 @@ self: { homepage = "https://github.com/fmap/https-everywhere-rules"; description = "High-level access to HTTPS Everywhere rulesets"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "https-everywhere-rules-raw" = callPackage @@ -124698,6 +127819,7 @@ self: { ]; description = "Specification of HTTP request/response generators and parsers"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "htune" = callPackage @@ -124712,6 +127834,7 @@ self: { jailbreak = true; description = "harmonic analyser and tuner for musical instruments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "htzaar" = callPackage @@ -124727,6 +127850,7 @@ self: { homepage = "http://tomahawkins.org"; description = "A two player abstract strategy game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "hub" = callPackage @@ -124783,6 +127907,7 @@ self: { jailbreak = true; description = "Support library for Hubris, the Ruby <=> Haskell bridge"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ruby;}; "huckleberry" = callPackage @@ -124823,6 +127948,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Hugs Front-end to Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hulk" = callPackage @@ -124850,6 +127976,7 @@ self: { jailbreak = true; description = "IRC server written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "human-readable-duration_0_1_0_0" = callPackage @@ -124926,6 +128053,7 @@ self: { jailbreak = true; description = "Haskell UPnP Media Server"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hunch" = callPackage @@ -125004,6 +128132,7 @@ self: { homepage = "http://patch-tag.com/r/kwallmar/hunit_gui/home"; description = "A GUI testrunner for HUnit"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hunit-parsec" = callPackage @@ -125029,6 +128158,7 @@ self: { homepage = "github.com/tcrayford/rematch"; description = "HUnit support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hunp" = callPackage @@ -125079,6 +128209,7 @@ self: { homepage = "http://github.com/hunt-framework/"; description = "A search and indexing engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hunt-server" = callPackage @@ -125104,6 +128235,7 @@ self: { homepage = "http://github.com/hunt-framework"; description = "A search and indexing engine server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hunt-server-cli" = callPackage @@ -125147,6 +128279,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Extract function names from Windows DLLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "husk-scheme" = callPackage @@ -125206,6 +128339,7 @@ self: { homepage = "http://github.com/markusle/husky/tree/master"; description = "A simple command line calculator"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hutton" = callPackage @@ -125227,6 +128361,7 @@ self: { jailbreak = true; description = "A program for the button on Reddit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "huttons-razor" = callPackage @@ -125254,6 +128389,7 @@ self: { jailbreak = true; description = "Fuzzy logic library with support for T1, IT2, GT2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hvect_0_2_0_0" = callPackage @@ -125315,6 +128451,7 @@ self: { 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" ]; }) {}; "hw-conduit" = callPackage @@ -125335,6 +128472,7 @@ self: { homepage = "http://github.com/haskell-works/hw-conduit#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hw-diagnostics" = callPackage @@ -125386,14 +128524,15 @@ self: { "hw-json" = callPackage ({ mkDerivation, array, attoparsec, base, bytestring, conduit - , containers, criterion, hspec, hw-bits, hw-conduit, hw-diagnostics - , hw-parser, hw-prim, hw-rankselect, mmap, mono-traversable, parsec - , QuickCheck, resourcet, text, transformers, vector, word8 + , containers, criterion, errors, hspec, hw-bits, hw-conduit + , hw-diagnostics, hw-parser, hw-prim, hw-rankselect, mmap + , mono-traversable, parsec, QuickCheck, resourcet, text + , transformers, vector, word8 }: mkDerivation { pname = "hw-json"; - version = "0.0.0.4"; - sha256 = "406176d9b42871b480252985fc64feb3ae9a36032068a2c0cc622969fb600c2e"; + version = "0.1.0.0"; + sha256 = "6cf33fe339bc3b60217ba4c41e99d90b634ab1d30a05d0ce2ee487aa9a15005b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -125402,8 +128541,8 @@ self: { resourcet text vector word8 ]; executableHaskellDepends = [ - base bytestring conduit criterion hw-bits hw-conduit hw-diagnostics - hw-prim hw-rankselect mmap resourcet vector + base bytestring conduit criterion errors hw-bits hw-conduit + hw-diagnostics hw-prim hw-rankselect mmap resourcet vector ]; testHaskellDepends = [ attoparsec base bytestring conduit containers hspec hw-bits @@ -125413,6 +128552,7 @@ self: { homepage = "http://github.com/haskell-works/hw-json#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hw-parser" = callPackage @@ -125453,24 +128593,6 @@ self: { }) {}; "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, hspec, QuickCheck, random - , vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.0.3.0"; - sha256 = "fd1d0772972bbfb5cebb645934a55f458b7bb5044d2a9bcee766772a7a1c90d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring random vector ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck ]; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - - "hw-prim_0_0_3_1" = callPackage ({ mkDerivation, base, bytestring, hspec, QuickCheck, random , vector }: @@ -125486,7 +128608,6 @@ self: { homepage = "http://github.com/haskell-works/hw-prim#readme"; description = "Primitive functions and data types"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hw-rankselect_0_0_0_2" = callPackage @@ -125514,8 +128635,8 @@ self: { }: mkDerivation { pname = "hw-rankselect"; - version = "0.0.0.4"; - sha256 = "6f6ccc16ccbc3c358489550a4e7122256bd96e80def74e27368d4858e6a71ca6"; + version = "0.0.0.5"; + sha256 = "89adedf5e37497430bec4546f096fb1ba8a324156e95535c9d450ee9a59892b0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base hw-bits hw-prim vector ]; @@ -125526,6 +128647,7 @@ self: { homepage = "http://github.com/haskell-works/hw-rankselect#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hw-succinct" = callPackage @@ -125544,6 +128666,7 @@ self: { homepage = "http://github.com/haskell-works/hw-succinct#readme"; description = "Conduits for tokenizing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hwall-auth-iitk" = callPackage @@ -125621,6 +128744,7 @@ self: { homepage = "http://github.com/dbp/hworker-ses"; description = "Library for sending email with Amazon's SES and hworker"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hws" = callPackage @@ -125640,6 +128764,7 @@ self: { jailbreak = true; description = "Simple Haskell Web Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hwsl2" = callPackage @@ -125658,6 +128783,7 @@ self: { homepage = "https://github.com/srijs/hwsl2"; description = "Hashing with SL2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hwsl2-bytevector" = callPackage @@ -125670,6 +128796,7 @@ self: { homepage = "https://github.com/srijs/hwsl2-haskell-bytevector"; description = "A hashed byte-vector based on algebraic hashes and finger trees"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hwsl2-reducers" = callPackage @@ -125684,6 +128811,7 @@ self: { homepage = "https://github.com/srijs/hwsl2-reducers"; description = "Semigroup and Reducer instances for Data.Hash.SL2"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "hx" = callPackage @@ -125714,6 +128842,7 @@ self: { jailbreak = true; description = "Haskell XMPP (Jabber Client) Command Line Interface (CLI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hxournal" = callPackage @@ -125741,6 +128870,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "A pen notetaking program written in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hxt_9_3_1_7" = callPackage @@ -125837,6 +128967,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "Serialisation and deserialisation of HXT XmlTrees"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-cache" = callPackage @@ -125962,6 +129093,7 @@ self: { homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; description = "A collection of tools for processing XML with Haskell (Filter variant)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hxt-http_9_1_5" = callPackage @@ -126215,6 +129347,7 @@ self: { jailbreak = true; description = "Helper functions for HXT"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hxweb" = callPackage @@ -126226,6 +129359,7 @@ self: { libraryHaskellDepends = [ base cgi fastcgi libxml mtl xslt ]; description = "Minimal webframework using fastcgi, libxml2 and libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hyahtzee" = callPackage @@ -126262,6 +129396,7 @@ self: { homepage = "http://sourrust.github.io/hyakko/"; description = "Literate-style Documentation Generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid" = callPackage @@ -126278,6 +129413,7 @@ self: { homepage = "http://repos.mine.nu/davve/darcs/hybrid"; description = "A implementation of a type-checker for Lambda-H"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hybrid-vectors_0_1_2" = callPackage @@ -126337,6 +129473,7 @@ self: { homepage = "https://github.com/mruegenberg/hydra-hs"; description = "Haskell binding to the Sixense SDK for the Razer Hydra"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {sixense_x64 = null;}; "hydra-print" = callPackage @@ -126409,6 +129546,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-cli-args" = callPackage @@ -126426,6 +129564,7 @@ self: { homepage = "https://scravy.de/hydrogen-cli-args/"; description = "Hydrogen Command Line Arguments Parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-data" = callPackage @@ -126439,6 +129578,7 @@ self: { homepage = "https://scravy.de/hydrogen-data/"; description = "Hydrogen Data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-multimap" = callPackage @@ -126451,6 +129591,7 @@ self: { homepage = "https://scravy.de/hydrogen-multimap/"; description = "Hydrogen Multimap"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-parsing" = callPackage @@ -126466,6 +129607,7 @@ self: { homepage = "https://scravy.de/hydrogen-parsing/"; description = "Hydrogen Parsing Utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-prelude" = callPackage @@ -126486,6 +129628,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude/"; description = "Hydrogen Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-prelude-parsec" = callPackage @@ -126499,6 +129642,7 @@ self: { homepage = "http://scravy.de/hydrogen-prelude-parsec/"; description = "Hydrogen Prelude /w Parsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-syntax" = callPackage @@ -126517,6 +129661,7 @@ self: { homepage = "https://scravy.de/hydrogen-syntax/"; description = "Hydrogen Syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-util" = callPackage @@ -126533,6 +129678,7 @@ self: { homepage = "https://scravy.de/hydrogen-util/"; description = "Hydrogen Tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hydrogen-version" = callPackage @@ -126564,27 +129710,30 @@ self: { homepage = "http://github.com/tibbe/hyena"; description = "Simple web application server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hylogen" = callPackage - ({ mkDerivation, base, bytestring, data-reify, filepath, fsnotify - , http-types, process, text, vector-space, wai, warp, websockets + ({ mkDerivation, aeson, base, bytestring, data-reify, filepath + , fsnotify, http-types, process, text, vector-space, wai, warp + , websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.2.0"; - sha256 = "995382291f69690481937e6f0248562691a346a577a39f31ad2473db0d395b73"; + version = "0.1.2.1"; + sha256 = "4db07400bf7fef66df9e23672c0d5dfc93585e991911380496c3f377f5022162"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; executableHaskellDepends = [ - base bytestring filepath fsnotify http-types process text wai warp - websockets + aeson base bytestring filepath fsnotify http-types process text wai + warp websockets ]; jailbreak = true; homepage = "https://hylogen.com"; description = "an EDSL for live-coding fragment shaders"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hylolib" = callPackage @@ -126601,6 +129750,7 @@ self: { jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hylotab" = callPackage @@ -126615,6 +129765,7 @@ self: { homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hyloutils" = callPackage @@ -126630,6 +129781,7 @@ self: { ]; description = "Very small programs for hybrid logics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hyperdrive" = callPackage @@ -126649,6 +129801,7 @@ self: { jailbreak = true; description = "a fast, trustworthy HTTP(s) server built"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hyperfunctions" = callPackage @@ -126721,6 +129874,7 @@ self: { homepage = "http://github.com/analytics/hyperloglog"; description = "An approximate streaming (constant space) unique object counter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyperpublic" = callPackage @@ -126738,6 +129892,7 @@ self: { homepage = "https://github.com/mkscrg/hyperpublic-haskell"; description = "A thin wrapper for the Hyperpublic API"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "hyphenate" = callPackage @@ -126880,6 +130035,7 @@ self: { homepage = "https://github.com/zoetic-community/hypher"; description = "A Haskell neo4j client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "hzaif" = callPackage @@ -126985,6 +130141,7 @@ self: { ]; description = "Internationalization for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iCalendar" = callPackage @@ -127015,6 +130172,7 @@ self: { libraryHaskellDepends = [ base interleavableIO mtl ]; description = "Version of Control.Exception using InterleavableIO."; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iap-verifier" = callPackage @@ -127484,6 +130642,7 @@ self: { doCheck = false; description = "An IDE backend library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ide-backend-common_0_9_0" = callPackage @@ -127673,6 +130832,7 @@ self: { jailbreak = true; description = "Shared library used be ide-backend and ide-backend-server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ide-backend-rts" = callPackage @@ -127757,6 +130917,7 @@ self: { jailbreak = true; description = "An IDE backend server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ideas" = callPackage @@ -127793,6 +130954,7 @@ self: { homepage = "http://ideas.cs.uu.nl/www/"; description = "Interactive domain reasoner for logic and mathematics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "idempotent" = callPackage @@ -127865,6 +131027,7 @@ self: { ]; description = "ID3v2 (tagging standard for MP3 files) library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "idna" = callPackage @@ -127888,6 +131051,7 @@ self: { jailbreak = true; description = "Converts Unicode hostnames into ASCII"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "idris" = callPackage @@ -127931,6 +131095,7 @@ self: { homepage = "http://www.idris-lang.org/"; description = "Functional Programming Language with Dependent Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) gmp;}; "ieee" = callPackage @@ -127954,6 +131119,7 @@ self: { libraryHaskellDepends = [ base ]; description = "ieee-utils"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ieee-utils-tempfix" = callPackage @@ -128039,6 +131205,7 @@ self: { homepage = "http://github.com/mikeizbicki/ifcxt"; description = "put if statements within type constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iff" = callPackage @@ -128134,6 +131301,7 @@ self: { homepage = "http://www.haskell.org/gtk2hs/"; description = "Bindings for the Gtk/OS X integration library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {ige-mac-integration = null;}; "ignore" = callPackage @@ -128172,6 +131340,7 @@ self: { homepage = "http://giorgidze.github.com/igraph/"; description = "Bindings to the igraph C library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {igraph = null;}; "igrf" = callPackage @@ -128187,6 +131356,7 @@ self: { homepage = "https://github.com/dmcclean/igrf"; description = "International Geomagnetic Reference Field"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell_0_6_4_1" = callPackage @@ -128358,6 +131528,7 @@ self: { homepage = "http://github.com/gibiansky/IHaskell"; description = "A Haskell backend kernel for the IPython project"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-aeson" = callPackage @@ -128375,6 +131546,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for Aeson"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-basic" = callPackage @@ -128388,6 +131560,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for basic types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-blaze" = callPackage @@ -128401,6 +131574,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for blaze-html types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-charts" = callPackage @@ -128419,6 +131593,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for charts types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-diagrams_0_3_0_0" = callPackage @@ -128456,6 +131631,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for diagram types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-display" = callPackage @@ -128469,6 +131645,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for basic types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-hatex" = callPackage @@ -128482,6 +131659,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for hatex"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-inline-r" = callPackage @@ -128500,6 +131678,7 @@ self: { homepage = "https://tweag.github.io/HaskellR/"; description = "Embed R quasiquotes and plots in IHaskell notebooks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-juicypixels" = callPackage @@ -128516,6 +131695,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell - IHaskellDisplay instances of the image types of the JuicyPixels package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-magic" = callPackage @@ -128534,6 +131714,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IHaskell display instances for bytestrings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-parsec" = callPackage @@ -128551,6 +131732,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instances for Parsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-plot" = callPackage @@ -128564,6 +131746,7 @@ self: { homepage = "http://www.github.com/gibiansky/ihaskell"; description = "IHaskell display instance for Plot (from plot package)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihaskell-rlangqq" = callPackage @@ -128581,6 +131764,7 @@ self: { ]; description = "a rDisp quasiquote to show plots from Rlang-QQ in IHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ihaskell-widgets" = callPackage @@ -128600,6 +131784,7 @@ self: { homepage = "http://www.github.com/gibiansky/IHaskell"; description = "IPython standard widgets for IHaskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ihttp" = callPackage @@ -128618,6 +131803,7 @@ self: { executableHaskellDepends = [ base network ]; description = "Incremental HTTP iteratee"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ilist" = callPackage @@ -128652,6 +131838,7 @@ self: { homepage = "http://github.com/jgm/illuminate"; description = "A fast syntax highlighting library built with alex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "image-type" = callPackage @@ -128678,6 +131865,7 @@ self: { homepage = "https://github.com/tchannel/imagefilters"; description = "Image Filters (contrast, brightness, gaussian blur, etc)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "imagemagick" = callPackage @@ -128705,6 +131893,7 @@ self: { jailbreak = true; description = "bindings to imagemagick library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) imagemagick;}; "imagepaste" = callPackage @@ -128725,6 +131914,7 @@ self: { homepage = "https://bitbucket.org/balta2ar/imagepaste"; description = "Command-line image paste utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imagesize-conduit_1_0_0_4" = callPackage @@ -128790,6 +131980,7 @@ self: { jailbreak = true; description = "An efficient IMAP client library, with SSL and streaming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imapget" = callPackage @@ -128829,6 +132020,7 @@ self: { jailbreak = true; description = "Minimalistic reference manager"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "imgurder" = callPackage @@ -128849,6 +132041,7 @@ self: { ]; description = "Uploader for Imgur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "imm" = callPackage @@ -128884,6 +132077,7 @@ self: { homepage = "https://github.com/k0ral/imm"; description = "Execute arbitrary actions for each unread element of RSS/Atom feeds"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "immortal_0_2" = callPackage @@ -128947,6 +132141,7 @@ self: { jailbreak = true; description = "Multi-platform parser analyzer and generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "imperative-edsl" = callPackage @@ -128970,6 +132165,7 @@ self: { homepage = "https://github.com/emilaxelsson/imperative-edsl"; description = "Deep embedding of imperative programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "imperative-edsl-vhdl" = callPackage @@ -128986,6 +132182,7 @@ self: { ]; description = "Deep embedding of VHDL programs with code generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "implicit" = callPackage @@ -129024,6 +132221,7 @@ self: { homepage = "https://github.com/revnull/implicit-logging"; description = "A logging framework built around implicit parameters"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "implicit-params" = callPackage @@ -129076,6 +132274,7 @@ self: { homepage = "http://github.com/tomahawkins/improve/wiki/ImProve"; description = "An imperative, verifiable programming language for high assurance applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "inc-ref" = callPackage @@ -129111,6 +132310,7 @@ self: { homepage = "https://github.com/adamgundry/inch/"; description = "A type-checker for Haskell with integer constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "include-file_0_1_0_2" = callPackage @@ -129160,6 +132360,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/incremental-computing"; description = "Incremental computing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-maps" = callPackage @@ -129179,6 +132380,7 @@ self: { jailbreak = true; description = "Package for doing incremental computations on maps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "incremental-parser_0_2_3_3" = callPackage @@ -129264,6 +132466,7 @@ self: { homepage = "http://github.com/sebfisch/incremental-sat-solver"; description = "Simple, Incremental SAT Solving as a Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "increments" = callPackage @@ -129284,6 +132487,7 @@ self: { jailbreak = true; description = "type classes for incremental updates to data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "indentation" = callPackage @@ -129379,6 +132583,8 @@ self: { pname = "index-core"; version = "1.0.3"; sha256 = "7d6d4964a83d04e796286fecc61750c211ec4003484672d43bd6d55c7711919c"; + revision = "1"; + editedCabalFile = "a4eb3773e413f2cb2f4963ca921ff295cf3e644dd16681bf5a0aff267ad49883"; libraryHaskellDepends = [ base ]; description = "Indexed Types"; license = stdenv.lib.licenses.bsd3; @@ -129445,6 +132651,7 @@ self: { libraryHaskellDepends = [ base gtk HDBC HDBC-sqlite3 ]; description = "Indian Language Font Converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "indices" = callPackage @@ -129457,6 +132664,7 @@ self: { testHaskellDepends = [ base QuickCheck ]; description = "Multi-dimensional statically bounded indices"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "indieweb-algorithms" = callPackage @@ -129483,20 +132691,22 @@ self: { homepage = "https://github.com/myfreeweb/indieweb-algorithms"; description = "A collection of implementations of IndieWeb algorithms"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "inf-interval" = callPackage ({ mkDerivation, array, base, deepseq, QuickCheck, text, vector }: mkDerivation { pname = "inf-interval"; - version = "0.1.0.1"; - sha256 = "7a636cd2a8ba6394fa104f24215b0dc59da0377b47d2d1296b477737e34cb59c"; + version = "0.1.0.2"; + sha256 = "19dca54b693752560022a8510d43fc651aebc6658ecbb66b0892f202d4afd221"; libraryHaskellDepends = [ array base deepseq vector ]; testHaskellDepends = [ array base deepseq QuickCheck text vector ]; jailbreak = true; homepage = "https://github.com/RaminHAL9001/inf-interval"; description = "Non-contiguous interval data types with potentially infinite ranges"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "infer-upstream" = callPackage @@ -129516,6 +132726,7 @@ self: { homepage = "https://github.com/silky/infer-upstream"; description = "Find the repository from where a given repo was forked"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "infernu" = callPackage @@ -129537,6 +132748,7 @@ self: { homepage = "https://github.com/sinelaw/infernu"; description = "Type inference and checker for JavaScript (experimental)"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "infinite-search" = callPackage @@ -129565,6 +132777,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "infix" = callPackage @@ -129577,6 +132790,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Infix expression re-parsing (for HsParser library)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "inflections_0_2_0_0" = callPackage @@ -129628,6 +132842,7 @@ self: { homepage = "https://bitbucket.org/eegg/inflist"; description = "An infinite list type and operations thereon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "influxdb" = callPackage @@ -129686,6 +132901,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/informative"; description = "A yesod subsite serving a wiki"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ini_0_2_2" = callPackage @@ -129896,6 +133112,7 @@ self: { ]; description = "Write Haskell source files including C code inline. No FFI required."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gsl; gslcblas = null;}; "inline-c-cpp" = callPackage @@ -129908,6 +133125,7 @@ self: { testHaskellDepends = [ base ]; description = "Lets you embed C++ code into Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "inline-c-win32" = callPackage @@ -129943,6 +133161,7 @@ self: { homepage = "http://github.com/tweag/inline-java#readme"; description = "Java interop via inline Java code in Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {jvm = null;}; "inline-r" = callPackage @@ -129974,6 +133193,7 @@ self: { ]; description = "Seamlessly call R from Haskell and vice versa. No FFI required."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-linux" ]; }) {inherit (pkgs) R;}; "inquire" = callPackage @@ -130075,6 +133295,7 @@ self: { homepage = "https://github.com/k0001/instant-aeson"; description = "Generic Aeson instances through instant-generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instant-bytes" = callPackage @@ -130093,6 +133314,7 @@ self: { homepage = "https://github.com/k0001/instant-bytes"; description = "Generic Serial instances through instant-generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instant-deepseq" = callPackage @@ -130106,6 +133328,7 @@ self: { homepage = "https://github.com/k0001/instant-deepseq"; description = "Generic NFData instances through instant-generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instant-generics" = callPackage @@ -130121,6 +133344,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/InstantGenerics"; description = "Generic programming library with a sum of products view"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instant-hashable" = callPackage @@ -130134,6 +133358,7 @@ self: { homepage = "https://github.com/k0001/instant-hashable"; description = "Generic Hashable instances through instant-generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instant-zipper" = callPackage @@ -130148,6 +133373,7 @@ self: { jailbreak = true; description = "Heterogenous Zipper in Instant Generics"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "instinct" = callPackage @@ -130212,6 +133438,7 @@ self: { homepage = "http://projects.haskell.org/~malcolm/integer-pure"; description = "A pure-Haskell implementation of arbitrary-precision Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "integer-simple" = callPackage @@ -130267,6 +133494,7 @@ self: { homepage = "https://github.com/rrnewton/intel-aes/wiki"; description = "Hardware accelerated AES encryption and Random Number Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {intel_aes = null;}; "interchangeable" = callPackage @@ -130292,6 +133520,7 @@ self: { executableHaskellDepends = [ base directory haskell-src hint mtl ]; description = "Generates a version of a module using InterleavableIO"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "interleavableIO" = callPackage @@ -130303,6 +133532,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Use other Monads in functions that asks for an IO Monad"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "interleave" = callPackage @@ -130377,6 +133607,7 @@ self: { homepage = "http://code.haskell.org/~thielema/internetmarke/"; description = "Shell command for constructing custom stamps for German Post"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "intero" = callPackage @@ -130386,8 +133617,8 @@ self: { }: mkDerivation { pname = "intero"; - version = "0.1.11"; - sha256 = "ff20f5ce5100902e58b38d23fda7118b6a8a85b5bcccc42fcd868aacd6bebe95"; + version = "0.1.13"; + sha256 = "4b59667057afed0e2b9557ab7eedc64597c39a3bc5e18524e4c0578a5320af87"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -130397,9 +133628,10 @@ self: { testHaskellDepends = [ base directory hspec process regex-compat temporary transformers ]; - homepage = "https://github.com/chrisdone/intero"; + homepage = "https://github.com/commercialhaskell/intero"; description = "Complete interactive development program for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "interpol" = callPackage @@ -130485,6 +133717,7 @@ self: { ]; description = "QuasiQuoter for Ruby-style multi-line interpolated strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "interpolatedstring-qq-mwotton" = callPackage @@ -130500,6 +133733,7 @@ self: { jailbreak = true; description = "DO NOT USE THIS. interpolatedstring-qq works now."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "interpolation" = callPackage @@ -130536,6 +133770,7 @@ self: { homepage = "https://sealgram.com/git/haskell/interruptible/"; description = "Monad transformers that can be run and resumed later, conserving their context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "interspersed" = callPackage @@ -130548,6 +133783,7 @@ self: { homepage = "https://github.com/nikita-volkov/interspersed"; description = "An abstraction over interspersing monadic actions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "intervals_0_7_0_1" = callPackage @@ -130634,6 +133870,7 @@ self: { homepage = "https://github.com/pxqr/intset"; description = "Pure, mergeable, succinct Int sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "invariant_0_2" = callPackage @@ -130749,6 +133986,7 @@ self: { testHaskellDepends = [ base QuickCheck transformers ]; description = "bidirectional arrows, bijective functions, and invariant functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "invertible-syntax" = callPackage @@ -130761,6 +133999,7 @@ self: { homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; description = "Invertible syntax descriptions for both parsing and pretty printing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "io-capture" = callPackage @@ -130780,6 +134019,7 @@ self: { homepage = "https://github.com/mitchellwrosen/io-capture#readme"; description = "Capture IO actions' stdout and stderr"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "io-choice_0_0_5" = callPackage @@ -130872,6 +134112,7 @@ self: { executableHaskellDepends = [ base ]; description = "An API for generating TIMBER style reactive objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "io-region" = callPackage @@ -131086,6 +134327,7 @@ self: { homepage = "https://bitbucket.org/dshearer/iotransaction/"; description = "Supports the automatic undoing of IO operations when an exception is thrown"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ip" = callPackage @@ -131186,6 +134428,7 @@ self: { homepage = "http://darcs.nomeata.de/ipatch"; description = "interactive patch editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ipc" = callPackage @@ -131202,6 +134445,7 @@ self: { jailbreak = true; description = "High level inter-process communication library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ipcvar" = callPackage @@ -131237,6 +134481,7 @@ self: { jailbreak = true; description = "haskell binding to ipopt and nlopt including automatic differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ipopt; nlopt = null;}; "ipprint" = callPackage @@ -131352,6 +134597,7 @@ self: { jailbreak = true; description = "iptables rules parser/printer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iptadmin" = callPackage @@ -131378,6 +134624,7 @@ self: { homepage = "http://iptadmin.117.su"; description = "web-interface for iptables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ipython-kernel_0_6_1_2" = callPackage @@ -131564,6 +134811,7 @@ self: { homepage = "https://github.com/barrucadu/irc-client"; description = "An IRC client library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "irc-colors" = callPackage @@ -131646,6 +134894,8 @@ self: { pname = "irc-dcc"; version = "1.2.0"; sha256 = "8e01bddcbf8ab09ce2741942cdc45d7331d61afe03fdd9bcf677df5731a49256"; + revision = "1"; + editedCabalFile = "d7d7a2604cb0335d93b7000235619e53086fcb7ef83f54707628a829b7af0680"; libraryHaskellDepends = [ attoparsec base binary bytestring errors io-streams iproute irc-ctcp network path transformers utf8-string @@ -131670,6 +134920,8 @@ self: { pname = "irc-dcc"; version = "1.2.1"; sha256 = "b348e0b921c27e2f29188b5604e0185cec9b0f0da36e24cad920ec1a33f5c512"; + revision = "1"; + editedCabalFile = "cf27bbf57c87862fc6c854c916815a72633983daf6405a77abe8979704a4e76b"; libraryHaskellDepends = [ attoparsec base binary bytestring errors io-streams iproute irc-ctcp network path transformers utf8-string @@ -131867,6 +135119,7 @@ self: { homepage = "http://doomanddarkness.eu/pub/antisplice"; description = "A technical demo for Antisplice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "is" = callPackage @@ -131879,6 +135132,7 @@ self: { testHaskellDepends = [ base template-haskell ]; description = "Pattern predicates using TH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "isdicom" = callPackage @@ -131911,6 +135165,7 @@ self: { jailbreak = true; description = "Check whether a value has been evaluated"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "isiz" = callPackage @@ -131924,6 +135179,7 @@ self: { executableHaskellDepends = [ base gtk3 ]; description = "A program to show the size of image and whether suitable for wallpaper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "islink" = callPackage @@ -131952,6 +135208,7 @@ self: { ]; description = "Advanced ESMTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iso3166-country-codes" = callPackage @@ -131991,6 +135248,7 @@ self: { ]; description = "Parse and merge ISO 8583-style bitmaps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iso8601-time" = callPackage @@ -132052,6 +135310,7 @@ self: { ]; description = "An implementation of name mangling/demangling for the Itanium ABI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "iter-stats" = callPackage @@ -132072,6 +135331,7 @@ self: { homepage = "https://github.com/JohnLato/iter-stats"; description = "iteratees for statistical processing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterIO" = callPackage @@ -132092,6 +135352,7 @@ self: { homepage = "http://www.scs.stanford.edu/~dm/iterIO"; description = "Iteratee-based IO with pipe operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zlib;}; "iterable" = callPackage @@ -132133,6 +135394,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/iteratee"; description = "Iteratee-based I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-compress" = callPackage @@ -132145,6 +135407,7 @@ self: { librarySystemDepends = [ bzip2 zlib ]; description = "Enumeratees for compressing and decompressing streams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) bzip2; inherit (pkgs) zlib;}; "iteratee-mtl" = callPackage @@ -132181,6 +135444,7 @@ self: { jailbreak = true; description = "Package allowing parsec parser initeratee"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iteratee-stm" = callPackage @@ -132196,6 +135460,7 @@ self: { homepage = "http://www.tiresiaspress.us/~jwlato/haskell/iteratee-stm"; description = "Concurrent iteratees using STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iterio-server" = callPackage @@ -132214,6 +135479,7 @@ self: { homepage = "https://github.com/alevy/iterio-server"; description = "Library for building servers with IterIO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivar-simple" = callPackage @@ -132244,6 +135510,7 @@ self: { homepage = "http://www.dcs.st-and.ac.uk/~eb/Ivor/"; description = "Theorem proving library based on dependent type theory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ivory" = callPackage @@ -132263,6 +135530,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Safe embedded C programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-artifact" = callPackage @@ -132299,6 +135567,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory C backend"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-bitdata" = callPackage @@ -132319,6 +135588,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory bit-data support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-eval" = callPackage @@ -132338,6 +135608,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Simple concrete evaluator for Ivory programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-examples" = callPackage @@ -132358,6 +135629,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-hw" = callPackage @@ -132374,6 +135646,7 @@ self: { homepage = "http://ivorylang.org"; description = "Ivory hardware model (STM32F4)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-opts" = callPackage @@ -132391,6 +135664,7 @@ self: { homepage = "http://ivorylang.org"; description = "Ivory compiler optimizations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-quickcheck" = callPackage @@ -132413,6 +135687,7 @@ self: { homepage = "http://ivorylang.org"; description = "QuickCheck driver for Ivory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-serialize" = callPackage @@ -132428,6 +135703,7 @@ self: { ]; description = "Serialization library for Ivory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivory-stdlib" = callPackage @@ -132440,6 +135716,7 @@ self: { homepage = "http://smaccmpilot.org/languages/ivory-introduction.html"; description = "Ivory standard library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ivy-web" = callPackage @@ -132456,6 +135733,7 @@ self: { homepage = "https://github.com/lilac/ivy-web/"; description = "A lightweight web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ix-shapable" = callPackage @@ -132482,6 +135760,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~tov/pubs/haskell-session-types/"; description = "A preprocessor for expanding \"ixdo\" notation for indexed monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ixmonad" = callPackage @@ -132493,6 +135772,7 @@ self: { libraryHaskellDepends = [ base ghc-prim ]; description = "Embeds effect systems into Haskell using parameteric effect monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ixset_1_0_6" = callPackage @@ -132526,6 +135806,7 @@ self: { homepage = "http://happstack.com"; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ixset-typed" = callPackage @@ -132546,6 +135827,7 @@ self: { doCheck = false; description = "Efficient relational queries on Haskell sets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "iyql" = callPackage @@ -132565,6 +135847,7 @@ self: { ]; description = "CLI (command line interface) to YQL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "j2hs" = callPackage @@ -132586,6 +135869,7 @@ self: { jailbreak = true; description = "j2hs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ja-base-extra" = callPackage @@ -132619,6 +135903,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/JACK"; description = "Bindings for the JACK Audio Connection Kit"; license = "GPL"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) libjack2;}; "jack-bindings" = callPackage @@ -132632,6 +135917,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "DEPRECATED Bindings to the JACK Audio Connection Kit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libjack2;}; "jackminimix" = callPackage @@ -132645,6 +135931,7 @@ self: { homepage = "http://www.renickbell.net/doku.php?id=jackminimix"; description = "control JackMiniMix"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jacobi-roots" = callPackage @@ -132658,6 +135945,7 @@ self: { homepage = "http://github.com/ghorn/jacobi-roots"; description = "Roots of two shifted Jacobi polynomials (Legendre and Radau) to double precision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jail" = callPackage @@ -132726,6 +136014,7 @@ self: { homepage = "https://github.com/cgo/jalla"; description = "Higher level functions for linear algebra. Wraps BLAS and LAPACKE."; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) blas; cblas = null; lapacke = null;}; "jammittools" = callPackage @@ -132768,6 +136057,7 @@ self: { ]; description = "Tool for searching java classes, members and fields in classfiles and JAR archives"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "java-bridge" = callPackage @@ -132791,6 +136081,7 @@ self: { ]; description = "Bindings to the JNI and a high level interface generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-bridge-extras" = callPackage @@ -132803,6 +136094,7 @@ self: { jailbreak = true; description = "Utilities for working with the java-bridge package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "java-character" = callPackage @@ -132842,6 +136134,7 @@ self: { jailbreak = true; description = "Tools for reflecting on Java classes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javaclass" = callPackage @@ -132863,6 +136156,7 @@ self: { homepage = "https://github.com/NICTA/javaclass"; description = "Java class files"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "javasf" = callPackage @@ -132884,6 +136178,7 @@ self: { homepage = "https://github.com/tonymorris/javasf"; description = "A utility to print the SourceFile attribute of one or more Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "javav" = callPackage @@ -132901,6 +136196,7 @@ self: { homepage = "https://github.com/tonymorris/javav"; description = "A utility to print the target version of Java class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jcdecaux-vls" = callPackage @@ -132969,6 +136265,7 @@ self: { homepage = "http://github.com/achudnov/jespresso"; description = "Extract all JavaScript from an HTML page and consolidate it in one script"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jmacro_0_6_11" = callPackage @@ -133147,6 +136444,7 @@ self: { homepage = "http://hub.darcs.net/gershomb/jmacro-rpc"; description = "Happstack backend for jmacro-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jmacro-rpc-snap" = callPackage @@ -133189,6 +136487,7 @@ self: { homepage = "https://github.com/gree/haskell-jobqueue"; description = "A job queue library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "join" = callPackage @@ -133201,6 +136500,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/parallel-join-patterns-with-guards-and.html"; description = "Parallel Join Patterns with Guards and Propagation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "joinlist" = callPackage @@ -133213,6 +136513,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Join list - symmetric list type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jonathanscard" = callPackage @@ -133230,6 +136531,7 @@ self: { homepage = "http://rawr.mschade.me/jonathanscard/"; description = "An implementation of the Jonathan's Card API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jort" = callPackage @@ -133244,6 +136546,7 @@ self: { jailbreak = true; description = "JP's own ray tracer"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jose" = callPackage @@ -133274,6 +136577,7 @@ self: { homepage = "https://github.com/frasertweedale/hs-jose"; description = "Javascript Object Signing and Encryption and JSON Web Token library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "jose-jwt_0_4_2" = callPackage @@ -133288,6 +136592,8 @@ self: { pname = "jose-jwt"; version = "0.4.2"; sha256 = "f9df06c9f44ec3481c9729f44661728c7f8687772c36cdf898ce97e60917e3ef"; + revision = "2"; + editedCabalFile = "67ecce96ed8c8ad2e3d6d018d1aac6fc87ca9fc8307f064047914e2be7ded5fb"; libraryHaskellDepends = [ aeson base base64-bytestring byteable bytestring cereal cipher-aes containers crypto-cipher-types crypto-numbers crypto-pubkey @@ -133300,6 +136606,7 @@ self: { crypto-random cryptohash doctest either hspec HUnit mtl QuickCheck text ]; + jailbreak = true; homepage = "http://github.com/tekul/jose-jwt"; description = "JSON Object Signing and Encryption Library"; license = stdenv.lib.licenses.bsd3; @@ -133318,8 +136625,8 @@ self: { pname = "jose-jwt"; version = "0.6.2"; sha256 = "f8bbfcf64af6547f687b54d587b60f923594a72131581a4da9575ef8c858833b"; - revision = "1"; - editedCabalFile = "5aa6637a051160937328c7ff477615ff8424212374f46e41386c705e4db425c0"; + revision = "2"; + editedCabalFile = "ffd71382663cc8a6617fdc5154f523804837d2b851b05b669b912f062c096cf0"; libraryHaskellDepends = [ aeson base base64-bytestring byteable bytestring cereal cipher-aes containers crypto-cipher-types crypto-numbers crypto-pubkey @@ -133347,6 +136654,8 @@ self: { pname = "jose-jwt"; version = "0.7"; sha256 = "60d5bf047e6ba6081b4ca7a86fe78a371594aa9ed1fec808a8c3628b5b0eca62"; + revision = "1"; + editedCabalFile = "a43df539f6c66ff12808a8db58d83bf98356e79be1e52850791295f83c309b86"; libraryHaskellDepends = [ aeson base bytestring cereal containers cryptonite either memory mtl text time unordered-containers vector @@ -133395,6 +136704,7 @@ self: { homepage = "https://github.com/sseefried/js-good-parts.git"; description = "Javascript: The Good Parts -- AST & Pretty Printer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "js-jquery_1_11_1" = callPackage @@ -133559,6 +136869,7 @@ self: { ]; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsaddle-dom" = callPackage @@ -133575,6 +136886,7 @@ self: { ]; description = "DOM library that uses jsaddle to support both GHCJS and WebKitGTK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsaddle-hello" = callPackage @@ -133590,6 +136902,7 @@ self: { homepage = "https://github.com/ghcjs/jsaddle-hello"; description = "JSaddle Hello World, an example package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsc" = callPackage @@ -133612,6 +136925,7 @@ self: { jailbreak = true; description = "High level interface for webkit-javascriptcore"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsmw" = callPackage @@ -133624,6 +136938,7 @@ self: { jailbreak = true; description = "Javascript Monadic Writer base package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json" = callPackage @@ -133690,6 +137005,7 @@ self: { homepage = "https://github.com/sannsyn/json-ast-json-encoder"; description = "Encoders of JSON AST"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-ast-quickcheck" = callPackage @@ -133706,6 +137022,7 @@ self: { homepage = "https://github.com/nikita-volkov/json-ast-quickcheck"; description = "Compatibility layer for \"json-ast\" and \"QuickCheck\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-autotype_0_2_5_4" = callPackage @@ -134015,6 +137332,7 @@ self: { homepage = "https://github.com/mgajda/json-autotype"; description = "Automatic type declaration for JSON input data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-b" = callPackage @@ -134039,6 +137357,7 @@ self: { homepage = "http://github.com/jsnx/JSONb/"; description = "JSON parser that uses byte strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-builder" = callPackage @@ -134073,6 +137392,7 @@ self: { homepage = "https://github.com/sannsyn/json-encoder"; description = "A direct-to-bytes single-pass JSON encoder with a declarative DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-enumerator" = callPackage @@ -134092,6 +137412,7 @@ self: { homepage = "http://github.com/snoyberg/json-enumerator"; description = "Pure-Haskell utilities for dealing with JSON with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-extra" = callPackage @@ -134111,6 +137432,7 @@ self: { homepage = "https://bitbucket.org/tdammers/json-extra"; description = "Utility functions to extend Aeson"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-fu" = callPackage @@ -134158,6 +137480,7 @@ self: { homepage = "https://github.com/nikita-volkov/json-incremental-decoder"; description = "Incremental JSON parser with early termination and a declarative DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "json-litobj" = callPackage @@ -134184,6 +137507,7 @@ self: { homepage = "https://github.com/sannsyn/json-pointer"; description = "JSON Pointer parsing and interpretation utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-pointer-aeson" = callPackage @@ -134200,6 +137524,7 @@ self: { homepage = "https://github.com/sannsyn/json-pointer-aeson"; description = "Integration layer for \"json-pointer\" and \"aeson\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-pointer-hasql" = callPackage @@ -134217,6 +137542,7 @@ self: { homepage = "https://github.com/sannsyn/json-pointer-hasql"; description = "JSON Pointer extensions for Hasql"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-python" = callPackage @@ -134250,6 +137576,7 @@ self: { homepage = "http://github.com/finnsson/json-qq"; description = "Json Quasiquatation library for Haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-rpc" = callPackage @@ -134596,6 +137923,7 @@ self: { jailbreak = true; description = "Generics JSON (de)serialization using generics-sop"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-state" = callPackage @@ -134633,6 +137961,7 @@ self: { homepage = "https://github.com/ondrap/json-stream"; description = "Incremental applicative JSON parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "json-togo" = callPackage @@ -134670,6 +137999,7 @@ self: { ]; description = "A collection of JSON tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json-types" = callPackage @@ -134697,6 +138027,7 @@ self: { ]; description = "Library provides support for JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json2-hdbc" = callPackage @@ -134712,6 +138043,7 @@ self: { ]; description = "Support JSON for SQL Database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "json2-types" = callPackage @@ -134754,6 +138086,7 @@ self: { homepage = "https://github.com/dpwright/jsonresume.hs"; description = "Parser and datatypes for the JSON Resume format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsonrpc-conduit" = callPackage @@ -134796,6 +138129,7 @@ self: { homepage = "https://github.com/yuga/jsonschema-gen"; description = "JSON Schema generator from Algebraic data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "jsonsql" = callPackage @@ -134855,6 +138189,7 @@ self: { ]; description = "Extract substructures from JSON by following a path"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "juandelacosa" = callPackage @@ -134876,6 +138211,7 @@ self: { ]; description = "Manage users in MariaDB >= 10.1.1"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "judy" = callPackage @@ -134892,6 +138228,7 @@ self: { homepage = "http://github.com/mwotton/judy"; description = "Fast, scalable, mutable dynamic arrays, maps and hashes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {Judy = null;}; "jukebox" = callPackage @@ -134913,6 +138250,7 @@ self: { executableHaskellDepends = [ base ]; description = "A first-order reasoning toolbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "jump" = callPackage @@ -135195,6 +138533,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Binary parsing with random access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kanji" = callPackage @@ -135274,6 +138613,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "Kansas Lava is a hardware simulator and VHDL generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kansas-lava-cores" = callPackage @@ -135294,6 +138634,7 @@ self: { homepage = "http://ittc.ku.edu/csdl/fpg/Tools/KansasLava"; description = "FPGA Cores Written in Kansas Lava"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kansas-lava-papilio" = callPackage @@ -135311,6 +138652,7 @@ self: { ]; description = "Kansas Lava support files for the Papilio FPGA board"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kansas-lava-shake" = callPackage @@ -135322,6 +138664,7 @@ self: { libraryHaskellDepends = [ base hastache kansas-lava shake text ]; description = "Shake rules for building Kansas Lava projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "karakuri" = callPackage @@ -135339,6 +138682,7 @@ self: { homepage = "https://github.com/fumieval/karakuri"; description = "Good stateful automata"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "karver" = callPackage @@ -135388,6 +138732,7 @@ self: { homepage = "https://github.com/Soostone/katip"; description = "A structured logging framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "katip-elasticsearch" = callPackage @@ -135415,6 +138760,7 @@ self: { doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "katt" = callPackage @@ -135438,6 +138784,7 @@ self: { homepage = "https://github.com/davnils/katt"; description = "Client for the Kattis judge system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kazura-queue" = callPackage @@ -135610,6 +138957,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Gtk-based global environment for MVC applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-mvc-model-lightmodel" = callPackage @@ -135627,6 +138975,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Reactive Protected Light Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-mvc-model-protectedmodel" = callPackage @@ -135644,6 +138993,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Rapid Gtk Application Development - Protected Reactive Models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-mvc-solutions-config" = callPackage @@ -135678,6 +139028,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Common solutions to recurrent problems in Gtk applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-mvc-view" = callPackage @@ -135720,6 +139071,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Files as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactive-gtk" = callPackage @@ -135737,6 +139089,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Gtk rails - Reactive Fields for Gtk widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactive-network" = callPackage @@ -135751,6 +139104,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Sockets as Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactive-polling" = callPackage @@ -135766,6 +139120,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Polling based Readable RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactive-wx" = callPackage @@ -135780,6 +139135,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Fields for WX widgets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keera-hails-reactive-yampa" = callPackage @@ -135796,6 +139152,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - FRP Yampa Signal Functions as RVs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactivelenses" = callPackage @@ -135808,6 +139165,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Reactive Haskell on Rails - Lenses applied to Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-hails-reactivevalues" = callPackage @@ -135827,6 +139185,7 @@ self: { homepage = "http://www.keera.es/blog/community/"; description = "Haskell on Rails - Reactive Values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keera-posture" = callPackage @@ -135861,6 +139220,7 @@ self: { homepage = "http://keera.co.uk/projects/keera-posture"; description = "Get notifications when your sitting posture is inappropriate"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL_mixer;}; "keiretsu" = callPackage @@ -135883,6 +139243,7 @@ self: { jailbreak = true; description = "Multi-process orchestration for development and integration testing"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "keter_1_3_6" = callPackage @@ -136228,6 +139589,7 @@ self: { ]; description = "a dAmn ↔ IRC proxy"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keycode_0_1" = callPackage @@ -136301,6 +139663,7 @@ self: { homepage = "https://github.com/lunaryorn/haskell-keyring"; description = "Keyring access"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keys_3_10_1" = callPackage @@ -136391,6 +139754,7 @@ self: { homepage = "http://github.com/cdornan/keystore"; description = "Managing stores of secret things"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "keyvaluehash" = callPackage @@ -136463,6 +139827,7 @@ self: { homepage = "http://github.com/kasbah/haskell-kicad-data"; description = "Parser and writer for KiCad files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kickass-torrents-dump-parser" = callPackage @@ -136481,6 +139846,7 @@ self: { jailbreak = true; description = "Parses kat.ph torrent dumps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kickchan" = callPackage @@ -136517,6 +139883,7 @@ self: { ]; description = "Process KIF iOS test logs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kinds" = callPackage @@ -136550,6 +139917,7 @@ self: { homepage = "http://github.com/nkpart/kit"; description = "A dependency manager for Xcode (Objective-C) projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kmeans" = callPackage @@ -136578,6 +139946,7 @@ self: { ]; description = "Sequential and parallel implementations of Lloyd's algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kmeans-vector" = callPackage @@ -136624,6 +139993,7 @@ self: { jailbreak = true; description = "Khovanov homology computations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "koellner-phonetic" = callPackage @@ -136637,6 +140007,7 @@ self: { doHaddock = false; description = "\"map German words to code representing pronunciation\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kontrakcja-templates" = callPackage @@ -136695,6 +140066,7 @@ self: { homepage = "http://blog.malde.org/"; description = "The Korfu ORF Utility"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "kqueue" = callPackage @@ -136709,6 +140081,7 @@ self: { homepage = "http://github.com/hesselink/kqueue"; description = "A binding to the kqueue event library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kraken_0_0_1" = callPackage @@ -136764,6 +140137,7 @@ self: { homepage = "https://github.com/cobit/krpc"; description = "KRPC protocol implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ks-test" = callPackage @@ -136775,6 +140149,7 @@ self: { libraryHaskellDepends = [ base gamma random-fu roots vector ]; description = "Kolmogorov distribution and Kolmogorov-Smirnov test"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ktx" = callPackage @@ -136879,6 +140254,7 @@ self: { homepage = "http://ittc.ku.edu/~andygill/kure.php"; description = "Generator for Boilerplate KURE Combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "kyotocabinet" = callPackage @@ -136905,6 +140281,7 @@ self: { homepage = "http://nonempty.org/software/haskell-l-bfgs-b"; description = "Bindings to L-BFGS-B, Fortran code for limited-memory quasi-Newton bound-constrained optimization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {lbfgsb = null;}; "labeled-graph" = callPackage @@ -136916,6 +140293,7 @@ self: { libraryHaskellDepends = [ base labeled-tree ]; description = "Labeled graph structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "labeled-tree" = callPackage @@ -136952,6 +140330,7 @@ self: { homepage = "https://github.com/lucasdicioccio/laborantin-hs"; description = "an experiment management framework"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "labyrinth" = callPackage @@ -136975,6 +140354,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth"; description = "A complicated turn-based game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "labyrinth-server" = callPackage @@ -137010,6 +140390,7 @@ self: { homepage = "https://github.com/koterpillar/labyrinth-server"; description = "A complicated turn-based game - Web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lackey" = callPackage @@ -137047,6 +140428,7 @@ self: { homepage = "http://github.com/jfischoff/lagrangian"; description = "Solve Lagrange multiplier problems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "laika" = callPackage @@ -137068,6 +140450,7 @@ self: { homepage = "https://github.com/nikita-volkov/laika"; description = "Minimalistic type-checked compile-time template engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-ast" = callPackage @@ -137094,6 +140477,7 @@ self: { homepage = "http://www.ittc.ku.edu/csdl/fpg/Tools/LambdaBridge"; description = "A bridge from Haskell (on a CPU) to VHDL on a FPGA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambda-canvas" = callPackage @@ -137133,6 +140517,7 @@ self: { homepage = "http://github.com/alios/lambda-devs"; description = "a Paralell-DEVS implementaion based on distributed-process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambda-options" = callPackage @@ -137172,6 +140557,7 @@ self: { homepage = "http://scravy.de/blog/2012-02-20/a-lambda-toolbox-in-haskell.htm"; description = "An application to work with the lambda calculus (for learning)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambda2js" = callPackage @@ -137198,6 +140584,7 @@ self: { libraryHaskellDepends = [ base parsec ]; testHaskellDepends = [ base parsec ]; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaFeed" = callPackage @@ -137212,6 +140599,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/lambdaFeed/"; description = "RSS 2.0 feed generator"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaLit" = callPackage @@ -137229,6 +140617,7 @@ self: { ]; description = "..."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot_5_0_3" = callPackage @@ -137275,6 +140664,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot is a development tool and advanced IRC bot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-core_5_0_3" = callPackage @@ -137328,6 +140718,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot core functionality"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-haskell-plugins_5_0_3" = callPackage @@ -137384,6 +140775,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot Haskell plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-irc-plugins_5_0_3" = callPackage @@ -137422,6 +140814,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "IRC plugins for lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-misc-plugins_5_0_1" = callPackage @@ -137470,6 +140863,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot miscellaneous plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-novelty-plugins_5_0_3" = callPackage @@ -137510,6 +140904,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Novelty plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-reference-plugins_5_0_3" = callPackage @@ -137548,6 +140943,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Lambdabot reference plugins"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-social-plugins_5_0_1" = callPackage @@ -137584,6 +140980,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Social plugins for Lambdabot"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdabot-trusted_5_0_2_1" = callPackage @@ -137631,6 +141028,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Lambdabot"; description = "Utility libraries for the advanced IRC bot, Lambdabot"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacat" = callPackage @@ -137650,6 +141048,7 @@ self: { homepage = "http://github.com/baldo/lambdacat"; description = "Webkit Browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacms-core" = callPackage @@ -137676,6 +141075,7 @@ self: { homepage = "http://lambdacms.org"; description = "LambdaCms 'core' subsite for Yesod apps"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacms-media" = callPackage @@ -137693,6 +141093,7 @@ self: { homepage = "http://lambdacms.org"; description = "LambdaCms \"media\" extension"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacube" = callPackage @@ -137706,6 +141107,7 @@ self: { executableHaskellDepends = [ base editline mtl pretty ]; description = "A simple lambda cube type checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-bullet" = callPackage @@ -137720,6 +141122,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Example for combining LambdaCube and Bullet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdacube-compiler" = callPackage @@ -137751,6 +141154,7 @@ self: { homepage = "http://lambdacube3d.com"; description = "LambdaCube 3D is a DSL to program GPUs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacube-core" = callPackage @@ -137806,6 +141210,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "3D rendering engine written entirely in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacube-examples" = callPackage @@ -137822,6 +141227,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "Examples for LambdaCube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdacube-gl" = callPackage @@ -137883,6 +141289,7 @@ self: { homepage = "http://lambdacube3d.wordpress.com/"; description = "Samples for LambdaCube 3D"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lambdatex" = callPackage @@ -137930,6 +141337,7 @@ self: { homepage = "http://github.com/ashyisme/lambdatwit"; description = "Lambdabot running as a twitter bot. Similar to the @fsibot f# bot."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lambdaya-bus" = callPackage @@ -137962,6 +141370,7 @@ self: { homepage = "https://github.com/jamwt/lambdiff.git"; description = "Diff Viewer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lame-tester" = callPackage @@ -137979,6 +141388,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A strange and unnecessary selective test-running library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-asn1" = callPackage @@ -138011,6 +141421,7 @@ self: { homepage = "http://github.com/knrafto/language-bash/"; description = "Parsing and pretty-printing Bash shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-boogie" = callPackage @@ -138036,6 +141447,7 @@ self: { homepage = "https://bitbucket.org/nadiapolikarpova/boogaloo"; description = "Interpreter and language infrastructure for Boogie"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-c_0_4_7" = callPackage @@ -138086,6 +141498,7 @@ self: { homepage = "http://github.com/ghulette/language-c-comments"; description = "Extracting comments from C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-c-inline" = callPackage @@ -138105,6 +141518,7 @@ self: { homepage = "https://github.com/mchakravarty/language-c-inline/"; description = "Inline C & Objective-C code in Haskell for language interoperability"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-c-quote_0_10_2" = callPackage @@ -138425,6 +141839,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "language-dart" = callPackage + ({ mkDerivation, base, hspec, pretty }: + mkDerivation { + pname = "language-dart"; + version = "0.1.0.0"; + sha256 = "da3d2463be605a48b21af178dbf74d00c90da9b909821a7f54db77f5a82b3cbb"; + libraryHaskellDepends = [ base pretty ]; + testHaskellDepends = [ base hspec ]; + homepage = "https://github.com/kseo/language-dart#readme"; + description = "Manipulating Dart source: abstract syntax and pretty-printer"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "language-dot" = callPackage ({ mkDerivation, base, mtl, parsec, pretty }: mkDerivation { @@ -138609,6 +142036,7 @@ self: { homepage = "https://github.com/scottgw/language-eiffel"; description = "Parser and pretty printer for the Eiffel language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-fortran" = callPackage @@ -138685,6 +142113,7 @@ self: { jailbreak = true; description = "A library for analysis and synthesis of Go code"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-guess" = callPackage @@ -138770,6 +142199,7 @@ self: { ]; description = "Parser for Java .class files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-javascript_0_5_13" = callPackage @@ -138917,7 +142347,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript" = callPackage + "language-javascript_0_6_0_4" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string @@ -138937,9 +142367,10 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "language-javascript_0_6_0_5" = callPackage + "language-javascript" = callPackage ({ mkDerivation, alex, array, base, blaze-builder, bytestring , Cabal, containers, happy, hspec, mtl, QuickCheck, text , utf8-light, utf8-string @@ -138959,7 +142390,6 @@ self: { homepage = "http://github.com/erikd/language-javascript"; description = "Parser for JavaScript"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-kort" = callPackage @@ -138988,23 +142418,20 @@ self: { "language-lua" = callPackage ({ mkDerivation, alex, array, base, bytestring, deepseq, directory - , filepath, mtl, parsec, QuickCheck, tasty, tasty-hunit - , tasty-quickcheck + , filepath, happy, QuickCheck, tasty, tasty-hunit, tasty-quickcheck + , text }: mkDerivation { pname = "language-lua"; - version = "0.8.1"; - sha256 = "e6adaf71da11914ebb68094dd3e441134343f9fa821585de8fa72343005f1028"; - libraryHaskellDepends = [ - array base bytestring deepseq mtl parsec - ]; - libraryToolDepends = [ alex ]; + version = "0.9.0"; + sha256 = "24da44733576714dcd6f3782f661e877771a2c394a97d8231151518588e82de5"; + libraryHaskellDepends = [ array base bytestring deepseq text ]; + libraryToolDepends = [ alex happy ]; testHaskellDepends = [ - base bytestring deepseq directory filepath parsec QuickCheck tasty - tasty-hunit tasty-quickcheck + base bytestring deepseq directory filepath QuickCheck tasty + tasty-hunit tasty-quickcheck text ]; - jailbreak = true; - homepage = "http://github.com/osa1/language-lua"; + homepage = "http://github.com/glguy/language-lua"; description = "Lua parser and pretty-printer"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -139069,6 +142496,7 @@ self: { homepage = "http://github.com/jtdaugherty/language-mixal/"; description = "Parser, pretty-printer, and AST types for the MIXAL assembly language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-nix_2_1" = callPackage @@ -139129,6 +142557,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/language-objc"; description = "Analysis and generation of Objective C code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-openscad" = callPackage @@ -139172,42 +142601,44 @@ self: { , base16-bytestring, bytestring, case-insensitive, containers , cryptonite, directory, either, exceptions, filecache, formatting , Glob, hashable, hruby, hslogger, hslua, hspec, hspec-megaparsec - , 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 + , 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.1.5.1"; - sha256 = "d4f237f460294564d34de5d9fb781d4d6f9fbd465a9fb5d3396af8270f2e2438"; + version = "1.2"; + sha256 = "c093b8c4586c6d8b63aa02ed905c74f4238cae9c6d32b0140ba47fefff1cda48"; 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 hslua hspec 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 + filecache formatting hashable hruby hslogger hslua 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 either Glob hslogger lens - megaparsec optparse-applicative parallel-io regex-pcre-builtin - servant-client strict-base-types text unordered-containers vector - yaml + 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 either Glob hslogger hspec hspec-megaparsec - HUnit lens megaparsec mtl scientific strict-base-types temporary - text unix unordered-containers vector + 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 @@ -139242,6 +142673,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/"; description = "Generate coloured XHTML for Python code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-python-test" = callPackage @@ -139274,6 +142706,7 @@ self: { homepage = "https://github.com/qux-lang/language-qux"; description = "Utilities for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "language-sh" = callPackage @@ -139290,6 +142723,7 @@ self: { homepage = "http://code.haskell.org/shsh/"; description = "A package for parsing shell scripts"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-slice" = callPackage @@ -139330,6 +142764,7 @@ self: { homepage = "https://github.com/bitonic/language-spelling"; description = "Various tools to detect/correct mistakes in words"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-sqlite" = callPackage @@ -139346,6 +142781,7 @@ self: { homepage = "http://dankna.com/software/"; description = "Full parser and generator for SQL as implemented by SQLite3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "language-thrift_0_6_2_0" = callPackage @@ -139551,6 +142987,7 @@ self: { jailbreak = true; description = "Tool to track security alerts on LWN"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "latest-npm-version" = callPackage @@ -139583,6 +143020,7 @@ self: { homepage = "https://github.com/passy/latest-npm-version"; description = "Find the latest version of a package on npm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "latex" = callPackage @@ -139651,6 +143089,7 @@ self: { homepage = "https://github.com/liamoc/latex-formulae#readme"; description = "Use actual LaTeX to render formulae inside Hakyll pages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "latex-formulae-image_0_1_1_0" = callPackage @@ -139688,6 +143127,7 @@ self: { homepage = "http://github.com/liamoc/latex-formulae#readme"; description = "A library for rendering LaTeX formulae as images using an actual LaTeX installation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "latex-formulae-pandoc_0_2_0_2" = callPackage @@ -139734,6 +143174,7 @@ self: { homepage = "http://github.com/liamoc/latex-formulae#readme"; description = "Render LaTeX formulae in pandoc documents to images with an actual LaTeX installation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lattices_1_2_1_1" = callPackage @@ -139807,6 +143248,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "High and low-level interface to the Novation Launchpad midi controller"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lax" = callPackage @@ -139832,6 +143274,7 @@ self: { homepage = "http://github.com/duairc/layers"; description = "Modular type class machinery for monad transformer stacks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "layers-game" = callPackage @@ -139851,6 +143294,7 @@ self: { jailbreak = true; description = "A prototypical 2d platform game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "layout" = callPackage @@ -139862,6 +143306,7 @@ self: { libraryHaskellDepends = [ base convertible hinduce-missingh ]; description = "Turn values into pretty text or markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "layout-bootstrap" = callPackage @@ -139874,6 +143319,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/layout-bootstrap"; description = "Template and widgets for Bootstrap2 to use with Text.Blaze.Html5"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lazy-csv_0_5" = callPackage @@ -139928,6 +143374,7 @@ self: { libraryHaskellDepends = [ array base ]; description = "Efficient implementation of lazy monolithic arrays (lazy in indexes)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lazyio" = callPackage @@ -139965,6 +143412,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Differential solving with lazy splines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lbfgs" = callPackage @@ -140015,6 +143463,7 @@ self: { homepage = "http://urchin.earth.li/~ian/cabal/lcs/"; description = "Find longest common sublist of two lists"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lda" = callPackage @@ -140031,6 +143480,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Online Latent Dirichlet Allocation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ldap-client" = callPackage @@ -140074,6 +143524,7 @@ self: { homepage = "http://rampa.sk/static/ldif.html"; description = "The LDAP Data Interchange Format (LDIF) tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "leaf" = callPackage @@ -140093,6 +143544,7 @@ self: { homepage = "https://github.com/skypers/leaf"; description = "A simple portfolio generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leaky" = callPackage @@ -140113,6 +143565,7 @@ self: { homepage = "http://fremissant.net/leaky"; description = "Robust space leak, and its strictification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leancheck" = callPackage @@ -140126,6 +143579,7 @@ self: { homepage = "https://github.com/rudymatela/leancheck#readme"; description = "Cholesterol-free property-based testing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "leankit-api" = callPackage @@ -140185,6 +143639,7 @@ self: { jailbreak = true; description = "Haskell code for learning physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learn-physics-examples" = callPackage @@ -140203,6 +143658,7 @@ self: { jailbreak = true; description = "examples for learn-physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "learning-hmm" = callPackage @@ -140219,6 +143675,7 @@ self: { homepage = "https://github.com/mnacamura/learning-hmm"; description = "Yet another library for hidden Markov models"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "leetify" = callPackage @@ -140849,6 +144306,7 @@ self: { jailbreak = true; description = "Computing lenses generically using generics-sop"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lens-text-encoding" = callPackage @@ -140912,6 +144370,7 @@ self: { homepage = "http://github.com/jvranish/Lenses/tree/master"; description = "Simple Functional Lenses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lensref" = callPackage @@ -140926,6 +144385,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "References which can be joined and on which lenses can be applied"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lentil_0_1_9_0" = callPackage @@ -141059,6 +144519,7 @@ self: { jailbreak = true; description = "Van Laarhoven lens templates"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "level-monad" = callPackage @@ -141155,6 +144616,7 @@ self: { homepage = "http://github.com/kim/leveldb-haskell"; description = "Haskell bindings to LevelDB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) leveldb;}; "levmar" = callPackage @@ -141168,6 +144630,7 @@ self: { homepage = "https://github.com/basvandijk/levmar"; description = "An implementation of the Levenberg-Marquardt algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "levmar-chart" = callPackage @@ -141186,6 +144649,7 @@ self: { jailbreak = true; description = "Plots the results of the Levenberg-Marquardt algorithm in a chart"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lexer-applicative" = callPackage @@ -141245,6 +144709,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LGtk"; description = "Lens GUI Toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lha" = callPackage @@ -141257,6 +144722,7 @@ self: { homepage = "https://github.com/bytbox/lha.hs"; description = "Data structures for the Les Houches Accord"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhae" = callPackage @@ -141278,6 +144744,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lhae"; description = "Simple spreadsheet program"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhc" = callPackage @@ -141315,6 +144782,7 @@ self: { libraryHaskellDepends = [ bytestring haskell2010 HaXml lha ]; description = "Parser and writer for Les-Houches event files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lhs2TeX-hl" = callPackage @@ -141417,6 +144885,7 @@ self: { homepage = "http://trac.loria.fr/~geni"; description = "A natural language generator (specifically, an FB-LTAG surface realiser)"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libarchive-conduit" = callPackage @@ -141455,6 +144924,7 @@ self: { homepage = "https://github.com/peddie/libconfig-haskell"; description = "Haskell bindings to libconfig"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libconfig;}; "libcspm" = callPackage @@ -141477,6 +144947,7 @@ self: { homepage = "https://github.com/tomgr/libcspm"; description = "A library providing a parser, type checker and evaluator for CSPM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libexpect" = callPackage @@ -141489,6 +144960,7 @@ self: { librarySystemDepends = [ expect tcl ]; description = "Library for interacting with console applications via pseudoterminals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) expect; inherit (pkgs) tcl;}; "libffi" = callPackage @@ -141543,6 +145015,7 @@ self: { homepage = "http://maartenfaddegon.nl"; description = "Store and manipulate data in a graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "libhbb" = callPackage @@ -141567,6 +145040,7 @@ self: { homepage = "https://bitbucket.org/bhris/libhbb"; description = "Backend for text editors to provide better Haskell editing support"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libinfluxdb_0_0_3" = callPackage @@ -141629,6 +145103,7 @@ self: { ]; description = "Jenkins API interface"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "liblastfm" = callPackage @@ -141685,6 +145160,7 @@ self: { homepage = "http://www.eecs.harvard.edu/~mainland/projects/libffi"; description = "FFI interface to libltdl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libmpd" = callPackage @@ -141708,6 +145184,7 @@ self: { homepage = "http://github.com/vimus/libmpd-haskell#readme"; description = "An MPD client library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libnotify" = callPackage @@ -141756,6 +145233,7 @@ self: { homepage = "http://okmij.org/ftp/"; description = "An evolving collection of Oleg Kiselyov's Haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libpafe" = callPackage @@ -141770,6 +145248,7 @@ self: { jailbreak = true; description = "Wrapper for libpafe"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {pafe = null;}; "libpq" = callPackage @@ -141783,6 +145262,7 @@ self: { homepage = "http://github.com/tnarg/haskell-libpq"; description = "libpq binding for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) postgresql;}; "librandomorg" = callPackage @@ -141796,6 +145276,7 @@ self: { homepage = "https://github.com/supki/haskell-random.org"; description = "Wrapper to Random.org API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "librato" = callPackage @@ -141835,15 +145316,15 @@ self: { }) {}; "libroman" = callPackage - ({ mkDerivation, base, hspec, QuickCheck, word8 }: + ({ mkDerivation, base, hspec, QuickCheck, split }: mkDerivation { pname = "libroman"; - version = "1.0.1"; - sha256 = "864dd1ebfe4709ff48c0d4678ca2ee5da62b864228b165e04dbcccc64fb24b84"; - libraryHaskellDepends = [ base ]; - testHaskellDepends = [ base hspec QuickCheck word8 ]; + version = "2.0.2"; + sha256 = "1f1ddd484f3b250ecfe3a653988a2bd50da4141cd45bac54e77db037f04b4643"; + libraryHaskellDepends = [ base split ]; + testHaskellDepends = [ base hspec QuickCheck ]; homepage = "https://ahakki.xyz"; - description = "arabic to roman numeral conversions"; + description = "Roman Numerals for YOU"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -141880,6 +145361,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/libssh2-hs"; description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libstackexchange" = callPackage @@ -141916,6 +145398,7 @@ self: { ]; description = "Haskell bindings for libsystemd-daemon"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {libsystemd-daemon = null; systemd-daemon = null;}; "libsystemd-journal" = callPackage @@ -141990,6 +145473,7 @@ self: { jailbreak = true; description = "Bindings to libxls"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "libxml" = callPackage @@ -142002,6 +145486,7 @@ self: { librarySystemDepends = [ libxml2 ]; description = "Binding to libxml2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libxml2;}; "libxml-enumerator" = callPackage @@ -142046,6 +145531,7 @@ self: { jailbreak = true; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {xslt = null;}; "life" = callPackage @@ -142311,6 +145797,7 @@ self: { homepage = "http://icfpcontest2012.wordpress.com/"; description = "A boulderdash-like game and solution validator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ligature" = callPackage @@ -142351,6 +145838,7 @@ self: { libraryToolDepends = [ alex happy ]; description = "Lighttpd configuration file tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lighttpd-conf-qq" = callPackage @@ -142367,6 +145855,7 @@ self: { ]; description = "A QuasiQuoter for lighttpd configuration files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lilypond" = callPackage @@ -142417,6 +145906,7 @@ self: { homepage = "https://github.com/amosr/limp-cbc"; description = "bindings for integer linear programming solver Coin/CBC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lin-alg" = callPackage @@ -142428,6 +145918,7 @@ self: { libraryHaskellDepends = [ base NumInstances vector ]; description = "Low-dimensional matrices and vectors for graphics and physics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linda" = callPackage @@ -142439,6 +145930,7 @@ self: { libraryHaskellDepends = [ base hmatrix HUnit ]; description = "LINear Discriminant Analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lindenmayer" = callPackage @@ -142575,9 +146067,9 @@ self: { }) {}; "linear_1_18_1_1" = callPackage - ({ mkDerivation, adjunctions, base, binary, bytes, bytestring - , cereal, containers, deepseq, directory, distributive, doctest - , filepath, ghc-prim, hashable, HUnit, lens, reflection + ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes + , bytestring, cereal, containers, deepseq, directory, distributive + , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection , semigroupoids, semigroups, simple-reflect, tagged , template-haskell, test-framework, test-framework-hunit , transformers, transformers-compat, unordered-containers, vector @@ -142587,13 +146079,13 @@ self: { pname = "linear"; version = "1.18.1.1"; sha256 = "37e16fad7e5e4d6ecedbd7d68f4aef49e37813913e0e2106c392123c98d9f7e1"; - revision = "2"; - editedCabalFile = "8c57bd840e0c9ab84b032d65a2a48ed6d20da4fb780f0d89d8c53adccc632ba4"; + revision = "3"; + editedCabalFile = "8bf706b0e7548070ee95966551896466203ee669c785a2f33bf8ea1f63688c24"; libraryHaskellDepends = [ - adjunctions base binary bytes cereal containers deepseq - distributive ghc-prim hashable lens reflection semigroupoids - semigroups tagged template-haskell transformers transformers-compat - unordered-containers vector void + adjunctions base base-orphans binary bytes cereal containers + deepseq distributive ghc-prim hashable lens reflection + semigroupoids semigroups tagged template-haskell transformers + transformers-compat unordered-containers vector void ]; testHaskellDepends = [ base binary bytestring directory doctest filepath HUnit lens @@ -142607,9 +146099,9 @@ self: { }) {}; "linear_1_18_3" = callPackage - ({ mkDerivation, adjunctions, base, binary, bytes, bytestring - , cereal, containers, deepseq, directory, distributive, doctest - , filepath, ghc-prim, hashable, HUnit, lens, reflection + ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes + , bytestring, cereal, containers, deepseq, directory, distributive + , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection , semigroupoids, semigroups, simple-reflect, tagged , template-haskell, test-framework, test-framework-hunit , transformers, transformers-compat, unordered-containers, vector @@ -142619,11 +146111,13 @@ self: { pname = "linear"; version = "1.18.3"; sha256 = "a7e6cd7b97c2dbf1d4c75ef4ddf5484b490b75e433f1d4b31f6051580e9c0611"; + revision = "1"; + editedCabalFile = "08cfc850348ed16bb60672e49a4cce92a7a7316c1561ca64e58ea8e38d40b3c0"; libraryHaskellDepends = [ - adjunctions base binary bytes cereal containers deepseq - distributive ghc-prim hashable lens reflection semigroupoids - semigroups tagged template-haskell transformers transformers-compat - unordered-containers vector void + adjunctions base base-orphans binary bytes cereal containers + deepseq distributive ghc-prim hashable lens reflection + semigroupoids semigroups tagged template-haskell transformers + transformers-compat unordered-containers vector void ]; testHaskellDepends = [ base binary bytestring directory doctest filepath HUnit lens @@ -142637,9 +146131,9 @@ self: { }) {}; "linear_1_19_1_3" = callPackage - ({ mkDerivation, adjunctions, base, binary, bytes, bytestring - , cereal, containers, deepseq, directory, distributive, doctest - , filepath, ghc-prim, hashable, HUnit, lens, reflection + ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes + , bytestring, cereal, containers, deepseq, directory, distributive + , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection , semigroupoids, semigroups, simple-reflect, tagged , template-haskell, test-framework, test-framework-hunit , transformers, transformers-compat, unordered-containers, vector @@ -142649,11 +146143,13 @@ self: { pname = "linear"; version = "1.19.1.3"; sha256 = "229580102e261cc2121d6f58adc807411a4345faf65b7b6740d4541b34acf9c2"; + revision = "1"; + editedCabalFile = "e98b1a7bd3a6b68f1e0e6b991c89f2ca6d5715517b211a84f7c83ceb2514b3f3"; libraryHaskellDepends = [ - adjunctions base binary bytes cereal containers deepseq - distributive ghc-prim hashable lens reflection semigroupoids - semigroups tagged template-haskell transformers transformers-compat - unordered-containers vector void + adjunctions base base-orphans binary bytes cereal containers + deepseq distributive ghc-prim hashable lens reflection + semigroupoids semigroups tagged template-haskell transformers + transformers-compat unordered-containers vector void ]; testHaskellDepends = [ base binary bytestring directory doctest filepath HUnit lens @@ -142668,9 +146164,9 @@ self: { }) {}; "linear_1_20_3" = callPackage - ({ mkDerivation, adjunctions, base, binary, bytes, bytestring - , cereal, containers, deepseq, directory, distributive, doctest - , filepath, ghc-prim, hashable, HUnit, lens, reflection + ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes + , bytestring, cereal, containers, deepseq, directory, distributive + , doctest, filepath, ghc-prim, hashable, HUnit, lens, reflection , semigroupoids, semigroups, simple-reflect, tagged , template-haskell, test-framework, test-framework-hunit , transformers, transformers-compat, unordered-containers, vector @@ -142680,13 +146176,13 @@ self: { pname = "linear"; version = "1.20.3"; sha256 = "50f63a5b6019acb53ae06886749dea80443b18876c2990ca5376578c94537ac4"; - revision = "1"; - editedCabalFile = "3c3139b3d84be69cc9ec8b122cbce075d498076a4e5b4e4f8bfbda34523b91de"; + revision = "2"; + editedCabalFile = "ad3a671d32908bcb65d394c16be1a03899563f32f21d84c46a0c2b92f90ed5d9"; libraryHaskellDepends = [ - adjunctions base binary bytes cereal containers deepseq - distributive ghc-prim hashable lens reflection semigroupoids - semigroups tagged template-haskell transformers transformers-compat - unordered-containers vector void + adjunctions base base-orphans binary bytes cereal containers + deepseq distributive ghc-prim hashable lens reflection + semigroupoids semigroups tagged template-haskell transformers + transformers-compat unordered-containers vector void ]; testHaskellDepends = [ base binary bytestring directory doctest filepath HUnit lens @@ -142791,6 +146287,7 @@ self: { homepage = "http://github.com/cartazio/hs-cblas"; description = "A linear algebra library with bindings to BLAS and LAPACK"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linear-circuit" = callPackage @@ -142812,6 +146309,7 @@ self: { homepage = "http://hub.darcs.net/thielema/linear-circuit"; description = "Compute resistance of linear electrical circuits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linear-grammar" = callPackage @@ -142838,6 +146336,7 @@ self: { jailbreak = true; description = "Finite maps for linear use"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linear-opengl" = callPackage @@ -142855,6 +146354,7 @@ self: { homepage = "http://www.github.com/bgamari/linear-opengl"; description = "Isomorphisms between linear and OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linear-vect" = callPackage @@ -142880,6 +146380,7 @@ self: { homepage = "http://github.com/LeventErkok/linearEqSolver"; description = "Use SMT solvers to solve linear systems over integers and rationals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linearscan" = callPackage @@ -142915,6 +146416,7 @@ self: { homepage = "http://github.com/jwiegley/linearscan-hoopl"; description = "Makes it easy to use the linearscan register allocator with Hoopl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linebreak" = callPackage @@ -142972,6 +146474,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/linkchk/"; description = "linkchk is a network interface link ping monitor"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "linkcore" = callPackage @@ -142987,6 +146490,7 @@ self: { ]; description = "Combines multiple GHC Core modules into a single module"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linkedhashmap" = callPackage @@ -143049,6 +146553,7 @@ self: { homepage = "http://github.com/Helkafen/haskell-linode#readme"; description = "Bindings to the Linode API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linux-blkid" = callPackage @@ -143066,6 +146571,7 @@ self: { jailbreak = true; description = "Linux libblkid"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {blkid = null;}; "linux-cgroup" = callPackage @@ -143104,6 +146610,7 @@ self: { homepage = "https://github.com/redneb/linux-file-extents"; description = "Retrieve file fragmentation information under Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "linux-inotify" = callPackage @@ -143128,6 +146635,7 @@ self: { homepage = "https://github.com/tensor5/linux-kmod"; description = "Linux kernel modules support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {libkmod = null;}; "linux-mount" = callPackage @@ -143175,6 +146683,7 @@ self: { homepage = "https://github.com/bjpop/haskell-linux-perf"; description = "Read files generated by perf on Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linux-ptrace" = callPackage @@ -143191,6 +146700,7 @@ self: { jailbreak = true; description = "Wrapping of Linux' ptrace(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "linux-xattr" = callPackage @@ -143225,6 +146735,7 @@ self: { homepage = "https://github.com/kosmoskatten/linx-gateway"; description = "Implementation of the Enea LINX gateway protocol"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lio" = callPackage @@ -143252,6 +146763,7 @@ self: { ]; description = "Labeled IO library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lio-fs" = callPackage @@ -143292,6 +146804,7 @@ self: { homepage = "http://simple.cx"; description = "LIO support for the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lipsum-gen" = callPackage @@ -143338,6 +146851,7 @@ self: { homepage = "https://github.com/ucsd-progsys/liquid-fixpoint"; description = "Predicate Abstraction-based Horn-Clause/Implication Constraint Solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ocaml; inherit (pkgs) z3;}; "liquidhaskell" = callPackage @@ -143377,6 +146891,7 @@ self: { homepage = "http://goto.ucsd.edu/liquidhaskell"; description = "Liquid Types for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) z3;}; "liquidhaskell-cabal" = callPackage @@ -143389,6 +146904,7 @@ self: { homepage = "https://github.com/spinda/liquidhaskell-cabal#readme"; description = "Liquid Haskell integration for Cabal and stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "liquidhaskell-cabal-demo" = callPackage @@ -143404,6 +146920,7 @@ self: { homepage = "https://github.com/spinda/liquidhaskell-cabal-demo#readme"; description = "Demo of Liquid Haskell integration for Cabal and stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lispparser" = callPackage @@ -143543,6 +147060,7 @@ self: { ]; description = "List all remote forwards for mail accounts stored in a SQL database"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "list-t_0_3_0" = callPackage @@ -143773,6 +147291,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-attoparsec"; description = "An \"attoparsec\" adapter for \"list-t\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "list-t-html-parser" = callPackage @@ -143798,6 +147317,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-html-parser"; description = "Streaming HTML parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "list-t-http-client" = callPackage @@ -143833,6 +147353,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-libcurl"; description = "A \"libcurl\"-based streaming HTTP client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "list-t-text" = callPackage @@ -143854,6 +147375,7 @@ self: { homepage = "https://github.com/nikita-volkov/list-t-text"; description = "A streaming text codec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "list-tries" = callPackage @@ -143895,6 +147417,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/listlike-instances"; description = "Extra instances of the ListLike class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lists" = callPackage @@ -143950,6 +147473,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Non-overloaded functions for concrete literals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "live-sequencer" = callPackage @@ -143978,6 +147502,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Live-Sequencer"; description = "Live coding of MIDI music"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ll-picosat" = callPackage @@ -143990,6 +147515,7 @@ self: { librarySystemDepends = [ picosat ]; jailbreak = true; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) picosat;}; "llrbtree" = callPackage @@ -144023,6 +147549,7 @@ self: { homepage = "http://wiki.secondlife.com/wiki/LLSD"; description = "An implementation of the LLSD data system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm" = callPackage @@ -144040,6 +147567,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-analysis" = callPackage @@ -144067,6 +147595,7 @@ self: { ]; description = "A Haskell library for analyzing LLVM bitcode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm-base" = callPackage @@ -144079,6 +147608,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm-base-types" = callPackage @@ -144098,6 +147628,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "The base types for a mostly pure Haskell LLVM analysis library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm-base-util" = callPackage @@ -144110,6 +147641,7 @@ self: { homepage = "https://github.com/bos/llvm"; description = "Utilities for bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm-data-interop" = callPackage @@ -144130,6 +147662,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "A low-level data interoperability binding for LLVM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "llvm-extra" = callPackage @@ -144150,6 +147683,7 @@ self: { homepage = "http://code.haskell.org/~thielema/llvm-extra/"; description = "Utility functions for the llvm interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ffi" = callPackage @@ -144165,6 +147699,7 @@ self: { homepage = "http://haskell.org/haskellwiki/LLVM"; description = "FFI bindings to the LLVM compiler toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (self.llvmPackages) llvm;}; "llvm-general" = callPackage @@ -144193,6 +147728,7 @@ self: { homepage = "http://github.com/bscarlet/llvm-general/"; description = "General purpose LLVM bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {llvm-config = null;}; "llvm-general-pure" = callPackage @@ -144214,6 +147750,7 @@ self: { homepage = "http://github.com/bscarlet/llvm-general/"; description = "Pure Haskell LLVM functionality (no FFI)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-general-quote" = callPackage @@ -144239,6 +147776,7 @@ self: { homepage = "https://github.com/tvh/llvm-general-quote"; description = "QuasiQuoting llvm code for llvm-general"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-ht" = callPackage @@ -144255,6 +147793,7 @@ self: { homepage = "http://darcs.serpentine.com/llvm/"; description = "Bindings to the LLVM compiler toolkit with some custom extensions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-pkg-config" = callPackage @@ -144329,6 +147868,7 @@ self: { jailbreak = true; description = "Bindings to the LLVM compiler toolkit using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "llvm-tools" = callPackage @@ -144356,6 +147896,7 @@ self: { jailbreak = true; description = "Useful tools built on llvm-analysis"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lmdb" = callPackage @@ -144369,6 +147910,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-lmdb"; description = "Lightning MDB bindings"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) lmdb;}; "lmonad" = callPackage @@ -144389,6 +147931,7 @@ self: { ]; description = "LMonad is an Information Flow Control (IFC) framework for Haskell applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lmonad-yesod" = callPackage @@ -144409,6 +147952,7 @@ self: { ]; description = "LMonad for Yesod integrates LMonad's IFC with Yesod web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "load-env" = callPackage @@ -144460,6 +148004,7 @@ self: { homepage = "http://www.comp.leeds.ac.uk/sc06r2s/Projects/HaskellLocalSearch"; description = "Generalised local search within Haskell, for applications in combinatorial optimisation"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "located" = callPackage @@ -144518,6 +148063,7 @@ self: { executableHaskellDepends = [ base ]; description = "Support for precise error locations in source files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "loch-th" = callPackage @@ -144576,6 +148122,7 @@ self: { ]; description = "Very simple poll lock"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lockfree-queue" = callPackage @@ -144618,6 +148165,7 @@ self: { homepage = "https://github.com/scrive/log"; description = "Structured logging solution with multiple backends"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "log-domain_0_9_3" = callPackage @@ -144822,6 +148370,7 @@ self: { homepage = "http://github.com/ekmett/log-domain/"; description = "Log-domain arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "log-effect" = callPackage @@ -144839,6 +148388,7 @@ self: { homepage = "https://github.com/ibotty/log-effect"; description = "An extensible log effect using extensible-effects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "log2json" = callPackage @@ -144854,6 +148404,7 @@ self: { homepage = "https://github.com/haroldl/log2json"; description = "Turn log file records into JSON"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "logfloat_0_12_1" = callPackage @@ -144935,6 +148486,7 @@ self: { homepage = "https://github.com/ocharles/logging-effect"; description = "A mtl-style monad transformer for general purpose & compositional logging"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "logging-facade_0_0_0" = callPackage @@ -145034,6 +148586,7 @@ self: { homepage = "https://github.com/seereason/logic-classes"; description = "Framework for propositional and first order logic, theorem proving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "logicst" = callPackage @@ -145119,6 +148672,7 @@ self: { jailbreak = true; description = "Useful utilities for the Lojban language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lojbanParser" = callPackage @@ -145133,6 +148687,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lojbanXiragan" = callPackage @@ -145147,6 +148702,7 @@ self: { executableHaskellDepends = [ base ]; description = "lojban to xiragan"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lojysamban" = callPackage @@ -145161,6 +148717,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/myblog/lojysamban.html"; description = "Prolog with lojban"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lol" = callPackage @@ -145192,6 +148749,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "A library for lattice cryptography"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lol-apps" = callPackage @@ -145216,6 +148774,7 @@ self: { homepage = "https://github.com/cpeikert/Lol"; description = "Lattice-based cryptographic applications using Lol"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "loli" = callPackage @@ -145234,6 +148793,7 @@ self: { homepage = "http://github.com/nfjinjing/loli"; description = "A minimum web dev DSL in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lookup-tables" = callPackage @@ -145290,6 +148850,7 @@ self: { homepage = "https://github.com/konn/loop-effin"; description = "control-monad-loop port for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "loop-while" = callPackage @@ -145337,6 +148898,7 @@ self: { homepage = "http://www.esc.cam.ac.uk/people/research-students/emily-king"; description = "Find all biological feedback loops within an ecosystem graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lord" = callPackage @@ -145377,6 +148939,7 @@ self: { homepage = "https://github.com/rnons/lord"; description = "A command line interface to online radios"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lorem" = callPackage @@ -145408,6 +148971,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/loris"; description = "interface to Loris API"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {loris = null;}; "loshadka" = callPackage @@ -145447,6 +149011,7 @@ self: { homepage = "http://www.ncc.up.pt/~pbv/stuff/lostcities"; description = "An implementation of an adictive two-player card game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lowgl" = callPackage @@ -145535,6 +149100,7 @@ self: { homepage = "https://github.com/roelvandijk/ls-usb"; description = "List USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lscabal" = callPackage @@ -145553,6 +149119,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/lscabal"; description = "List exported modules from a set of .cabal files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lss" = callPackage @@ -145591,6 +149158,7 @@ self: { ]; description = "Paint an L-System Grammar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltext" = callPackage @@ -145635,6 +149203,7 @@ self: { homepage = "http://www.leksah.org"; description = "Leksah tool kit"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ltl" = callPackage @@ -145697,6 +149266,7 @@ self: { jailbreak = true; description = "Library functions for reading and writing Lua chunks"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "luautils" = callPackage @@ -145928,6 +149498,7 @@ self: { homepage = "http://www.imn.htwk-leipzig.de/~abau/lucienne"; description = "Server side feed aggregator/reader"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luhn" = callPackage @@ -145954,6 +149525,7 @@ self: { ]; description = "Purely FunctionaL User Interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luis-client" = callPackage @@ -145983,6 +149555,7 @@ self: { homepage = "https://github.com/nfjinjing/luka"; description = "Simple ObjectiveC runtime binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {objc = null;}; "luminance_0_9_1" = callPackage @@ -146116,6 +149689,7 @@ self: { homepage = "https://github.com/bitc/lushtags"; description = "Create ctags compatible tags files for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "luthor" = callPackage @@ -146129,6 +149703,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/luthor"; description = "Tools for lexing and utilizing lexemes that integrate with Parsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lvish" = callPackage @@ -146157,6 +149732,7 @@ self: { jailbreak = true; description = "Parallel scheduler, LVar data structures, and infrastructure to build more"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lvmlib" = callPackage @@ -146178,6 +149754,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/Helium/WebHome"; description = "The Lazy Virtual Machine (LVM)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "lvmrun" = callPackage @@ -146203,6 +149780,7 @@ self: { homepage = "https://github.com/fizruk/lxc"; description = "High level Haskell bindings to LXC (Linux containers)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lye" = callPackage @@ -146220,6 +149798,7 @@ self: { ]; description = "A Lilypond-compiling music box"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "lz4" = callPackage @@ -146255,6 +149834,7 @@ self: { homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) lzma;}; "lzma-clib" = callPackage @@ -146410,6 +149990,7 @@ self: { homepage = "https://github.com/hvr/lzma-streams"; description = "IO-Streams interface for lzma/xz compression"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "maam" = callPackage @@ -146427,6 +150008,7 @@ self: { jailbreak = true; description = "Monadic Abstracting Abstract Machines (MAAM) built on Galois Transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mac" = callPackage @@ -146464,6 +150046,7 @@ self: { homepage = "http://www.macbeth-ficsclient.com"; description = "Macbeth - A beautiful and minimalistic FICS client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maccatcher" = callPackage @@ -146565,6 +150148,7 @@ self: { homepage = "http://github.com/ekmett/machines/"; description = "Networked stream transducers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "machines-binary" = callPackage @@ -146578,6 +150162,7 @@ self: { homepage = "http://github.com/aloiscochard/machines-binary"; description = "Binary utilities for the machines library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "machines-directory_0_2_0_0" = callPackage @@ -146649,6 +150234,7 @@ self: { homepage = "http://github.com/aloiscochard/machines-directory"; description = "Directory (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "machines-io_0_2_0_0" = callPackage @@ -146755,6 +150341,7 @@ self: { homepage = "http://github.com/aloiscochard/machines-io"; description = "IO utilities for the machines library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "machines-process_0_2_0_0" = callPackage @@ -146822,6 +150409,7 @@ self: { homepage = "http://github.com/aloiscochard/machines-process"; description = "Process (system) utilities for the machines library"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "machines-zlib" = callPackage @@ -146838,6 +150426,7 @@ self: { homepage = "https://github.com/lshift/machines-zlib"; description = "Decompression support for machines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "macho" = callPackage @@ -146893,6 +150482,7 @@ self: { homepage = "https://github.com/atzedijkstra/macosx-make-standalone"; description = "Make a macosx app standalone deployable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mage" = callPackage @@ -146908,6 +150498,7 @@ self: { homepage = "http://www.scannedinavian.com/~shae/mage-1.0pre35.tar.gz"; description = "Rogue-like"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "magic" = callPackage @@ -146937,6 +150528,7 @@ self: { homepage = "http://hub.darcs.net/thielema/magico"; description = "Compute solutions for Magico puzzle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "magma" = callPackage @@ -146970,6 +150562,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/mahoro"; description = "ImageBoards to XMPP gate"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maid" = callPackage @@ -146991,6 +150584,7 @@ self: { homepage = "https://github.com/nfjinjing/maid"; description = "A simple static web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mailbox-count" = callPackage @@ -147015,6 +150609,7 @@ self: { ]; description = "Count mailboxes in a SQL database"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mailchimp-subscribe" = callPackage @@ -147132,6 +150727,7 @@ self: { jailbreak = true; description = "Majordomo protocol for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "majority" = callPackage @@ -147144,6 +150740,7 @@ self: { homepage = "https://github.com/niswegmann/majority"; description = "Boyer-Moore Majority Vote Algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "make-hard-links" = callPackage @@ -147161,6 +150758,7 @@ self: { ]; description = "Change duplicated files into hard-links"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "make-package" = callPackage @@ -147181,6 +150779,7 @@ self: { homepage = "https://github.com/Philonous/make-package"; description = "Make a cabalized package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "makedo" = callPackage @@ -147194,6 +150793,7 @@ self: { homepage = "http://darcsden.com/kowey/makedo"; description = "Helper for writing redo scripts in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "managed_1_0_0" = callPackage @@ -147295,6 +150895,7 @@ self: { jailbreak = true; description = "The Haskell/Gtk+ Integrated Live Environment"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-all" = callPackage @@ -147320,6 +150921,7 @@ self: { doHaddock = false; description = "Virtual package to install all Manatee packages"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-anything" = callPackage @@ -147341,6 +150943,7 @@ self: { jailbreak = true; description = "Multithread interactive input/search framework for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-browser" = callPackage @@ -147360,6 +150963,7 @@ self: { jailbreak = true; description = "Browser extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-core" = callPackage @@ -147384,6 +150988,7 @@ self: { jailbreak = true; description = "The core of Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-curl" = callPackage @@ -147406,6 +151011,7 @@ self: { jailbreak = true; description = "Download Manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-editor" = callPackage @@ -147426,6 +151032,7 @@ self: { jailbreak = true; description = "Editor extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-filemanager" = callPackage @@ -147446,6 +151053,7 @@ self: { jailbreak = true; description = "File manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-imageviewer" = callPackage @@ -147466,6 +151074,7 @@ self: { jailbreak = true; description = "Image viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-ircclient" = callPackage @@ -147490,6 +151099,7 @@ self: { jailbreak = true; description = "IRC client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-mplayer" = callPackage @@ -147511,6 +151121,7 @@ self: { jailbreak = true; description = "Mplayer client extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-pdfviewer" = callPackage @@ -147531,6 +151142,7 @@ self: { jailbreak = true; description = "PDF viewer extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-processmanager" = callPackage @@ -147550,6 +151162,7 @@ self: { jailbreak = true; description = "Process manager extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-reader" = callPackage @@ -147570,6 +151183,7 @@ self: { jailbreak = true; description = "Feed reader extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-template" = callPackage @@ -147590,6 +151204,7 @@ self: { jailbreak = true; description = "Template code to create Manatee application"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manatee-terminal" = callPackage @@ -147609,6 +151224,7 @@ self: { jailbreak = true; description = "Terminal Emulator extension for Manatee"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manatee-welcome" = callPackage @@ -147629,6 +151245,7 @@ self: { jailbreak = true; description = "Welcome module to help user play Manatee quickly"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mancala" = callPackage @@ -147886,6 +151503,7 @@ self: { homepage = "http://gitorious.org/maximus/mandulia"; description = "A zooming visualisation of the Mandelbrot Set as many Julia Sets"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mangopay_1_11_4" = callPackage @@ -148010,6 +151628,7 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Bindings to the MangoPay API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "manifold-random" = callPackage @@ -148023,6 +151642,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Sampling random points on general manifolds"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "manifolds" = callPackage @@ -148042,6 +151662,7 @@ self: { homepage = "https://github.com/leftaroundabout/manifolds"; description = "Coordinate-free hypersurfaces"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "map-exts" = callPackage @@ -148098,6 +151719,7 @@ self: { homepage = "https://github.com/PolyglotSymposium/mappy"; description = "A functional programming language focused around maps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "marionetta" = callPackage @@ -148117,6 +151739,7 @@ self: { homepage = "https://github.com/paolino/marionetta"; description = "A study of marionetta movements"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "markdown_0_1_13" = callPackage @@ -148233,6 +151856,7 @@ self: { homepage = "https://github.com/joelteon/markdown-kate"; description = "Convert Markdown to HTML, with XSS protection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markdown-pap" = callPackage @@ -148244,6 +151868,7 @@ self: { libraryHaskellDepends = [ base monads-tf papillon ]; description = "markdown parser with papillon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "markdown-unlit_0_2_0_1" = callPackage @@ -148303,6 +151928,7 @@ self: { ]; description = "markdown to svg converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "marked-pretty" = callPackage @@ -148356,6 +151982,7 @@ self: { testHaskellDepends = [ assertions base bifunctors memoize random ]; description = "Hidden Markov processes"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "markup_1_1_0" = callPackage @@ -148414,6 +152041,7 @@ self: { jailbreak = true; description = "A simple markup document preview (markdown, textile, reStructuredText)"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "marmalade-upload" = callPackage @@ -148444,6 +152072,7 @@ self: { homepage = "https://github.com/lunaryorn/marmalade-upload"; description = "Upload packages to Marmalade"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marquise" = callPackage @@ -148478,6 +152107,7 @@ self: { testHaskellDepends = [ base bytestring hspec ]; description = "Client library for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "marxup" = callPackage @@ -148503,6 +152133,7 @@ self: { jailbreak = true; description = "Markup language preprocessor for Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "masakazu-bot" = callPackage @@ -148527,6 +152158,7 @@ self: { homepage = "https://github.com/minamiyama1994/chomado-bot-on-haskell/tree/minamiyama1994"; description = "@minamiyama1994_bot on haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mastermind" = callPackage @@ -148571,6 +152203,7 @@ self: { homepage = "http://www.github.com/massysett/matchers"; description = "Text matchers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) pcre;}; "math-functions_0_1_5_2" = callPackage @@ -148673,6 +152306,7 @@ self: { homepage = "http://jtdaugherty.github.io/mathblog/"; description = "A program for creating and managing a static weblog with LaTeX math and diagrams"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mathgenealogy" = callPackage @@ -148734,6 +152368,7 @@ self: { homepage = "http://community.haskell.org/~TracyWadleigh/mathlink"; description = "Write Mathematica packages in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "matlab" = callPackage @@ -148747,6 +152382,7 @@ self: { jailbreak = true; description = "Matlab bindings and interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {eng = null; mat = null; mx = null;}; "matrices_0_4_2" = callPackage @@ -148926,6 +152562,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/matsuri"; description = "ncurses XMPP client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "maude" = callPackage @@ -148942,6 +152579,7 @@ self: { homepage = "https://github.com/davidlazar/maude-hs"; description = "An interface to the Maude rewriting system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "maxent" = callPackage @@ -148965,6 +152603,7 @@ self: { homepage = "https://github.com/jfischoff/maxent"; description = "Compute Maximum Entropy Distributions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "maximal-cliques" = callPackage @@ -148998,6 +152637,7 @@ self: { homepage = "http://rochel.info/maxsharing/"; description = "Maximal sharing of terms in the lambda calculus with letrec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "maybe-justify" = callPackage @@ -149030,6 +152670,7 @@ self: { homepage = "http://code.google.com/p/maybench/"; description = "Automated benchmarking tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mbox_0_3" = callPackage @@ -149087,6 +152728,7 @@ self: { homepage = "https://github.com/np/mbox-tools"; description = "A collection of tools to process mbox files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mcmaster-gloss-examples" = callPackage @@ -149117,6 +152759,7 @@ self: { jailbreak = true; description = "Combinators for MCMC sampling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mcmc-synthesis" = callPackage @@ -149200,6 +152843,7 @@ self: { homepage = "https://github.com/dorafmon/mdcat"; description = "Markdown viewer in your terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mdo" = callPackage @@ -149246,6 +152890,7 @@ self: { homepage = "http://github.com/tanakh/hsmecab"; description = "A Haskell binding to MeCab"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {mecab = null;}; "mecha" = callPackage @@ -149278,6 +152923,7 @@ self: { ]; description = "Interfacing with the MediaWiki API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mediawiki2latex" = callPackage @@ -149303,6 +152949,7 @@ self: { homepage = "http://sourceforge.net/projects/wb2pdf/"; description = "Convert MediaWiki text to LaTeX"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "medium-sdk-haskell" = callPackage @@ -149320,6 +152967,7 @@ self: { jailbreak = true; description = "Haskell SDK for communicating with the Medium API"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "meep" = callPackage @@ -149361,6 +153009,7 @@ self: { homepage = "https://github.com/snoyberg/mega-sdist"; description = "Handles uploading to Hackage from mega repos (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "megaparsec_4_2_0" = callPackage @@ -149481,6 +153130,7 @@ self: { jailbreak = true; description = "A functional scripting language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "memcache" = callPackage @@ -149629,6 +153279,7 @@ self: { homepage = "https://gitorious.org/memo-sqlite"; description = "memoize functions using SQLite3 database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memoization-utils" = callPackage @@ -149661,6 +153312,7 @@ self: { jailbreak = true; description = "A memoization library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "memory_0_6" = callPackage @@ -149941,6 +153593,7 @@ self: { homepage = "https://github.com/bairyn/meta-misc"; description = "Utility library providing miscellaneous meta-programming utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "meta-par" = callPackage @@ -149976,6 +153629,7 @@ self: { homepage = "https://github.com/simonmar/monad-par"; description = "Support for integrated Accelerate computations within Meta-par"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metadata" = callPackage @@ -149989,6 +153643,7 @@ self: { homepage = "https://github.com/cutsea110/metadata"; description = "metadata library for semantic web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "metamorphic" = callPackage @@ -150012,6 +153667,7 @@ self: { libraryHaskellDepends = [ base Cabal filepath ghc haskell98 ]; description = "a tiny ghc api wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "metric" = callPackage @@ -150030,6 +153686,7 @@ self: { ]; description = "Metric spaces"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "metrics" = callPackage @@ -150077,6 +153734,7 @@ self: { ]; description = "Time Synchronized execution"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mezzolens" = callPackage @@ -150119,6 +153777,7 @@ self: { homepage = "http://github.com/RafaelBocquet/haskell-mgeneric/"; description = "Generics with multiple parameters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mi" = callPackage @@ -150136,6 +153795,7 @@ self: { homepage = "https://github.com/matt76k/mi"; description = "Multiple Instance for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "microbench" = callPackage @@ -150277,6 +153937,7 @@ self: { homepage = "https://github.com/myfreeweb/microformats2-types"; description = "Microformats 2 types (with Aeson instances)"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "microlens_0_2_0_0" = callPackage @@ -150401,6 +154062,7 @@ self: { homepage = "http://github.com/fosskers/microlens-aeson/"; description = "Law-abiding lenses for Aeson, using microlens"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "microlens-contra_0_1_0_0" = callPackage @@ -150947,6 +154609,7 @@ self: { homepage = "http://hub.darcs.net/thielema/midi-music-box"; description = "Convert MIDI file to music box punch tape"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "midi-util" = callPackage @@ -151000,6 +154663,7 @@ self: { jailbreak = true; description = "A control midi surface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mighttpd" = callPackage @@ -151020,6 +154684,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/mighttpd/"; description = "Simple Web Server in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mighttpd2" = callPackage @@ -151121,6 +154786,7 @@ self: { jailbreak = true; description = "A Kafka client for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mime" = callPackage @@ -151380,6 +155046,7 @@ self: { ]; description = "MIME implementation for String's"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mime-types_0_1_0_4" = callPackage @@ -151464,6 +155131,7 @@ self: { jailbreak = true; description = "Minesweeper game which is always solvable without guessing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "miniball" = callPackage @@ -151498,6 +155166,7 @@ self: { jailbreak = true; description = "Miniature FORTH-like interpreter"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "minilens" = callPackage @@ -151506,8 +155175,8 @@ self: { }: mkDerivation { pname = "minilens"; - version = "1.0.0.1"; - sha256 = "581cd335de2ff83e384c7e250db208b884ac7c44163afacc731f855e2e8d06ce"; + version = "1.0.0.2"; + sha256 = "a7614e251a81e5e77d4e3a6c649b3229beed30a5a3b8b6681f3d2d6dbe0770ef"; libraryHaskellDepends = [ array base bytestring containers mtl semigroups text transformers ]; @@ -151558,6 +155227,7 @@ self: { executableHaskellDepends = [ base GLUT haskell98 unix ]; description = "Shows how to run grabber on Mac OS X"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "minions" = callPackage @@ -151592,6 +155262,7 @@ self: { homepage = "https://github.com/fumieval/minioperational"; description = "fast and simple operational monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "miniplex" = callPackage @@ -151609,6 +155280,7 @@ self: { jailbreak = true; description = "simple 1-to-N interprocess communication"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "minirotate" = callPackage @@ -151630,6 +155302,7 @@ self: { homepage = "http://tener.github.com/haskell-minirotate/"; description = "Minimalistic file rotation utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "minisat" = callPackage @@ -151641,6 +155314,7 @@ self: { libraryHaskellDepends = [ async base ]; description = "A Haskell bundle of the Minisat SAT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "ministg" = callPackage @@ -151660,6 +155334,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Ministg"; description = "an interpreter for an operational semantics for the STG machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "miniutter" = callPackage @@ -151714,6 +155389,7 @@ self: { homepage = "https://github.com/minamiyama1994/mirror-tweet"; description = "Tweet mirror"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "misfortune" = callPackage @@ -151735,6 +155411,7 @@ self: { homepage = "https://github.com/mokus0/misfortune"; description = "fortune-mod clone"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "missing-foreign" = callPackage @@ -151761,6 +155438,7 @@ self: { homepage = "https://github.com/domdere/missing-py2"; description = "Haskell interface to Python"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mix-arrows" = callPackage @@ -151772,6 +155450,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Mixing effects of one arrow into another one"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mixed-strategies" = callPackage @@ -151803,6 +155482,7 @@ self: { executableHaskellDepends = [ base directory filepath haskell98 ]; description = "Makes an OS X .app bundle from a binary."; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mkcabal" = callPackage @@ -151836,6 +155516,7 @@ self: { executableHaskellDepends = [ base mtl parsec pretty ]; description = "Minimal ML language to to demonstrate the W type infererence algorithm"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mlist" = callPackage @@ -151848,6 +155529,7 @@ self: { homepage = "http://haskell.org/haskellwiki/mlist"; description = "Monadic List alternative to lazy I/O"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mmap" = callPackage @@ -151910,6 +155592,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Modular Monad transformer library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mmtl-base" = callPackage @@ -151921,6 +155604,7 @@ self: { libraryHaskellDepends = [ base mmtl ]; description = "MonadBase type-class for mmtl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mnist-idx" = callPackage @@ -151954,6 +155638,7 @@ self: { homepage = "https://github.com/vjeranc/moan"; description = "Language-agnostic analyzer for positional morphosyntactic tags"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mockery_0_3_0" = callPackage @@ -152046,6 +155731,7 @@ self: { jailbreak = true; description = "A parser for the modelica language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "modify-fasta_0_8_0_4" = callPackage @@ -152115,6 +155801,7 @@ self: { ]; description = "Haskell source splitter driven by special comments"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "modular-arithmetic" = callPackage @@ -152129,6 +155816,7 @@ self: { homepage = "https://github.com/TikhonJelvis/modular-arithmetic"; description = "A type for integers modulo some constant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "modular-prelude" = callPackage @@ -152148,6 +155836,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "A new Prelude featuring first class modules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "modular-prelude-classy" = callPackage @@ -152161,6 +155850,7 @@ self: { homepage = "https://github.com/DanBurton/modular-prelude#readme"; description = "Reifying ClassyPrelude a la ModularPrelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "module-management" = callPackage @@ -152192,6 +155882,7 @@ self: { homepage = "https://github.com/seereason/module-management"; description = "Clean up module imports, split and merge modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "modulespection" = callPackage @@ -152210,6 +155901,7 @@ self: { homepage = "https://github.com/jfischoff/modulespection"; description = "Template Haskell for introspecting a module's declarations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "modulo" = callPackage @@ -152345,6 +156037,7 @@ self: { jailbreak = true; description = "A glorified string replacement tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-abort-fd" = callPackage @@ -152362,6 +156055,7 @@ self: { homepage = "https://github.com/mvv/monad-abort-fd"; description = "A better error monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-atom" = callPackage @@ -152374,6 +156068,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/lingo"; description = "Monadically convert object to unique integers and back"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-atom-simple" = callPackage @@ -152385,6 +156080,7 @@ self: { libraryHaskellDepends = [ base containers ghc-prim mtl ]; description = "Monadically map objects to unique ints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-bool" = callPackage @@ -152431,6 +156127,7 @@ self: { homepage = "https://github.com/kawu/monad-codec"; description = "Monadic conversion between complex data structures and unique integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-connect" = callPackage @@ -152649,6 +156346,7 @@ self: { jailbreak = true; description = "Exstensible monadic exceptions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-extras_0_5_9" = callPackage @@ -152756,6 +156454,7 @@ self: { homepage = "http://github.com/patperry/monad-interleave"; description = "Monads with an unsaveInterleaveIO-like operation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-journal_0_5_0_1" = callPackage @@ -152861,6 +156560,7 @@ self: { homepage = "https://github.com/ivan-m/monad-levels"; description = "Specific levels of monad transformers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-log" = callPackage @@ -153198,6 +156898,7 @@ self: { homepage = "https://github.com/bjin/monad-lrs"; description = "a monad to calculate linear recursive sequence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monad-memo" = callPackage @@ -153219,6 +156920,7 @@ self: { homepage = "https://github.com/EduardSergeev/monad-memo"; description = "Memoization monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-mersenne-random" = callPackage @@ -153231,6 +156933,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/monad-mersenne-random"; description = "An efficient random generator monad, based on the Mersenne Twister"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-open" = callPackage @@ -153243,6 +156946,7 @@ self: { jailbreak = true; description = "Open recursion for when you need it"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-ox" = callPackage @@ -153496,6 +157200,7 @@ self: { jailbreak = true; description = "Fast monads and monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-resumption" = callPackage @@ -153576,6 +157281,7 @@ self: { homepage = "http://github.com/joeyadams/hs-monad-statevar"; description = "Concise, overloaded accessors for IORef, STRef, TVar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-ste" = callPackage @@ -153606,6 +157312,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-io"; description = "ST-like monad capturing variables to regions and supporting IO"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-stlike-stm" = callPackage @@ -153618,6 +157325,7 @@ self: { homepage = "http://github.com/taruti/monad-stlike-stm"; description = "ST-like monad capturing variables to regions and supporting STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-stm" = callPackage @@ -153690,6 +157398,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A transactional state monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-unify" = callPackage @@ -153704,6 +157413,7 @@ self: { jailbreak = true; description = "Generic first-order unification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monad-unlift_0_1_1_0" = callPackage @@ -153834,6 +157544,7 @@ self: { libraryHaskellDepends = [ base ]; description = "The Acme and AcmeT monads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monadbi" = callPackage @@ -153949,6 +157660,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monadiccp-gecode" = callPackage @@ -153966,6 +157678,7 @@ self: { homepage = "http://users.ugent.be/~tschrijv/MCP/"; description = "Constraint Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {gecodeint = null; gecodekernel = null; gecodesearch = null; gecodeset = null; gecodesupport = null;}; @@ -154089,6 +157802,7 @@ self: { homepage = "https://github.com/notogawa/monarch"; description = "Monadic interface for TokyoTyrant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mondo" = callPackage @@ -154113,6 +157827,7 @@ self: { jailbreak = true; description = "Haskell bindings for the Mondo API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mongoDB_2_0_3" = callPackage @@ -154314,6 +158029,7 @@ self: { homepage = "https://github.com/docmunch/haskell-mongodb-queue"; description = "message queue using MongoDB"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mongrel2-handler" = callPackage @@ -154332,6 +158048,7 @@ self: { jailbreak = true; description = "Mongrel2 Handler Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monitor" = callPackage @@ -154358,6 +158075,7 @@ self: { homepage = "http://github.com/JohnLato/mono-foldable"; description = "Folds for monomorphic containers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mono-traversable_0_6_3" = callPackage @@ -154690,6 +158408,7 @@ self: { homepage = "http://github.com/nfjinjing/monoid-owns"; description = "a practical monoid implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "monoid-record" = callPackage @@ -154941,6 +158660,7 @@ self: { jailbreak = true; description = "Extra classes/functions about monoids"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monoids" = callPackage @@ -154958,6 +158678,7 @@ self: { homepage = "http://github.com/ekmett/monoids"; description = "Deprecated: Use 'reducers'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "monomorphic" = callPackage @@ -155039,6 +158760,7 @@ self: { homepage = "http://github.com/patperry/hs-monte-carlo"; description = "A monad and transformer for Monte Carlo calculations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "moo" = callPackage @@ -155061,6 +158783,7 @@ self: { homepage = "http://www.github.com/astanin/moo/"; description = "Genetic algorithm library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "moonshine" = callPackage @@ -155078,6 +158801,7 @@ self: { homepage = "https://github.com/SumAll/moonshine"; description = "A web service framework for Haskell, similar in purpose to dropwizard"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "morfette" = callPackage @@ -155099,6 +158823,7 @@ self: { homepage = "http://sites.google.com/site/morfetteweb/"; description = "A tool for supervised learning of morphology"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "morfeusz" = callPackage @@ -155116,6 +158841,7 @@ self: { homepage = "https://github.com/kawu/morfeusz"; description = "Bindings to the morphological analyser Morfeusz"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {morfeusz = null;}; "morte_1_4_2" = callPackage @@ -155190,6 +158916,7 @@ self: { homepage = "http://ldc.usb.ve/~05-38235/cursos/CI3661/2015AJ/"; description = "Generación interactiva de mosaicos"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mount" = callPackage @@ -155201,6 +158928,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Mounts and umounts filesystems"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mountpoints" = callPackage @@ -155237,6 +158965,7 @@ self: { homepage = "https://bitbucket.org/borekpiotr/linux-music-player"; description = "Music player for linux"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mp3decoder" = callPackage @@ -155253,6 +158982,7 @@ self: { homepage = "http://www.bjrn.se/mp3dec"; description = "MP3 decoder for teaching"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpdmate" = callPackage @@ -155269,6 +158999,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "MPD/PowerMate executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mpppc" = callPackage @@ -155283,6 +159014,7 @@ self: { jailbreak = true; description = "Multi-dimensional parametric pretty-printer with color"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mpretty" = callPackage @@ -155300,6 +159032,7 @@ self: { jailbreak = true; description = "a monadic, extensible pretty printing library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpris" = callPackage @@ -155330,6 +159063,7 @@ self: { ]; description = "Simple equational reasoning for a Haskell-ish language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mps" = callPackage @@ -155349,6 +159083,7 @@ self: { homepage = "http://github.com/nfjinjing/mps/"; description = "simply oo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mpvguihs" = callPackage @@ -155368,6 +159103,7 @@ self: { homepage = "https://github.com/sebadoom/mpvguihs"; description = "A minimalist mpv GUI written in I/O heavy Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mqtt-hs" = callPackage @@ -155400,6 +159136,7 @@ self: { homepage = "https://github.com/scmu/mrm"; description = "Modular Refiable Matching, first-class matches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ms" = callPackage @@ -155447,6 +159184,7 @@ self: { homepage = "http://msgpack.org/"; description = "A Haskell implementation of MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-aeson" = callPackage @@ -155466,6 +159204,7 @@ self: { homepage = "http://msgpack.org/"; description = "Aeson adapter for MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-idl" = callPackage @@ -155489,6 +159228,7 @@ self: { homepage = "http://msgpack.org/"; description = "An IDL Compiler for MessagePack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msgpack-rpc" = callPackage @@ -155508,6 +159248,7 @@ self: { homepage = "http://msgpack.org/"; description = "A MessagePack-RPC Implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "msh" = callPackage @@ -155525,6 +159266,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~mbg28/"; description = "Object-Oriented Programming in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "msi-kb-backlit" = callPackage @@ -155595,6 +159337,7 @@ self: { jailbreak = true; description = "Library to communicate with Mt.Gox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mtl_2_1_3_1" = callPackage @@ -155682,6 +159425,7 @@ self: { jailbreak = true; description = "Instances for the mtl classes for all monad transformers"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mtl-prelude_1_0_1" = callPackage @@ -155767,6 +159511,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Monad transformer library using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mtl-unleashed" = callPackage @@ -155823,6 +159568,7 @@ self: { libraryHaskellDepends = [ base mtl QuickCheck ]; description = "Monad transformer library with type indexes, providing 'free' copies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mtp" = callPackage @@ -155836,6 +159582,7 @@ self: { jailbreak = true; description = "Bindings to libmtp"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {mtp = null;}; "mtree" = callPackage @@ -155879,6 +159626,7 @@ self: { jailbreak = true; description = "Continuous deployment server for use with GitHub"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "muesli" = callPackage @@ -155920,6 +159668,7 @@ self: { homepage = "https://github.com/gwern/mueval"; description = "Safely evaluate pure Haskell expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mulang" = callPackage @@ -155933,6 +159682,7 @@ self: { jailbreak = true; description = "The Mu Language, a non-computable extended Lambda Calculus"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multext-east-msd" = callPackage @@ -155969,6 +159719,7 @@ self: { homepage = "https://github.com/aka-bash0r/multi-cabal"; description = "A tool supporting multi cabal project builds"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiaddr" = callPackage @@ -156055,6 +159806,7 @@ self: { ]; description = "Bidirectional Two-level Transformation of XML Schemas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multihash" = callPackage @@ -156139,6 +159891,7 @@ self: { homepage = "http://github.com/ekmett/multipass/"; description = "Folding data with multiple named passes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multiplate" = callPackage @@ -156164,6 +159917,7 @@ self: { jailbreak = true; description = "Shorter, more generic functions for Multiplate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multiplicity" = callPackage @@ -156192,6 +159946,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/Multirec"; description = "Generic programming for families of recursive datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multirec-alt-deriver" = callPackage @@ -156208,6 +159963,7 @@ self: { jailbreak = true; description = "Alternative multirec instances deriver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multirec-binary" = callPackage @@ -156220,6 +159976,7 @@ self: { jailbreak = true; description = "Generic Data.Binary instances using MultiRec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "multiset_0_3_0" = callPackage @@ -156234,7 +159991,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "multiset" = callPackage + "multiset_0_3_2" = callPackage ({ mkDerivation, base, containers, doctest, Glob }: mkDerivation { pname = "multiset"; @@ -156242,12 +159999,12 @@ self: { sha256 = "e576efc992d808585a40baeb22dd83e0b42001d79ed13e2085b6eb6d6008a6bb"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base doctest Glob ]; - doCheck = false; description = "The Data.MultiSet container type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "multiset_0_3_3" = callPackage + "multiset" = callPackage ({ mkDerivation, base, containers, doctest, Glob }: mkDerivation { pname = "multiset"; @@ -156255,9 +160012,9 @@ self: { sha256 = "c74e77d3dbbe81fe3b48629fc257fa084df89bfb575c82c42f5549af376de135"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base doctest Glob ]; + doCheck = false; description = "The Data.MultiSet container type"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multiset-comb" = callPackage @@ -156281,6 +160038,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/10/multi-set-rewrite-rules-with-guards-and.html"; description = "Multi-set rewrite rules with guards and a parallel execution scheme"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "multistate" = callPackage @@ -156321,6 +160079,7 @@ self: { homepage = "http://github.com/kaashif-hymabaccus/muon"; description = "Static blog generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murder" = callPackage @@ -156339,6 +160098,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "MUtually Recursive Definitions Explicitly Represented"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur" = callPackage @@ -156365,6 +160125,7 @@ self: { homepage = "http://github.com/tokiwoousaka/murmur#readme"; description = "Simple CUI Twitter Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "murmur-hash_0_1_0_8" = callPackage @@ -156423,6 +160184,7 @@ self: { homepage = "https://github.com/niswegmann/murmurhash3"; description = "32-bit non-cryptographic hashing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-articulation" = callPackage @@ -156487,6 +160249,7 @@ self: { jailbreak = true; description = "Diagrams-based visualization of musical data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-parts" = callPackage @@ -156506,6 +160269,7 @@ self: { ]; description = "Musical instruments, parts and playing techniques"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-pitch" = callPackage @@ -156562,6 +160326,7 @@ self: { jailbreak = true; description = "Some useful preludes for the Music Suite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-score" = callPackage @@ -156586,6 +160351,7 @@ self: { jailbreak = true; description = "Musical score and part representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-sibelius" = callPackage @@ -156605,6 +160371,7 @@ self: { ]; description = "Interaction with Sibelius"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-suite" = callPackage @@ -156624,6 +160391,7 @@ self: { doHaddock = false; description = "A set of libraries for composition, analysis and manipulation of music"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "music-util" = callPackage @@ -156675,6 +160443,7 @@ self: { homepage = "http://github.com/metabrainz/mass-mail"; description = "Send an email to all MusicBrainz editors"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "musicxml" = callPackage @@ -156692,6 +160461,7 @@ self: { homepage = "https://troglodita.di.uminho.pt/svn/musica/work/MusicXML"; description = "MusicXML format encoded as Haskell type and functions of reading and writting"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "musicxml2" = callPackage @@ -156785,6 +160555,7 @@ self: { homepage = "http://github.com/singpolyma/mustache2hs"; description = "Utility to generate Haskell code from Mustache templates"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mutable-containers_0_2_1_2" = callPackage @@ -156889,6 +160660,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/mutable-iter"; description = "iteratees based upon mutable buffers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mute-unmute" = callPackage @@ -156909,6 +160681,7 @@ self: { homepage = "http://github.com/Tener/mute-unmute"; description = "Watches your screensaver and (un)mutes music when you (un)lock the screen"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mvc" = callPackage @@ -156937,6 +160710,7 @@ self: { jailbreak = true; description = "Concurrent and combinable updates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mvclient" = callPackage @@ -156956,6 +160730,7 @@ self: { jailbreak = true; description = "Client library for metaverse systems like Second Life"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mwc-probability_1_0_2" = callPackage @@ -157124,6 +160899,7 @@ self: { homepage = "http://haskell.cs.yale.edu/"; description = "None"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mybitcoin-sci" = callPackage @@ -157161,6 +160937,7 @@ self: { homepage = "http://github.com/adinapoli/myo"; description = "Haskell binding to the Myo armband"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "mysnapsession" = callPackage @@ -157178,6 +160955,7 @@ self: { jailbreak = true; description = "Sessions and continuations for Snap web apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysnapsession-example" = callPackage @@ -157197,6 +160975,7 @@ self: { jailbreak = true; description = "Example projects using mysnapsession"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql_0_1_1_7" = callPackage @@ -157224,6 +161003,7 @@ self: { homepage = "https://github.com/bos/mysql"; description = "A low-level MySQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) mysql;}; "mysql-effect" = callPackage @@ -157243,6 +161023,7 @@ self: { homepage = "https://github.com/ibotty/mysql-effect"; description = "An extensible mysql effect using extensible-effects and mysql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple_0_2_2_4" = callPackage @@ -157280,6 +161061,7 @@ self: { homepage = "https://github.com/bos/mysql-simple"; description = "A mid-level MySQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-quasi" = callPackage @@ -157295,6 +161077,7 @@ self: { ]; description = "Quasi-quoter for use with mysql-simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mysql-simple-typed" = callPackage @@ -157311,6 +161094,7 @@ self: { homepage = "https://github.com/tolysz/mysql-simple-typed"; description = "Typed extension to mysql simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "mzv" = callPackage @@ -157324,6 +161108,7 @@ self: { homepage = "http://github.com/ifigueroap/mzv"; description = "Implementation of the \"Monads, Zippers and Views\" (Schrijvers and Oliveira, ICFP'11)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "n-m" = callPackage @@ -157338,6 +161123,7 @@ self: { executableHaskellDepends = [ base HSH mtl process ]; description = "Utility to call iwconfig"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nagios-check" = callPackage @@ -157396,6 +161182,7 @@ self: { homepage = "https://github.com/fractalcat/nagios-plugin-ekg"; description = "Monitor ekg metrics via Nagios"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "named-formlet" = callPackage @@ -157424,6 +161211,7 @@ self: { homepage = "http://github.com/nominolo/named-lock"; description = "A named lock that is created on demand"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "named-records" = callPackage @@ -157490,6 +161278,7 @@ self: { homepage = "http://github.com/chowells79/nano-cryptr"; description = "A threadsafe binding to glibc's crypt_r function"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nano-erl" = callPackage @@ -157514,6 +161303,7 @@ self: { homepage = "http://www.jasani.org/search/label/nano-hmac"; description = "Bindings to OpenSSL HMAC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl;}; "nano-md5" = callPackage @@ -157527,6 +161317,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl;}; "nanoAgda" = callPackage @@ -157545,6 +161336,7 @@ self: { jailbreak = true; description = "A toy dependently-typed language"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nanocurses" = callPackage @@ -157558,6 +161350,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~dons/hmp3.html"; description = "Simple Curses binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "nanomsg" = callPackage @@ -157656,6 +161449,7 @@ self: { homepage = "https://github.com/cocreature/nanovg-hs"; description = "Haskell bindings for nanovg"; license = stdenv.lib.licenses.isc; + hydraPlatforms = stdenv.lib.platforms.none; }) {GLEW = null; inherit (pkgs) freeglut; inherit (pkgs) mesa;}; "nanq" = callPackage @@ -157676,6 +161470,7 @@ self: { homepage = "https://github.com/fosskers/nanq"; description = "Performs 漢字検定 (Japan Kanji Aptitude Test) level analysis on given Kanji"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "narc" = callPackage @@ -157688,6 +161483,7 @@ self: { homepage = "http://ezrakilty.net/projects/narc"; description = "Query SQL databases using Nested Relational Calculus embedded in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nat" = callPackage @@ -157855,6 +161651,7 @@ self: { jailbreak = true; description = "Haskell API for NATS messaging system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "natural-number" = callPackage @@ -157872,6 +161669,7 @@ self: { jailbreak = true; description = "Natural numbers tagged with a type-level representation of the number"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "natural-numbers" = callPackage @@ -157992,6 +161790,7 @@ self: { homepage = "https://github.com/nilcons/nc-indicators"; description = "CPU load and memory usage indicators for i3bar"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ncurses" = callPackage @@ -158052,6 +161851,7 @@ self: { homepage = "https://github.com/ajg/neat"; description = "A Fast Retargetable Template Engine"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "neat-interpolation_0_2_2" = callPackage @@ -158200,6 +162000,7 @@ self: { homepage = "http://scrambledeggsontoast.github.io/2014/09/28/needle-announce/"; description = "ASCII-fied arrow notation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "neet" = callPackage @@ -158236,6 +162037,7 @@ self: { ]; description = "Port of the NeHe OpenGL tutorials to Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "neil" = callPackage @@ -158301,6 +162103,7 @@ self: { homepage = "http://github.com/nfjinjing/nemesis-titan"; description = "A collection of Nemesis tasks to bootstrap a Haskell project with a focus on continuous integration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nerf" = callPackage @@ -158325,6 +162128,7 @@ self: { homepage = "https://github.com/kawu/nerf"; description = "Nerf, the named entity recognition tool based on linear-chain CRFs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nero" = callPackage @@ -158345,6 +162149,7 @@ self: { homepage = "https://github.com/plutonbrb/nero"; description = "Lens-based HTTP toolkit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nero-wai" = callPackage @@ -158362,6 +162167,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-wai"; description = "WAI adapter for Nero server applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nero-warp" = callPackage @@ -158375,6 +162181,7 @@ self: { homepage = "https://github.com/plutonbrb/nero-warp"; description = "Run Nero server applications with Warp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nested-routes_7_0_0" = callPackage @@ -158452,6 +162259,7 @@ self: { ]; description = "Declarative, compositional Wai responses"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nested-sets" = callPackage @@ -158539,6 +162347,7 @@ self: { homepage = "http://frenetic-lang.org"; description = "The NetCore compiler and runtime system for OpenFlow networks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netlines" = callPackage @@ -158557,6 +162366,7 @@ self: { executableHaskellDepends = [ base HTF random ]; description = "Enumerator tools for text-based network protocols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "netlink" = callPackage @@ -158655,6 +162465,7 @@ self: { homepage = "http://github.com/DanBurton/netspec"; description = "Simplify static Networking tasks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "netstring-enumerator" = callPackage @@ -158765,6 +162576,7 @@ self: { jailbreak = true; description = "FRP for controlling networks of OpenFlow switches"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-netkit" = callPackage @@ -158780,6 +162592,7 @@ self: { ]; description = "DSL for describing OpenFlow networks, and a compiler generating NetKit labs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nettle-openflow" = callPackage @@ -158796,6 +162609,7 @@ self: { ]; description = "OpenFlow protocol messages, binary formats, and servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "netwire" = callPackage @@ -158963,6 +162777,7 @@ self: { homepage = "http://github.com/sebnow/haskell-network-address"; description = "IP data structures and textual representation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-anonymous-i2p" = callPackage @@ -159133,6 +162948,7 @@ self: { ]; description = "Linux NetworkNameSpace Builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-bytestring" = callPackage @@ -159146,6 +162962,7 @@ self: { homepage = "http://github.com/tibbe/network-bytestring"; description = "Fast, memory-efficient, low-level networking"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-carbon_1_0_5" = callPackage @@ -159382,6 +163199,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-connection"; description = "A wrapper around a generic stream-like connection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-data" = callPackage @@ -159428,6 +163246,7 @@ self: { homepage = "https://github.com/mvv/network-dns"; description = "Domain Name System data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-enumerator" = callPackage @@ -159542,6 +163361,7 @@ self: { jailbreak = true; description = "Haskell bindings for the ifreq structure"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-ip" = callPackage @@ -159564,6 +163384,7 @@ self: { homepage = "https://github.com/mvv/network-ip"; description = "Internet Protocol data structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-metrics" = callPackage @@ -159600,6 +163421,7 @@ self: { homepage = "http://darcs.imperialviolet.org/network-minihttp"; description = "A ByteString based library for writing HTTP(S) servers and clients"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-msg" = callPackage @@ -159663,6 +163485,7 @@ self: { jailbreak = true; description = "Haskell bindings for low-level packet sockets (AF_PACKET)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "network-pgi" = callPackage @@ -159712,6 +163535,7 @@ self: { ]; description = "A cross-platform RPC library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-server" = callPackage @@ -159726,6 +163550,7 @@ self: { executableHaskellDepends = [ base network unix ]; description = "A light abstraction over sockets & co. for servers"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-service" = callPackage @@ -159853,6 +163678,7 @@ self: { homepage = "https://github.com/k0001/network-simple-tls"; description = "Simple interface to TLS secured network sockets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-socket-options" = callPackage @@ -159905,6 +163731,7 @@ self: { homepage = "https://github.com/bgamari/bayes-stack"; description = "A few network topic model implementations for bayes-stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-transport_0_4_1_0" = callPackage @@ -159942,7 +163769,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "network-transport" = callPackage + "network-transport_0_4_3_1" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, hashable , transformers }: @@ -159959,6 +163786,23 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Network abstraction layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "network-transport" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, hashable + , transformers + }: + mkDerivation { + pname = "network-transport"; + version = "0.4.4.0"; + sha256 = "8e11bc9bbc3b1dd6929dfaf1140dc605f6e72c28b97bd60a2c036ab6aae67ed8"; + libraryHaskellDepends = [ + base binary bytestring deepseq hashable transformers + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Network abstraction layer"; + license = stdenv.lib.licenses.bsd3; }) {}; "network-transport-amqp" = callPackage @@ -159985,6 +163829,7 @@ self: { jailbreak = true; description = "AMQP-based transport layer for distributed-process (aka Cloud Haskell)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-transport-composed" = callPackage @@ -160170,6 +164015,7 @@ self: { homepage = "https://github.com/tweag/network-transport-zeromq"; description = "ZeroMQ backend for network-transport"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "network-uri_2_5_0_0" = callPackage @@ -160275,6 +164121,7 @@ self: { homepage = "http://github.com/snakamura/network-uri-static"; description = "A small utility to declare type-safe static URIs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "network-wai-router" = callPackage @@ -160302,6 +164149,7 @@ self: { homepage = "http://github.com/michaelmelanson/network-websocket"; description = "WebSocket library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "networked-game" = callPackage @@ -160334,6 +164182,7 @@ self: { homepage = "http://www.b7j0c.org/content/haskell-newports.html"; description = "List ports newer than N days on a FreeBSD system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "newsynth" = callPackage @@ -160353,6 +164202,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/newsynth/"; description = "Exact and approximate synthesis of quantum circuits"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "newt" = callPackage @@ -160379,6 +164229,7 @@ self: { jailbreak = true; description = "A trivially simple app to create things from simple templates"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "newtype" = callPackage @@ -160408,6 +164259,7 @@ self: { homepage = "https://github.com/nikita-volkov/newtype-deriving"; description = "Instance derivers for newtype wrappers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "newtype-generics" = callPackage @@ -160439,6 +164291,7 @@ self: { homepage = "http://github.com/mgsloan/newtype-th"; description = "A template haskell deriver to create Control.Newtype instances."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "newtyper" = callPackage @@ -160494,6 +164347,7 @@ self: { homepage = "http://github.com/YoEight/ngrams-loader"; description = "Ngrams loader based on http://www.ngrams.info format"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ngx-export" = callPackage @@ -160522,6 +164376,7 @@ self: { homepage = "https://github.com/fhsjaagshs/niagra"; description = "High performance CSS EDSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nibblestring" = callPackage @@ -160542,6 +164397,7 @@ self: { ]; description = "Packed, strict nibble arrays with a list interface (ByteString for nibbles)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nicify" = callPackage @@ -160611,6 +164467,7 @@ self: { homepage = "http://www.codemanic.com/uwe"; description = "Command line utility publishes Nike+ runs on blogs and Twitter"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nimber" = callPackage @@ -160623,6 +164480,7 @@ self: { homepage = "http://andersk.mit.edu/haskell/nimber/"; description = "Finite nimber arithmetic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "nist-beacon" = callPackage @@ -160649,6 +164507,7 @@ self: { homepage = "http://haskell.gonitro.io"; description = "Haskell bindings for Nitro"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nix-eval" = callPackage @@ -160716,6 +164575,7 @@ self: { jailbreak = true; description = "Generate nix expressions from npm packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nixos-types" = callPackage @@ -160748,6 +164608,7 @@ self: { homepage = "https://github.com/kawu/nkjp"; description = "Manipulating the National Corpus of Polish (NKJP)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nlp-scores" = callPackage @@ -160793,6 +164654,7 @@ self: { executableHaskellDepends = [ base ]; description = "Network Manager, binding to libnm-glib"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {g = null; inherit (pkgs) glib; libnm-glib = null; nm-glib = null;}; @@ -160806,6 +164668,7 @@ self: { homepage = "https://github.com/singpolyma/NME-Haskell"; description = "Bindings to the Nyctergatis Markup Engine"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nntp" = callPackage @@ -160821,6 +164684,7 @@ self: { ]; description = "Library to connect to an NNTP Server"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "no-buffering-workaround" = callPackage @@ -160846,6 +164710,7 @@ self: { homepage = "https://github.com/goldfirere/no-role-annots"; description = "Role annotations without -XRoleAnnotations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nofib-analyse" = callPackage @@ -160900,6 +164765,7 @@ self: { homepage = "http://github.com/brow/noise"; description = "A friendly language for graphic design"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "non-empty" = callPackage @@ -161025,6 +164891,7 @@ self: { homepage = "https://github.com/jessopher/noodle"; description = "the noodle programming language"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "normaldistribution" = callPackage @@ -161055,6 +164922,7 @@ self: { jailbreak = true; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-gloss-examples" = callPackage @@ -161073,6 +164941,7 @@ self: { jailbreak = true; description = "examples for not-gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "not-in-base" = callPackage @@ -161098,6 +164967,7 @@ self: { jailbreak = true; description = "Avoiding the C preprocessor via cunning use of Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "notmuch-haskell" = callPackage @@ -161116,6 +164986,7 @@ self: { executableSystemDepends = [ notmuch ]; description = "Binding for notmuch MUA library"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) notmuch;}; "notmuch-web" = callPackage @@ -161154,6 +165025,7 @@ self: { homepage = "https://bitbucket.org/wuzzeb/notmuch-web"; description = "A web interface to the notmuch email indexer"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "notzero" = callPackage @@ -161202,6 +165074,7 @@ self: { jailbreak = true; description = "Linear algebra for the numeric-prelude framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nptools" = callPackage @@ -161220,6 +165093,7 @@ self: { ]; description = "A collection of random tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "nsis_0_2_4" = callPackage @@ -161297,6 +165171,7 @@ self: { sha256 = "9e6a4e4cf0116a8aab09185bcdb62106206c6b41816cc1c6d6e3dac50fe621e2"; libraryHaskellDepends = [ base type-level ]; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ntp-control" = callPackage @@ -161333,6 +165208,7 @@ self: { homepage = "https://github.com/Tener/null-canvas"; description = "HTML5 Canvas Graphics Library - forked Blank Canvas"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nullary" = callPackage @@ -161359,6 +165235,7 @@ self: { homepage = "https://github.com/mwotton/nullpipe#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "number" = callPackage @@ -161441,6 +165318,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "numerals-base" = callPackage @@ -161464,6 +165342,7 @@ self: { homepage = "https://github.com/roelvandijk/numerals-base"; description = "Convert numbers to number words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "numeric-extras_0_0_3" = callPackage @@ -161727,6 +165606,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nvim-hs-contrib" = callPackage @@ -161753,6 +165633,7 @@ self: { homepage = "https://github.com/neovimhaskell/nvim-hs"; description = "Haskell plugin backend for neovim"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "nyan" = callPackage @@ -161803,6 +165684,7 @@ self: { jailbreak = true; description = "An interactive GUI for manipulating L-systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oanda-rest-api" = callPackage @@ -161883,6 +165765,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/Center/CoCoCo"; description = "Oberon0 Compiler"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "obj" = callPackage @@ -161902,6 +165785,7 @@ self: { ]; description = "Reads and writes obj models"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "objectid" = callPackage @@ -162006,18 +165890,18 @@ self: { "octane" = callPackage ({ mkDerivation, aeson, autoexporter, base, binary, binary-bits - , bytestring, containers, data-binary-ieee754, deepseq - , newtype-generics, tasty, tasty-hspec, text + , bytestring, containers, data-binary-ieee754, deepseq, tasty + , tasty-hspec, text }: mkDerivation { pname = "octane"; - version = "0.5.2"; - sha256 = "f02410f444c9e3e51e24efc05f2582d3e465fdf933dfdbaeb8ebf403f2f77ea1"; + version = "0.5.9"; + sha256 = "9ab0cc2a69b5e6c95e954ac0ffa4d657fd61c4c70a87feb4651c75d5a85b4339"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson autoexporter base binary binary-bits bytestring containers - data-binary-ieee754 deepseq newtype-generics text + data-binary-ieee754 deepseq text ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ @@ -162028,6 +165912,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_6_0" = callPackage + ({ mkDerivation, aeson, autoexporter, base, binary, binary-bits + , bytestring, containers, data-binary-ieee754, deepseq, tasty + , tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.6.0"; + sha256 = "2cd73f5336d0f32001e42e386446f197c7c3b6deb7cf407520b3c5dead8a6ff8"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson autoexporter base binary binary-bits bytestring containers + data-binary-ieee754 deepseq text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -162058,6 +165967,7 @@ self: { homepage = "https://github.com/stackbuilders/octohat"; description = "A tested, minimal wrapper around GitHub's API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "octopus" = callPackage @@ -162080,6 +165990,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/octopus/"; description = "Lisp with more dynamism, more power, more simplicity"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "oculus" = callPackage @@ -162098,6 +166009,7 @@ self: { homepage = "http://github.com/cpdurham/oculus"; description = "Oculus Rift ffi providing head tracking data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs.xorg) libXinerama; inherit (pkgs) mesa; ovr = null; inherit (pkgs) systemd;}; @@ -162116,6 +166028,7 @@ self: { homepage = "http://oden-lang.org"; description = "Provides Go package metadata"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "oeis" = callPackage @@ -162182,6 +166095,7 @@ self: { homepage = "https://github.com/fthomas/ohloh-hs"; description = "Interface to the Ohloh API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "oi" = callPackage @@ -162199,6 +166113,7 @@ self: { jailbreak = true; description = "Library for purely functional lazy interactions with the outer world"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "oidc-client" = callPackage @@ -162222,6 +166137,7 @@ self: { homepage = "https://github.com/krdlab/haskell-oidc-client"; description = "OpenID Connect 1.0 library for RP"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ois-input-manager" = callPackage @@ -162235,6 +166151,7 @@ self: { jailbreak = true; description = "wrapper for OIS input manager for use with hogre"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {OIS = null;}; "old-locale" = callPackage @@ -162299,6 +166216,7 @@ self: { jailbreak = true; description = "An OpenLayers JavaScript Wrapper and Webframework with snaplet-fay"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "omaketex" = callPackage @@ -162318,6 +166236,7 @@ self: { homepage = "https://github.com/pcapriotti/omaketex"; description = "A simple tool to generate OMakefile for latex files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "omega" = callPackage @@ -162336,6 +166255,7 @@ self: { homepage = "http://code.google.com/p/omega/"; description = "A purely functional programming language and a proof system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "omnicodec" = callPackage @@ -162354,6 +166274,7 @@ self: { jailbreak = true; description = "data encoding and decoding command line utilities"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "omnifmt" = callPackage @@ -162399,6 +166320,7 @@ self: { homepage = "http://haskell.on-a-horse.org"; description = "\"Haskell on a Horse\" - A combinatorial web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "on-demand-ssh-tunnel" = callPackage @@ -162452,6 +166374,7 @@ self: { homepage = "https://github.com/sjoerdvisscher/one-liner"; description = "Constraint-based generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "one-time-password" = callPackage @@ -162496,6 +166419,7 @@ self: { homepage = "https://github.com/thinkpad20/oneormore"; description = "A never-empty list type"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "only" = callPackage @@ -162520,6 +166444,7 @@ self: { libraryHaskellDepends = [ base smallcheck ]; description = "Code for the Haskell course taught at the Odessa National University in 2012"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "oo-prototypes" = callPackage @@ -162718,6 +166643,8 @@ self: { pname = "opaleye"; version = "0.5.0.0"; sha256 = "8fa68edc8e322f624c704526acbf2c813903bf73beab829849f515a7854415b5"; + revision = "1"; + editedCabalFile = "fc7041c037995e21cb26ff9014fba405e3185ade6f33011dbdac3aad55717b82"; libraryHaskellDepends = [ aeson attoparsec base base16-bytestring bytestring case-insensitive contravariant postgresql-simple pretty product-profunctors @@ -162777,9 +166704,10 @@ self: { homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; description = "An SQL-generating DSL targeting SQLite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "opaleye-trans" = callPackage + "opaleye-trans_0_3_2" = callPackage ({ mkDerivation, base, mtl, opaleye, postgresql-simple , product-profunctors, transformers, transformers-base }: @@ -162800,6 +166728,29 @@ self: { homepage = "https://github.com/WraithM/opaleye-trans"; description = "A monad transformer for Opaleye"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "opaleye-trans" = callPackage + ({ mkDerivation, base, mtl, opaleye, postgresql-simple + , product-profunctors, transformers, transformers-base + }: + mkDerivation { + pname = "opaleye-trans"; + version = "0.3.3"; + sha256 = "7bfa05fc152921a8ab7ec6cba18be66f2cffb5840648e9c7a88e98c77cbfd841"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base mtl opaleye postgresql-simple product-profunctors transformers + transformers-base + ]; + executableHaskellDepends = [ + base opaleye postgresql-simple product-profunctors + ]; + homepage = "https://github.com/WraithM/opaleye-trans"; + description = "A monad transformer for Opaleye"; + license = stdenv.lib.licenses.bsd3; }) {}; "open-browser" = callPackage @@ -162851,6 +166802,7 @@ self: { homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "open-signals" = callPackage @@ -162891,6 +166843,7 @@ self: { homepage = "https://github.com/emilaxelsson/open-typerep"; description = "Open type representations and dynamic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "open-union" = callPackage @@ -162906,6 +166859,7 @@ self: { homepage = "https://github.com/RobotGymnast/open-union"; description = "Extensible, type-safe unions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "open-witness" = callPackage @@ -162935,6 +166889,7 @@ self: { homepage = "github.com/opencog/atomspace/tree/master/opencog/haskell"; description = "Haskell Bindings for the AtomSpace"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {atomspace-cwrapper = null;}; "opencv-raw" = callPackage @@ -162949,6 +166904,7 @@ self: { homepage = "www.github.com/arjuncomar/opencv-raw.git"; description = "Raw Haskell bindings to OpenCV >= 2.0"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) opencv;}; "opendatatable" = callPackage @@ -162978,6 +166934,7 @@ self: { homepage = "https://github.com/singpolyma/openexchangerates-haskell"; description = "Fetch exchange rates from OpenExchangeRates.org"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "openflow" = callPackage @@ -162996,6 +166953,7 @@ self: { homepage = "https://github.com/AndreasVoellmy/openflow"; description = "OpenFlow"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "opengl-dlp-stereo" = callPackage @@ -163056,6 +167014,7 @@ self: { homepage = "https://github.com/capsjac/opengles#readme"; description = "Functional interface for OpenGL 4.1+ and OpenGL ES 2.0+"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {EGL = null; GLESv2 = null;}; "openid" = callPackage @@ -163074,6 +167033,7 @@ self: { homepage = "http://github.com/elliottt/hsopenid"; description = "An implementation of the OpenID-2.0 spec."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "openpgp" = callPackage @@ -163119,6 +167079,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-Crypto"; description = "Implementation of cryptography for use with OpenPGP using the Crypto library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "openpgp-asciiarmor" = callPackage @@ -163166,6 +167127,7 @@ self: { homepage = "http://github.com/singpolyma/OpenPGP-CryptoAPI"; description = "Implement cryptography for OpenPGP using crypto-api compatible libraries"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "opensoundcontrol-ht" = callPackage @@ -163183,6 +167145,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell OpenSoundControl utilities"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "opensource" = callPackage @@ -163227,6 +167190,7 @@ self: { homepage = "https://github.com/stackbuilders/openssh-github-keys"; description = "Fetch OpenSSH keys from a GitHub team"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "openssl-createkey" = callPackage @@ -163327,6 +167291,7 @@ self: { jailbreak = true; description = "Unicode characters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "opentheory-divides" = callPackage @@ -163495,6 +167460,7 @@ self: { homepage = "https://github.com/emilaxelsson/operational-alacarte"; description = "A version of Operational suitable for extensible EDSLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "operational-class" = callPackage @@ -163629,6 +167595,7 @@ self: { homepage = "https://github.com/k0ral/opml-conduit"; description = "Streaming parser/renderer for the OPML 2.0 format."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "opn" = callPackage @@ -163671,6 +167638,7 @@ self: { homepage = "https://github.com/tsuraan/optimal-blocks"; description = "Optimal Block boundary determination for rsync-like behaviours"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "optimization" = callPackage @@ -163708,6 +167676,7 @@ self: { homepage = "http://optimusprime.posterous.com/"; description = "A supercompiler for f-lite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "option" = callPackage @@ -164049,6 +168018,7 @@ self: { jailbreak = true; description = "An API client for http://orchestrate.io/."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "orchid" = callPackage @@ -164069,6 +168039,7 @@ self: { jailbreak = true; description = "Haskell Wiki Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "orchid-demo" = callPackage @@ -164088,6 +168059,7 @@ self: { jailbreak = true; description = "Haskell Wiki Demo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ord-adhoc" = callPackage @@ -164118,6 +168090,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/order-maintenance"; description = "Algorithms for the order maintenance problem with a safe interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "order-statistic-tree" = callPackage @@ -164185,6 +168158,7 @@ self: { testHaskellDepends = [ base directory process split ]; description = "Push-pull implementation of discrete-time FRP"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "organize-imports" = callPackage @@ -164240,6 +168214,7 @@ self: { ]; description = "A collection of Attoparsec combinators for parsing org-mode flavored documents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "origami" = callPackage @@ -164259,6 +168234,7 @@ self: { homepage = "http://github.com/nedervold/origami"; description = "An un-SYB framework for transforming heterogenous data through folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "os-release" = callPackage @@ -164345,6 +168321,7 @@ self: { homepage = "http://github.com/przembot/osm-conduit#readme"; description = "Parse and operate on OSM data in efficient way"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "osm-download" = callPackage @@ -164367,6 +168344,7 @@ self: { jailbreak = true; description = "Download Open Street Map tiles"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "oso2pdf" = callPackage @@ -164419,6 +168397,7 @@ self: { homepage = "https://github.com/operational-transformation/ot.hs"; description = "Real-time collaborative editing with Operational Transformation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ottparse-pretty" = callPackage @@ -164467,6 +168446,7 @@ self: { jailbreak = true; description = "An alternative to some of the Prelude"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pack" = callPackage @@ -164533,6 +168513,7 @@ self: { jailbreak = true; description = "Haskell Package Versioning Tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "packdeps" = callPackage @@ -164590,6 +168571,7 @@ self: { jailbreak = true; description = "(Deprecated) Packed Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "packer" = callPackage @@ -164626,6 +168608,7 @@ self: { ]; description = "Serialization library for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "packunused" = callPackage @@ -164648,6 +168631,7 @@ self: { homepage = "https://github.com/hvr/packunused"; description = "Tool for detecting redundant Cabal package dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pacman-memcache" = callPackage @@ -164680,6 +168664,7 @@ self: { homepage = "https://github.com/fumieval/padKONTROL"; description = "Controlling padKONTROL native mode"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pagarme" = callPackage @@ -165011,6 +168996,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Panda"; description = "A simple static blog engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc_1_13_1" = callPackage @@ -165497,6 +169483,7 @@ self: { homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-citeproc_0_6" = callPackage @@ -165763,6 +169750,7 @@ self: { 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 @@ -165810,6 +169798,7 @@ self: { ]; description = "Pandoc filter for cross-references"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-csv2table" = callPackage @@ -165826,6 +169815,7 @@ self: { homepage = "https://github.com/baig/pandoc-csv2table-filter"; description = "Convert CSV to Pandoc Table Markdown"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-include" = callPackage @@ -165846,6 +169836,7 @@ self: { homepage = "https://github.com/steindani/pandoc-include"; description = "Include other Markdown files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-japanese-filters" = callPackage @@ -165865,6 +169856,7 @@ self: { ]; description = "Japanese-specific markup filters for pandoc"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pandoc-lens" = callPackage @@ -165917,6 +169909,7 @@ self: { ]; description = "Render and insert PlantUML diagrams with Pandoc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pandoc-types_1_12_4_1" = callPackage @@ -166072,6 +170065,7 @@ self: { executableHaskellDepends = [ base pandoc ]; description = "Literate Haskell support for GitHub's Markdown flavor"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pango_0_13_0_4" = callPackage @@ -166155,6 +170149,24 @@ self: { }) {inherit (pkgs.gnome) pango;}; "pango" = callPackage + ({ mkDerivation, array, base, cairo, containers, directory, glib + , gtk2hs-buildtools, mtl, pango, pretty, process, text + }: + mkDerivation { + pname = "pango"; + version = "0.13.2.0"; + sha256 = "4b80c8ed358699738c6956b6ab68a8867de129b521230f5c53daea208923f07c"; + libraryHaskellDepends = [ + array base cairo containers directory glib mtl pretty process text + ]; + libraryPkgconfigDepends = [ pango ]; + libraryToolDepends = [ gtk2hs-buildtools ]; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Pango text rendering engine"; + license = stdenv.lib.licenses.lgpl21; + }) {inherit (pkgs.gnome) pango;}; + + "pango_0_13_3_0" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib , mtl, pango, pretty, process, text }: @@ -166169,6 +170181,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -166193,6 +170206,7 @@ self: { homepage = "https://skami.iocikun.jp/computer/haskell/packages/papillon"; description = "packrat parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pappy" = callPackage @@ -166207,6 +170221,7 @@ self: { homepage = "http://pdos.csail.mit.edu/~baford/packrat/thesis/"; description = "Packrat parsing; linear-time parsers for grammars in TDPL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "para" = callPackage @@ -166246,6 +170261,7 @@ self: { jailbreak = true; description = "Paragon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parallel_3_2_0_3" = callPackage @@ -166330,6 +170346,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parallel-tree-search" = callPackage @@ -166354,6 +170371,7 @@ self: { homepage = "http://code.haskell.org/parameterized-data"; description = "Parameterized data library implementing lightweight dependent types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "paranoia" = callPackage @@ -166391,6 +170409,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised parser combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parco-attoparsec" = callPackage @@ -166402,6 +170421,7 @@ self: { libraryHaskellDepends = [ attoparsec base mtl parco ]; description = "Generalised parser combinators - Attoparsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parco-parsec" = callPackage @@ -166413,6 +170433,7 @@ self: { libraryHaskellDepends = [ base mtl parco parsec ]; description = "Generalised parser combinators - Parsec interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parcom-lib" = callPackage @@ -166455,6 +170476,7 @@ self: { jailbreak = true; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "parport" = callPackage @@ -166496,6 +170518,7 @@ self: { homepage = "http://github.com/gregwebs/cmdargs-help"; description = "generate command line arguments from a --help output"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parseargs_0_1_5_2" = callPackage @@ -166785,6 +170808,7 @@ self: { libraryHaskellDepends = [ base mtl parsec ]; homepage = "http://naesten.dyndns.org:8080/repos/parsely"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parser-helper" = callPackage @@ -166801,6 +170825,7 @@ self: { jailbreak = true; description = "Prints Haskell parse trees in JSON"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parser241" = callPackage @@ -166816,6 +170841,7 @@ self: { homepage = "https://github.com/YLiLarry/parser241"; description = "An interface to create production rules using augmented grammars"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parsergen" = callPackage @@ -166838,6 +170864,7 @@ self: { jailbreak = true; description = "TH parser generator for splitting bytestring into fixed-width fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parsers_0_12_1_1" = callPackage @@ -166939,6 +170966,7 @@ self: { jailbreak = true; description = "NMR-STAR file format parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "parsimony" = callPackage @@ -166984,6 +171012,7 @@ self: { homepage = "https://github.com/paf31/partial"; description = "A nullary type class for partial functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "partial-handler_0_1_0" = callPackage @@ -167021,7 +171050,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "partial-handler" = callPackage + "partial-handler_1_0_0_0" = callPackage ({ mkDerivation, base }: mkDerivation { pname = "partial-handler"; @@ -167035,6 +171064,19 @@ self: { homepage = "https://github.com/nikita-volkov/partial-handler"; description = "A composable exception handler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "partial-handler" = callPackage + ({ mkDerivation, base }: + mkDerivation { + pname = "partial-handler"; + version = "1.0.1"; + sha256 = "e54eb9814d52e384dac62b8e365fafe9fb7319b5d4325d4bd76e4c17662b26f7"; + libraryHaskellDepends = [ base ]; + homepage = "https://github.com/nikita-volkov/partial-handler"; + description = "A composable exception handler"; + license = stdenv.lib.licenses.mit; }) {}; "partial-isomorphisms" = callPackage @@ -167047,6 +171089,7 @@ self: { homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; description = "Partial isomorphisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "partial-lens" = callPackage @@ -167063,6 +171106,7 @@ self: { jailbreak = true; description = "Haskell 98 Partial Lenses"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "partial-uri" = callPackage @@ -167098,6 +171142,7 @@ self: { homepage = "https://github.com/startling/partly"; description = "Inspect, create, and alter MBRs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "passage" = callPackage @@ -167115,6 +171160,7 @@ self: { ]; description = "Parallel code generation for hierarchical Bayesian modeling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "passwords" = callPackage @@ -167137,6 +171183,7 @@ self: { libraryHaskellDepends = [ base HTTP network ]; description = "Interface to the past.is URL shortening service"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pasty" = callPackage @@ -167151,6 +171198,7 @@ self: { homepage = "http://github.com/markusle/pasty/tree/master"; description = "A simple command line pasting utility"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "patch-combinators" = callPackage @@ -167423,6 +171471,7 @@ self: { homepage = "http://github.com/TheBizzle"; description = "A toy pathfinding library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pathtype" = callPackage @@ -167512,6 +171561,7 @@ self: { homepage = "http://github.com/toschoo/mom"; description = "Common patterns in message-oriented applications"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "paymill" = callPackage @@ -167550,6 +171600,7 @@ self: { homepage = "https://github.com/fanjam/paypal-adaptive-hoops"; description = "Client for a limited part of PayPal's Adaptive Payments API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "paypal-api" = callPackage @@ -167568,6 +171619,7 @@ self: { homepage = "http://projects.haskell.org/paypal-api/"; description = "PayPal API, currently supporting \"ButtonManager\""; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pb" = callPackage @@ -167583,6 +171635,7 @@ self: { ]; description = "pastebin command line application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pbc4hs" = callPackage @@ -167696,6 +171749,7 @@ self: { ]; description = "A one file compiler for PCF"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pcg-random" = callPackage @@ -168142,6 +172196,7 @@ self: { ]; description = "pdynload is polymorphic dynamic linking library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "peakachu" = callPackage @@ -168157,6 +172212,7 @@ self: { ]; description = "Experiemental library for composable interactive programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "peano" = callPackage @@ -168203,6 +172259,7 @@ self: { ]; description = "pec embedded compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pecoff" = callPackage @@ -168232,6 +172289,7 @@ self: { homepage = "http://github.com/HackerFoo/peg"; description = "a lazy non-deterministic concatenative programming language"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "peggy" = callPackage @@ -168253,6 +172311,7 @@ self: { homepage = "http://tanakh.github.com/Peggy"; description = "The Parser Generator for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pell" = callPackage @@ -168272,6 +172331,7 @@ self: { homepage = "https://github.com/brunjlar/pell"; description = "Package to solve the Generalized Pell Equation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pem" = callPackage @@ -168332,6 +172392,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Extensible double-entry accounting system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-bin" = callPackage @@ -168352,6 +172413,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "penny-lib" = callPackage @@ -168375,6 +172437,7 @@ self: { homepage = "http://www.github.com/massysett/penny"; description = "Deprecated - use penny package instead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "peparser" = callPackage @@ -168387,6 +172450,7 @@ self: { homepage = "https://github.com/igraves/peparser-haskell"; description = "A parser for PE object files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perceptron" = callPackage @@ -168429,6 +172493,7 @@ self: { homepage = "https://github.com/Cognimeta/perdure"; description = "Robust persistence for acyclic immutable data"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "perfecthash" = callPackage @@ -168447,6 +172512,7 @@ self: { ]; description = "A perfect hashing library for mapping bytestrings to values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "period" = callPackage @@ -168509,6 +172575,7 @@ self: { libraryHaskellDepends = [ base mtl ]; description = "Generalised permutation parser combinator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persist2er" = callPackage @@ -168541,6 +172608,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Binding between SQL database values and haskell records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistable-types-HDBC-pg" = callPackage @@ -168558,6 +172626,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "HDBC and Relational-Record instances of PostgreSQL extended types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent_2_1_1" = callPackage @@ -169201,6 +173270,7 @@ self: { jailbreak = true; description = "Parse DATABASE_URL into configuration types for Persistent"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-equivalence" = callPackage @@ -169229,6 +173299,7 @@ self: { ]; description = "Declare Persistent entities using SQL SELECT query syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-instances-iproute" = callPackage @@ -169275,6 +173346,7 @@ self: { homepage = "http://darcs.monoid.at/persistent-map"; description = "A thread-safe (STM) persistency interface for finite map types"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-mongoDB_2_1_2" = callPackage @@ -169549,6 +173621,7 @@ self: { homepage = "https://github.com/gbwey/persistent-odbc"; description = "Backend for the persistent library using ODBC"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-postgresql_2_1_1" = callPackage @@ -169908,6 +173981,7 @@ self: { homepage = "https://github.com/mstone/persistent-protobuf"; description = "Template-Haskell helpers for integrating protobufs with persistent"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-ratelimit" = callPackage @@ -169921,6 +173995,7 @@ self: { homepage = "https://github.com/jprider63/persistent-ratelimit"; description = "A library for rate limiting activities with a persistent backend"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "persistent-redis" = callPackage @@ -170197,13 +174272,13 @@ self: { "persistent-sqlite" = callPackage ({ mkDerivation, aeson, base, bytestring, conduit, containers , hspec, monad-control, monad-logger, old-locale, persistent - , persistent-template, resource-pool, resourcet, text, time - , transformers + , persistent-template, resource-pool, resourcet, temporary, text + , time, transformers }: mkDerivation { pname = "persistent-sqlite"; - version = "2.5.0.1"; - sha256 = "0aeb44b66436ed0e55d473915f1cbaa2a673b21861c03edf0e83418c6f2c17e7"; + version = "2.5.0.2"; + sha256 = "dd0f3490a9daa0b11638080f0966049ba0946d7a392808789e57f3aa24c5f54d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170213,7 +174288,8 @@ self: { ]; executableHaskellDepends = [ base monad-logger ]; testHaskellDepends = [ - base hspec persistent persistent-template time transformers + base hspec persistent persistent-template temporary text time + transformers ]; homepage = "http://www.yesodweb.com/book/persistent"; description = "Backend for the persistent library using sqlite3"; @@ -170673,6 +174749,7 @@ self: { homepage = "https://github.com/frasertweedale/hs-persona"; description = "Persona (BrowserID) library"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "persona-idp" = callPackage @@ -170695,6 +174772,7 @@ self: { homepage = "https://github.com/frasertweedale/hs-persona-idp"; description = "Persona (BrowserID) Identity Provider"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pesca" = callPackage @@ -170709,6 +174787,7 @@ self: { homepage = "http://www.cs.chalmers.se/~aarne/pesca/"; description = "Proof Editor for Sequent Calculus"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "peyotls" = callPackage @@ -170736,6 +174815,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "peyotls-codec" = callPackage @@ -170755,6 +174835,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/peyotls/wiki"; description = "Codec parts of Pretty Easy YOshikuni-made TLS library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pez" = callPackage @@ -170773,6 +174854,7 @@ self: { homepage = "http://brandon.si/code/pez-zipper-library-released/"; description = "A Pretty Extraordinary Zipper library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pg-harness" = callPackage @@ -170793,6 +174875,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service and library for creating/consuming temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pg-harness-client" = callPackage @@ -170824,6 +174907,7 @@ self: { homepage = "https://github.com/BardurArantsson/pg-harness"; description = "REST service for creating temporary PostgreSQL databases"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pg-store" = callPackage @@ -170845,6 +174929,7 @@ self: { homepage = "https://github.com/vapourismo/pg-store"; description = "Dead simple storage interface to PostgreSQL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pgdl" = callPackage @@ -170858,6 +174943,8 @@ self: { pname = "pgdl"; version = "9.2"; sha256 = "db25085b9b2ed08020635dd1e48b031b1811d2d5e7df2d991cbe8f8710415faf"; + revision = "1"; + editedCabalFile = "cbbef68c92b01166847e03324ee093f115e5bf1a66e0f042f9f53819e264062c"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -170866,8 +174953,10 @@ self: { directory-listing-webpage-parser filepath http-conduit http-types process resourcet tagsoup text time transformers unix vector vty ]; + jailbreak = true; description = "browse directory listing webpages and download files from them"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pgm" = callPackage @@ -170918,6 +175007,7 @@ self: { homepage = "https://github.com/chrisdone/pgsql-simple"; description = "A mid-level PostgreSQL client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pgstream" = callPackage @@ -170943,6 +175033,7 @@ self: { jailbreak = true; description = "Streaming Postgres bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "phantom-state_0_2_0_2" = callPackage @@ -170958,7 +175049,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "phantom-state" = callPackage + "phantom-state_0_2_1_0" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "phantom-state"; @@ -170969,6 +175060,18 @@ self: { libraryHaskellDepends = [ base transformers ]; description = "Phantom State Transformer. Like State Monad, but without values."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "phantom-state" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "phantom-state"; + version = "0.2.1.2"; + sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; + libraryHaskellDepends = [ base transformers ]; + description = "Phantom State Transformer. Like State Monad, but without values."; + license = stdenv.lib.licenses.bsd3; }) {}; "phasechange" = callPackage @@ -170985,6 +175088,7 @@ self: { homepage = "http://github.com/glehel/phasechange"; description = "Freezing, thawing, and copy elision"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "phash" = callPackage @@ -171044,6 +175148,7 @@ self: { testHaskellDepends = [ base hspec ]; description = "ghci debug viewer with simple editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "phoityne-vscode" = callPackage @@ -171081,6 +175186,7 @@ self: { homepage = "https://github.com/christian-marie/phone-numbers"; description = "Haskell bindings to the libphonenumber library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {phonenumber = null;}; "phone-push" = callPackage @@ -171099,6 +175205,7 @@ self: { homepage = "https://github.com/gurgeh/haskell-phone-push"; description = "Push notifications for Android and iOS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "phonetic-code" = callPackage @@ -171128,6 +175235,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Phooey"; description = "Functional user interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "photoname" = callPackage @@ -171150,6 +175258,7 @@ self: { homepage = "http://hub.darcs.net/dino/photoname"; description = "Rename photo image files based on EXIF shoot date"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "phraskell" = callPackage @@ -171165,6 +175274,7 @@ self: { homepage = "https://github.com/skypers/phraskell"; description = "A fractal viewer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "phybin" = callPackage @@ -171199,6 +175309,7 @@ self: { homepage = "http://www.cs.indiana.edu/~rrnewton/projects/phybin/"; description = "Utility for clustering phylogenetic trees in Newick format based on Robinson-Foulds distance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pi-calculus" = callPackage @@ -171220,6 +175331,7 @@ self: { homepage = "https://github.com/renzyq19/pi-calculus"; description = "Applied pi-calculus interpreter"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pia-forward" = callPackage @@ -171266,6 +175378,7 @@ self: { ]; description = "Remotely controlling Java Swing applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "picologic" = callPackage @@ -171387,6 +175500,7 @@ self: { libraryHaskellDepends = [ array base containers Imlib mtl ]; description = "A Piet interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "piki" = callPackage @@ -171401,6 +175515,7 @@ self: { homepage = "http://www.mew.org/~kazu/proj/piki/"; description = "Yet another text-to-html converter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pinboard" = callPackage @@ -171467,6 +175582,7 @@ self: { homepage = "https://github.com/abhinav/pinch#readme"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "pinchot_0_6_0_0" = callPackage @@ -171887,6 +176003,7 @@ self: { jailbreak = true; description = "Streaming parsing in the pipes-core framework with Attoparsec"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-bgzf" = callPackage @@ -172121,6 +176238,7 @@ self: { homepage = "https://github.com/nikita-volkov/pipes-cereal-plus"; description = "A streaming serialization library on top of \"pipes\" and \"cereal-plus\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-cliff" = callPackage @@ -172219,6 +176337,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Conduit adapters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-core" = callPackage @@ -172236,6 +176355,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-core"; description = "Compositional pipelines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-courier" = callPackage @@ -172249,6 +176369,7 @@ self: { homepage = "http://github.com/kvanberendonck/pipes-courier"; description = "Pipes utilities for interfacing with the courier message-passing framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-csv" = callPackage @@ -172308,6 +176429,7 @@ self: { homepage = "https://github.com/pcapriotti/pipes-extra"; description = "Various basic utilities for Pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-extras_1_0_2" = callPackage @@ -172388,6 +176510,7 @@ self: { homepage = "https://github.com/jwiegley/pipes-files"; description = "Fast traversal of directory trees using pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-group_1_0_2" = callPackage @@ -172558,6 +176681,7 @@ self: { homepage = "https://github.com/k0001/pipes-network-tls"; description = "TLS-secured network connections support for pipes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pipes-p2p" = callPackage @@ -172597,6 +176721,7 @@ self: { homepage = "https://github.com/jdnavarro/pipes-p2p-examples"; description = "Examples using pipes-p2p"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-parse_3_0_2" = callPackage @@ -172775,6 +176900,7 @@ self: { jailbreak = true; description = "Create proper Pipes from System.Process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pipes-sqlite-simple" = callPackage @@ -173018,6 +177144,7 @@ self: { jailbreak = true; description = "A dependently typed core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pit" = callPackage @@ -173042,6 +177169,7 @@ self: { homepage = "https://github.com/chiro/haskell-pit"; description = "Account management tool"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pitchtrack" = callPackage @@ -173085,6 +177213,7 @@ self: { jailbreak = true; description = "A library and a CLI tool for accessing Pivotal Tracker API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pkcs1" = callPackage @@ -173169,6 +177298,7 @@ self: { executableHaskellDepends = [ base Cabal split ]; description = "Package dependency graph for installed packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pktree" = callPackage @@ -173240,6 +177370,7 @@ self: { jailbreak = true; description = "A representation of planar graphs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plat" = callPackage @@ -173253,6 +177384,7 @@ self: { ]; description = "Simple templating library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "playlists" = callPackage @@ -173309,6 +177441,7 @@ self: { jailbreak = true; description = "Remote monad for editing plists"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plivo" = callPackage @@ -173330,6 +177463,7 @@ self: { homepage = "https://github.com/singpolyma/plivo-haskell"; description = "Plivo API wrapper for Haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plot_0_2_3_4" = callPackage @@ -173453,6 +177587,7 @@ self: { homepage = "http://code.haskell.org/plot"; description = "GTK3 plots and interaction with GHCi"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "plot-lab" = callPackage @@ -173513,6 +177648,7 @@ self: { homepage = "http://hub.darcs.net/stepcut/plugins"; description = "Dynamic linking for Haskell and C objects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plugins-auto" = callPackage @@ -173529,6 +177665,7 @@ self: { testHaskellDepends = [ base directory process ]; description = "Automatic recompilation and reloading of haskell modules"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plugins-multistage" = callPackage @@ -173548,6 +177685,7 @@ self: { jailbreak = true; description = "Dynamic linking for embedded DSLs with staged compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "plumbers" = callPackage @@ -173559,6 +177697,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Pointless plumbing combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ply-loader" = callPackage @@ -173578,6 +177717,7 @@ self: { executableHaskellDepends = [ base bytestring linear vector ]; description = "PLY file loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "png-file" = callPackage @@ -173594,6 +177734,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/png-file"; description = "read/write png file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pngload" = callPackage @@ -173609,6 +177750,7 @@ self: { ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pngload-fixed" = callPackage @@ -173620,6 +177762,7 @@ self: { libraryHaskellDepends = [ array base bytestring mtl parsec zlib ]; description = "Pure Haskell loader for PNG images"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pnm" = callPackage @@ -173665,6 +177808,7 @@ self: { ]; description = "Multi-backend (zookeeper and sqlite) DNS Server using persistent-library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointed_4_1" = callPackage @@ -173907,6 +178051,7 @@ self: { homepage = "http://haskell.di.uminho.pt/wiki/Pointless+Lenses"; description = "Pointless Lenses library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pointless-rewrite" = callPackage @@ -173922,6 +178067,7 @@ self: { ]; description = "Pointless Rewrite library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poker-eval" = callPackage @@ -173977,6 +178123,7 @@ self: { testHaskellDepends = [ base containers HUnit MissingH mtl parsec ]; description = "Fork of ConfigFile for Polar Game Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polar-shader" = callPackage @@ -173989,6 +178136,7 @@ self: { testHaskellDepends = [ base containers hspec ]; description = "High-level shader compiler for Polar Game Engine"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polh-lexicon" = callPackage @@ -174009,6 +178157,7 @@ self: { homepage = "https://github.com/kawu/polh/tree/master/lexicon"; description = "A library for manipulating the historical dictionary of Polish (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polimorf" = callPackage @@ -174099,6 +178248,7 @@ self: { libraryHaskellDepends = [ base constraints HList ]; description = "Tools for working with functions of undetermined arity"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poly-control" = callPackage @@ -174156,6 +178306,7 @@ self: { jailbreak = true; description = "Polynomial types and operations"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polynomial" = callPackage @@ -174172,6 +178323,7 @@ self: { homepage = "https://github.com/mokus0/polynomial"; description = "Polynomials"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polynomials-bernstein" = callPackage @@ -174260,6 +178412,7 @@ self: { executableHaskellDepends = [ cgi free-theorems utf8-string xhtml ]; description = "Taming Selective Strictness"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polysoup" = callPackage @@ -174286,6 +178439,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Typeable for polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "polytypeable-utils" = callPackage @@ -174297,6 +178451,7 @@ self: { libraryHaskellDepends = [ base haskell98 polytypeable ]; description = "Utilities for polytypeable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ponder" = callPackage @@ -174323,6 +178478,7 @@ self: { homepage = "http://github.com/RobertFischer/pong-server#readme"; description = "A simple embedded pingable server that runs in the background"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-mediaserver" = callPackage @@ -174343,6 +178499,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-mediaserver/"; description = "Extended Personal Media Network (XPMN) media server"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-xmpp" = callPackage @@ -174382,6 +178539,7 @@ self: { homepage = "https://github.com/pontarius/pontarius-xmpp/"; description = "An XMPP client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pontarius-xpmn" = callPackage @@ -174399,6 +178557,7 @@ self: { homepage = "http://www.pontarius.org/projects/pontarius-xpmn/"; description = "Extended Personal Media Network (XPMN) library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pony" = callPackage @@ -174428,6 +178587,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Thread-safe resource pools. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pool-conduit" = callPackage @@ -174447,6 +178607,7 @@ self: { homepage = "http://www.yesodweb.com/book/persistent"; description = "Resource pool allocations via ResourceT. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pooled-io" = callPackage @@ -174490,6 +178651,7 @@ self: { homepage = "http://www.haskell.org/~petersen/haskell/popenhs/"; description = "popenhs is a popen-like library for Haskell"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "poppler" = callPackage @@ -174508,6 +178670,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs"; description = "Binding to the Poppler"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gdk2 = null; inherit (pkgs) gdk_pixbuf; inherit (pkgs.gnome) pango; inherit (pkgs) poppler;}; @@ -174562,6 +178725,7 @@ self: { ]; description = "FreeBSD ports index search and analysis tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "porter" = callPackage @@ -174573,6 +178737,7 @@ self: { libraryHaskellDepends = [ haskell2010 ]; description = "Implementation of the Porter stemming algorithm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports" = callPackage @@ -174585,6 +178750,7 @@ self: { homepage = "http://www.cse.unsw.edu.au/~chak/haskell/ports/"; description = "The Haskell Ports Library"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ports-tools" = callPackage @@ -174627,6 +178793,7 @@ self: { homepage = "https://github.com/tensor5/posix-acl"; description = "Support for Posix ACL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) acl;}; "posix-escape" = callPackage @@ -174726,6 +178893,7 @@ self: { libraryHaskellDepends = [ base unix ]; description = "Low-level wrapping of POSIX waitpid(2)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "possible" = callPackage @@ -174785,6 +178953,7 @@ self: { homepage = "https://github.com/mattyhall/haskell-postcodes"; description = "A library that gets postcode information from the uk-postcodes.com"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postgresql-binary_0_5_0" = callPackage @@ -175207,6 +179376,7 @@ self: { ]; description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "postgresql-query" = callPackage @@ -175239,6 +179409,7 @@ self: { homepage = "https://bitbucket.org/s9gf4ult/postgresql-query"; description = "Sql interpolating quasiquote plus some kind of primitive ORM using it"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postgresql-schema_0_1_9" = callPackage @@ -175400,6 +179571,8 @@ self: { pname = "postgresql-simple"; version = "0.5.1.3"; sha256 = "fadc86b416d0f16b12b8a30a98196ab9b1788d5612cc66e5c871726a861cbc24"; + revision = "1"; + editedCabalFile = "f1ac288e3a45546fc4a2ff8f356d60393ad3e8955e94c495a8faa72ca5ad72ef"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -175426,6 +179599,8 @@ self: { pname = "postgresql-simple"; version = "0.5.2.0"; sha256 = "9795fe1eaade04e8afeaa6cad86e3c4c0fdb84f4658f82bd3721a65930ef4a71"; + revision = "1"; + editedCabalFile = "184fcaa050cf7bf6266847ebd0fc9a30229d19e95e3b4eb65634c8f8d1d9c5db"; libraryHaskellDepends = [ aeson attoparsec base bytestring bytestring-builder case-insensitive containers hashable postgresql-libpq scientific @@ -175475,6 +179650,7 @@ self: { homepage = "https://github.com/openbrainsrc/postgresql-simple-sop"; description = "Generic functions for postgresql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postgresql-simple-typed" = callPackage @@ -175492,6 +179668,7 @@ self: { homepage = "https://github.com/tolysz/postgresql-simple-typed"; description = "Typed extension for PostgreSQL simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postgresql-simple-url" = callPackage @@ -175547,6 +179724,7 @@ self: { homepage = "https://github.com/dylex/postgresql-typed"; description = "A PostgreSQL access library with compile-time SQL type inference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postgrest" = callPackage @@ -175617,6 +179795,7 @@ self: { ]; description = "SMTP server library to receive emails from within Haskell programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "postmark" = callPackage @@ -175658,6 +179837,7 @@ self: { homepage = "http://github.com/peti/postmaster"; description = "Postmaster ESMTP Server"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) adns; inherit (pkgs) openssl;}; "potato-tool" = callPackage @@ -175701,6 +179881,7 @@ self: { homepage = "http://projects.haskell.org/diagrams/"; description = "Potrace bindings for the diagrams library"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "powermate" = callPackage @@ -175713,6 +179894,7 @@ self: { homepage = "http://neugierig.org/software/darcs/powermate/"; description = "PowerMate bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "powerpc" = callPackage @@ -175725,6 +179907,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Tools for PowerPC programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ppm" = callPackage @@ -175750,6 +179933,7 @@ self: { homepage = "http://hub.darcs.net/shelarcy/pqc"; description = "Parallel batch driver for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pqueue_1_2_1" = callPackage @@ -175818,6 +180002,7 @@ self: { jailbreak = true; description = "Fully encapsulated monad transformers with queuelike functionality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "practice-room" = callPackage @@ -175836,6 +180021,7 @@ self: { homepage = "http://github.com/nfjinjing/practice-room"; description = "Practice Room"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "precis" = callPackage @@ -175856,6 +180042,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Diff Cabal packages"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pred-set" = callPackage @@ -175932,6 +180119,7 @@ self: { ]; description = "Predicative tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "predicates" = callPackage @@ -176039,6 +180227,7 @@ self: { homepage = "http://www.github.com/massysett/prednote"; description = "Tests and QuickCheck generators to accompany prednote"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prefix-units_0_1_0_2" = callPackage @@ -176106,6 +180295,7 @@ self: { jailbreak = true; description = "A library for building a prefork-style server quickly"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pregame" = callPackage @@ -176125,6 +180315,7 @@ self: { homepage = "https://github.com/jxv/pregame"; description = "Prelude counterpart"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prelude-compat" = callPackage @@ -176198,6 +180389,7 @@ self: { jailbreak = true; description = "Another kind of alternate Prelude file"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prelude-plus" = callPackage @@ -176211,6 +180403,7 @@ self: { libraryHaskellDepends = [ base utf8-string ]; description = "Prelude for rest of us"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prelude-prime" = callPackage @@ -176265,6 +180458,7 @@ self: { jailbreak = true; description = "Preprocess Haskell Repositories"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "preprocessor-tools" = callPackage @@ -176323,6 +180517,7 @@ self: { homepage = "https://github.com/chrisdone/present"; description = "Make presentations for data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "press" = callPackage @@ -176335,6 +180530,7 @@ self: { homepage = "http://github.com/bickfordb/text-press"; description = "Text template library targeted at the web / HTML generation"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "presto-hdbc" = callPackage @@ -176355,6 +180551,7 @@ self: { jailbreak = true; description = "An HDBC connector for Presto"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prettify" = callPackage @@ -176684,6 +180881,7 @@ self: { libraryHaskellDepends = [ base ghc-prim primitive vector ]; description = "SIMD data types and functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "primula-board" = callPackage @@ -176706,6 +180904,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "ImageBoard on Happstack and HSP"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "primula-bot" = callPackage @@ -176725,6 +180924,7 @@ self: { homepage = "http://kagami.touhou.ru/projects/show/primula"; description = "Jabber-bot for primula-board ImageBoard"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pringletons" = callPackage @@ -176742,6 +180942,7 @@ self: { homepage = "https://github.com/andrewthad/pringletons"; description = "Classes and data structures complementing the singletons library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "print-debugger" = callPackage @@ -176754,6 +180955,7 @@ self: { homepage = "https://github.com/JohnReedLOL/HaskellPrintDebugger"; description = "Debug print formatting library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "printf-mauke" = callPackage @@ -176808,6 +181010,7 @@ self: { homepage = "http://code.haskell.org/~mokus/priority-queue"; description = "Simple implementation of a priority queue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "priority-sync" = callPackage @@ -176903,6 +181106,7 @@ self: { ]; description = "Parse process information for Linux"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "process_1_4_2_0" = callPackage @@ -177076,6 +181280,7 @@ self: { homepage = "https://github.com/garious/process-iterio"; description = "IterIO Process Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "process-leksah" = callPackage @@ -177088,6 +181293,7 @@ self: { jailbreak = true; description = "Process libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "process-listlike" = callPackage @@ -177106,6 +181312,7 @@ self: { homepage = "https://github.com/ddssff/process-listlike"; description = "Process extras"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-progress" = callPackage @@ -177123,6 +181330,7 @@ self: { homepage = "https://src.seereason.com/process-progress"; description = "Run a process and do reportsing on its progress"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "process-qq" = callPackage @@ -177141,6 +181349,7 @@ self: { homepage = "http://github.com/tanakh/process-qq"; description = "Quasi-Quoters for exec process"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "process-streaming" = callPackage @@ -177181,8 +181390,8 @@ self: { }: mkDerivation { pname = "processing"; - version = "1.2.0.1"; - sha256 = "ea1670341c6d4cd8b85a1deb30b7be17c324e4dcc563b820a1628d4250f3b9ab"; + version = "1.2.0.2"; + sha256 = "5a8336b15801397de4057a713c83126153fd853e0a989daaea42debeb5463215"; libraryHaskellDepends = [ base blaze-html containers directory filepath mainland-pretty multiset QuickCheck quickcheck-instances template-haskell text @@ -177191,6 +181400,7 @@ self: { jailbreak = true; description = "Web graphic applications with processing.js."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "processor-creative-kit" = callPackage @@ -177218,6 +181428,7 @@ self: { libraryHaskellDepends = [ base procrastinating-variable ]; description = "Pure structures that can be incrementally created in impure code"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "procrastinating-variable" = callPackage @@ -177230,6 +181441,7 @@ self: { homepage = "http://github.com/gcross/procrastinating-variable"; description = "Haskell values that cannot be evaluated immediately"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "procstat" = callPackage @@ -177243,6 +181455,7 @@ self: { homepage = "http://closure.ath.cx/procstat"; description = "get information on processes in Linux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "proctest" = callPackage @@ -177391,6 +181604,7 @@ self: { homepage = "http://antiope.com/downloads.html"; description = "Convert GHC profiles into GraphViz's dot format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prof2pretty" = callPackage @@ -177546,6 +181760,7 @@ self: { libraryHaskellDepends = [ base time ]; description = "Simple progress tracking & projection library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "progressbar" = callPackage @@ -177560,6 +181775,7 @@ self: { executableHaskellDepends = [ base ]; description = "Progressbar API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "progression" = callPackage @@ -177578,6 +181794,7 @@ self: { homepage = "http://chplib.wordpress.com/2010/02/04/progression-supporting-optimisation-in-haskell/"; description = "Automates the recording and graphing of criterion benchmarks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "progressive" = callPackage @@ -177598,6 +181815,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/progression"; description = "Multilabel classification model which learns sequentially (online)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "proj4-hs-bindings" = callPackage @@ -177610,6 +181828,7 @@ self: { librarySystemDepends = [ proj ]; description = "Haskell bindings for the Proj4 C dynamic library"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) proj;}; "project-template_0_1_4_2" = callPackage @@ -177699,6 +181918,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A Prolog interpreter written in Haskell"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prolog-graph" = callPackage @@ -177718,6 +181938,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "A command line tool to visualize query resolution in Prolog"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prolog-graph-lib" = callPackage @@ -177730,6 +181951,7 @@ self: { homepage = "https://github.com/Erdwolf/prolog"; description = "Generating images of resolution trees for Prolog queries"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "prologue" = callPackage @@ -177752,6 +181974,7 @@ self: { homepage = "https://github.com/wdanilo/prologue"; description = "Better, more general Prelude exporting common utilities"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "prometheus" = callPackage @@ -177760,13 +181983,12 @@ self: { }: mkDerivation { pname = "prometheus"; - version = "0.3.2.1"; - sha256 = "91b3a501a73ac11020184c39eb885bf0f373231b65393fe350f00b2bdb58c417"; + version = "0.4.0"; + sha256 = "ec0f31a99e223e31db093af5e62225a723f1f709b859cfa5137e713d3c4e0fe8"; libraryHaskellDepends = [ atomic-primops base bytestring containers http-types text transformers wai warp ]; - jailbreak = true; homepage = "http://github.com/LukeHoersten/prometheus#readme"; description = "Prometheus Haskell Client"; license = stdenv.lib.licenses.bsd3; @@ -177876,6 +182098,7 @@ self: { ]; description = "Functional synthesis of images and animations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "propellor" = callPackage @@ -177935,6 +182158,7 @@ self: { homepage = "https://github.com/mokus0/property-list"; description = "Apple property list parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "proplang" = callPackage @@ -177947,6 +182171,7 @@ self: { homepage = "http://www-users.cs.york.ac.uk/~ndm/proplang/"; description = "A library for functional GUI development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "props" = callPackage @@ -177994,6 +182219,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "Simple audio library for Windows, Linux, OSX"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; "protobuf" = callPackage @@ -178016,6 +182242,7 @@ self: { homepage = "https://github.com/alphaHeavy/protobuf"; description = "Google Protocol Buffers via GHC.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "protobuf-native" = callPackage @@ -178041,6 +182268,7 @@ self: { homepage = "https://github.com/nicta/protobuf-native"; description = "Protocol Buffers via C++"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "protobuf-simple" = callPackage @@ -178373,6 +182601,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "protocol-buffers-fork" = callPackage @@ -178390,6 +182619,7 @@ self: { homepage = "http://darcs.factisresearch.com/pub/protocol-buffers-fork/"; description = "Parse Google Protocol Buffer specifications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "protolude" = callPackage @@ -178459,6 +182689,7 @@ self: { homepage = "https://github.com/prove-everywhere/server"; description = "The server for ProveEverywhere"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "proxied" = callPackage @@ -178484,6 +182715,7 @@ self: { homepage = "https://github.com/jberryman/proxy-kindness"; description = "A library for kind-polymorphic manipulation and inspection of Proxy values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "psc-ide_0_5_0" = callPackage @@ -178697,6 +182929,7 @@ self: { jailbreak = true; description = "Pipe stdin to a redis pub/sub channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "publicsuffix_0_20151212" = callPackage @@ -178779,6 +183012,7 @@ self: { homepage = "https://github.com/litherum/publicsuffixlist"; description = "Create the publicsuffixlist package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pubnub" = callPackage @@ -178813,6 +183047,7 @@ self: { homepage = "http://github.com/pubnub/haskell"; description = "PubNub Haskell SDK"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pubsub" = callPackage @@ -178833,6 +183068,7 @@ self: { homepage = "http://projects.haskell.org/pubsub/"; description = "A library for Google/SixApart pubsub hub interaction"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "puffytools" = callPackage @@ -178863,6 +183099,7 @@ self: { homepage = "https://github.com/pharpend/puffytools"; description = "A CLI assistant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pugixml" = callPackage @@ -178881,6 +183118,7 @@ self: { homepage = "https://github.com/philopon/pugixml-hs"; description = "pugixml binding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pugs-DrIFT" = callPackage @@ -178915,6 +183153,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Fast, lightweight YAML loader and dumper"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "pugs-compat" = callPackage @@ -178946,6 +183185,7 @@ self: { homepage = "http://repetae.net/john/computer/haskell/hsregex/"; description = "Haskell PCRE binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pulse-simple" = callPackage @@ -178977,6 +183217,7 @@ self: { homepage = "https://github.com/bryant/punkt"; description = "Multilingual unsupervised sentence tokenization with Punkt"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "punycode" = callPackage @@ -179015,6 +183256,7 @@ self: { homepage = "http://lpuppet.banquise.net"; description = "A program that displays the puppet resources associated to a node given .pp files."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pure-cdb" = callPackage @@ -179387,7 +183629,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "purescript" = callPackage + "purescript_0_8_5_0" = callPackage ({ mkDerivation, aeson, aeson-better-errors, ansi-wl-pprint, base , base-compat, bower-json, boxes, bytestring, containers, directory , dlist, edit-distance, filepath, fsnotify, Glob, haskeline, hspec @@ -179430,6 +183672,51 @@ self: { homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "purescript" = callPackage + ({ mkDerivation, aeson, aeson-better-errors, ansi-terminal + , ansi-wl-pprint, base, base-compat, bower-json, boxes, bytestring + , containers, directory, dlist, edit-distance, filepath, fsnotify + , Glob, haskeline, hspec, hspec-discover, http-types, HUnit + , language-javascript, lifted-base, monad-control, monad-logger + , mtl, network, optparse-applicative, parallel, parsec + , pattern-arrows, pipes, pipes-http, process, regex-tdfa, safe + , semigroups, silently, sourcemap, spdx, split, stm, syb, text + , time, transformers, transformers-base, transformers-compat + , unordered-containers, utf8-string, vector + }: + mkDerivation { + pname = "purescript"; + version = "0.9.1"; + sha256 = "72a4c9148a5d6b6ec2650185be7b8aa6a43a089d73037f870babd0ded9a5d0e7"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson aeson-better-errors ansi-terminal base base-compat bower-json + boxes bytestring 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 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 filepath Glob haskeline + monad-logger mtl network optparse-applicative parsec process split + stm text time transformers transformers-compat utf8-string + ]; + testHaskellDepends = [ + aeson aeson-better-errors base base-compat boxes bytestring + containers directory filepath Glob haskeline hspec hspec-discover + HUnit mtl optparse-applicative parsec process 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; }) {}; "purescript-bridge" = callPackage @@ -179507,6 +183794,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending push notifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-ccs" = callPackage @@ -179527,6 +183815,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A server-side library for sending/receiving push notifications through CCS (Google Cloud Messaging)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "push-notify-general" = callPackage @@ -179546,6 +183835,7 @@ self: { homepage = "http://gsoc2013cwithmobiledevices.blogspot.com.ar/"; description = "A general library for sending/receiving push notif. through dif. services."; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pusher-haskell" = callPackage @@ -179672,6 +183962,7 @@ self: { homepage = "https://github.com/jwiegley/pushme"; description = "Tool to synchronize multiple directories with rsync, zfs or git-annex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "putlenses" = callPackage @@ -179689,6 +183980,7 @@ self: { jailbreak = true; description = "Put-based lens library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "puzzle-draw" = callPackage @@ -179718,6 +184010,7 @@ self: { ]; description = "Creating graphics for pencil puzzles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "puzzle-draw-cmdline" = callPackage @@ -179737,6 +184030,7 @@ self: { jailbreak = true; description = "Creating graphics for pencil puzzles, command line tools"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "pvd" = callPackage @@ -179757,6 +184051,7 @@ self: { homepage = "http://code.haskell.org/pvd"; description = "A photo viewer daemon application with remote controlling abilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "pwstore-cli" = callPackage @@ -179880,6 +184175,7 @@ self: { jailbreak = true; description = "Serialization/deserialization using Python Pickle format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "qc-oi-testgenerator" = callPackage @@ -179895,6 +184191,7 @@ self: { homepage = "http://www.iai.uni-bonn.de/~jv/GV14.html"; description = "Compile time generation of operation invariance tests for QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "qd" = callPackage @@ -179907,6 +184204,7 @@ self: { librarySystemDepends = [ qd ]; description = "double-double and quad-double number type via libqd"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {qd = null;}; "qd-vec" = callPackage @@ -179918,6 +184216,7 @@ self: { libraryHaskellDepends = [ base qd Vec ]; description = "'Vec' instances for 'qd' types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "qed" = callPackage @@ -179936,6 +184235,7 @@ self: { homepage = "https://github.com/ndmitchell/qed#readme"; description = "Simple prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "qhull-simple" = callPackage @@ -179949,6 +184249,7 @@ self: { homepage = "http://nonempty.org/software/haskell-qhull-simple"; description = "Simple bindings to Qhull, a library for computing convex hulls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) qhull;}; "qrcode" = callPackage @@ -179977,6 +184278,7 @@ self: { homepage = "http://github.com/keerastudios/hsQt"; description = "Qt bindings"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {qtc_core = null; qtc_gui = null; qtc_network = null; qtc_opengl = null; qtc_script = null; qtc_tools = null;}; @@ -180000,6 +184302,7 @@ self: { homepage = "https://github.com/ion1/quadratic-irrational"; description = "An implementation of quadratic irrationals"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quandl-api_0_2_0_0" = callPackage @@ -180058,6 +184361,7 @@ self: { homepage = "https://github.com/boundedvariation/quantfin"; description = "Quant finance library in pure Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quantities" = callPackage @@ -180092,6 +184396,7 @@ self: { homepage = "http://github.com/luqui/quantum-arrow"; description = "An embedding of quantum computation as a Haskell arrow"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "qudb" = callPackage @@ -180111,6 +184416,7 @@ self: { homepage = "https://github.com/jstepien/qudb"; description = "Quite Useless DB"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quenya-verb" = callPackage @@ -180133,6 +184439,7 @@ self: { jailbreak = true; description = "Quenya verb conjugator"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "querystring-pickle" = callPackage @@ -180150,6 +184457,7 @@ self: { ]; description = "Picklers for de/serialising Generic data types to and from query strings"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "questioner" = callPackage @@ -180190,6 +184498,7 @@ self: { libraryHaskellDepends = [ array base containers mtl stateful-mtl ]; description = "A library of queuelike data structures, both functional and stateful"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quick-generator" = callPackage @@ -180243,6 +184552,7 @@ self: { jailbreak = true; description = "QuickBooks API binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quickcheck-assertions_0_1_1" = callPackage @@ -180401,6 +184711,7 @@ self: { ]; description = "Automating QuickCheck for polymorphic and overlaoded properties"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-properties" = callPackage @@ -180459,6 +184770,7 @@ self: { homepage = "http://github.com/audreyt/quickcheck-regex/"; description = "Generate regex-constrained strings for QuickCheck"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-relaxng" = callPackage @@ -180475,6 +184787,7 @@ self: { homepage = "http://github.com/audreyt/quickcheck-relaxng/"; description = "Generate RelaxNG-constrained XML documents for QuickCheck"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickcheck-rematch" = callPackage @@ -180489,6 +184802,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "QuickCheck support for rematch"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quickcheck-script" = callPackage @@ -180623,6 +184937,7 @@ self: { homepage = "http://www.github.com/massysett/quickpull"; description = "Generate Main module with QuickCheck tests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickset" = callPackage @@ -180634,6 +184949,7 @@ self: { libraryHaskellDepends = [ base vector vector-algorithms ]; description = "Very fast and memory-compact query-only set and map structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quickspec" = callPackage @@ -180663,6 +184979,7 @@ self: { homepage = "https://github.com/SamuelSchlesinger/Quickterm"; description = "An interface for describing and executing terminal applications"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quicktest" = callPackage @@ -180679,6 +184996,7 @@ self: { homepage = "https://github.com/davidsiegel/quicktest"; description = "A reflective batch tester for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quickwebapp" = callPackage @@ -180698,6 +185016,7 @@ self: { homepage = "https://github.com/jtanguy/quickwebapp"; description = "A quick webapp generator for any file processing tool"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quiver" = callPackage @@ -180791,6 +185110,7 @@ self: { jailbreak = true; description = "Group and chunk values within a Quiver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quiver-http" = callPackage @@ -180838,6 +185158,7 @@ self: { jailbreak = true; description = "Interleave values from multiple Quivers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "quiver-sort" = callPackage @@ -180862,6 +185183,7 @@ self: { jailbreak = true; description = "Sort the values in a quiver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "quoridor-hs" = callPackage @@ -180887,6 +185209,7 @@ self: { homepage = "https://github.com/talw/quoridor-hs"; description = "A Quoridor implementation in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "qux" = callPackage @@ -180907,6 +185230,7 @@ self: { homepage = "https://github.com/qux-lang/qux"; description = "Command line binary for working with the Qux language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rabocsv2qif" = callPackage @@ -180921,6 +185245,7 @@ self: { executableHaskellDepends = [ base ]; description = "A library and program to create QIF files from Rabobank CSV exports"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rad" = callPackage @@ -180934,6 +185259,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reverse Automatic Differentiation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "radian" = callPackage @@ -180985,6 +185311,7 @@ self: { homepage = "https://github.com/klangner/radium-formula-parser"; description = "Chemistry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "radix" = callPackage @@ -181021,6 +185348,7 @@ self: { homepage = "github"; description = "librados haskell bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {rados = null;}; "rail-compiler-editor" = callPackage @@ -181044,6 +185372,7 @@ self: { homepage = "https://github.com/SWP-Ubau-SoSe2014-Haskell/SWPSoSe14"; description = "Compiler and editor for the esolang rail"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbow_0_20_0_4" = callPackage @@ -181128,6 +185457,7 @@ self: { homepage = "http://www.github.com/massysett/rainbow"; description = "Tests and QuickCheck generators to accompany rainbow"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rainbox_0_18_0_2" = callPackage @@ -181220,6 +185550,7 @@ self: { homepage = "http://github.com/YoEight/rakhana"; description = "Stream based PDF library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ralist" = callPackage @@ -181231,6 +185562,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Random access list with a list compatible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rallod" = callPackage @@ -181243,6 +185575,7 @@ self: { homepage = "http://github.com/moonmaster9000/rallod"; description = "'$' in reverse"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "raml" = callPackage @@ -181270,6 +185603,7 @@ self: { libraryHaskellDepends = [ array base IntervalMap mtl random ]; description = "Random variable library, with Functor, Applicative and Monad instances"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "randfile" = callPackage @@ -181288,6 +185622,7 @@ self: { ]; description = "Program for picking a random file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "random_1_0_1_1" = callPackage @@ -181323,6 +185658,7 @@ self: { libraryHaskellDepends = [ array base containers ]; description = "Random-access lists in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "random-derive" = callPackage @@ -181348,6 +185684,7 @@ self: { jailbreak = true; description = "A simple random generator library for extensible-effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "random-effin" = callPackage @@ -181360,6 +185697,7 @@ self: { jailbreak = true; description = "A simple random generator library for effin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "random-extras" = callPackage @@ -181375,6 +185713,7 @@ self: { homepage = "http://github.com/aristidb/random-extras"; description = "Additional functions for random values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-fu_0_2_6_1" = callPackage @@ -181413,6 +185752,7 @@ self: { homepage = "https://github.com/mokus0/random-fu"; description = "Random number generation"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-hypergeometric" = callPackage @@ -181432,6 +185772,7 @@ self: { homepage = "https://github.com/srijs/random-hypergeometric"; description = "Random variate generation from hypergeometric distributions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "random-shuffle" = callPackage @@ -181472,6 +185813,7 @@ self: { libraryHaskellDepends = [ base binary bytestring random ]; description = "An infinite stream of random data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "random-tree" = callPackage @@ -181509,6 +185851,7 @@ self: { homepage = "https://bitbucket.org/kpratt/random-variate"; description = "\"Uniform RNG => Non-Uniform RNGs\""; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "randomgen" = callPackage @@ -181623,6 +185966,7 @@ self: { libraryHaskellDepends = [ base containers primitive vector ]; description = "Linear range-min algorithms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ranges" = callPackage @@ -181695,7 +186039,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rank1dynamic" = callPackage + "rank1dynamic_0_3_2_0" = callPackage ({ mkDerivation, base, binary, HUnit, test-framework , test-framework-hunit }: @@ -181711,6 +186055,25 @@ self: { homepage = "http://haskell-distributed.github.com"; description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rank1dynamic" = callPackage + ({ mkDerivation, base, binary, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "rank1dynamic"; + version = "0.3.3.0"; + sha256 = "ca32dde8475cf3ec809043ee7393fda51efd6afb741ef02af19c996bb8238f0b"; + libraryHaskellDepends = [ base binary ]; + testHaskellDepends = [ + base HUnit test-framework test-framework-hunit + ]; + homepage = "http://haskell-distributed.github.com"; + description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rascal" = callPackage @@ -181824,7 +186187,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "rasterific-svg" = callPackage + "rasterific-svg_0_3_1_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers, directory , filepath, FontyFruity, JuicyPixels, lens, linear, mtl , optparse-applicative, Rasterific, scientific, svg-tree, text @@ -181848,6 +186211,32 @@ self: { jailbreak = true; description = "SVG renderer based on Rasterific"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rasterific-svg" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, directory + , filepath, FontyFruity, JuicyPixels, lens, linear, mtl + , optparse-applicative, Rasterific, scientific, svg-tree, text + , transformers, vector + }: + mkDerivation { + pname = "rasterific-svg"; + version = "0.3.1.2"; + sha256 = "83c90ea97d73f05003de2a4622ed26754fa52cb94a3341feada477713332a789"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring containers directory filepath FontyFruity + JuicyPixels lens linear mtl Rasterific scientific svg-tree text + transformers vector + ]; + executableHaskellDepends = [ + base directory filepath FontyFruity JuicyPixels + optparse-applicative Rasterific svg-tree + ]; + description = "SVG renderer based on Rasterific"; + license = stdenv.lib.licenses.bsd3; }) {}; "rate-limit" = callPackage @@ -181964,6 +186353,7 @@ self: { homepage = "http://bitbucket.org/dpwiz/raven-haskell"; description = "Sentry http interface for Scotty web server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "raw-strings-qq_1_0_2" = callPackage @@ -182036,6 +186426,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Mask nucleotide (EST) sequences in Fasta format"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rclient" = callPackage @@ -182074,6 +186465,7 @@ self: { homepage = "http://github.com/ekmett/rcu/"; description = "Read-Copy-Update for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rdf4h" = callPackage @@ -182104,6 +186496,7 @@ self: { homepage = "https://github.com/robstewart57/rdf4h"; description = "A library for RDF processing in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rdioh" = callPackage @@ -182126,6 +186519,7 @@ self: { ]; description = "A Haskell wrapper for Rdio's API"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rdtsc" = callPackage @@ -182234,6 +186628,7 @@ self: { homepage = "http://wiki.github.com/paolino/realogic"; description = "pluggable pure logic serializable reactor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactive" = callPackage @@ -182251,6 +186646,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive"; description = "Push-pull functional reactive programming"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-bacon" = callPackage @@ -182264,6 +186660,7 @@ self: { homepage = "http://github.com/raimohanska/reactive-bacon"; description = "FRP (functional reactive programming) framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactive-balsa" = callPackage @@ -182286,6 +186683,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Reactive-balsa"; description = "Programmatically edit MIDI events via ALSA and reactive-banana"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactive-banana" = callPackage @@ -182326,6 +186724,7 @@ self: { homepage = "https://github.com/JPMoresmau/reactive-banana-sdl"; description = "Reactive Banana bindings for SDL"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-banana-sdl2" = callPackage @@ -182354,6 +186753,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Reactive-banana"; description = "Examples for the reactive-banana library, using threepenny-gui"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactive-banana-wx" = callPackage @@ -182371,6 +186771,7 @@ self: { homepage = "http://wiki.haskell.org/Reactive-banana"; description = "Examples for the reactive-banana library, using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "reactive-fieldtrip" = callPackage @@ -182388,6 +186789,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-fieldtrip"; description = "Connect Reactive and FieldTrip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-glut" = callPackage @@ -182404,6 +186806,7 @@ self: { homepage = "http://haskell.org/haskellwiki/reactive-glut"; description = "Connects Reactive and GLUT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reactive-haskell" = callPackage @@ -182444,6 +186847,7 @@ self: { homepage = "https://github.com/strager/reactive-thread"; description = "Reactive programming via imperative threads"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reactivity" = callPackage @@ -182485,6 +186889,7 @@ self: { homepage = "http://comonad.com/reader/"; description = "Reactor - task parallel reactive programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "read-bounded" = callPackage @@ -182609,6 +187014,7 @@ self: { jailbreak = true; description = "Code for reading ESRI Shapefiles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "really-simple-xml-parser" = callPackage @@ -182622,6 +187028,7 @@ self: { homepage = "http://website-ckkashyap.rhcloud.com"; description = "A really simple XML parser"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reasonable-lens" = callPackage @@ -182634,6 +187041,7 @@ self: { homepage = "https://github.com/tokiwoousaka/reasonable-lens"; description = "Lens implementation. It is more small but adequately."; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reasonable-operational" = callPackage @@ -182699,6 +187107,7 @@ self: { homepage = "https://github.com/nikita-volkov/record"; description = "Anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-aeson" = callPackage @@ -182717,6 +187126,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-aeson"; description = "Instances of \"aeson\" classes for the \"record\" types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-gl" = callPackage @@ -182740,6 +187150,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and Nikita Volkov's \"Record\"s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-preprocessor" = callPackage @@ -182760,6 +187171,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-preprocessor"; description = "Compiler preprocessor introducing a syntactic extension for anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "record-syntax" = callPackage @@ -182782,6 +187194,7 @@ self: { homepage = "https://github.com/nikita-volkov/record-syntax"; description = "A library for parsing and processing the Haskell syntax sprinkled with anonymous records"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "records" = callPackage @@ -182794,6 +187207,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/records"; description = "A flexible record system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "records-th" = callPackage @@ -182812,6 +187226,7 @@ self: { homepage = "github.com/lassoinc/records-th"; description = "Template Haskell declarations for the records package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "recursion-schemes" = callPackage @@ -182825,6 +187240,7 @@ self: { homepage = "http://github.com/ekmett/recursion-schemes/"; description = "Generalized bananas, lenses and barbed wire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "recursive-line-count" = callPackage @@ -182861,6 +187277,7 @@ self: { jailbreak = true; description = "Monadic HTTP request handlers combinators to build a standalone web apps"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reddit" = callPackage @@ -183195,6 +187612,7 @@ self: { homepage = "http://github.com/NicolasT/reedsolomon"; description = "Reed-Solomon Erasure Coding in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reenact" = callPackage @@ -183231,6 +187649,7 @@ self: { homepage = "https://bitbucket.org/carter/ref"; description = "Generic Mutable Ref Abstraction Layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ref-fd_0_4" = callPackage @@ -183362,6 +187781,7 @@ self: { homepage = "https://github.com/lazac/references"; description = "Selectors for reading and updating data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "refh" = callPackage @@ -183381,6 +187801,7 @@ self: { homepage = "https://github.com/Raynes/refh"; description = "A command-line tool for pasting to https://www.refheap.com"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "refined" = callPackage @@ -183393,6 +187814,7 @@ self: { homepage = "https://github.com/nikita-volkov/refined"; description = "Refinement types with static and runtime checking"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflection_1_5_1" = callPackage @@ -183516,6 +187938,7 @@ self: { homepage = "http://github.com/jfischoff/reflection-extras"; description = "Utilities for the reflection package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflection-without-remorse" = callPackage @@ -183594,6 +188017,7 @@ self: { jailbreak = true; description = "Functional Reactive Web Apps with Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-dom-contrib" = callPackage @@ -183614,6 +188038,7 @@ self: { homepage = "https://github.com/reflex-frp/reflex-dom-contrib"; description = "A playground for experimenting with infrastructure and common code for reflex applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-dom-helpers" = callPackage @@ -183629,6 +188054,7 @@ self: { homepage = "https://github.com/layer-3-communications/reflex-dom-helpers"; description = "Element tag helpers for working with reflex-dom"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-gloss" = callPackage @@ -183692,6 +188118,7 @@ self: { homepage = "https://github.com/dackerman/reflex-jsx"; description = "Use jsx-like syntax in Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-orphans" = callPackage @@ -183708,6 +188135,7 @@ self: { ]; description = "Useful missing instances for Reflex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reflex-transformers" = callPackage @@ -183783,6 +188211,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Happstack support for reform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "reform-hsp" = callPackage @@ -183795,6 +188224,7 @@ self: { homepage = "http://www.happstack.com/"; description = "Add support for using HSP with Reform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regex-applicative_0_3_0_3" = callPackage @@ -183952,6 +188382,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-regex-deriv/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Brzozowski's Deriviatives"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-dfa" = callPackage @@ -183964,6 +188395,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regex-easy" = callPackage @@ -183999,6 +188431,7 @@ self: { homepage = "https://github.com/audreyt/regex-genex"; description = "From a regex, generate all possible strings it can match"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-parsec" = callPackage @@ -184011,6 +188444,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regex-pcre" = callPackage @@ -184059,6 +188493,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex. Implementing regular expression matching using Antimirov's partial derivatives."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regex-posix" = callPackage @@ -184234,6 +188669,7 @@ self: { jailbreak = true; description = "This combines regex-tdfa with utf8-string to allow searching over UTF8 encoded lazy bytestrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regex-tre" = callPackage @@ -184247,6 +188683,7 @@ self: { homepage = "http://sourceforge.net/projects/lazy-regex"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) tre;}; "regex-type" = callPackage @@ -184273,6 +188710,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; description = "A regular expression library for W3C XML Schema regular expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexchar" = callPackage @@ -184295,6 +188733,7 @@ self: { homepage = "http://functionalley.eu/RegExChar/regExChar.html"; description = "A POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexdot" = callPackage @@ -184307,6 +188746,7 @@ self: { homepage = "http://functionalley.eu/RegExDot/regExDot.html"; description = "A polymorphic, POSIX, extended regex-engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regexp-tries" = callPackage @@ -184324,6 +188764,7 @@ self: { homepage = "http://github.com/baldo/regexp-tries"; description = "Regular Expressions on Tries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regexpr" = callPackage @@ -184363,6 +188804,7 @@ self: { homepage = "http://code.haskell.org/~morrow/code/haskell/regexqq"; description = "A quasiquoter for PCRE regexes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regional-pointers" = callPackage @@ -184379,6 +188821,7 @@ self: { homepage = "https://github.com/basvandijk/regional-pointers/"; description = "Regional memory pointers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions" = callPackage @@ -184396,6 +188839,7 @@ self: { homepage = "https://github.com/basvandijk/regions/"; description = "Provides the region monad for safely opening and working with scarce resources"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadsfd" = callPackage @@ -184412,6 +188856,7 @@ self: { jailbreak = true; description = "Monads-fd instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-monadstf" = callPackage @@ -184429,6 +188874,7 @@ self: { homepage = "https://github.com/basvandijk/regions-monadstf/"; description = "Monads-tf instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regions-mtl" = callPackage @@ -184442,6 +188888,7 @@ self: { homepage = "https://github.com/basvandijk/regions-mtl/"; description = "mtl instances for the RegionT monad transformer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "register-machine-typelevel" = callPackage @@ -184492,6 +188939,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "Generic programming library for regular datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regular-extras" = callPackage @@ -184504,6 +188952,7 @@ self: { jailbreak = true; description = "Additional functions for regular: arbitrary, coarbitrary, and binary get/put"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "regular-web" = callPackage @@ -184521,6 +188970,7 @@ self: { homepage = "http://github.com/chriseidhof/regular-web"; description = "Generic programming for the web"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "regular-xmlpickler" = callPackage @@ -184533,6 +188983,7 @@ self: { homepage = "http://github.com/silkapp/regular-xmlpickler"; description = "Generic generation of HXT XmlPickler instances using Regular"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reheat" = callPackage @@ -184548,6 +188999,7 @@ self: { homepage = "https://github.com/mrVanDalo/reheat"; description = "to make notes and reduce impact on idle time on writing other programms"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rehoo" = callPackage @@ -184585,6 +189037,7 @@ self: { homepage = "https://github.com/kerkomen/rei"; description = "Process lists easily"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reified-records" = callPackage @@ -184598,6 +189051,7 @@ self: { homepage = "http://bitbucket.org/jozefg/reified-records"; description = "Reify records to Maps and back again"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reify" = callPackage @@ -184614,6 +189068,7 @@ self: { homepage = "http://www.cs.mu.oz.au/~bjpop/code.html"; description = "Serialize data"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reinterpret-cast" = callPackage @@ -184627,6 +189082,7 @@ self: { homepage = "https://github.com/nh2/reinterpret-cast"; description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "relacion" = callPackage @@ -184670,6 +189126,7 @@ self: { homepage = "https://github.com/yuga/haskell-relational-record-driver-postgresql8"; description = "PostgreSQL v8.x driver for haskell-relational-record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relational-query" = callPackage @@ -184692,6 +189149,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Typeful, Modular, Relational, algebraic query engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relational-query-HDBC" = callPackage @@ -184711,6 +189169,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "HDBC instance of relational-query and typed query interface for HDBC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relational-record_0_1_4_0" = callPackage @@ -184746,6 +189205,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "Meta package of Relational Record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relational-record-examples" = callPackage @@ -184769,6 +189229,7 @@ self: { ]; description = "Examples of Haskell Relationa Record"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relational-schemas" = callPackage @@ -184786,6 +189247,7 @@ self: { homepage = "http://khibino.github.io/haskell-relational-record/"; description = "RDBMSs' schema templates for relational-query"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "relative-date" = callPackage @@ -184854,6 +189316,7 @@ self: { ]; description = "Cloud Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "remote-debugger" = callPackage @@ -184870,6 +189333,7 @@ self: { homepage = "https://github.com/octomarat/HaskellDebugger"; description = "Interface to ghci debugger"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "remote-json" = callPackage @@ -184895,6 +189359,7 @@ self: { jailbreak = true; description = "Remote Monad implementation of the JSON RPC protocol"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "remote-json-client" = callPackage @@ -184912,6 +189377,7 @@ self: { ]; description = "Web client wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "remote-json-server" = callPackage @@ -184929,6 +189395,7 @@ self: { ]; description = "Web server wrapper for remote-json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "remote-monad" = callPackage @@ -184985,6 +189452,7 @@ self: { homepage = "https://github.com/nikita-volkov/remotion"; description = "A library for client-server applications based on custom protocols"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "renderable" = callPackage @@ -185025,6 +189493,7 @@ self: { jailbreak = true; description = "Define compound types that do not depend on member order"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa_3_3_1_2" = callPackage @@ -185078,6 +189547,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "High performance, regular, shape polymorphic parallel arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-algorithms_3_3_1_2" = callPackage @@ -185119,6 +189589,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Algorithms using the Repa array library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-array" = callPackage @@ -185138,6 +189609,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Bulk array representations and operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa-bytestring" = callPackage @@ -185152,6 +189624,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "(deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-convert" = callPackage @@ -185169,6 +189642,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Packing and unpacking flat tables"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa-devil_0_3_2_2" = callPackage @@ -185198,6 +189672,7 @@ self: { homepage = "https://github.com/RaphaelJ/repa-devil"; description = "Support for image reading and writing of Repa arrays using in-place FFI calls"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libdevil;}; "repa-eval" = callPackage @@ -185231,6 +189706,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Examples using the Repa array library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-fftw" = callPackage @@ -185247,6 +189723,7 @@ self: { ]; description = "Perform fft with repa via FFTW"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-flow" = callPackage @@ -185267,6 +189744,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Data-parallel data flows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa-io_3_3_1_2" = callPackage @@ -185320,6 +189798,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Read and write Repa arrays in various formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-linear-algebra" = callPackage @@ -185333,6 +189812,7 @@ self: { homepage = "https://github.com/marcinmrotek/repa-linear-algebra"; description = "HMatrix operations for Repa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-plugin" = callPackage @@ -185350,6 +189830,7 @@ self: { jailbreak = true; description = "Data Flow Fusion GHC Plugin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-scalar" = callPackage @@ -185379,6 +189860,7 @@ self: { jailbreak = true; description = "Series Expressionss API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa-sndfile" = callPackage @@ -185400,6 +189882,7 @@ self: { ]; description = "Reading and writing sound files with repa arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repa-stream" = callPackage @@ -185413,6 +189896,7 @@ self: { homepage = "http://repa.ouroborus.net"; description = "Stream functions not present in the vector library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repa-v4l2" = callPackage @@ -185433,6 +189917,7 @@ self: { homepage = "https://github.com/cgo/hsimage"; description = "Provides high-level access to webcams"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl" = callPackage @@ -185448,6 +189933,7 @@ self: { homepage = "https://github.com/mikeplus64/repl"; description = "IRC friendly REPL library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repl-toolkit" = callPackage @@ -185467,6 +189953,7 @@ self: { homepage = "https://github.com/ombocomp/repl-toolkit"; description = "Toolkit for quickly whipping up config files and command-line interfaces"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repline" = callPackage @@ -185509,6 +189996,7 @@ self: { homepage = "https://github.com/saep/repo-based-blog"; description = "Blogging module using blaze html for markup"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "repr" = callPackage @@ -185526,6 +190014,7 @@ self: { homepage = "https://github.com/basvandijk/repr"; description = "Render overloaded expressions to their textual representation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "repr-tree-syb" = callPackage @@ -185559,6 +190048,7 @@ self: { homepage = "http://github.com/ekmett/representable-functors/"; description = "Representable functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "representable-profunctors" = callPackage @@ -185592,6 +190082,7 @@ self: { homepage = "http://github.com/ekmett/representable-tries/"; description = "Tries from representations of polynomial functors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "reqcatcher" = callPackage @@ -185750,6 +190241,7 @@ self: { homepage = "http://hub.darcs.net/thielema/resistor-cube"; description = "Compute total resistance of a cube of resistors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "resolve-trivial-conflicts_0_3_2_1" = callPackage @@ -185824,6 +190316,7 @@ self: { homepage = "https://bitbucket.org/tdammers/resource-embed"; description = "Embed data files via C and FFI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "resource-pool_0_2_3_1" = callPackage @@ -185912,6 +190405,7 @@ self: { jailbreak = true; description = "Allocate resources which are guaranteed to be released"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "resourcet_1_1_3_1" = callPackage @@ -186152,6 +190646,7 @@ self: { homepage = "https://github.com/raptros/respond"; description = "process and route HTTP requests and generate responses on top of WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-client_0_4_0_1" = callPackage @@ -186535,6 +191030,7 @@ self: { homepage = "http://www.github.com/silkapp/rest"; description = "Example project for rest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rest-gen_0_16_1_3" = callPackage @@ -187039,6 +191535,7 @@ self: { ]; description = "Rest driver for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rest-snap_0_1_17_14" = callPackage @@ -187395,6 +191892,7 @@ self: { jailbreak = true; homepage = "https://github.com/ozataman/restful-snap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "restricted-workers" = callPackage @@ -187415,6 +191913,7 @@ self: { homepage = "https://github.com/co-dan/interactive-diagrams/wiki/Restricted-Workers"; description = "Running worker processes under system resource restrictions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "restyle" = callPackage @@ -187430,6 +191929,7 @@ self: { jailbreak = true; description = "Convert between camel case and separated words style"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "resumable-exceptions" = callPackage @@ -187442,6 +191942,7 @@ self: { jailbreak = true; description = "A monad transformer for resumable exceptions"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rethinkdb_2_2_0_2" = callPackage @@ -187749,6 +192250,7 @@ self: { homepage = "http://github.com/seanhess/rethinkdb-model"; description = "Useful tools for modeling data with rethinkdb"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rethinkdb-wereHamster" = callPackage @@ -187865,7 +192367,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "retry" = callPackage + "retry_0_7_3" = callPackage ({ mkDerivation, base, data-default-class, exceptions, ghc-prim , hspec, HUnit, mtl, QuickCheck, random, stm, time, transformers }: @@ -187884,6 +192386,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"; + sha256 = "fd63242da0640ff6ab6e8d474388ceca917ee405d40c210431b159a56dd847a7"; + 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 @@ -188026,6 +192549,7 @@ self: { homepage = "http://www.github.com/massysett/rewrite"; description = "open file and rewrite it with new contents"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rewriting" = callPackage @@ -188037,6 +192561,7 @@ self: { libraryHaskellDepends = [ base containers regular ]; description = "Generic rewriting library for regular datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rex" = callPackage @@ -188054,6 +192579,7 @@ self: { homepage = "http://github.com/mgsloan/rex"; description = "A quasi-quoter for typeful results of regex captures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rezoom" = callPackage @@ -188072,6 +192598,7 @@ self: { jailbreak = true; description = "Github resume generator"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rfc3339" = callPackage @@ -188116,6 +192643,7 @@ self: { homepage = "https://github.com/fumieval/rhythm-game-tutorial"; description = "Haskell rhythm game tutorial"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "riak_0_9_1_1" = callPackage @@ -188254,6 +192782,7 @@ self: { homepage = "https://github.com/tel/riemann-hs"; description = "A Riemann client for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "riff" = callPackage @@ -188309,6 +192838,7 @@ self: { homepage = "http://modeemi.fi/~tuomov/riot/"; description = "Riot is an Information Organisation Tool"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) ncurses;}; "ripple" = callPackage @@ -188329,6 +192859,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-haskell"; description = "Ripple payment system library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ripple-federation" = callPackage @@ -188347,6 +192878,7 @@ self: { homepage = "https://github.com/singpolyma/ripple-federation-haskell"; description = "Utilities and types to work with the Ripple federation protocol"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "risc386" = callPackage @@ -188364,6 +192896,7 @@ self: { homepage = "http://www2.tcs.ifi.lmu.de/~abel/"; description = "Reduced instruction set i386 simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rivers" = callPackage @@ -188377,6 +192910,7 @@ self: { homepage = "https://github.com/d-rive/rivers"; description = "Rivers are like Streams, but different"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rivet" = callPackage @@ -188487,6 +193021,7 @@ self: { ]; description = "Restricted monad library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rncryptor" = callPackage @@ -188555,6 +193090,7 @@ self: { homepage = "https://github.com/lfairy/robot"; description = "Simulate keyboard and mouse events"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "robots-txt" = callPackage @@ -188634,6 +193170,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Backend."; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "roguestar-gl" = callPackage @@ -188653,6 +193190,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. Client library."; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "roguestar-glut" = callPackage @@ -188668,6 +193206,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "Sci-fi roguelike game. GLUT front-end."; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rollbar" = callPackage @@ -188778,6 +193317,7 @@ self: { homepage = "http://github.com/ekmett/rope"; description = "Tools for manipulating fingertrees of bytestrings with optional annotations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rosa" = callPackage @@ -188826,8 +193366,8 @@ self: { }: mkDerivation { pname = "rose-trie"; - version = "1.0.0.1"; - sha256 = "669269bdf1cdbec5f3023954fa6c4aee3676253db82fe69e785128afb4ed2805"; + version = "1.0.0.2"; + sha256 = "94eb35048ea15968f66aed88e1598b4e742f129928a880ddbbd4e6a2b38ff99e"; libraryHaskellDepends = [ base containers deepseq minilens mtl transformers ]; @@ -188879,6 +193419,7 @@ self: { homepage = "http://github.com/acowley/roshask"; description = "Haskell support for the ROS robotics framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rosso" = callPackage @@ -188890,6 +193431,7 @@ self: { libraryHaskellDepends = [ base containers deepseq ]; description = "General purpose utility library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rot13" = callPackage @@ -188942,6 +193484,7 @@ self: { homepage = "http://patch-tag.com/r/ekmett/rounding"; description = "Explicit floating point rounding mode wrappers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "roundtrip" = callPackage @@ -188957,6 +193500,7 @@ self: { ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "roundtrip-aeson" = callPackage @@ -188979,6 +193523,7 @@ self: { homepage = "https://github.com/anchor/roundtrip-aeson"; description = "Un-/parse JSON with roundtrip invertible syntax definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "roundtrip-string" = callPackage @@ -188990,6 +193535,7 @@ self: { libraryHaskellDepends = [ base mtl parsec roundtrip ]; description = "Bidirectional (de-)serialization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "roundtrip-xml" = callPackage @@ -189011,6 +193557,7 @@ self: { ]; description = "Bidirectional (de-)serialization for XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "route-generator" = callPackage @@ -189027,6 +193574,7 @@ self: { homepage = "http://github.com/singpolyma/route-generator"; description = "Utility to generate routes for use with yesod-routes"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "route-planning" = callPackage @@ -189046,6 +193594,7 @@ self: { homepage = "https://github.com/tonymorris/route"; description = "A library and utilities for creating a route"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rowrecord" = callPackage @@ -189057,6 +193606,7 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Build records from lists of strings, as from CSV files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rpc" = callPackage @@ -189073,6 +193623,7 @@ self: { ]; description = "type safe rpcs provided as basic IO actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rpc-framework" = callPackage @@ -189093,6 +193644,7 @@ self: { homepage = "http://github.com/mmirman/rpc-framework"; description = "a remote procedure call framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rpf" = callPackage @@ -189125,6 +193677,7 @@ self: { libraryHaskellDepends = [ base directory filepath HaXml process ]; description = "Cozy little project to question unruly rpm packages"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rsagl" = callPackage @@ -189146,6 +193699,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rsagl-frp" = callPackage @@ -189163,6 +193717,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Functional Reactive Programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rsagl-math" = callPackage @@ -189181,6 +193736,7 @@ self: { homepage = "http://roguestar.downstairspeople.org/"; description = "The RogueStar Animation and Graphics Library: Mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rspp" = callPackage @@ -189211,6 +193767,7 @@ self: { homepage = "https://github.com/basvandijk/rss"; description = "A library for generating RSS 2.0 feeds."; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rss-conduit" = callPackage @@ -189262,6 +193819,7 @@ self: { homepage = "http://hackage.haskell.org/package/rss2irc"; description = "watches an RSS/Atom feed and writes it to an IRC channel"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rtcm" = callPackage @@ -189284,6 +193842,7 @@ self: { homepage = "http://github.com/swift-nav/librtcm"; description = "RTCM Library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rtld" = callPackage @@ -189329,6 +193888,7 @@ self: { homepage = "https://github.com/megantti/rtorrent-rpc"; description = "A library for communicating with RTorrent over its XML-RPC interface"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rtorrent-state" = callPackage @@ -189350,6 +193910,7 @@ self: { homepage = "http://github.com/Fuuzetsu/rtorrent-state"; description = "Parsing and manipulation of rtorrent state file contents"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "rubberband" = callPackage @@ -189405,6 +193966,7 @@ self: { homepage = "https://github.com/joelteon/ruby-qq"; description = "rubyish quasiquoters"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ruff" = callPackage @@ -189417,6 +193979,7 @@ self: { homepage = "https://gitorious.org/ruff"; description = "relatively useful fractal functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ruler" = callPackage @@ -189435,6 +193998,7 @@ self: { homepage = "https://github.com/UU-ComputerScience/ruler"; description = "Ruler tool for UHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ruler-core" = callPackage @@ -189453,6 +194017,7 @@ self: { ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "rungekutta" = callPackage @@ -189464,6 +194029,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A collection of explicit Runge-Kutta methods of various orders"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "runghc" = callPackage @@ -189560,6 +194126,7 @@ self: { homepage = "https://github.com/aisamanra/s-cargot"; description = "A flexible, extensible s-expression library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "s3-signer" = callPackage @@ -189652,6 +194219,7 @@ self: { homepage = "https://github.com/reinerp/safe-freeze"; description = "Support for safely freezing multiple arrays in the ST monad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "safe-globals" = callPackage @@ -189663,6 +194231,7 @@ self: { libraryHaskellDepends = [ base stm template-haskell ]; description = "Safe top-level mutable variables which scope like ordinary values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "safe-lazy-io" = callPackage @@ -189677,6 +194246,7 @@ self: { ]; description = "A library providing safe lazy IO features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "safe-length" = callPackage @@ -189710,6 +194280,7 @@ self: { ]; description = "A small wrapper over hs-plugins to allow loading safe plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "safe-printf" = callPackage @@ -189886,6 +194457,7 @@ self: { homepage = "http://acid-state.seize.it/safecopy"; description = "Binary serialization with version control"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safeint" = callPackage @@ -189921,6 +194493,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles/"; description = "Type-safe file handling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-bytestring" = callPackage @@ -189939,6 +194512,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-bytestring/"; description = "Extends safer-file-handles with ByteString operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "safer-file-handles-text" = callPackage @@ -189956,6 +194530,7 @@ self: { homepage = "https://github.com/basvandijk/safer-file-handles-text/"; description = "Extends safer-file-handles with Text operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "saferoute" = callPackage @@ -189985,6 +194560,7 @@ self: { homepage = "http://fremissant.net/shape-syb"; description = "Obtain homogeneous values from arbitrary values, transforming or culling data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "saltine" = callPackage @@ -190045,6 +194621,7 @@ self: { jailbreak = true; description = "Modular web application framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "salvia-demo" = callPackage @@ -190067,6 +194644,7 @@ self: { jailbreak = true; description = "Demo Salvia servers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "salvia-extras" = callPackage @@ -190088,6 +194666,7 @@ self: { jailbreak = true; description = "Collection of non-fundamental handlers for the Salvia web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "salvia-protocol" = callPackage @@ -190105,6 +194684,7 @@ self: { jailbreak = true; description = "Salvia webserver protocol suite supporting URI, HTTP, Cookie and MIME"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "salvia-sessions" = callPackage @@ -190123,6 +194703,7 @@ self: { jailbreak = true; description = "Session support for the Salvia webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "salvia-websocket" = callPackage @@ -190140,6 +194721,7 @@ self: { jailbreak = true; description = "Websocket implementation for the Salvia Webserver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sample-frame" = callPackage @@ -190261,6 +194843,7 @@ self: { ]; description = "Iteratee interface to SamTools library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sandi_0_3_5" = callPackage @@ -190392,6 +194975,7 @@ self: { homepage = "http://github.com/aloiscochard/sarsi"; description = "A universal quickfix toolkit and his protocol"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sasl" = callPackage @@ -190409,6 +194993,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/sasl/wiki"; description = "SASL implementation using simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sat" = callPackage @@ -190423,6 +195008,7 @@ self: { homepage = "http://tcana.info/sat.html"; description = "CNF SATisfier"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sat-micro-hs" = callPackage @@ -190440,6 +195026,7 @@ self: { ]; description = "A minimal SAT solver"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo" = callPackage @@ -190459,6 +195046,7 @@ self: { homepage = "https://github.com/jwaldmann/satchmo"; description = "SAT encoding monad"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-backends" = callPackage @@ -190475,6 +195063,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "driver for external satchmo backends"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-examples" = callPackage @@ -190493,6 +195082,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "examples that show how to use satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-funsat" = callPackage @@ -190509,6 +195099,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "funsat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-minisat" = callPackage @@ -190521,6 +195112,7 @@ self: { homepage = "http://dfa.imn.htwk-leipzig.de/satchmo/"; description = "minisat driver as backend for satchmo"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "satchmo-toysat" = callPackage @@ -190538,6 +195130,7 @@ self: { homepage = "https://github.com/msakai/satchmo-toysat"; description = "toysat driver as backend for satchmo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbp" = callPackage @@ -190570,6 +195163,7 @@ self: { homepage = "https://github.com/swift-nav/libsbp"; description = "SwiftNav's SBP Library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sbv_4_2" = callPackage @@ -190676,6 +195270,7 @@ self: { homepage = "http://leventerkok.github.com/sbv/"; description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sbvPlugin" = callPackage @@ -190696,6 +195291,7 @@ self: { homepage = "http://github.com/LeventErkok/sbvPlugin"; description = "Formally prove properties of Haskell programs using SBV/SMT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sc3-rdu" = callPackage @@ -190741,6 +195337,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/scaleimage"; description = "Scale an image to a new geometry"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalp-webhooks" = callPackage @@ -190767,6 +195364,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scalpel_0_2_1" = callPackage @@ -190866,6 +195464,7 @@ self: { testHaskellDepends = [ array base HUnit ]; description = "An implementation of the Scan Vector Machine instruction set in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scanner" = callPackage @@ -190949,6 +195548,7 @@ self: { homepage = "http://trac.haskell.org/SCC/"; description = "Streaming component combinators"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scenegraph" = callPackage @@ -190967,6 +195567,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SceneGraph"; description = "Scene Graph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scgi" = callPackage @@ -191000,6 +195601,7 @@ self: { jailbreak = true; description = "Marge schedules and show EVR"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "schedule-planner" = callPackage @@ -191075,6 +195677,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Converts ScholarlyMarkdown documents to HTML5/LaTeX/Docx format"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scholdoc-citeproc" = callPackage @@ -191110,6 +195713,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-citeproc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scholdoc-texmath" = callPackage @@ -191134,6 +195738,7 @@ self: { homepage = "http://github.com/timtylin/scholdoc-texmath"; description = "Scholdoc fork of texmath"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scholdoc-types" = callPackage @@ -191151,6 +195756,7 @@ self: { homepage = "http://scholdoc.scholarlymarkdown.com"; description = "Scholdoc fork of pandoc-types"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "schonfinkeling" = callPackage @@ -191201,6 +195807,7 @@ self: { jailbreak = true; description = "Mathematical/physical/chemical constants"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scientific_0_3_3_3" = callPackage @@ -191426,6 +196033,7 @@ self: { homepage = "http://github.com/nominolo/scion"; description = "Haskell IDE library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scion-browser" = callPackage @@ -191462,6 +196070,7 @@ self: { homepage = "http://github.com/JPMoresmau/scion-class-browser"; description = "Command-line interface for browsing and searching packages documentation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scons2dot" = callPackage @@ -191493,6 +196102,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scope-cairo" = callPackage @@ -191515,6 +196125,7 @@ self: { ]; description = "An interactive renderer for plotting time-series data"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scottish" = callPackage @@ -191534,6 +196145,7 @@ self: { homepage = "https://github.com/echaozh/scottish"; description = "scotty with batteries included"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scotty_0_9_0" = callPackage @@ -191665,6 +196277,7 @@ self: { homepage = "https://github.com/welmo/scotty-binding-play"; description = "The Play Framework style data binding in Scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scotty-blaze" = callPackage @@ -191679,6 +196292,7 @@ self: { ]; description = "blaze-html integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scotty-cookie" = callPackage @@ -191721,6 +196335,7 @@ self: { jailbreak = true; description = "Fay integration for Scotty"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scotty-hastache" = callPackage @@ -191738,6 +196353,7 @@ self: { homepage = "https://github.com/scotty-web/scotty-hastache"; description = "Easy Mustache templating support for Scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scotty-params-parser" = callPackage @@ -191746,8 +196362,8 @@ self: { }: mkDerivation { pname = "scotty-params-parser"; - version = "0.5.1"; - sha256 = "ee6a0c5691f93c6acab2e094755299ba2c4e967edf4d911a7f526e293547d2ae"; + version = "0.5.1.1"; + sha256 = "4cfb047b9d2567d714315fdfe11163bff69175209da78d8d99c32dbd75dac56c"; libraryHaskellDepends = [ base-prelude matcher scotty success text transformers unordered-containers @@ -191816,6 +196432,7 @@ self: { homepage = "https://github.com/agrafix/scotty-session"; description = "Adding session functionality to scotty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scotty-tls" = callPackage @@ -191888,6 +196505,7 @@ self: { jailbreak = true; description = "Scrabble play generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "scrape-changes" = callPackage @@ -191900,8 +196518,8 @@ self: { }: mkDerivation { pname = "scrape-changes"; - version = "0.1.0.0"; - sha256 = "6665a3bdabd7225de542b1310494f7cc46199cd24d4795788618f7f39241478a"; + version = "0.1.0.2"; + sha256 = "5a5d38ee976fd528167c84bce3bcbbf842a8ac4142a587872f1ac7e60a9e5e5d"; libraryHaskellDepends = [ async attoparsec base bytestring cron directory email-validate filepath hashable hslogger http-client lens mime-mail network-uri @@ -191937,6 +196555,7 @@ self: { ]; description = "Scrobbling server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scroll" = callPackage @@ -192003,6 +196622,7 @@ self: { homepage = "http://github.com/wereHamster/scrz"; description = "Process management and supervision daemon"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "scyther-proof" = callPackage @@ -192024,6 +196644,7 @@ self: { jailbreak = true; description = "Automatic generation of Isabelle/HOL correctness proofs for security protocols"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sde-solver" = callPackage @@ -192158,6 +196779,7 @@ self: { testHaskellDepends = [ base Cabal hspec hspec-core QuickCheck ]; description = "image compositing with sdl2 - declarative style"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sdl2-image" = callPackage @@ -192172,6 +196794,7 @@ self: { jailbreak = true; description = "Haskell binding to sdl2-image"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; "sdl2-ttf" = callPackage @@ -192229,6 +196852,7 @@ self: { description = "A software defined radio library"; license = stdenv.lib.licenses.bsd3; platforms = [ "x86_64-darwin" "x86_64-linux" ]; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "seacat" = callPackage @@ -192254,6 +196878,7 @@ self: { homepage = "https://github.com/Barrucadu/lambdadelta"; description = "Small web framework using Warp and WAI"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "seal-module" = callPackage @@ -192283,6 +196908,7 @@ self: { homepage = "http://github.com/ekmett/search/"; description = "Infinite search in finite time with Hilbert's epsilon"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sec" = callPackage @@ -192296,6 +196922,7 @@ self: { homepage = "http://github.com/urso/sec"; description = "Semantic Editor Combinators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "secdh" = callPackage @@ -192311,6 +196938,7 @@ self: { homepage = "http://github.com/pgavin/secdh"; description = "SECDH Machine Simulator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "seclib" = callPackage @@ -192454,6 +197082,7 @@ self: { homepage = "https://www.httptwo.com/second-transfer/"; description = "Second Transfer HTTP/2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "secp256k1" = callPackage @@ -192478,6 +197107,7 @@ self: { homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; description = "Bindings for secp256k1 library from Bitcoin Core"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-santa" = callPackage @@ -192497,6 +197127,7 @@ self: { homepage = "https://github.com/rodrigosetti/secret-santa"; description = "Secret Santa game assigner using QR-Codes"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secret-sharing" = callPackage @@ -192518,6 +197149,7 @@ self: { homepage = "http://monoid.at/code"; description = "Information-theoretic secure secret sharing"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "secrm" = callPackage @@ -192532,6 +197164,7 @@ self: { jailbreak = true; description = "Example of writing \"secure\" file removal in Haskell rather than C"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "secure-sockets" = callPackage @@ -192632,6 +197265,7 @@ self: { librarySystemDepends = [ sedna ]; description = "Sedna C API XML Binding"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {sedna = null;}; "select" = callPackage @@ -192661,6 +197295,7 @@ self: { homepage = "http://github.com/rcallahan/selectors"; description = "CSS Selectors for DOM traversal"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "selenium" = callPackage @@ -192672,6 +197307,7 @@ self: { libraryHaskellDepends = [ base HTTP HUnit mtl network pretty ]; description = "Test web applications through a browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "selenium-server" = callPackage @@ -192693,6 +197329,7 @@ self: { homepage = "https://github.com/joelteon/selenium-server.git"; description = "Run the selenium standalone server for usage with webdriver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "selfrestart" = callPackage @@ -192718,6 +197355,7 @@ self: { homepage = "https://github.com/luite/selinux"; description = "SELinux bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {selinux = null;}; "semaphore-plus" = callPackage @@ -192744,6 +197382,7 @@ self: { ]; description = "Weakened partial isomorphisms, reversible computations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semigroupoid-extras_4_0" = callPackage @@ -192905,6 +197544,7 @@ self: { homepage = "https://github.com/NICTA/semigroupoids-syntax"; description = "RebindableSyntax using the semigroupoids package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "semigroups_0_16" = callPackage @@ -193030,6 +197670,7 @@ self: { homepage = "http://github.com/ppetr/semigroups-actions/"; description = "Semigroups actions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "semiring" = callPackage @@ -193052,6 +197693,7 @@ self: { homepage = "http://github.com/srush/SemiRings/tree/master"; description = "Semirings, ring-like structures used for dynamic programming applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "semiring-simple" = callPackage @@ -193096,6 +197738,7 @@ self: { jailbreak = true; description = "An implementation of semver and semantic version ranges"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sendfile" = callPackage @@ -193155,6 +197798,7 @@ self: { homepage = "https://github.com/hspec/sensei#readme"; description = "Automatically run Hspec tests on file modifications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sensenet" = callPackage @@ -193174,6 +197818,7 @@ self: { homepage = "https://github.com/rossdylan/sensenet"; description = "Distributed sensor network for the raspberry pi"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sentry" = callPackage @@ -193196,6 +197841,7 @@ self: { homepage = "https://github.com/noteed/sentry"; description = "Process monitoring tool written and configured in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "senza" = callPackage @@ -193252,6 +197898,7 @@ self: { homepage = "http://fremissant.net/seqaid"; description = "Dynamic strictness control, including space leak repair"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "seqalign" = callPackage @@ -193263,6 +197910,7 @@ self: { libraryHaskellDepends = [ base bytestring vector ]; description = "Sequence Alignment"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "seqid_0_1_0" = callPackage @@ -193282,10 +197930,10 @@ self: { ({ mkDerivation, base, mtl, transformers }: mkDerivation { pname = "seqid"; - version = "0.4.1"; - sha256 = "e04b5e0403eddd50f8aeefd6fcefacbf517c918acc12a9506911fec89de0cf51"; + version = "0.5.0"; + sha256 = "54d4602699b9e3a59d9fbe27258005ee877f0871b4d285e25336231e43953c15"; libraryHaskellDepends = [ base mtl transformers ]; - jailbreak = true; + homepage = "https://github.com/LukeHoersten/seqid"; description = "Sequence ID production and consumption"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193307,10 +197955,10 @@ self: { ({ mkDerivation, base, io-streams, seqid }: mkDerivation { pname = "seqid-streams"; - version = "0.4.1"; - sha256 = "07d9499db3a11f7e0f3d1c8611315e9b84d76cc576056aeb4cd005f5cc737f36"; + version = "0.5.0"; + sha256 = "3b553c7bf0ae0ce770e70ab970739fe815831d025c6cc32d7c351b710a9de2a6"; libraryHaskellDepends = [ base io-streams seqid ]; - jailbreak = true; + homepage = "https://github.com/LukeHoersten/seqid-streams"; description = "Sequence ID IO-Streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -193414,6 +198062,7 @@ self: { homepage = "http://www.ingolia-lab.org/seqloc-datafiles-tutorial.html"; description = "Read and write BED and GTF format genome annotations"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sequence" = callPackage @@ -193443,6 +198092,7 @@ self: { homepage = "https://github.com/lukemaurer/sequent-core"; description = "Alternative Core language for GHC plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sequential-index" = callPackage @@ -193478,6 +198128,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/sequor"; description = "A sequence labeler based on Collins's sequence perceptron"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "serf" = callPackage @@ -193558,6 +198209,7 @@ self: { homepage = "http://github.com/githubuser/serpentine#readme"; description = "Simple project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "serv" = callPackage @@ -194208,6 +198860,7 @@ self: { homepage = "https://github.com/cutsea110/servant-csharp.git"; description = "Generate servant client library for C#"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-docs_0_3_1" = callPackage @@ -194440,6 +199093,7 @@ self: { homepage = "http://haskell-servant.readthedocs.org/"; description = "generate API docs for your servant webservice"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "servant-ede" = callPackage @@ -194451,8 +199105,8 @@ self: { pname = "servant-ede"; version = "0.5.1"; sha256 = "54e929c1c77acb04e808aabc485cf80f19724330e233ae5b6255d41d45ac957c"; - revision = "1"; - editedCabalFile = "6649944b61ad4bd96d1e5cbec7f7a67d3689e6fba0dcde1b6d94286a621068e6"; + revision = "2"; + editedCabalFile = "7145131abeb7f67475bf1c11bcf95cafff1483b370d7c53f10c49c8a29c7e519"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -194463,7 +199117,6 @@ self: { executableHaskellDepends = [ base ede http-media servant-server warp ]; - jailbreak = true; homepage = "http://github.com/alpmestan/servant-ede"; description = "Combinators for rendering EDE templates in servant web applications"; license = stdenv.lib.licenses.bsd3; @@ -194487,6 +199140,7 @@ self: { homepage = "http://github.com/mattjbray/servant-elm#readme"; description = "Automatically derive Elm functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-examples" = callPackage @@ -194511,6 +199165,7 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Example programs for servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-foreign" = callPackage @@ -194541,6 +199196,7 @@ self: { homepage = "http://github.com/finlay/servant-github#readme"; description = "Bindings to GitHub API using servant"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-haxl-client" = callPackage @@ -194570,6 +199226,7 @@ self: { homepage = "http://github.com/ElvishJerricco/servant-haxl-client/"; description = "automatical derivation of querying functions for servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "servant-jquery_0_2_2_1" = callPackage @@ -194740,6 +199397,7 @@ self: { homepage = "http://haskell-servant.github.io/"; description = "Automatically derive (jquery) javascript functions to query servant webservices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-js" = callPackage @@ -194843,6 +199501,7 @@ self: { jailbreak = true; description = "Use Pandoc to render servant API documentation"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "servant-pool" = callPackage @@ -194858,6 +199517,7 @@ self: { homepage = "http://github.com/zalora/servant-pool"; description = "Utility functions for creating servant 'Context's with \"context/connection pooling\" support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-postgresql" = callPackage @@ -194875,6 +199535,7 @@ self: { homepage = "http://github.com/zalora/servant-postgresql"; description = "Useful functions and instances for using servant with a PostgreSQL context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-quickcheck" = callPackage @@ -194953,6 +199614,7 @@ self: { homepage = "http://github.com/zalora/servant"; description = "Generate a web service for servant 'Resource's using scotty and JSON"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "servant-server_0_2_4" = callPackage @@ -195301,7 +199963,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "servant-swagger" = callPackage + "servant-swagger_1_0_3" = callPackage ({ mkDerivation, aeson, aeson-qq, base, bytestring, doctest, Glob , hspec, http-media, lens, QuickCheck, servant, swagger2, text , time, unordered-containers @@ -195310,8 +199972,8 @@ self: { pname = "servant-swagger"; version = "1.0.3"; sha256 = "ea1b3c7f33ae1c788ef33858c9c74849f450155c1bd81dcd472a36389aa17597"; - revision = "1"; - editedCabalFile = "9d906155448bdd1c213cc8ee6027eb9c16f40dbdcbc9e23509ed382446851807"; + revision = "2"; + editedCabalFile = "9277b2e27decd3ec1b02132a8963a70dd8c3624087bf1a7bbad42da95030f85b"; libraryHaskellDepends = [ aeson base bytestring hspec http-media lens QuickCheck servant swagger2 text unordered-containers @@ -195324,6 +199986,57 @@ self: { homepage = "https://github.com/haskell-servant/servant-swagger"; description = "Generate Swagger specification for your servant API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "servant-swagger" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, bytestring, directory + , doctest, filepath, hspec, http-media, insert-ordered-containers + , lens, QuickCheck, servant, swagger2, text, time + , unordered-containers + }: + mkDerivation { + pname = "servant-swagger"; + version = "1.1"; + sha256 = "cf3aed6fd51e7078e27c0ee745f2718c43058047dd0996256a920675dee9f311"; + libraryHaskellDepends = [ + aeson base bytestring hspec http-media insert-ordered-containers + lens QuickCheck servant swagger2 text unordered-containers + ]; + testHaskellDepends = [ + aeson aeson-qq base directory doctest filepath hspec lens + QuickCheck servant swagger2 text time + ]; + homepage = "https://github.com/haskell-servant/servant-swagger"; + description = "Generate Swagger specification for your servant API"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "servant-swagger-ui" = callPackage + ({ mkDerivation, aeson, base, base-compat, blaze-markup, bytestring + , directory, file-embed, filepath, http-media, lens, servant + , servant-blaze, servant-server, servant-swagger, swagger2 + , template-haskell, text, wai, wai-app-static, warp + }: + mkDerivation { + pname = "servant-swagger-ui"; + version = "0.1.0.2.1.4"; + sha256 = "88fee2a597f8810a7da56c15210e4019b407456e4a127fad5e9b08b2a8f41ff1"; + libraryHaskellDepends = [ + base blaze-markup bytestring directory file-embed filepath + http-media servant servant-blaze servant-server servant-swagger + swagger2 template-haskell text wai-app-static + ]; + testHaskellDepends = [ + aeson base base-compat blaze-markup bytestring directory file-embed + filepath http-media lens servant servant-blaze servant-server + servant-swagger swagger2 template-haskell text wai wai-app-static + warp + ]; + homepage = "https://github.com/phadej/servant-swagger-ui#readme"; + description = "Servant swagger ui"; + license = stdenv.lib.licenses.bsd3; }) {}; "servant-yaml" = callPackage @@ -195436,6 +200149,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using acid-state"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serversession-backend-persistent_1_0_1" = callPackage @@ -195493,6 +200207,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Storage backend for serversession using persistent and an RDBMS"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "serversession-backend-redis_1_0" = callPackage @@ -195560,6 +200275,7 @@ self: { homepage = "https://github.com/yesodweb/serversession"; description = "Snap bindings for serversession"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "serversession-frontend-wai" = callPackage @@ -195673,6 +200389,7 @@ self: { jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sessions" = callPackage @@ -195688,6 +200405,7 @@ self: { homepage = "http://www.wellquite.org/sessions/"; description = "Session Types for Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "set-cover" = callPackage @@ -195706,6 +200424,7 @@ self: { homepage = "http://hub.darcs.net/thielema/set-cover/"; description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "set-extra_1_3_2" = callPackage @@ -195759,6 +200478,7 @@ self: { ]; description = "Set of elements sorted by a different data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "setdown" = callPackage @@ -195891,6 +200611,7 @@ self: { jailbreak = true; description = "Small (TH) library to declare setters for typical `record' data type fields"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "settings" = callPackage @@ -195927,6 +200648,7 @@ self: { homepage = "https://github.com/scvalex/sexp"; description = "S-Expression parsing/printing made fun and easy"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sexp-grammar" = callPackage @@ -195949,6 +200671,7 @@ self: { homepage = "https://github.com/esmolanka/sexp-grammar"; description = "Invertible parsers for S-expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sexp-show" = callPackage @@ -195982,6 +200705,7 @@ self: { executableHaskellDepends = [ QuickCheck random ]; description = "S-expression printer and parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sext" = callPackage @@ -195995,6 +200719,7 @@ self: { homepage = "http://github.com/dzhus/sext/"; description = "Lists, Texts and ByteStrings with type-encoded length"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sfml-audio" = callPackage @@ -196071,6 +200796,7 @@ self: { homepage = "http://blog.malde.org/"; description = "Sgrep - grep Fasta files for sequences matching a regular expression"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sha-streams" = callPackage @@ -196110,6 +200836,7 @@ self: { homepage = "http://github.com/karun012/shadower"; description = "An automated way to run doctests in files that are changing"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shadowsocks" = callPackage @@ -196153,6 +200880,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shady-graphics" = callPackage @@ -196171,6 +200899,7 @@ self: { homepage = "http://haskell.org/haskellwiki/shady"; description = "Functional GPU programming - DSEL & compiler"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shake_0_14_2" = callPackage @@ -196384,7 +201113,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "shake" = callPackage + "shake_0_15_6" = callPackage ({ mkDerivation, base, binary, bytestring, deepseq, directory , extra, filepath, hashable, js-flot, js-jquery, primitive, process , QuickCheck, random, time, transformers, unix @@ -196415,6 +201144,40 @@ self: { homepage = "http://shakebuild.com"; description = "Build system library, like Make, but more accurate dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "shake" = callPackage + ({ mkDerivation, base, binary, bytestring, deepseq, directory + , extra, filepath, hashable, js-flot, js-jquery, primitive, process + , QuickCheck, random, time, transformers, unix + , unordered-containers, utf8-string + }: + mkDerivation { + pname = "shake"; + version = "0.15.8"; + sha256 = "74fff084c55cc7c610d76f4811a7d382948eb472e2d340fe29640367cbdac529"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process random time transformers unix + unordered-containers utf8-string + ]; + executableHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery primitive process random time transformers unix + unordered-containers utf8-string + ]; + testHaskellDepends = [ + base binary bytestring deepseq directory extra filepath hashable + js-flot js-jquery process QuickCheck random time transformers unix + unordered-containers utf8-string + ]; + doCheck = false; + homepage = "http://shakebuild.com"; + description = "Build system library, like Make, but more accurate dependencies"; + license = stdenv.lib.licenses.bsd3; }) {}; "shake-cabal-build" = callPackage @@ -196449,6 +201212,7 @@ self: { homepage = "http://thoughtpolice.github.com/shake-extras"; description = "Extra utilities for shake build systems"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shake-language-c_0_6_3" = callPackage @@ -196685,6 +201449,7 @@ self: { homepage = "http://github.com/bonnefoa/Shaker"; description = "simple and interactive command-line build tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shakespeare_2_0_2_1" = callPackage @@ -197112,6 +201877,7 @@ self: { homepage = "http://github.com/jberryman/shapely-data"; description = "Generics using @(,)@ and @Either@, with algebraic operations and typed conversions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sharc-timbre" = callPackage @@ -197143,6 +201909,7 @@ self: { jailbreak = true; description = "A circular buffer built on shared memory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shared-fields" = callPackage @@ -197201,6 +201968,7 @@ self: { homepage = "http://personal.cis.strath.ac.uk/~conor/pub/she"; description = "A Haskell preprocessor adding miscellaneous features"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shelduck" = callPackage @@ -197231,6 +201999,7 @@ self: { ]; description = "Test webhooks locally"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "shell-conduit_4_5" = callPackage @@ -197342,6 +202111,7 @@ self: { homepage = "http://gnu.rtin.bz/directory/devel/prog/other/shell-haskell.html"; description = "Pipe streams through external shell commands"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shellish" = callPackage @@ -197359,6 +202129,7 @@ self: { homepage = "http://repos.mornfall.net/shellish"; description = "shell-/perl- like (systems) programming in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "shellmate" = callPackage @@ -197880,6 +202651,7 @@ self: { jailbreak = true; description = "A simple gtk based Russian Roulette game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shpider" = callPackage @@ -197897,6 +202669,7 @@ self: { homepage = "http://github.com/ozataman/shpider"; description = "Web automation library in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "shplit" = callPackage @@ -198002,6 +202775,7 @@ self: { homepage = "http://mypage.iu.edu/~gdweber/software/sifflet/"; description = "Library of modules shared by sifflet and its tests and its exporters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gdk_x11 = null; gtk_x11 = null;}; "sign" = callPackage @@ -198053,6 +202827,7 @@ self: { ]; description = "Synchronous signal processing for DSLs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "signed-multiset" = callPackage @@ -198065,6 +202840,7 @@ self: { jailbreak = true; description = "Multisets with negative membership"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "silently_1_2_4_1" = callPackage @@ -198105,6 +202881,7 @@ self: { homepage = "http://github.com/mikeizbicki/simd"; description = "simple interface to GHC's SIMD instructions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simgi" = callPackage @@ -198124,6 +202901,7 @@ self: { homepage = "http://simgi.sourceforge.net/"; description = "stochastic simulation engine"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple" = callPackage @@ -198198,6 +202976,7 @@ self: { librarySystemDepends = [ bluetooth ]; description = "Simple Bluetooth API for Windows and Linux (bluez)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {bluetooth = null;}; "simple-c-value" = callPackage @@ -198221,6 +203000,7 @@ self: { homepage = "https://github.com/jfischoff/simple-c-value"; description = "A simple C value type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-conduit" = callPackage @@ -198244,6 +203024,7 @@ self: { homepage = "http://github.com/jwiegley/simple-conduit"; description = "A simple streaming I/O library based on monadic folds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-config" = callPackage @@ -198262,6 +203043,7 @@ self: { homepage = "https://github.com/yunomu/simple-config"; description = "Simple config file parser generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-css" = callPackage @@ -198277,6 +203059,7 @@ self: { ]; description = "simple binding of css and html"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-eval" = callPackage @@ -198305,6 +203088,7 @@ self: { homepage = "https://github.com/aleator/simple-firewire"; description = "Simplified interface for firewire cameras"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-form" = callPackage @@ -198322,6 +203106,7 @@ self: { homepage = "https://github.com/singpolyma/simple-form-haskell"; description = "Forms that configure themselves based on type"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-genetic-algorithm" = callPackage @@ -198386,6 +203171,7 @@ self: { jailbreak = true; description = "Allows simple indexation on any data type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-log" = callPackage @@ -198417,6 +203203,7 @@ self: { homepage = "http://github.com/mvoidex/simple-log-syslog"; description = "Syslog backend for simple-log"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-neural-networks" = callPackage @@ -198490,6 +203277,7 @@ self: { ]; description = "Simplified Pascal language to SSVM compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simple-pipe" = callPackage @@ -198525,6 +203313,7 @@ self: { homepage = "http://simple.cx"; description = "Connector package for integrating postgresql-orm with the Simple web framework"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simple-reflect" = callPackage @@ -198784,6 +203573,7 @@ self: { homepage = "http://github.com/dzhus/simple-vec3/"; description = "Three-dimensional vectors of doubles with basic operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "simpleargs" = callPackage @@ -198842,6 +203632,7 @@ self: { ]; description = "Haskell interface for the simplenote API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simpleprelude" = callPackage @@ -198861,6 +203652,7 @@ self: { jailbreak = true; description = "A simplified Haskell prelude for teaching"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simplesmtpclient" = callPackage @@ -198887,6 +203679,7 @@ self: { homepage = "http://hub.darcs.net/thoferon/simplessh"; description = "Simple wrapper around libssh2"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {ssh2 = null;}; "simplest-sqlite" = callPackage @@ -198905,6 +203698,7 @@ self: { homepage = "comming soon"; description = "Simplest SQLite3 binding"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) sqlite;}; "simplex" = callPackage @@ -198958,6 +203752,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Simulate sequencing with different models for priming and errors"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "simtreelo" = callPackage @@ -198999,6 +203794,7 @@ self: { homepage = "http://sigkill.dk/programs/sindre"; description = "A programming language for simple GUIs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libXft;}; "singleton-nats" = callPackage @@ -199191,6 +203987,7 @@ self: { ]; description = "Sirkel, a Chord DHT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sitemap" = callPackage @@ -199220,6 +204017,7 @@ self: { jailbreak = true; description = "Sized sequence data-types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sized-types" = callPackage @@ -199260,6 +204058,7 @@ self: { homepage = "https://github.com/konn/sized-vector"; description = "Size-parameterized vector types and functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sizes" = callPackage @@ -199301,6 +204100,7 @@ self: { executableToolDepends = [ alex happy ]; description = "Simple JavaScript Profiler"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "skein_1_0_9_1" = callPackage @@ -199404,6 +204204,7 @@ self: { ]; description = "a tool to access the OSX keychain"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "skeletons" = callPackage @@ -199441,6 +204242,7 @@ self: { homepage = "https://github.com/pharpend/skell"; description = "An overly complex Haskell web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "skemmtun" = callPackage @@ -199492,6 +204294,7 @@ self: { homepage = "https://github.com/emonkak/haskell-skype"; description = "Skype Desktop API binding for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "skypelogexport" = callPackage @@ -199531,6 +204334,7 @@ self: { jailbreak = true; description = "Haskell API for interacting with Slack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "slack-api" = callPackage @@ -199671,7 +204475,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "slave-thread" = callPackage + "slave-thread_1_0_1" = callPackage ({ mkDerivation, base, base-prelude, HTF, list-t, mmorph , partial-handler, QuickCheck, quickcheck-instances, SafeSemaphore , stm-containers, transformers @@ -199691,6 +204495,29 @@ self: { homepage = "https://github.com/nikita-volkov/slave-thread"; description = "A principal solution to ghost threads and silent exceptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "slave-thread" = callPackage + ({ mkDerivation, base, base-prelude, HTF, list-t, mmorph + , partial-handler, QuickCheck, quickcheck-instances, SafeSemaphore + , stm-containers, transformers + }: + mkDerivation { + pname = "slave-thread"; + version = "1.0.1.1"; + sha256 = "2ebab4f5f49b75fb41cfe9514e1ad5de2c118125dd549e6d7ce318e425d4575f"; + libraryHaskellDepends = [ + base base-prelude list-t mmorph partial-handler stm-containers + transformers + ]; + testHaskellDepends = [ + base base-prelude HTF QuickCheck quickcheck-instances SafeSemaphore + ]; + doCheck = false; + homepage = "https://github.com/nikita-volkov/slave-thread"; + description = "A principal solution to ghost threads and silent exceptions"; + license = stdenv.lib.licenses.mit; }) {}; "sleep" = callPackage @@ -199742,6 +204569,7 @@ self: { ]; description = "ws convert markdown to reveal-js"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sloane" = callPackage @@ -199792,6 +204620,7 @@ self: { libraryHaskellDepends = [ base mtl process ]; description = "Testing for minimal strictness"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "slug_0_1_1" = callPackage @@ -199867,6 +204696,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/bytearray"; description = "low-level unboxed arrays, with minimal features"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smallcaps_0_6_0_1" = callPackage @@ -199991,6 +204821,7 @@ self: { homepage = "http://github.com/noteed/smallpt-hs"; description = "A Haskell port of the smallpt path tracer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smallstring" = callPackage @@ -200008,6 +204839,7 @@ self: { homepage = "http://community.haskell.org/~aslatter/code/smallstring/"; description = "A Unicode text type, optimized for low memory overhead"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smaoin" = callPackage @@ -200038,6 +204870,7 @@ self: { homepage = "http://patch-tag.com/r/salazar/smartGroup"; description = "group strings or bytestrings by words in common"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smartcheck" = callPackage @@ -200059,6 +204892,7 @@ self: { homepage = "https://github.com/leepike/SmartCheck"; description = "A smarter QuickCheck"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smartconstructor" = callPackage @@ -200072,6 +204906,7 @@ self: { homepage = "http://github.com/frerich/smartconstructor"; description = "A package exposing a helper function for generating smart constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smartword" = callPackage @@ -200088,6 +204923,7 @@ self: { homepage = "http://kyagrd.dyndns.org/~kyagrd/project/smartword/"; description = "Web based flash card for Word Smart I and II vocabularies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sme" = callPackage @@ -200099,6 +204935,7 @@ self: { libraryHaskellDepends = [ base ]; description = "A library for Secure Multi-Execution in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smoothie_0_1_3" = callPackage @@ -200185,6 +205022,7 @@ self: { homepage = "https://github.com/GetShopTV/smsaero"; description = "SMSAero API and HTTP client based on servant library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smt-lib" = callPackage @@ -200198,6 +205036,7 @@ self: { homepage = "http://tomahawkins.org"; description = "Parsing and printing SMT-LIB"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtLib_1_0_7" = callPackage @@ -200241,6 +205080,7 @@ self: { ]; description = "A type-safe interface to communicate with an SMT solver"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smtp-mail" = callPackage @@ -200280,6 +205120,7 @@ self: { homepage = "https://github.com/avieth/smtp-mail-ng"; description = "An SMTP client EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "smtp2mta" = callPackage @@ -200294,6 +205135,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Listen for SMTP traffic and send it to an MTA script"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "smtps-gmail" = callPackage @@ -200339,6 +205181,7 @@ self: { libraryHaskellDepends = [ base GLUT OpenGL random ]; description = "Snake Game Using OpenGL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "snap_0_13_3_2" = callPackage @@ -200616,6 +205459,7 @@ self: { homepage = "http://snapframework.com/"; description = "Top-level package for the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-accept" = callPackage @@ -200629,6 +205473,7 @@ self: { homepage = "http://github.com/zimothy/snap-accept"; description = "Accept header branching for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "snap-app" = callPackage @@ -200661,6 +205506,7 @@ self: { homepage = "https://github.com/dzhus/snap-auth-cli"; description = "Command-line tool to manage Snap AuthManager database"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-blaze" = callPackage @@ -200856,6 +205702,7 @@ self: { homepage = "http://github.com/ocharles/snap-cors"; description = "Add CORS headers to Snap applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-elm" = callPackage @@ -200890,6 +205737,7 @@ self: { homepage = "http://github.com/ocharles/snap-error-collector"; description = "Collect errors in batches and dispatch them"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-extras" = callPackage @@ -200921,6 +205769,7 @@ self: { jailbreak = true; description = "A collection of useful helpers and utilities for Snap web applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-language" = callPackage @@ -200956,6 +205805,7 @@ self: { homepage = "http://snapframework.com/"; description = "Snap: A Haskell Web Framework: dynamic loader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-loader-static" = callPackage @@ -200996,6 +205846,7 @@ self: { ]; description = "Declarative routing for Snap"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-routes" = callPackage @@ -201014,6 +205865,7 @@ self: { jailbreak = true; description = "Typesafe URLs for Snap applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-server_0_9_4_5" = callPackage @@ -201144,6 +205996,7 @@ self: { homepage = "https://github.com/dbp/snap-testing"; description = "A library for BDD-style testing with the Snap Web Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-utils" = callPackage @@ -201162,6 +206015,7 @@ self: { homepage = "https://github.com/LukeHoersten/snap-utils"; description = "Snap Framework utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snap-web-routes" = callPackage @@ -201178,6 +206032,7 @@ self: { homepage = "https://github.com/lukerandall/snap-web-routes"; description = "Type safe URLs for Snap"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-acid-state" = callPackage @@ -201193,6 +206048,7 @@ self: { homepage = "https://github.com/mightybyte/snaplet-acid-state"; description = "acid-state snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-actionlog" = callPackage @@ -201218,6 +206074,7 @@ self: { homepage = "https://github.com/soostone/snaplet-actionlog"; description = "Generic action log snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-amqp" = callPackage @@ -201236,6 +206093,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-amqp"; description = "Snap framework snaplet for the AMQP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-auth-acid" = callPackage @@ -201257,6 +206115,7 @@ self: { jailbreak = true; description = "Provides an Acid-State backend for the Auth Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-coffee" = callPackage @@ -201274,6 +206133,7 @@ self: { homepage = "https://github.com/AtticHacker/snaplet-coffee"; description = "CoffeeScript for Snap, auto-compilation and pre-compilation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-css-min" = callPackage @@ -201292,6 +206152,7 @@ self: { homepage = "https://github.com/zmthy/snaplet-css-min"; description = "A Snaplet for CSS minification"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-environments" = callPackage @@ -201309,6 +206170,7 @@ self: { jailbreak = true; description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-fay_0_3_3_8" = callPackage @@ -201434,6 +206296,7 @@ self: { homepage = "https://github.com/faylang/snaplet-fay"; description = "Fay integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ghcjs" = callPackage @@ -201450,6 +206313,7 @@ self: { ]; description = "Serve javascript files compiled with GHCJS"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hasql" = callPackage @@ -201467,6 +206331,7 @@ self: { homepage = "https://github.com/mikeplus64/snaplet-hasql"; description = "A Hasql snaplet"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-haxl" = callPackage @@ -201484,6 +206349,7 @@ self: { homepage = "https://github.com/ChristopherBiscardi/snaplet-haxl"; description = "Snaplet for Facebook's Haxl"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hdbc" = callPackage @@ -201506,6 +206372,7 @@ self: { homepage = "http://norm2782.com/"; description = "HDBC snaplet for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-hslogger" = callPackage @@ -201523,6 +206390,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-logger"; description = "Snap framework snaplet for the Logger API library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-i18n" = callPackage @@ -201547,6 +206415,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-i18n"; description = "snaplet-i18n"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-influxdb" = callPackage @@ -201566,6 +206435,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-influxdb"; description = "Snap framework snaplet for the InfluxDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-lss" = callPackage @@ -201601,6 +206471,7 @@ self: { homepage = "https://github.com/ixmatus/snaplet-mandrill"; description = "Snap framework snaplet for the Mandrill API library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongoDB" = callPackage @@ -201621,6 +206492,7 @@ self: { jailbreak = true; description = "Snap Framework MongoDB support as Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mongodb-minimalistic" = callPackage @@ -201637,6 +206509,7 @@ self: { homepage = "https://github.com/Palmik/snaplet-mongodb-minimalistic"; description = "Minimalistic MongoDB Snaplet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-mysql-simple" = callPackage @@ -201658,6 +206531,7 @@ self: { homepage = "https://github.com/ibotty/snaplet-mysql-simple"; description = "mysql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-oauth" = callPackage @@ -201685,6 +206559,7 @@ self: { homepage = "https://github.com/HaskellCNOrg/snaplet-oauth"; description = "snaplet-oauth"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-persistent" = callPackage @@ -201708,6 +206583,7 @@ self: { homepage = "https://github.com/soostone/snaplet-persistent"; description = "persistent snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-postgresql-simple" = callPackage @@ -201731,6 +206607,7 @@ self: { homepage = "https://github.com/mightybyte/snaplet-postgresql-simple"; description = "postgresql-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-postmark" = callPackage @@ -201748,6 +206625,7 @@ self: { homepage = "https://github.com/LukeHoersten/snaplet-postmark"; description = "Postmark snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-purescript" = callPackage @@ -201764,6 +206642,7 @@ self: { ]; description = "Automatic (re)compilation of purescript projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-recaptcha" = callPackage @@ -201782,6 +206661,7 @@ self: { homepage = "http://github.com/mikeplus64/snaplet-recaptcha"; description = "A ReCAPTCHA verification snaplet with Heist integration and connection sharing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-redis" = callPackage @@ -201799,6 +206679,7 @@ self: { homepage = "https://github.com/dzhus/snaplet-redis/"; description = "Redis support for Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-redson" = callPackage @@ -201820,6 +206701,7 @@ self: { homepage = "https://github.com/dzhus/snaplet-redson/"; description = "CRUD for JSON data with Redis storage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-rest" = callPackage @@ -201839,6 +206721,7 @@ self: { homepage = "http://github.com/zimothy/snaplet-rest"; description = "REST resources for the Snap web framework"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-riak" = callPackage @@ -201858,6 +206741,7 @@ self: { homepage = "http://github.com/statusfailed/snaplet-riak"; description = "A Snaplet for the Riak database"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sass" = callPackage @@ -201876,6 +206760,7 @@ self: { homepage = "https://github.com/lukerandall/snaplet-sass"; description = "Sass integration for Snap with request- and pre-compilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sedna" = callPackage @@ -201893,6 +206778,7 @@ self: { jailbreak = true; description = "Snaplet for Sedna Bindings. Essentailly a rip of snaplet-hdbc."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-ses-html" = callPackage @@ -201910,6 +206796,7 @@ self: { jailbreak = true; description = "Snaplet for the ses-html package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-sqlite-simple" = callPackage @@ -201939,6 +206826,7 @@ self: { homepage = "https://github.com/nurpax/snaplet-sqlite-simple"; description = "sqlite-simple snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-stripe" = callPackage @@ -201958,6 +206846,7 @@ self: { homepage = "https://github.com/LukeHoersten/snaplet-stripe"; description = "Stripe snaplet for the Snap Framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-tasks" = callPackage @@ -201975,6 +206864,7 @@ self: { jailbreak = true; description = "Snaplet for Snap Framework enabling developers to administrative tasks akin to Rake tasks from Ruby On Rails framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-typed-sessions" = callPackage @@ -201993,6 +206883,7 @@ self: { jailbreak = true; description = "Typed session snaplets and continuation-based programming for the Snap web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snaplet-wordpress" = callPackage @@ -202021,6 +206912,7 @@ self: { homepage = "https://github.com/dbp/snaplet-wordpress"; description = "A snaplet that communicates with wordpress over its api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snappy" = callPackage @@ -202078,6 +206970,7 @@ self: { homepage = "http://github.com/iand675/snappy-iteratee"; description = "An enumeratee that uses Google's snappy compression library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sndfile-enumerators" = callPackage @@ -202098,6 +206991,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/sndfile-enumerators"; description = "Audio file reading/writing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sneakyterm" = callPackage @@ -202163,6 +207057,7 @@ self: { homepage = "http://github.com/elginer/snm"; description = "The Simple Nice-Looking Manual Generator"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "snmp_0_2_0_0" = callPackage @@ -202216,6 +207111,7 @@ self: { homepage = "http://github.com/nfjinjing/snow-white"; description = "encode any binary instance to white space"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "snowball" = callPackage @@ -202266,6 +207162,7 @@ self: { homepage = "http://code.mathr.co.uk/snowglobe"; description = "randomized fractal snowflakes demo"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "soap_0_2_2_5" = callPackage @@ -202393,6 +207290,7 @@ self: { homepage = "https://github.com/singpolyma/sock2stream"; description = "Tunnel a socket over a single datastream (stdin/stdout)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sockaddr" = callPackage @@ -202531,6 +207429,7 @@ self: { homepage = "https://github.com/lpeterse/haskell-socket-sctp"; description = "STCP socket extensions library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {sctp = null;}; "socketio" = callPackage @@ -202560,6 +207459,7 @@ self: { jailbreak = true; description = "Socket.IO server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "socketson" = callPackage @@ -202586,6 +207486,7 @@ self: { homepage = "https://github.com/aphorisme/socketson"; description = "A small websocket backend provider"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "socks_0_5_4" = callPackage @@ -202636,6 +207537,7 @@ self: { jailbreak = true; description = "Sodium Reactive Programming (FRP) System"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "soegtk" = callPackage @@ -202670,6 +207572,7 @@ self: { homepage = "https://github.com/sannsyn/solr"; description = "A minimal Solr client library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sonic-visualiser" = callPackage @@ -202691,6 +207594,7 @@ self: { homepage = "http://darcs.k-hornz.de/cgi-bin/darcsweb.cgi?r=sonic-visualiser;a=summary"; description = "Sonic Visualiser"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sophia" = callPackage @@ -202724,6 +207628,7 @@ self: { homepage = "https://github.com/nfjinjing/sort-by-pinyin"; description = "Sort simplified Chinese by PinYin"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sorted" = callPackage @@ -202736,6 +207641,7 @@ self: { jailbreak = true; description = "Efficient, type-safe sorted sequences"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sorted-list_0_1_4_2" = callPackage @@ -202837,6 +207743,7 @@ self: { jailbreak = true; description = "Approximate a song from other pieces of sound"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sounddelay" = callPackage @@ -202874,6 +207781,7 @@ self: { homepage = "http://github.com/nfjinjing/source-code-server"; description = "The server backend for the source code iPhone app"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sourcemap_0_1_3_0" = callPackage @@ -202935,6 +207843,7 @@ self: { homepage = "https://github.com/msiegenthaler/SouSiT"; description = "Source/Sink/Transform: An alternative to lazy IO and iteratees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sox" = callPackage @@ -202975,6 +207884,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Sox"; description = "Write, read, convert audio signals using libsox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) sox;}; "soyuz" = callPackage @@ -202994,6 +207904,7 @@ self: { homepage = "https://github.com/amtal/0x10c"; description = "DCPU-16 architecture utilities for Notch's 0x10c game"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "spacefill" = callPackage @@ -203038,6 +207949,7 @@ self: { homepage = "https://github.com/SeanRBurton/spaceprobe"; description = "Optimization over arbitrary search spaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "spanout" = callPackage @@ -203057,6 +207969,7 @@ self: { homepage = "https://github.com/vtan/spanout"; description = "A breakout clone written in netwire and gloss"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sparkle" = callPackage @@ -203080,6 +207993,7 @@ self: { jailbreak = true; description = "Distributed Apache Spark applications in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparse" = callPackage @@ -203107,6 +208021,7 @@ self: { homepage = "http://github.com/ekmett/sparse"; description = "A playground of sparse linear algebra primitives using Morton ordering"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sparse-lin-alg" = callPackage @@ -203137,6 +208052,7 @@ self: { homepage = "http://kyagrd.dyndns.org/wiki/SparseBitmapsForPatternMatchCoverage"; description = "Sparse bitmaps for pattern match coverage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sparsecheck" = callPackage @@ -203149,6 +208065,7 @@ self: { homepage = "http://www.cs.york.ac.uk/~mfn/sparsecheck/"; description = "A Logic Programming Library for Test-Data Generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sparser" = callPackage @@ -203176,6 +208093,7 @@ self: { homepage = "http://github.com/nfjinjing/spata"; description = "brainless form validation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spatial-math" = callPackage @@ -203263,6 +208181,7 @@ self: { jailbreak = true; description = "Control.Applicative, Data.Foldable, Data.Traversable (compatibility package)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "special-keys" = callPackage @@ -203280,6 +208199,7 @@ self: { ]; description = "Simple data types that help me here and there"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "specialize-th" = callPackage @@ -203307,6 +208227,7 @@ self: { homepage = "https://github.com/jfischoff/specialize-th"; description = "Create specialized types from polymorphic ones using TH"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "species" = callPackage @@ -203326,6 +208247,7 @@ self: { jailbreak = true; description = "Computational combinatorial species"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "speculation_1_5_0_1" = callPackage @@ -203434,6 +208356,7 @@ self: { jailbreak = true; description = "Orbotix Sphero client library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sphinx" = callPackage @@ -203464,6 +208387,7 @@ self: { executableHaskellDepends = [ base sphinx ]; description = "Sphinx CLI and demo of Haskell Sphinx library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spice" = callPackage @@ -203482,6 +208406,7 @@ self: { homepage = "http://github.com/crockeo/spice"; description = "An FRP-based game engine written in Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "spike" = callPackage @@ -203504,6 +208429,7 @@ self: { homepage = "http://github.com/Tener/spike"; description = "Experimental web browser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) libsoup;}; "spine" = callPackage @@ -203558,6 +208484,7 @@ self: { homepage = "http://github.com/JohnLato/splaytree"; description = "Provides an annotated splay tree"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "splice" = callPackage @@ -203595,6 +208522,7 @@ self: { homepage = "http://michael.orlitzky.com/code/spline3.php"; description = "A parallel implementation of the Sorokina/Zeilfelder spline scheme"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "splines" = callPackage @@ -203614,6 +208542,7 @@ self: { ]; description = "B-Splines, other splines, and NURBS"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "split_0_1_4_3" = callPackage @@ -203699,6 +208628,7 @@ self: { homepage = "http://code.haskell.org/~thielema/split-record/"; description = "Split a big audio file into pieces at positions of silence"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "split-tchan" = callPackage @@ -203789,6 +208719,7 @@ self: { homepage = "http://github.com/elginer/SpoonUtilities"; description = "Spoon's utilities. Simple testing and nice looking error reporting."; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "spoty" = callPackage @@ -203807,6 +208738,7 @@ self: { homepage = "https://github.com/davnils/spoty"; description = "Spotify web API wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "spreadsheet" = callPackage @@ -203881,6 +208813,7 @@ self: { homepage = "https://github.com/yanatan16/haskell-spsa"; description = "Simultaneous Perturbation Stochastic Approximation Optimization Algorithm"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "spy" = callPackage @@ -203907,6 +208840,7 @@ self: { homepage = "https://bitbucket.org/ssaasen/spy"; description = "A compact file system watcher for Mac OS X, Linux and Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sql-simple" = callPackage @@ -203925,6 +208859,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "common middle-level sql client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sql-simple-mysql" = callPackage @@ -203942,6 +208877,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "mysql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sql-simple-pool" = callPackage @@ -203960,6 +208896,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "conection pool for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sql-simple-postgresql" = callPackage @@ -203977,6 +208914,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "postgresql backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sql-simple-sqlite" = callPackage @@ -203990,6 +208928,7 @@ self: { homepage = "https://github.com/philopon/sql-simple"; description = "sqlite backend for sql-simple"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sql-words" = callPackage @@ -204080,6 +209019,7 @@ self: { homepage = "https://github.com/tolysz/sqlite-simple-typed"; description = "Typed extension to sqlite simple"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sqlvalue-list" = callPackage @@ -204091,6 +209031,7 @@ self: { libraryHaskellDepends = [ base convertible HDBC template-haskell ]; description = "Class and instances for conversion to list of SqlValue"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "squeeze" = callPackage @@ -204113,6 +209054,7 @@ self: { homepage = "http://functionalley.eu/Squeeze/squeeze.html"; description = "A file-packing application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sr-extra" = callPackage @@ -204151,6 +209093,7 @@ self: { ]; description = "Build and install Debian packages completely from source"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "srcloc_0_4_1" = callPackage @@ -204320,6 +209263,7 @@ self: { homepage = "http://github.com/erudify/sssp/"; description = "HTTP proxy for S3"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sstable" = callPackage @@ -204338,6 +209282,7 @@ self: { executableHaskellDepends = [ cmdargs ]; description = "SSTables in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ssv" = callPackage @@ -204392,6 +209337,7 @@ self: { homepage = "http://github.com/cutsea110/stable-marriage"; description = "algorithms around stable marriage"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stable-memo" = callPackage @@ -204430,6 +209376,7 @@ self: { homepage = "https://github.com/tsuraan/stable-tree"; description = "Trees whose branches are resistant to change"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stack_0_1_3_0" = callPackage @@ -205160,8 +210107,8 @@ self: { pname = "stack"; version = "1.1.2"; sha256 = "fc836b24fdeac54244fc79b6775d5edee146b7e552ad8e69596c7cc2f2b10625"; - revision = "3"; - editedCabalFile = "01932244b4a48d7391022b4ffd75d0ab3ab6142d039ea415c668d8694efd6828"; + revision = "4"; + editedCabalFile = "7460e2f3e7ca1bf3841b855d6e0d33106b4993de271687b41aad153a34bcd00d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -205230,6 +210177,7 @@ self: { homepage = "http://github.com/rubik/stack-hpc-coveralls"; description = "Initial project template from stack"; license = stdenv.lib.licenses.isc; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stack-prism" = callPackage @@ -205247,6 +210195,7 @@ self: { homepage = "https://github.com/MedeaMelana/stack-prism"; description = "Stack prisms"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stack-run" = callPackage @@ -205297,7 +210246,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stack-run-auto" = callPackage + "stack-run-auto_0_1_1_1" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time , wreq @@ -205323,6 +210272,35 @@ self: { homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stack-run-auto" = callPackage + ({ mkDerivation, async, base, extract-dependencies, file-modules + , lens, lens-aeson, MissingH, process, stm-containers, text, time + , wreq + }: + mkDerivation { + pname = "stack-run-auto"; + version = "0.1.1.2"; + sha256 = "ebe2bf5fc68f2a4c76b85f46013795f737acc5db313159c50b7873a0dac52c83"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + executableHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + testHaskellDepends = [ + async base extract-dependencies file-modules lens lens-aeson + MissingH process stm-containers text time wreq + ]; + homepage = "http://github.com/yamadapc/stack-run-auto#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; }) {}; "stackage_0_3_1" = callPackage @@ -205856,6 +210834,7 @@ self: { homepage = "https://github.com/fpco/stackage"; description = "Tools for curating Stackage bundles"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stackage-install_0_1_0_3" = callPackage @@ -206159,6 +211138,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/TopdownDerive"; description = "This package will derive class instance along the data type declaration tree"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "standalone-haddock" = callPackage @@ -206177,6 +211157,7 @@ self: { homepage = "http://documentup.com/feuerbach/standalone-haddock"; description = "Generate standalone haddock documentation for a set of packages"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "star-to-star" = callPackage @@ -206233,6 +211214,7 @@ self: { homepage = "http://github.com/anttisalonen/starrover2"; description = "Space simulation game"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stash" = callPackage @@ -206284,6 +211266,7 @@ self: { homepage = "https://github.com/ktvoelker/state-record"; description = "Better records for State monad states"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stateWriter_0_2_6" = callPackage @@ -206352,6 +211335,7 @@ self: { libraryHaskellDepends = [ base MaybeT mtl ]; description = "Typeclass instances for monad transformer stacks with an ST thread at the bottom"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stateref" = callPackage @@ -206435,6 +211419,7 @@ self: { homepage = "http://github.com/brendanhay/statgrab"; description = "Collect system level metrics and statistics"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {statgrab = null;}; "static-canvas" = callPackage @@ -206559,6 +211544,7 @@ self: { ]; description = "Functions for working with Dirichlet densities and mixtures on vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "statistics-fusion" = callPackage @@ -206571,6 +211557,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/statistics-fusion"; description = "An implementation of high performance, minimal statistics functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "statistics-hypergeometric-genvar" = callPackage @@ -206706,6 +211693,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "A wrapper around Sean Barrett's TrueType rasterizer library"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stdata" = callPackage @@ -206803,6 +211791,7 @@ self: { homepage = "https://github.com/jonpetterbergman/step-function"; description = "Step functions, staircase functions or piecewise constant functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stepwise" = callPackage @@ -206814,6 +211803,7 @@ self: { libraryHaskellDepends = [ base containers mtl ]; homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stickyKeysHotKey" = callPackage @@ -206938,6 +211928,7 @@ self: { homepage = "http://github.com/kholdstare/stm-chunked-queues/"; description = "Chunked Communication Queues"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stm-conduit_2_5_2" = callPackage @@ -207252,8 +212243,8 @@ self: { pname = "stm-containers"; version = "0.2.10"; sha256 = "1dd724fda2456279d2bf70b8666eb1f87604776932b452f3b097236ad1533e6d"; - revision = "1"; - editedCabalFile = "0e879ab4d7fc5ef981e11343eed75760bccbe2f93ea876d3e1fab9cd6e8cf46f"; + revision = "2"; + editedCabalFile = "a6a00d2be8f04dd21d55c097d57334504984e84a463a56b20ff19b7fe46e516e"; libraryHaskellDepends = [ base base-prelude focus hashable list-t loch-th placeholders primitive transformers @@ -207262,6 +212253,7 @@ self: { base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude placeholders primitive QuickCheck transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; @@ -207278,16 +212270,17 @@ self: { pname = "stm-containers"; version = "0.2.11"; sha256 = "f7eff1833da6c9ad18a5301912bbb477216347d7940f6495d398fbdedee27f8e"; - revision = "1"; - editedCabalFile = "78f0d160b53c64c755e21e477bbc5b0721bcd8548358556ff590791edf4da0cb"; + revision = "2"; + editedCabalFile = "164063074182183286ef19c6ae249b4d74105e6a215e4ea655a1f90691751c90"; libraryHaskellDepends = [ - base-prelude focus hashable list-t primitive transformers + base base-prelude focus hashable list-t primitive transformers ]; testHaskellDepends = [ base base-prelude focus free hashable HTF list-t loch-th mtl mtl-prelude placeholders primitive QuickCheck transformers unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/nikita-volkov/stm-containers"; description = "Containers for STM"; @@ -207481,6 +212474,7 @@ self: { homepage = "http://sulzmann.blogspot.com/2008/12/stm-with-control-communication-for.html"; description = "Control communication among retrying transactions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stomp-conduit" = callPackage @@ -207636,6 +212630,7 @@ self: { jailbreak = true; description = "Statically-sized array wrappers with Storable instances for FFI marshaling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "storable-tuple" = callPackage @@ -207670,6 +212665,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Fast, packed, strict storable arrays with a list interface like ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "storablevector-carray" = callPackage @@ -207682,6 +212678,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and carray"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "storablevector-streamfusion" = callPackage @@ -207704,6 +212701,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; description = "Conversion between storablevector and stream-fusion lists with fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "store" = callPackage @@ -207740,6 +212738,7 @@ self: { homepage = "https://github.com/fpco/store#readme"; description = "Fast binary serialization"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "str" = callPackage @@ -207807,23 +212806,25 @@ self: { ]; description = "Client for Stratum protocol"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stratux" = callPackage ({ mkDerivation, base, directory, doctest, filepath, QuickCheck - , stratux-types, template-haskell + , stratux-types, stratux-websockets, template-haskell }: mkDerivation { pname = "stratux"; - version = "0.0.2"; - sha256 = "c752e50abd67ccaefc4833129bf2f8c1c6a6830fae1c4f8e2627f6ffd85edcde"; - libraryHaskellDepends = [ base stratux-types ]; + version = "0.0.3"; + sha256 = "3eb06fd679aee8e4ee2bfa7e77550756811c182c9311b51c494927ddb63aed1c"; + libraryHaskellDepends = [ base stratux-types stratux-websockets ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; homepage = "https://github.com/tonymorris/stratux"; description = "A library for stratux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stratux-types" = callPackage @@ -207832,8 +212833,8 @@ self: { }: mkDerivation { pname = "stratux-types"; - version = "0.0.1"; - sha256 = "05dff9016499b82b42cef816fe0fefa63be1f5a51a118b389eb0088054b2c941"; + version = "0.0.3"; + sha256 = "4ccaf05dfd7b70a1dd5032c99e68a01c0af77f1c4537aa2c1a68dc18501cbe84"; libraryHaskellDepends = [ aeson base bytestring lens scientific time ]; @@ -207843,6 +212844,28 @@ self: { homepage = "https://github.com/tonymorris/stratux-types"; description = "A library for stratux"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "stratux-websockets" = callPackage + ({ mkDerivation, aeson, base, directory, doctest, either, filepath + , network, QuickCheck, stratux-types, template-haskell, text + , transformers, websockets + }: + mkDerivation { + pname = "stratux-websockets"; + version = "0.0.3"; + sha256 = "94cb21267cc6c34977a28baa2413510ebf2c0babb55a682c515565453a90f35c"; + libraryHaskellDepends = [ + aeson base either network stratux-types text transformers + websockets + ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/stratux-websockets"; + description = "A library for using websockets with stratux"; + license = stdenv.lib.licenses.bsd3; }) {}; "stream" = callPackage @@ -207860,6 +212883,7 @@ self: { homepage = "https://github.com/githubuser/stream#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stream-fusion" = callPackage @@ -207872,6 +212896,7 @@ self: { homepage = "http://hackage.haskell.org/trac/ghc/ticket/915"; description = "Faster Haskell lists using stream fusion"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stream-monad" = callPackage @@ -207907,6 +212932,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/MIDI"; description = "Programmatically edit MIDI event streams via ALSA"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "streaming_0_1_4_0" = callPackage @@ -207928,7 +212954,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming" = callPackage + "streaming_0_1_4_1" = callPackage ({ mkDerivation, base, exceptions, ghc-prim, mmorph, mtl, resourcet , time, transformers, transformers-base }: @@ -207944,6 +212970,24 @@ self: { homepage = "https://github.com/michaelt/streaming"; description = "an elementary streaming prelude and general stream type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming" = callPackage + ({ mkDerivation, base, exceptions, ghc-prim, mmorph, monad-control + , mtl, resourcet, time, transformers, transformers-base + }: + mkDerivation { + pname = "streaming"; + version = "0.1.4.2"; + sha256 = "1e573e07eeb65f549b2c4001dc1f1fea239c7dda0ff20fddf312926010afaf3d"; + libraryHaskellDepends = [ + base exceptions ghc-prim mmorph monad-control mtl resourcet time + transformers transformers-base + ]; + homepage = "https://github.com/michaelt/streaming"; + description = "an elementary streaming prelude and general stream type"; + license = stdenv.lib.licenses.bsd3; }) {}; "streaming-bytestring_0_1_4_0" = callPackage @@ -207984,7 +213028,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "streaming-bytestring" = callPackage + "streaming-bytestring_0_1_4_3" = callPackage ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl , resourcet, streaming, transformers, transformers-base }: @@ -208000,6 +213044,24 @@ self: { homepage = "https://github.com/michaelt/streaming-bytestring"; description = "effectful byte steams, or: bytestring io done right"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "streaming-bytestring" = callPackage + ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl + , resourcet, streaming, transformers, transformers-base + }: + mkDerivation { + pname = "streaming-bytestring"; + version = "0.1.4.4"; + sha256 = "0a8b6623cff9fa1310c835a3c3f374cbf1c14ca385dd401db9c13b503e347662"; + libraryHaskellDepends = [ + base bytestring deepseq exceptions mmorph mtl resourcet streaming + transformers transformers-base + ]; + homepage = "https://github.com/michaelt/streaming-bytestring"; + description = "effectful byte steams, or: bytestring io done right"; + license = stdenv.lib.licenses.bsd3; }) {}; "streaming-commons_0_1_7_3" = callPackage @@ -208415,22 +213477,22 @@ self: { "streaming-utils" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, http-client - , http-client-tls, json-stream, mtl, pipes, resourcet, streaming - , streaming-bytestring, transformers + , http-client-tls, json-stream, mtl, network, network-simple, pipes + , resourcet, streaming, streaming-bytestring, transformers }: mkDerivation { pname = "streaming-utils"; - version = "0.1.4.2"; - sha256 = "7a672d1a52b424e0a2ef53e04ca8d0776f41fda6db223d6d989895f9357eaa61"; + version = "0.1.4.3"; + sha256 = "9c17f8c1574aec072a2004259bf881e46832b91b82d2c1167115af57339a9f34"; libraryHaskellDepends = [ aeson attoparsec base bytestring http-client http-client-tls - json-stream mtl pipes resourcet streaming streaming-bytestring - transformers + json-stream mtl network network-simple pipes resourcet streaming + streaming-bytestring transformers ]; - jailbreak = true; homepage = "https://github.com/michaelt/streaming-utils"; description = "http, attoparsec, pipes and conduit utilities for the streaming libraries"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "streaming-wai" = callPackage @@ -208559,6 +213621,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/strict-concurrency"; description = "Strict concurrency abstractions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "strict-ghc-plugin" = callPackage @@ -208758,6 +213821,7 @@ self: { homepage = "https://github.com/kylcarte/string-typelits"; description = "Type-level Chars and Strings, with decidable equality"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stringable" = callPackage @@ -208800,6 +213864,7 @@ self: { homepage = "https://github.com/selectel/stringlike"; description = "Transformations to several string-like types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stringprep" = callPackage @@ -208924,7 +213989,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-core" = callPackage + "stripe-core_2_0_3" = callPackage ({ mkDerivation, aeson, base, bytestring, mtl, text, time , transformers, unordered-containers }: @@ -208940,6 +214005,24 @@ self: { homepage = "https://github.com/dmjio/stripe-haskell"; description = "Stripe API for Haskell - Pure Core"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stripe-core" = callPackage + ({ mkDerivation, aeson, base, bytestring, mtl, text, time + , transformers, unordered-containers + }: + mkDerivation { + pname = "stripe-core"; + version = "2.1.0"; + sha256 = "74d48a1db4244258b1850e2e657cb53fabe1d280638530a1f730e46538973ce5"; + libraryHaskellDepends = [ + aeson base bytestring mtl text time transformers + unordered-containers + ]; + homepage = "https://github.com/dmjio/stripe-haskell"; + description = "Stripe API for Haskell - Pure Core"; + license = stdenv.lib.licenses.mit; }) {}; "stripe-haskell_2_0_2" = callPackage @@ -208949,6 +214032,21 @@ self: { version = "2.0.2"; sha256 = "7320b4650523b8c481543bd66c7e287c8e390722bc3a923cc2734384a39d7b50"; libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; + jailbreak = true; + homepage = "https://github.com/dmjio/stripe"; + description = "Stripe API for Haskell"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stripe-haskell_2_0_3" = callPackage + ({ mkDerivation, base, stripe-core, stripe-http-streams }: + mkDerivation { + pname = "stripe-haskell"; + version = "2.0.3"; + sha256 = "225b6b5671181a8349b952bf98a30c40bf0ee24ab53cc720f02d7979ad7cd5bb"; + libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; + jailbreak = true; homepage = "https://github.com/dmjio/stripe"; description = "Stripe API for Haskell"; license = stdenv.lib.licenses.mit; @@ -208959,8 +214057,8 @@ self: { ({ mkDerivation, base, stripe-core, stripe-http-streams }: mkDerivation { pname = "stripe-haskell"; - version = "2.0.3"; - sha256 = "225b6b5671181a8349b952bf98a30c40bf0ee24ab53cc720f02d7979ad7cd5bb"; + version = "2.1.0"; + sha256 = "83f88fe7c264ee30b7da8e0630f0efeee722677d745705cc2059ea9ba3d82775"; libraryHaskellDepends = [ base stripe-core stripe-http-streams ]; homepage = "https://github.com/dmjio/stripe"; description = "Stripe API for Haskell"; @@ -208986,7 +214084,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stripe-http-streams" = callPackage + "stripe-http-streams_2_0_3" = callPackage ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec , http-streams, io-streams, stripe-core, stripe-tests, text }: @@ -209005,6 +214103,28 @@ self: { doCheck = false; description = "Stripe API for Haskell - http-streams backend"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {stripe-tests = null;}; + + "stripe-http-streams" = callPackage + ({ mkDerivation, aeson, base, bytestring, free, HsOpenSSL, hspec + , http-streams, io-streams, stripe-core, stripe-tests, text + }: + mkDerivation { + pname = "stripe-http-streams"; + version = "2.1.0"; + sha256 = "053e696d1f2d671594bd0ffe70e473f54fb551bee0bdf040222e7a995174301e"; + libraryHaskellDepends = [ + aeson base bytestring HsOpenSSL http-streams io-streams stripe-core + text + ]; + testHaskellDepends = [ + base free HsOpenSSL hspec http-streams stripe-core stripe-tests + ]; + jailbreak = true; + doCheck = false; + description = "Stripe API for Haskell - http-streams backend"; + license = stdenv.lib.licenses.mit; }) {stripe-tests = null;}; "strive" = callPackage @@ -209025,6 +214145,7 @@ self: { 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 @@ -209053,6 +214174,7 @@ self: { homepage = "http://github.com/ekmett/structs/"; description = "Strict GC'd imperative object-oriented programming with cheap pointers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "structural-induction" = callPackage @@ -209074,6 +214196,7 @@ self: { homepage = "http://www.github.com/danr/structural-induction"; description = "Instantiate structural induction schemas for algebraic data types"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "structural-traversal" = callPackage @@ -209087,6 +214210,7 @@ self: { homepage = "http://github.com/nboldi/structural-traversal#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "structured-haskell-mode" = callPackage @@ -209106,6 +214230,7 @@ self: { homepage = "https://github.com/chrisdone/structured-haskell-mode"; description = "Structured editing Emacs mode for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "structured-mongoDB" = callPackage @@ -209125,6 +214250,7 @@ self: { jailbreak = true; description = "Structured MongoDB interface"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "structures" = callPackage @@ -209153,6 +214279,7 @@ self: { homepage = "http://github.com/ekmett/structures"; description = "\"Advanced\" Data Structures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "stunclient" = callPackage @@ -209196,6 +214323,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/LambdaCubeEngine"; description = "A revival of the classic game Stunts (LambdaCube tech demo)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stylish-haskell_0_5_11_0" = callPackage @@ -209595,6 +214723,7 @@ self: { ]; description = "Get the total, put a single element"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "subhask" = callPackage @@ -209621,6 +214750,7 @@ self: { homepage = "http://github.com/mikeizbicki/subhask"; description = "Type safe interface for programming in subcategories of Hask"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "subleq-toolchain" = callPackage @@ -209643,6 +214773,7 @@ self: { jailbreak = true; description = "Toolchain of subleq computer"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "subnet" = callPackage @@ -209800,6 +214931,7 @@ self: { libraryHaskellDepends = [ base containers ]; description = "Abstract over the constraints on the parameters to type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sump" = callPackage @@ -209848,6 +214980,7 @@ self: { homepage = "http://www.github.com/massysett/sunlight"; description = "Test Cabalized package against multiple dependency versions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sunroof-compiler" = callPackage @@ -209867,6 +215000,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-compiler"; description = "Monadic Javascript Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-examples" = callPackage @@ -209889,6 +215023,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-examples"; description = "Tests for Sunroof"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sunroof-server" = callPackage @@ -209912,6 +215047,7 @@ self: { homepage = "https://github.com/ku-fpg/sunroof-server"; description = "Monadic Javascript Compiler - Server Utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "super-user-spark" = callPackage @@ -209940,6 +215076,7 @@ self: { jailbreak = true; description = "Configure your dotfile deployment with a DSL"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "supercollider-ht" = callPackage @@ -209959,6 +215096,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Haskell SuperCollider utilities"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "supercollider-midi" = callPackage @@ -209983,6 +215121,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/SuperCollider"; description = "Demonstrate how to control SuperCollider via ALSA-MIDI"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "superdoc" = callPackage @@ -210003,6 +215142,7 @@ self: { homepage = "http://www.mathstat.dal.ca/~selinger/superdoc/"; description = "Additional documentation markup and Unicode support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "supero" = callPackage @@ -210023,6 +215163,7 @@ self: { homepage = "http://community.haskell.org/~ndm/supero/"; description = "A Supercompiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "supervisor" = callPackage @@ -210037,6 +215178,7 @@ self: { homepage = "http://github.com/agocorona/supervisor"; description = "Control an internal monad execution for trace generation, backtrakcking, testing and other purposes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "supplemented" = callPackage @@ -210057,6 +215199,7 @@ self: { homepage = "https://github.com/nikita-volkov/supplemented"; description = "Early termination for monads"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "suspend" = callPackage @@ -210162,7 +215305,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "svg-tree" = callPackage + "svg-tree_0_5_1" = callPackage ({ mkDerivation, attoparsec, base, bytestring, containers , JuicyPixels, lens, linear, mtl, scientific, text, transformers , vector, xml @@ -210178,6 +215321,24 @@ self: { jailbreak = true; description = "SVG file loader and serializer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "svg-tree" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, containers + , JuicyPixels, lens, linear, mtl, scientific, text, transformers + , vector, xml + }: + mkDerivation { + pname = "svg-tree"; + version = "0.5.1.1"; + sha256 = "cf75c195759bc114722e43aad05442ca002aa34a72aa2457c4444873945fab5e"; + libraryHaskellDepends = [ + attoparsec base bytestring containers JuicyPixels lens linear mtl + scientific text transformers vector xml + ]; + description = "SVG file loader and serializer"; + license = stdenv.lib.licenses.bsd3; }) {}; "svg2q" = callPackage @@ -210197,6 +215358,7 @@ self: { homepage = "http://www.informatik.uni-kiel.de/~jgr/svg2q"; description = "Code generation tool for Quartz code from a SVG"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "svgcairo" = callPackage @@ -210271,6 +215433,7 @@ self: { homepage = "http://github.com/aleator/Simple-SVM"; description = "Medium level, simplified, bindings to libsvm"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "svndump" = callPackage @@ -210290,6 +215453,7 @@ self: { homepage = "http://github.com/jwiegley/svndump/"; description = "Library for reading Subversion dump files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "swagger" = callPackage @@ -210361,7 +215525,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "swagger2" = callPackage + "swagger2_2_0_2" = callPackage ({ mkDerivation, aeson, aeson-qq, base, base-compat, containers , doctest, Glob, hashable, hspec, http-media, HUnit, lens, mtl , network, QuickCheck, scientific, template-haskell, text, time @@ -210381,10 +215545,38 @@ self: { hspec HUnit lens mtl QuickCheck text time unordered-containers vector ]; + homepage = "https://github.com/GetShopTV/swagger2"; + description = "Swagger 2.0 data model"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "swagger2" = callPackage + ({ mkDerivation, aeson, aeson-qq, base, base-compat, bytestring + , containers, doctest, generics-sop, Glob, hashable, hspec + , http-media, HUnit, insert-ordered-containers, lens, mtl, network + , QuickCheck, scientific, template-haskell, text, time + , transformers, unordered-containers, vector + }: + mkDerivation { + pname = "swagger2"; + version = "2.1"; + sha256 = "b47b4bf7951f46ae80628551d13e877c77a9bd20d7e4e6a270eeed275b739bdc"; + libraryHaskellDepends = [ + aeson base base-compat containers generics-sop hashable http-media + insert-ordered-containers lens mtl network scientific + template-haskell text time transformers unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-qq base base-compat bytestring containers doctest Glob + hashable hspec HUnit insert-ordered-containers lens mtl QuickCheck + text time unordered-containers vector + ]; doHaddock = false; homepage = "https://github.com/GetShopTV/swagger2"; description = "Swagger 2.0 data model"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "swapper" = callPackage @@ -210403,6 +215595,7 @@ self: { homepage = "http://github.com/roman-smrz/swapper/"; description = "Transparently swapping data from in-memory structures to disk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) tokyocabinet;}; "swearjure" = callPackage @@ -210424,6 +215617,7 @@ self: { homepage = "http://www.swearjure.com"; description = "Clojure without alphanumerics"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "swf" = callPackage @@ -210436,6 +215630,7 @@ self: { homepage = "http://www.n-heptane.com/nhlab"; description = "A library for creating Shockwave Flash (SWF) files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "swift-lda" = callPackage @@ -210452,6 +215647,7 @@ self: { homepage = "https://bitbucket.org/gchrupala/colada"; description = "Online sampler for Latent Dirichlet Allocation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "swish" = callPackage @@ -210478,6 +215674,7 @@ self: { homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; description = "A semantic web toolkit"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sws" = callPackage @@ -210501,6 +215698,7 @@ self: { jailbreak = true; description = "A simple web server for serving directories, similar to weborf"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "syb_0_4_2" = callPackage @@ -210587,6 +215785,7 @@ self: { homepage = "http://github.com/ekmett/syb-extras/"; description = "Higher order versions of the Scrap Your Boilerplate classes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "syb-with-class_0_6_1_5" = callPackage @@ -210622,6 +215821,7 @@ self: { jailbreak = true; description = "Scrap Your Boilerplate With Class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syb-with-class-instances-text" = callPackage @@ -210633,6 +215833,7 @@ self: { libraryHaskellDepends = [ base syb-with-class text ]; description = "Scrap Your Boilerplate With Class Text instance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sylvia" = callPackage @@ -210660,6 +215861,7 @@ self: { homepage = "https://github.com/lfairy/sylvia"; description = "Lambda calculus visualization"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "sym" = callPackage @@ -210673,6 +215875,7 @@ self: { homepage = "https://github.com/akc/sym"; description = "Permutations, patterns, and statistics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sym-plot" = callPackage @@ -210686,6 +215889,7 @@ self: { homepage = "http://github.com/akc/sym-plot"; description = "Plot permutations; an addition to the sym package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "symbol" = callPackage @@ -210718,6 +215922,7 @@ self: { homepage = "http://github.com/bollu/symengine.hs#readme"; description = "SymEngine symbolic mathematics engine for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; symengine = null;}; "sync" = callPackage @@ -210729,6 +215934,7 @@ self: { libraryHaskellDepends = [ base stm ]; description = "A fast implementation of synchronous channels with a CML-like API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sync-mht" = callPackage @@ -210765,6 +215971,7 @@ self: { 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" ]; }) {}; "synchronous-channels" = callPackage @@ -210804,6 +216011,7 @@ self: { homepage = "https://github.com/jetho/syncthing-hs"; description = "Haskell bindings for the Syncthing REST API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synt" = callPackage @@ -210853,6 +216061,7 @@ self: { homepage = "https://github.com/emilaxelsson/syntactic"; description = "Generic representation and manipulation of abstract syntax"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "syntactical" = callPackage @@ -210881,6 +216090,7 @@ self: { ]; description = "Reversible parsing and pretty-printing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-attoparsec" = callPackage @@ -210896,6 +216106,7 @@ self: { ]; description = "Syntax instances for Attoparsec"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example" = callPackage @@ -210914,6 +216125,7 @@ self: { ]; description = "Example application using syntax, a library for abstract syntax descriptions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-example-json" = callPackage @@ -210932,6 +216144,7 @@ self: { ]; description = "Example JSON parser/pretty-printer"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-pretty" = callPackage @@ -210946,6 +216159,7 @@ self: { ]; description = "Syntax instance for pretty, the pretty printing library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-printer" = callPackage @@ -210963,6 +216177,7 @@ self: { jailbreak = true; description = "Text and ByteString printers for 'syntax'"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees" = callPackage @@ -210978,6 +216193,7 @@ self: { ]; description = "Convert between different Haskell syntax trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "syntax-trees-fork-bairyn" = callPackage @@ -210993,6 +216209,7 @@ self: { ]; description = "Convert between different Haskell syntax trees. Bairyn's fork."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer" = callPackage @@ -211018,6 +216235,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-alsa" = callPackage @@ -211042,6 +216260,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Control synthesizer effects via ALSA/MIDI"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-core" = callPackage @@ -211070,6 +216289,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Low level part"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-dimensional" = callPackage @@ -211092,6 +216312,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing with static physical dimensions"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-filter" = callPackage @@ -211110,6 +216331,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Audio signal processing coded in Haskell: Filter networks"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "synthesizer-inference" = callPackage @@ -211160,6 +216382,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Efficient signal processing using runtime compilation"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "synthesizer-midi" = callPackage @@ -211185,6 +216408,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; description = "Render audio signals from MIDI files or realtime messages"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "sys-auth-smbclient" = callPackage @@ -211220,6 +216444,7 @@ self: { homepage = "https://github.com/NICTA/sys-process"; description = "A replacement for System.Exit and System.Process."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "system-argv0" = callPackage @@ -211286,6 +216511,7 @@ self: { homepage = "https://github.com/d12frosted/CanonicalPath"; description = "Abstract data type for canonical paths with some utilities"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "system-command" = callPackage @@ -211581,6 +216807,7 @@ self: { homepage = "https://github.com/jcristovao/system-lifted"; description = "Lifted versions of System functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "system-posix-redirect" = callPackage @@ -211617,6 +216844,7 @@ self: { homepage = "https://github.com/wowus/system-random-effect"; description = "Random number generation for extensible effects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "system-test" = callPackage @@ -211743,6 +216971,7 @@ self: { ]; description = "Matchers and grammars using tree regular expressions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "t3-client" = callPackage @@ -211755,6 +216984,7 @@ self: { homepage = "http://github.com/jxv/t3#readme"; description = "tic-tac-toe Rexports for client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "t3-game" = callPackage @@ -211792,6 +217022,7 @@ self: { jailbreak = true; description = "tic-tac-toe server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "ta" = callPackage @@ -211809,6 +217040,7 @@ self: { homepage = "not available"; description = "Transito Abierto: convenience library when using Takusen and Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "table" = callPackage @@ -211905,6 +217137,7 @@ self: { homepage = "http://github.com/ekmett/tables/"; description = "In-memory storage with multiple keys using lenses and traversals"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tablestorage" = callPackage @@ -211925,6 +217158,7 @@ self: { homepage = "http://github.com/paf31/tablestorage"; description = "Azure Table Storage REST API Wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tabloid" = callPackage @@ -211943,6 +217177,7 @@ self: { ]; description = "View the output of shell commands in a table"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tabular_0_2_2_5" = callPackage @@ -212161,6 +217396,7 @@ self: { jailbreak = true; description = "Lists tagged with a type-level natural number representing their length"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tagged-th" = callPackage @@ -212175,6 +217411,7 @@ self: { jailbreak = true; description = "QuasiQuoter and Template Haskell splices for creating proxies at higher-kinds"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tagged-timers" = callPackage @@ -212453,6 +217690,7 @@ self: { homepage = "http://code.haskell.org/~thielema/tagsoup-ht/"; description = "alternative parser for the tagsoup package"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tagsoup-parsec" = callPackage @@ -212465,6 +217703,7 @@ self: { homepage = "http://www.killersmurf.com"; description = "Tokenizes Tag, so [ Tag ] can be used as parser input"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tagstream-conduit" = callPackage @@ -212536,6 +217775,7 @@ self: { homepage = "https://github.com/paulrzcz/takusen-oracle.git"; description = "Database library with left-fold interface for Oracle"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {clntsh = null; sqlplus = null;}; "tamarin-prover" = callPackage @@ -212566,6 +217806,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "The Tamarin prover for security protocol analysis"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tamarin-prover-term" = callPackage @@ -212586,6 +217827,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tamarin-prover-theory" = callPackage @@ -212609,6 +217851,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Term manipulation library for the tamarin prover"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tamarin-prover-utils" = callPackage @@ -212628,6 +217871,7 @@ self: { homepage = "http://www.infsec.ethz.ch/research/software/tamarin"; description = "Utility library for the tamarin prover"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tamper" = callPackage @@ -212839,6 +218083,7 @@ self: { testSystemDepends = [ z3 ]; description = "Generate test-suites from refinement types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) z3;}; "task" = callPackage @@ -212859,6 +218104,7 @@ self: { jailbreak = true; description = "A command line tool for keeping track of tasks you worked on"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "task-distribution" = callPackage @@ -212896,6 +218142,7 @@ self: { homepage = "http://github.com/michaxm/task-distribution#readme"; description = "Distributed processing of changing tasks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "taskpool" = callPackage @@ -213224,6 +218471,7 @@ self: { ]; description = "Tasty Tests for groundhog converters"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tasty-hspec_1_1" = callPackage @@ -213375,6 +218623,7 @@ self: { jailbreak = true; description = "automated integration of QuickCheck properties into tasty suites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tasty-kat_0_0_1" = callPackage @@ -213726,6 +218975,7 @@ self: { homepage = "http://darcs.monoid.at/tbox"; description = "Transactional variables and data structures with IO hooks"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tcache-AWS" = callPackage @@ -213759,6 +219009,7 @@ self: { homepage = "http://bitcheese.net/wiki/code/tccli"; description = "TokyoCabinet CLI interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tce-conf" = callPackage @@ -213795,6 +219046,7 @@ self: { homepage = "http://www.cl.cam.ac.uk/~pes20/Netsem/"; description = "A purely functional TCP implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tdd-util" = callPackage @@ -213822,6 +219074,7 @@ self: { ]; description = "Test framework wrapper"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tdoc" = callPackage @@ -213838,6 +219091,7 @@ self: { homepage = "https://github.com/np/tdoc"; description = "TDoc is a typed document builder with support for (X)HTML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "teams" = callPackage @@ -213849,6 +219103,7 @@ self: { libraryHaskellDepends = [ base containers fgl graphviz ]; description = "Graphical modeling tools for sequential teams"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "teeth" = callPackage @@ -213880,6 +219135,34 @@ self: { jailbreak = true; description = "Telegram API client"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; + }) {}; + + "telegram-api_0_4_2_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 + , optparse-applicative, servant, servant-client, string-conversions + , text, transformers, utf8-string + }: + mkDerivation { + pname = "telegram-api"; + version = "0.4.2.0"; + sha256 = "ba0d6b7e2e7461d7eeb6182ef1c38ee445a657f23469ea844e827c3dcfaef62e"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "telegram-api" = callPackage @@ -213891,8 +219174,8 @@ self: { }: mkDerivation { pname = "telegram-api"; - version = "0.4.2.0"; - sha256 = "ba0d6b7e2e7461d7eeb6182ef1c38ee445a657f23469ea844e827c3dcfaef62e"; + version = "0.4.3.0"; + sha256 = "007a63755a5c56a940add8d76f20b629a43d6e18882c5b280e65bb2fa2b1feb2"; libraryHaskellDepends = [ aeson base bytestring either http-api-data http-client http-media http-types mime-types servant servant-client string-conversions @@ -214037,6 +219320,7 @@ self: { homepage = "https://github.com/haskell-pkg-janitors/template-default"; description = "declaring Default instances just got even easier"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "template-haskell_2_11_0_0" = callPackage @@ -214063,6 +219347,7 @@ self: { homepage = "https://github.com/HaskellZhangSong/TemplateHaskellUtils"; description = "Some utilities for template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-hsml" = callPackage @@ -214084,6 +219369,7 @@ self: { jailbreak = true; description = "Haskell's Simple Markup Language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "template-yj" = callPackage @@ -214097,6 +219383,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/template/wiki"; description = "Process template file"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "templatepg" = callPackage @@ -214174,6 +219461,7 @@ self: { homepage = "https://github.com/ixmatus/hs-tempodb"; description = "A small Haskell wrapper around the TempoDB api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "temporal-csound" = callPackage @@ -214336,6 +219624,7 @@ self: { jailbreak = true; description = "Interpreter for the FRP language Tempus"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tempus-fugit" = callPackage @@ -214365,6 +219654,7 @@ self: { homepage = "http://noaxiom.org/tensor"; description = "A completely type-safe library for linear algebra"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "term-rewriting" = callPackage @@ -214384,6 +219674,7 @@ self: { homepage = "http://cl-informatik.uibk.ac.at/software/haskell-rewriting/"; description = "Term Rewriting Library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "termbox-bindings" = callPackage @@ -214401,6 +219692,7 @@ self: { homepage = "https://github.com/luciferous/termbox-bindings"; description = "Bindings to the Termbox library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "terminal-progress-bar" = callPackage @@ -214537,6 +219829,7 @@ self: { homepage = "https://github.com/jimenezrick/termplot"; description = "Plot time series in your terminal using commands stdout"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "terntup" = callPackage @@ -214554,6 +219847,7 @@ self: { ]; description = "a ternary library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "terrahs" = callPackage @@ -214568,6 +219862,7 @@ self: { homepage = "http://lucc.ess.inpe.br/doku.php?id=terrahs"; description = "A Haskell GIS Programming Environment"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {terralib4c = null; translib = null;}; "tersmu" = callPackage @@ -214585,6 +219880,7 @@ self: { homepage = "http://mbays.freeshell.org/tersmu"; description = "A semantic parser for lojban"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "test-fixture" = callPackage @@ -214679,6 +219975,7 @@ self: { jailbreak = true; description = "Test.Framework wrapper for DocTest"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "test-framework-golden" = callPackage @@ -214757,6 +220054,7 @@ self: { homepage = "http://batterseapower.github.com/test-framework/"; description = "QuickCheck support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-quickcheck2" = callPackage @@ -214796,6 +220094,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "test-sandbox support for the test-framework package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-framework-skip" = callPackage @@ -214875,6 +220174,7 @@ self: { ]; description = "Template Haskell for test framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-invariant" = callPackage @@ -214929,6 +220229,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "Sandbox for system tests"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-sandbox-compose" = callPackage @@ -214960,6 +220261,7 @@ self: { ]; description = "Lightweight development enviroments using test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-sandbox-hunit" = callPackage @@ -214972,6 +220274,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "HUnit convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-sandbox-quickcheck" = callPackage @@ -214988,6 +220291,7 @@ self: { homepage = "http://gree.github.io/haskell-test-sandbox/"; description = "QuickCheck convenience functions for use with test-sandbox"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "test-shouldbe" = callPackage @@ -215033,6 +220337,7 @@ self: { jailbreak = true; description = "Small test package"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "testbench" = callPackage @@ -215115,6 +220420,7 @@ self: { homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "testpack" = callPackage @@ -215133,6 +220439,7 @@ self: { homepage = "https://github.com/jgoerzen/testpack"; description = "Test Utililty Pack for HUnit and QuickCheck (unmaintained)"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "testpattern" = callPackage @@ -215147,6 +220454,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/testpattern"; description = "Display a monitor test pattern"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "testrunner" = callPackage @@ -215161,6 +220469,7 @@ self: { ]; description = "Easy unit test driver framework"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tetris" = callPackage @@ -215191,6 +220500,7 @@ self: { homepage = "http://textmining.lt/tex2txt/"; description = "LaTeX to plain-text conversion"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "texmath_0_8" = callPackage @@ -215590,6 +220900,7 @@ self: { jailbreak = true; description = "Functions for running Tex from Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "text_1_1_1_3" = callPackage @@ -215948,6 +221259,7 @@ self: { homepage = "http://github.com/finnsson/text-json-qq"; description = "Json Quasiquatation for Haskell"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "text-latin1" = callPackage @@ -216043,6 +221355,7 @@ self: { homepage = "https://github.com/joelteon/text-normal.git"; description = "Unicode-normalized text"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "text-position" = callPackage @@ -216142,6 +221455,7 @@ self: { homepage = "https://github.com/acfoltzer/text-register-machine"; description = "A Haskell implementation of the 1# Text Register Machine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "text-render" = callPackage @@ -216328,6 +221642,7 @@ self: { homepage = "http://github.com/finnsson/Text.XML.Generic"; description = "Serialize Data to XML (strings)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "text-xml-qq" = callPackage @@ -216340,6 +221655,7 @@ self: { homepage = "http://www.github.com/finnsson/text-xml-qq"; description = "Quasiquoter for xml. XML DSL in Haskell."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "text-zipper_0_3_1" = callPackage @@ -216405,6 +221721,7 @@ self: { homepage = "https://github.com/spockz/Haskell-Code-Completion-for-TextMate"; description = "A simple Haskell program to provide tags for Haskell code completion in TextMate"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "textocat-api" = callPackage @@ -216488,6 +221805,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; description = "Template-Haskell code for tfp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tftp" = callPackage @@ -216547,6 +221865,7 @@ self: { homepage = "https://github.com/jkarni/th-alpha"; description = "Alpha equivalence for TH Exp"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-build" = callPackage @@ -216560,6 +221879,7 @@ self: { homepage = "https://github.com/DanielSchuessler/th-build"; description = "More convenient construction of TH ASTs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-cas" = callPackage @@ -216598,6 +221918,7 @@ self: { homepage = "https://github.com/seereason/th-context"; description = "Test instance context"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-desugar_1_4_2" = callPackage @@ -216861,6 +222182,7 @@ self: { homepage = "http://code.haskell.org/~mokus/th-fold"; description = "TH fold generator"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-inline-io-action" = callPackage @@ -216895,6 +222217,7 @@ self: { homepage = "https://github.com/nikita-volkov/th-instance-reification"; description = "Fixed versions of instances reification functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-instances" = callPackage @@ -216918,6 +222241,7 @@ self: { ]; description = "A place to collect orphan instances for Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds" = callPackage @@ -216930,6 +222254,7 @@ self: { jailbreak = true; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "th-kinds-fork" = callPackage @@ -216945,6 +222270,7 @@ self: { ]; description = "Automated kind inference in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-lift_0_7" = callPackage @@ -217149,6 +222475,7 @@ self: { homepage = "https://github.com/joelteon/th-printf"; description = "Compile-time printf"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-reify-many_0_1_2" = callPackage @@ -217250,6 +222577,7 @@ self: { libraryHaskellDepends = [ base containers template-haskell ]; description = "Binding group analysis in Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-traced" = callPackage @@ -217262,6 +222590,7 @@ self: { homepage = "https://github.com/konn/th-traced"; description = "Tracing Q monad computation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-typegraph" = callPackage @@ -217287,6 +222616,7 @@ self: { homepage = "https://github.com/seereason/th-typegraph"; description = "Graph of the subtype relation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "th-utilities" = callPackage @@ -217308,6 +222638,7 @@ self: { homepage = "https://github.com/fpco/th-utilities#readme"; description = "Collection of useful functions for use with Template Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "themoviedb" = callPackage @@ -217384,6 +222715,7 @@ self: { jailbreak = true; description = "A simple client for the TheoremQuest theorem proving game"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "these_0_6_2_0" = callPackage @@ -217501,6 +222833,7 @@ self: { homepage = "http://web.cecs.pdx.edu/~mpj/thih/"; description = "Typing Haskell In Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "thimk" = callPackage @@ -217519,6 +222852,7 @@ self: { homepage = "http://wiki.cs.pdx.edu/bartforge/thimk"; description = "Command-line spelling word suggestion tool"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "thorn" = callPackage @@ -217539,6 +222873,7 @@ self: { homepage = "https://github.com/Kinokkory/Thorn"; description = "Datatype Manipulation with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "thread-local-storage" = callPackage @@ -217653,6 +222988,7 @@ self: { ]; description = "Simple, IO-based library for Erlang-style thread supervision"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "threadscope" = callPackage @@ -217713,6 +223049,7 @@ self: { homepage = "http://wiki.haskell.org/Threepenny-gui"; description = "GUI framework that uses the web browser as a display"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "thrift" = callPackage @@ -217732,6 +223069,7 @@ self: { homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "thrist" = callPackage @@ -217781,6 +223119,7 @@ self: { homepage = "https://github.com/cutsea110/thumbnail"; description = "generate thumbnail image"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "thumbnail-plus" = callPackage @@ -217803,6 +223142,7 @@ self: { homepage = "https://github.com/prowdsponsor/thumbnail-plus"; description = "Generate thumbnails easily and safely"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "thyme" = callPackage @@ -217857,6 +223197,7 @@ self: { homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {gtk2 = pkgs.gnome2.gtk;}; "tic-tac-toe" = callPackage @@ -217871,6 +223212,7 @@ self: { homepage = "http://ecks.homeunix.net"; description = "Useful if reading \"Why FP matters\" by John Hughes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tickle" = callPackage @@ -217892,6 +223234,7 @@ self: { homepage = "https://github.com/NICTA/tickle"; description = "A port of @Data.Binary@"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "tictactoe3d" = callPackage @@ -217943,6 +223286,7 @@ self: { homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tidal-serial" = callPackage @@ -217983,6 +223327,7 @@ self: { homepage = "https://github.com/ppetr/tie-knot"; description = "\"Ties the knot\" on a given set of structures that reference each other by keys"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tiempo" = callPackage @@ -218013,6 +223358,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/HUT/WebHome"; description = "Tiger Compiler of Universiteit Utrecht"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tight-apply" = callPackage @@ -218059,6 +223405,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/tighttp/wiki"; description = "Tiny and Incrementally-Growing HTTP library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tilings" = callPackage @@ -218090,6 +223437,7 @@ self: { homepage = "http://www.timber-lang.org"; description = "The Timber Compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time_1_6_0_1" = callPackage @@ -218150,6 +223498,7 @@ self: { homepage = "http://semantic.org/TimeLib/"; description = "Data instances for the time package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "time-exts" = callPackage @@ -218176,6 +223525,7 @@ self: { homepage = "https://github.com/enzoh/time-exts"; description = "Efficient Timestamps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "time-http" = callPackage @@ -218201,6 +223551,7 @@ self: { homepage = "http://cielonegro.org/HTTPDateTime.html"; description = "Parse and format HTTP/1.1 Date and Time strings"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "time-interval" = callPackage @@ -218343,6 +223694,7 @@ self: { homepage = "https://github.com/christian-marie/time-qq"; description = "Quasi-quoter for UTCTime times"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "time-recurrence" = callPackage @@ -218376,6 +223728,7 @@ self: { executableHaskellDepends = [ base ]; description = "Time series analysis"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "time-units" = callPackage @@ -218403,6 +223756,7 @@ self: { homepage = "http://cielonegro.org/W3CDateTime.html"; description = "Parse, format and convert W3C Date and Time"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timecalc" = callPackage @@ -218416,6 +223770,7 @@ self: { executableHaskellDepends = [ base haskeline uu-parsinglib ]; homepage = "https://github.com/chriseidhof/TimeCalc"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timeconsole" = callPackage @@ -218536,6 +223891,7 @@ self: { homepage = "https://github.com/lambda-llama/timeout"; description = "Generalized sleep and timeout functions"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timeout-control" = callPackage @@ -218580,6 +223936,7 @@ self: { jailbreak = true; description = "Attoparsec parsers for various Date/Time formats"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timeplot" = callPackage @@ -218601,6 +223958,7 @@ self: { homepage = "http://haskell.org/haskellwiki/Timeplot"; description = "A tool for visualizing time series from log files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timerep" = callPackage @@ -218665,6 +224023,7 @@ self: { homepage = "https://github.com/Peaker/timestamp-subprocess-lines"; description = "Run a command and timestamp its stdout/stderr lines"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "timestamper" = callPackage @@ -218716,6 +224075,7 @@ self: { homepage = "http://projects.haskell.org/time-ng/"; description = "A pure Haskell parser and renderer for binary Olson timezone files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timezone-olson-th" = callPackage @@ -218733,6 +224093,7 @@ self: { homepage = "http://github.com/jonpetterbergman/timezone-olson-th"; description = "Load TimeZoneSeries from an Olson file at compile time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timezone-series_0_1_4" = callPackage @@ -218760,6 +224121,7 @@ self: { homepage = "http://projects.haskell.org/time-ng/"; description = "Enhanced timezone handling for Data.Time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timing-convenience" = callPackage @@ -218864,6 +224226,7 @@ self: { homepage = "http://tip-org.github.io"; description = "Convert from Haskell to Tip"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tip-lib" = callPackage @@ -218888,6 +224251,7 @@ self: { homepage = "http://tip-org.github.io"; description = "tons of inductive problems - support library and tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tiphys" = callPackage @@ -218945,6 +224309,7 @@ self: { homepage = "http://patch-tag.com/r/nonowarn/tkhs/snapshot/current/content/pretty/README"; description = "Simple Presentation Utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tkyprof" = callPackage @@ -218973,6 +224338,7 @@ self: { homepage = "https://github.com/maoe/tkyprof"; description = "A web-based visualizer for GHC Profiling Reports"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tld" = callPackage @@ -219403,6 +224769,7 @@ self: { homepage = "http://github.com/vincenthz/hs-tls"; description = "TLS extra default values and helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tmpl" = callPackage @@ -219469,6 +224836,7 @@ self: { homepage = "https://github.com/conal/to-haskell"; description = "A type class and some utilities for generating Haskell code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "to-string-class" = callPackage @@ -219480,6 +224848,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Converting string-like types to Strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "to-string-instances" = callPackage @@ -219491,6 +224860,7 @@ self: { libraryHaskellDepends = [ to-string-class ]; description = "Instances for the ToString class"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "todos" = callPackage @@ -219517,6 +224887,7 @@ self: { homepage = "http://gitorious.org/todos"; description = "Easy-to-use TODOs manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tofromxml" = callPackage @@ -219535,6 +224906,7 @@ self: { ]; description = "Reading and writing Haskell data from and to XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "toilet" = callPackage @@ -219554,6 +224926,7 @@ self: { homepage = "http://code.haskell.org/~thielema/toilet/"; description = "Manage the toilet queue at the IMO"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "token-bucket" = callPackage @@ -219612,6 +224985,7 @@ self: { QuickCheck ]; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tokyocabinet-haskell" = callPackage @@ -219625,6 +224999,7 @@ self: { homepage = "http://tom-lpsd.github.com/tokyocabinet-haskell/"; description = "Haskell binding of Tokyo Cabinet"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) tokyocabinet;}; "tokyotyrant-haskell" = callPackage @@ -219651,6 +225026,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/tomato-rubato"; description = "Easy to use library for audio programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "toml" = callPackage @@ -219666,6 +225042,7 @@ self: { ]; jailbreak = true; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "toolshed" = callPackage @@ -219683,6 +225060,7 @@ self: { homepage = "http://functionalley.eu"; description = "Ill-defined library"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "topkata" = callPackage @@ -219701,6 +225079,7 @@ self: { homepage = "http://home.arcor.de/chr_bauer/topkata.html"; description = "OpenGL Arcade Game"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "torch" = callPackage @@ -219713,6 +225092,7 @@ self: { homepage = "http://patch-tag.com/repo/torch/home"; description = "Simple unit test library (or framework)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "torrent" = callPackage @@ -219862,6 +225242,7 @@ self: { ]; description = "Assorted decision procedures for SAT, Max-SAT, PB, MIP, etc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tpdb" = callPackage @@ -219896,6 +225277,7 @@ self: { ]; description = "A monad transformer for tracing provenience of errors"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "trace-call" = callPackage @@ -219931,6 +225313,7 @@ self: { libraryHaskellDepends = [ base containers mtl pretty ]; description = "Simple evaluation trace"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tracer" = callPackage @@ -219973,6 +225356,7 @@ self: { libraryHaskellDepends = [ base containers glib ]; description = "Client library for Tracker metadata database, indexer and search tool"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tracy_0_1_2_0" = callPackage @@ -220016,6 +225400,7 @@ self: { librarySystemDepends = [ Judy traildb ]; description = "TrailDB bindings for Haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {Judy = null; traildb = null;}; "trajectory" = callPackage @@ -220040,6 +225425,7 @@ self: { homepage = "https://github.com/mike-burns/trajectory"; description = "Tools and a library for working with Trajectory"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transactional-events" = callPackage @@ -220054,6 +225440,7 @@ self: { jailbreak = true; description = "Transactional events, based on Concurrent ML semantics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transf" = callPackage @@ -220072,6 +225459,7 @@ self: { ]; description = "Text transformer and interpreter"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "transformations" = callPackage @@ -220092,6 +225480,7 @@ self: { ]; description = "Generic representation of tree transformations"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transformers_0_4_3_0" = callPackage @@ -220257,6 +225646,7 @@ self: { homepage = "https://github.com/jcristovao/transformers-convert"; description = "Sensible conversions between some of the monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transformers-eff" = callPackage @@ -220270,6 +225660,7 @@ self: { homepage = "https://github.com/ocharles/transformers-eff"; description = "An approach to managing composable effects, ala mtl/transformers/extensible-effects/Eff"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transformers-free" = callPackage @@ -220278,6 +225669,8 @@ self: { pname = "transformers-free"; version = "1.0.1"; sha256 = "e08b197351a03537b57f561d133e7266f4baf916638c88397a166f174f9e7f39"; + revision = "1"; + editedCabalFile = "f17896283725026a294f9f071226f73b66bd4609a408399393ccc62b9efc71fe"; libraryHaskellDepends = [ base transformers ]; description = "Free monad transformers"; license = stdenv.lib.licenses.bsd3; @@ -220318,6 +225711,7 @@ self: { homepage = "https://github.com/JanBessai/transformers-runnable"; description = "A unified interface for the run operation of monad transformers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transformers-supply" = callPackage @@ -220349,6 +225743,7 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "Making composable programs with multithreading, events and distributed computing"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "transient-universe" = callPackage @@ -220374,6 +225769,7 @@ self: { homepage = "http://www.fpcomplete.com/user/agocorona"; description = "remote execution and map-reduce: distributed computing for transient"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "translatable-intset" = callPackage @@ -220400,6 +225796,7 @@ self: { homepage = "http://github.com/nfjinjing/translate"; description = "Haskell binding to Google's AJAX Language API for Translation and Detection"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "traverse-with-class_0_2_0_3" = callPackage @@ -220505,6 +225902,7 @@ self: { homepage = "http://projects.haskell.org/traypoweroff"; description = "Tray Icon application to PowerOff / Reboot computer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tree-fun" = callPackage @@ -220623,6 +226021,7 @@ self: { ]; description = "Library for polling Tremulous servers"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "trhsx" = callPackage @@ -220633,6 +226032,7 @@ self: { sha256 = "631601c5345599e08535221df4415c7676e3e307bfa6a13d32e3c46d9c145d86"; description = "Deprecated"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "triangulation" = callPackage @@ -220649,6 +226049,7 @@ self: { homepage = "http://www.dinkla.net/"; description = "triangulation of polygons"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tries" = callPackage @@ -220745,6 +226146,7 @@ self: { jailbreak = true; description = "Search for, annotate and trim poly-A tail"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tripLL" = callPackage @@ -220798,6 +226200,7 @@ self: { jailbreak = true; description = "A library for tropical mathematics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "true-name_0_0_0_2" = callPackage @@ -220914,6 +226317,7 @@ self: { libraryHaskellDepends = [ base containers mtl time transformers ]; description = "A Transaction Framework for Web Applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tsession-happstack" = callPackage @@ -220927,6 +226331,7 @@ self: { ]; description = "A Transaction Framework for Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tskiplist" = callPackage @@ -220939,6 +226344,7 @@ self: { homepage = "https://github.com/thaldyron/tskiplist"; description = "A Skip List Implementation in Software Transactional Memory (STM)"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tslib" = callPackage @@ -220987,6 +226393,7 @@ self: { homepage = "https://github.com/davnils/tsp-viz"; description = "Real time TSP tour visualization"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tsparse" = callPackage @@ -221255,6 +226662,7 @@ self: { jailbreak = true; description = "Interface to TUN/TAP drivers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tup-functor" = callPackage @@ -221293,6 +226701,7 @@ self: { jailbreak = true; description = "Enum instances for tuples where the digits increase with the same speed"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-generic" = callPackage @@ -221317,6 +226726,7 @@ self: { homepage = "http://github.com/dudebout/tuple-hlist"; description = "Functions to convert between tuples and HLists"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-lenses" = callPackage @@ -221343,6 +226753,7 @@ self: { libraryHaskellDepends = [ base HList template-haskell ]; description = "Morph between tuples, or convert them from and to HLists"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tuple-th" = callPackage @@ -221367,6 +226778,7 @@ self: { homepage = "http://github.com/diegoeche/tupleinstances"; description = "Functor, Applicative and Monad for n-ary tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "tuples-homogenous-h98" = callPackage @@ -221405,6 +226817,7 @@ self: { executableHaskellDepends = [ ALUT base ]; description = "Plays music generated by Turing machines with 5 states and 2 symbols"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "turingMachine" = callPackage @@ -221709,6 +227122,7 @@ self: { homepage = "http://github.com/nick8325/twee"; description = "An equational theorem prover"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "twentefp" = callPackage @@ -221786,6 +227200,7 @@ self: { jailbreak = true; description = "RoseTree type and show functions for lab assignment of University of Twente"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "twentefp-trees" = callPackage @@ -221847,6 +227262,7 @@ self: { homepage = "https://github.com/lysxia/twentyseven"; description = "Rubik's cube solver"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twhs" = callPackage @@ -221879,6 +227295,7 @@ self: { homepage = "https://github.com/suzuki-shin/twhs"; description = "CLI twitter client"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twidge" = callPackage @@ -221901,6 +227318,7 @@ self: { homepage = "http://software.complete.org/twidge"; description = "Unix Command-Line Twitter and Identica Client"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilight-stm" = callPackage @@ -221913,6 +227331,7 @@ self: { homepage = "http://proglang.informatik.uni-freiburg.de/projects/twilight/"; description = "STM library with safe irrevocable I/O and inconsistency repair"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twilio" = callPackage @@ -221960,6 +227379,7 @@ self: { jailbreak = true; description = "Twilio API interaction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "twiml" = callPackage @@ -221983,6 +227403,7 @@ self: { homepage = "https://github.com/markandrus/twiml-haskell"; description = "TwiML library for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "twine" = callPackage @@ -221999,6 +227420,7 @@ self: { homepage = "http://twine.james-sanders.com"; description = "very simple template language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twisty" = callPackage @@ -222015,6 +227437,7 @@ self: { jailbreak = true; description = "Simulator of twisty puzzles à la Rubik's Cube"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitch" = callPackage @@ -222054,6 +227477,7 @@ self: { ]; description = "A Haskell-based CLI Twitter client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "twitter-conduit_0_1_1_1" = callPackage @@ -222191,6 +227615,7 @@ self: { homepage = "https://github.com/himura/twitter-conduit"; description = "Twitter API package with conduit interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-enumerator" = callPackage @@ -222211,6 +227636,7 @@ self: { homepage = "https://github.com/himura/twitter-enumerator"; description = "Twitter API package with enumerator interface and Streaming API support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-feed_0_2_0_2" = callPackage @@ -222279,7 +227705,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "twitter-feed" = callPackage + "twitter-feed_0_2_0_5" = callPackage ({ mkDerivation, aeson, authenticate-oauth, base, bytestring , containers, http-conduit, HUnit, test-framework , test-framework-hunit @@ -222298,6 +227724,27 @@ self: { homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-feed" = callPackage + ({ mkDerivation, aeson, authenticate-oauth, base, bytestring + , containers, http-conduit, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "twitter-feed"; + version = "0.2.0.6"; + sha256 = "4decdf8a91574d4a41984e2c161782ce89b063ecf5ae65bb3249bbe080ca0380"; + libraryHaskellDepends = [ + aeson authenticate-oauth base bytestring http-conduit + ]; + testHaskellDepends = [ + base containers HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/stackbuilders/twitter-feed"; + description = "Client for fetching Twitter timeline via Oauth"; + license = stdenv.lib.licenses.mit; }) {}; "twitter-types_0_7_1_1" = callPackage @@ -222378,6 +227825,7 @@ self: { homepage = "https://github.com/himura/twitter-types"; description = "Twitter JSON parser and types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "twitter-types-lens_0_7_1" = callPackage @@ -222411,6 +227859,7 @@ self: { homepage = "https://github.com/himura/twitter-types-lens"; description = "Twitter JSON types (lens powered)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "tx" = callPackage @@ -222428,6 +227877,7 @@ self: { homepage = "https://github.com/mcschroeder/tx"; description = "Persistent transactions on top of STM"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "txt-sushi" = callPackage @@ -222502,6 +227952,7 @@ self: { homepage = "http://www.decidable.org/haskell/typalyze"; description = "Analyzes Haskell source files for easy reference"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-aligned" = callPackage @@ -222542,6 +227993,7 @@ self: { homepage = "https://github.com/wdanilo/type-cache"; description = "Utilities for caching type families results. Sometimes complex type families take long time to compile, so it is proficient to cache them and use the final result without the need of re-computation."; license = stdenv.lib.licenses.asl20; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-cereal" = callPackage @@ -222558,6 +228010,7 @@ self: { ]; description = "Type-level serialization of type constructors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-combinators" = callPackage @@ -222571,6 +228024,7 @@ self: { homepage = "https://github.com/kylcarte/type-combinators"; description = "A collection of data types for type-level programming"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-combinators-quote" = callPackage @@ -222588,6 +228042,7 @@ self: { homepage = "https://github.com/kylcarte/type-combinators-quote"; description = "Quasiquoters for the 'type-combinators' package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-digits" = callPackage @@ -222599,6 +228054,7 @@ self: { libraryHaskellDepends = [ base template-haskell type-spine ]; description = "Arbitrary-base type-level digits"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-eq_0_4_2" = callPackage @@ -222652,6 +228108,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-equality-check"; description = "Type equality check"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-fun" = callPackage @@ -222678,6 +228135,7 @@ self: { homepage = "http://darcs.wolfgang.jeltsch.info/haskell/type-functions"; description = "Emulation of type-level functions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-hint" = callPackage @@ -222702,6 +228160,7 @@ self: { homepage = "http://github.com/ekmett/type-int"; description = "Type Level 2s- and 16s- Complement Integers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-iso" = callPackage @@ -222728,6 +228187,7 @@ self: { homepage = "http://code.haskell.org/type-level"; description = "Type-level programming library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-level-bst" = callPackage @@ -222740,6 +228200,7 @@ self: { homepage = "https://github.com/Kinokkory/type-level-bst"; description = "type-level binary search trees in haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-level-natural-number" = callPackage @@ -222893,6 +228354,7 @@ self: { homepage = "https://github.com/konn/type-natural"; description = "Type-level natural and proofs of their properties"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-operators" = callPackage @@ -222905,6 +228367,7 @@ self: { homepage = "https://github.com/Shou/type-operators#readme"; description = "Various type-level operators"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-ord" = callPackage @@ -222918,6 +228381,7 @@ self: { ]; description = "Type-level comparison operator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-ord-spine-cereal" = callPackage @@ -222933,6 +228397,7 @@ self: { ]; description = "Generic type-level comparison of types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-prelude" = callPackage @@ -222945,6 +228410,7 @@ self: { homepage = "http://code.atnnn.com/projects/type-prelude"; description = "Partial port of prelude to the type level. Requires GHC 7.6.1."; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-settheory" = callPackage @@ -222960,6 +228426,7 @@ self: { ]; description = "Sets and functions-as-relations in the type system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-spine" = callPackage @@ -222971,6 +228438,7 @@ self: { libraryHaskellDepends = [ base template-haskell ]; description = "A spine-view on types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-structure" = callPackage @@ -222999,6 +228467,7 @@ self: { homepage = "https://github.com/nikita-volkov/type-structure"; description = "Type structure analysis"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "type-sub-th" = callPackage @@ -223024,6 +228493,7 @@ self: { homepage = "http://github.com/jfischoff/type-sub-th"; description = "Substitute types for other types with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "type-unary" = callPackage @@ -223054,6 +228524,7 @@ self: { homepage = "http://github.com/bennofs/typeable-th"; description = "Automatic deriving of TypeableN instances with Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "typed-spreadsheet" = callPackage @@ -223076,6 +228547,7 @@ self: { jailbreak = true; description = "Typed and composable spreadsheets"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typed-wire" = callPackage @@ -223101,6 +228573,7 @@ self: { homepage = "http://github.com/typed-wire/typed-wire#readme"; description = "Language-independent type-safe communication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "typed-wire-utils" = callPackage @@ -223117,6 +228590,7 @@ self: { homepage = "http://github.com/typed-wire/hs-typed-wire-utils#readme"; description = "Haskell utility library required for code generated by typed-wire compiler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typedquery" = callPackage @@ -223134,6 +228608,7 @@ self: { homepage = "https://github.com/tolysz/typedquery"; description = "Parser for SQL augmented with types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "typehash" = callPackage @@ -223146,6 +228621,7 @@ self: { jailbreak = true; description = "Create a unique hash value for a type"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "typelevel" = callPackage @@ -223177,6 +228653,7 @@ self: { homepage = "https://github.com/nushio3/typelevel-tensor"; description = "Tensors whose ranks and dimensions type-inferred and type-checked"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "typelits-witnesses_0_1_1_0" = callPackage @@ -223267,6 +228744,7 @@ self: { homepage = "http://github.com/mikeizbicki/typeparams/"; description = "Lens-like interface for type level parameters; allows unboxed unboxed vectors and supercompilation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "types-compat" = callPackage @@ -223314,6 +228792,7 @@ self: { homepage = "http://github.com/paf31/typescript-docs"; description = "A documentation generator for TypeScript Definition files"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "typical" = callPackage @@ -223371,7 +228850,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tz" = callPackage + "tz_0_1_1_0" = callPackage ({ mkDerivation, base, binary, bindings-posix, bytestring , containers, data-default, deepseq, HUnit, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -223394,6 +228873,33 @@ self: { homepage = "https://github.com/nilcons/haskell-tz"; description = "Efficient time zone handling"; license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tz" = callPackage + ({ mkDerivation, base, binary, bindings-posix, bytestring + , containers, data-default, deepseq, HUnit, QuickCheck + , template-haskell, test-framework, test-framework-hunit + , test-framework-quickcheck2, test-framework-th, time, tzdata, unix + , vector + }: + mkDerivation { + pname = "tz"; + version = "0.1.1.1"; + sha256 = "66862e68a1dca1a9fb5372b86f23ae64f39ff0f2f075041fc3dae4c7d2dedcd0"; + libraryHaskellDepends = [ + base binary bytestring containers data-default deepseq + template-haskell time tzdata vector + ]; + testHaskellDepends = [ + base bindings-posix HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 test-framework-th + time tzdata unix vector + ]; + preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; + homepage = "https://github.com/nilcons/haskell-tz"; + description = "Efficient time zone handling"; + license = stdenv.lib.licenses.asl20; }) {}; "tzdata_0_1_20150810_0" = callPackage @@ -223456,6 +228962,7 @@ self: { jailbreak = true; description = "A simplistic dependently-typed language with parametricity"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ua-parser" = callPackage @@ -223509,6 +229016,7 @@ self: { homepage = "https://github.com/byteally/webapi-uber.git"; description = "Uber client for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uberlast" = callPackage @@ -223521,6 +229029,7 @@ self: { homepage = "https:/github.com/fumieval/uberlast"; description = "Generate overloaded lenses from plain data declaration"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uconv" = callPackage @@ -223533,6 +229042,7 @@ self: { librarySystemDepends = [ icu ]; description = "String encoding conversion with ICU"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) icu;}; "udbus" = callPackage @@ -223552,6 +229062,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Small DBus implementation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udbus-model" = callPackage @@ -223566,6 +229077,7 @@ self: { homepage = "http://github.com/vincenthz/hs-udbus"; description = "Model API for udbus introspection and definitions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "udcode" = callPackage @@ -223632,6 +229144,7 @@ self: { homepage = "https://github.com/UU-ComputerScience/uhc"; description = "Part of UHC packaged as cabal/hackage installable library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uhc-util" = callPackage @@ -223702,6 +229215,7 @@ self: { libraryHaskellDepends = [ base data-default mtl old-locale time ]; description = "A framework for friendly commandline programs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uid" = callPackage @@ -223758,10 +229272,10 @@ self: { ({ mkDerivation, base, io-streams, unagi-chan }: mkDerivation { pname = "unagi-streams"; - version = "0.1.3"; - sha256 = "a612333c5b4f0f367e9a0bf81f3ec62ff047cab4204ad1bc90bc1791b80e1d55"; + version = "0.2.0"; + sha256 = "2a9fe32a18f9ab2211e03916956b34f341fa417e879dfd18a01f7eb907133c56"; libraryHaskellDepends = [ base io-streams unagi-chan ]; - jailbreak = true; + homepage = "https://github.com/LukeHoersten/unagi-streams"; description = "Unagi Chan IO-Streams"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -223790,6 +229304,7 @@ self: { homepage = "http://github.com/luqui/unamb-custom"; description = "Functional concurrency with unamb using a custom scheduler"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unbound" = callPackage @@ -223807,6 +229322,7 @@ self: { homepage = "https://github.com/sweirich/replib"; description = "Generic support for programming with names and binders"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unbound-generics_0_1" = callPackage @@ -223954,6 +229470,7 @@ self: { homepage = "https://github.com/jcristovao/unbouded-delays-units"; description = "Thread delays and timeouts using proper time units"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unboxed-containers" = callPackage @@ -223966,6 +229483,7 @@ self: { homepage = "http://github.com/ekmett/unboxed-containers"; description = "Self-optimizing unboxed sets using view patterns and data families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unbreak" = callPackage @@ -223988,6 +229506,7 @@ self: { homepage = "https://e.xtendo.org/scs/unbreak"; description = "Secure and resilient remote file storage utility"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uncertain" = callPackage @@ -224088,6 +229607,7 @@ self: { homepage = "http://www.informatik.uni-bremen.de/uniform/wb/"; description = "Graphs"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uni-htk" = callPackage @@ -224105,6 +229625,7 @@ self: { homepage = "http://www.informatik.uni-bremen.de/htk/"; description = "Graphical User Interface for Haskell Programs"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uni-posixutil" = callPackage @@ -224153,6 +229674,7 @@ self: { homepage = "http://www.informatik.uni-bremen.de/uniform/wb"; description = "Graphs binding"; license = "LGPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uni-util" = callPackage @@ -224211,6 +229733,7 @@ self: { homepage = "http://sloompie.reinier.de/unicode-normalization/"; description = "Unicode normalization using the ICU library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) icu;}; "unicode-prelude" = callPackage @@ -224280,6 +229803,7 @@ self: { homepage = "https://github.com/Zankoku-Okuno/unicoder"; description = "Make writing in unicode easy"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unification-fd" = callPackage @@ -224313,6 +229837,7 @@ self: { homepage = "https://sealgram.com/git/haskell/uniform-io"; description = "Uniform IO over files, network, anything"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) openssl;}; "uniform-pair" = callPackage @@ -224374,6 +229899,7 @@ self: { homepage = "http://github.com/minpou/union-map"; description = "Heterogeneous map by open unions"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uniplate" = callPackage @@ -224454,6 +229980,7 @@ self: { homepage = "http://github.com/sebfisch/uniqueid/wikis"; description = "Splittable Unique Identifier Supply"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unit" = callPackage @@ -224518,6 +230045,7 @@ self: { homepage = "https://github.com/jcristovao/units-attoparsec"; description = "Attoparsec parsers for the units package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "units-defs" = callPackage @@ -224561,6 +230089,7 @@ self: { homepage = "https://bitbucket.org/xnyhps/haskell-unittyped/"; description = "An extendable library for type-safe computations including units"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "universal-binary" = callPackage @@ -224687,6 +230216,7 @@ self: { homepage = "http://github.com/jfishcoff/universe-th"; description = "Construct a Dec's ancestor list"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix_2_7_2_0" = callPackage @@ -224720,6 +230250,8 @@ self: { pname = "unix-compat"; version = "0.4.1.3"; sha256 = "ab930a71d3cd9884a6c2bf58f330fa13c68cecb26d5cff20d435cdf69d1bdced"; + revision = "1"; + editedCabalFile = "b335d012532893d878bd5f310a95d894ce57eb87df1e8e487481f39740cec9af"; libraryHaskellDepends = [ base unix ]; homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; @@ -224733,14 +230265,27 @@ self: { pname = "unix-compat"; version = "0.4.1.4"; sha256 = "fafa1a9eefc93287c028cc61f17a91f886f164b3f64392f1756f8a7f8b3cb34b"; - revision = "1"; - editedCabalFile = "401047ed04906f81b78929274ebe1b3f321e2c61a52124a034da7bacccd3b03c"; + revision = "2"; + editedCabalFile = "2c9cfb5497baed3eeddfe5c6cc249bf51a76e2bb646c322b8f45a0db8c42129c"; libraryHaskellDepends = [ base unix ]; homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; license = stdenv.lib.licenses.bsd3; }) {}; + "unix-compat_0_4_2_0" = callPackage + ({ mkDerivation, base, unix }: + mkDerivation { + pname = "unix-compat"; + version = "0.4.2.0"; + sha256 = "35f11770757853be6134b3e4d72a20ecd32c5b0326abebf2605d7ac00bd8d60c"; + libraryHaskellDepends = [ base unix ]; + homepage = "http://github.com/jystic/unix-compat"; + description = "Portable POSIX-compatibility layer"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unix-fcntl" = callPackage ({ mkDerivation, base, foreign-var, unix }: mkDerivation { @@ -224817,6 +230362,7 @@ self: { homepage = "https://github.com/snoyberg/conduit"; description = "Run processes on Unix systems, with a conduit interface (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unix-pty-light" = callPackage @@ -224912,6 +230458,7 @@ self: { executableHaskellDepends = [ base directory text ]; description = "Tool to convert literate code between styles or to code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unm-hip" = callPackage @@ -224989,6 +230536,7 @@ self: { homepage = "http://github.com/tcrayford/rematch"; description = "Rematch support for unordered containers"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unordered-graphs" = callPackage @@ -225020,6 +230568,7 @@ self: { ]; description = "Monad transformers that mirror worker-wrapper transformations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unroll-ghc-plugin" = callPackage @@ -225032,6 +230581,7 @@ self: { homepage = "http://thoughtpolice.github.com/unroll-ghc-plugin"; description = "Compiler plugin for loop unrolling"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unsafe" = callPackage @@ -225101,6 +230651,7 @@ self: { ]; description = "Solve Boggle-like word games"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "unsequential" = callPackage @@ -225121,6 +230672,7 @@ self: { homepage = "https://github.com/nikita-volkov/unsequential"; description = "An extension removing the sequentiality from monads"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unusable-pkg" = callPackage @@ -225172,6 +230724,7 @@ self: { homepage = "https://github.com/thomaseding/up"; description = "Command line tool to generate pathnames to facilitate moving upward in a file system"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "up-grade" = callPackage @@ -225203,6 +230756,7 @@ self: { jailbreak = true; description = "Haskell client for Uploadcare"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "upskirt" = callPackage @@ -225214,6 +230768,7 @@ self: { libraryHaskellDepends = [ base bytestring ]; description = "Binding to upskirt"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ureader" = callPackage @@ -225239,6 +230794,7 @@ self: { homepage = "https://github.com/pxqr/ureader"; description = "Minimalistic CLI RSS reader"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "urembed" = callPackage @@ -225260,6 +230816,7 @@ self: { homepage = "http://github.com/grwlf/urembed"; description = "Ur/Web static content generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uri" = callPackage @@ -225455,6 +231012,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uri-encode_1_5_0_3" = callPackage @@ -225509,6 +231067,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Read and write URIs (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uri-enumerator-file" = callPackage @@ -225529,6 +231088,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "uri-enumerator backend for the file scheme (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uri-template" = callPackage @@ -225589,6 +231149,7 @@ self: { libraryHaskellDepends = [ base mtl syb ]; description = "Parse/format generic key/value URLs from record data types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "urlcheck" = callPackage @@ -225607,6 +231168,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/urlcheck"; description = "Parallel link checker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "urldecode" = callPackage @@ -225621,6 +231183,7 @@ self: { homepage = "https://github.com/beastaugh/urldecode"; description = "Decode percent-encoded strings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "urldisp-happstack" = callPackage @@ -225632,6 +231195,7 @@ self: { libraryHaskellDepends = [ base bytestring happstack-server mtl ]; description = "Simple, declarative, expressive URL routing -- on happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "urlencoded" = callPackage @@ -225718,6 +231282,7 @@ self: { homepage = "http://github.com/grwlf/urxml"; description = "XML parser-printer supporting Ur/Web syntax extensions"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "usb" = callPackage @@ -225735,6 +231300,7 @@ self: { homepage = "http://basvandijk.github.com/usb"; description = "Communicate with USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "usb-enumerator" = callPackage @@ -225752,6 +231318,7 @@ self: { jailbreak = true; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-hid" = callPackage @@ -225767,6 +231334,7 @@ self: { homepage = "https://github.com/mapinguari/usb-hid"; description = "Parser and request Library for USB HIDs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "usb-id-database" = callPackage @@ -225804,6 +231372,7 @@ self: { homepage = "https://github.com/basvandijk/usb-iteratee"; description = "Iteratee enumerators for the usb package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "usb-safe" = callPackage @@ -225822,6 +231391,7 @@ self: { homepage = "https://github.com/basvandijk/usb-safe/"; description = "Type-safe communication with USB devices"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "userid_0_1_2_3" = callPackage @@ -225875,6 +231445,7 @@ self: { homepage = "http://www.github.com/Happstack/userid"; description = "The UserId type and useful instances for web development"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "users_0_1_0_0" = callPackage @@ -225999,6 +231570,7 @@ self: { homepage = "https://github.com/agrafix/users"; description = "A persistent backend for the users package"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "users-postgresql-simple_0_1_0_1" = callPackage @@ -226147,6 +231719,7 @@ self: { homepage = "https://github.com/lpeterse/haskell-utc"; description = "A pragmatic time and date library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "utf8-env" = callPackage @@ -226183,6 +231756,7 @@ self: { jailbreak = true; description = "Variants of Prelude and System.IO with UTF8 text I/O operations"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "utf8-string_0_3_8" = callPackage @@ -226334,6 +231908,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/bin/view/HUT/ParserCombinators"; description = "Parse command line options using uu-interleave and uu-parsinglib"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uu-parsinglib_2_9_1" = callPackage @@ -226444,6 +232019,7 @@ self: { jailbreak = true; description = "Utility for drawing attribute grammar pictures with the diagrams package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uuagd" = callPackage @@ -226689,6 +232265,7 @@ self: { ]; description = "Orphan instances for the UUID datatype"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "uuid-quasi" = callPackage @@ -226814,6 +232391,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/uvector"; description = "Fast unboxed arrays with a flexible interface"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uvector-algorithms" = callPackage @@ -226826,6 +232404,7 @@ self: { homepage = "http://code.haskell.org/~dolio/"; description = "Efficient algorithms for uvector unboxed arrays"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "uxadt" = callPackage @@ -226866,6 +232445,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "interface to Video For Linux Two (V4L2)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "v4l2-examples" = callPackage @@ -226881,6 +232461,7 @@ self: { homepage = "https://gitorious.org/hsv4l2"; description = "video for linux two examples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vacuum" = callPackage @@ -226893,6 +232474,7 @@ self: { homepage = "http://thoughtpolice.github.com/vacuum"; description = "Graph representation of the GHC heap"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vacuum-cairo" = callPackage @@ -226910,6 +232492,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vacuum-cairo"; description = "Visualize live Haskell data structures using vacuum, graphviz and cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vacuum-graphviz" = callPackage @@ -226922,6 +232505,7 @@ self: { jailbreak = true; description = "A library for transforming vacuum graphs into GraphViz output"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vacuum-opengl" = callPackage @@ -226942,6 +232526,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "Visualize live Haskell data structures using vacuum, graphviz and OpenGL"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vacuum-ubigraph" = callPackage @@ -226954,6 +232539,7 @@ self: { jailbreak = true; description = "Visualize Haskell data structures using vacuum and Ubigraph"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vado" = callPackage @@ -227095,6 +232681,7 @@ self: { homepage = "https://github.com/mavenraven/validations"; description = "A nice way to define field validations in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "value-supply" = callPackage @@ -227129,6 +232716,7 @@ self: { homepage = "https://github.com/benzrf/vampire"; description = "Analyze and visualize expression trees"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "var" = callPackage @@ -227146,6 +232734,7 @@ self: { homepage = "http://github.com/sonyandy/var"; description = "Mutable variables and tuples"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "varan" = callPackage @@ -227182,6 +232771,7 @@ self: { homepage = "https://gitorious.org/variable-precision"; description = "variable-precision floating point"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "variables" = callPackage @@ -227213,6 +232803,7 @@ self: { homepage = "https://github.com/schell/varying"; description = "FRP through value streams and monadic splines"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vault_0_3_0_3" = callPackage @@ -227302,6 +232893,7 @@ self: { ]; description = "Common types and instances for Vaultaire"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcache" = callPackage @@ -227319,6 +232911,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache"; description = "semi-transparent persistence for Haskell using LMDB, STM"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcache-trie" = callPackage @@ -227335,6 +232928,7 @@ self: { homepage = "http://github.com/dmbarbour/haskell-vcache-trie"; description = "patricia tries modeled above VCache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "vcard" = callPackage @@ -227421,6 +233015,7 @@ self: { homepage = "https://github.com/forste/haskellVCSGUI"; description = "GUI library for source code management systems"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vcswrapper_0_1_2" = callPackage @@ -227521,6 +233116,7 @@ self: { homepage = "http://code.haskell.org/~bkomuves/"; description = "OpenGL support for the `vect' low-dimensional linear algebra library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector_0_10_9_3" = callPackage @@ -227799,6 +233395,7 @@ self: { homepage = "https://github.com/basvandijk/vector-bytestring"; description = "ByteStrings as type synonyms of Storable Vectors of Word8s"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-clock" = callPackage @@ -227818,6 +233415,7 @@ self: { homepage = "https://github.com/scvalex/vector-clock"; description = "Vector clocks for versioning message flows"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-conduit" = callPackage @@ -227837,6 +233435,7 @@ self: { jailbreak = true; description = "Conduit utilities for vectors"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-fftw_0_1_3_5" = callPackage @@ -227880,6 +233479,7 @@ self: { homepage = "http://github.com/mikeizbicki/vector-functorlazy/"; description = "vectors that perform the fmap operation in constant time"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-heterogenous" = callPackage @@ -227892,6 +233492,7 @@ self: { homepage = "http://github.com/mikeizbicki/vector-heterogenous/"; description = "A type-safe library for vectors whose elements can be of any type, or any type satisfying some constraints"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-instances_3_3" = callPackage @@ -227961,6 +233562,7 @@ self: { homepage = "http://github.com/kreuzschlitzschraubenzieher/vector-instances-collections"; description = "Instances of the Data.Collections classes for Data.Vector.*"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-mmap" = callPackage @@ -227985,6 +233587,7 @@ self: { homepage = "http://code.haskell.org/~dons/code/vector-random"; description = "Generate vectors filled with high quality pseudorandom numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-read-instances" = callPackage @@ -227997,6 +233600,7 @@ self: { homepage = "http://www.tbi.univie.ac.at/~choener/"; description = "(deprecated) Read instances for 'Data.Vector'"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-sized" = callPackage @@ -228086,6 +233690,7 @@ self: { ]; description = "Instances of vector-space classes for OpenGL types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-space-points_0_2" = callPackage @@ -228149,6 +233754,7 @@ self: { homepage = "http://github.com/geezusfreeek/vector-static"; description = "Statically checked sizes on Data.Vector"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vector-strategies" = callPackage @@ -228330,6 +233936,7 @@ self: { homepage = "http://github.com/tomahawkins/verilog"; description = "Verilog preprocessor, parser, and AST"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "versions" = callPackage @@ -228347,6 +233954,7 @@ self: { jailbreak = true; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vhd" = callPackage @@ -228437,6 +234045,7 @@ self: { homepage = "http://github.com/michaelxavier/vigilance"; description = "An extensible dead-man's switch system"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "vimeta" = callPackage @@ -228491,6 +234100,7 @@ self: { ]; description = "An MPD client with vim-like key bindings"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {inherit (pkgs) ncurses;}; "vintage-basic" = callPackage @@ -228510,6 +234120,7 @@ self: { homepage = "http://www.vintage-basic.net"; description = "Interpreter for microcomputer-era BASIC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vinyl_0_5_1" = callPackage @@ -228558,6 +234169,7 @@ self: { ]; description = "Utilities for working with OpenGL's GLSL shading language and vinyl records"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vinyl-json" = callPackage @@ -228575,6 +234187,7 @@ self: { jailbreak = true; description = "Provide json instances automagically to vinyl types"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vinyl-operational" = callPackage @@ -228590,6 +234203,7 @@ self: { homepage = "http://github.com/andrewthad/vinyl-operational#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vinyl-plus" = callPackage @@ -228608,6 +234222,7 @@ self: { homepage = "http://github.com/andrew/vinyl-plus"; description = "Vinyl records utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vinyl-utils" = callPackage @@ -228640,6 +234255,7 @@ self: { homepage = "http://github.com/andrewthad/vinyl-vectors"; description = "Vectors for vinyl vectors"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "virthualenv" = callPackage @@ -228660,6 +234276,7 @@ self: { homepage = "https://github.com/Paczesiowa/virthualenv"; description = "Virtual Haskell Environment builder"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "visibility" = callPackage @@ -228692,6 +234309,7 @@ self: { ]; description = "An XMMS2 client"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-graphrewrite" = callPackage @@ -228720,6 +234338,7 @@ self: { homepage = "http://github.com/zsol/visual-graphrewrite/"; description = "Visualize the graph-rewrite steps of a Haskell program"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "visual-prof" = callPackage @@ -228740,6 +234359,7 @@ self: { homepage = "http://github.com/djv/VisualProf"; description = "Create a visual profile of a program's source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vivid" = callPackage @@ -228758,6 +234378,7 @@ self: { homepage = "http://vivid-synth.com"; description = "Sound synthesis with SuperCollider"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vk-aws-route53" = callPackage @@ -228775,6 +234396,7 @@ self: { ]; description = "Amazon Route53 DNS service plugin for the aws package"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vk-posix-pty" = callPackage @@ -228861,6 +234483,7 @@ self: { homepage = "https://github.com/cartazio/Vowpal-Utils"; description = "Vowpal Wabbit utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "voyeur" = callPackage @@ -228874,6 +234497,7 @@ self: { homepage = "https://github.com/sethfowler/hslibvoyeur"; description = "Haskell bindings for libvoyeur"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vrpn" = callPackage @@ -228905,6 +234529,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "vtegtk3" = callPackage @@ -228919,6 +234544,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the VTE library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "vty_5_4_0" = callPackage @@ -229024,6 +234650,7 @@ self: { jailbreak = true; description = "A lib for displaying a menu and getting a selection using VTY"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vty-ui" = callPackage @@ -229048,6 +234675,7 @@ self: { homepage = "http://jtdaugherty.github.com/vty-ui/"; description = "An interactive terminal user interface library for Vty"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vty-ui-extras" = callPackage @@ -229060,6 +234688,7 @@ self: { jailbreak = true; description = "Extra vty-ui functionality not included in the core library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "vulkan" = callPackage @@ -229073,6 +234702,7 @@ self: { homepage = "http://github.com/expipiplus1/vulkan#readme"; description = "Bindings to the Vulkan graphics API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {vulkan = null;}; "wacom-daemon" = callPackage @@ -229098,6 +234728,7 @@ self: { homepage = "https://github.com/portnov/wacom-intuos-pro-scripts"; description = "Manage Wacom tablet settings profiles, including Intuos Pro ring modes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "waddle" = callPackage @@ -229122,6 +234753,7 @@ self: { homepage = "https://github.com/mgrabmueller/waddle"; description = "DOOM WAD file utilities"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai_3_0_2" = callPackage @@ -229967,6 +235599,7 @@ self: { homepage = "https://github.com/urbanslug/wai-devel"; description = "A web server for the development of WAI compliant web applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-digestive-functors" = callPackage @@ -229996,6 +235629,7 @@ self: { homepage = "https://github.com/singpolyma/wai-dispatch"; description = "Nice wrapper around yesod-routes for use with WAI"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-eventsource" = callPackage @@ -230709,6 +236343,7 @@ self: { homepage = "https://bitbucket.org/dpwiz/wai-graceful"; description = "Graceful shutdown for WAI applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-handler-devel" = callPackage @@ -230731,6 +236366,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "WAI server that automatically reloads code after modification. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-handler-fastcgi" = callPackage @@ -230881,6 +236517,7 @@ self: { homepage = "http://github.com/snoyberg/wai-handler-snap"; description = "Web Application Interface handler using snap-server. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-handler-webkit" = callPackage @@ -230894,6 +236531,7 @@ self: { homepage = "https://github.com/yesodweb/wai/tree/master/wai-handler-webkit"; description = "Turn WAI applications into standalone GUIs using QtWebkit"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {QtWebKit = null;}; "wai-hastache" = callPackage @@ -230910,6 +236548,7 @@ self: { homepage = "https://github.com/singpolyma/wai-hastache"; description = "Nice wrapper around hastache for use with WAI"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-hmac-auth" = callPackage @@ -230967,6 +236606,7 @@ self: { jailbreak = true; description = "DEPCRECATED (use package \"simple\" instead) A minimalist web framework for WAI web applications"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-logger_2_2_3" = callPackage @@ -231087,6 +236727,7 @@ self: { ]; description = "A logging system for preforked WAI apps"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-make-assets" = callPackage @@ -231096,8 +236737,8 @@ self: { }: mkDerivation { pname = "wai-make-assets"; - version = "0.1"; - sha256 = "881392ea0dc1230cb66d2919520546c70766396af292e2972e0c05ff1ddc4334"; + version = "0.1.1"; + sha256 = "0e05db16a0d5d93439833d29b33aed97cd9b2093b99f8939ada104eded63877f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -231138,6 +236779,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache"; description = "Caching middleware for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-cache-redis" = callPackage @@ -231158,6 +236800,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-cache-redis"; description = "Redis backend for wai-middleware-cache"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-caching" = callPackage @@ -231225,6 +236868,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-catch"; description = "Wai error catching middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-middleware-consul" = callPackage @@ -231315,6 +236959,7 @@ self: { ]; description = "A simple WAI library for responding with content"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-crowd_0_1_1_2" = callPackage @@ -231435,6 +237080,7 @@ self: { ]; description = "Middleware and utilities for using Atlassian Crowd authentication"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "wai-middleware-etag" = callPackage @@ -231482,6 +237128,7 @@ self: { homepage = "http://github.com/seanhess/wai-middleware-headers"; description = "cors and addHeaders for WAI"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-middleware-hmac" = callPackage @@ -231529,6 +237176,7 @@ self: { ]; description = "WAI HMAC Authentication Middleware Client"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-middleware-metrics_0_2_2" = callPackage @@ -231588,6 +237236,7 @@ self: { homepage = "https://github.com/taktoa/wai-middleware-preprocessor"; description = "WAI middleware for preprocessing static files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-middleware-prometheus" = callPackage @@ -231628,6 +237277,7 @@ self: { homepage = "https://github.com/akaspin/wai-middleware-route"; description = "Wai dispatch middleware"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-middleware-static_0_6_0_1" = callPackage @@ -231708,6 +237358,7 @@ self: { homepage = "https://github.com/agrafix/wai-middleware-static"; description = "WAI middleware that serves requests to static files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-middleware-throttle_0_2_0_1" = callPackage @@ -231800,6 +237451,7 @@ self: { ]; description = "Route different middleware responses based on the incoming HTTP verb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wai-predicates_0_8_4" = callPackage @@ -232111,6 +237763,7 @@ self: { homepage = "https://ajnsit.github.io/wai-routes/"; description = "Typesafe URLs for Wai applications"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-routing_0_12_1" = callPackage @@ -232353,6 +238006,7 @@ self: { homepage = "https://github.com/singpolyma/wai-session-tokyocabinet"; description = "Session store based on Tokyo Cabinet"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-static-cache" = callPackage @@ -232372,6 +238026,7 @@ self: { ]; description = "A simple cache for serving static files in a WAI middleware"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-static-pages" = callPackage @@ -232419,6 +238074,7 @@ self: { homepage = "https://github.com/yogeshsajanikar/wai-thrift"; description = "Thrift transport layer for Wai"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-throttler" = callPackage @@ -232435,6 +238091,7 @@ self: { jailbreak = true; description = "Wai middleware for request throttling"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wai-transformers" = callPackage @@ -233562,6 +239219,7 @@ self: { homepage = "http://tanakh.jp"; description = "Dynamic configurable warp HTTP server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "warp-static" = callPackage @@ -233584,6 +239242,7 @@ self: { homepage = "http://github.com/yesodweb/wai"; description = "Static file server based on Warp and wai-app-static (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "warp-tls_3_0_1" = callPackage @@ -233946,6 +239605,7 @@ self: { jailbreak = true; description = "set group and user id before running server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchdog" = callPackage @@ -233958,6 +239618,7 @@ self: { jailbreak = true; description = "Simple control structure to re-try an action with exponential backoff"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "watcher" = callPackage @@ -233975,6 +239636,7 @@ self: { jailbreak = true; description = "Opinionated filesystem watcher"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "watchit" = callPackage @@ -234003,6 +239665,7 @@ self: { ]; description = "File change watching utility"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wavconvert" = callPackage @@ -234051,6 +239714,7 @@ self: { homepage = "http://code.haskell.org/~StefanKersten/code/wavesurfer"; description = "Parse WaveSurfer files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wavy" = callPackage @@ -234073,6 +239737,7 @@ self: { homepage = "http://bitbucket.org/robertmassaioli/wavy"; description = "Process WAVE files in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wcwidth" = callPackage @@ -234109,6 +239774,7 @@ self: { homepage = "https://github.com/cvb/hs-weather-api.git"; description = "Weather api implemented in haskell"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-browser-in-haskell" = callPackage @@ -234120,6 +239786,7 @@ self: { libraryHaskellDepends = [ base gtk webkit ]; description = "Web Browser In Haskell"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-css" = callPackage @@ -234151,6 +239818,7 @@ self: { homepage = "http://github.com/snoyberg/web-encodings/tree/master"; description = "Encapsulate multiple web encoding in a single package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-fpco" = callPackage @@ -234167,6 +239835,7 @@ self: { homepage = "https://github.com/fpco/web-fpco"; description = "Wrappers for web frameworks to ease usage with the FP Complete environment"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-inv-route" = callPackage @@ -234187,6 +239856,7 @@ self: { testHaskellDepends = [ base bytestring HUnit network-uri text ]; description = "Composable, reversible, efficient web routing based on invertible invariants and bijections"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-mongrel2" = callPackage @@ -234206,6 +239876,7 @@ self: { homepage = "http://github.com/cmoore/web-mongrel2"; description = "Bindings for the Mongrel2 web server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-page" = callPackage @@ -234270,6 +239941,7 @@ self: { ]; description = "Library for maintaining correctness and composability of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-routes-happstack" = callPackage @@ -234285,6 +239957,7 @@ self: { ]; description = "Adds support for using web-routes with Happstack"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "web-routes-hsp" = callPackage @@ -234322,6 +239995,7 @@ self: { homepage = "http://docs.yesodweb.com/web-routes-quasi/"; description = "Define data types and parse/build functions for web-routes via a quasi-quoted DSL (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-routes-regular" = callPackage @@ -234333,6 +240007,7 @@ self: { libraryHaskellDepends = [ base parsec regular text web-routes ]; description = "portable, type-safe URL routing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-routes-th" = callPackage @@ -234349,6 +240024,7 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ]; description = "Support for deriving PathInfo using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-routes-transformers" = callPackage @@ -234361,6 +240037,7 @@ self: { jailbreak = true; description = "Extends web-routes with some transformers instances for RouteT"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "web-routes-wai" = callPackage @@ -234422,6 +240099,7 @@ self: { homepage = "http://byteally.github.io/webapi/"; description = "WAI based library for web api"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "webapp" = callPackage @@ -234444,6 +240122,7 @@ self: { homepage = "https://github.com/fhsjaagshs/webapp"; description = "Haskell web app framework based on WAI & Warp"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "webcloud" = callPackage @@ -234899,6 +240578,7 @@ self: { homepage = "https://github.com/kallisti-dev/hs-webdriver"; description = "a Haskell client for the Selenium WebDriver protocol (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "webfinger-client" = callPackage @@ -234961,6 +240641,7 @@ self: { homepage = "http://github.com/ananthakumaran/webify"; description = "webfont generator"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "webkit" = callPackage @@ -234992,6 +240673,7 @@ self: { libraryToolDepends = [ gtk2hs-buildtools ]; description = "JavaScriptCore FFI from webkitgtk"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) webkit;}; "webkitgtk3_0_14_1_1" = callPackage @@ -235029,6 +240711,7 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Webkit library"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) webkit;}; "webkitgtk3-javascriptcore_0_13_1_2" = callPackage @@ -235118,6 +240801,7 @@ self: { ]; description = "HTTP server library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "websnap" = callPackage @@ -235132,6 +240816,7 @@ self: { homepage = "https://github.com/jrb/websnap"; description = "Transforms URLs to PNGs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "websockets_0_9_2_1" = callPackage @@ -235436,6 +241121,7 @@ self: { ]; description = "Functional reactive web framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wedding-announcement" = callPackage @@ -235471,6 +241157,7 @@ self: { jailbreak = true; description = "Wedged postcard generator"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "weigh" = callPackage @@ -235479,8 +241166,8 @@ self: { }: mkDerivation { pname = "weigh"; - version = "0.0.1"; - sha256 = "eb2ad1ee0a1f8a7cb90e2485f7c03a3094fe27d68b113962b650656b36cc6da5"; + version = "0.0.2"; + sha256 = "181f5378ad402a32a6dede86563038dbbc27401206c9149c08a2cefa35904e4b"; libraryHaskellDepends = [ base deepseq mtl process split template-haskell ]; @@ -235506,6 +241193,7 @@ self: { homepage = "http://sebfisch.github.com/haskell-regexp"; description = "Weighted Regular Expression Matcher"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "weighted-search" = callPackage @@ -235539,6 +241227,7 @@ self: { homepage = "https://github.com/mcschroeder/welshy"; description = "Haskell web framework (because Scotty had trouble yodeling)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "werewolf_1_0_2_2" = callPackage @@ -235630,6 +241319,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "MongoDB plugin for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wheb-redis" = callPackage @@ -235643,6 +241333,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Redis connection for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wheb-strapped" = callPackage @@ -235656,6 +241347,7 @@ self: { homepage = "https://github.com/hansonkd/Wheb-Framework"; description = "Strapped templates for Wheb"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "while-lang-parser" = callPackage @@ -235687,6 +241379,7 @@ self: { homepage = "http://neugierig.org/software/darcs/whim/"; description = "A Haskell window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "whiskers" = callPackage @@ -235713,6 +241406,7 @@ self: { homepage = "https://github.com/haroldl/whitespace-nd"; description = "Whitespace, an esoteric programming language"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "whois" = callPackage @@ -235776,6 +241470,7 @@ self: { homepage = "https://github.com/debug-ito/wikicfp-scraper"; description = "Scrape WikiCFP web site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wikipedia4epub" = callPackage @@ -235796,6 +241491,7 @@ self: { homepage = "http://rampa.sk/static/wikipedia4epub.html"; description = "Wikipedia EPUB E-Book construction from Firefox history"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "win-hp-path" = callPackage @@ -235830,6 +241526,7 @@ self: { homepage = "http://patch-tag.com/repo/windowslive"; description = "Implements Windows Live Web Authentication and Delegated Authentication"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "winerror" = callPackage @@ -235841,6 +241538,7 @@ self: { doHaddock = false; description = "Error handling for foreign calls to the Windows API"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "winio" = callPackage @@ -235858,6 +241556,7 @@ self: { homepage = "http://github.com/felixmar/winio"; description = "I/O library for Windows"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {kernel32 = null; ws2_32 = null;}; "wiring" = callPackage @@ -235876,6 +241575,7 @@ self: { homepage = "http://github.com/seanparsons/wiring/"; description = "Wiring, promotion and demotion of types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "with-location_0_0_0" = callPackage @@ -236063,6 +241763,7 @@ self: { homepage = "http://github.com/bgamari/wkt"; description = "Parsec parsers and types for geographic data in well-known text (WKT) format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wl-pprint_1_1" = callPackage @@ -236244,6 +241945,7 @@ self: { jailbreak = true; description = "Haskell bindings for the wlc library"; license = stdenv.lib.licenses.isc; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) wlc;}; "wobsurv" = callPackage @@ -236281,6 +241983,7 @@ self: { homepage = "https://github.com/nikita-volkov/wobsurv"; description = "A simple and highly performant HTTP file server"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "woffex" = callPackage @@ -236297,6 +242000,7 @@ self: { jailbreak = true; description = "Web Open Font Format (WOFF) unpacker"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wol" = callPackage @@ -236347,6 +242051,7 @@ self: { homepage = "https://github.com/swift-nav/wolf"; description = "Amazon Simple Workflow Service Wrapper"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "woot" = callPackage @@ -236405,6 +242110,7 @@ self: { homepage = "http://www.tiresiaspress.us/haskell/word24"; description = "24-bit word and int types for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "word8_0_1_1" = callPackage @@ -236551,6 +242257,7 @@ self: { homepage = "https://github.com/mgajda/wordpass"; description = "Dictionary-based password generator"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "words" = callPackage @@ -236576,6 +242283,7 @@ self: { executableHaskellDepends = [ base containers fclabels ]; description = "A word search solver library and executable"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wordsetdiff" = callPackage @@ -236595,6 +242303,7 @@ self: { homepage = "http://people.csail.mit.edu/newton/wordsetdiff"; description = "Compare two files as sets of N-tuples of words"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "workflow-osx" = callPackage @@ -236616,6 +242325,7 @@ self: { homepage = "https://github.com/sboosali/workflow-osx#readme"; description = "a \"Desktop Workflow\" monad with Objective-C bindings"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wp-archivebot" = callPackage @@ -236632,6 +242342,7 @@ self: { jailbreak = true; description = "Subscribe to a wiki's RSS feed and archive external links"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wrap" = callPackage @@ -236677,6 +242388,7 @@ self: { homepage = "http://code.haskell.org/~thielema/wraxml/"; description = "Lazy wrapper to HaXML, HXT, TagSoup via custom XML tree structure"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wreq_0_3_0_1" = callPackage @@ -236850,6 +242562,7 @@ self: { jailbreak = true; description = "Colour space transformations and metrics"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wsdl" = callPackage @@ -236898,6 +242611,7 @@ self: { libraryHaskellDepends = [ base old-locale time transformers ]; description = "Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wtk-gtk" = callPackage @@ -236913,6 +242627,7 @@ self: { ]; description = "GTK tools within Wojcik Tool Kit"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wumpus-basic" = callPackage @@ -236929,6 +242644,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Basic objects and system code built on Wumpus-Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wumpus-core" = callPackage @@ -236944,6 +242660,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Pure Haskell PostScript and SVG generation"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wumpus-drawing" = callPackage @@ -236960,6 +242677,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "High-level drawing objects built on Wumpus-Basic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wumpus-microprint" = callPackage @@ -236977,6 +242695,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Microprints - \"greek-text\" pictures"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wumpus-tree" = callPackage @@ -236994,6 +242713,7 @@ self: { homepage = "http://code.google.com/p/copperbox/"; description = "Drawing trees"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "wuss" = callPackage @@ -237021,6 +242741,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxAsteroids" = callPackage @@ -237035,6 +242756,7 @@ self: { homepage = "https://wiki.haskell.org/WxAsteroids"; description = "Try to avoid the asteroids with your space ship"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "wxFruit" = callPackage @@ -237051,6 +242773,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/WxFruit"; description = "An implementation of Fruit using wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxc" = callPackage @@ -237068,6 +242791,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell C++ wrapper"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs.xorg) libX11; inherit (pkgs) mesa; inherit (pkgs) wxGTK;}; @@ -237087,6 +242811,7 @@ self: { homepage = "https://wiki.haskell.org/WxHaskell"; description = "wxHaskell core"; license = "unknown"; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {inherit (pkgs) wxGTK;}; "wxdirect" = callPackage @@ -237121,6 +242846,7 @@ self: { homepage = "http://github.com/elbrujohalcon/wxhnotepad"; description = "An example of how to implement a basic notepad with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wxturtle" = callPackage @@ -237136,6 +242862,7 @@ self: { ]; description = "turtle like LOGO with wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "wybor" = callPackage @@ -237178,6 +242905,7 @@ self: { homepage = "http://dmwit.com/wyvern"; description = "An autoresponder for Dragon Go Server"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "x-dsp" = callPackage @@ -237196,6 +242924,7 @@ self: { homepage = "http://jwlato.webfactional.com/haskell/x-dsp"; description = "A embedded DSL for manipulating DSP languages in Haskell"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "x11-xim" = callPackage @@ -237224,6 +242953,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/x11-xinput"; description = "Haskell FFI bindings for X11 XInput library (-lXi)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.xorg) libXi;}; "x509_1_5_0_1" = callPackage @@ -237697,6 +243427,7 @@ self: { ]; description = "XChat"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = [ "i686-linux" "x86_64-darwin" ]; }) {}; "xcp" = callPackage @@ -237807,6 +243538,7 @@ self: { ]; description = "Parse Graphviz xdot files and interactively view them using GTK and Cairo"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xenstore" = callPackage @@ -237838,6 +243570,7 @@ self: { homepage = "http://patch-tag.com/r/obbele/xfconf/home"; description = "FFI bindings to xfconf"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {libxfconf-0 = null;}; "xformat" = callPackage @@ -237868,6 +243601,7 @@ self: { homepage = "http://code.google.com/p/xhaskell-library/"; description = "Replaces/Enhances Text.Regex"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xhb" = callPackage @@ -237885,6 +243619,7 @@ self: { homepage = "https://github.com/aslatter/xhb"; description = "X Haskell Bindings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xhb-atom-cache" = callPackage @@ -237902,6 +243637,7 @@ self: { homepage = "http://github.com/jotrk/xhb-atom-cache/"; description = "Atom cache for XHB"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xhb-ewmh" = callPackage @@ -237920,6 +243656,7 @@ self: { homepage = "http://github.com/jotrk/xhb-ewmh/"; description = "EWMH utilities for XHB"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xhtml_3000_2_1" = callPackage @@ -237979,6 +243716,7 @@ self: { homepage = "http://github.com/joachifm/hxine"; description = "Bindings to xine-lib"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {libxine = null; xine = null;}; "xing-api" = callPackage @@ -238004,6 +243742,7 @@ self: { homepage = "http://github.com/JanAhrens/xing-api-haskell"; description = "Wrapper for the XING API, v1"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xinput-conduit" = callPackage @@ -238038,6 +243777,7 @@ self: { testHaskellDepends = [ base unix ]; description = "Haskell bindings for libxkbcommon"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libxkbcommon;}; "xkcd" = callPackage @@ -238056,6 +243796,7 @@ self: { homepage = "http://github.com/sellweek/xkcd"; description = "Downloads the most recent xkcd comic"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xlsior" = callPackage @@ -238387,6 +244128,7 @@ self: { homepage = "https://github.com/qrilka/xlsx-templater"; description = "Simple and incomplete Excel file templater"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml_1_3_13" = callPackage @@ -238446,6 +244188,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Parse XML catalog files (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-conduit_1_2_3" = callPackage @@ -238871,6 +244614,7 @@ self: { homepage = "http://github.com/snoyberg/xml"; description = "Pure-Haskell utilities for dealing with XML with the enumerator package. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-enumerator-combinators" = callPackage @@ -238889,6 +244633,7 @@ self: { jailbreak = true; description = "Parser combinators for xml-enumerator and compatible XML parsers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-extractors" = callPackage @@ -239049,6 +244794,7 @@ self: { homepage = "http://sep07.mroot.net/"; description = "Parsing XML with Parsec"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-picklers" = callPackage @@ -239078,6 +244824,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-pipe/wiki"; description = "XML parser which uses simple-pipe"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-prettify" = callPackage @@ -239093,6 +244840,7 @@ self: { homepage = "http://github.com/rosenbergdm/xml-prettify"; description = "Pretty print XML"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-push" = callPackage @@ -239114,6 +244862,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xml-push/wiki"; description = "Push XML from/to client to/from server over XMPP or HTTP"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml-query" = callPackage @@ -239143,6 +244892,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-conduit"; description = "A binding for the \"xml-query\" and \"xml-conduit\" libraries"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-query-xml-types" = callPackage @@ -239167,6 +244917,7 @@ self: { homepage = "https://github.com/sannsyn/xml-query-xml-types"; description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xml-to-json" = callPackage @@ -239287,6 +245038,7 @@ self: { homepage = "http://github.com/yihuang/xml2json"; description = "translate xml to json"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xml2x" = callPackage @@ -239305,6 +245057,7 @@ self: { jailbreak = true; description = "Convert BLAST output in XML format to CSV or HTML"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xmlgen" = callPackage @@ -239386,6 +245139,7 @@ self: { homepage = "http://github.com/dagle/hs-xmltv"; description = "Show tv channels in the terminal"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xmms2-client" = callPackage @@ -239402,6 +245156,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmms2-client-glib" = callPackage @@ -239414,6 +245169,7 @@ self: { libraryToolDepends = [ c2hs ]; description = "An XMMS2 client library — GLib integration"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmobar" = callPackage @@ -239442,6 +245198,7 @@ self: { homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {Xrender = null; inherit (pkgs.xorg) libXpm; inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; @@ -239493,6 +245250,7 @@ self: { homepage = "http://xmonad.org"; description = "A tiling window manager"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xmonad-contrib" = callPackage @@ -239534,6 +245292,7 @@ self: { homepage = "http://xmonad.org/"; description = "Third party extensions for xmonad"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xmonad-contrib-gpl" = callPackage @@ -239581,6 +245340,7 @@ self: { homepage = "http://xmonad.org/"; description = "Module for evaluation Haskell expressions in the running xmonad instance"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xmonad-extras" = callPackage @@ -239673,6 +245433,7 @@ self: { homepage = "https://github.com/YoshikuniJujo/xmpipe/wiki"; description = "XMPP implementation using simple-PIPE"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xorshift" = callPackage @@ -239736,6 +245497,7 @@ self: { homepage = "http://ianwookim.org/hxournal"; description = "convert utility for xoj files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xournal-parser" = callPackage @@ -239773,6 +245535,7 @@ self: { jailbreak = true; description = "Xournal file renderer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xournal-types" = callPackage @@ -239826,6 +245589,7 @@ self: { homepage = "http://malde.org/~ketil/"; description = "Cluster EST sequences"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "xsd" = callPackage @@ -239866,6 +245630,7 @@ self: { librarySystemDepends = [ xslt ]; description = "Binding to libxslt"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {xslt = null;}; "xss-sanitize_0_3_5_4" = callPackage @@ -239966,6 +245731,7 @@ self: { homepage = "http://github.com/alanz/xtc"; description = "eXtended & Typed Controls for wxHaskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "i686-linux" "x86_64-linux" ]; }) {}; "xtest" = callPackage @@ -240032,6 +245798,7 @@ self: { jailbreak = true; description = "#plaimi's all-encompassing bot"; license = stdenv.lib.licenses.agpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yabi" = callPackage @@ -240213,6 +245980,7 @@ self: { homepage = "http://www.people.fas.harvard.edu/~stewart5/code/yahoo-web-search"; description = "Yahoo Web Search Services"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yajl" = callPackage @@ -240227,6 +245995,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Bindings for YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) yajl;}; "yajl-enumerator" = callPackage @@ -240244,6 +246013,7 @@ self: { homepage = "https://john-millikin.com/software/haskell-yajl/"; description = "Enumerator-based interface to YAJL, an event-based JSON implementation"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yall" = callPackage @@ -240633,6 +246403,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Simple library for network (HTTP REST-like) YAML RPC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-scotty" = callPackage @@ -240650,6 +246421,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Scotty server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-rpc-snap" = callPackage @@ -240667,6 +246439,7 @@ self: { homepage = "http://redmine.iportnov.ru/projects/yaml-rpc"; description = "Snap server backend for yaml-rpc"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yaml-union" = callPackage @@ -240687,6 +246460,7 @@ self: { homepage = "https://github.com/michelk/yaml-overrides.hs"; description = "Read multiple yaml-files and override fields recursively"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yaml2owl" = callPackage @@ -240705,6 +246479,7 @@ self: { homepage = "http://github.com/leifw/yaml2owl"; description = "Generate OWL schema from YAML syntax, and an RDFa template"; license = "LGPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yamlkeysdiff" = callPackage @@ -240740,6 +246515,7 @@ self: { executableHaskellDepends = [ base blank-canvas text Yampa ]; description = "blank-canvas frontend for Yampa"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yampa-glfw" = callPackage @@ -240759,6 +246535,7 @@ self: { homepage = "https://github.com/deepfire/yampa-glfw"; description = "Connects GLFW-b (GLFW 3+) with the Yampa FRP library"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yampa-glut" = callPackage @@ -240781,6 +246558,7 @@ self: { homepage = "https://github.com/ony/yampa-glut"; description = "Connects Yampa and GLUT"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yampa2048" = callPackage @@ -240796,6 +246574,7 @@ self: { homepage = "https://github.com/ksaveljev/yampa-2048"; description = "2048 game clone using Yampa/Gloss"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; "yaop" = callPackage @@ -240810,6 +246589,7 @@ self: { homepage = "https://github.com/esmolanka/yaop"; description = "Yet another option parser"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yap" = callPackage @@ -240860,6 +246640,7 @@ self: { jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yarr-image-io" = callPackage @@ -240873,6 +246654,7 @@ self: { jailbreak = true; description = "Image IO for Yarr library"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) libdevil;}; "yate" = callPackage @@ -240893,6 +246675,7 @@ self: { jailbreak = true; description = "Yet Another Template Engine"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yavie" = callPackage @@ -240911,6 +246694,7 @@ self: { executableHaskellDepends = [ base Cabal directory process ]; description = "yet another visual editor"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ycextra" = callPackage @@ -240925,6 +246709,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Additional utilities to work with Yhc Core"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yeganesh" = callPackage @@ -241007,6 +246792,7 @@ self: { ]; description = "YesQL-style SQL database abstraction"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod_1_4_1_1" = callPackage @@ -241242,6 +247028,7 @@ self: { homepage = "https://github.com/tolysz/yesod-angular-ui"; description = "Angular Helpers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth_1_4_1" = callPackage @@ -241903,6 +247690,7 @@ self: { homepage = "https://github.com/meteficha/yesod-auth-account-fork"; description = "An account authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-basic" = callPackage @@ -241936,6 +247724,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "BCrypt salted and hashed passwords in a database as auth for yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-deskcom" = callPackage @@ -242127,7 +247916,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-hashdb" = callPackage + "yesod-auth-hashdb_1_5_1" = callPackage ({ mkDerivation, base, bytestring, classy-prelude, containers , cryptohash, hspec, http-conduit, http-types, monad-logger , network-uri, persistent, persistent-sqlite, pwstore-fast @@ -242150,6 +247939,32 @@ self: { homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; description = "Authentication plugin for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-hashdb" = callPackage + ({ mkDerivation, base, basic-prelude, bytestring, containers + , cryptohash, hspec, http-conduit, http-types, monad-logger + , network-uri, persistent, persistent-sqlite, pwstore-fast + , resourcet, text, wai-extra, yesod, yesod-auth, yesod-core + , yesod-form, yesod-persistent, yesod-test + }: + mkDerivation { + pname = "yesod-auth-hashdb"; + version = "1.5.1.1"; + sha256 = "399d76adbee53b80af091b360ebe61ef8e013e13fc40226d0464f7076865bc23"; + libraryHaskellDepends = [ + base bytestring cryptohash persistent pwstore-fast text yesod-auth + yesod-core yesod-form yesod-persistent + ]; + testHaskellDepends = [ + base basic-prelude bytestring containers hspec http-conduit + http-types monad-logger network-uri persistent-sqlite resourcet + text wai-extra yesod yesod-auth yesod-core yesod-test + ]; + homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; + description = "Authentication plugin for Yesod"; + license = stdenv.lib.licenses.mit; }) {}; "yesod-auth-kerberos" = callPackage @@ -242187,6 +248002,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "LDAP Authentication for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-ldap-mediocre" = callPackage @@ -242497,6 +248313,7 @@ self: { ]; description = "Provides PAM authentication module"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-smbclient" = callPackage @@ -242514,6 +248331,7 @@ self: { homepage = "https://github.com/kkazuo/yesod-auth-smbclient.git"; description = "Authentication plugin for Yesod using smbclient"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-auth-zendesk" = callPackage @@ -243713,6 +249531,7 @@ self: { ]; description = "Bootstrap widgets for yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-comments" = callPackage @@ -243733,6 +249552,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-comments"; description = "A generic comments interface for a Yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-content-pdf" = callPackage @@ -243755,6 +249575,7 @@ self: { homepage = "https://github.com/alexkyllo/yesod-content-pdf#readme"; description = "PDF Content Type for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-continuations" = callPackage @@ -243774,6 +249595,7 @@ self: { homepage = "https://github.com/softmechanics/yesod-continuations/"; description = "Continuations for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-core_1_4_6" = callPackage @@ -244762,6 +250584,7 @@ self: { homepage = "https://github.com/league/yesod-crud"; description = "Generic administrative CRUD operations as a Yesod subsite"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-crud-persist" = callPackage @@ -244781,6 +250604,7 @@ self: { homepage = "https://github.com/andrewthad/yesod-crud-persist"; description = "Flexible CRUD subsite usable with Yesod and Persistent"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-csp" = callPackage @@ -244830,6 +250654,7 @@ self: { homepage = "http://github.com/tlaitinen/yesod-datatables"; description = "Yesod plugin for DataTables (jQuery grid plugin)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-default" = callPackage @@ -244926,6 +250751,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Example programs using the Yesod Web Framework. (deprecated)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) sqlite;}; "yesod-fay_0_7_0" = callPackage @@ -245305,6 +251131,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies"; description = "A collection of various small helpers useful in any yesod application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-ip" = callPackage @@ -245373,6 +251200,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-goodies/yesod-links"; description = "A typeclass which simplifies creating link widgets throughout your site"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-lucid" = callPackage @@ -245491,6 +251319,7 @@ self: { homepage = "https://github.com/prowdsponsor/mangopay"; description = "Yesod library for MangoPay API access"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-markdown" = callPackage @@ -245511,6 +251340,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-markdown"; description = "Tools for using markdown in a yesod application"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-media-simple" = callPackage @@ -245528,6 +251358,7 @@ self: { homepage = "https://github.com/mgsloan/yesod-media-simple"; description = "Simple display of media types, served by yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-newsfeed_1_4_0" = callPackage @@ -245610,6 +251441,7 @@ self: { libraryHaskellDepends = [ base template-haskell yesod ]; description = "Pagination for Yesod sites"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-pagination" = callPackage @@ -245629,6 +251461,7 @@ self: { homepage = "https://github.com/joelteon/yesod-pagination"; description = "Pagination in Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-paginator" = callPackage @@ -245645,6 +251478,7 @@ self: { homepage = "http://github.com/pbrisbin/yesod-paginator"; description = "A pagination approach for yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-persistent_1_4_0_1" = callPackage @@ -245834,6 +251668,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Meta package for Yesod (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-pnotify" = callPackage @@ -245856,6 +251691,7 @@ self: { homepage = "https://github.com/cutsea110/yesod-pnotify"; description = "Yet another getMessage/setMessage using pnotify jquery plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-pure" = callPackage @@ -245869,6 +251705,7 @@ self: { homepage = "https://github.com/snoyberg/yesod-pure"; description = "Yesod in pure Haskell: no Template Haskell or QuasiQuotes (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-purescript" = callPackage @@ -245890,6 +251727,7 @@ self: { homepage = "https://github.com/mpietrzak/yesod-purescript"; description = "PureScript integration for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-raml" = callPackage @@ -245935,6 +251773,7 @@ self: { ]; description = "The raml helper executable"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml-docs" = callPackage @@ -245951,6 +251790,7 @@ self: { ]; description = "A html documentation generator library for RAML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-raml-mock" = callPackage @@ -245974,6 +251814,7 @@ self: { ]; description = "A mock-handler generator library from RAML"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-recaptcha" = callPackage @@ -246016,6 +251857,7 @@ self: { homepage = "http://www.yesodweb.com/"; description = "Efficient routing for Yesod. (deprecated)"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-routes-flow" = callPackage @@ -246050,6 +251892,7 @@ self: { homepage = "https://github.com/docmunch/yesod-routes-typescript"; description = "generate TypeScript routes for Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-rst" = callPackage @@ -246068,6 +251911,7 @@ self: { homepage = "http://github.com/pSub/yesod-rst"; description = "Tools for using reStructuredText (RST) in a yesod application"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-s3" = callPackage @@ -246085,6 +251929,7 @@ self: { homepage = "https://github.com/tvh/yesod-s3"; description = "Simple Helper Library for using Amazon's Simple Storage Service (S3) with Yesod"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yesod-sass" = callPackage @@ -246120,6 +251965,7 @@ self: { homepage = "https://github.com/ollieh/yesod-session-redis"; description = "Redis-Powered Sessions for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-sitemap_1_4_0" = callPackage @@ -246512,6 +252358,7 @@ self: { libraryHaskellDepends = [ base hamlet persistent yesod ]; description = "Table view for Yesod applications"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-test_1_4_2" = callPackage @@ -246773,6 +252620,7 @@ self: { homepage = "https://github.com/bogiebro/yesod-test-json"; description = "Utility functions for testing JSON web services written in Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-text-markdown_0_1_7" = callPackage @@ -246824,6 +252672,7 @@ self: { homepage = "http://github.com/netom/yesod-tls"; description = "Provides main functions using warp-tls for yesod projects"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-transloadit" = callPackage @@ -246870,6 +252719,7 @@ self: { homepage = "https://github.com/Tener/yesod-vend"; description = "Simple CRUD classes for easy view creation for Yesod"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yesod-websockets_0_2_0" = callPackage @@ -246996,6 +252846,7 @@ self: { homepage = "https://github.com/jamesdabbs/yesod-worker"; description = "Drop-in(ish) background worker system for Yesod apps"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yet-another-logger" = callPackage @@ -247040,6 +252891,7 @@ self: { homepage = "http://www.haskell.org/haskellwiki/Yhc"; description = "Yhc's Internal Core language"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yi_0_12_3" = callPackage @@ -247331,6 +253183,7 @@ self: { libraryHaskellDepends = [ base parsec process ]; description = "Haskell programming interface to Yices SMT solver"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yices-easy" = callPackage @@ -247384,6 +253237,7 @@ self: { homepage = "http://homepage3.nifty.com/salamander/second/projects/yjftp/index.xhtml"; description = "CUI FTP client like 'ftp', 'ncftp'"; license = "GPL"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yjftp-libs" = callPackage @@ -247472,6 +253326,7 @@ self: { ]; description = "Generic Programming with Disbanded Data Types"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "york-lava" = callPackage @@ -247484,6 +253339,7 @@ self: { homepage = "http://www.cs.york.ac.uk/fp/reduceron/"; description = "A library for digital circuit description"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "youtube" = callPackage @@ -247526,6 +253382,7 @@ self: { homepage = "https://github.com/fabianbergmark/YQL"; description = "A YQL engine to execute Open Data Tables"; license = stdenv.lib.licenses.bsd2; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yst" = callPackage @@ -247549,6 +253406,7 @@ self: { homepage = "http://github.com/jgm/yst"; description = "Builds a static website from templates and data in YAML or CSV files"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yuiGrid" = callPackage @@ -247560,6 +253418,7 @@ self: { libraryHaskellDepends = [ base ]; description = "Grids defined by layout hints and implemented on top of Yahoo grids"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "yuuko" = callPackage @@ -247583,6 +253442,7 @@ self: { homepage = "http://github.com/nfjinjing/yuuko"; description = "A transcendental HTML parser gently wrapping the HXT library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "yxdb-utils" = callPackage @@ -247621,6 +253481,7 @@ self: { ]; description = "Utilities for reading and writing Alteryx .yxdb files"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "z3" = callPackage @@ -247669,6 +253530,7 @@ self: { homepage = "https://github.com/briansniffen/zampolit"; description = "A tool for checking how much work is done on group projects"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zasni-gerna" = callPackage @@ -247681,6 +253543,7 @@ self: { homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; description = "lojban parser (zasni gerna)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zcache" = callPackage @@ -247729,6 +253592,7 @@ self: { homepage = "https://github.com/VictorDenisov/zendesk-api"; description = "Zendesk API for Haskell programming language"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zeno" = callPackage @@ -247747,6 +253611,7 @@ self: { ]; description = "An automated proof system for Haskell programs"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zero_0_1_2" = callPackage @@ -247841,6 +253706,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 2.1.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zeromq;}; "zeromq3-conduit" = callPackage @@ -247858,6 +253724,7 @@ self: { homepage = "https://github.com/NicolasT/zeromq3-conduit"; description = "Conduit bindings for zeromq3-haskell"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zeromq3-haskell" = callPackage @@ -247881,6 +253748,7 @@ self: { homepage = "http://github.com/twittner/zeromq-haskell/"; description = "Bindings to ZeroMQ 3.x"; license = stdenv.lib.licenses.mit; + hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) zeromq;}; "zeromq4-haskell_0_6_2" = callPackage @@ -247995,6 +253863,7 @@ self: { jailbreak = true; description = "ZeroTH - remove unnecessary TH dependencies"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zigbee-znet25" = callPackage @@ -248194,6 +254063,7 @@ self: { homepage = "http://code.haskell.org/~byorgey/code/zipedit"; description = "Create simple list editor interfaces"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zipkin" = callPackage @@ -248223,6 +254093,7 @@ self: { homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/Multirec"; description = "Generic zipper for families of recursive datatypes"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zippers" = callPackage @@ -248420,6 +254291,7 @@ self: { homepage = "https://github.com/lucasdicioccio/zmcat"; description = "Command-line tool for ZeroMQ"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zmidi-core" = callPackage @@ -248468,6 +254340,7 @@ self: { ]; description = "A socat-like tool for zeromq library"; license = "unknown"; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "zoneinfo" = callPackage @@ -248480,6 +254353,7 @@ self: { jailbreak = true; description = "ZoneInfo library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom" = callPackage @@ -248500,6 +254374,7 @@ self: { homepage = "http://github.com/iand675/Zoom"; description = "A rake/thor-like task runner written in Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache" = callPackage @@ -248532,6 +254407,7 @@ self: { jailbreak = true; description = "A streamable, seekable, zoomable cache file format"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-pcm" = callPackage @@ -248549,6 +254425,7 @@ self: { jailbreak = true; description = "Library for zoom-cache PCM audio codecs"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-cache-sndfile" = callPackage @@ -248569,6 +254446,7 @@ self: { jailbreak = true; description = "Tools for generating zoom-cache-pcm files"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "zoom-refs" = callPackage @@ -248609,6 +254487,7 @@ self: { homepage = "https://github.com/MasseR/zsh-battery"; description = "Ascii bars representing battery status"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = [ "x86_64-darwin" ]; }) {}; "ztail" = callPackage From e54ef8bb1679fe9fcd7acc92781f3697d54a6eca Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Wed, 1 Jun 2016 16:30:25 -0700 Subject: [PATCH 179/520] dpdk: add dependencies for vm_power_mgr example --- pkgs/os-specific/linux/dpdk/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index 479188b365f2..e414f4a1aa3e 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, kernel, fetchurl }: +{ stdenv, lib, kernel, fetchurl, pkgconfig, libvirt }: assert lib.versionAtLeast kernel.version "3.18"; @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { sha256 = "0yrz3nnhv65v2jzz726bjswkn8ffqc1sr699qypc9m78qrdljcfn"; }; + buildInputs = [ pkgconfig libvirt ]; + RTE_KERNELDIR = "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build"; RTE_TARGET = "x86_64-native-linuxapp-gcc"; From 6a7f257e88eb770a6dfd53174bc0cc3d9f1c88ad Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Tue, 31 May 2016 22:11:06 -0700 Subject: [PATCH 180/520] dpdk: install examples to bin --- pkgs/os-specific/linux/dpdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index e414f4a1aa3e..5781fee7ec45 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -32,8 +32,8 @@ stdenv.mkDerivation rec { mkdir $out cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/ - mkdir $examples - cp -pr examples/* $examples/ + mkdir -p $examples/bin + find examples -type f -executable -exec cp {} $examples/bin \; ''; meta = with stdenv.lib; { From 9f3c0f971650ce729df817916fa27e9138573931 Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Tue, 31 May 2016 22:27:36 -0700 Subject: [PATCH 181/520] dpdk: move apps to examples output --- pkgs/os-specific/linux/dpdk/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index 5781fee7ec45..a2657682f5d0 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -30,10 +30,10 @@ stdenv.mkDerivation rec { installPhase = '' mkdir $out - cp -pr x86_64-native-linuxapp-gcc/{app,lib,include,kmod} $out/ + cp -pr x86_64-native-linuxapp-gcc/{lib,include,kmod} $out/ mkdir -p $examples/bin - find examples -type f -executable -exec cp {} $examples/bin \; + find examples ${RTE_TARGET}/app -type f -executable -exec cp {} $examples/bin \; ''; meta = with stdenv.lib; { From 7334e925b44c7427d94fbc4959f04d654c14da9c Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Wed, 1 Jun 2016 16:35:35 -0700 Subject: [PATCH 182/520] dpdk: separate kernel modules --- pkgs/os-specific/linux/dpdk/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index a2657682f5d0..e90e8585776f 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { NIX_CFLAGS_COMPILE = [ "-march=core2" ]; enableParallelBuilding = true; - outputs = [ "out" "examples" ]; + outputs = [ "out" "kmod" "examples" ]; buildPhase = '' make T=x86_64-native-linuxapp-gcc config @@ -30,7 +30,10 @@ stdenv.mkDerivation rec { installPhase = '' mkdir $out - cp -pr x86_64-native-linuxapp-gcc/{lib,include,kmod} $out/ + cp -pr x86_64-native-linuxapp-gcc/{lib,include} $out/ + + mkdir -p $kmod/lib/modules/${kernel.modDirVersion}/kernel/drivers/net + cp ${RTE_TARGET}/kmod/*.ko $kmod/lib/modules/${kernel.modDirVersion}/kernel/drivers/net mkdir -p $examples/bin find examples ${RTE_TARGET}/app -type f -executable -exec cp {} $examples/bin \; From 49b985b241353663717c36e0f62a11a0d545a59f Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Tue, 31 May 2016 22:39:40 -0700 Subject: [PATCH 183/520] dpdk: make primary output usable as RTE_SDK --- pkgs/os-specific/linux/dpdk/default.nix | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/dpdk/default.nix b/pkgs/os-specific/linux/dpdk/default.nix index e90e8585776f..b346554c9c65 100644 --- a/pkgs/os-specific/linux/dpdk/default.nix +++ b/pkgs/os-specific/linux/dpdk/default.nix @@ -29,8 +29,25 @@ stdenv.mkDerivation rec { ''; installPhase = '' - mkdir $out - cp -pr x86_64-native-linuxapp-gcc/{lib,include} $out/ + install -m 0755 -d $out/lib + install -m 0644 ${RTE_TARGET}/lib/*.a $out/lib + + install -m 0755 -d $out/include + install -m 0644 ${RTE_TARGET}/include/*.h $out/include + + install -m 0755 -d $out/include/generic + install -m 0644 ${RTE_TARGET}/include/generic/*.h $out/include/generic + + install -m 0755 -d $out/include/exec-env + install -m 0644 ${RTE_TARGET}/include/exec-env/*.h $out/include/exec-env + + install -m 0755 -d $out/${RTE_TARGET} + install -m 0644 ${RTE_TARGET}/.config $out/${RTE_TARGET} + + install -m 0755 -d $out/${RTE_TARGET}/include + install -m 0644 ${RTE_TARGET}/include/rte_config.h $out/${RTE_TARGET}/include + + cp -pr mk scripts $out/ mkdir -p $kmod/lib/modules/${kernel.modDirVersion}/kernel/drivers/net cp ${RTE_TARGET}/kmod/*.ko $kmod/lib/modules/${kernel.modDirVersion}/kernel/drivers/net From 6d3fcd33d79b0a66b84912d1b7d36fcfc8656946 Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Wed, 1 Jun 2016 16:41:25 -0700 Subject: [PATCH 184/520] pktgen: init at 3.0.00 --- lib/maintainers.nix | 1 + pkgs/os-specific/linux/pktgen/default.nix | 38 +++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 3 files changed, 41 insertions(+) create mode 100644 pkgs/os-specific/linux/pktgen/default.nix diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 198bb93c6be3..55b09925b5f6 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -11,6 +11,7 @@ abaldeau = "Andreas Baldeau "; abbradar = "Nikolay Amiantov "; aboseley = "Adam Boseley "; + abuibrahim = "Ruslan Babayev "; adev = "Adrien Devresse "; Adjective-Object = "Maxwell Huang-Hobbs "; adnelson = "Allen Nelson "; diff --git a/pkgs/os-specific/linux/pktgen/default.nix b/pkgs/os-specific/linux/pktgen/default.nix new file mode 100644 index 000000000000..56ef935920b8 --- /dev/null +++ b/pkgs/os-specific/linux/pktgen/default.nix @@ -0,0 +1,38 @@ +{ stdenv, fetchurl, dpdk, libpcap, utillinux }: + +stdenv.mkDerivation rec { + name = "pktgen-${version}"; + version = "3.0.00"; + + src = fetchurl { + url = "http://dpdk.org/browse/apps/pktgen-dpdk/snapshot/pktgen-${version}.tar.gz"; + sha256 = "703f8bd615aa4ae3a3085055483f9889dda09d082abb58afd33c1ba7c766ea65"; + }; + + buildInputs = [ dpdk libpcap ]; + + RTE_SDK = "${dpdk}"; + RTE_TARGET = "x86_64-native-linuxapp-gcc"; + + enableParallelBuilding = true; + + patchPhase = '' + sed -i -e s:/usr/local:$out:g lib/lua/src/luaconf.h + sed -i -e s:/usr/bin/lscpu:${utillinux}/bin/lscpu:g lib/common/wr_lscpu.h + ''; + + installPhase = '' + install -d $out/bin + install -m 0755 app/app/${RTE_TARGET}/app/pktgen $out/bin + install -d $out/lib/lua/5.3 + install -m 0644 Pktgen.lua $out/lib/lua/5.3 + ''; + + meta = with stdenv.lib; { + description = "Traffic generator powered by DPDK"; + homepage = http://dpdk.org/; + license = licenses.bsdOriginal; + platforms = [ "x86_64-linux" ]; + maintainers = [ maintainers.abuibrahim ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1091807486be..1fd798503f3f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10844,6 +10844,8 @@ in dpdk = callPackage ../os-specific/linux/dpdk { }; + pktgen = callPackage ../os-specific/linux/pktgen { }; + e1000e = callPackage ../os-specific/linux/e1000e {}; v4l2loopback = callPackage ../os-specific/linux/v4l2loopback { }; From 4a1f41d31c3a6bd47cb048f4c6458fe2a02ee72d Mon Sep 17 00:00:00 2001 From: Matt McHenry Date: Thu, 2 Jun 2016 06:31:32 -0400 Subject: [PATCH 185/520] crashplan: 4.6.0-r3 -> 4.7.0 (#15903) --- pkgs/applications/backup/crashplan/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/backup/crashplan/default.nix b/pkgs/applications/backup/crashplan/default.nix index 0406dacba883..0ba09c5a4f59 100644 --- a/pkgs/applications/backup/crashplan/default.nix +++ b/pkgs/applications/backup/crashplan/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, makeWrapper, jre, cpio, gawk, gnugrep, gnused, procps, swt, gtk2, glib, libXtst }: let - version = "4.6.0"; - rev = "3"; #tracks unversioned changes that occur on download.code42.com from time to time + version = "4.7.0"; + rev = "1"; #tracks unversioned changes that occur on download.code42.com from time to time in stdenv.mkDerivation rec { name = "crashplan-${version}-r${rev}"; crashPlanArchive = fetchurl { url = "https://download.code42.com/installs/linux/install/CrashPlan/CrashPlan_${version}_Linux.tgz"; - sha256 = "0crrx8gy132xcpjfah08qhsl8g2arx14p5mpypcihl9j6mldi6mz"; + sha256 = "1r50fyswvqjxsdslbyibbxwz2fs8iim15hxr0k05jrzmkhjm4g5v"; }; srcs = [ crashPlanArchive ]; From fbde3a745259edf20dc8e275eee954875a2d50ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Mon, 30 May 2016 17:54:51 +0200 Subject: [PATCH 186/520] sam-ba: init at 2.16 Programming tools for Atmel SAM3/7/9 ARM-based microcontrollers. (I've only runtime tested the 64-bit binary, not the 32-bit one.) --- pkgs/tools/misc/sam-ba/default.nix | 51 ++++++++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 53 insertions(+) create mode 100644 pkgs/tools/misc/sam-ba/default.nix diff --git a/pkgs/tools/misc/sam-ba/default.nix b/pkgs/tools/misc/sam-ba/default.nix new file mode 100644 index 000000000000..1b7315ebedf6 --- /dev/null +++ b/pkgs/tools/misc/sam-ba/default.nix @@ -0,0 +1,51 @@ +{ stdenv, fetchzip, libX11, libXScrnSaver, libXext, libXft, libXrender +, freetype, zlib, fontconfig +}: + +let + maybe64 = if stdenv.isx86_64 then "_64" else ""; + libPath = stdenv.lib.makeLibraryPath + [ stdenv.cc.cc.lib libX11 libXScrnSaver libXext libXft libXrender freetype + zlib fontconfig + ]; +in +stdenv.mkDerivation rec { + version = "2.16"; + name = "sam-ba-${version}"; + + src = fetchzip { + url = "http://www.atmel.com/dyn/resources/prod_documents/sam-ba_${version}_linux.zip"; + sha256 = "18lsi4747900cazq3bf0a87n3pc7751j5papj9sxarjymcz9vks4"; + }; + + # Pre-built binary package. Install everything to /opt/sam-ba to not mess up + # the internal directory structure. Then create wrapper in /bin. Attemts to + # use "patchelf --set-rpath" instead of setting LD_PRELOAD_PATH failed. + installPhase = '' + mkdir -p "$out/bin/" \ + "$out/opt/sam-ba/" + cp -a . "$out/opt/sam-ba/" + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" "$out/opt/sam-ba/sam-ba${maybe64}" + cat > "$out/bin/sam-ba" << EOF + export LD_LIBRARY_PATH="${libPath}" + exec "$out/opt/sam-ba/sam-ba${maybe64}" + EOF + chmod +x "$out/bin/sam-ba" + ''; + + # Do our own thing + dontPatchELF = true; + + meta = with stdenv.lib; { + description = "Programming tools for Atmel SAM3/7/9 ARM-based microcontrollers"; + longDescription = '' + Atmel SAM-BA software provides an open set of tools for programming the + Atmel SAM3, SAM7 and SAM9 ARM-based microcontrollers. + ''; + homepage = "http://www.at91.com/linux4sam/bin/view/Linux4SAM/SoftwareTools"; + # License in /doc/readme.txt + license = "BSD-like (partly binary-only)"; # according to Buildroot + platforms = [ "i686-linux" "x86_64-linux" ]; + maintainers = [ maintainers.bjornfor ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1091807486be..65fced534a85 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16608,6 +16608,8 @@ in rucksack = callPackage ../development/tools/rucksack { }; + sam-ba = callPackage ../tools/misc/sam-ba { }; + opkg = callPackage ../tools/package-management/opkg { }; opkg-utils = callPackage ../tools/package-management/opkg-utils { }; From 06c0209d5319b78d30571bed033d8a37b7ed40e7 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Wed, 1 Jun 2016 12:59:25 +0300 Subject: [PATCH 187/520] systemd: Disable systemd-boot on ARM Temporary workaround for the EFI stuff not working. --- pkgs/os-specific/linux/systemd/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/systemd/default.nix b/pkgs/os-specific/linux/systemd/default.nix index 26f18f9ff267..0ba6c431c9f7 100644 --- a/pkgs/os-specific/linux/systemd/default.nix +++ b/pkgs/os-specific/linux/systemd/default.nix @@ -72,7 +72,7 @@ stdenv.mkDerivation rec { "--disable-ldconfig" "--disable-smack" - "--enable-gnuefi" + (if stdenv.isArm then "--disable-gnuefi" else "--enable-gnuefi") "--with-efi-libdir=${gnu-efi}/lib" "--with-efi-includedir=${gnu-efi}/include" "--with-efi-ldsdir=${gnu-efi}/lib" From 919db46afd6cc9badb8d82985ec4697d3a0d5b6b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 2 Jun 2016 15:30:33 +0300 Subject: [PATCH 188/520] dwarf-therapist: remove useless symlink --- pkgs/games/dwarf-fortress/dwarf-therapist/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix index 37eab6d077a3..c13bfd4d3f2d 100644 --- a/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix +++ b/pkgs/games/dwarf-fortress/dwarf-therapist/default.nix @@ -22,6 +22,8 @@ stdenv.mkDerivation rec { mkdir -p $layouts mv $out/share/dwarftherapist/memory_layouts/* $layouts rmdir $out/share/dwarftherapist/memory_layouts + # Useless symlink + rm $out/bin/dwarftherapist ''; meta = { From 7055c9f02b6b1f9c95d8d7b25909d55669617efd Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 14:35:30 +0200 Subject: [PATCH 189/520] unifi: 4.8.15 -> 5.0.6 (#15920) --- pkgs/servers/unifi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/unifi/default.nix b/pkgs/servers/unifi/default.nix index 5684704205f1..56880b5b8692 100644 --- a/pkgs/servers/unifi/default.nix +++ b/pkgs/servers/unifi/default.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "unifi-controller-${version}"; - version = "4.8.15"; + version = "5.0.6"; src = fetchurl { url = "https://dl.ubnt.com/unifi/${version}/UniFi.unix.zip"; - sha256 = "1p77l2186mw32l59inyd79rpachcs634z891k1vqcwn9gm7a39r2"; + sha256 = "0splrxgh1ppxnf4nynawbn8mwywqsvaib7m60wgnz4inpxhp3pp8"; }; buildInputs = [ unzip ]; From f9b9416ce1e55d97cbc507edcab95eadffa86a23 Mon Sep 17 00:00:00 2001 From: Tristan Helmich Date: Thu, 2 Jun 2016 14:45:55 +0200 Subject: [PATCH 190/520] emby: 3.0.5971 -> 3.0.5972 (#15925) --- 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 851310b4ea3a..e1325ec38c11 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.5971"; + version = "3.0.5972"; src = fetchurl { url = "https://github.com/MediaBrowser/Emby/archive/${version}.tar.gz"; - sha256 = "1ahx8y8l7hybkq6wy83cpgnc741q7583lp6h7qnin6x73l2wq2i8"; + sha256 = "0dxm7m8q9w9cknp24gp30v7v8a9q8qph6gy2s1vfli38rwcnakix"; }; propagatedBuildInputs = with pkgs; [ From c544cbca42beb5b33e174127f82bc3caf50906a9 Mon Sep 17 00:00:00 2001 From: Emery Hemingway Date: Thu, 2 Jun 2016 14:56:32 +0200 Subject: [PATCH 191/520] qtox: 1.3.0 -> 1.4.1 --- .../networking/instant-messengers/qtox/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/qtox/default.nix b/pkgs/applications/networking/instant-messengers/qtox/default.nix index 50017de132c9..b30605294b33 100644 --- a/pkgs/applications/networking/instant-messengers/qtox/default.nix +++ b/pkgs/applications/networking/instant-messengers/qtox/default.nix @@ -4,7 +4,7 @@ qtbase, qtsvg, qttools, qmakeHook, qttranslations, sqlcipher }: let - version = "1.3.0"; + version = "1.4.1"; revision = "v${version}"; in @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { owner = "tux3"; repo = "qTox"; rev = revision; - sha256 = "0z2rxsa23vpl4q0h63mybw7kv8n1sm6nwb93l0cc046a3n9axid8"; + sha256 = "1n0bfcfc90pnh0bzas7gv60jicsg9vpfwhhln9hkllsrimjvcdq5"; }; buildInputs = From 8bb29f45e8a8760827a8217a35f38d1b7ce7a3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 2 Jun 2016 10:11:05 -0300 Subject: [PATCH 192/520] jwm: 1495 -> 1532 --- .../applications/window-managers/jwm/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/window-managers/jwm/default.nix b/pkgs/applications/window-managers/jwm/default.nix index 540e5d1c1e6f..2da76eabe937 100644 --- a/pkgs/applications/window-managers/jwm/default.nix +++ b/pkgs/applications/window-managers/jwm/default.nix @@ -1,18 +1,18 @@ -{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, which, xorg, - libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, libXmu, - libpng, libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, gettext, +{ stdenv, fetchurl, pkgconfig, automake, autoconf, libtool, gettext, which, + xorg, libX11, libXext, libXinerama, libXpm, libXft, libXau, libXdmcp, + libXmu, libpng, libjpeg, expat, xproto, xextproto, xineramaproto, librsvg, freetype, fontconfig }: stdenv.mkDerivation rec { name = "jwm-${version}"; - version = "1495"; + version = "1532"; src = fetchurl { url = "https://github.com/joewing/jwm/archive/s${version}.tar.gz"; - sha256 = "0sn9la3k36k1d9qyxab1sbv2mqicq2w7q4wgy4bj8d48zc8xjy6v"; + sha256 = "02g3n72rmyy5l9hn6jdb7kzhsn1c0padazxfn0sv6s95w6r8hcvr"; }; - nativeBuildInputs = [ pkgconfig automake autoconf libtool which gettext ]; + nativeBuildInputs = [ pkgconfig automake autoconf libtool gettext which ]; buildInputs = [ libX11 libXext libXinerama libXpm libXft xorg.libXrender libXau libXdmcp libXmu libpng libjpeg expat xproto xextproto xineramaproto @@ -24,9 +24,9 @@ stdenv.mkDerivation rec { meta = { homepage = "http://joewing.net/projects/jwm/"; - description = "A window manager for X11 that requires only Xlib"; + description = "Joe's Window Manager is a light-weight X11 window manager"; license = stdenv.lib.licenses.gpl2; - maintainers = [ stdenv.lib.maintainers.romildo ]; platforms = stdenv.lib.platforms.unix; + maintainers = [ stdenv.lib.maintainers.romildo ]; }; } From c4eaa26cde2d5c9082665c19711d17cf38fc4268 Mon Sep 17 00:00:00 2001 From: David Craven Date: Tue, 31 May 2016 21:16:18 +0200 Subject: [PATCH 193/520] Update rustcMaster Now builds rustcBeta (1.10.0) and rustcMaster (1.11.0). --- pkgs/development/compilers/rustc/beta.nix | 12 +++ .../development/compilers/rustc/bootstrap.nix | 58 +++++++++++++ pkgs/development/compilers/rustc/default.nix | 27 ------ pkgs/development/compilers/rustc/generic.nix | 84 ++++--------------- pkgs/development/compilers/rustc/head.nix | 32 ++----- .../patches/disable-lockfile-check.patch | 25 ++++++ .../rustc/patches/use-rustc-1.9.0.patch | 25 ++++++ pkgs/development/compilers/rustc/stable.nix | 13 +++ pkgs/top-level/all-packages.nix | 12 +-- 9 files changed, 167 insertions(+), 121 deletions(-) create mode 100644 pkgs/development/compilers/rustc/beta.nix create mode 100644 pkgs/development/compilers/rustc/bootstrap.nix delete mode 100644 pkgs/development/compilers/rustc/default.nix create mode 100644 pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch create mode 100644 pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch create mode 100644 pkgs/development/compilers/rustc/stable.nix diff --git a/pkgs/development/compilers/rustc/beta.nix b/pkgs/development/compilers/rustc/beta.nix new file mode 100644 index 000000000000..7dbd8ae7a695 --- /dev/null +++ b/pkgs/development/compilers/rustc/beta.nix @@ -0,0 +1,12 @@ +{ stdenv, callPackage, rustcStable }: + +callPackage ./generic.nix { + shortVersion = "beta-1.10.0"; + forceBundledLLVM = false; + configureFlags = [ "--release-channel=beta" ]; + srcRev = "39f3c16cca889ef3f1719d9177e3315258222a65"; + srcSha = "01bx6616lslp2mbj4h8bb6m042fs0y1z8g0jgpxvbk3fbhzwafrx"; + patches = [ ./patches/disable-lockfile-check.patch ] ++ + stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; + rustc = rustcStable; +} diff --git a/pkgs/development/compilers/rustc/bootstrap.nix b/pkgs/development/compilers/rustc/bootstrap.nix new file mode 100644 index 000000000000..8bff511459dc --- /dev/null +++ b/pkgs/development/compilers/rustc/bootstrap.nix @@ -0,0 +1,58 @@ +{ stdenv, fetchurl }: + +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. + NOTE: Rust 1.9.0 is the last version that uses snapshots + */ + + 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 + +stdenv.mkDerivation { + name = "rust-bootstrap"; + 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" + ''; +} diff --git a/pkgs/development/compilers/rustc/default.nix b/pkgs/development/compilers/rustc/default.nix deleted file mode 100644 index 6c5aa04d7076..000000000000 --- a/pkgs/development/compilers/rustc/default.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ stdenv, callPackage }: - -callPackage ./generic.nix { - shortVersion = "1.9.0"; - isRelease = true; - forceBundledLLVM = false; - configureFlags = [ "--release-channel=stable" ]; - srcSha = "0yg5admbypqld0gmxbhrh2yag5kxjklpjgldrp3pd5vczkl13aml"; - - /* 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"; - - patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; -} diff --git a/pkgs/development/compilers/rustc/generic.nix b/pkgs/development/compilers/rustc/generic.nix index 976c1b932b5a..09d8ad8bf00f 100644 --- a/pkgs/development/compilers/rustc/generic.nix +++ b/pkgs/development/compilers/rustc/generic.nix @@ -1,14 +1,11 @@ { stdenv, fetchurl, fetchgit, fetchzip, file, python2, tzdata, procps -, llvm, jemalloc, ncurses, darwin, binutils +, llvm, jemalloc, ncurses, darwin, binutils, rustc -, shortVersion, isRelease +, isRelease ? false +, shortVersion , forceBundledLLVM ? false -, srcSha, srcRev ? "" -, snapshotHashLinux686, snapshotHashLinux64 -, snapshotHashDarwin686, snapshotHashDarwin64 -, snapshotDate, snapshotRev +, srcSha, srcRev , configureFlags ? [] - , patches } @ args: @@ -26,9 +23,8 @@ sure those derivations still compile. (racer, for example). */ -assert (if isRelease then srcRev == "" else srcRev != ""); - -let version = if isRelease then +let + version = if isRelease then "${shortVersion}" else "${shortVersion}-g${builtins.substring 0 7 srcRev}"; @@ -39,16 +35,6 @@ let version = if isRelease then llvmShared = llvm.override { enableSharedLibraries = true; }; - 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)"; - target = if stdenv.system == "i686-linux" then "i686-unknown-linux-gnu" else if stdenv.system == "x86_64-linux" @@ -66,20 +52,9 @@ let version = if isRelease then license = [ licenses.mit licenses.asl20 ]; platforms = platforms.linux ++ platforms.darwin; }; - - 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 -with stdenv.lib; stdenv.mkDerivation { +stdenv.mkDerivation { inherit name; inherit version; inherit meta; @@ -88,42 +63,19 @@ with stdenv.lib; stdenv.mkDerivation { NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-rpath ${llvmShared}/lib"; - src = if isRelease then - fetchzip { - url = "http://static.rust-lang.org/dist/rustc-${version}-src.tar.gz"; - sha256 = srcSha; - } - else - fetchgit { - url = https://github.com/rust-lang/rust; - rev = srcRev; - sha256 = srcSha; - }; - - # We need rust to build rust. If we don't provide it, configure will try to download it. - snapshot = stdenv.mkDerivation { - name = "rust-stage0"; - src = fetchurl { - url = "http://static.rust-lang.org/stage0-snapshots/${snapshotName}"; - sha1 = snapshotHash; - }; - dontStrip = true; - installPhase = '' - mkdir -p "$out" - cp -r bin "$out/bin" - '' + 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" - ''; + src = fetchgit { + url = https://github.com/rust-lang/rust; + rev = srcRev; + sha256 = srcSha; }; + # We need rust to build rust. If we don't provide it, configure will try to download it. configureFlags = configureFlags - ++ [ "--enable-local-rust" "--local-rust-root=$snapshot" "--enable-rpath" ] + ++ [ "--enable-local-rust" "--local-rust-root=${rustc}" "--enable-rpath" ] # ++ [ "--jemalloc-root=${jemalloc}/lib" ++ [ "--default-linker=${stdenv.cc}/bin/cc" "--default-ar=${binutils.out}/bin/ar" ] - ++ optional (stdenv.cc.cc ? isClang) "--enable-clang" - ++ optional (!forceBundledLLVM) "--llvm-root=${llvmShared}"; + ++ stdenv.lib.optional (stdenv.cc.cc ? isClang) "--enable-clang" + ++ stdenv.lib.optional (!forceBundledLLVM) "--llvm-root=${llvmShared}"; inherit patches; @@ -138,7 +90,7 @@ with stdenv.lib; stdenv.mkDerivation { --replace "\$\$(subst /,//," "\$\$(subst /,/," # Fix dynamic linking against llvm - ${optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''} + ${stdenv.lib.optionalString (!forceBundledLLVM) ''sed -i 's/, kind = \\"static\\"//g' src/etc/mklldeps.py''} # Fix the configure script to not require curl as we won't use it sed -i configure \ @@ -160,9 +112,9 @@ with stdenv.lib; stdenv.mkDerivation { ''; # ps is needed for one of the test cases - nativeBuildInputs = [ file python2 procps ]; + nativeBuildInputs = [ file python2 procps rustc ]; buildInputs = [ ncurses ] - ++ optional (!forceBundledLLVM) llvmShared; + ++ stdenv.lib.optional (!forceBundledLLVM) llvmShared; # https://github.com/rust-lang/rust/issues/30181 # enableParallelBuilding = false; # missing files during linking, occasionally diff --git a/pkgs/development/compilers/rustc/head.nix b/pkgs/development/compilers/rustc/head.nix index bb67b88c4780..8d9373eb3c3d 100644 --- a/pkgs/development/compilers/rustc/head.nix +++ b/pkgs/development/compilers/rustc/head.nix @@ -1,27 +1,13 @@ # Please make sure to check if rustfmt still builds when updating nightly -{ stdenv, callPackage }: +{ stdenv, callPackage, rustcStable }: callPackage ./generic.nix { - shortVersion = "2016-03-22"; - isRelease = false; - forceBundledLLVM = true; - srcRev = "6cc502c986d42da407e26a49d4f09f21d3072fcb"; - srcSha = "096lsc8irh9a7w494yaji28kzy9frs2myqrfyj0fzbxkvs3yfhzz"; - - /* 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. - */ - - snapshotHashLinux686 = "0e0e4448b80d0a12b75485795244bb3857a0a7ef"; - snapshotHashLinux64 = "1273b6b6aed421c9e40c59f366d0df6092ec0397"; - snapshotHashDarwin686 = "9f9c0b4a2db09acbce54b792fb8839a735585565"; - snapshotHashDarwin64 = "52570f6fd915b0210a9be98cfc933148e16a75f8"; - snapshotDate = "2016-03-18"; - snapshotRev = "235d774"; - - patches = [ ./patches/remove-uneeded-git.patch ] - ++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; + shortVersion = "master-1.11.0"; + forceBundledLLVM = false; + srcRev = "298730e7032cd55809423773da397cd5c7d827d4"; + srcSha = "0hyz5j1z75sjkgsifzgxviv3b1lhgaz8wqwvmq80xx5vd78yd0c1"; + patches = [ ./patches/disable-lockfile-check.patch + ./patches/use-rustc-1.9.0.patch ] ++ + stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch; + rustc = rustcStable; } diff --git a/pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch b/pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch new file mode 100644 index 000000000000..0c01cb1a7f19 --- /dev/null +++ b/pkgs/development/compilers/rustc/patches/disable-lockfile-check.patch @@ -0,0 +1,25 @@ +From e7378e267bba203bd593b49705c24303b0a46cb7 Mon Sep 17 00:00:00 2001 +From: David Craven +Date: Wed, 1 Jun 2016 01:41:35 +0200 +Subject: [PATCH] disable-lockfile-check + +--- + src/tools/tidy/src/main.rs | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/tools/tidy/src/main.rs b/src/tools/tidy/src/main.rs +index 2839bbd..50142ff 100644 +--- a/src/tools/tidy/src/main.rs ++++ b/src/tools/tidy/src/main.rs +@@ -47,7 +47,7 @@ fn main() { + errors::check(&path, &mut bad); + cargo::check(&path, &mut bad); + features::check(&path, &mut bad); +- cargo_lock::check(&path, &mut bad); ++ //cargo_lock::check(&path, &mut bad); + + if bad { + panic!("some tidy checks failed"); +-- +2.8.3 + diff --git a/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch b/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch new file mode 100644 index 000000000000..150306744be6 --- /dev/null +++ b/pkgs/development/compilers/rustc/patches/use-rustc-1.9.0.patch @@ -0,0 +1,25 @@ +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/rustc/stable.nix b/pkgs/development/compilers/rustc/stable.nix new file mode 100644 index 000000000000..596ef2d0cb7a --- /dev/null +++ b/pkgs/development/compilers/rustc/stable.nix @@ -0,0 +1,13 @@ +{ stdenv, callPackage }: + +callPackage ./generic.nix { + shortVersion = "1.9.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; + rustc = callPackage ./bootstrap.nix {}; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dfa5560a1850..185e9ec5bad7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5260,17 +5260,19 @@ in rtags = callPackage ../development/tools/rtags/default.nix {}; - rustcMaster = lowPrio (callPackage ../development/compilers/rustc/head.nix {}); - rustc = callPackage ../development/compilers/rustc {}; + rustc = rustcStable; + rustcStable = callPackage ../development/compilers/rustc/stable.nix {}; + rustcBeta = lowPrio (callPackage ../development/compilers/rustc/beta.nix {}); + rustcUnstable = lowPrio (callPackage ../development/compilers/rustc/head.nix {}); rustPlatform = rustStable; - rustStable = recurseIntoAttrs (makeRustPlatform cargo rustStable); + rustBeta = lowPrio (recurseIntoAttrs (makeRustPlatform cargoUnstable rustBeta)); rustUnstable = lowPrio (recurseIntoAttrs (makeRustPlatform cargoUnstable rustUnstable)); # rust platform to build cargo itself (with cargoSnapshot) - rustCargoPlatform = makeRustPlatform (cargoSnapshot rustc) rustCargoPlatform; - rustUnstableCargoPlatform = makeRustPlatform (cargoSnapshot rustcMaster) rustUnstableCargoPlatform; + rustCargoPlatform = makeRustPlatform (cargoSnapshot rustcStable) rustCargoPlatform; + rustUnstableCargoPlatform = makeRustPlatform (cargoSnapshot rustcUnstable) rustUnstableCargoPlatform; makeRustPlatform = cargo: self: let From c22f0c7474e42cd4c45fc0db95adfae1b74f09f2 Mon Sep 17 00:00:00 2001 From: David Craven Date: Tue, 31 May 2016 20:30:19 +0200 Subject: [PATCH 194/520] Fix buildRustPackage edge cases 1. When multiple versions of the same package are required $revs is an array. 2. When cargo fetch is run it usually doesn't need a network connection. But when it does SSL_CERT_FILE isn't set. --- pkgs/build-support/rust/default.nix | 1 + pkgs/build-support/rust/fetch-cargo-deps | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/build-support/rust/default.nix b/pkgs/build-support/rust/default.nix index 6bacba73f1e7..b889c4f24583 100644 --- a/pkgs/build-support/rust/default.nix +++ b/pkgs/build-support/rust/default.nix @@ -44,6 +44,7 @@ in stdenv.mkDerivation (args // { export CARGO_HOME="$(realpath deps)" export RUST_LOG=${logLevel} + export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt # Let's find out which $indexHash cargo uses for file:///dev/null (cd $sourceRoot && cargo fetch &>/dev/null) || true diff --git a/pkgs/build-support/rust/fetch-cargo-deps b/pkgs/build-support/rust/fetch-cargo-deps index 4fbc53d1039e..54593994990f 100755 --- a/pkgs/build-support/rust/fetch-cargo-deps +++ b/pkgs/build-support/rust/fetch-cargo-deps @@ -147,7 +147,7 @@ EOF done # Create ad-hoc branches for the revs we need - echo "$revs" | while read rev; do + echo "$revs" | tr " " "\n" | while read -d " " rev; do echo "Creating git branch b_$rev $rev" git branch b_$rev $rev done From 895db6daf369ab88c4ec626df905c7c74d0d33d9 Mon Sep 17 00:00:00 2001 From: David Craven Date: Wed, 1 Jun 2016 10:58:58 +0200 Subject: [PATCH 195/520] Update cargo head --- pkgs/development/tools/build-managers/cargo/head.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/build-managers/cargo/head.nix b/pkgs/development/tools/build-managers/cargo/head.nix index 570e96eedebd..475e2ab962c8 100644 --- a/pkgs/development/tools/build-managers/cargo/head.nix +++ b/pkgs/development/tools/build-managers/cargo/head.nix @@ -14,11 +14,11 @@ buildRustPackage rec { # Needs to use fetchgit instead of fetchFromGitHub to fetch submodules src = fetchgit { url = "git://github.com/rust-lang/cargo"; - rev = "132b82d75f607dcb1116b8d44fe60f202f1eb110"; - sha256 = "0kx2m0p45zr0ils2ax19sr32cibjppgwj8xvsgrfvzvlnc540xpl"; + rev = "7d79da08238e3d47e0bc4406155bdcc45ccb8c82"; + sha256 = "190qdii53s4vk940yzs2iizhfs22y2v8bzw051bl6bk9bs3y4fdd"; }; - depsSha256 = "19d2fl5p92108a0yjpix0qxdc23jy122xc87k69hk0pwwxa92l3a"; + depsSha256 = "1xbb33aqnf5yyws6gjys9w8kznbh9rh6hw8mpg1hhq1ahipc2j1f"; buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ]; From 58fb33a08d5ac70138ab93d676392e135b03ac2e Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Wed, 1 Jun 2016 17:04:14 +0200 Subject: [PATCH 196/520] ocamlPackages.estring: init at 1.3 --- .../ocaml-modules/estring/default.nix | 17 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 pkgs/development/ocaml-modules/estring/default.nix diff --git a/pkgs/development/ocaml-modules/estring/default.nix b/pkgs/development/ocaml-modules/estring/default.nix new file mode 100644 index 000000000000..8bfab87fc397 --- /dev/null +++ b/pkgs/development/ocaml-modules/estring/default.nix @@ -0,0 +1,17 @@ +{ stdenv, buildOcaml, fetchurl }: + +buildOcaml rec { + name = "estring"; + version = "1.3"; + + src = fetchurl { + url = "https://forge.ocamlcore.org/frs/download.php/1012/estring-${version}.tar.gz"; + sha256 = "0b6znz5igm8pp28w4b7sgy82rpd9m5aw6ss933rfbw1mrh05gvcg"; + }; + + meta = with stdenv.lib; { + homepage = "http://estring.forge.ocamlcore.org/"; + description = "Extension for string literals"; + license = licenses.bsd3; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 65fced534a85..2b3f8176ad94 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4916,6 +4916,8 @@ in erm_xmpp = callPackage ../development/ocaml-modules/erm_xmpp { }; + estring = callPackage ../development/ocaml-modules/estring { }; + ezjsonm = callPackage ../development/ocaml-modules/ezjsonm { lwt = ocaml_lwt; }; From d1be5453313b3d6e132f59ce973b6cdaf2a46053 Mon Sep 17 00:00:00 2001 From: "Ricardo M. Correia" Date: Wed, 1 Jun 2016 17:04:55 +0200 Subject: [PATCH 197/520] ocamlPackages.sqlexpr: init at 0.5.5 --- .../ocaml-modules/sqlexpr/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 21 insertions(+) create mode 100644 pkgs/development/ocaml-modules/sqlexpr/default.nix diff --git a/pkgs/development/ocaml-modules/sqlexpr/default.nix b/pkgs/development/ocaml-modules/sqlexpr/default.nix new file mode 100644 index 000000000000..f5f32e9bc030 --- /dev/null +++ b/pkgs/development/ocaml-modules/sqlexpr/default.nix @@ -0,0 +1,19 @@ +{ stdenv, buildOcaml, fetchurl, ocaml_batteries, csv, ocaml_lwt, ocaml_sqlite3, estring }: + +buildOcaml rec { + name = "sqlexpr"; + version = "0.5.5"; + + src = fetchurl { + url = "https://forge.ocamlcore.org/frs/download.php/1203/ocaml-sqlexpr-${version}.tar.gz"; + sha256 = "02pi0xxr3xzalwpvcaq96k57wz2vxj20l2mga1a4d2ddvhran8kr"; + }; + + propagatedBuildInputs = [ ocaml_batteries csv ocaml_lwt ocaml_sqlite3 estring ]; + + meta = with stdenv.lib; { + homepage = "http://github.com/mfp/ocaml-sqlexpr"; + description = "Type-safe, convenient SQLite database access"; + license = licenses.lgpl21; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2b3f8176ad94..098f416fac74 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5097,6 +5097,8 @@ in sequence = callPackage ../development/ocaml-modules/sequence { }; + sqlexpr = callPackage ../development/ocaml-modules/sqlexpr { }; + tuntap = callPackage ../development/ocaml-modules/tuntap { }; tyxml = callPackage ../development/ocaml-modules/tyxml { }; From ff8985e7abeffdb2af13b0dc14566fc54c3fd3f1 Mon Sep 17 00:00:00 2001 From: Ian-Woo Kim Date: Tue, 31 May 2016 19:20:00 +0000 Subject: [PATCH 198/520] cudnn: add cudatoolkit to propagatedBuildInputs --- .../libraries/science/math/cudnn/default.nix | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/science/math/cudnn/default.nix b/pkgs/development/libraries/science/math/cudnn/default.nix index 80975c8dc7b3..87e9d929ed58 100644 --- a/pkgs/development/libraries/science/math/cudnn/default.nix +++ b/pkgs/development/libraries/science/math/cudnn/default.nix @@ -1,4 +1,4 @@ -{ stdenv, requireFile }: +{ stdenv, requireFile, cudatoolkit }: stdenv.mkDerivation rec { version = "4.0"; @@ -18,18 +18,14 @@ stdenv.mkDerivation rec { phases = "unpackPhase installPhase fixupPhase"; + propagatedBuildInputs = [ cudatoolkit ]; + installPhase = '' mkdir -p $out cp -a include $out/include cp -a lib64 $out/lib64 ''; - # all binaries are already stripped - #dontStrip = true; - - # we did this in prefixup already - #dontPatchELF = true; - meta = { description = "NVIDIA CUDA Deep Neural Network library (cuDNN)"; homepage = "https://developer.nvidia.com/cudnn"; From 2c6230522840b22fee04fc884e27eed014acb945 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Thu, 2 Jun 2016 21:07:10 +0200 Subject: [PATCH 199/520] shutter: fix runtime error (missing imagemagick) Fixes this: $ shutter ERROR: imagemagick is missing --> aborting! Due to 73f1f5eb3969743fe459e7cc36cfb766c7f5318a ("imagemagick: split dev output to fix #9604") which was committed in the same period as shutter was added to nixpkgs. --- pkgs/applications/graphics/shutter/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/shutter/default.nix b/pkgs/applications/graphics/shutter/default.nix index 59cea939bc9a..0d52e563c9de 100644 --- a/pkgs/applications/graphics/shutter/default.nix +++ b/pkgs/applications/graphics/shutter/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { wrapProgram $out/bin/shutter \ --set PERL5LIB "${stdenv.lib.makePerlPath perlModules}" \ - --prefix PATH : "${imagemagick}/bin" \ + --prefix PATH : "${imagemagick.out}/bin" \ --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" ''; From 7c19b395ebb8e41d814c64970c3b70ef6377a55b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 3 Jun 2016 00:30:02 +0200 Subject: [PATCH 200/520] Explicitly specify the subsystem for /dev/vboxguest Otherwise systemd gets confused and forgets about device units after reloading. https://github.com/NixOS/nixops/issues/391 https://github.com/systemd/systemd/issues/3423 --- 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 3a10871ce840..59bac24a7537 100644 --- a/nixos/modules/virtualisation/virtualbox-guest.nix +++ b/nixos/modules/virtualisation/virtualbox-guest.nix @@ -77,7 +77,7 @@ in KERNEL=="vboxuser", OWNER="root", GROUP="root", MODE="0666" # Allow systemd dependencies on vboxguest. - KERNEL=="vboxguest", TAG+="systemd" + SUBSYSTEM=="misc", KERNEL=="vboxguest", TAG+="systemd" ''; }; From b8b15ca2a3dfa5a807e09db52fb5cfa5c7dde1ad Mon Sep 17 00:00:00 2001 From: Jun Hao Date: Thu, 2 Jun 2016 19:26:18 +0800 Subject: [PATCH 201/520] emacs|emacs25pre: Check AT_FDCWD is not defined before define it https://github.com/NixOS/nixpkgs/issues/11723 --- pkgs/applications/editors/emacs-24/at-fdcwd.patch | 6 ++++-- pkgs/applications/editors/emacs-25/at-fdcwd.patch | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/emacs-24/at-fdcwd.patch b/pkgs/applications/editors/emacs-24/at-fdcwd.patch index 1f99d4e18094..2d8099b73736 100644 --- a/pkgs/applications/editors/emacs-24/at-fdcwd.patch +++ b/pkgs/applications/editors/emacs-24/at-fdcwd.patch @@ -1,12 +1,14 @@ diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h -index 5cdb813..7a272e8 100644 +index 84ede3e..8e8f42e 100644 --- a/lib/careadlinkat.h +++ b/lib/careadlinkat.h -@@ -23,6 +23,8 @@ +@@ -23,6 +23,10 @@ #include #include ++#ifndef AT_FDCWD +#define AT_FDCWD -2 ++#endif + struct allocator; diff --git a/pkgs/applications/editors/emacs-25/at-fdcwd.patch b/pkgs/applications/editors/emacs-25/at-fdcwd.patch index 1f99d4e18094..2d8099b73736 100644 --- a/pkgs/applications/editors/emacs-25/at-fdcwd.patch +++ b/pkgs/applications/editors/emacs-25/at-fdcwd.patch @@ -1,12 +1,14 @@ diff --git a/lib/careadlinkat.h b/lib/careadlinkat.h -index 5cdb813..7a272e8 100644 +index 84ede3e..8e8f42e 100644 --- a/lib/careadlinkat.h +++ b/lib/careadlinkat.h -@@ -23,6 +23,8 @@ +@@ -23,6 +23,10 @@ #include #include ++#ifndef AT_FDCWD +#define AT_FDCWD -2 ++#endif + struct allocator; From a26f1136113940ec0dddf5532aeba2296d07e2d0 Mon Sep 17 00:00:00 2001 From: 0w0 Date: Mon, 30 May 2016 16:15:23 +0800 Subject: [PATCH 202/520] openfortivpn: 1.0.1 -> 1.1.4 --- pkgs/tools/networking/openfortivpn/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/openfortivpn/default.nix b/pkgs/tools/networking/openfortivpn/default.nix index 50fde6a77944..d0e8ea4b1d9b 100644 --- a/pkgs/tools/networking/openfortivpn/default.nix +++ b/pkgs/tools/networking/openfortivpn/default.nix @@ -3,7 +3,7 @@ with stdenv.lib; let repo = "openfortivpn"; - version = "1.0.1"; + version = "1.1.4"; in stdenv.mkDerivation { name = "${repo}-${version}"; @@ -12,7 +12,7 @@ in stdenv.mkDerivation { owner = "adrienverge"; inherit repo; rev = "v${version}"; - sha256 = "0kwl8hv3nydd34xp1489jpjdj4bmknfl9xrgynij0vf5qx29xv7m"; + sha256 = "08ycz053wa29ckgr93132hr3vrd84r3bks9q807qanri0n35y256"; }; buildInputs = [ openssl automake autoconf ppp ]; From 737e0474392136067de9a64d481d295dca7565c7 Mon Sep 17 00:00:00 2001 From: Sheena Artrip Date: Fri, 3 Jun 2016 02:46:34 -0400 Subject: [PATCH 203/520] nethack: include xlogfile as copied file in nethackuserdir --- pkgs/games/nethack/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/games/nethack/default.nix b/pkgs/games/nethack/default.nix index ce12196d3c36..735065ca18e0 100644 --- a/pkgs/games/nethack/default.nix +++ b/pkgs/games/nethack/default.nix @@ -53,7 +53,7 @@ in stdenv.mkDerivation { postInstall = '' mkdir -p $out/games/lib/nethackuserdir - for i in logfile perm record save; do + for i in xlogfile logfile perm record save; do mv $out/games/lib/nethackdir/$i $out/games/lib/nethackuserdir done From 09a338c1c75c5a1091e4d6f5983c99c67043d7d6 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 3 Jun 2016 10:26:59 +0200 Subject: [PATCH 204/520] pythonPackages.pandas: add tables dependency --- pkgs/top-level/python-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c17b808f1676..a160abc4e310 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15708,6 +15708,7 @@ in modules // { modules.sqlite3 beautifulsoup4 openpyxl + tables xlwt ] ++ optional isDarwin pkgs.darwin.locale; # provides the locale command From 8fe8c2a7ece6c8c3a4080fcc944c4e622a15c306 Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 3 Jun 2016 10:22:24 +0200 Subject: [PATCH 205/520] pythonPackages.partd: init at 0.3.3 --- pkgs/top-level/python-packages.nix | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index a160abc4e310..48aef6da2228 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -15865,6 +15865,32 @@ in modules // { }; }; + partd = buildPythonPackage rec { + name = "partd-${version}"; + version = "0.3.3"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/partd/${name}.tar.gz"; + sha256 = "0fgrkfhgpm0hf5gs6wvgv7p9ls2kvgk0mc5hkmjw5slfbkn3fz8v"; + }; + + buildInputs = with self; [ pytest ]; + + propagatedBuildInputs = with self; [ locket numpy pandas pyzmq toolz ]; + + checkPhase = '' + py.test + ''; + + meta = { + description = "Appendable key-value storage"; + license = with licenses; [ bsd3 ]; + homepage = http://github.com/dask/partd/; + }; + + + }; + patsy = buildPythonPackage rec { name = "patsy-${version}"; version = "0.3.0"; From c8f81c08c734614b6c7dc3073dc9091e3dd1f5cc Mon Sep 17 00:00:00 2001 From: Tom Hunger Date: Tue, 31 May 2016 15:52:48 +0100 Subject: [PATCH 206/520] pythonPackages.dask: Add dependencies, closes #15901 --- pkgs/top-level/python-packages.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 48aef6da2228..c5ea75dd72f2 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -3472,11 +3472,12 @@ in modules // { buildInputs = with self; [ pytest mock ]; + # See README for tests invocation checkPhase = '' - py.test tests + PYTHONPATH=$PYTHONPATH:'.:tests' py.test ''; - # ImportError of test suite + # TypeError: cannot serialize '_io.FileIO' object doCheck = false; meta = { @@ -4748,13 +4749,13 @@ in modules // { }; buildInputs = with self; [ pytest ]; - propagatedBuildInputs = with self; [ numpy toolz dill pandas ]; + propagatedBuildInputs = with self; [ cloudpickle numpy toolz dill pandas partd ]; checkPhase = '' py.test dask ''; - # Segfault, likely in numpy + # URLError doCheck = false; meta = { From 47122e18bd506eed90ca87323d82ef5dc4e4c7aa Mon Sep 17 00:00:00 2001 From: Tom Hunger Date: Wed, 1 Jun 2016 10:43:22 +0100 Subject: [PATCH 207/520] pythonPackages.distributed: Disable failing tests. --- 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 c5ea75dd72f2..2c881a3fc178 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4782,9 +4782,9 @@ in modules // { psutil botocore ] ++ (if !isPy3k then [ singledispatch ] else []); - checkPhase = '' - py.test -m "not avoid_travis" distributed --verbose - ''; + # py.test not picking up local config file, even when running + # manually: E ValueError: no option named '--runslow' + doCheck = false; meta = { description = "Distributed computation in Python."; From cedfeda2a12d55655c341c6d3b986b7ae8a6fe2f Mon Sep 17 00:00:00 2001 From: Kevin Marsh Date: Thu, 2 Jun 2016 13:21:59 +0100 Subject: [PATCH 208/520] pythonPackages.pdfkit: init at 0.5.0 --- pkgs/top-level/python-packages.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2c881a3fc178..220868baf0ed 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16220,6 +16220,25 @@ in modules // { }; }; + pdfkit = buildPythonPackage rec { + name = "pdfkit-${version}"; + version = "0.5.0"; + + src = pkgs.fetchurl { + url = "mirror://pypi/p/pdfkit/${name}.zip"; + sha256 = "1p1m6gp51ql3wzjs2iwds8sc3hg1i48yysii9inrky6qc3s6q5vf"; + }; + + buildInputs = with self; [ ]; + # tests are not distributed + doCheck = false; + + meta = { + homepage = https://pypi.python.org/pypi/pdfkit; + description = "Wkhtmltopdf python wrapper to convert html to pdf using the webkit rendering engine and qt"; + license = licenses.mit; + }; + }; pg8000 = buildPythonPackage rec { name = "pg8000-1.10.1"; From 85b87796ae2506b7d77040ac873df17580bffce7 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Fri, 3 Jun 2016 06:46:54 -0300 Subject: [PATCH 209/520] runit: fix closure size --- pkgs/tools/system/runit/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/tools/system/runit/default.nix b/pkgs/tools/system/runit/default.nix index 70c49335eafd..c10e41d709bc 100644 --- a/pkgs/tools/system/runit/default.nix +++ b/pkgs/tools/system/runit/default.nix @@ -9,8 +9,6 @@ stdenv.mkDerivation rec { sha256 = "065s8w62r6chjjs6m9hapcagy33m75nlnxb69vg0f4ngn061dl3g"; }; - phases = [ "unpackPhase" "patchPhase" "buildPhase" "checkPhase" "installPhase" ]; - patches = [ ./Makefile.patch ]; postPatch = '' From a1b0ca639cf0ea8ccd0e8a8c2851fcf207ee92a9 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Fri, 3 Jun 2016 12:16:54 +0200 Subject: [PATCH 210/520] gnuk: Fix hashes. Fixes #15827. --- pkgs/misc/gnuk/default.nix | 2 +- pkgs/misc/gnuk/git.nix | 2 +- pkgs/misc/gnuk/unstable.nix | 2 +- pkgs/top-level/all-packages.nix | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/misc/gnuk/default.nix b/pkgs/misc/gnuk/default.nix index fb845d9c4765..f3d5450c94ba 100644 --- a/pkgs/misc/gnuk/default.nix +++ b/pkgs/misc/gnuk/default.nix @@ -6,6 +6,6 @@ callPackage ./generic.nix (args // rec { src = fetchgit { url = "git://git.gniibe.org/gnuk/gnuk.git"; rev = "93867d0c8b90c485f9832c0047c3a2e17a029aca"; - sha256 = "176vx81m6wnfvamxpp7hfbs1pm692zr0my0z2gid65b6rgffdycd"; + sha256 = "0ah2gc772kdq7gdwpqwdmfh5nzbx2wgpk5ljnhwc4i3mrkafdiih"; }; }) diff --git a/pkgs/misc/gnuk/git.nix b/pkgs/misc/gnuk/git.nix index 8c03a1eee536..142c4a0e7e5f 100644 --- a/pkgs/misc/gnuk/git.nix +++ b/pkgs/misc/gnuk/git.nix @@ -6,6 +6,6 @@ callPackage ./generic.nix (args // rec { src = fetchgit { url = "git://git.gniibe.org/gnuk/gnuk.git"; rev = "3d5a776ab15a4ae6e17d91341a58eda3db09f700"; - sha256 = "1pkdca331wrf1lsnlxxwbbnfcr7vj9xsac92dhj06fhpq4mb8kgb"; + sha256 = "1f9l1rwy630z8cnjd6lfv0zp6ij3c9ifbm3fym245049hh2xds7v"; }; }) diff --git a/pkgs/misc/gnuk/unstable.nix b/pkgs/misc/gnuk/unstable.nix index 0bfcbc023bf1..16dbe5d21fc8 100644 --- a/pkgs/misc/gnuk/unstable.nix +++ b/pkgs/misc/gnuk/unstable.nix @@ -6,6 +6,6 @@ callPackage ./generic.nix (args // rec { src = fetchgit { url = "git://git.gniibe.org/gnuk/gnuk.git"; rev = "e7e8b9f5ca414a5c901f61b0f043c8da42414103"; - sha256 = "0zjpgvmnvgvfqp9cd9g8ns9z05alimwcdqx16l22604ywnhdy99l"; + sha256 = "0js9dc1iyvrrcb0d8a2irivrli3yb7mxmpxws5a2n53hj5xc4n6l"; }; }) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index aad0bb4357e3..acbd820736f7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16497,8 +16497,8 @@ in }); gnuk = callPackage ../misc/gnuk { }; - gnuk-unstable = callPackage ../misc/gnuk/unstable.nix { }; - gnuk-git = callPackage ../misc/gnuk/git.nix { }; + gnuk-unstable = lowPrio (callPackage ../misc/gnuk/unstable.nix { }); + gnuk-git = lowPrio (callPackage ../misc/gnuk/git.nix { }); greybird = callPackage ../misc/themes/greybird { }; From 5ff90d15187fa5b45ee3358297522519cf9da744 Mon Sep 17 00:00:00 2001 From: Christian Lask Date: Fri, 3 Jun 2016 10:00:09 +0200 Subject: [PATCH 211/520] neomutt: 20160416 -> 20160502 --- pkgs/applications/networking/mailreaders/neomutt/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix index f4718e1ee745..fd5f4a18bd4f 100644 --- a/pkgs/applications/networking/mailreaders/neomutt/default.nix +++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix @@ -2,14 +2,14 @@ , cyrus_sasl, gdbm, gpgme, kerberos, libidn, notmuch, openssl }: stdenv.mkDerivation rec { - version = "20160416"; + version = "20160502"; name = "neomutt-${version}"; src = fetchFromGitHub { owner = "neomutt"; repo = "neomutt"; rev = "neomutt-${version}"; - sha256 = "1sgc77fyjcf859y896w208fw4rxd0bzhp0c7cp3vacb7lqr07ngb"; + sha256 = "0r7nn7yjhf3d7nc89gwpgrq45gqiwsrcaw1pkgmvrd16p0jhga1m"; }; buildInputs = From 30c94e10c3ab41d48db5fc45d6bc95491610d2d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 3 Jun 2016 12:08:13 +0100 Subject: [PATCH 212/520] travis-ci: allow failures on osx until nixpkgs channel is unblocked --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 1b607991f033..f29f71aa19f1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,6 @@ matrix: + allow_failures: + - os: osx include: - os: linux language: generic From 4c5fdf42ed3612db4532bc2259dd3f7c6847e077 Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 2 Jun 2016 16:03:35 +0100 Subject: [PATCH 213/520] nixos/modules/misc/version.nix: check that .git is a directory That's not the case for git submodules Fixes #15928 --- lib/sources.nix | 6 ++++++ nixos/modules/misc/version.nix | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/lib/sources.nix b/lib/sources.nix index 6b19b192dfd6..8e58e4b6a9dd 100644 --- a/lib/sources.nix +++ b/lib/sources.nix @@ -4,6 +4,11 @@ let lib = import ./default.nix; in rec { + # Returns the type of a path: regular (for file), symlink, or directory + pathType = p: with builtins; getAttr (baseNameOf p) (readDir (dirOf p)); + + # Returns true if the path exists and is a directory, false otherwise + pathIsDirectory = p: if builtins.pathExists p then (pathType p) == "directory" else false; # Bring in a path as a source, filtering out all Subversion and CVS # directories, as well as backup files (*~). @@ -29,6 +34,7 @@ rec { in type == "directory" || lib.any (ext: lib.hasSuffix ext base) exts; in builtins.filterSource filter path; + # Get the commit id of a git repo # Example: commitIdFromGitRepo commitIdFromGitRepo = diff --git a/nixos/modules/misc/version.nix b/nixos/modules/misc/version.nix index fd7cadf76cc1..9a37f5950930 100644 --- a/nixos/modules/misc/version.nix +++ b/nixos/modules/misc/version.nix @@ -104,8 +104,8 @@ in # changing them would not rebuild the manual nixosLabel = mkDefault (maybeEnv "NIXOS_LABEL" cfg.nixosVersion); nixosVersion = mkDefault (maybeEnv "NIXOS_VERSION" (cfg.nixosRelease + cfg.nixosVersionSuffix)); - nixosRevision = mkIf (pathExists gitRepo) (mkDefault gitCommitId); - nixosVersionSuffix = mkIf (pathExists gitRepo) (mkDefault (".git." + gitCommitId)); + nixosRevision = mkIf (pathIsDirectory gitRepo) (mkDefault gitCommitId); + nixosVersionSuffix = mkIf (pathIsDirectory gitRepo) (mkDefault (".git." + gitCommitId)); # Note: code names must only increase in alphabetical order. nixosCodeName = "Flounder"; From 4c99d22f19d329fe102d89c838134d75f1bf35a2 Mon Sep 17 00:00:00 2001 From: Alexander Kjeldaas Date: Sat, 1 Nov 2014 01:07:06 +0100 Subject: [PATCH 214/520] kernel: set nx bit on module ro segments Fixes #4757. --- pkgs/os-specific/linux/kernel/common-config.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 485cdd76f6ac..3ce65a3f6e18 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -255,6 +255,9 @@ with stdenv.lib; SQUASHFS_LZ4 y ''} + # Runtime security tests + DEBUG_SET_MODULE_RONX? y # Detect writes to read-only module pages + # Security related features. STRICT_DEVMEM y # Filter access to /dev/mem SECURITY_SELINUX_BOOTPARAM_VALUE 0 # Disable SELinux by default From 3a7ec4c8f40680f63c3f3d9793c46065be1c1a49 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 2 Jun 2016 19:50:28 +0200 Subject: [PATCH 215/520] gd: enable parallel building --- pkgs/development/libraries/gd/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index 68c713c235e9..5759aa46d13f 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -26,6 +26,8 @@ stdenv.mkDerivation rec { postFixup = ''moveToOutput "bin/gdlib-config" $dev''; + enableParallelBuilding = true; + meta = with stdenv.lib; { homepage = https://libgd.github.io/; description = "A dynamic image creation library"; From 8b2fc35987e62c079fd50980782495360039a9c1 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 2 Jun 2016 19:06:34 +0200 Subject: [PATCH 216/520] gd: propagate image format dependencies After f8bdd7969d1af9b1f4ab5f968fae336190c1ae1c it has become necessary for users of gd to also add inputs for optional image format support, such as libjpeg and libwebp. This patch makes the following commits obsolete: - 972c438c03f046bddffea2a2ae349aaf6e652277 - 2113b7389afa040923e8e33443d3f5ce6eaed69e - 94286527ace1f7c3b09bf68e9449a1c8ecfcbd33 - a371094f1f0df1edf669362fe2612de10b077ca4 - f345d01974378d443e82cd615ee95620529beb1d --- pkgs/development/libraries/gd/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gd/default.nix b/pkgs/development/libraries/gd/default.nix index 5759aa46d13f..7f7e000d16ea 100644 --- a/pkgs/development/libraries/gd/default.nix +++ b/pkgs/development/libraries/gd/default.nix @@ -1,9 +1,9 @@ { stdenv, fetchurl , pkgconfig , zlib -, libjpeg , libpng -, libwebp +, libjpeg ? null +, libwebp ? null , libtiff ? null , libXpm ? null , fontconfig @@ -20,7 +20,8 @@ stdenv.mkDerivation rec { }; nativeBuildInputs = [ pkgconfig ]; - buildInputs = [ zlib fontconfig freetype libjpeg libpng libwebp libtiff libXpm ]; + buildInputs = [ zlib fontconfig freetype ]; + propagatedBuildInputs = [ libpng libjpeg libwebp libtiff libXpm ]; outputs = [ "dev" "out" "bin" ]; From 07933ad15ff3d159bad3824a072aa52e0b6a2fba Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 3 Jun 2016 03:19:19 +0200 Subject: [PATCH 217/520] tcpcrypt: 0.3-rc1 -> 0.4, refactoring - Use `fetchFromGitHub` - Cleanup build inputs - meta cleanups - Strip binaries - Multiple outputs --- pkgs/tools/security/tcpcrypt/default.nix | 39 ++++++++++++++---------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/pkgs/tools/security/tcpcrypt/default.nix b/pkgs/tools/security/tcpcrypt/default.nix index 4dbcdf71f9f9..48eefcb0f187 100644 --- a/pkgs/tools/security/tcpcrypt/default.nix +++ b/pkgs/tools/security/tcpcrypt/default.nix @@ -1,27 +1,34 @@ -{ fetchurl, stdenv, autoconf, automake, libtool, autoreconfHook -, openssl, libcap, libnfnetlink, libnetfilter_queue +{ stdenv, fetchFromGitHub, autoreconfHook +, openssl +, libcap, libpcap, libnfnetlink, libnetfilter_conntrack, libnetfilter_queue }: -stdenv.mkDerivation rec { - name = "tcpcrypt-0.3-rc1"; +with stdenv.lib; - src = fetchurl { - url = "https://github.com/scslab/tcpcrypt/archive/v0.3-rc1.tar.gz"; - sha256 = "1k79xfip95kyy91b6rnmsgl66g52zrnm92ln4jms133nm2k9s4sa"; - name = "${name}.tar.gz"; +stdenv.mkDerivation rec { + name = "tcpcrypt-${version}"; + version = "0.4"; + + src = fetchFromGitHub { + repo = "tcpcrypt"; + owner = "scslab"; + rev = "v${version}"; + sha256 = "04n1qpf4x8x289xa7jndmx99xp0lbxjzjw013kf64i1n70i9wbnp"; }; - dontStrip = true; + postUnpack = ''mkdir -vp $sourceRoot/m4''; - buildInputs = [ autoreconfHook autoconf automake libtool openssl libcap libnfnetlink libnetfilter_queue ]; + outputs = [ "dev" "out" "bin" ]; + nativeBuildInputs = [ autoreconfHook ]; + buildInputs = [ openssl ] + ++ optionals stdenv.isLinux [ libcap libpcap libnfnetlink libnetfilter_conntrack libnetfilter_queue ]; - postUnpack = '' - mkdir $sourceRoot/m4 - ''; + enableParallelBuilding = true; meta = { - homepage = "http://tcpcrypt.org/"; - description = "enable opportunistic encryption of all TCP traffic"; - platforms = stdenv.lib.platforms.linux; + homepage = http://tcpcrypt.org/; + description = "Fast TCP encryption"; + platforms = platforms.all; + license = licenses.bsd2; }; } From 7a44e129b6cf1106797b146ae47a01b1b088427b Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:36:23 +0200 Subject: [PATCH 218/520] vifm: 0.8 -> 0.8.1 --- 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 3852acfc9f3e..6cd91e7817cc 100644 --- a/pkgs/applications/misc/vifm/default.nix +++ b/pkgs/applications/misc/vifm/default.nix @@ -2,14 +2,14 @@ let name = "vifm-${version}"; - version = "0.8"; + version = "0.8.1"; in stdenv.mkDerivation { inherit name; src = fetchurl { url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2"; - sha256 = "1syyvdcgwnvjxzmpf9f4gfi0ipwmlavg11zr7wiz8qplvi86psv9"; + sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r"; }; buildInputs = [ utillinux ncurses file libX11 which groff ]; From 5ba49a427b3d5bb25c1228014ea0eb40b6cef0ca Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 20:41:06 +0200 Subject: [PATCH 219/520] signing-party: 2.1 -> 2.2 --- pkgs/tools/security/signing-party/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/signing-party/default.nix b/pkgs/tools/security/signing-party/default.nix index dfd5cd6c7d7c..e2e3955628de 100644 --- a/pkgs/tools/security/signing-party/default.nix +++ b/pkgs/tools/security/signing-party/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, gnupg, perl, automake111x, autoconf}: stdenv.mkDerivation rec { - version = "2.1"; + version = "2.2"; basename = "signing-party"; name = "${basename}-${version}"; src = fetchurl { url = "mirror://debian/pool/main/s/${basename}/${basename}_${version}.orig.tar.gz"; - sha256 = "0pcni3mf92503bqknwlsvv1f5gz23dmzwas2j8g2fk7afjd891ya"; + sha256 = "13qncdyadw1cnslc2xss9s2rpkalm7rz572b23p7mqcdqp30cpdd"; }; sourceRoot = "."; From 6d00d72aef9a623be4f67dc03b932c5b1052812d Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:21:09 +0200 Subject: [PATCH 220/520] icewm: 1.3.10 -> 1.3.12 --- pkgs/applications/window-managers/icewm/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/window-managers/icewm/default.nix b/pkgs/applications/window-managers/icewm/default.nix index b1b63df574a0..861313431b07 100644 --- a/pkgs/applications/window-managers/icewm/default.nix +++ b/pkgs/applications/window-managers/icewm/default.nix @@ -8,7 +8,7 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "icewm-${version}"; - version = "1.3.10"; + version = "1.3.12"; buildInputs = [ cmake gettext libjpeg libtiff libungif libpng imlib expat @@ -18,7 +18,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "https://github.com/bbidulock/icewm/archive/${version}.tar.gz"; - sha256 = "01i7a21gf810spmzjx32dxsmx4527qivs744rhvhaw4gr00amrns"; + sha256 = "0cmjnf0yvafwg73qy5wq7ghiknpn1jf1978c1yj7yabyn07zxq77"; }; preConfigure = '' From 97e64c3cf51b52c033519c6e74f9ba490991ffdc Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:26:09 +0200 Subject: [PATCH 221/520] discount: 2.1.6 -> 2.2.0 --- pkgs/tools/text/discount/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/discount/default.nix b/pkgs/tools/text/discount/default.nix index ff846ac0933d..adab8c9a10df 100644 --- a/pkgs/tools/text/discount/default.nix +++ b/pkgs/tools/text/discount/default.nix @@ -1,11 +1,11 @@ {stdenv, fetchurl}: stdenv.mkDerivation rec { - version = "2.1.6"; + version = "2.2.0"; name = "discount-${version}"; src = fetchurl { url = "http://www.pell.portland.or.us/~orc/Code/discount/discount-${version}.tar.bz2"; - sha256 = "15h726m5yalq15hkxxfw4bxwd6wkwkan5q7s80pgi1z32ygb4avh"; + sha256 = "1wxrv86xr8cacwhzkyzmfxg58svfnn3swbpbk5hq621ckk19alxj"; }; patches = ./fix-configure-path.patch; configureScript = "./configure.sh"; From 871c4d78e80b5cc7268c1a579f577eb0fd847ace Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 30 May 2016 23:26:20 +0200 Subject: [PATCH 222/520] diffstat: 1.60 -> 1.61 --- pkgs/tools/text/diffstat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/text/diffstat/default.nix b/pkgs/tools/text/diffstat/default.nix index 61a65b59c9cb..cfc1d4badbdd 100644 --- a/pkgs/tools/text/diffstat/default.nix +++ b/pkgs/tools/text/diffstat/default.nix @@ -1,11 +1,11 @@ { fetchurl, stdenv }: stdenv.mkDerivation rec { - name = "diffstat-1.60"; + name = "diffstat-1.61"; src = fetchurl { url = "ftp://invisible-island.net/diffstat/${name}.tgz"; - sha256 = "08q1zckb3q5xpqa17pl14fbi5b64xc0sjbg393ap1bivnhcf8ci0"; + sha256 = "1vjmda2zfjxg0qkaj8hfqa8g6bfwnn1ja8696rxrjgqq4w69wd95"; }; meta = with stdenv.lib; { From 5b9388a8ed8e16600b7f3fb8f8efc8aead093c18 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 3 Jun 2016 16:09:20 +0200 Subject: [PATCH 223/520] vifm: fixups --- pkgs/applications/misc/vifm/default.nix | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/pkgs/applications/misc/vifm/default.nix b/pkgs/applications/misc/vifm/default.nix index 6cd91e7817cc..e5f3011e6bac 100644 --- a/pkgs/applications/misc/vifm/default.nix +++ b/pkgs/applications/misc/vifm/default.nix @@ -1,24 +1,26 @@ -{ pkgs, fetchurl, stdenv, ncurses, utillinux, file, libX11, which, groff }: +{ stdenv, fetchurl +, pkgconfig +, ncurses, libX11 +, utillinux, file, which, groff +}: -let +stdenv.mkDerivation rec { name = "vifm-${version}"; version = "0.8.1"; -in stdenv.mkDerivation { - inherit name; - src = fetchurl { url = "mirror://sourceforge/project/vifm/vifm/${name}.tar.bz2"; sha256 = "0yf3xc4czdrcbvmhq7d4xkck5phrmxwybmnv1zdb56qg56baq64r"; }; - buildInputs = [ utillinux ncurses file libX11 which groff ]; + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ ncurses libX11 utillinux file which groff ]; - meta = { + meta = with stdenv.lib; { description = "A vi-like file manager"; - maintainers = with pkgs.lib.maintainers; [ raskin garbas ]; - platforms = pkgs.lib.platforms.linux; - license = pkgs.lib.licenses.gpl2; + maintainers = with maintainers; [ raskin garbas ]; + platforms = platforms.linux; + license = licenses.gpl2; }; passthru = { From fba8635991dd9be41e1e477c8075b73284f7fbc8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 2 Jun 2016 09:49:35 +0200 Subject: [PATCH 224/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-30-g704cd27 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/5f6653ffd9b21820302df0016d8f1979f7b6ea9e - LTS Haskell: https://github.com/fpco/lts-haskell/commit/042ef2187b44a2d6959602fe35c94b804817cf0f - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/a2b989788f41684806e80ecc49af209f0dd70a6d --- .../haskell-modules/configuration-lts-0.0.nix | 5 + .../haskell-modules/configuration-lts-0.1.nix | 5 + .../haskell-modules/configuration-lts-0.2.nix | 5 + .../haskell-modules/configuration-lts-0.3.nix | 5 + .../haskell-modules/configuration-lts-0.4.nix | 5 + .../haskell-modules/configuration-lts-0.5.nix | 5 + .../haskell-modules/configuration-lts-0.6.nix | 5 + .../haskell-modules/configuration-lts-0.7.nix | 5 + .../haskell-modules/configuration-lts-1.0.nix | 5 + .../haskell-modules/configuration-lts-1.1.nix | 6 + .../configuration-lts-1.10.nix | 6 + .../configuration-lts-1.11.nix | 6 + .../configuration-lts-1.12.nix | 6 + .../configuration-lts-1.13.nix | 6 + .../configuration-lts-1.14.nix | 6 + .../configuration-lts-1.15.nix | 7 + .../haskell-modules/configuration-lts-1.2.nix | 6 + .../haskell-modules/configuration-lts-1.4.nix | 6 + .../haskell-modules/configuration-lts-1.5.nix | 6 + .../haskell-modules/configuration-lts-1.7.nix | 6 + .../haskell-modules/configuration-lts-1.8.nix | 6 + .../haskell-modules/configuration-lts-1.9.nix | 6 + .../haskell-modules/configuration-lts-2.0.nix | 7 + .../haskell-modules/configuration-lts-2.1.nix | 7 + .../configuration-lts-2.10.nix | 7 + .../configuration-lts-2.11.nix | 7 + .../configuration-lts-2.12.nix | 7 + .../configuration-lts-2.13.nix | 7 + .../configuration-lts-2.14.nix | 7 + .../configuration-lts-2.15.nix | 7 + .../configuration-lts-2.16.nix | 7 + .../configuration-lts-2.17.nix | 7 + .../configuration-lts-2.18.nix | 7 + .../configuration-lts-2.19.nix | 7 + .../haskell-modules/configuration-lts-2.2.nix | 7 + .../configuration-lts-2.20.nix | 7 + .../configuration-lts-2.21.nix | 7 + .../configuration-lts-2.22.nix | 7 + .../haskell-modules/configuration-lts-2.3.nix | 7 + .../haskell-modules/configuration-lts-2.4.nix | 7 + .../haskell-modules/configuration-lts-2.5.nix | 7 + .../haskell-modules/configuration-lts-2.6.nix | 7 + .../haskell-modules/configuration-lts-2.7.nix | 7 + .../haskell-modules/configuration-lts-2.8.nix | 7 + .../haskell-modules/configuration-lts-2.9.nix | 7 + .../haskell-modules/configuration-lts-3.0.nix | 7 + .../haskell-modules/configuration-lts-3.1.nix | 7 + .../configuration-lts-3.10.nix | 7 + .../configuration-lts-3.11.nix | 7 + .../configuration-lts-3.12.nix | 7 + .../configuration-lts-3.13.nix | 7 + .../configuration-lts-3.14.nix | 7 + .../configuration-lts-3.15.nix | 7 + .../configuration-lts-3.16.nix | 7 + .../configuration-lts-3.17.nix | 7 + .../configuration-lts-3.18.nix | 7 + .../configuration-lts-3.19.nix | 7 + .../haskell-modules/configuration-lts-3.2.nix | 7 + .../configuration-lts-3.20.nix | 7 + .../configuration-lts-3.21.nix | 7 + .../configuration-lts-3.22.nix | 7 + .../haskell-modules/configuration-lts-3.3.nix | 7 + .../haskell-modules/configuration-lts-3.4.nix | 7 + .../haskell-modules/configuration-lts-3.5.nix | 7 + .../haskell-modules/configuration-lts-3.6.nix | 7 + .../haskell-modules/configuration-lts-3.7.nix | 7 + .../haskell-modules/configuration-lts-3.8.nix | 7 + .../haskell-modules/configuration-lts-3.9.nix | 7 + .../haskell-modules/configuration-lts-4.0.nix | 8 + .../haskell-modules/configuration-lts-4.1.nix | 8 + .../haskell-modules/configuration-lts-4.2.nix | 8 + .../haskell-modules/configuration-lts-5.0.nix | 8 + .../haskell-modules/configuration-lts-5.1.nix | 8 + .../configuration-lts-5.10.nix | 8 + .../configuration-lts-5.11.nix | 8 + .../configuration-lts-5.12.nix | 8 + .../configuration-lts-5.13.nix | 8 + .../configuration-lts-5.14.nix | 8 + .../configuration-lts-5.15.nix | 8 + .../configuration-lts-5.16.nix | 9 + .../configuration-lts-5.17.nix | 9 + .../configuration-lts-5.18.nix | 10 + .../haskell-modules/configuration-lts-5.2.nix | 8 + .../haskell-modules/configuration-lts-5.3.nix | 8 + .../haskell-modules/configuration-lts-5.4.nix | 8 + .../haskell-modules/configuration-lts-5.5.nix | 8 + .../haskell-modules/configuration-lts-5.6.nix | 8 + .../haskell-modules/configuration-lts-5.7.nix | 8 + .../haskell-modules/configuration-lts-5.8.nix | 8 + .../haskell-modules/configuration-lts-5.9.nix | 8 + .../haskell-modules/configuration-lts-6.0.nix | 86 + .../haskell-modules/configuration-lts-6.1.nix | 87 + .../haskell-modules/hackage-packages.nix | 2313 ++++++++++++++--- 93 files changed, 2744 insertions(+), 368 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 30c7a9516165..357f156b5da9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7558,6 +7560,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8045,6 +8048,7 @@ self: super: { "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"; @@ -8458,6 +8462,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index fe0fd741bf0b..b2f9bdb1f436 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7558,6 +7560,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8045,6 +8048,7 @@ self: super: { "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"; @@ -8458,6 +8462,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index b6992b4aff19..03666eeb9050 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7558,6 +7560,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8045,6 +8048,7 @@ self: super: { "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"; @@ -8458,6 +8462,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 5ef07e7734e4..1f154608e07c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7558,6 +7560,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8045,6 +8048,7 @@ self: super: { "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"; @@ -8458,6 +8462,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 1392d61fdacf..f4aa869c82b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7555,6 +7557,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8042,6 +8045,7 @@ self: super: { "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"; @@ -8455,6 +8459,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 59a4b1533d6f..ffc64e3e423e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1275,6 +1275,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1297,6 +1298,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7555,6 +7557,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8042,6 +8045,7 @@ self: super: { "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"; @@ -8455,6 +8459,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 4dbc35a9a85a..06e2cd879025 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1274,6 +1274,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1296,6 +1297,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7552,6 +7554,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8039,6 +8042,7 @@ self: super: { "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"; @@ -8452,6 +8456,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 97222ac91776..74019a0158cf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1274,6 +1274,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1296,6 +1297,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7552,6 +7554,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8039,6 +8042,7 @@ self: super: { "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"; @@ -8452,6 +8456,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_1_1_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 6c00ed77bed0..bb2caa4988ba 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1272,6 +1272,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1294,6 +1295,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7543,6 +7545,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8029,6 +8032,7 @@ self: super: { "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"; @@ -8442,6 +8446,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_3"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 59c3fd1c7dbb..4b9032c3f934 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1272,6 +1272,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1294,6 +1295,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7536,6 +7538,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8021,6 +8024,7 @@ self: super: { "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"; @@ -8432,6 +8436,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8846,6 +8851,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 47282b8ccbf0..131410aa016b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7516,6 +7518,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7999,6 +8002,7 @@ self: super: { "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"; @@ -8408,6 +8412,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8820,6 +8825,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index e083f9007f93..c795619071e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7513,6 +7515,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7996,6 +7999,7 @@ self: super: { "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"; @@ -8405,6 +8409,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8817,6 +8822,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index ae6084d1f182..acffd8973d63 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7513,6 +7515,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7996,6 +7999,7 @@ self: super: { "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"; @@ -8405,6 +8409,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8817,6 +8822,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 097bd09b7abe..e65f50b900ca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7512,6 +7514,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7995,6 +7998,7 @@ self: super: { "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"; @@ -8403,6 +8407,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8815,6 +8820,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 9895d6623db1..8bd95df25bd0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1270,6 +1270,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1292,6 +1293,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7508,6 +7510,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7991,6 +7994,7 @@ self: super: { "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"; @@ -8399,6 +8403,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8811,6 +8816,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 57cb98588c90..b860aedd3e1d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1269,6 +1269,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1291,6 +1292,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7501,6 +7503,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7984,6 +7987,7 @@ self: super: { "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"; @@ -8051,6 +8055,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8390,6 +8395,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8802,6 +8808,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index db6d2e44e2eb..c94c44eeda95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1272,6 +1272,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1294,6 +1295,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7531,6 +7533,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8015,6 +8018,7 @@ self: super: { "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"; @@ -8426,6 +8430,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8840,6 +8845,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 1ef559565b32..2690fdb47e49 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7527,6 +7529,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8011,6 +8014,7 @@ self: super: { "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"; @@ -8421,6 +8425,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8835,6 +8840,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index 0067ae9e1eea..d5e70cb65801 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7526,6 +7528,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8010,6 +8013,7 @@ self: super: { "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"; @@ -8420,6 +8424,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8833,6 +8838,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index f57d2ce7d534..eb62a60470a4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7521,6 +7523,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8005,6 +8008,7 @@ self: super: { "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"; @@ -8415,6 +8419,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8828,6 +8833,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index f549de8c4480..f94f415e3cf8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7517,6 +7519,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8001,6 +8004,7 @@ self: super: { "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"; @@ -8411,6 +8415,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8823,6 +8828,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 3795e7bc5d43..645d363e8ce5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1271,6 +1271,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = dontDistribute super."amazonka"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = dontDistribute super."amazonka-autoscaling"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = dontDistribute super."amazonka-cloudformation"; @@ -1293,6 +1294,7 @@ self: super: { "amazonka-datapipeline" = dontDistribute super."amazonka-datapipeline"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = dontDistribute super."amazonka-directconnect"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = dontDistribute super."amazonka-dynamodb"; @@ -7516,6 +7518,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = dontDistribute super."sbv"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -8000,6 +8003,7 @@ self: super: { "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"; @@ -8410,6 +8414,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8822,6 +8827,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index d4bde7ba4e2a..4f4e62502eac 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1263,6 +1263,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; @@ -1285,6 +1286,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; @@ -7464,6 +7466,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7942,6 +7945,7 @@ self: super: { "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"; @@ -8009,6 +8013,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8346,6 +8351,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8757,6 +8763,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index ac54a7f78cbf..d0a77798d0ee 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1263,6 +1263,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; @@ -1285,6 +1286,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; @@ -7463,6 +7465,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7941,6 +7944,7 @@ self: super: { "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"; @@ -8008,6 +8012,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8345,6 +8350,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8756,6 +8762,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index e118bf17a7cd..dbebdd13260c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1259,6 +1259,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1281,6 +1282,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7438,6 +7440,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7915,6 +7918,7 @@ self: super: { "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"; @@ -7977,6 +7981,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8312,6 +8317,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8721,6 +8727,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index dbe948952d67..f55eb48671b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7434,6 +7436,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7911,6 +7914,7 @@ self: super: { "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"; @@ -7973,6 +7977,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8306,6 +8311,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8715,6 +8721,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index aa6c0f11dd39..c0e7adef7781 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7434,6 +7436,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7910,6 +7913,7 @@ self: super: { "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"; @@ -7972,6 +7976,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8305,6 +8310,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8714,6 +8720,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 4140f53d15ca..527bae759c2a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7433,6 +7435,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7909,6 +7912,7 @@ self: super: { "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"; @@ -7971,6 +7975,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8304,6 +8309,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8713,6 +8719,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 36092a13f041..2c09fd834c80 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7431,6 +7433,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7907,6 +7910,7 @@ self: super: { "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"; @@ -7969,6 +7973,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8302,6 +8307,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8711,6 +8717,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index 4c1ed19ab331..d15fbb5942a2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7429,6 +7431,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7905,6 +7908,7 @@ self: super: { "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"; @@ -7966,6 +7970,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8299,6 +8304,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8708,6 +8714,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 8019c21e776a..7c1abd10e5fa 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7425,6 +7427,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7901,6 +7904,7 @@ self: super: { "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"; @@ -7962,6 +7966,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8295,6 +8300,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8704,6 +8710,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 757ef785beb9..769c9fd36c15 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7421,6 +7423,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7897,6 +7900,7 @@ self: super: { "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"; @@ -7958,6 +7962,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8291,6 +8296,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8700,6 +8706,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 3c4af87d63cf..67632db36679 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7418,6 +7420,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7894,6 +7897,7 @@ self: super: { "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"; @@ -7955,6 +7959,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8287,6 +8292,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8696,6 +8702,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 230654468a88..7422763e96bc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7417,6 +7419,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7893,6 +7896,7 @@ self: super: { "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"; @@ -7954,6 +7958,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8286,6 +8291,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8695,6 +8701,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 762eb95287df..56d11e85e7d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1262,6 +1262,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; @@ -1284,6 +1285,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; @@ -7461,6 +7463,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7939,6 +7942,7 @@ self: super: { "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"; @@ -8006,6 +8010,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8343,6 +8348,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_0_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8754,6 +8760,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 6f7c39908f32..a99795d6c6c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7417,6 +7419,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7892,6 +7895,7 @@ self: super: { "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"; @@ -7953,6 +7957,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8285,6 +8290,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8694,6 +8700,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 1aff7b988ff8..62452454e99c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7416,6 +7418,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7891,6 +7894,7 @@ self: super: { "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"; @@ -7952,6 +7956,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8284,6 +8289,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8693,6 +8699,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index d4e1a7d91445..47cf3f540af4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1258,6 +1258,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1280,6 +1281,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7415,6 +7417,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7890,6 +7893,7 @@ self: super: { "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"; @@ -7951,6 +7955,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8283,6 +8288,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8692,6 +8698,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 256e70203cfe..44bc07b0cbe0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1262,6 +1262,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_3_1"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_3"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_3"; @@ -1284,6 +1285,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_3"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_3"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_3"; @@ -7459,6 +7461,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7937,6 +7940,7 @@ self: super: { "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"; @@ -8004,6 +8008,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8341,6 +8346,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8752,6 +8758,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index fceccbc7610c..a9a52fd9ed88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1262,6 +1262,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1284,6 +1285,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7457,6 +7459,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7935,6 +7938,7 @@ self: super: { "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"; @@ -8002,6 +8006,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8339,6 +8344,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8750,6 +8756,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 80634ecf19c0..6999cb72ff55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1262,6 +1262,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1284,6 +1285,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7456,6 +7458,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7934,6 +7937,7 @@ self: super: { "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"; @@ -8001,6 +8005,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8338,6 +8343,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8749,6 +8755,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 81b43db85344..d321d80bd320 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1260,6 +1260,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1282,6 +1283,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7450,6 +7452,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7928,6 +7931,7 @@ self: super: { "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"; @@ -7995,6 +7999,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8332,6 +8337,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8741,6 +8747,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 1dbeefa2757a..75c1d29f5c6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1260,6 +1260,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1282,6 +1283,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7451,6 +7453,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7929,6 +7932,7 @@ self: super: { "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"; @@ -7996,6 +8000,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8333,6 +8338,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8742,6 +8748,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index e927b2522961..b78ba94dd906 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1259,6 +1259,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1281,6 +1282,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7448,6 +7450,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7925,6 +7928,7 @@ self: super: { "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"; @@ -7990,6 +7994,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8327,6 +8332,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_4"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8736,6 +8742,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 6325f573ae56..6b3e844b5ed0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1259,6 +1259,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_4"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_4"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_4"; @@ -1281,6 +1282,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_4"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_4"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_4"; @@ -7442,6 +7444,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_2"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7919,6 +7922,7 @@ self: super: { "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"; @@ -7982,6 +7986,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8317,6 +8322,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_0_6"; + "text-all" = dontDistribute super."text-all"; "text-and-plots" = dontDistribute super."text-and-plots"; "text-binary" = doDistribute super."text-binary_0_1_0"; "text-conversions" = dontDistribute super."text-conversions"; @@ -8726,6 +8732,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index f0dab63c93a7..025e393ce456 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1238,6 +1238,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1260,6 +1261,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7278,6 +7280,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7746,6 +7749,7 @@ self: super: { "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"; @@ -7801,6 +7805,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8130,6 +8135,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8529,6 +8535,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 47e0f6ff411d..0f4967af1380 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1237,6 +1237,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1259,6 +1260,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7273,6 +7275,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7741,6 +7744,7 @@ self: super: { "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"; @@ -7796,6 +7800,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8125,6 +8130,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_2_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8524,6 +8530,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index 33f08dc49934..e52685bd3b5c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7238,6 +7240,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7703,6 +7706,7 @@ self: super: { "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"; @@ -7757,6 +7761,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8082,6 +8087,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8480,6 +8486,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index e4f83ddcfaf3..b0662d709fb6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7237,6 +7239,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7702,6 +7705,7 @@ self: super: { "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"; @@ -7756,6 +7760,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8081,6 +8086,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8479,6 +8485,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 9baee82b8fc7..88a05546d496 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7234,6 +7236,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7699,6 +7702,7 @@ self: super: { "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"; @@ -7753,6 +7757,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8077,6 +8082,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8475,6 +8481,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 958fa5a46891..1046c6fde168 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7231,6 +7233,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7696,6 +7699,7 @@ self: super: { "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"; @@ -7750,6 +7754,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8074,6 +8079,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8472,6 +8478,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 475e11de73f8..7089f1cc2c01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7228,6 +7230,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7693,6 +7696,7 @@ self: super: { "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"; @@ -7747,6 +7751,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8071,6 +8076,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8469,6 +8475,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 05de0e13094b..893b03851a8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7225,6 +7227,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7689,6 +7692,7 @@ self: super: { "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"; @@ -7743,6 +7747,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8067,6 +8072,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8465,6 +8471,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index b471ee61b9c8..776b0367252e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1234,6 +1234,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1256,6 +1257,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7220,6 +7222,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7684,6 +7687,7 @@ self: super: { "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"; @@ -7738,6 +7742,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8060,6 +8065,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8457,6 +8463,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index be08f924d956..8d1db9b73279 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1234,6 +1234,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1256,6 +1257,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7215,6 +7217,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7679,6 +7682,7 @@ self: super: { "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"; @@ -7733,6 +7737,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8055,6 +8060,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8452,6 +8458,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 0e7eaeb86d7a..20a4cc2f30a9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1234,6 +1234,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1256,6 +1257,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7214,6 +7216,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7678,6 +7681,7 @@ self: super: { "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"; @@ -7732,6 +7736,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8054,6 +8059,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8451,6 +8457,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index ef0d5c475a96..55ab7c8e3280 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -1234,6 +1234,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1256,6 +1257,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7206,6 +7208,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7669,6 +7672,7 @@ self: super: { "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"; @@ -7723,6 +7727,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8045,6 +8050,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8442,6 +8448,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index b6400b7ea4ee..469e57db970d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7267,6 +7269,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7734,6 +7737,7 @@ self: super: { "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"; @@ -7789,6 +7793,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8118,6 +8123,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8517,6 +8523,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 96eb5a425c98..db0936a0f2b3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -1233,6 +1233,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1255,6 +1256,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7204,6 +7206,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7667,6 +7670,7 @@ self: super: { "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"; @@ -7721,6 +7725,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8042,6 +8047,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8439,6 +8445,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index d9587589253d..260b37cae68c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -1233,6 +1233,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1255,6 +1256,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7195,6 +7197,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7654,6 +7657,7 @@ self: super: { "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"; @@ -7708,6 +7712,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8029,6 +8034,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8426,6 +8432,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index e48769116548..56be768268b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -1233,6 +1233,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1255,6 +1256,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7192,6 +7194,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7651,6 +7654,7 @@ self: super: { "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"; @@ -7705,6 +7709,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8026,6 +8031,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8423,6 +8429,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index dc7564000fe4..9f4223641ca4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7265,6 +7267,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7731,6 +7734,7 @@ self: super: { "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"; @@ -7786,6 +7790,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8115,6 +8120,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8514,6 +8520,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 11c7beeb3a41..e345c38d5e39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7265,6 +7267,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7731,6 +7734,7 @@ self: super: { "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"; @@ -7785,6 +7789,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8114,6 +8119,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8513,6 +8519,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 0762ac4ece0c..0a23f8299afe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7257,6 +7259,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7723,6 +7726,7 @@ self: super: { "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"; @@ -7777,6 +7781,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8103,6 +8108,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8502,6 +8508,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 23258fbfc172..fd1637cb5087 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7253,6 +7255,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7719,6 +7722,7 @@ self: super: { "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"; @@ -7773,6 +7777,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8099,6 +8104,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8497,6 +8503,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index e3903cc58890..d7dfc2ede041 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7247,6 +7249,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7712,6 +7715,7 @@ self: super: { "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"; @@ -7766,6 +7770,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8092,6 +8097,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8490,6 +8496,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 992b70692999..c502360c1bc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1236,6 +1236,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1258,6 +1259,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7243,6 +7245,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7708,6 +7711,7 @@ self: super: { "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"; @@ -7762,6 +7766,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8087,6 +8092,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8485,6 +8491,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index ab8fad99deea..d8a22621120f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1235,6 +1235,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_0_3_6"; "amazonka-apigateway" = dontDistribute super."amazonka-apigateway"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_0_3_6"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_0_3_6"; @@ -1257,6 +1258,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_0_3_6"; "amazonka-devicefarm" = dontDistribute super."amazonka-devicefarm"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_0_3_6"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = dontDistribute super."amazonka-ds"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_0_3_6"; @@ -7240,6 +7242,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbv" = doDistribute super."sbv_4_4"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7705,6 +7708,7 @@ self: super: { "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"; @@ -7759,6 +7763,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -8084,6 +8089,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_3"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_1_3"; + "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"; @@ -8482,6 +8488,7 @@ self: super: { "universe-reverse-instances" = dontDistribute super."universe-reverse-instances"; "universe-th" = dontDistribute super."universe-th"; "unix-bytestring" = dontDistribute super."unix-bytestring"; + "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 53a4b50135dd..b3cc03ff5595 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -1213,6 +1213,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1235,6 +1236,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3351,6 +3353,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -7025,6 +7028,7 @@ self: super: { "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_9"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7476,6 +7480,7 @@ self: super: { "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"; @@ -7530,6 +7535,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7841,6 +7847,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8224,6 +8231,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 138433a3c591..0059f1cc22b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -1211,6 +1211,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1233,6 +1234,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3347,6 +3349,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -7015,6 +7018,7 @@ self: super: { "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_9"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7466,6 +7470,7 @@ self: super: { "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"; @@ -7520,6 +7525,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7831,6 +7837,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8214,6 +8221,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index e321aadc6952..f24e8057dac2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -1211,6 +1211,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1233,6 +1234,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3339,6 +3341,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6991,6 +6994,7 @@ self: super: { "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_9"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; @@ -7436,6 +7440,7 @@ self: super: { "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"; @@ -7490,6 +7495,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7801,6 +7807,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8184,6 +8191,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 322ec8aba568..ad7d69dfb901 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -1204,6 +1204,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1226,6 +1227,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3311,6 +3313,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6937,6 +6940,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7378,6 +7382,7 @@ self: super: { "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"; @@ -7429,6 +7434,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7736,6 +7742,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8116,6 +8123,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 92d20610294f..25dce0c9bac2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -1203,6 +1203,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1225,6 +1226,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3306,6 +3308,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6929,6 +6932,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7369,6 +7373,7 @@ self: super: { "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"; @@ -7420,6 +7425,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7727,6 +7733,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8107,6 +8114,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index 5c977fabe902..cf40820578bf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -1195,6 +1195,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1217,6 +1218,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3268,6 +3270,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6837,6 +6840,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7271,6 +7275,7 @@ self: super: { "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"; @@ -7322,6 +7327,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7626,6 +7632,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_5_1"; "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"; @@ -8003,6 +8010,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 164a7e61aede..fa0c0d11d677 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -1193,6 +1193,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1215,6 +1216,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3262,6 +3264,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6825,6 +6828,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7259,6 +7263,7 @@ self: super: { "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"; @@ -7310,6 +7315,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7612,6 +7618,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_1"; "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"; @@ -7989,6 +7996,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 6d8880464eef..d5da3af84764 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -1192,6 +1192,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1214,6 +1215,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3255,6 +3257,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6809,6 +6812,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7241,6 +7245,7 @@ self: super: { "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"; @@ -7292,6 +7297,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7594,6 +7600,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_1"; "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"; @@ -7971,6 +7978,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index b78fa98f9c8c..241a39d2336a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -1191,6 +1191,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1213,6 +1214,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3246,6 +3248,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6791,6 +6794,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7223,6 +7227,7 @@ self: super: { "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"; @@ -7274,6 +7279,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7576,6 +7582,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_1"; "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"; @@ -7953,6 +7960,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 9218d745d0db..ef2bf6e33f39 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -1189,6 +1189,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1211,6 +1212,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3235,6 +3237,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6774,6 +6777,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7203,6 +7207,7 @@ self: super: { "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"; @@ -7254,6 +7259,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7554,6 +7560,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7931,6 +7938,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 3b96edd4e4bf..685d2fc727f7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -1188,6 +1188,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1210,6 +1211,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3230,6 +3232,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6764,6 +6767,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7193,6 +7197,7 @@ self: super: { "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"; @@ -7244,6 +7249,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7543,6 +7549,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7919,6 +7926,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index 9a4465fa5b03..360502f94e05 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -1184,6 +1184,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1206,6 +1207,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3023,6 +3025,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_4"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3207,6 +3210,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6726,6 +6730,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7151,6 +7156,7 @@ self: super: { "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"; @@ -7202,6 +7208,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7499,6 +7506,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7873,6 +7881,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index bdda79f37c36..07ce115706f5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -1182,6 +1182,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1204,6 +1205,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3019,6 +3021,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_4"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3203,6 +3206,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6717,6 +6721,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7142,6 +7147,7 @@ self: super: { "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"; @@ -7193,6 +7199,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7489,6 +7496,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7861,6 +7869,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index 0b6e428f66e0..20849259fc8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -1181,6 +1181,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1203,6 +1204,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3010,6 +3012,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_4"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3194,6 +3197,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6696,6 +6700,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7121,6 +7126,7 @@ self: super: { "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"; @@ -7172,6 +7178,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7468,6 +7475,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7767,6 +7775,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_2_0"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7837,6 +7846,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 068b52835c60..1deba28dee99 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -1203,6 +1203,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1225,6 +1226,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3303,6 +3305,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6914,6 +6917,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7354,6 +7358,7 @@ self: super: { "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"; @@ -7405,6 +7410,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7711,6 +7717,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_1"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8091,6 +8098,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 13050ff44d99..f5adc6e7c6cb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -1201,6 +1201,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1223,6 +1224,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3291,6 +3293,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6895,6 +6898,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7333,6 +7337,7 @@ self: super: { "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"; @@ -7384,6 +7389,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7690,6 +7696,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8070,6 +8077,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 670826bc0752..8afa876a38b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -1199,6 +1199,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3283,6 +3285,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6880,6 +6883,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7318,6 +7322,7 @@ self: super: { "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"; @@ -7369,6 +7374,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7674,6 +7680,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8054,6 +8061,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index c3687c3f72c1..34130d760531 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -1199,6 +1199,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1221,6 +1222,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3280,6 +3282,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6875,6 +6878,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7313,6 +7317,7 @@ self: super: { "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"; @@ -7364,6 +7369,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7669,6 +7675,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8049,6 +8056,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index b0924b641df4..2f3c503dec56 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -1198,6 +1198,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1220,6 +1221,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3276,6 +3278,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6864,6 +6867,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7302,6 +7306,7 @@ self: super: { "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"; @@ -7353,6 +7358,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7658,6 +7664,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8037,6 +8044,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 706a542f5c7a..50dc400be49f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -1198,6 +1198,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1220,6 +1221,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3273,6 +3275,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6859,6 +6862,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7296,6 +7300,7 @@ self: super: { "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"; @@ -7347,6 +7352,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7652,6 +7658,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8030,6 +8037,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 1c5881c4979a..e390000036d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -1198,6 +1198,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1220,6 +1221,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3273,6 +3275,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6859,6 +6862,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7296,6 +7300,7 @@ self: super: { "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"; @@ -7347,6 +7352,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7652,6 +7658,7 @@ self: super: { "texmath" = doDistribute super."texmath_0_8_4_2"; "texrunner" = dontDistribute super."texrunner"; "text" = doDistribute super."text_1_2_2_0"; + "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"; @@ -8030,6 +8037,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 86c2e35e3979..42065921a0f4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -1197,6 +1197,7 @@ self: super: { "amazon-products" = dontDistribute super."amazon-products"; "amazonka" = doDistribute super."amazonka_1_3_7"; "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_3_7"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_3_7"; "amazonka-certificatemanager" = dontDistribute super."amazonka-certificatemanager"; "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_3_7"; @@ -1219,6 +1220,7 @@ self: super: { "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_3_7"; "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_3_7"; "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_3_7"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; "amazonka-dms" = dontDistribute super."amazonka-dms"; "amazonka-ds" = doDistribute super."amazonka-ds_1_3_7"; "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_3_7"; @@ -3270,6 +3272,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; @@ -6846,6 +6849,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -7280,6 +7284,7 @@ self: super: { "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"; @@ -7331,6 +7336,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7635,6 +7641,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_5"; "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"; @@ -8013,6 +8020,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index f72d1c38e0de..987e6b3c8980 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -265,6 +265,7 @@ self: super: { "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"; @@ -1159,6 +1160,78 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_4_1"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_4_1"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_4_1"; + "amazonka-certificatemanager" = doDistribute super."amazonka-certificatemanager_1_4_1"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_4_1"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_4_1"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_4_1"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_4_1"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_4_1"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_4_1"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_4_1"; + "amazonka-cloudwatch-events" = doDistribute super."amazonka-cloudwatch-events_1_4_1"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_4_1"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_4_1"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_4_1"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_4_1"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_4_1"; + "amazonka-cognito-idp" = doDistribute super."amazonka-cognito-idp_1_4_1"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_4_1"; + "amazonka-config" = doDistribute super."amazonka-config_1_4_1"; + "amazonka-core" = doDistribute super."amazonka-core_1_4_1"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_4_1"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_4_1"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_4_1"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "amazonka-dms" = doDistribute super."amazonka-dms_1_4_1"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_4_1"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_4_1"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_4_1"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_4_1"; + "amazonka-ecr" = doDistribute super."amazonka-ecr_1_4_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_4_1"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_4_1"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_4_1"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_4_1"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_4_1"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_4_1"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_4_1"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_4_1"; + "amazonka-gamelift" = doDistribute super."amazonka-gamelift_1_4_1"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_4_1"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_4_1"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_4_1"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_4_1"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_4_1"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_4_1"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_4_1"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_4_1"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_4_1"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_4_1"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_4_1"; + "amazonka-marketplace-metering" = doDistribute super."amazonka-marketplace-metering_1_4_1"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_4_1"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_4_1"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_4_1"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_4_1"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_4_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_4_1"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_4_1"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_4_1"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_4_1"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_4_1"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_4_1"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_4_1"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_4_1"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_4_1"; + "amazonka-support" = doDistribute super."amazonka-support_1_4_1"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_4_1"; + "amazonka-test" = doDistribute super."amazonka-test_1_4_1"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_4_1"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_4_1"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1689,6 +1762,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "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"; @@ -2086,6 +2160,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_4_1"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2848,6 +2923,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_4"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -3028,6 +3104,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; @@ -4552,6 +4629,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_7_1"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; @@ -5739,12 +5817,14 @@ self: super: { "piet" = dontDistribute super."piet"; "piki" = dontDistribute super."piki"; "pinboard" = dontDistribute super."pinboard"; + "pinch" = doDistribute super."pinch_0_2_0_1"; "pinchot" = doDistribute super."pinchot_0_18_0_0"; "pipe-enumerator" = dontDistribute super."pipe-enumerator"; "pipeclip" = dontDistribute super."pipeclip"; "pipes-async" = dontDistribute super."pipes-async"; "pipes-attoparsec-streaming" = dontDistribute super."pipes-attoparsec-streaming"; "pipes-bzip" = dontDistribute super."pipes-bzip"; + "pipes-cacophony" = doDistribute super."pipes-cacophony_0_2_1"; "pipes-cellular" = dontDistribute super."pipes-cellular"; "pipes-cellular-csv" = dontDistribute super."pipes-cellular-csv"; "pipes-cereal" = dontDistribute super."pipes-cereal"; @@ -6396,6 +6476,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6800,6 +6881,7 @@ self: super: { "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"; @@ -6848,6 +6930,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7131,6 +7214,7 @@ self: super: { "tex2txt" = dontDistribute super."tex2txt"; "texmath" = doDistribute super."texmath_0_8_6_2"; "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"; @@ -7416,6 +7500,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_2_0"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7481,6 +7566,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 317f7133e6b3..cb091fb151dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -264,6 +264,7 @@ self: super: { "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"; @@ -1155,6 +1156,78 @@ self: super: { "amazon-emailer" = dontDistribute super."amazon-emailer"; "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; "amazon-products" = dontDistribute super."amazon-products"; + "amazonka" = doDistribute super."amazonka_1_4_1"; + "amazonka-apigateway" = doDistribute super."amazonka-apigateway_1_4_1"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-autoscaling" = doDistribute super."amazonka-autoscaling_1_4_1"; + "amazonka-certificatemanager" = doDistribute super."amazonka-certificatemanager_1_4_1"; + "amazonka-cloudformation" = doDistribute super."amazonka-cloudformation_1_4_1"; + "amazonka-cloudfront" = doDistribute super."amazonka-cloudfront_1_4_1"; + "amazonka-cloudhsm" = doDistribute super."amazonka-cloudhsm_1_4_1"; + "amazonka-cloudsearch" = doDistribute super."amazonka-cloudsearch_1_4_1"; + "amazonka-cloudsearch-domains" = doDistribute super."amazonka-cloudsearch-domains_1_4_1"; + "amazonka-cloudtrail" = doDistribute super."amazonka-cloudtrail_1_4_1"; + "amazonka-cloudwatch" = doDistribute super."amazonka-cloudwatch_1_4_1"; + "amazonka-cloudwatch-events" = doDistribute super."amazonka-cloudwatch-events_1_4_1"; + "amazonka-cloudwatch-logs" = doDistribute super."amazonka-cloudwatch-logs_1_4_1"; + "amazonka-codecommit" = doDistribute super."amazonka-codecommit_1_4_1"; + "amazonka-codedeploy" = doDistribute super."amazonka-codedeploy_1_4_1"; + "amazonka-codepipeline" = doDistribute super."amazonka-codepipeline_1_4_1"; + "amazonka-cognito-identity" = doDistribute super."amazonka-cognito-identity_1_4_1"; + "amazonka-cognito-idp" = doDistribute super."amazonka-cognito-idp_1_4_1"; + "amazonka-cognito-sync" = doDistribute super."amazonka-cognito-sync_1_4_1"; + "amazonka-config" = doDistribute super."amazonka-config_1_4_1"; + "amazonka-core" = doDistribute super."amazonka-core_1_4_1"; + "amazonka-datapipeline" = doDistribute super."amazonka-datapipeline_1_4_1"; + "amazonka-devicefarm" = doDistribute super."amazonka-devicefarm_1_4_1"; + "amazonka-directconnect" = doDistribute super."amazonka-directconnect_1_4_1"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "amazonka-dms" = doDistribute super."amazonka-dms_1_4_1"; + "amazonka-ds" = doDistribute super."amazonka-ds_1_4_1"; + "amazonka-dynamodb" = doDistribute super."amazonka-dynamodb_1_4_1"; + "amazonka-dynamodb-streams" = doDistribute super."amazonka-dynamodb-streams_1_4_1"; + "amazonka-ec2" = doDistribute super."amazonka-ec2_1_4_1"; + "amazonka-ecr" = doDistribute super."amazonka-ecr_1_4_1"; + "amazonka-ecs" = doDistribute super."amazonka-ecs_1_4_1"; + "amazonka-efs" = doDistribute super."amazonka-efs_1_4_1"; + "amazonka-elasticache" = doDistribute super."amazonka-elasticache_1_4_1"; + "amazonka-elasticbeanstalk" = doDistribute super."amazonka-elasticbeanstalk_1_4_1"; + "amazonka-elasticsearch" = doDistribute super."amazonka-elasticsearch_1_4_1"; + "amazonka-elastictranscoder" = doDistribute super."amazonka-elastictranscoder_1_4_1"; + "amazonka-elb" = doDistribute super."amazonka-elb_1_4_1"; + "amazonka-emr" = doDistribute super."amazonka-emr_1_4_1"; + "amazonka-gamelift" = doDistribute super."amazonka-gamelift_1_4_1"; + "amazonka-glacier" = doDistribute super."amazonka-glacier_1_4_1"; + "amazonka-iam" = doDistribute super."amazonka-iam_1_4_1"; + "amazonka-importexport" = doDistribute super."amazonka-importexport_1_4_1"; + "amazonka-inspector" = doDistribute super."amazonka-inspector_1_4_1"; + "amazonka-iot" = doDistribute super."amazonka-iot_1_4_1"; + "amazonka-iot-dataplane" = doDistribute super."amazonka-iot-dataplane_1_4_1"; + "amazonka-kinesis" = doDistribute super."amazonka-kinesis_1_4_1"; + "amazonka-kinesis-firehose" = doDistribute super."amazonka-kinesis-firehose_1_4_1"; + "amazonka-kms" = doDistribute super."amazonka-kms_1_4_1"; + "amazonka-lambda" = doDistribute super."amazonka-lambda_1_4_1"; + "amazonka-marketplace-analytics" = doDistribute super."amazonka-marketplace-analytics_1_4_1"; + "amazonka-marketplace-metering" = doDistribute super."amazonka-marketplace-metering_1_4_1"; + "amazonka-ml" = doDistribute super."amazonka-ml_1_4_1"; + "amazonka-opsworks" = doDistribute super."amazonka-opsworks_1_4_1"; + "amazonka-rds" = doDistribute super."amazonka-rds_1_4_1"; + "amazonka-redshift" = doDistribute super."amazonka-redshift_1_4_1"; + "amazonka-route53" = doDistribute super."amazonka-route53_1_4_1"; + "amazonka-route53-domains" = doDistribute super."amazonka-route53-domains_1_4_1"; + "amazonka-s3" = doDistribute super."amazonka-s3_1_4_1"; + "amazonka-sdb" = doDistribute super."amazonka-sdb_1_4_1"; + "amazonka-ses" = doDistribute super."amazonka-ses_1_4_1"; + "amazonka-sns" = doDistribute super."amazonka-sns_1_4_1"; + "amazonka-sqs" = doDistribute super."amazonka-sqs_1_4_1"; + "amazonka-ssm" = doDistribute super."amazonka-ssm_1_4_1"; + "amazonka-storagegateway" = doDistribute super."amazonka-storagegateway_1_4_1"; + "amazonka-sts" = doDistribute super."amazonka-sts_1_4_1"; + "amazonka-support" = doDistribute super."amazonka-support_1_4_1"; + "amazonka-swf" = doDistribute super."amazonka-swf_1_4_1"; + "amazonka-test" = doDistribute super."amazonka-test_1_4_1"; + "amazonka-waf" = doDistribute super."amazonka-waf_1_4_1"; + "amazonka-workspaces" = doDistribute super."amazonka-workspaces_1_4_1"; "ampersand" = dontDistribute super."ampersand"; "amqp-conduit" = dontDistribute super."amqp-conduit"; "amrun" = dontDistribute super."amrun"; @@ -1678,6 +1751,7 @@ self: super: { "cabocha" = dontDistribute super."cabocha"; "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"; @@ -2072,6 +2146,7 @@ self: super: { "criterion-to-html" = dontDistribute super."criterion-to-html"; "crockford" = dontDistribute super."crockford"; "crocodile" = dontDistribute super."crocodile"; + "cron" = doDistribute super."cron_0_4_1"; "cron-compat" = dontDistribute super."cron-compat"; "cruncher-types" = dontDistribute super."cruncher-types"; "crunghc" = dontDistribute super."crunghc"; @@ -2820,6 +2895,7 @@ self: super: { "foo" = dontDistribute super."foo"; "for-free" = dontDistribute super."for-free"; "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "force-layout" = doDistribute super."force-layout_0_4_0_4"; "fordo" = dontDistribute super."fordo"; "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; "foreign-var" = dontDistribute super."foreign-var"; @@ -2999,6 +3075,7 @@ self: super: { "ghc-dup" = dontDistribute super."ghc-dup"; "ghc-events-analyze" = dontDistribute super."ghc-events-analyze"; "ghc-events-parallel" = dontDistribute super."ghc-events-parallel"; + "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; @@ -4507,6 +4584,7 @@ self: super: { "jump" = dontDistribute super."jump"; "jumpthefive" = dontDistribute super."jumpthefive"; "jvm-parser" = dontDistribute super."jvm-parser"; + "jwt" = doDistribute super."jwt_0_7_1"; "kademlia" = dontDistribute super."kademlia"; "kafka-client" = dontDistribute super."kafka-client"; "kan-extensions" = doDistribute super."kan-extensions_4_2_3"; @@ -5684,11 +5762,13 @@ self: super: { "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"; @@ -6327,6 +6407,7 @@ self: super: { "satchmo-minisat" = dontDistribute super."satchmo-minisat"; "satchmo-toysat" = dontDistribute super."satchmo-toysat"; "sbp" = dontDistribute super."sbp"; + "sbp2udp" = dontDistribute super."sbp2udp"; "sbvPlugin" = dontDistribute super."sbvPlugin"; "sc3-rdu" = dontDistribute super."sc3-rdu"; "scalable-server" = dontDistribute super."scalable-server"; @@ -6730,6 +6811,7 @@ self: super: { "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"; @@ -6777,6 +6859,7 @@ self: super: { "static-hash" = dontDistribute super."static-hash"; "static-resources" = dontDistribute super."static-resources"; "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics" = doDistribute super."statistics_0_13_2_3"; "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; "statistics-fusion" = dontDistribute super."statistics-fusion"; "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; @@ -7057,6 +7140,7 @@ self: super: { "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"; @@ -7340,6 +7424,7 @@ self: super: { "typehash" = dontDistribute super."typehash"; "typelevel" = dontDistribute super."typelevel"; "typelevel-tensor" = dontDistribute super."typelevel-tensor"; + "typelits-witnesses" = doDistribute super."typelits-witnesses_0_2_2_0"; "typeof" = dontDistribute super."typeof"; "typeparams" = dontDistribute super."typeparams"; "typesafe-endian" = dontDistribute super."typesafe-endian"; @@ -7405,6 +7490,7 @@ self: super: { "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"; @@ -7712,6 +7798,7 @@ self: super: { "xcffib" = dontDistribute super."xcffib"; "xchat-plugin" = dontDistribute super."xchat-plugin"; "xcp" = dontDistribute super."xcp"; + "xdcc" = doDistribute super."xdcc_1_0_3"; "xdg-userdirs" = dontDistribute super."xdg-userdirs"; "xdot" = dontDistribute super."xdot"; "xfconf" = dontDistribute super."xfconf"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 48e2bae6cbdc..87cca90b9555 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -847,6 +847,7 @@ self: { haskell-src-exts mtl process ]; executableToolDepends = [ emacs ]; + jailbreak = true; postInstall = '' files=($out/share/*-ghc-*/Agda-*/lib/prim/Agda/{Primitive.agda,Builtin/*.agda}) for f in "''${files[@]}" ; do @@ -5561,7 +5562,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "EdisonAPI" = callPackage + "EdisonAPI_1_3" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { pname = "EdisonAPI"; @@ -5571,6 +5572,19 @@ self: { homepage = "http://rwd.rdockins.name/edison/home/"; description = "A library of efficent, purely-functional data structures (API)"; license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "EdisonAPI" = callPackage + ({ mkDerivation, base, mtl }: + mkDerivation { + pname = "EdisonAPI"; + version = "1.3.1"; + sha256 = "95a3b8d01599520a50456219b5a2e9f7832bcddaaeb8e94ce777bd87a4a6b56e"; + libraryHaskellDepends = [ base mtl ]; + homepage = "http://rwd.rdockins.name/edison/home/"; + description = "A library of efficient, purely-functional data structures (API)"; + license = stdenv.lib.licenses.mit; }) {}; "EdisonCore" = callPackage @@ -18890,8 +18904,8 @@ self: { ({ mkDerivation, base, directory, mtl, unix }: mkDerivation { pname = "Shellac"; - version = "0.9.5.2"; - sha256 = "91f6c2fe2b9cfe01052e5eec496a1f5c0bd598777f266ccaaa1ac70f81a249cb"; + version = "0.9.9"; + sha256 = "e64d4e16b10a79bd4a149e695873382ebf733f8915ae6791b08c494bea48a700"; libraryHaskellDepends = [ base directory mtl unix ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; @@ -18900,12 +18914,12 @@ self: { }) {}; "Shellac-compatline" = callPackage - ({ mkDerivation, base, Shellac, Shellac-editline }: + ({ mkDerivation, base, Shellac, Shellac-readline }: mkDerivation { pname = "Shellac-compatline"; - version = "0.9.5.2"; - sha256 = "1181de04bc49ebcf5eadb886a7e779c2a49e7c4f7bbbd625d7748fb6f204958c"; - libraryHaskellDepends = [ base Shellac Shellac-editline ]; + version = "0.9.9"; + sha256 = "255b987acc54eccc6f6cb56ca6ee635fa2c0ab4e1ea1de1edd307a147553b162"; + libraryHaskellDepends = [ base Shellac Shellac-readline ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; license = stdenv.lib.licenses.bsd3; @@ -18916,8 +18930,8 @@ self: { ({ mkDerivation, base, editline, Shellac }: mkDerivation { pname = "Shellac-editline"; - version = "0.9.5.2"; - sha256 = "50259ad0000221a32c01e57c8c4e9883748f568f086d0aff462c25a82be1a493"; + version = "0.9.9"; + sha256 = "87e12d5ab838d6ff004f0172c1b868e0ead3ae8fbf122286e221b60e67694e9c"; libraryHaskellDepends = [ base editline Shellac ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; @@ -18942,8 +18956,8 @@ self: { ({ mkDerivation, base, readline, Shellac }: mkDerivation { pname = "Shellac-readline"; - version = "0.9.5.2"; - sha256 = "16c44fe21d5e986c996d396a22d3ef00c34b98acade4d909634d3d40eeff8808"; + version = "0.9.9"; + sha256 = "351fbc5e9a44abd2d3de95428a2b76c79974579c25cb76a8a7da7c1690eb8851"; libraryHaskellDepends = [ base readline Shellac ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; @@ -24258,6 +24272,8 @@ self: { pname = "aeson"; version = "0.11.2.0"; sha256 = "447a454b51b8d6ca9e3b59bc5918115a880a9320afeb9030000fe6c87fd2285e"; + revision = "1"; + editedCabalFile = "680affa9ec12880014875ce8281efb2407efde69c30e9a82654e973e5dc2c8a1"; libraryHaskellDepends = [ attoparsec base bytestring containers deepseq dlist fail ghc-prim hashable mtl scientific syb tagged template-haskell text time @@ -25110,8 +25126,8 @@ self: { }: mkDerivation { pname = "aeson-value-parser"; - version = "0.11.3"; - sha256 = "ac948393647b17a7fe4ccda376c9941000ad99a4c30e48ee4ae39a027cef1b20"; + version = "0.11.3.1"; + sha256 = "8d7555500b9b267eee568b04e7d1ffd58dbfd4033256347d4cc82f3a8f50a116"; libraryHaskellDepends = [ aeson base-prelude mtl-prelude scientific success text unordered-containers vector @@ -26618,7 +26634,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka" = callPackage + "amazonka_1_4_1" = callPackage ({ mkDerivation, amazonka-core, base, bytestring, conduit , conduit-extra, directory, exceptions, http-conduit, ini, mmorph , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text @@ -26634,6 +26650,29 @@ self: { retry text time transformers transformers-base transformers-compat ]; testHaskellDepends = [ base tasty tasty-hunit ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Comprehensive Amazon Web Services SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka" = callPackage + ({ mkDerivation, amazonka-core, base, bytestring, conduit + , conduit-extra, directory, exceptions, http-conduit, ini, mmorph + , monad-control, mtl, resourcet, retry, tasty, tasty-hunit, text + , time, transformers, transformers-base, transformers-compat + }: + mkDerivation { + pname = "amazonka"; + version = "1.4.2"; + sha256 = "eb0c30a910d75023273047d7b93bfd494e4052a70584a973e3c1286d4207871b"; + libraryHaskellDepends = [ + amazonka-core base bytestring conduit conduit-extra directory + exceptions http-conduit ini mmorph monad-control mtl resourcet + retry text time transformers transformers-base transformers-compat + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Comprehensive Amazon Web Services SDK"; license = "unknown"; @@ -26660,7 +26699,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-apigateway" = callPackage + "amazonka-apigateway_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26673,12 +26712,50 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon API Gateway SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-apigateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-apigateway"; + version = "1.4.2"; + sha256 = "d8fa6e3b4b3d9390dc483d50b14229186d25609cbdf30ab00ebb435f699217a8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon API Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-application-autoscaling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-application-autoscaling"; + version = "1.4.2"; + sha256 = "acf3b5b1badbd50e7f2cafe2fdf75d44ee3352f423367f434b4c1a12a3ed57ab"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Application Auto Scaling SDK"; + license = "unknown"; + }) {}; + "amazonka-autoscaling_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -26741,7 +26818,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-autoscaling" = callPackage + "amazonka-autoscaling_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26754,20 +26831,60 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Auto Scaling SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-autoscaling" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-autoscaling"; + version = "1.4.2"; + sha256 = "30757d23d00db9d8d7a05941618bd5841c57246c3a2c150a90848ce380623b65"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Auto Scaling SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-certificatemanager_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-certificatemanager"; + version = "1.4.1"; + sha256 = "a2396a029bfb4fa0f124f1247b4c96656b2f703ecabbf672bdb04ce1c18f36e9"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Certificate Manager SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-certificatemanager" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-certificatemanager"; - version = "1.4.1"; - sha256 = "a2396a029bfb4fa0f124f1247b4c96656b2f703ecabbf672bdb04ce1c18f36e9"; + version = "1.4.2"; + sha256 = "db405137d2bd9762bbf169937fa24e4f5c38f1c8c043c371e1446d80307069c2"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -26841,7 +26958,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudformation" = callPackage + "amazonka-cloudformation_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26854,6 +26971,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFormation SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudformation" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudformation"; + version = "1.4.2"; + sha256 = "54c2f084bdd769de4e0f74eeafa13b0b5cd97a3b5a101f3fb170a1032234f5d3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFormation SDK"; license = "unknown"; @@ -26922,7 +27059,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudfront" = callPackage + "amazonka-cloudfront_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -26935,6 +27072,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudFront SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudfront" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudfront"; + version = "1.4.2"; + sha256 = "42efad4df1c50ba39cc9c79de26ba41ece52d1d860fe98233cf6def58233848a"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudFront SDK"; license = "unknown"; @@ -27003,7 +27160,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudhsm" = callPackage + "amazonka-cloudhsm_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27016,6 +27173,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudHSM SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudhsm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudhsm"; + version = "1.4.2"; + sha256 = "3e1d4804c55b419ef7420567197677b0f1d5a05c1238a4e8f859c583f13a6ea2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudHSM SDK"; license = "unknown"; @@ -27084,7 +27261,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch" = callPackage + "amazonka-cloudsearch_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27097,6 +27274,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch"; + version = "1.4.2"; + sha256 = "aef16270286afb6d113dff2ede8e80902902c4a4704ae37712603c017add68d6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch SDK"; license = "unknown"; @@ -27165,7 +27362,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudsearch-domains" = callPackage + "amazonka-cloudsearch-domains_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27178,6 +27375,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudSearch Domain SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudsearch-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudsearch-domains"; + version = "1.4.2"; + sha256 = "db75ec33c5ea0f2b1085c2c437b0875e075cfd640d292001c9a912160f53ae20"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudSearch Domain SDK"; license = "unknown"; @@ -27246,7 +27463,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudtrail" = callPackage + "amazonka-cloudtrail_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27259,6 +27476,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudTrail SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudtrail" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudtrail"; + version = "1.4.2"; + sha256 = "7155b757250bc8ef03ba53608023ffe1a32102bb12a37d5cdf538b5119f606f4"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudTrail SDK"; license = "unknown"; @@ -27327,7 +27564,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch" = callPackage + "amazonka-cloudwatch_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27340,20 +27577,60 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-cloudwatch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch"; + version = "1.4.2"; + sha256 = "c6e24f95f810436169ff34dc410430cc6c49c3f1d3cb3372dda41c7f1de11ffc"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch-events_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-events"; + version = "1.4.1"; + sha256 = "b49b594354bdc1dcac1328c0d49914828be24cf2f0b6e8d8046a005baa111bc8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Events SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cloudwatch-events" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cloudwatch-events"; - version = "1.4.1"; - sha256 = "b49b594354bdc1dcac1328c0d49914828be24cf2f0b6e8d8046a005baa111bc8"; + version = "1.4.2"; + sha256 = "598b66084313ca7f19a27339ea775fbfce7f75a9e11052501bf060cbcec286f1"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -27427,7 +27704,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cloudwatch-logs" = callPackage + "amazonka-cloudwatch-logs_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27440,6 +27717,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CloudWatch Logs SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cloudwatch-logs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cloudwatch-logs"; + version = "1.4.2"; + sha256 = "03b004949c2c96879afcd97ef8f4b4b06fba8d0a958c8974ad8af5c73807b871"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CloudWatch Logs SDK"; license = "unknown"; @@ -27466,7 +27763,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-codecommit" = callPackage + "amazonka-codecommit_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27479,6 +27776,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeCommit SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-codecommit" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codecommit"; + version = "1.4.2"; + sha256 = "9093faccb6783df40a9e9be784d8c620540408b3755e16911735ab5c56406239"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeCommit SDK"; license = "unknown"; @@ -27547,7 +27864,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-codedeploy" = callPackage + "amazonka-codedeploy_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27560,6 +27877,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodeDeploy SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-codedeploy" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codedeploy"; + version = "1.4.2"; + sha256 = "d7b8fa5a4165c91fbb9ce86018c1a34db80817f2178e35353f7816cdf0c365fb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodeDeploy SDK"; license = "unknown"; @@ -27586,7 +27923,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-codepipeline" = callPackage + "amazonka-codepipeline_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27599,6 +27936,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon CodePipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-codepipeline" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-codepipeline"; + version = "1.4.2"; + sha256 = "1e57e41a0c763e97e0cc763bc666b90dc89ffb98e5ebc6ac93273595367d4fc0"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon CodePipeline SDK"; license = "unknown"; @@ -27667,7 +28024,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-identity" = callPackage + "amazonka-cognito-identity_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27680,20 +28037,60 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Identity SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-cognito-identity" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-identity"; + version = "1.4.2"; + sha256 = "1d2b757d3bee07989705b36488e93d0e704643f8f412c60b755de6c70a327d84"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-idp_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-idp"; + version = "1.4.1"; + sha256 = "c70c8664346e2c4599ad31e01ce7157f5bbc17fbff76c588d5571cf244245b02"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Identity Provider SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-cognito-idp" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-cognito-idp"; - version = "1.4.1"; - sha256 = "c70c8664346e2c4599ad31e01ce7157f5bbc17fbff76c588d5571cf244245b02"; + version = "1.4.2"; + sha256 = "16d568615fc6ac67f77ac3e5f1ff8a343f9779274da9ee730b897f3ebf291407"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -27767,7 +28164,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-cognito-sync" = callPackage + "amazonka-cognito-sync_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27780,6 +28177,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Cognito Sync SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-cognito-sync" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-cognito-sync"; + version = "1.4.2"; + sha256 = "39154cf8c1428eaeb16ee66af75bed6554d7c8b433139f2623cf875ee8831fc8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Cognito Sync SDK"; license = "unknown"; @@ -27848,7 +28265,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-config" = callPackage + "amazonka-config_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -27861,6 +28278,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Config SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-config" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-config"; + version = "1.4.2"; + sha256 = "444fe06bb27abe9c72b59a519ded41050f2635ef6a6ba59a94844b643f3cd771"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Config SDK"; license = "unknown"; @@ -27998,7 +28435,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-core" = callPackage + "amazonka-core_1_4_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, cryptonite, deepseq , exceptions, hashable, http-conduit, http-types, lens, memory, mtl @@ -28030,6 +28467,37 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-core" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, cryptonite, deepseq + , exceptions, hashable, http-conduit, http-types, lens, memory, mtl + , QuickCheck, quickcheck-unicode, resourcet, scientific, semigroups + , tagged, tasty, tasty-hunit, tasty-quickcheck, template-haskell + , text, time, transformers, transformers-compat + , unordered-containers, xml-conduit, xml-types + }: + mkDerivation { + pname = "amazonka-core"; + version = "1.4.2"; + sha256 = "57d9e816a3b3f378899a6bf32216dcab077ebb831828c57c6ad901308d5ee398"; + libraryHaskellDepends = [ + aeson attoparsec base bifunctors bytestring case-insensitive + conduit conduit-extra cryptonite deepseq exceptions hashable + http-conduit http-types lens memory mtl resourcet scientific + semigroups tagged text time transformers transformers-compat + unordered-containers xml-conduit xml-types + ]; + testHaskellDepends = [ + aeson base bytestring case-insensitive http-types QuickCheck + quickcheck-unicode tasty tasty-hunit tasty-quickcheck + template-haskell text time + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Core data types and functionality for Amazonka libraries"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-datapipeline_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -28092,7 +28560,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-datapipeline" = callPackage + "amazonka-datapipeline_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28105,6 +28573,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Data Pipeline SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-datapipeline" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-datapipeline"; + version = "1.4.2"; + sha256 = "d53ad5996b6dd6784a35e845abe1c1816fff9e288d74ac6e2129d46c132667a8"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Data Pipeline SDK"; license = "unknown"; @@ -28131,7 +28619,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-devicefarm" = callPackage + "amazonka-devicefarm_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28144,6 +28632,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Device Farm SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-devicefarm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-devicefarm"; + version = "1.4.2"; + sha256 = "1a76a7f2cec667e1efae3f35c68e0f0cf380fa9b67a1b9652fc04131e4717900"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Device Farm SDK"; license = "unknown"; @@ -28212,7 +28720,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-directconnect" = callPackage + "amazonka-directconnect_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28225,20 +28733,78 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Direct Connect SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-directconnect" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-directconnect"; + version = "1.4.2"; + sha256 = "532bb673ea5508c36fa48290151f15d4dfd1dc476b49448ebd8999ddbcfb2f96"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Direct Connect SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-discovery" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-discovery"; + version = "1.4.2"; + sha256 = "89b5279777aaf404c6801efe126402ca8844f7329773c685ebdf3b9df0ed99ad"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Application Discovery Service SDK"; + license = "unknown"; + }) {}; + + "amazonka-dms_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dms"; + version = "1.4.1"; + sha256 = "0a2a5e7f0677dbf639a48b915363b6af1239d1edd4f8af487bb1c3d13aae5518"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Database Migration Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-dms" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-dms"; - version = "1.4.1"; - sha256 = "0a2a5e7f0677dbf639a48b915363b6af1239d1edd4f8af487bb1c3d13aae5518"; + version = "1.4.2"; + sha256 = "2405db8401afe5abc51fb119df8fc7d5f75c29de7bd9d939585d9b1edb48c8a5"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -28270,7 +28836,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ds" = callPackage + "amazonka-ds_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28283,6 +28849,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Directory Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ds" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ds"; + version = "1.4.2"; + sha256 = "83f6058521103bd075459668cc1b0a35358f33106b21d8e1c5d4a309f5af2334"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Directory Service SDK"; license = "unknown"; @@ -28351,7 +28937,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-dynamodb" = callPackage + "amazonka-dynamodb_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28364,6 +28950,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-dynamodb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb"; + version = "1.4.2"; + sha256 = "9175200312b8fce2ce3a7cb054a2c8e422b8d68783d088d1e3f1fd5efef0896c"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB SDK"; license = "unknown"; @@ -28390,7 +28996,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-dynamodb-streams" = callPackage + "amazonka-dynamodb-streams_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28403,6 +29009,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon DynamoDB Streams SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-dynamodb-streams" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-dynamodb-streams"; + version = "1.4.2"; + sha256 = "0d8ba3bb2fd6549d7457cb902571246409f77dbeb7ac6560cab1849b4e871339"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon DynamoDB Streams SDK"; license = "unknown"; @@ -28486,7 +29112,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ec2" = callPackage + "amazonka-ec2_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28499,6 +29125,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; @@ -28506,14 +29133,53 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-ec2" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ec2"; + version = "1.4.2"; + sha256 = "9c70f5c5adef3113dfc8b90a0e3845f824d0a520cc24522cd5bc3980534ac24f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Compute Cloud SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ecr_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecr"; + version = "1.4.1"; + sha256 = "563e6cab29b97554b2b6b32d19a388f336e508c556232dd61576cfa2d4856067"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Registry SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-ecr" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-ecr"; - version = "1.4.1"; - sha256 = "563e6cab29b97554b2b6b32d19a388f336e508c556232dd61576cfa2d4856067"; + version = "1.4.2"; + sha256 = "37a57b352576cc758cea52de7d3fcf3574b7f331ea24b910f0f1c583ed595a53"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -28587,7 +29253,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ecs" = callPackage + "amazonka-ecs_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28600,6 +29266,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon EC2 Container Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ecs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ecs"; + version = "1.4.2"; + sha256 = "02404bd96fd703d718c38cc9ef1ad84cfa8d49bde1b7a6c5ada18855f33b0b4b"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon EC2 Container Service SDK"; license = "unknown"; @@ -28626,7 +29312,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-efs" = callPackage + "amazonka-efs_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28639,6 +29325,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic File System SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-efs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-efs"; + version = "1.4.2"; + sha256 = "a9156c36ffe7ba536e7f82ea381c5235dd556a761e76f62b26cbe73d49cf42a3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic File System SDK"; license = "unknown"; @@ -28707,7 +29413,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticache" = callPackage + "amazonka-elasticache_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28720,6 +29426,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon ElastiCache SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticache" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticache"; + version = "1.4.2"; + sha256 = "8d252db1a6f1834425af007984f027b791ea8e960cf5b596a3b0564ac9d55c36"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon ElastiCache SDK"; license = "unknown"; @@ -28788,7 +29514,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticbeanstalk" = callPackage + "amazonka-elasticbeanstalk_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28801,6 +29527,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Beanstalk SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticbeanstalk" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticbeanstalk"; + version = "1.4.2"; + sha256 = "93c59e576181f9357e725759356bf6f0939728ab1ba4711f885ce6028d760b72"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Beanstalk SDK"; license = "unknown"; @@ -28827,7 +29573,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elasticsearch" = callPackage + "amazonka-elasticsearch_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28840,6 +29586,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elasticsearch Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elasticsearch" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elasticsearch"; + version = "1.4.2"; + sha256 = "16b35388f0ab7e268698294697e1dcf8a12cd4c0813254694790968da2b2fc3d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elasticsearch Service SDK"; license = "unknown"; @@ -28908,7 +29674,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elastictranscoder" = callPackage + "amazonka-elastictranscoder_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -28921,6 +29687,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Transcoder SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elastictranscoder" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elastictranscoder"; + version = "1.4.2"; + sha256 = "a43c97879fc04e2ed60a99361a713ebf966a70eb186f271609f98eee6948ed33"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Transcoder SDK"; license = "unknown"; @@ -28989,7 +29775,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-elb" = callPackage + "amazonka-elb_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29002,6 +29788,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic Load Balancing SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-elb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-elb"; + version = "1.4.2"; + sha256 = "a093fd31c617253d2532a262d72d422e277a604d038ebb773aefe5e38a0b8b8f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Load Balancing SDK"; license = "unknown"; @@ -29070,7 +29876,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-emr" = callPackage + "amazonka-emr_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29083,20 +29889,60 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic MapReduce SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-emr" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-emr"; + version = "1.4.2"; + sha256 = "067fc0d7d58a0975ca3a16945e6093c3f8f2833ee3523aff96ad6336932d9141"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Elastic MapReduce SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-gamelift_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-gamelift"; + version = "1.4.1"; + sha256 = "c52ab8bd55f8b9f91a0d4acb10d7829eba1656bb9b54cead672654f9c441dfa2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon GameLift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-gamelift" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-gamelift"; - version = "1.4.1"; - sha256 = "c52ab8bd55f8b9f91a0d4acb10d7829eba1656bb9b54cead672654f9c441dfa2"; + version = "1.4.2"; + sha256 = "c2c74b3d873360a4e1cd7b577be040c7e87644ceb9a3fd5887792dd01a4e484b"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -29170,7 +30016,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-glacier" = callPackage + "amazonka-glacier_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29183,6 +30029,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Glacier SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-glacier" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-glacier"; + version = "1.4.2"; + sha256 = "770ce9b66e532553258fa4bdc726113d64a2d4dbaaa5b559f0c36b681abc0bca"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Glacier SDK"; license = "unknown"; @@ -29251,7 +30117,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-iam" = callPackage + "amazonka-iam_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29264,6 +30130,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Identity and Access Management SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iam" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iam"; + version = "1.4.2"; + sha256 = "2f4377c9ca3aaf863edda3ee3e9fc9cb5487bdceba09283e54384d2108b099f1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Identity and Access Management SDK"; license = "unknown"; @@ -29332,7 +30218,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-importexport" = callPackage + "amazonka-importexport_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29345,6 +30231,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Import/Export SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-importexport" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-importexport"; + version = "1.4.2"; + sha256 = "f11b6bde26df99dfa96dcd9d1727c90edeeef7bde09a5c9dc93209d0911dc928"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Import/Export SDK"; license = "unknown"; @@ -29371,7 +30277,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-inspector" = callPackage + "amazonka-inspector_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29384,6 +30290,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Inspector SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-inspector" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-inspector"; + version = "1.4.2"; + sha256 = "ff316510a41a37ab5a7fa88b944950a1067074f1a7cfa1ab4d82f7b6097a5915"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Inspector SDK"; license = "unknown"; @@ -29410,7 +30336,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-iot" = callPackage + "amazonka-iot_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29423,6 +30349,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iot" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot"; + version = "1.4.2"; + sha256 = "eb5448c5c7a2add71a3759cb4aa9b26163632522c6026ce7e5acf2ab944ccd19"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT SDK"; license = "unknown"; @@ -29449,7 +30395,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-iot-dataplane" = callPackage + "amazonka-iot-dataplane_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29462,6 +30408,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon IoT Data Plane SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-iot-dataplane" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-iot-dataplane"; + version = "1.4.2"; + sha256 = "3249498aa750f7c7e5aaa329daf4a4bc44b6da6a0c351e3488c60f7ae9b3b65d"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon IoT Data Plane SDK"; license = "unknown"; @@ -29530,7 +30496,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kinesis" = callPackage + "amazonka-kinesis_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29543,6 +30509,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kinesis" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis"; + version = "1.4.2"; + sha256 = "77458b171eda9bab9cce2ecd5defc6c23396b3f9add20748275c5b2b7614a35f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis SDK"; license = "unknown"; @@ -29569,7 +30555,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kinesis-firehose" = callPackage + "amazonka-kinesis-firehose_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29582,6 +30568,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Kinesis Firehose SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kinesis-firehose" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kinesis-firehose"; + version = "1.4.2"; + sha256 = "5fc791cbdd8404825043d6e8befe9a62b87dfcfdd44b3df320a09cb1a48a36d5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Kinesis Firehose SDK"; license = "unknown"; @@ -29650,7 +30656,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-kms" = callPackage + "amazonka-kms_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29663,6 +30669,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Key Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-kms" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-kms"; + version = "1.4.2"; + sha256 = "489b243aeb17ebb08341fe775d9550f4f1f72210d16409f29877c9f7629f75b2"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Key Management Service SDK"; license = "unknown"; @@ -29731,7 +30757,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-lambda" = callPackage + "amazonka-lambda_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29744,6 +30770,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Lambda SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-lambda" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-lambda"; + version = "1.4.2"; + sha256 = "ac22fd5d4fda707111a3c92adaa2d9ad0126e278b4b52ce59d81871f76475ade"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Lambda SDK"; license = "unknown"; @@ -29770,7 +30816,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-marketplace-analytics" = callPackage + "amazonka-marketplace-analytics_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29783,20 +30829,60 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Marketplace Commerce Analytics SDK"; license = "unknown"; hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-marketplace-analytics" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-analytics"; + version = "1.4.2"; + sha256 = "e528d281b1976ac413ac37486218bede39a9443d2fde30dce0df1b444a439773"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Commerce Analytics SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-marketplace-metering_1_4_1" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-marketplace-metering"; + version = "1.4.1"; + sha256 = "dc1c12ff3740fb72b0f6238bd4e736754b312078e6edbabcfb5e2e22819d616e"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Marketplace Metering SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-marketplace-metering" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: mkDerivation { pname = "amazonka-marketplace-metering"; - version = "1.4.1"; - sha256 = "dc1c12ff3740fb72b0f6238bd4e736754b312078e6edbabcfb5e2e22819d616e"; + version = "1.4.2"; + sha256 = "7e15cf9907ebb7e7170dacdcf239175d84451fd5a059a42dc61a56831a3264ba"; libraryHaskellDepends = [ amazonka-core base ]; testHaskellDepends = [ amazonka-core amazonka-test base bytestring tasty tasty-hunit text @@ -29842,7 +30928,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ml" = callPackage + "amazonka-ml_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29855,6 +30941,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Machine Learning SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ml" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ml"; + version = "1.4.2"; + sha256 = "cad874137a8bf6ebdab1c8bee04d5ede309739ea3d7c28204b0485e5fe43f8e3"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Machine Learning SDK"; license = "unknown"; @@ -29923,7 +31029,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-opsworks" = callPackage + "amazonka-opsworks_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -29936,6 +31042,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon OpsWorks SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-opsworks" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-opsworks"; + version = "1.4.2"; + sha256 = "420c9ef0edc7be017fd2af2da8f10a4d7c18fffeb73a4049899db5583bbeefde"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon OpsWorks SDK"; license = "unknown"; @@ -30004,7 +31130,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-rds" = callPackage + "amazonka-rds_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30017,6 +31143,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Relational Database Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-rds" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-rds"; + version = "1.4.2"; + sha256 = "7c371ceb5ccce4c1c6737902aa7f4a504676e860456b00b31f2ea62b1419f247"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Relational Database Service SDK"; license = "unknown"; @@ -30085,7 +31231,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-redshift" = callPackage + "amazonka-redshift_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30098,6 +31244,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Redshift SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-redshift" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-redshift"; + version = "1.4.2"; + sha256 = "e8744860dfbefefa15d2b27e3d9c1687bb4dba5ca6cb064ca29c8d092024dacb"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Redshift SDK"; license = "unknown"; @@ -30180,7 +31346,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53" = callPackage + "amazonka-route53_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30193,6 +31359,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53"; + version = "1.4.2"; + sha256 = "0cea0e80154702f722660373ddfc1ed8464568a7a15ef2de4cf3ad879558296f"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 SDK"; license = "unknown"; @@ -30261,7 +31447,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-route53-domains" = callPackage + "amazonka-route53-domains_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30274,6 +31460,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Route 53 Domains SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-route53-domains" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-route53-domains"; + version = "1.4.2"; + sha256 = "26f16561e2be80f71e6c41fb23d2ea58acb236847d4bfea7573ef16c424fbc49"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Route 53 Domains SDK"; license = "unknown"; @@ -30343,7 +31549,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-s3" = callPackage + "amazonka-s3_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , lens, tasty, tasty-hunit, text, time, unordered-containers }: @@ -30356,6 +31562,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; @@ -30363,6 +31570,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-s3" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , lens, tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-s3"; + version = "1.4.2"; + sha256 = "089414ead6d602649043a8253f1fbe725b60e49e9cc92f7986beee6d2e649242"; + libraryHaskellDepends = [ amazonka-core base lens text ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Storage Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-sdb_0_3_3" = callPackage ({ mkDerivation, amazonka-core, base }: mkDerivation { @@ -30425,7 +31651,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sdb" = callPackage + "amazonka-sdb_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30438,6 +31664,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon SimpleDB SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sdb" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sdb"; + version = "1.4.2"; + sha256 = "e2380905acebe5fdad2b5bc0b1ec7d3014c19139993bf7276a154cfed64cb6e1"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon SimpleDB SDK"; license = "unknown"; @@ -30506,7 +31752,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ses" = callPackage + "amazonka-ses_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30519,6 +31765,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Email Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ses" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ses"; + version = "1.4.2"; + sha256 = "800c4068610cfc27a123a88c1b31ab39e5e8833957af17d1adaf25309b610246"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Email Service SDK"; license = "unknown"; @@ -30587,7 +31853,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sns" = callPackage + "amazonka-sns_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30600,6 +31866,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Notification Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sns" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sns"; + version = "1.4.2"; + sha256 = "ea21560b336ea8239d070c9a059f4120732c6da16605deb522f3d7cc2fb2a256"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Notification Service SDK"; license = "unknown"; @@ -30668,7 +31954,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sqs" = callPackage + "amazonka-sqs_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30681,6 +31967,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Queue Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sqs" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sqs"; + version = "1.4.2"; + sha256 = "527cca6a20e8a35c5565026f94c29aa4c92241ae3404a6aab07379bd8956d708"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Queue Service SDK"; license = "unknown"; @@ -30749,7 +32055,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-ssm" = callPackage + "amazonka-ssm_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30762,6 +32068,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Systems Management Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-ssm" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-ssm"; + version = "1.4.2"; + sha256 = "6d7243bb0cbfd832d23b96745261bd12c6c61b4453b8669671f80ebd1b73cf81"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Systems Management Service SDK"; license = "unknown"; @@ -30830,7 +32156,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-storagegateway" = callPackage + "amazonka-storagegateway_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30843,6 +32169,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Storage Gateway SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-storagegateway" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-storagegateway"; + version = "1.4.2"; + sha256 = "54253d61ddc8022e3cc50e54087bee5c40716295bb82f8d5a3d65daa2a233b17"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Storage Gateway SDK"; license = "unknown"; @@ -30911,7 +32257,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-sts" = callPackage + "amazonka-sts_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -30924,6 +32270,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Security Token Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-sts" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-sts"; + version = "1.4.2"; + sha256 = "dda90c8febaa161319edcfb87d8fef2bb060549f380e9fda9948558c5f5a86c6"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Security Token Service SDK"; license = "unknown"; @@ -30992,7 +32358,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-support" = callPackage + "amazonka-support_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -31005,6 +32371,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Support SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-support" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-support"; + version = "1.4.2"; + sha256 = "479fc568727886efe524679fbb26da9a55617a3af8aed0a921c4364860742c54"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Support SDK"; license = "unknown"; @@ -31074,7 +32460,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-swf" = callPackage + "amazonka-swf_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -31087,6 +32473,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; @@ -31094,6 +32481,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "amazonka-swf" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-swf"; + version = "1.4.2"; + sha256 = "e75a79491f6d7c97884f1673a5a1983780d75e8b087042048e563ee84d752640"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon Simple Workflow Service SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "amazonka-test_1_3_7" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client @@ -31118,7 +32524,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-test" = callPackage + "amazonka-test_1_4_1" = callPackage ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring , case-insensitive, conduit, conduit-extra, groom, http-client , http-types, process, resourcet, tasty, tasty-hunit @@ -31135,6 +32541,30 @@ self: { resourcet tasty tasty-hunit template-haskell temporary text time unordered-containers yaml ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Common functionality for Amazonka library test-suites"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-test" = callPackage + ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring + , case-insensitive, conduit, conduit-extra, groom, http-client + , http-types, process, resourcet, tasty, tasty-hunit + , template-haskell, temporary, text, time, unordered-containers + , yaml + }: + mkDerivation { + pname = "amazonka-test"; + version = "1.4.2"; + sha256 = "c886b57e203f9f723d8d67fb7e0895422d8a0340849c22704bcf38cd04d9b9fa"; + libraryHaskellDepends = [ + aeson amazonka-core base bifunctors bytestring case-insensitive + conduit conduit-extra groom http-client http-types process + resourcet tasty tasty-hunit template-haskell temporary text time + unordered-containers yaml + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Common functionality for Amazonka library test-suites"; license = "unknown"; @@ -31161,7 +32591,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-waf" = callPackage + "amazonka-waf_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -31174,6 +32604,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WAF SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-waf" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-waf"; + version = "1.4.2"; + sha256 = "4062a317648f66539196761e4145ed825464b0dd6ae567ddf0e6ae6870d462c5"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WAF SDK"; license = "unknown"; @@ -31214,7 +32664,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "amazonka-workspaces" = callPackage + "amazonka-workspaces_1_4_1" = callPackage ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring , tasty, tasty-hunit, text, time, unordered-containers }: @@ -31227,6 +32677,26 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + jailbreak = true; + homepage = "https://github.com/brendanhay/amazonka"; + description = "Amazon WorkSpaces SDK"; + license = "unknown"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "amazonka-workspaces" = callPackage + ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring + , tasty, tasty-hunit, text, time, unordered-containers + }: + mkDerivation { + pname = "amazonka-workspaces"; + version = "1.4.2"; + sha256 = "8cce7e0407fb0b0ec7dcea7f548a8580d23bc1bcdc4043935b2932bd34394c85"; + libraryHaskellDepends = [ amazonka-core base ]; + testHaskellDepends = [ + amazonka-core amazonka-test base bytestring tasty tasty-hunit text + time unordered-containers + ]; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon WorkSpaces SDK"; license = "unknown"; @@ -48122,7 +49592,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cacophony" = callPackage + "cacophony_0_6_0" = callPackage ({ mkDerivation, async, base, bytestring, cryptonite, deepseq, free , hlint, lens, memory, mtl, QuickCheck, tasty, tasty-quickcheck }: @@ -48142,9 +49612,10 @@ self: { homepage = "https://github.com/centromere/cacophony"; description = "A library implementing the Noise protocol"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cacophony_0_7_0" = callPackage + "cacophony" = callPackage ({ mkDerivation, aeson, async, base, base16-bytestring, bytestring , cryptonite, deepseq, directory, free, hlint, lens, memory , monad-coroutine, mtl, text, transformers @@ -48163,10 +49634,10 @@ self: { aeson async base base16-bytestring bytestring directory free hlint lens mtl text ]; + doCheck = false; homepage = "https://github.com/centromere/cacophony"; description = "A library implementing the Noise protocol"; license = stdenv.lib.licenses.publicDomain; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "caf" = callPackage @@ -48292,24 +49763,6 @@ self: { }) {inherit (pkgs) cairo;}; "cairo" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, gtk2hs-buildtools - , mtl, text, utf8-string - }: - mkDerivation { - pname = "cairo"; - version = "0.13.2.0"; - sha256 = "4d08ffd7979bac6c39a8143dad353f966d268719817c0230c9138146d977c104"; - libraryHaskellDepends = [ - array base bytestring mtl text utf8-string - ]; - libraryPkgconfigDepends = [ cairo ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Cairo library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) cairo;}; - - "cairo_0_13_3_0" = callPackage ({ mkDerivation, array, base, bytestring, cairo, mtl, text , utf8-string }: @@ -48324,7 +49777,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Cairo library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) cairo;}; "cairo-appbase" = callPackage @@ -62164,7 +63616,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cron" = callPackage + "cron_0_4_1" = callPackage ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit , tasty-quickcheck, text, time, transformers-compat @@ -62183,9 +63635,10 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "cron_0_4_1_1" = callPackage + "cron" = callPackage ({ mkDerivation, attoparsec, base, derive, mtl, mtl-compat , old-locale, quickcheck-instances, semigroups, tasty, tasty-hunit , tasty-quickcheck, text, time, transformers-compat @@ -62204,7 +63657,6 @@ self: { homepage = "http://github.com/michaelxavier/cron"; description = "Cron datatypes and Attoparsec parser"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "cron-compat" = callPackage @@ -67162,12 +68614,12 @@ self: { }: mkDerivation { pname = "dead-code-detection"; - version = "0.7"; - sha256 = "9773ee8333d81797823483946eebf556bf8f7f542aafed33af43402c5266ab11"; + version = "0.8"; + sha256 = "8eadc01d4df3100697b3b4f93d8253c417f851a320c2bfc2ea6362f7937b1c03"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ - base containers getopt-generics ghc ghc-paths gitrev Glob + base containers directory getopt-generics ghc ghc-paths gitrev Glob graph-wrapper silently string-conversions uniplate ]; testHaskellDepends = [ @@ -79188,6 +80640,7 @@ self: { array base containers lens mtl parsec ]; testHaskellDepends = [ base directory doctest filepath ]; + doCheck = false; homepage = "http://github.com/ekmett/ersatz"; description = "A monad for expressing SAT or QSAT problems using observable sharing"; license = stdenv.lib.licenses.bsd3; @@ -86685,7 +88138,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "force-layout" = callPackage + "force-layout_0_4_0_4" = callPackage ({ mkDerivation, base, containers, data-default-class, lens, linear }: mkDerivation { @@ -86697,6 +88150,21 @@ self: { ]; description = "Simple force-directed layout"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "force-layout" = callPackage + ({ mkDerivation, base, containers, data-default-class, lens, linear + }: + mkDerivation { + pname = "force-layout"; + version = "0.4.0.5"; + sha256 = "eac5d4804abe042448fe29cf42d56d782b4853a8c686cd01f0c7b499b2bf65cb"; + libraryHaskellDepends = [ + base containers data-default-class lens linear + ]; + description = "Simple force-directed layout"; + license = stdenv.lib.licenses.bsd3; }) {}; "fordo" = callPackage @@ -90761,7 +92229,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "ghc-exactprint" = callPackage + "ghc-exactprint_0_5_0_1" = callPackage ({ mkDerivation, base, containers, directory, filemanip, filepath , free, ghc, ghc-paths, HUnit, mtl, silently, syb }: @@ -90781,6 +92249,31 @@ self: { jailbreak = true; description = "ExactPrint for GHC"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-exactprint" = callPackage + ({ mkDerivation, base, bytestring, containers, directory, filemanip + , filepath, free, ghc, ghc-boot, ghc-paths, HUnit, mtl, silently + , syb + }: + mkDerivation { + pname = "ghc-exactprint"; + version = "0.5.1.0"; + sha256 = "e9e768a17ef826907bddeb1709a8709f9ce4414e6df80c789a28b583852e656f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring containers directory filepath free ghc ghc-boot + ghc-paths mtl syb + ]; + testHaskellDepends = [ + base containers directory filemanip filepath ghc ghc-boot ghc-paths + HUnit mtl silently syb + ]; + doHaddock = false; + description = "ExactPrint for GHC"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -92889,24 +94382,6 @@ self: { }) {system-glib = pkgs.glib;}; "gio" = callPackage - ({ mkDerivation, array, base, bytestring, containers, glib - , gtk2hs-buildtools, mtl, system-glib - }: - mkDerivation { - pname = "gio"; - version = "0.13.2.0"; - sha256 = "e5049fabb2cd1da78bae2b6d9968bfe50491ecb0f7e4a75855499aeeb264fd72"; - libraryHaskellDepends = [ - array base bytestring containers glib mtl - ]; - libraryPkgconfigDepends = [ system-glib ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to GIO"; - license = stdenv.lib.licenses.lgpl21; - }) {system-glib = pkgs.glib;}; - - "gio_0_13_3_0" = callPackage ({ mkDerivation, array, base, bytestring, containers, glib, mtl , system-glib }: @@ -92921,7 +94396,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to GIO"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {system-glib = pkgs.glib;}; "gipeda_0_1_0_2" = callPackage @@ -94926,24 +96400,6 @@ self: { }) {inherit (pkgs) glib;}; "glib" = callPackage - ({ mkDerivation, base, bytestring, containers, glib - , gtk2hs-buildtools, text, utf8-string - }: - mkDerivation { - pname = "glib"; - version = "0.13.3.0"; - sha256 = "8a2b765d92f8f6c138888ef1b76da25758f72e493c677355438015dc25451029"; - libraryHaskellDepends = [ - base bytestring containers text utf8-string - ]; - libraryPkgconfigDepends = [ glib ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the GLIB library for Gtk2Hs"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - - "glib_0_13_4_0" = callPackage ({ mkDerivation, base, bytestring, containers, glib, text , utf8-string }: @@ -94958,7 +96414,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the GLIB library for Gtk2Hs"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) glib;}; "glicko" = callPackage @@ -95779,8 +97234,8 @@ self: { }: mkDerivation { pname = "goatee-gtk"; - version = "0.3.1"; - sha256 = "ee87d1764a413f03f73e6a99e04a1bb7c1dfefa597ba46a21e1dc9864d1511ef"; + version = "0.3.1.1"; + sha256 = "f50b4234de6f16b33d11f367bc0eca1eb6bbc02c28f8ec75631790e0c36cf75d"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -95788,7 +97243,6 @@ self: { ]; executableHaskellDepends = [ base gtk ]; testHaskellDepends = [ base HUnit ]; - jailbreak = true; homepage = "http://khumba.net/projects/goatee"; description = "A monadic take on a 2,500-year-old board game - GTK+ UI"; license = stdenv.lib.licenses.agpl3; @@ -99375,25 +100829,6 @@ self: { }) {gtk2 = pkgs.gnome2.gtk;}; "gtk" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk2, gtk2hs-buildtools, mtl, pango, text - }: - mkDerivation { - pname = "gtk"; - version = "0.14.3"; - sha256 = "cd225f238ccc24b14d550292768f0cbec738eac7d130b926f827770df7960969"; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk2 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - doHaddock = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - }) {gtk2 = pkgs.gnome2.gtk;}; - - "gtk_0_14_4" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk2, mtl, pango, text }: @@ -99405,6 +100840,24 @@ self: { array base bytestring cairo containers gio glib mtl pango text ]; libraryPkgconfigDepends = [ gtk2 ]; + doHaddock = false; + homepage = "http://projects.haskell.org/gtk2hs/"; + description = "Binding to the Gtk+ graphical user interface library"; + license = stdenv.lib.licenses.lgpl21; + }) {gtk2 = pkgs.gnome2.gtk;}; + + "gtk_0_14_5" = callPackage + ({ mkDerivation, array, base, bytestring, cairo, containers, gio + , glib, gtk2, mtl, pango, text + }: + mkDerivation { + pname = "gtk"; + version = "0.14.5"; + sha256 = "ffdfb54247dfbdf3b9936504802e3e0d2238cf5a0c145e745899d2c17f7c7001"; + libraryHaskellDepends = [ + array base bytestring cairo containers gio glib mtl pango text + ]; + libraryPkgconfigDepends = [ gtk2 ]; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -99611,31 +101064,8 @@ self: { }: mkDerivation { pname = "gtk2hs-buildtools"; - version = "0.13.1.0"; - sha256 = "2d91805f2f79a9c85d48f88474a9ff98dc64e22dcea8e79fe8a01c80945de83a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers directory filepath - ]; - executableHaskellDepends = [ - array base containers directory filepath hashtables pretty process - random - ]; - executableToolDepends = [ alex happy ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Tools to build the Gtk2Hs suite of User Interface libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - - "gtk2hs-buildtools_0_13_2_0" = callPackage - ({ mkDerivation, alex, array, base, Cabal, containers, directory - , filepath, happy, hashtables, pretty, process, random - }: - mkDerivation { - pname = "gtk2hs-buildtools"; - version = "0.13.2.0"; - sha256 = "6ed2758a2311d2c0369b46df065c72f67319294496c63729ae149385ee1e1aab"; + version = "0.13.2.1"; + sha256 = "86ea21a2e07d83dcff57eb224a7c76835fb4ea561e4d6ba9b52b8035b38d064b"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -99647,7 +101077,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Tools to build the Gtk2Hs suite of User Interface libraries"; license = stdenv.lib.licenses.gpl2; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gtk2hs-cast-glade" = callPackage @@ -99996,20 +101425,18 @@ self: { "gtk3" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk2hs-buildtools, gtk3, mtl, pango, text, time - , transformers + , glib, gtk3, mtl, pango, text, time, transformers }: mkDerivation { pname = "gtk3"; - version = "0.14.3"; - sha256 = "aa2fde0dde64936a96c72b08b9cc0ebb1fb73aedb94625dc2163843f957956a0"; + version = "0.14.4"; + sha256 = "01eee85bac2bcdb85aefa336e34879720ad336811e106644e52a69952762d020"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array base bytestring cairo containers gio glib mtl pango text ]; libraryPkgconfigDepends = [ gtk3 ]; - libraryToolDepends = [ gtk2hs-buildtools ]; executableHaskellDepends = [ array base cairo text time transformers ]; @@ -100020,14 +101447,14 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gtk3;}; - "gtk3_0_14_4" = callPackage + "gtk3_0_14_5" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk3, mtl, pango, text, time, transformers }: mkDerivation { pname = "gtk3"; - version = "0.14.4"; - sha256 = "01eee85bac2bcdb85aefa336e34879720ad336811e106644e52a69952762d020"; + version = "0.14.5"; + sha256 = "be24beff4a7fc08e7cb9b4e8d623f3ae884730c8dc22af12ab65efd362b0bc48"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -112435,13 +113862,15 @@ self: { }) {}; "hetero-dict" = callPackage - ({ mkDerivation, base, containers, primitive, template-haskell }: + ({ mkDerivation, aeson, base, primitive, template-haskell, text + , unordered-containers + }: mkDerivation { pname = "hetero-dict"; - version = "0.1.0.1"; - sha256 = "8c25acb5c751492aa5d504e5262d9eb0f8a4e863b3038b267809d15a6db3d709"; + version = "0.1.1.0"; + sha256 = "880b8f1659099bfb7656b9aa854255b3612bc52633736d3a1246752450a33169"; libraryHaskellDepends = [ - base containers primitive template-haskell + aeson base primitive template-haskell text unordered-containers ]; description = "Fast heterogeneous data structures"; license = stdenv.lib.licenses.mit; @@ -127300,18 +128729,19 @@ self: { }) {}; "http-response-decoder" = callPackage - ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder - , case-insensitive, http-client, http-types, matcher, profunctors - , text, transformers, unordered-containers + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, case-insensitive, http-client + , http-types, matcher, profunctors, text, transformers + , unordered-containers }: mkDerivation { pname = "http-response-decoder"; - version = "0.2.1.1"; - sha256 = "0c208150b72e1b1f40651cffaac0e239140cb89f86da5e9cb986945866f9fa0d"; + version = "0.2.2"; + sha256 = "9769eec587a8b17450d6b0cda30c57e043cc595fb6f3d7f58a0a8e372299b513"; libraryHaskellDepends = [ - base-prelude bytestring bytestring-tree-builder case-insensitive - http-client http-types matcher profunctors text transformers - unordered-containers + base base-prelude bytestring bytestring-tree-builder + case-insensitive http-client http-types matcher profunctors text + transformers unordered-containers ]; homepage = "https://github.com/sannsyn/http-response-decoder"; description = "Declarative DSL for parsing an HTTP response"; @@ -128531,14 +129961,14 @@ self: { }: mkDerivation { pname = "hw-json"; - version = "0.1.0.0"; - sha256 = "6cf33fe339bc3b60217ba4c41e99d90b634ab1d30a05d0ce2ee487aa9a15005b"; + version = "0.2.0.0"; + sha256 = "df4561de0bd7910f6a0323e2b700f636ae7dadad097ac16c3c21f4a7915db256"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ array attoparsec base bytestring conduit containers hw-bits - hw-conduit hw-parser hw-prim hw-rankselect mono-traversable - resourcet text vector word8 + hw-conduit hw-diagnostics hw-parser hw-prim hw-rankselect mmap + mono-traversable resourcet text vector word8 ]; executableHaskellDepends = [ base bytestring conduit criterion errors hw-bits hw-conduit @@ -129720,8 +131150,8 @@ self: { }: mkDerivation { pname = "hylogen"; - version = "0.1.2.1"; - sha256 = "4db07400bf7fef66df9e23672c0d5dfc93585e991911380496c3f377f5022162"; + version = "0.1.2.3"; + sha256 = "39666d39f97baa9ebd7836cc59522548a235f95f2ccfba95a72fb7ada07bd3b0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; @@ -129730,7 +131160,7 @@ self: { warp websockets ]; jailbreak = true; - homepage = "https://hylogen.com"; + homepage = "https://github.com/sleexyz/hylogen"; description = "an EDSL for live-coding fragment shaders"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; @@ -133774,12 +135204,12 @@ self: { }) {}; "interspersed" = callPackage - ({ mkDerivation, base-prelude, transformers }: + ({ mkDerivation, base, base-prelude, transformers }: mkDerivation { pname = "interspersed"; - version = "0.1.1.2"; - sha256 = "43ce7ce1fdb26f53aeb30c0377226dd9c495da89490ef6312c15df563a4fa783"; - libraryHaskellDepends = [ base-prelude transformers ]; + version = "0.1.2"; + sha256 = "9d17ade3b92e1009f212b96fc29db058fb2cc5640fbd3fada0498ebb4d500cfc"; + libraryHaskellDepends = [ base base-prelude transformers ]; homepage = "https://github.com/nikita-volkov/interspersed"; description = "An abstraction over interspersing monadic actions"; license = stdenv.lib.licenses.mit; @@ -137378,15 +138808,16 @@ self: { }) {}; "json-encoder" = callPackage - ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, scientific, semigroups, text + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, contravariant, contravariant-extras + , scientific, semigroups, text }: mkDerivation { pname = "json-encoder"; - version = "0.1.7"; - sha256 = "8796142da268ecd869042f8ab7cf5069dad8d75155715f39cee4ec7429b98c9d"; + version = "0.1.8"; + sha256 = "812a1c1f5d03882f6022febd65ad14c1d0bcfbbb5e3b588e349b3e243e82973f"; libraryHaskellDepends = [ - base-prelude bytestring bytestring-tree-builder contravariant + base base-prelude bytestring bytestring-tree-builder contravariant contravariant-extras scientific semigroups text ]; homepage = "https://github.com/sannsyn/json-encoder"; @@ -137465,8 +138896,8 @@ self: { }: mkDerivation { pname = "json-incremental-decoder"; - version = "0.1.0.3"; - sha256 = "a8968d55ea5655aa63ebc618753751e609c4733ee9cac121269d7375dc3112fd"; + version = "0.1.1"; + sha256 = "015c9e90dbb90ec08ebb2b5e8fbe5b4858defbeabc2f69b0b6aad1128208513d"; libraryHaskellDepends = [ attoparsec base base-prelude bytestring ghc-prim hashable interspersed matcher monad-par scientific success supplemented text @@ -137476,7 +138907,6 @@ self: { QuickCheck quickcheck-instances rebase tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/json-incremental-decoder"; description = "Incremental JSON parser with early termination and a declarative DSL"; license = stdenv.lib.licenses.mit; @@ -137501,8 +138931,8 @@ self: { ({ mkDerivation, attoparsec, base-prelude, text }: mkDerivation { pname = "json-pointer"; - version = "0.1.2"; - sha256 = "772a765387d39ffda21f437aa8372289b1eb726aa983ff16863aa5b1cd1f88ba"; + version = "0.1.2.1"; + sha256 = "00afa88ed665122abf33ebfabc35f46f10e977fa106bed71facfcfb5b591d1aa"; libraryHaskellDepends = [ attoparsec base-prelude text ]; homepage = "https://github.com/sannsyn/json-pointer"; description = "JSON Pointer parsing and interpretation utilities"; @@ -138325,7 +139755,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "jwt" = callPackage + "jwt_0_7_1" = callPackage ({ mkDerivation, aeson, base, bytestring, containers, cryptonite , data-default, doctest, http-types, HUnit, lens, lens-aeson , memory, network-uri, QuickCheck, scientific, semigroups, tasty @@ -138352,6 +139782,34 @@ self: { homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "jwt" = callPackage + ({ mkDerivation, aeson, base, bytestring, containers, cryptonite + , data-default, doctest, http-types, HUnit, lens, lens-aeson + , memory, network-uri, QuickCheck, scientific, semigroups, tasty + , tasty-hunit, tasty-quickcheck, tasty-th, text, time + , unordered-containers, vector + }: + mkDerivation { + pname = "jwt"; + version = "0.7.2"; + sha256 = "17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31"; + libraryHaskellDepends = [ + aeson base bytestring containers cryptonite data-default http-types + memory network-uri scientific semigroups text time + unordered-containers vector + ]; + testHaskellDepends = [ + aeson base bytestring containers cryptonite data-default doctest + http-types HUnit lens lens-aeson memory network-uri QuickCheck + scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th + text time unordered-containers vector + ]; + homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; + description = "JSON Web Token (JWT) decoding and encoding"; + license = stdenv.lib.licenses.mit; }) {}; "kademlia" = callPackage @@ -145319,8 +146777,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck, split }: mkDerivation { pname = "libroman"; - version = "2.0.2"; - sha256 = "1f1ddd484f3b250ecfe3a653988a2bd50da4141cd45bac54e77db037f04b4643"; + version = "2.1.1"; + sha256 = "262bf5d2a22272e17545bc937fee05a4b31db70780c73ba11b46ee02c986a071"; libraryHaskellDepends = [ base split ]; testHaskellDepends = [ base hspec QuickCheck ]; homepage = "https://ahakki.xyz"; @@ -160010,6 +161468,8 @@ self: { pname = "multiset"; version = "0.3.3"; sha256 = "c74e77d3dbbe81fe3b48629fc257fa084df89bfb575c82c42f5549af376de135"; + revision = "2"; + editedCabalFile = "5c60cf960eb6ea4f9d82741534d95c34b241c681e8ca8647cd5e0495f30d8bdf"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base doctest Glob ]; doCheck = false; @@ -165889,30 +167349,6 @@ self: { }) {}; "octane" = callPackage - ({ mkDerivation, aeson, autoexporter, base, binary, binary-bits - , bytestring, containers, data-binary-ieee754, deepseq, tasty - , tasty-hspec, text - }: - mkDerivation { - pname = "octane"; - version = "0.5.9"; - sha256 = "9ab0cc2a69b5e6c95e954ac0ffa4d657fd61c4c70a87feb4651c75d5a85b4339"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson autoexporter base binary binary-bits bytestring containers - data-binary-ieee754 deepseq text - ]; - executableHaskellDepends = [ base ]; - testHaskellDepends = [ - base binary bytestring containers tasty tasty-hspec - ]; - homepage = "https://github.com/tfausak/octane#readme"; - description = "Parse Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - - "octane_0_6_0" = callPackage ({ mkDerivation, aeson, autoexporter, base, binary, binary-bits , bytestring, containers, data-binary-ieee754, deepseq, tasty , tasty-hspec, text @@ -165934,7 +167370,6 @@ self: { homepage = "https://github.com/tfausak/octane#readme"; description = "Parse Rocket League replays"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "octohat" = callPackage @@ -169017,7 +170452,7 @@ self: { sha256 = "7b1bb9b7d66edfbac33796a3f5d3218c2add786b95ea9dfbd497dc0e8ed27e6f"; revision = "1"; editedCabalFile = "2f73e20910c6a01f53c3f24f1e348bccf209059ace20cd4eda8f507cc3f4a7c4"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169041,12 +170476,12 @@ self: { test-framework-quickcheck2 text zip-archive ]; doHaddock = false; - jailbreak = true; doCheck = false; homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_13_2" = callPackage @@ -169067,7 +170502,7 @@ self: { sha256 = "e65c445f4454e9efcf1bc8c28754260d7108803bd8979bc2ff3c34705e386d8a"; revision = "3"; editedCabalFile = "23325052ac34c80bbb51c2f5b73ae474d684d2be3fdea83db875a105f2ffbf87"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169091,12 +170526,12 @@ self: { test-framework-quickcheck2 text zip-archive ]; doHaddock = false; - jailbreak = true; doCheck = false; homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_13_2_1" = callPackage @@ -169115,7 +170550,7 @@ self: { pname = "pandoc"; version = "1.13.2.1"; sha256 = "66da6eb690b8de41eccf05620e165630854d74c08cf69dbfb68d0ea84589785f"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169138,11 +170573,11 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; homepage = "http://johnmacfarlane.net/pandoc"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_15_0_6" = callPackage @@ -169162,7 +170597,7 @@ self: { pname = "pandoc"; version = "1.15.0.6"; sha256 = "d950968142526d5a765af7dfb26b47c3f60d4f883aa9d9eab668614179f1ed46"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169186,12 +170621,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_15_1" = callPackage @@ -169211,7 +170646,7 @@ self: { pname = "pandoc"; version = "1.15.1"; sha256 = "77503f8981cfcbe7df841ed1c71de9164d0eaf17b8b9c51e6d966e4fd333b733"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169235,12 +170670,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_15_1_1" = callPackage @@ -169260,7 +170695,7 @@ self: { pname = "pandoc"; version = "1.15.1.1"; sha256 = "a70e0af56c294dbb1ba646df24f90b81542d060ec7167f70ff2b873ed7ed6d5e"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169284,12 +170719,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_15_2" = callPackage @@ -169309,7 +170744,7 @@ self: { pname = "pandoc"; version = "1.15.2"; sha256 = "9c6ffe77006513306b35daa7256c1625c6eaf2e16a8de8fe5248f20015c3d335"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169332,12 +170767,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_15_2_1" = callPackage @@ -169357,7 +170792,7 @@ self: { pname = "pandoc"; version = "1.15.2.1"; sha256 = "60bcb0e65ecb63953dd26d5aacf1a5df83700d116062ffaeffe9edbc9be6df59"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169380,12 +170815,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc_1_16_0_2" = callPackage @@ -169405,7 +170840,7 @@ self: { pname = "pandoc"; version = "1.16.0.2"; sha256 = "f5f3262ef4574a111936fea0118557c523a8b0eaa7fea84b64b377b20a80f348"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169428,12 +170863,12 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc" = callPackage @@ -169455,7 +170890,7 @@ self: { sha256 = "7b14e1bcb78a7e2ad1e585f127be7efd20225c9f9b5131d507b376b62cd77e32"; revision = "1"; editedCabalFile = "23dfb2513b8b5352d16fc331cb1b6b4989df239e62905f9cf341c9f519191891"; - configureFlags = [ "-fhttps" ]; + configureFlags = [ "-fhttps" "-f-trypandoc" ]; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -169478,12 +170913,11 @@ self: { process QuickCheck syb test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; - jailbreak = true; doCheck = false; homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; - hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; "pandoc-citeproc_0_6" = callPackage @@ -170149,24 +171583,6 @@ self: { }) {inherit (pkgs.gnome) pango;}; "pango" = callPackage - ({ mkDerivation, array, base, cairo, containers, directory, glib - , gtk2hs-buildtools, mtl, pango, pretty, process, text - }: - mkDerivation { - pname = "pango"; - version = "0.13.2.0"; - sha256 = "4b80c8ed358699738c6956b6ab68a8867de129b521230f5c53daea208923f07c"; - libraryHaskellDepends = [ - array base cairo containers directory glib mtl pretty process text - ]; - libraryPkgconfigDepends = [ pango ]; - libraryToolDepends = [ gtk2hs-buildtools ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Pango text rendering engine"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs.gnome) pango;}; - - "pango_0_13_3_0" = callPackage ({ mkDerivation, array, base, cairo, containers, directory, glib , mtl, pango, pretty, process, text }: @@ -170181,7 +171597,6 @@ self: { homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Pango text rendering engine"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "papillon" = callPackage @@ -170457,23 +171872,25 @@ self: { , async, base, binary, bytestring, containers, deepseq, directory , distributed-process, distributed-process-simplelocalnet , distributed-static, fclabels, filepath, HTTP, monad-par, network - , normaldistribution, parallel, random, repa, stm, template-haskell - , time, transformers, utf8-string, vector, xml + , network-uri, normaldistribution, parallel, random, repa, stm + , template-haskell, time, transformers, utf8-string, vector, xml }: mkDerivation { pname = "parconc-examples"; - version = "0.3.5"; - sha256 = "57dde98fbad6f2c0136c301a3d503795affdfa03fbfde364d0bf31b172322d16"; + version = "0.4.3"; + sha256 = "22770bec32f6dcfcd68a55c49473932ba09eb21e5f72631fec17e0be40599f8e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ abstract-par accelerate accelerate-io array async base binary bytestring containers deepseq directory distributed-process distributed-process-simplelocalnet distributed-static fclabels - filepath HTTP monad-par network normaldistribution parallel random - repa stm template-haskell time transformers utf8-string vector xml + filepath HTTP monad-par network network-uri normaldistribution + parallel random repa stm template-haskell time transformers + utf8-string vector xml ]; jailbreak = true; + homepage = "http://github.com/simonmar/parconc-examples"; description = "Examples to accompany the book \"Parallel and Concurrent Programming in Haskell\""; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -175562,7 +176979,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pinch" = callPackage + "pinch_0_2_0_1" = callPackage ({ mkDerivation, array, base, bytestring, containers, deepseq , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text , unordered-containers, vector @@ -175582,6 +176999,29 @@ self: { homepage = "https://github.com/abhinav/pinch#readme"; description = "An alternative implementation of Thrift for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pinch" = callPackage + ({ mkDerivation, array, base, bytestring, containers, deepseq + , ghc-prim, hashable, hspec, hspec-discover, QuickCheck, text + , unordered-containers, vector + }: + mkDerivation { + pname = "pinch"; + version = "0.3.0.0"; + sha256 = "aaa451f65bde78d3e9cfc2621ed78b7dab31cb7234619c5c37cc2976e1fc3d15"; + libraryHaskellDepends = [ + array base bytestring containers deepseq ghc-prim hashable text + unordered-containers vector + ]; + testHaskellDepends = [ + base bytestring containers hspec hspec-discover QuickCheck text + unordered-containers vector + ]; + homepage = "https://github.com/abhinav/pinch#readme"; + description = "An alternative implementation of Thrift for Haskell"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {}; @@ -176167,7 +177607,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pipes-cacophony" = callPackage + "pipes-cacophony_0_2_1" = callPackage ({ mkDerivation, base, bytestring, cacophony, hlint, pipes }: mkDerivation { pname = "pipes-cacophony"; @@ -176178,6 +177618,22 @@ self: { homepage = "https://github.com/centromere/pipes-cacophony"; description = "Pipes for Noise-secured network connections"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "pipes-cacophony" = callPackage + ({ mkDerivation, base, bytestring, cacophony, hlint, pipes }: + mkDerivation { + pname = "pipes-cacophony"; + version = "0.3.0"; + sha256 = "1d489dccb63694e120cf53b4b313363f03f09863bd14243521328f7c5bec0e6a"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring cacophony pipes ]; + testHaskellDepends = [ base hlint ]; + homepage = "https://github.com/centromere/pipes-cacophony"; + description = "Pipes for Noise-secured network connections"; + license = stdenv.lib.licenses.publicDomain; }) {}; "pipes-cellular" = callPackage @@ -176613,12 +178069,12 @@ self: { }: mkDerivation { pname = "pipes-key-value-csv"; - version = "0.1.0.0"; - sha256 = "b4f65a07978ddd42d54bd1082b2185df87f3feff391fafaff1fc254b3d9ad8a0"; + version = "0.2.0.0"; + sha256 = "c240c100bec682c61312c4bf4af20beefd167a88a75fe9fb8bb2410350204a04"; libraryHaskellDepends = [ base containers data-default-class lens mtl pipes pipes-bytestring - pipes-group pipes-parse pipes-safe pipes-text reflection text - validation vinyl vinyl-utils + pipes-group pipes-parse pipes-safe pipes-text reflection text vinyl + vinyl-utils ]; testHaskellDepends = [ base contravariant data-default-class lens pipes pipes-text @@ -187808,8 +189264,8 @@ self: { ({ mkDerivation, base, base-prelude, template-haskell }: mkDerivation { pname = "refined"; - version = "0.1.2"; - sha256 = "3e43f8a0e4f141eef379920c37a04e351d6bcf8ed57f8143c48f2cc91e5c18f8"; + version = "0.1.2.1"; + sha256 = "156e08b286b3c433d40ca39160b7f1ecec6072c138ca48f6d90d3d0cb808e777"; libraryHaskellDepends = [ base base-prelude template-haskell ]; homepage = "https://github.com/nikita-volkov/refined"; description = "Refinement types with static and runtime checking"; @@ -192570,8 +194026,8 @@ self: { }: mkDerivation { pname = "rex"; - version = "0.5.1"; - sha256 = "864a3393d50a3535d5788242a43eec030290fc96cc6e71b628404278de4de0a1"; + version = "0.5.2"; + sha256 = "6e1ef13a70339bd4111b9dbe14b3f6e356981d583b8312374bd9794c9fe09176"; libraryHaskellDepends = [ base bytestring containers haskell-src-exts haskell-src-meta pcre-light template-haskell @@ -194174,11 +195630,11 @@ self: { ({ mkDerivation, base, mtl, transformers }: mkDerivation { pname = "safe-access"; - version = "0.2.1.2"; - sha256 = "39d0dbfdcd0393aeba886b48df3b098442fac37a0328d26ff1ed191cac9c4345"; + version = "0.3.0.0"; + sha256 = "1eddd50993f6ed86041dbc2f543263eb6261d5d34d3128beb416a44cb8d59215"; libraryHaskellDepends = [ base mtl transformers ]; jailbreak = true; - homepage = "http://hub.darcs.net/thoferon/safe-access"; + homepage = "http://darcs.redspline.com/safe-access"; description = "A simple environment to control access to data"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -195166,6 +196622,26 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "sbp2udp" = callPackage + ({ mkDerivation, base, basic-prelude, binary, binary-conduit + , bytestring, conduit, conduit-extra, network, optparse-generic + , protolude, resourcet, sbp, streaming-commons + }: + mkDerivation { + pname = "sbp2udp"; + version = "0.0.1"; + sha256 = "9549dfa0600dad59907bb4129734dff99039aa9cb7a0e04f56af0352de914abc"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base basic-prelude binary binary-conduit bytestring conduit + conduit-extra network optparse-generic protolude resourcet sbp + streaming-commons + ]; + description = "SBP to UDP"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "sbv_4_2" = callPackage ({ mkDerivation, array, async, base, containers, deepseq, directory , filepath, HUnit, mtl, old-time, pretty, process, QuickCheck @@ -207554,20 +209030,21 @@ self: { }) {}; "solr" = callPackage - ({ mkDerivation, base-prelude, bytestring, bytestring-tree-builder - , case-insensitive, contravariant, http-client - , http-response-decoder, json-encoder, json-incremental-decoder - , matcher, profunctors, semigroups, text, transformers, uri-encode + ({ mkDerivation, base, base-prelude, bytestring + , bytestring-tree-builder, case-insensitive, contravariant + , http-client, http-response-decoder, json-encoder + , json-incremental-decoder, matcher, profunctors, semigroups, text + , transformers, uri-encode }: mkDerivation { pname = "solr"; - version = "0.3.1"; - sha256 = "9bee7a32661231a132491cf361140d40d3a810bd72763abebcee97bfbdd06e66"; + version = "0.3.2"; + sha256 = "945f9e6ba4f967d1b2ec2bf5b482b1df56df40ab1524dba4a0fce841e70c46c2"; libraryHaskellDepends = [ - base-prelude bytestring bytestring-tree-builder case-insensitive - contravariant http-client http-response-decoder json-encoder - json-incremental-decoder matcher profunctors semigroups text - transformers uri-encode + base base-prelude bytestring bytestring-tree-builder + case-insensitive contravariant http-client http-response-decoder + json-encoder json-incremental-decoder matcher profunctors + semigroups text transformers uri-encode ]; homepage = "https://github.com/sannsyn/solr"; description = "A minimal Solr client library"; @@ -208797,6 +210274,28 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "sproxy-web" = callPackage + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , configurator, data-default-class, directory, filepath, hflags + , http-types, mtl, postgresql-simple, resource-pool, scotty, text + , wai, wai-extra, wai-middleware-static, warp + }: + mkDerivation { + pname = "sproxy-web"; + version = "0.3.1"; + sha256 = "925919132d4911dba38f6c29888dad712e780bf8329b5d4cbdcc2ed30e6e9ee5"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base blaze-html blaze-markup bytestring configurator + data-default-class directory filepath hflags http-types mtl + postgresql-simple resource-pool scotty text wai wai-extra + wai-middleware-static warp + ]; + description = "Web interface to sproxy database"; + license = stdenv.lib.licenses.mit; + }) {}; + "spsa" = callPackage ({ mkDerivation, base, hmatrix, HUnit, mtl, QuickCheck, random , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -211505,7 +213004,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "statistics" = callPackage + "statistics_0_13_2_3" = callPackage ({ mkDerivation, aeson, base, binary, deepseq, erf, HUnit, ieee754 , math-functions, monad-par, mwc-random, primitive, QuickCheck , test-framework, test-framework-hunit, test-framework-quickcheck2 @@ -211524,6 +213023,32 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector vector-algorithms ]; + doCheck = false; + homepage = "https://github.com/bos/statistics"; + description = "A library of statistical types, data, and functions"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "statistics" = callPackage + ({ mkDerivation, aeson, base, binary, deepseq, erf, HUnit, ieee754 + , math-functions, monad-par, mwc-random, primitive, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , vector, vector-algorithms, vector-binary-instances + }: + mkDerivation { + pname = "statistics"; + version = "0.13.3.0"; + sha256 = "6e7fe0f10086725c696fdd855caf4b6fb58ca5100bd0c9995f575f5b071381ed"; + libraryHaskellDepends = [ + aeson base binary deepseq erf math-functions monad-par mwc-random + primitive vector vector-algorithms vector-binary-instances + ]; + testHaskellDepends = [ + base binary erf HUnit ieee754 math-functions mwc-random primitive + QuickCheck test-framework test-framework-hunit + test-framework-quickcheck2 vector vector-algorithms + ]; doHaddock = false; doCheck = false; homepage = "https://github.com/bos/statistics"; @@ -215182,20 +216707,19 @@ self: { }) {}; "supplemented" = callPackage - ({ mkDerivation, base-prelude, QuickCheck, quickcheck-instances - , rebase, tasty, tasty-hunit, tasty-quickcheck, tasty-smallcheck - , transformers + ({ mkDerivation, base, base-prelude, QuickCheck + , quickcheck-instances, rebase, tasty, tasty-hunit + , tasty-quickcheck, tasty-smallcheck, transformers }: mkDerivation { pname = "supplemented"; - version = "0.5.0.3"; - sha256 = "6375f692152040e0c9a30af9313bd0332653965b56c75f7de7d2978b9be99a5f"; - libraryHaskellDepends = [ base-prelude transformers ]; + version = "0.5.1"; + sha256 = "bdffa23ee0b55e38dc72b7b3e7bb566b1dd9c0131d605fa616461cc3a8302f97"; + libraryHaskellDepends = [ base base-prelude transformers ]; testHaskellDepends = [ QuickCheck quickcheck-instances rebase tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/supplemented"; description = "Early termination for monads"; license = stdenv.lib.licenses.mit; @@ -219313,8 +220837,8 @@ self: { ({ mkDerivation, base, data-default, template-haskell }: mkDerivation { pname = "template-default"; - version = "0.1.1"; - sha256 = "4dcb40cd1330d92dca50bdf6ecf5ca6c60a54e1567d7e114778708b04390681d"; + version = "0.1.2"; + sha256 = "8446e58f6a926037b952ebd5e5e9e53e1629f8f35904f017d53e71caadf3aebb"; libraryHaskellDepends = [ base data-default template-haskell ]; jailbreak = true; homepage = "https://github.com/haskell-pkg-janitors/template-default"; @@ -221092,6 +222616,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "text-all" = callPackage + ({ mkDerivation, base, text, text-format, text-show }: + mkDerivation { + pname = "text-all"; + version = "0.2.0.0"; + sha256 = "15f34c0c6182e635ccde59dd0eeace71fdc031a1468d9a50ea509d7e3aeb7073"; + libraryHaskellDepends = [ base text text-format text-show ]; + homepage = "http://github.com/aelve/text-all"; + description = "Everything Data.Text related in one package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "text-and-plots" = callPackage ({ mkDerivation, base, blaze-html, bytestring, containers, markdown , text, unordered-containers @@ -228700,7 +230236,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "typelits-witnesses" = callPackage + "typelits-witnesses_0_2_2_0" = callPackage ({ mkDerivation, base, base-compat, constraints, reflection , transformers }: @@ -228714,6 +230250,23 @@ self: { homepage = "https://github.com/mstksg/typelits-witnesses"; description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "typelits-witnesses" = callPackage + ({ mkDerivation, base, base-compat, constraints, reflection + , transformers + }: + mkDerivation { + pname = "typelits-witnesses"; + version = "0.2.3.0"; + sha256 = "a56e92f9c1be1a3063ae3ba3c55c9715ad298b8c5ff8fcf293cf6eabc6ff210c"; + libraryHaskellDepends = [ + base base-compat constraints reflection transformers + ]; + homepage = "https://github.com/mstksg/typelits-witnesses"; + description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; + license = stdenv.lib.licenses.mit; }) {}; "typeof" = callPackage @@ -230259,7 +231812,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix-compat" = callPackage + "unix-compat_0_4_1_4" = callPackage ({ mkDerivation, base, unix }: mkDerivation { pname = "unix-compat"; @@ -230271,9 +231824,10 @@ self: { homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "unix-compat_0_4_2_0" = callPackage + "unix-compat" = callPackage ({ mkDerivation, base, unix }: mkDerivation { pname = "unix-compat"; @@ -230283,7 +231837,6 @@ self: { homepage = "http://github.com/jystic/unix-compat"; description = "Portable POSIX-compatibility layer"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "unix-fcntl" = callPackage @@ -230655,20 +232208,19 @@ self: { }) {}; "unsequential" = callPackage - ({ mkDerivation, attoparsec, base-prelude, dlist, interspersed - , QuickCheck, quickcheck-instances, rebase, tasty, tasty-hunit - , tasty-quickcheck, tasty-smallcheck, transformers + ({ mkDerivation, attoparsec, base, base-prelude, dlist + , interspersed, QuickCheck, quickcheck-instances, rebase, tasty + , tasty-hunit, tasty-quickcheck, tasty-smallcheck, transformers }: mkDerivation { pname = "unsequential"; - version = "0.5.0.2"; - sha256 = "dfa451ca1b6056c5c42a6581482dd21ceb0de65d8060dfe5119f7406ebc3a52b"; - libraryHaskellDepends = [ base-prelude dlist transformers ]; + version = "0.5.1"; + sha256 = "4dd469dc657d82ec8d8ef89cb86822c6f99669f0f781698c75e9e72384718669"; + libraryHaskellDepends = [ base base-prelude dlist transformers ]; testHaskellDepends = [ attoparsec interspersed QuickCheck quickcheck-instances rebase tasty tasty-hunit tasty-quickcheck tasty-smallcheck ]; - jailbreak = true; homepage = "https://github.com/nikita-volkov/unsequential"; description = "An extension removing the sequentiality from monads"; license = stdenv.lib.licenses.mit; @@ -241461,8 +243013,8 @@ self: { }: mkDerivation { pname = "wikicfp-scraper"; - version = "0.1.0.1"; - sha256 = "933bd1ac12d98933d5ef1aa25ca21beb18910d5666ef2fa74d1de169f057897a"; + version = "0.1.0.2"; + sha256 = "c466a93e68665fb57e38e2f184cc44725511cc4d2ffdbd8f61ba73d612a12fb7"; libraryHaskellDepends = [ attoparsec base bytestring scalpel text time ]; @@ -243470,7 +245022,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xdcc" = callPackage + "xdcc_1_0_3" = callPackage ({ mkDerivation, ascii-progress, base, bytestring, case-insensitive , concurrent-extra, concurrent-output, errors, iproute, irc-ctcp , irc-dcc, lifted-base, network, optparse-applicative, path, random @@ -243488,6 +245040,31 @@ self: { network optparse-applicative path random simpleirc transformers unix-compat ]; + jailbreak = true; + homepage = "https://github.com/JanGe/xdcc"; + description = "A wget-like utility for retrieving files from XDCC bots on IRC"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "xdcc" = callPackage + ({ mkDerivation, ascii-progress, base, bytestring, case-insensitive + , concurrent-extra, concurrent-output, errors, iproute, irc-ctcp + , irc-dcc, lifted-base, network, optparse-applicative, path, random + , simpleirc, transformers, unix-compat + }: + mkDerivation { + pname = "xdcc"; + version = "1.0.4"; + sha256 = "ca6eec53d1229c85d50b64ff08ef4304c795c2fae5e96e730c25d42dbb41a9e9"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + ascii-progress base bytestring case-insensitive concurrent-extra + concurrent-output errors iproute irc-ctcp irc-dcc lifted-base + network optparse-applicative path random simpleirc transformers + unix-compat + ]; homepage = "https://github.com/JanGe/xdcc"; description = "A wget-like utility for retrieving files from XDCC bots on IRC"; license = stdenv.lib.licenses.mit; From 3fd03fb6442fd434c0963c0ab619c6b5855a1285 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 3 Jun 2016 14:55:41 +0200 Subject: [PATCH 225/520] haskell-pandoc: add myself as a maintainer --- pkgs/development/haskell-modules/configuration-hackage2nix.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml index 8b578dce3f2d..4162cc043b26 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix.yaml @@ -74,6 +74,7 @@ package-maintainers: - hsyslog - jailbreak-cabal - language-nix + - pandoc - stack - streamproc gebner: @@ -3347,7 +3348,6 @@ dont-distribute-packages: pandoc-japanese-filters: [ i686-linux, x86_64-darwin, x86_64-linux ] pandoc-plantuml-diagrams: [ i686-linux, x86_64-linux ] pandoc-unlit: [ i686-linux, x86_64-darwin, x86_64-linux ] - pandoc: [ i686-linux, x86_64-darwin, x86_64-linux ] PandocAgda: [ i686-linux, x86_64-darwin, x86_64-linux ] papillon: [ i686-linux, x86_64-linux ] pappy: [ i686-linux, x86_64-linux ] From d2bb38e59baa469784e1089a6017b638bb39d276 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 3 Jun 2016 14:56:01 +0200 Subject: [PATCH 226/520] configuration-ghc-8.0.x.nix: throw out commented-out code --- .../configuration-ghc-8.0.x.nix | 112 ------------------ 1 file changed, 112 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 513df67ae0ed..292d8d746806 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -41,116 +41,6 @@ self: super: { # jailbreak-cabal can use the native Cabal library. jailbreak-cabal = super.jailbreak-cabal.override { Cabal = null; }; - # # https://github.com/hspec/HUnit/issues/7 - # HUnit = dontCheck super.HUnit; - - # # https://github.com/hspec/hspec/issues/253 - # hspec-core = dontCheck super.hspec-core; - - # # Deviate from Stackage here to fix lots of builds. - # transformers-compat = self.transformers-compat_0_5_1_4; - - # # No modules defined for this compiler. - # fail = dontHaddock super.fail; - - # # Version 4.x doesn't compile with transformers 0.5 or later. - # comonad_5 = dontCheck super.comonad_5; # https://github.com/ekmett/comonad/issues/33 - # comonad = self.comonad_5; - - # # Versions <= 5.2 don't compile with transformers 0.5 or later. - # bifunctors = self.bifunctors_5_3; - - # # https://github.com/ekmett/semigroupoids/issues/42 - # semigroupoids = dontCheck super.semigroupoids; - - # # Version 4.x doesn't compile with transformers 0.5 or later. - # kan-extensions = self.kan-extensions_5_0_1; - - # # Earlier versions don't support kan-extensions 5.x. - # lens = self.lens_4_14; - - # # https://github.com/dreixel/generic-deriving/issues/37 - # generic-deriving = dontHaddock super.generic-deriving; - - # # https://github.com/haskell-suite/haskell-src-exts/issues/302 - # haskell-src-exts = dontCheck super.haskell-src-exts; - - # active = doJailbreak super.active; - - # authenticate-oauth = doJailbreak super.authenticate-oauth; - - # diagrams-core = doJailbreak super.diagrams-core; - - # diagrams-lib = doJailbreak super.diagrams-lib; - - # foldl = doJailbreak super.foldl; - - # force-layout = doJailbreak super.force-layout; - - # # packaged 0.2.2.6 is missing: base >=4.7 && <4.9 - # freer = doJailbreak super.freer; - - # # Partial fixes released in 1.20.5 upstream, full fixes only in git - # linear = pkgs.haskell.lib.overrideCabal super.linear (oldAttrs: { - # editedCabalFile = null; - # revision = null; - # src = pkgs.fetchgit { - # url = https://github.com/ekmett/linear.git; - # rev = "8da21dc72714441cb34d6eabd6c224819787365c"; - # sha256 = "0f4r7ww8aygxv0mqdsn9d7fjvrvr66f04v004kh2v5d01dp8d7f9"; - # }; - # }); - - # lucid-svg = doJailbreak super.lucid-svg; - - # monads-tf = doJailbreak super.monads-tf; - - # parsers = doJailbreak super.parsers; - - # pointed = super.pointed_5; - - # reducers = doJailbreak super.reducers; - - # sdl2 = doJailbreak super.sdl2; - - # servant = dontCheck (doJailbreak super.servant_0_7); - # servant-client = dontCheck (doJailbreak super.servant-client_0_7); - # servant-server = dontCheck (doJailbreak super.servant-server_0_7); - - # # packaged shelly 1.6.6 complains: time >=1.3 && <1.6 - # shelly = doJailbreak super.shelly; - - # # The essential part is released in 2.1 upstream (needs hackage import) - # singletons = (pkgs.haskell.lib.overrideCabal super.singletons (oldAttrs: { - # src = pkgs.fetchgit { - # url = https://github.com/goldfirere/singletons.git; - # rev = "277fa943e8c260973effb2291672b166bdd951c1"; - # sha256 = "1ll9fcgs5nxqihvv5vr2bf9z6ijvn3yyk5ss3cgcfvcd95ayy1wz"; - # }; - # })); - - # # The essential part only in upstream git, last released upstream version 2.7.0, Dec 8 - # stm-conduit = doJailbreak (pkgs.haskell.lib.overrideCabal super.stm-conduit (oldAttrs: { - # src = pkgs.fetchgit { - # url = https://github.com/cgaebel/stm-conduit.git; - # rev = "3f831d703c422239e56a9da0f42db8a7059238e0"; - # sha256 = "0bmym2ps0yjcsbyg02r8v1q8z5hpml99n72hf2pjmd31dy8iz7v9"; - # }; - # })); - - # # The essential part only in upstream git, last released upstream version 1.6.0, Jan 27 - # th-desugar = doJailbreak (pkgs.haskell.lib.overrideCabal super.th-desugar (oldAttrs: { - # src = pkgs.fetchgit { - # url = https://github.com/goldfirere/th-desugar.git; - # rev = "7496de0243a12c14be1b37b89eb41cf9ef6f5229"; - # sha256 = "10awknqviq7jb738r6n9rlyra0pvkrpnk0hikz4459hny4hamn75"; - # }; - # })); - - # trifecta = doJailbreak super.trifecta; - - # turtle = doJailbreak super.turtle; - ghcjs-prim = self.callPackage ({ mkDerivation, fetchgit, primitive }: mkDerivation { pname = "ghcjs-prim"; version = "0.1.0.0"; @@ -163,6 +53,4 @@ self: super: { license = pkgs.stdenv.lib.licenses.bsd3; }) {}; - # MonadCatchIO-transformers = doJailbreak super.MonadCatchIO-transformers; - } From d27881c014802d367dfb40e76a37c738e3ef187b Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 3 Jun 2016 15:08:21 +0200 Subject: [PATCH 227/520] haskell-pandoc: fix build --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index af9e2d0f9120..9f1d1b56d3ca 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -586,8 +586,10 @@ self: super: { # https://github.com/junjihashimoto/test-sandbox-compose/issues/2 test-sandbox-compose = dontCheck super.test-sandbox-compose; - # https://github.com/jgm/pandoc/issues/2709 - pandoc = doJailbreak (disableSharedExecutables super.pandoc); + # Relax overspecified constraints. Unfortunately, jailbreak won't work. + pandoc = overrideCabal super.pandoc (drv: { + preConfigure = "sed -i -e 's,time .* < 1.6,time >= 1.5,' -e 's,haddock-library >= 1.1 && < 1.3,haddock-library >= 1.1,' pandoc.cabal"; + }); # Tests attempt to use NPM to install from the network into # /homeless-shelter. Disabled. From 63cc9d00a189a6d1bead8648484a5ba113e7deb5 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Thu, 2 Jun 2016 22:45:14 +0100 Subject: [PATCH 228/520] iozone: Include graphing scripts --- pkgs/development/tools/misc/iozone/default.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/iozone/default.nix b/pkgs/development/tools/misc/iozone/default.nix index ad3a64d22ba5..7e2416808879 100644 --- a/pkgs/development/tools/misc/iozone/default.nix +++ b/pkgs/development/tools/misc/iozone/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl }: +{ stdenv, fetchurl, gnuplot }: let target = if stdenv.system == "i686-linux" then @@ -28,15 +28,27 @@ stdenv.mkDerivation rec { buildFlags = target; + enableParallelBuilding = true; + installPhase = '' - mkdir -p $out/{bin,share/doc,share/man/man1} + mkdir -p $out/{bin,share/doc,libexec,share/man/man1} install docs/iozone.1 $out/share/man/man1/ install docs/Iozone_ps.gz $out/share/doc/ install -s src/current/{iozone,fileop,pit_server} $out/bin/ + install src/current/{gnu3d.dem,Generate_Graphs,gengnuplot.sh} $out/libexec/ + ln -s $out/libexec/Generate_Graphs $out/bin/iozone_generate_graphs # License copy is mandated by the license, but it's not in the tarball. install ${license} $out/share/doc/Iozone_License.txt ''; + preFixup = '' + sed -i "1i#! $shell" $out/libexec/Generate_Graphs + substituteInPlace $out/libexec/Generate_Graphs \ + --replace ./gengnuplot.sh $out/libexec/gengnuplot.sh \ + --replace 'gnuplot ' "${gnuplot}/bin/gnuplot " \ + --replace gnu3d.dem $out/libexec/gnu3d.dem + ''; + meta = { description = "IOzone Filesystem Benchmark"; homepage = http://www.iozone.org/; From bac26e08dbb6622c39bba13047c54e80282d031d Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Thu, 2 Jun 2016 14:26:44 +0300 Subject: [PATCH 229/520] Fix lots of fetchgit hashes (fallout from #15469) --- pkgs/applications/audio/ardour/ardour3.nix | 2 +- pkgs/applications/audio/artyFX/default.nix | 2 +- pkgs/applications/audio/distrho/default.nix | 2 +- pkgs/applications/audio/faust/faust1git.nix | 2 +- pkgs/applications/audio/i-score/default.nix | 2 +- .../applications/audio/ladspa-plugins/git.nix | 2 +- pkgs/applications/audio/lastwatch/default.nix | 2 +- pkgs/applications/audio/morituri/default.nix | 2 +- .../audio/plugin-torture/default.nix | 2 +- pkgs/applications/audio/swh-lv2/default.nix | 2 +- .../audio/zam-plugins/default.nix | 2 +- .../editors/emacs-modes/cask/default.nix | 2 +- .../emacs-clang-complete-async/default.nix | 2 +- .../editors/emacs-modes/gh/default.nix | 2 +- .../editors/emacs-modes/js2/default.nix | 2 +- .../editors/emacs-modes/melpa-generated.nix | 28 ++++---- .../emacs-modes/melpa-stable-generated.nix | 20 +++--- .../editors/emacs-modes/proofgeneral/HEAD.nix | 2 +- .../editors/leo-editor/default.nix | 2 +- pkgs/applications/editors/vim/qvim.nix | 2 +- .../graphics/antimony/default.nix | 2 +- pkgs/applications/graphics/rapcad/default.nix | 2 +- .../graphics/sane/backends/git.nix | 2 +- .../graphics/solvespace/default.nix | 2 +- pkgs/applications/misc/cgminer/default.nix | 2 +- .../misc/cli-visualizer/default.nix | 2 +- .../misc/cool-retro-term/default.nix | 2 +- pkgs/applications/misc/evopedia/default.nix | 2 +- pkgs/applications/misc/finalterm/default.nix | 2 +- pkgs/applications/misc/hackrf/default.nix | 2 +- pkgs/applications/misc/kgocode/default.nix | 2 +- pkgs/applications/misc/llpp/default.nix | 2 +- pkgs/applications/misc/loxodo/default.nix | 2 +- .../misc/redis-desktop-manager/default.nix | 2 +- pkgs/applications/misc/rtl-sdr/default.nix | 2 +- pkgs/applications/misc/slic3r/default.nix | 2 +- pkgs/applications/misc/stag/default.nix | 2 +- .../misc/super_user_spark/default.nix | 2 +- pkgs/applications/misc/termite/default.nix | 2 +- .../applications/misc/timewarrior/default.nix | 2 +- pkgs/applications/misc/twmn/default.nix | 2 +- .../networking/browsers/conkeror/default.nix | 2 +- .../networking/browsers/dwb/default.nix | 2 +- .../networking/browsers/jumanji/default.nix | 2 +- .../browsers/kwebkitpart/default.nix | 2 +- .../networking/cluster/chronos/default.nix | 2 +- .../networking/cluster/openshift/default.nix | 2 +- .../cluster/panamax/api/default.nix | 2 +- .../networking/cluster/panamax/ui/default.nix | 2 +- .../networking/feedreaders/newsbeuter/dev.nix | 2 +- .../instant-messengers/freetalk/default.nix | 2 +- .../pidgin-plugins/pidgin-mra/default.nix | 2 +- .../telegram/cutegram/default.nix | 2 +- .../telegram/telegram-cli/default.nix | 2 +- .../networking/irc/communi/default.nix | 2 +- .../mailreaders/mailpile/default.nix | 2 +- .../networking/mumble/default.nix | 2 +- .../networking/ostinato/default.nix | 2 +- .../networking/p2p/opentracker/default.nix | 2 +- pkgs/applications/networking/znc/modules.nix | 6 +- pkgs/applications/office/ledger/default.nix | 2 +- .../science/electronics/gerbv/default.nix | 2 +- pkgs/applications/science/logic/coq/HEAD.nix | 2 +- .../science/logic/jonprl/default.nix | 2 +- .../science/math/pcalc/default.nix | 2 +- .../science/misc/openmodelica/src-main.nix | 2 +- .../robotics/qgroundcontrol/default.nix | 2 +- .../git-and-tools/darcs-to-git/default.nix | 2 +- .../git-and-tools/fast-export/default.nix | 2 +- .../git-and-tools/git-bz/default.nix | 2 +- .../git-and-tools/git-remote-hg/default.nix | 2 +- .../git-and-tools/svn2git-kde/default.nix | 2 +- pkgs/applications/video/byzanz/default.nix | 2 +- pkgs/applications/video/cinelerra/default.nix | 2 +- .../video/linuxstopmotion/default.nix | 2 +- .../applications/video/mkvtoolnix/default.nix | 2 +- .../virtualization/cbfstool/default.nix | 2 +- .../window-managers/clfswm/default.nix | 2 +- .../window-managers/kbdd/default.nix | 2 +- .../window-managers/stumpwm/default.nix | 2 +- pkgs/data/fonts/tewi/default.nix | 2 +- pkgs/data/misc/wireless-regdb/default.nix | 2 +- pkgs/development/compilers/aldor/default.nix | 2 +- .../development/compilers/aliceml/default.nix | 2 +- pkgs/development/compilers/chez/default.nix | 2 +- pkgs/development/compilers/dtc/default.nix | 2 +- pkgs/development/compilers/edk2/default.nix | 2 +- .../compilers/elm/packages/elm-compiler.nix | 2 +- .../compilers/elm/packages/elm-make.nix | 2 +- .../compilers/elm/packages/elm-package.nix | 2 +- .../compilers/elm/packages/elm-reactor.nix | 2 +- .../compilers/elm/packages/elm-repl.nix | 2 +- pkgs/development/compilers/eql/default.nix | 2 +- pkgs/development/compilers/haxe/default.nix | 2 +- pkgs/development/compilers/hhvm/default.nix | 2 +- pkgs/development/compilers/julia/git.nix | 2 +- pkgs/development/compilers/lessc/default.nix | 2 +- pkgs/development/compilers/mkcl/default.nix | 2 +- pkgs/development/compilers/opa/default.nix | 2 +- .../compilers/opendylan/default.nix | 2 +- pkgs/development/compilers/tinycc/default.nix | 2 +- .../coq-modules/QuickChick/default.nix | 2 +- .../coq-modules/coqeal/default.nix | 2 +- .../coq-modules/unimath/default.nix | 2 +- .../guile-modules/guile-gnome/default.nix | 2 +- .../guile-modules/guile-sdl2/default.nix | 2 +- .../interpreters/ceptre/default.nix | 2 +- pkgs/development/interpreters/eff/default.nix | 2 +- .../interpreters/jimtcl/default.nix | 2 +- .../development/interpreters/mujs/default.nix | 2 +- .../development/interpreters/scsh/default.nix | 2 +- .../development/interpreters/self/default.nix | 2 +- pkgs/development/libraries/afflib/default.nix | 2 +- .../libraries/agda/Agda-Sheaves/default.nix | 2 +- .../libraries/agda/agda-prelude/default.nix | 2 +- .../libraries/agda/agda-stdlib/default.nix | 2 +- .../libraries/agda/bitvector/default.nix | 2 +- .../libraries/agda/categories/default.nix | 2 +- .../libraries/audio/ntk/default.nix | 2 +- .../libraries/boringssl/default.nix | 2 +- .../libraries/breakpad/default.nix | 2 +- pkgs/development/libraries/cwiid/default.nix | 2 +- .../libraries/java/junit/default.nix | 2 +- .../libraries/java/jzmq/default.nix | 2 +- .../libraries/kinetic-cpp-client/default.nix | 2 +- .../libraries/libcommuni/default.nix | 2 +- .../libraries/libetpan/default.nix | 2 +- .../libraries/libfixposix/default.nix | 2 +- .../libraries/libkvkontakte/default.nix | 2 +- pkgs/development/libraries/libmkv/default.nix | 2 +- pkgs/development/libraries/libvpx/git.nix | 2 +- .../libraries/libwebsockets/default.nix | 2 +- .../development/libraries/ndn-cxx/default.nix | 2 +- .../libraries/nix-plugins/default.nix | 2 +- .../libraries/qmltermwidget/default.nix | 2 +- .../libraries/sblim-sfcc/default.nix | 2 +- .../development/libraries/skalibs/default.nix | 2 +- .../libraries/wvstreams/default.nix | 4 +- .../libraries/xcb-util-cursor/HEAD.nix | 2 +- .../development/libraries/xgboost/default.nix | 2 +- pkgs/development/libraries/zimlib/default.nix | 2 +- .../lisp-modules/lisp-packages.nix | 34 +++++----- .../ocaml-modules/cpdf/default.nix | 2 +- .../ocaml-modules/ocamlfuse/default.nix | 2 +- .../ocaml-modules/ojquery/default.nix | 2 +- .../tools/analysis/smatch/default.nix | 2 +- pkgs/development/tools/boomerang/default.nix | 2 +- pkgs/development/tools/gnulib/default.nix | 2 +- pkgs/development/tools/misc/bossa/default.nix | 2 +- .../development/tools/misc/dbench/default.nix | 2 +- .../tools/misc/sysbench/default.nix | 2 +- pkgs/development/tools/misc/ycmd/default.nix | 2 +- .../tools/parsing/hammer/default.nix | 2 +- pkgs/development/tools/phantomjs2/default.nix | 2 +- pkgs/development/tools/rtags/default.nix | 2 +- .../development/tools/rust/racerd/default.nix | 2 +- pkgs/games/dwarf-fortress/dfhack/default.nix | 2 +- pkgs/games/hawkthorne/default.nix | 2 +- pkgs/games/mars/default.nix | 2 +- pkgs/games/megaglest/default.nix | 2 +- pkgs/games/unnethack/default.nix | 2 +- pkgs/misc/base16/default.nix | 2 +- pkgs/misc/emulators/dolphin-emu/master.nix | 2 +- pkgs/misc/emulators/mgba/default.nix | 2 +- pkgs/misc/emulators/ppsspp/default.nix | 2 +- pkgs/misc/emulators/retroarch/cores.nix | 34 +++++----- pkgs/misc/emulators/retroarch/default.nix | 2 +- pkgs/misc/phabricator/default.nix | 6 +- pkgs/misc/screensavers/alock/default.nix | 2 +- pkgs/misc/screensavers/xss-lock/default.nix | 2 +- .../misc/screensavers/xtrlock-pam/default.nix | 2 +- pkgs/misc/themes/orion/default.nix | 2 +- pkgs/misc/uboot/nanonote.nix | 2 +- pkgs/os-specific/gnu/mach/default.nix | 2 +- .../linux/disk-indicator/default.nix | 2 +- .../linux/firmware/rt5677/default.nix | 2 +- pkgs/os-specific/linux/gfxtablet/default.nix | 2 +- .../linux/ima-evm-utils/default.nix | 2 +- .../linux/kernel/linux-chromiumos-3.14.nix | 2 +- .../linux/kernel/linux-chromiumos-3.18.nix | 2 +- pkgs/os-specific/linux/ldm/default.nix | 2 +- pkgs/os-specific/linux/lightum/default.nix | 2 +- pkgs/os-specific/linux/mmc-utils/default.nix | 2 +- pkgs/os-specific/linux/trace-cmd/default.nix | 2 +- pkgs/os-specific/linux/uksmtools/default.nix | 2 +- pkgs/os-specific/linux/usermount/default.nix | 2 +- .../linux/xf86-input-multitouch/default.nix | 2 +- .../linux/xf86-video-nested/default.nix | 2 +- pkgs/servers/brickd/default.nix | 2 +- pkgs/servers/mediatomb/default.nix | 2 +- pkgs/servers/neard/default.nix | 2 +- pkgs/servers/openxpki/default.nix | 2 +- pkgs/servers/xmpp/ejabberd/default.nix | 2 +- pkgs/shells/es/default.nix | 2 +- pkgs/shells/oh-my-zsh/default.nix | 2 +- pkgs/shells/zsh-prezto/default.nix | 2 +- pkgs/tools/X11/ckbcomp/default.nix | 2 +- pkgs/tools/X11/ksuperkey/default.nix | 2 +- pkgs/tools/X11/skippy-xd/default.nix | 2 +- pkgs/tools/X11/xcape/default.nix | 2 +- pkgs/tools/X11/xtrace/default.nix | 2 +- pkgs/tools/X11/xwinmosaic/default.nix | 2 +- pkgs/tools/audio/mpdcron/default.nix | 2 +- pkgs/tools/audio/pa-applet/default.nix | 2 +- pkgs/tools/backup/burp/1.3.48.nix | 2 +- pkgs/tools/backup/burp/default.nix | 2 +- pkgs/tools/cd-dvd/vobsub2srt/default.nix | 2 +- pkgs/tools/filesystems/ceph/default.nix | 2 +- pkgs/tools/filesystems/grive/default.nix | 2 +- pkgs/tools/filesystems/tmsu/default.nix | 4 +- pkgs/tools/graphics/povray/default.nix | 2 +- pkgs/tools/graphics/qrcode/default.nix | 2 +- pkgs/tools/graphics/quirc/default.nix | 2 +- pkgs/tools/misc/calamares/default.nix | 2 +- pkgs/tools/misc/cpuminer-multi/default.nix | 2 +- pkgs/tools/misc/ddate/default.nix | 2 +- pkgs/tools/misc/diffoscope/default.nix | 2 +- pkgs/tools/misc/execline/default.nix | 2 +- pkgs/tools/misc/grub/trusted.nix | 4 +- pkgs/tools/misc/ipxe/default.nix | 2 +- pkgs/tools/misc/ltunify/default.nix | 2 +- pkgs/tools/misc/mdbtools/git.nix | 2 +- pkgs/tools/misc/xburst-tools/default.nix | 2 +- pkgs/tools/misc/xfstests/default.nix | 2 +- pkgs/tools/networking/biosdevname/default.nix | 2 +- pkgs/tools/networking/bud/default.nix | 2 +- pkgs/tools/networking/connmanui/default.nix | 2 +- pkgs/tools/networking/isync/unstable.nix | 2 +- .../networking/openvpn/update-resolv-conf.nix | 2 +- pkgs/tools/networking/p2p/seeks/default.nix | 2 +- pkgs/tools/networking/pingtcp/default.nix | 2 +- pkgs/tools/networking/proxychains/default.nix | 2 +- pkgs/tools/networking/s6-dns/default.nix | 2 +- .../networking/s6-networking/default.nix | 2 +- pkgs/tools/networking/tinc/pre.nix | 2 +- pkgs/tools/networking/tlsdate/default.nix | 2 +- pkgs/tools/networking/wrk/default.nix | 2 +- .../package-management/nixui/default.nix | 2 +- .../package-management/opkg-utils/default.nix | 2 +- pkgs/tools/security/chaps/default.nix | 2 +- pkgs/tools/security/fprint_demo/default.nix | 2 +- pkgs/tools/security/nsjail/default.nix | 2 +- pkgs/tools/security/sbsigntool/default.nix | 2 +- .../security/simple-tpm-pk11/default.nix | 2 +- pkgs/tools/security/tor/torsocks.nix | 2 +- pkgs/tools/security/tpm-luks/default.nix | 2 +- pkgs/tools/system/evemu/default.nix | 2 +- pkgs/tools/system/plan9port/default.nix | 2 +- pkgs/tools/system/s6-rc/default.nix | 2 +- pkgs/tools/system/s6/default.nix | 2 +- pkgs/tools/system/safe-rm/default.nix | 2 +- pkgs/tools/system/vboot_reference/default.nix | 2 +- pkgs/tools/text/peco/default.nix | 2 +- pkgs/tools/text/zimreader/default.nix | 2 +- pkgs/tools/text/zimwriterfs/default.nix | 2 +- .../typesetting/multimarkdown/default.nix | 2 +- pkgs/tools/video/rtmpdump/default.nix | 2 +- .../virtualization/euca2ools/default.nix | 2 +- pkgs/top-level/go-packages.nix | 8 +-- pkgs/top-level/node-packages-generated.nix | 2 +- pkgs/top-level/php-packages.nix | 4 +- pkgs/top-level/python-packages.nix | 66 +++++++++---------- 262 files changed, 359 insertions(+), 359 deletions(-) diff --git a/pkgs/applications/audio/ardour/ardour3.nix b/pkgs/applications/audio/ardour/ardour3.nix index a501fd95427e..bad4a255d3c5 100644 --- a/pkgs/applications/audio/ardour/ardour3.nix +++ b/pkgs/applications/audio/ardour/ardour3.nix @@ -35,7 +35,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.ardour.org/ardour/ardour.git; rev = "7024232855d268633760674d34c096ce447b7240"; - sha256 = "ede3730455c3c91b2fd612871fa7262bdacd3dff4ba77c5dfbc3c1f0de9b8a36"; + sha256 = "0pnnx22asizin5rvf352nfv6003zarw3jd64magp10310wrfiwbq"; }; buildInputs = diff --git a/pkgs/applications/audio/artyFX/default.nix b/pkgs/applications/audio/artyFX/default.nix index 345d8f6ff0a8..39edf18b0565 100644 --- a/pkgs/applications/audio/artyFX/default.nix +++ b/pkgs/applications/audio/artyFX/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/harryhaaren/openAV-ArtyFX.git"; rev = "3a8cb9a5e4ffaf27a497a31cc9cd6f2e79622d5b"; - sha256 = "2e3f6ab6f829c0ec177e85f4e419286616cf35fb7303445caa09d3438cac27d5"; + sha256 = "0nsmycm64a686ysfnmdvnaazijvfj90z5wyp96kyr81nsrbcv2ij"; }; buildInputs = [ cairomm cmake libjack2 libpthreadstubs libXdmcp libxshmfence libsndfile lv2 ntk pkgconfig ]; diff --git a/pkgs/applications/audio/distrho/default.nix b/pkgs/applications/audio/distrho/default.nix index 72893dfb19a1..12099825757d 100644 --- a/pkgs/applications/audio/distrho/default.nix +++ b/pkgs/applications/audio/distrho/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/DISTRHO/DISTRHO-Ports.git"; rev = "53458838505efef91ed069d0a7d970b6b3588eba"; - sha256 = "0fb4dxfvvqy8lnm9c91sxwn5wbcw8grfpm52zag25vrls251aih3"; + sha256 = "1wjzgy5yyi52fn4si2m8zrbbzqsh3p75avfx744jmxj5gpq5qa92"; }; patchPhase = '' diff --git a/pkgs/applications/audio/faust/faust1git.nix b/pkgs/applications/audio/faust/faust1git.nix index 5b769aa621e8..21c8a9a34c56 100644 --- a/pkgs/applications/audio/faust/faust1git.nix +++ b/pkgs/applications/audio/faust/faust1git.nix @@ -14,7 +14,7 @@ let src = fetchgit { url = "git://git.code.sf.net/p/faudiostream/code"; rev = "931fca3e649f99ef09025d37bd6a7dc70a03e6f6"; - sha256 = "05yam8jfdnziysvpxa5w118k5bbl103vamyqgka6vyhjjizp1nx7"; + sha256 = "1h2qfwxqf9406v0w6kqyxlzn88zw3xmwgxg9f01n4jvd72zxll78"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/audio/i-score/default.nix b/pkgs/applications/audio/i-score/default.nix index 8bf85ac24b02..17fadfe8b1f0 100644 --- a/pkgs/applications/audio/i-score/default.nix +++ b/pkgs/applications/audio/i-score/default.nix @@ -27,7 +27,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/OSSIA/i-score.git"; rev = "ede2453b139346ae46702b5e2643c5488f8c89fb"; - sha256 = "04li771nj0k8gym7vg6rnawjkp2f6d5m5mby26h0k6ksf7hg7h70"; + sha256 = "0mk0zsqhx9z7ry1amjki89h6yp5ysi1qgy2j3kzhrm5sfazvf0x3"; leaveDotGit = true; deepClone = true; }; diff --git a/pkgs/applications/audio/ladspa-plugins/git.nix b/pkgs/applications/audio/ladspa-plugins/git.nix index e022a35f5c64..ef34eb91600a 100644 --- a/pkgs/applications/audio/ladspa-plugins/git.nix +++ b/pkgs/applications/audio/ladspa-plugins/git.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/swh/ladspa.git; rev = "4b8437e8037cace3d5bf8ce6d1d1da0182aba686"; - sha256 = "7d9aa13a064903b330bd52e35c1f810f1c8a253ea5eb4e5a3a69a051af03150e"; + sha256 = "1rmqm4780dhp0pj2scl3k7m8hpp1x6w6ln4wwg954zb9570rqaxx"; }; buildInputs = [ autoreconfHook fftw ladspaH libxml2 pkgconfig perl perlPackages.XMLParser ]; diff --git a/pkgs/applications/audio/lastwatch/default.nix b/pkgs/applications/audio/lastwatch/default.nix index 168a67a53f00..61d502ce3345 100644 --- a/pkgs/applications/audio/lastwatch/default.nix +++ b/pkgs/applications/audio/lastwatch/default.nix @@ -8,7 +8,7 @@ pythonPackages.buildPythonApplication rec { src = fetchgit { url = "git://github.com/aszlig/LastWatch.git"; rev = "refs/tags/v${version}"; - sha256 = "c43f0fd87e9f3daafc7e8676daf2e89c8e21fbabc278eb1455e28d2997587a92"; + sha256 = "0nlng3595j5jvnikk8i5hb915zak5zsmfn2306cc4gfcns9xzjwp"; }; pythonPath = [ diff --git a/pkgs/applications/audio/morituri/default.nix b/pkgs/applications/audio/morituri/default.nix index 2a4ec853cbcf..7d7b4e47fad6 100644 --- a/pkgs/applications/audio/morituri/default.nix +++ b/pkgs/applications/audio/morituri/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { url = "https://github.com/thomasvs/morituri.git"; fetchSubmodules = true; rev = "135b2f7bf27721177e3aeb1d26403f1b29116599"; - sha256 = "1ccxq1spny6xgd7nqwn13n9nqa00ay0nhflg3vbdkvbirh8fgxwq"; + sha256 = "1sl5y5j3gdbynf2v0gf9dwd2hzawj8lm8ywadid7qm34yn8lx12k"; }; pythonPath = [ diff --git a/pkgs/applications/audio/plugin-torture/default.nix b/pkgs/applications/audio/plugin-torture/default.nix index 91b3954de0df..cca4538422f4 100644 --- a/pkgs/applications/audio/plugin-torture/default.nix +++ b/pkgs/applications/audio/plugin-torture/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/cth103/plugin-torture"; rev = "9ee06016982bdfbaa215cd0468cc6ada6367462a"; - sha256 = "bfe9213fd2c1451d7acc1381d63301c4e6ff69ce86d31a886ece5159ba850706"; + sha256 = "0ynzfs3z95lbw4l1w276as2a37zxp0cw6pi3lbikr0qk0r7j5j10"; }; buildInputs = [ boost ladspaH lilv lv2 pkgconfig serd sord sratom ]; diff --git a/pkgs/applications/audio/swh-lv2/default.nix b/pkgs/applications/audio/swh-lv2/default.nix index 4bc7801637c6..ab1ba242cfd4 100644 --- a/pkgs/applications/audio/swh-lv2/default.nix +++ b/pkgs/applications/audio/swh-lv2/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/swh/lv2.git"; rev = "978d5d8f549fd22048157a6d044af0faeaacbd7f"; - sha256 = "3a9c042785b856623339aedafa5bc019b41beb8034d8594c7bbd6c9c26368065"; + sha256 = "10jj8sp67caxvmzjxwyzapc34jpry5nrkkp49kyyvyk5dgkpbsjw"; }; patchPhase = '' diff --git a/pkgs/applications/audio/zam-plugins/default.nix b/pkgs/applications/audio/zam-plugins/default.nix index 0710e7f942af..70051e587cda 100644 --- a/pkgs/applications/audio/zam-plugins/default.nix +++ b/pkgs/applications/audio/zam-plugins/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/zamaudio/zam-plugins.git"; deepClone = true; rev = "91fe56931a3e57b80f18c740d2dde6b44f962aee"; - sha256 = "1s0s028h3z3pfd4qvi63fsg6bv33bvz0p5fbmbmhypzqjlx6mlkb"; + sha256 = "1ldrqh6nk0m1axb553wjp1gfznw8b6b3k0v0z1jdwy425sl6g07d"; }; buildInputs = [ boost libX11 mesa liblo libjack2 ladspaH lv2 pkgconfig rubberband libsndfile ]; diff --git a/pkgs/applications/editors/emacs-modes/cask/default.nix b/pkgs/applications/editors/emacs-modes/cask/default.nix index 3f1967c70535..803a7d542df3 100644 --- a/pkgs/applications/editors/emacs-modes/cask/default.nix +++ b/pkgs/applications/editors/emacs-modes/cask/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/cask/cask.git"; rev = "717b64a9ba7640ec366e8573da0c01f9c4d57b0c"; - sha256 = "0j18rzgpibisfcci6kcgjs8nlkfi1dw33dxp6ab6zaiarydwgcs5"; + sha256 = "0bq24hac1z77g1bybwlk991dcc3pss2gjpwq0a6vvrqg5hw02lsf"; }; buildInputs = [ emacs python ]; diff --git a/pkgs/applications/editors/emacs-modes/emacs-clang-complete-async/default.nix b/pkgs/applications/editors/emacs-modes/emacs-clang-complete-async/default.nix index aa0bac9a0106..9849b65c8c52 100644 --- a/pkgs/applications/editors/emacs-modes/emacs-clang-complete-async/default.nix +++ b/pkgs/applications/editors/emacs-modes/emacs-clang-complete-async/default.nix @@ -5,7 +5,7 @@ clangStdenv.mkDerivation { src = fetchgit { url = "git://github.com/Golevka/emacs-clang-complete-async.git"; rev = "f01488971ec8b5752780d130fb84de0c16a46f31"; - sha256 = "1c8zqi6axbsb951azz9iqx3j52j30nd9ypv396hvids3g02cirrf"; + sha256 = "01smjinrvx0w5z847a43fh2hyr6rrq1kaglfakbr6dcr313w89x9"; }; buildInputs = [ llvmPackages.llvm ]; diff --git a/pkgs/applications/editors/emacs-modes/gh/default.nix b/pkgs/applications/editors/emacs-modes/gh/default.nix index dca84a7936d7..aa59eace2ae3 100644 --- a/pkgs/applications/editors/emacs-modes/gh/default.nix +++ b/pkgs/applications/editors/emacs-modes/gh/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/sigma/gh.el.git"; rev = "ef03b63d063ec22f03af449aa955c98dfad7f80e"; - sha256 = "efa231e0091e8c7785385149dc97b2d8dc24aba65f4b0974b8ed7f62b7596ad3"; + sha256 = "1pciq16vl5l4kvj08q4ib1jzk2bb2y1makcsyaw8k9jblqviw756"; }; buildInputs = [ emacs ]; diff --git a/pkgs/applications/editors/emacs-modes/js2/default.nix b/pkgs/applications/editors/emacs-modes/js2/default.nix index ba9fb4f8d6f8..bc94828ec51d 100644 --- a/pkgs/applications/editors/emacs-modes/js2/default.nix +++ b/pkgs/applications/editors/emacs-modes/js2/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://github.com/mooz/js2-mode.git"; rev = "3abcd90ddc2f446ddf0fb874dd79ba870c26ad2d"; - sha256 = "c0aaab4eeb8d60cfd5c382c3e30d4725e5ec492720d573e663ea69ee43aa73a8"; + sha256 = "0sh9ax2w0ydhjjn4vnwbgy3926p7ad6h6nmsnm0a3zlldj9a4vwn"; }; buildInputs = [ emacs ]; diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix index 363f4ecc8272..e6cd58569a40 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix @@ -2397,7 +2397,7 @@ src = fetchgit { url = "https://bitbucket.org/ukaszg/aria2.git"; rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"; - sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7"; + sha256 = "1xkgz3l7idw5bk1xlffdaddf5v1q6fm3grbryl4xvssrbwgnyisf"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aria2"; @@ -3977,7 +3977,7 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/bbdb.git"; rev = "8fce6df3ab09250d545a2ed373ae64e68d12ff4c"; - sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2"; + sha256 = "1nglakzpcy2pizg80ny1w972vq74v5jgzdvgqp69jkb7312cqzvd"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb"; @@ -15800,7 +15800,7 @@ src = fetchgit { url = "git://git.sv.gnu.org/emms.git"; rev = "ac15f46e19d259e5d49acdac877d0793be1c1ebe"; - sha256 = "1y6l74sr553vygwpyf7di8cdg98hqpzccz81n24vj11a8g9qly1q"; + sha256 = "03vvqp08vkgqqrfcnxfnx0z1dl0wpljgkjkavfyjsd1h7npxs7ik"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms"; @@ -24342,7 +24342,7 @@ src = fetchgit { url = "https://go.googlesource.com/tools"; rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; - sha256 = "1sg01rgccb8f7793m987y8avz8gixqag5hgxs184m61hr5brrak4"; + sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-guru"; @@ -24467,7 +24467,7 @@ src = fetchgit { url = "https://go.googlesource.com/tools"; rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; - sha256 = "1sg01rgccb8f7793m987y8avz8gixqag5hgxs184m61hr5brrak4"; + sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-rename"; @@ -29707,7 +29707,7 @@ src = fetchgit { url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git"; rev = "3c608e15b655d2375c5f81323ac561c7848dc029"; - sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z"; + sha256 = "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-mode"; @@ -29853,7 +29853,7 @@ src = fetchgit { url = "git://git.osdn.jp/gitroot/howm/howm.git"; rev = "6d6b4ca60e5c164a3e284ba82156b8ae33e83b7a"; - sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3"; + sha256 = "1ib97y2vm8whd2rqb8kgh0fk54mk3qjmij05bzmz4njz0k9crwgd"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/howm"; @@ -29956,7 +29956,7 @@ src = fetchgit { url = "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git"; rev = "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f"; - sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla"; + sha256 = "1vkqxgirc82vc44g7xhhr041arf93yirjin3h144kjyfkgkplnkp"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/htmlize"; @@ -35798,7 +35798,7 @@ src = fetchgit { url = "http://llvm.org/git/llvm"; rev = "5afdcbe0c7cd2abeff450f66487800052a2df423"; - sha256 = "152im9nwy1rssd8rfh9rfk0pcw558g7m8cfmn83hy2sdicgyn3d7"; + sha256 = "0xah53a68ikdq38racgsp5cp4fz5v32l4rj9s0risyy7fdyp01b1"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/llvm-mode"; @@ -43091,7 +43091,7 @@ src = fetchgit { url = "git://orgmode.org/org-mode.git"; rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855"; - sha256 = "0zbfgzhqbb1bcx23i3xn5r4q414w1drqqs6zfxcha65v6mijkgkc"; + sha256 = "1m0d0xknl18vg7hnryahll3izhcspp8wzk7j0yrh2piwhbipp0l8"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal"; @@ -43111,7 +43111,7 @@ src = fetchgit { url = "git://orgmode.org/org-mode.git"; rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855"; - sha256 = "0zbfgzhqbb1bcx23i3xn5r4q414w1drqqs6zfxcha65v6mijkgkc"; + sha256 = "1m0d0xknl18vg7hnryahll3izhcspp8wzk7j0yrh2piwhbipp0l8"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-link"; @@ -50614,7 +50614,7 @@ src = fetchgit { url = "http://www.foldr.org/~michaelw/projects/redshank.git"; rev = "f98e68f532e622bcd464292ca4a9cf5fbea14ebb"; - sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism"; + sha256 = "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redshank"; @@ -55909,7 +55909,7 @@ src = fetchgit { url = "git://git.freebsoft.org/git/speechd-el"; rev = "3d729817296b2ed8ad414a6aa044a8aa762259eb"; - sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc"; + sha256 = "044fmr2053vkd8s7kzd2v9qlz6lr8k88kfnxpiwpcbn7pb198iir"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speechd-el"; @@ -64566,7 +64566,7 @@ src = fetchgit { url = "https://bitbucket.org/Soft/zenity-color-picker.el.git"; rev = "4f4f46676a461ebc881487fb70c8c181e323db5e"; - sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk"; + sha256 = "14i2k52qz77dv04w39fyp9hfq983fwa3803anqragk608xgwpf4s"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenity-color-picker"; diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix index 9993fd6cc6dd..ac78caccd8e9 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix @@ -1277,7 +1277,7 @@ src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "6b9718fba257e6c2912ba70f9895251ab1926928"; - sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6"; + sha256 = "040znq4qv6rqjw05klriasysvsx6s6xn00ssc3acbqdqjgjk8l2a"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything"; @@ -5055,7 +5055,7 @@ src = fetchgit { url = "git://jblevins.org/git/deft.git"; rev = "4001a55cf5f79cdbfa00f1405e8a4645af4acd40"; - sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b"; + sha256 = "157c6ck6gb59i7dikbdnaq7cwlh3nnk0vqgil4v1294s2xbpp46n"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deft"; @@ -7796,7 +7796,7 @@ src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "341c755e7b60f8d2081303951377968b1d1a6c23"; - sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33"; + sha256 = "0y06i97bbim6lmvk8l3adifwzhkjyrgyxv02ksshk4npr0b627gx"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-junit"; @@ -10488,7 +10488,7 @@ src = fetchgit { url = "git://factorcode.org/git/factor.git"; rev = "905ec06d864537fb6be9c46ad98f1b6d101dfbf0"; - sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k"; + sha256 = "0ip7azxi5nvp8vvi15ds46mgs0fmi7gq97f2iz1c7m67ml5wi2g7"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuel"; @@ -15386,7 +15386,7 @@ src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "2999f58619dd9c20cc6cac8060c4c850a504cbbd"; - sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg"; + sha256 = "03x93wkd8syj2ybf5ymwcm6khx0h5nhrl8pyync1520294pq6i1i"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber"; @@ -19090,7 +19090,7 @@ src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; rev = "ea5caecec5c50833a6f5a422e217a71eee6324af"; - sha256 = "0n471pjj433jivmwbifzw8x6ya09v52yvgdjfkxcp2a6mn23k6xm"; + sha256 = "0883vwwcir5w3b4831y46bcm80z7chqri4wsx7qxc2ynw0a4qfx3"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch"; @@ -19896,7 +19896,7 @@ src = fetchgit { url = "git://orgmode.org/org-mode.git"; rev = "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1"; - sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w"; + sha256 = "0rvsn085r1sgvv0gwvjlfgn7371bjd254hdzamc97m122pqr7cxr"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal"; @@ -21181,7 +21181,7 @@ src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "1aac79d9617431bbaf218f9a9d270929762d2816"; - sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp"; + sha256 = "0zlhiqhx19dpmxvcczhif5c8acj911p61plsp0gdmamkpbxmkbjv"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-store"; @@ -25818,7 +25818,7 @@ src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "48e5cef14cea5c810833d119900cd484c2a6ca85"; - sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j"; + sha256 = "0hgqxhqnc93pnh6j3hyi92hfx1cbdjylzqb2nl6ldsz1g2wdcw9r"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stgit"; @@ -25901,7 +25901,7 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "4d0603e52b5bab993b3be63e3654c74f641e677d"; - sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm"; + sha256 = "0pn3xjz433b0djcys25a8fv775yqmj3qgg0hyghgxjpzsh6k2a4f"; }; recipeFile = fetchurl { url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stumpwm-mode"; diff --git a/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix b/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix index a8760afc58b0..d119117caebf 100644 --- a/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix +++ b/pkgs/applications/editors/emacs-modes/proofgeneral/HEAD.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation (rec { src = fetchgit { url = "https://github.com/ProofGeneral/PG.git"; rev = "16991280fb09743ae7320aef77f6a166afb907d7"; - sha256 = "08zhfl6xbl4q7lrl7wdp72xr155k06778by0d60g28mfx59b7sqc"; + sha256 = "1yakjxfz6a09m7lrxff04sj1717gpmhq2bsibd5f9lkp6z0w2i0q"; }; buildInputs = [ emacs texinfo perl which ] ++ stdenv.lib.optional enableDoc texLive; diff --git a/pkgs/applications/editors/leo-editor/default.nix b/pkgs/applications/editors/leo-editor/default.nix index 6f540d1d74ad..9bb21d957839 100644 --- a/pkgs/applications/editors/leo-editor/default.nix +++ b/pkgs/applications/editors/leo-editor/default.nix @@ -8,7 +8,7 @@ pythonPackages.buildPythonApplication rec { src = fetchgit { url = "https://github.com/leo-editor/leo-editor"; rev = "refs/tags/Leo-${version}-final"; - sha256 = "3cc5259609890bbde9cfee71f4f60b959b3f5b740f7d403c99ea2d9796b4758e"; + sha256 = "0km5mvzfpfbxxhcjr4if24qhgk2c7dsvmfinz0zrbfriip848vcp"; }; propagatedBuildInputs = with pythonPackages; [ pyqt4 sqlite3 ]; diff --git a/pkgs/applications/editors/vim/qvim.nix b/pkgs/applications/editors/vim/qvim.nix index 0e0b6fc8e50d..5e98b3c9a785 100644 --- a/pkgs/applications/editors/vim/qvim.nix +++ b/pkgs/applications/editors/vim/qvim.nix @@ -4,7 +4,7 @@ args@{ fetchgit, stdenv, ncurses, pkgconfig, gettext , libICE, ... }: with args; let tag = "20140827"; - sha256 = "02adf2212872db3c5d133642d2c12fbfc28b506e4c0c42552e3d079756f63f65"; + sha256 = "0ncgbcm23z25naicxqkblz0mcl1zar2qwgi37y5ar8q8884w9ml2"; in let inherit (args.composableDerivation) composableDerivation edf; in diff --git a/pkgs/applications/graphics/antimony/default.nix b/pkgs/applications/graphics/antimony/default.nix index e797f95970a7..8d17a290cebb 100644 --- a/pkgs/applications/graphics/antimony/default.nix +++ b/pkgs/applications/graphics/antimony/default.nix @@ -12,7 +12,7 @@ in src = fetchgit { url = "git://github.com/mkeeter/antimony.git"; rev = gitRev; - sha256 = "19ir3y5ipmfyygcn8mbxika4j3af6dfrv54dvhn6maz7dy8h30f4"; + sha256 = "0azjdkbixz2pyk2yy7a0ya5xk60xgw3l2pd4pj4ijyqxx5jmh0sy"; }; patches = [ ./paths-fix.patch ]; diff --git a/pkgs/applications/graphics/rapcad/default.nix b/pkgs/applications/graphics/rapcad/default.nix index d5d6e27219fa..55c083ba71f3 100644 --- a/pkgs/applications/graphics/rapcad/default.nix +++ b/pkgs/applications/graphics/rapcad/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/GilesBathgate/RapCAD.git"; rev = "refs/tags/v${version}"; - sha256 = "15c18jvgbwyrfhv7r35ih0gzx35vjlsbi984h1sckgh2z17hjq8l"; + sha256 = "1i5h4sw7mdbpdbssmbjccwgidndrsc606zz4wy9pjsg2wzrabw7x"; }; buildInputs = [ qtbase qmakeHook cgal boost gmp mpfr flex bison dxflib readline mesa_glu ]; diff --git a/pkgs/applications/graphics/sane/backends/git.nix b/pkgs/applications/graphics/sane/backends/git.nix index f7ea901e41bb..a56b6b0b8406 100644 --- a/pkgs/applications/graphics/sane/backends/git.nix +++ b/pkgs/applications/graphics/sane/backends/git.nix @@ -3,7 +3,7 @@ callPackage ./generic.nix (args // { version = "2016-05-09"; src = fetchgit { - sha256 = "5e3d647503d1231395a6782c6aa536b52b3d45585a87a0600ce0aca8b422cf82"; + sha256 = "17y2l59vz2l0y5ya89390x6lim75p1mp8s5c2wzp9l4d5fy8j8dd"; rev = "1e013654cc3af09f4731ab9ec8d8324d03a7de4a"; url = "git://alioth.debian.org/git/sane/sane-backends.git"; }; diff --git a/pkgs/applications/graphics/solvespace/default.nix b/pkgs/applications/graphics/solvespace/default.nix index 069eea3b521b..d45001865023 100644 --- a/pkgs/applications/graphics/solvespace/default.nix +++ b/pkgs/applications/graphics/solvespace/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { name = "solvespace-2.0"; src = fetchgit { url = "https://github.com/jwesthues/solvespace.git"; - sha256 = "0sakxkmj2f0k27f67wy1xz2skpnwzg15yqrf7av97pgc5s8xb3da"; + sha256 = "0m6zlx1kiqxkm6szdsnywwr6spnb7xjg6vqsq30nrr44cx37w861"; rev = "e587d0e"; }; diff --git a/pkgs/applications/misc/cgminer/default.nix b/pkgs/applications/misc/cgminer/default.nix index 3247cb609fa6..8f2d7c4f17f2 100644 --- a/pkgs/applications/misc/cgminer/default.nix +++ b/pkgs/applications/misc/cgminer/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/ckolivas/cgminer.git"; rev = "refs/tags/v3.7.2"; - sha256 = "0hl71328l19rlclajb6k9xsqybm2ln8g44p788gijpw4laj9yli6"; + sha256 = "1xfzx91dpwjj1vmhas3v9ybs0p2i74lrhinijmpav15acfggm9fq"; }; buildInputs = [ diff --git a/pkgs/applications/misc/cli-visualizer/default.nix b/pkgs/applications/misc/cli-visualizer/default.nix index e24c99216ea2..6b9856a996ac 100644 --- a/pkgs/applications/misc/cli-visualizer/default.nix +++ b/pkgs/applications/misc/cli-visualizer/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/dpayne/cli-visualizer.git"; rev = "bc0104eb57e7a0b3821510bc8f93cf5d1154fa8e"; - sha256 = "7b0c69a16b4854149522e2d0ec544412fb368cecba771d1e9481330ed86c8cb7"; + sha256 = "16768gyi85mkizfn874q2q9xf32knw08z27si3k5bk99492dxwzw"; }; buildInputs = [ fftw ncurses libpulseaudio ]; diff --git a/pkgs/applications/misc/cool-retro-term/default.nix b/pkgs/applications/misc/cool-retro-term/default.nix index 9ffa36adc123..9ff27c747091 100644 --- a/pkgs/applications/misc/cool-retro-term/default.nix +++ b/pkgs/applications/misc/cool-retro-term/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/Swordfish90/cool-retro-term.git"; rev = "refs/tags/v${version}"; - sha256 = "042ikarg6n0c09niwrm987pkzi8xjxxdrg2nqvk9pj7lgmmkkfn1"; + sha256 = "19sf9ppp2xzwfjwmdqgq9pils4yafsz662n1h65sv5aq04c7gmxs"; fetchSubmodules = false; }; diff --git a/pkgs/applications/misc/evopedia/default.nix b/pkgs/applications/misc/evopedia/default.nix index b235da697d54..4a9c2b60006b 100644 --- a/pkgs/applications/misc/evopedia/default.nix +++ b/pkgs/applications/misc/evopedia/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/evopedia/evopedia_qt; rev = "refs/tags/v${version}"; - sha256 = "1biq9zaj8nhxx1pixidsn97iwp9qy1yslgl0znpa4d4p35jcg48g"; + sha256 = "0snp5qiywj306kfaywvkl7j34fivgxcb8dids1lzmbqq5xcpqqvc"; }; buildInputs = [ bzip2 qt4 libX11 ]; diff --git a/pkgs/applications/misc/finalterm/default.nix b/pkgs/applications/misc/finalterm/default.nix index 2cb22cd62fc8..9ab9facef5b7 100644 --- a/pkgs/applications/misc/finalterm/default.nix +++ b/pkgs/applications/misc/finalterm/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/p-e-w/finalterm.git"; rev = "39b078b2a96a5c3c9e74f92b1929f383d220ca8b"; - sha256 = "c3ec9b36692b66a3aaa3125b2947c83beda4705b6d6f4a10b9bde9d8db8367c5"; + sha256 = "14viln5nabr39lafg1lzf6ydibz1h5d9346drp435ljxc6wsh21i"; }; buildInputs = [ diff --git a/pkgs/applications/misc/hackrf/default.nix b/pkgs/applications/misc/hackrf/default.nix index efe7c96b608f..e92cd4cdaccd 100644 --- a/pkgs/applications/misc/hackrf/default.nix +++ b/pkgs/applications/misc/hackrf/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/mossmann/hackrf"; rev = "refs/tags/v${version}"; - sha256 = "0wa4m0kdq8q2ib724w8ry8shmmm1liaaawhjygrjx6zxz9jxr3vm"; + sha256 = "1mn11yz6hbkmvrbxj5vnp78m5dsny96821a9ffpvbdcwx3s2p23m"; }; buildInputs = [ diff --git a/pkgs/applications/misc/kgocode/default.nix b/pkgs/applications/misc/kgocode/default.nix index 963be70c0c26..3088b5b3c653 100644 --- a/pkgs/applications/misc/kgocode/default.nix +++ b/pkgs/applications/misc/kgocode/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://bitbucket.org/lucashnegri/kgocode.git; rev = "024536e4b2f371db4f51c1d80fb6b444352ff6a6"; - sha256 = "1cjxcy4w46rbx90jrikklh9vw7nz641gq7xlvrq3pjsszxn537gq"; + sha256 = "10q4nvx3wz5wl3wwpfprz26j4x59s41bpdgafbg6604im58hklal"; }; meta = with stdenv.lib; { diff --git a/pkgs/applications/misc/llpp/default.nix b/pkgs/applications/misc/llpp/default.nix index 9d9b69f59588..42bfe698a9b6 100644 --- a/pkgs/applications/misc/llpp/default.nix +++ b/pkgs/applications/misc/llpp/default.nix @@ -9,7 +9,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://repo.or.cz/llpp.git"; rev = "e9fe06d684b145a104cc319673076e069e853cac"; - sha256 = "0x3hgn6sfjln2sqdw40ylcj943rn732a6mlfwz01llx8ykiyvsvq"; + sha256 = "0w6kdjmh6jp5j88m213r0dg66ma42nxl6j4hjy4xnhkf52mg0iwx"; fetchSubmodules = false; }; diff --git a/pkgs/applications/misc/loxodo/default.nix b/pkgs/applications/misc/loxodo/default.nix index f4243285e8e6..7a877afb0c3a 100644 --- a/pkgs/applications/misc/loxodo/default.nix +++ b/pkgs/applications/misc/loxodo/default.nix @@ -9,7 +9,7 @@ py.buildPythonApplication rec { src = fetchgit { url = "https://github.com/sommer/loxodo.git"; rev = "6c56efb4511fd6f645ad0f8eb3deafc8071c5795"; - sha256 = "02whmv4am8cz401rplplqzbipkyf0wd69z43sd3yw05rh7f3xbs2"; + sha256 = "1cg0dfcv57ps54f1a0ksib7hgkrbdi9q699w302xyyfyvjcb5dd2"; }; propagatedBuildInputs = with py; [ wxPython python.modules.readline ]; diff --git a/pkgs/applications/misc/redis-desktop-manager/default.nix b/pkgs/applications/misc/redis-desktop-manager/default.nix index 7a1ed08ebf64..d4da0fbd314d 100644 --- a/pkgs/applications/misc/redis-desktop-manager/default.nix +++ b/pkgs/applications/misc/redis-desktop-manager/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation rec { url = "https://github.com/uglide/RedisDesktopManager.git"; fetchSubmodules = true; rev = "refs/tags/${version}"; - sha256 = "08969xwqpjgvfa195dxskpr54p4mnapgfykcffpqpczp990ak1l6"; + sha256 = "0a7xa39qp1q32zkypw32mm3wi8wbhxhvrm6l3xsa3k1jzih7hzxr"; }; nativeBuildInputs = [ makeQtWrapper qmakeHook ]; diff --git a/pkgs/applications/misc/rtl-sdr/default.nix b/pkgs/applications/misc/rtl-sdr/default.nix index defe6eb2df1f..fb6e9e86e599 100644 --- a/pkgs/applications/misc/rtl-sdr/default.nix +++ b/pkgs/applications/misc/rtl-sdr/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.osmocom.org/rtl-sdr.git"; rev = "refs/tags/v${version}"; - sha256 = "00r5d08r12zzkd0xggd7l7p4r2278rzdhqdaihwjlajmr9qd3hs1"; + sha256 = "1dh52xcvxkjb3mj80wlm20grz8cqf5wipx2ksi91ascz12b5pym6"; }; buildInputs = [ cmake pkgconfig libusb1 ]; diff --git a/pkgs/applications/misc/slic3r/default.nix b/pkgs/applications/misc/slic3r/default.nix index 5dd9795fba05..6d7ec762e77f 100644 --- a/pkgs/applications/misc/slic3r/default.nix +++ b/pkgs/applications/misc/slic3r/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/alexrj/Slic3r"; rev = "refs/tags/${version}"; - sha256 = "1xwl8ay5m6pwrrnhbmnmpwyh4wc8hsi4ldzgq98f4bh6szj6jh4z"; + sha256 = "1z8h11k29b7z49z5k8ikyfiijyycy1q3krlzi8hfd0vdybvymw21"; }; buildInputs = with perlPackages; [ perl makeWrapper which diff --git a/pkgs/applications/misc/stag/default.nix b/pkgs/applications/misc/stag/default.nix index 8856e5be52fa..5776cf698b8e 100644 --- a/pkgs/applications/misc/stag/default.nix +++ b/pkgs/applications/misc/stag/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/seenaburns/stag.git; rev = "90e2964959ea8242349250640d24cee3d1966ad6"; - sha256 = "88628dfa07a0772c7eca0cc66ef2d8f3e20297deec021c776a82fe1323bafb0f"; + sha256 = "1yrzjhcwrxrxq5jj695wvpgb0pz047m88yq5n5ymkcw5qr78fy1v"; }; buildInputs = [ stdenv curses ]; diff --git a/pkgs/applications/misc/super_user_spark/default.nix b/pkgs/applications/misc/super_user_spark/default.nix index 0b89e6a61528..1b6167c61962 100644 --- a/pkgs/applications/misc/super_user_spark/default.nix +++ b/pkgs/applications/misc/super_user_spark/default.nix @@ -8,7 +8,7 @@ mkDerivation { version = "0.2.0.3"; src = fetchgit { url = "https://github.com/NorfairKing/super-user-spark"; - sha256 = "718b6760e76377aa37b145d0dff690b293325b510ce05d239c4fa28538420931"; + sha256 = "1w9c2b1fxqxp2q5jxsvnrfqvyvpk8q70qqsgzshmghx0yylx9cns"; rev = "a7d132f7631649c3a093ede286e66f78e9793fba"; }; isLibrary = false; diff --git a/pkgs/applications/misc/termite/default.nix b/pkgs/applications/misc/termite/default.nix index 849e746f4d9f..33bc29f871c7 100644 --- a/pkgs/applications/misc/termite/default.nix +++ b/pkgs/applications/misc/termite/default.nix @@ -10,7 +10,7 @@ let src = fetchgit { url = "https://github.com/thestinger/termite"; rev = "refs/tags/v${version}"; - sha256 = "1k91nw19c0p5ghqhs00mn9npa91idfkyiwik3ng6hb4jbnblp5ph"; + sha256 = "1cw4yw7n9m2si8b7zcfyz9pyihncabxm5g39v1mxslfajxgwzmd8"; }; makeFlags = [ "VERSION=v${version}" "PREFIX=" "DESTDIR=$(out)" ]; diff --git a/pkgs/applications/misc/timewarrior/default.nix b/pkgs/applications/misc/timewarrior/default.nix index a7afa6562fa5..0946f6d49751 100644 --- a/pkgs/applications/misc/timewarrior/default.nix +++ b/pkgs/applications/misc/timewarrior/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://git.tasktools.org/scm/tm/timew.git"; rev = "2175849a81ddd03707dca7b4c9d69d8fa11e35f7"; - sha256 = "1c55a5jsm9n2zcyskklhqiclnlb2pz2h7klbzx481nsn62xd6bbg"; + sha256 = "0clhbm6093wnvpq0ypvx95095amvlzab0sz9kiflasw9mgnwisrv"; }; nativeBuildInputs = [ cmake ]; diff --git a/pkgs/applications/misc/twmn/default.nix b/pkgs/applications/misc/twmn/default.nix index 665e23237d8e..06ae708db2bc 100644 --- a/pkgs/applications/misc/twmn/default.nix +++ b/pkgs/applications/misc/twmn/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/sboli/twmn.git"; rev = "9492a47e25547e602dd57efd807033677c90b150"; - sha256 = "9c91e9d3d6d7f9d90d34da6f1a4b9f3dee65605c1e43729417d6921c54dded6b"; + sha256 = "1a68gka9gyxyzhc9rn8df59rzcdwkjw90cxp1kk0rdfp6svhxhsa"; }; buildInputs = [ qtbase qtx11extras pkgconfig boost qmakeHook ]; diff --git a/pkgs/applications/networking/browsers/conkeror/default.nix b/pkgs/applications/networking/browsers/conkeror/default.nix index 322146374468..abe3a0711380 100644 --- a/pkgs/applications/networking/browsers/conkeror/default.nix +++ b/pkgs/applications/networking/browsers/conkeror/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://repo.or.cz/conkeror.git; rev = "3e4732cd0d15aa70121fe0a0403103b777c964bf"; - sha256 = "1c4ri6011wqnkkz1gcn4l6dkvz693mycwqgncbanhydmy8pcb7jk"; + sha256 = "1299b1kdfd2vip3w02jzvj2i8scjpsvpx19d2c8ms2pizz7xxmp4"; }; buildInputs = [ unzip makeWrapper ]; diff --git a/pkgs/applications/networking/browsers/dwb/default.nix b/pkgs/applications/networking/browsers/dwb/default.nix index 2a8d8d753c80..60935b9605fe 100644 --- a/pkgs/applications/networking/browsers/dwb/default.nix +++ b/pkgs/applications/networking/browsers/dwb/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://bitbucket.org/portix/dwb"; rev = "7fb82bc1db36a5d1d2436088c9b58054d2c51f96"; - sha256 = "16y3cfk4bq89d1lzpj4ci4gq9cx5m2br5i7kmw5rv396527yvn0i"; + sha256 = "1wg7pslcx7z4fw595a3nbnygxy2bwfj0h377i48mxhddvl3wzzbq"; }; buildInputs = [ pkgconfig makeWrapper gsettings_desktop_schemas libsoup diff --git a/pkgs/applications/networking/browsers/jumanji/default.nix b/pkgs/applications/networking/browsers/jumanji/default.nix index ce9b94409072..b1d77afa8f1f 100644 --- a/pkgs/applications/networking/browsers/jumanji/default.nix +++ b/pkgs/applications/networking/browsers/jumanji/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://git.pwmt.org/pwmt/jumanji.git; rev = "f8e04e5b5a9fec47d49ca63a096e5d35be281151"; - sha256 = "1xq06iabr4y76faf4w1cx6fhwdksfsxggz1ndny7icniwjzk98h9"; + sha256 = "1dsbyz489fx7dp07i29q1rjkl7nhrfscc8ks8an2rdyhx3457asg"; }; buildInputs = [ girara pkgconfig gtk webkitgtk makeWrapper gsettings_desktop_schemas ]; diff --git a/pkgs/applications/networking/browsers/kwebkitpart/default.nix b/pkgs/applications/networking/browsers/kwebkitpart/default.nix index 173ffcb93304..56147883f4be 100644 --- a/pkgs/applications/networking/browsers/kwebkitpart/default.nix +++ b/pkgs/applications/networking/browsers/kwebkitpart/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://anongit.kde.org/kwebkitpart; rev = "refs/tags/v${version}"; - sha256 = "0kszffgg3zpf319lmzlmdba5gq8kdr5xwb69xwy4s2abc9nvwvbi"; + sha256 = "13vfv88njml7x67a37ymmlv9qs30fkmvkq0278lp7llmvp5qnxcj"; }; patches = [ ./CVE-2014-8600.diff ]; diff --git a/pkgs/applications/networking/cluster/chronos/default.nix b/pkgs/applications/networking/cluster/chronos/default.nix index 974c085bdc16..bc9023a222f6 100644 --- a/pkgs/applications/networking/cluster/chronos/default.nix +++ b/pkgs/applications/networking/cluster/chronos/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/airbnb/chronos"; rev = version; - sha256 = "6c463c30530dc82276d30087e7ab08d6964b884232c0a93f691cef9fa1ff2651"; + sha256 = "0hrln3ad2g2cq2xqmy5mq32cdxxb9vb6v6jp6kcq03f8km6v3g9c"; }; buildInputs = [ makeWrapper curl jdk maven nodejs mesos ]; diff --git a/pkgs/applications/networking/cluster/openshift/default.nix b/pkgs/applications/networking/cluster/openshift/default.nix index e5f813fcd7d5..c82d671a5232 100644 --- a/pkgs/applications/networking/cluster/openshift/default.nix +++ b/pkgs/applications/networking/cluster/openshift/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/openshift/origin.git; rev = "1b601951daa44964c9bc7e4a2264d65489e3a58c"; - sha256 = "0nwyj3cgajmbd356w0362zxkd3p3pply58an2bmi3d3bswp3k89g"; + sha256 = "0hvipgnkpph81jx6h6bar49j5zkrxzi6h71b4y75c0l7af129wdi"; leaveDotGit = true; deepClone = true; }; diff --git a/pkgs/applications/networking/cluster/panamax/api/default.nix b/pkgs/applications/networking/cluster/panamax/api/default.nix index ee74e665b0c7..2b801ec1acf3 100644 --- a/pkgs/applications/networking/cluster/panamax/api/default.nix +++ b/pkgs/applications/networking/cluster/panamax/api/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { src = fetchgit { rev = "refs/tags/v${version}"; url = "git://github.com/CenturyLinkLabs/panamax-api"; - sha256 = "1g75y25asj33gcczpb9iwnk6f7afm1xjqyw803rr3y2h7dm6jivy"; + sha256 = "0dqg0fbmy5cgjh0ql8yqlybhjyyrslgghjrc24wjhd1rghjn2qi6"; }; buildInputs = [ makeWrapper sqlite openssl env.ruby bundler ]; diff --git a/pkgs/applications/networking/cluster/panamax/ui/default.nix b/pkgs/applications/networking/cluster/panamax/ui/default.nix index 88e0efc18a64..fbeb3de810f3 100644 --- a/pkgs/applications/networking/cluster/panamax/ui/default.nix +++ b/pkgs/applications/networking/cluster/panamax/ui/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { src = fetchgit { rev = "refs/tags/v${version}"; url = "git://github.com/CenturyLinkLabs/panamax-ui"; - sha256 = "0vwy0gazfx3zkf2bx862jspidgn5p97d3jaq99x38qfhxp554sn9"; + sha256 = "01k0h0rjqp5arvwxm2xpfxjsag5qw0qqlg7hx4v8f6jsyc4wmjfl"; }; buildInputs = [ makeWrapper env.ruby openssl sqlite bundler ]; diff --git a/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix b/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix index 99196cdf796b..4dbd0d5e854a 100644 --- a/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix +++ b/pkgs/applications/networking/feedreaders/newsbeuter/dev.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/akrennmair/newsbeuter.git"; rev = "1427bdb0705806368db39576a9b803df82fa0415"; - sha256 = "b29a304a46bf56b439d0d35ea586f7fd0fbf1a5565dca95de76e774885d8b64b"; + sha256 = "1g47b8pxkz84r5m3avkjb7p2i88crcrp9gxwhq7xdfywrgg9pgnd"; }; buildInputs diff --git a/pkgs/applications/networking/instant-messengers/freetalk/default.nix b/pkgs/applications/networking/instant-messengers/freetalk/default.nix index cc90c9c125c3..01707dd1ff32 100644 --- a/pkgs/applications/networking/instant-messengers/freetalk/default.nix +++ b/pkgs/applications/networking/instant-messengers/freetalk/default.nix @@ -11,7 +11,7 @@ let name="${baseName}-${version}"; url="https://github.com/GNUFreetalk/freetalk"; rev = "refs/tags/v${version}"; - sha256="0vh6snkd66gdzimdiyy9idhsip60d5xc7qh4w48k7n8h93ydrb2b"; + sha256="1wr3q40f4gwmr0vm6w07d5vzr65q6llk9xxq75klpcj83va5l3xv"; }; buildInputs = [ guile pkgconfig glib loudmouth gmp libidn readline libtool diff --git a/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix index ba7396db9d67..c25bfb42eb12 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin-plugins/pidgin-mra/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/dreadatour/pidgin-mra"; rev = "${version}"; - sha256 = "1nhfx9gi5lhh2xjr9rw600bb53ly2nwiqq422vc0f297qkm1q9y0"; + sha256 = "1adq57g11kw7bfpivyvfk3nlpjkc8raiw4bzn3gn4nx3m0wl99vw"; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix index bc517cadf522..f0c99841c1b0 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/cutegram/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/Aseman-Land/Cutegram.git"; rev = "1dbe2792fb5a1760339379907f906e236c09db84"; - sha256 = "080153bpa92jpi0zdrfajrn0yqy3jp8m4704sirbz46dv7471rzl"; + sha256 = "146vd3ri05da2asxjjxibnqmb685lgwl2kaz7mwb7ja7vi4149f0"; }; buildInputs = diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix index 527d61832861..3e9ebf3fe93f 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/vysheng/tg.git"; - sha256 = "07x6172nyipbz4bk7n417a2ydj5r7y1ch2zl3hp79nckfw11fix7"; + sha256 = "07sss5cnw2ygd7mp8f5532lmj7qm6ywqf4cjaq5g13i8igzqzwzj"; rev = "6547c0b21b977b327b3c5e8142963f4bc246187a"; }; diff --git a/pkgs/applications/networking/irc/communi/default.nix b/pkgs/applications/networking/irc/communi/default.nix index 4a8dc44dbf92..382044bec5a7 100644 --- a/pkgs/applications/networking/irc/communi/default.nix +++ b/pkgs/applications/networking/irc/communi/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/communi/communi-desktop.git"; rev = "ad1b9a30ed6c51940c0d2714b126a32b5d68c876"; - sha256 = "0gk6gck09zb44qfsal7bs4ln2vl9s9x3vfxh7jvfc7mmf7l3sspd"; + sha256 = "0jx963pfvzk4dbk8mrmzfrhzybk5y6ib9yzaj662wliayrzj7vpg"; }; nativeBuildInputs = [ makeQtWrapper qmakeHook ]; diff --git a/pkgs/applications/networking/mailreaders/mailpile/default.nix b/pkgs/applications/networking/mailreaders/mailpile/default.nix index 9d6a93e95ba2..4a37c4e86793 100644 --- a/pkgs/applications/networking/mailreaders/mailpile/default.nix +++ b/pkgs/applications/networking/mailreaders/mailpile/default.nix @@ -7,7 +7,7 @@ pythonPackages.buildPythonApplication rec { src = fetchgit { url = "git://github.com/pagekite/Mailpile"; rev = "refs/tags/${version}"; - sha256 = "0h84cc9kwb0m4admqjkpg4pllxlh095rmzvrql45kz71fpnxs780"; + sha256 = "118b5zwfwmzj38p0mkj3r1s09jxg8x38y0a42b21imzpmli5vpb5"; }; patchPhase = '' diff --git a/pkgs/applications/networking/mumble/default.nix b/pkgs/applications/networking/mumble/default.nix index 53fa7146257f..2ac4f76c7361 100644 --- a/pkgs/applications/networking/mumble/default.nix +++ b/pkgs/applications/networking/mumble/default.nix @@ -124,7 +124,7 @@ let src = fetchgit { url = "https://github.com/mumble-voip/mumble"; rev = "0502fa67b036bae9f07a586d9f05a8bf74c24291"; - sha256 = "073v8nway17j1n1lm70x508722b1q3vb6h4fvmcbbma3d22y1h45"; + sha256 = "07c1r26i0b5z7i787nr4mc60799skdzsh764ckk3gdi76agp2r2z"; }; }; in { diff --git a/pkgs/applications/networking/ostinato/default.nix b/pkgs/applications/networking/ostinato/default.nix index 022096450458..941ed60f9aff 100644 --- a/pkgs/applications/networking/ostinato/default.nix +++ b/pkgs/applications/networking/ostinato/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/pstavirs/ostinato.git"; rev = "414d89860de0987843295d149bcabeac7c6fd9e5"; - sha256 = "0hb78bq51r93p0yr4l1z5xlf1i666v5pa3zkdj7jmpb879kj05dx"; + sha256 = "1yif8z8ih027jdsgnxd82z9914wrqpkpi4xgxqv9lygnb2jjjrdx"; }; ostinato_png = fetchurl { diff --git a/pkgs/applications/networking/p2p/opentracker/default.nix b/pkgs/applications/networking/p2p/opentracker/default.nix index 29dbd086a779..52378bac55ed 100644 --- a/pkgs/applications/networking/p2p/opentracker/default.nix +++ b/pkgs/applications/networking/p2p/opentracker/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/masroore/opentracker.git"; rev = "9a26b3d203755577879315ecc2b515d0e22793cb"; - sha256 = "74a7a6cbe80932fefb1698524809ce89be696f0fe3afd38fcb2b99fa59c9c891"; + sha256 = "1ayj3j9jv6h26jfhw93wcw7lvhwyfnc20kkicvskalwzw51mpsz8"; }; buildInputs = [ libowfat zlib ]; diff --git a/pkgs/applications/networking/znc/modules.nix b/pkgs/applications/networking/znc/modules.nix index 802c5f5ecb77..492850bda1cd 100644 --- a/pkgs/applications/networking/znc/modules.nix +++ b/pkgs/applications/networking/znc/modules.nix @@ -23,7 +23,7 @@ in rec { src = fetchgit { url = meta.repositories.git; rev = "fe0f368e1fcab2b89d5c94209822d9b616cea840"; - sha256 = "1knbkj1dm45s741qndsfclmk3pyxnihgwq2i1n75ip3wv8i1bf4b"; + sha256 = "1s8bqqlwy9kmcpmavil558rd2b0wigjlzp2lpqpcqrd1cg25g4a7"; }; meta = with stdenv.lib; { @@ -63,7 +63,7 @@ in rec { src = fetchgit { url = meta.repositories.git; rev = "8691abf75becc1f3d7b5bb5ad68dad17cd21863b"; - sha256 = "0pd89p00yfir4lvw0107lc3qxzx8bgbm5lqq0lpwb6cahv3ipdra"; + sha256 = "0mgfajljy035051b2sx70i8xrb51zw9q2z64kf85zw1lynihzyh4"; }; meta = with stdenv.lib; { @@ -101,7 +101,7 @@ in rec { src = fetchgit { url = "https://github.com/jreese/znc-push.git"; rev = "717a2b1741eee75456b0862ef76dbb5af906e936"; - sha256 = "1lr5bhcy8156f7sbah7kjgz4g4mhkkwgvwjd2rxpbwnpq3ssza9k"; + sha256 = "1ih1hf11mqgi0cfh6v70v3b93xrw83xcb80psmijcqxi7kwjn404"; }; meta = { diff --git a/pkgs/applications/office/ledger/default.nix b/pkgs/applications/office/ledger/default.nix index 205b502a17f1..44135928a62a 100644 --- a/pkgs/applications/office/ledger/default.nix +++ b/pkgs/applications/office/ledger/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/ledger/ledger.git"; rev = "refs/tags/v${version}"; - sha256 = "1l5y4k830jyw7n1nnhssci3qahq091fj5cxcr77znk20nclz851s"; + sha256 = "07r8ds4qdzgicfdf0ar3kp1zn09ami87jkrx1yn5k7hi8n4ns0ka"; }; buildInputs = [ cmake boost gmp mpfr libedit python texinfo gnused ]; diff --git a/pkgs/applications/science/electronics/gerbv/default.nix b/pkgs/applications/science/electronics/gerbv/default.nix index 5a86ff3e5f83..92d0ceba1cfe 100644 --- a/pkgs/applications/science/electronics/gerbv/default.nix +++ b/pkgs/applications/science/electronics/gerbv/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.geda-project.org/gerbv.git; rev = "76b8b67bfa10823ce98f1c4c3b49a2afcadf7659"; - sha256 = "1l2x8sb1c3gq00i71fdndkqwa7148mrranayafqw9pq63869l92w"; + sha256 = "00jn1xhf6kblxc5gac1wvk8zm12fy6sk81nj3jwdag0z6wk3z446"; }; buildInputs = [ pkgconfig gettext libtool automake autoconf cairo gtk autoreconfHook ]; diff --git a/pkgs/applications/science/logic/coq/HEAD.nix b/pkgs/applications/science/logic/coq/HEAD.nix index 3656b5cab191..86935b178d99 100644 --- a/pkgs/applications/science/logic/coq/HEAD.nix +++ b/pkgs/applications/science/logic/coq/HEAD.nix @@ -25,7 +25,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://scm.gforge.inria.fr/coq/coq.git; rev = "0c999f02ffcd61fcace0cc2d045056a82992a100"; - sha256 = "1wk9lxdmw152665hr5cvnnzgnbbq7kg2845qkb4ag99nnfpsi26s"; + sha256 = "08z9z4bv4a8ha1jrn18vxad6d7y7h92ggr00rx8jfvvi290n9344"; }; buildInputs = [ pkgconfig ocaml findlib camlp5 ncurses lablgtk ]; diff --git a/pkgs/applications/science/logic/jonprl/default.nix b/pkgs/applications/science/logic/jonprl/default.nix index 57cbc0e52418..12891697a702 100644 --- a/pkgs/applications/science/logic/jonprl/default.nix +++ b/pkgs/applications/science/logic/jonprl/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/jonsterling/JonPRL.git"; deepClone = true; rev = "refs/tags/v${version}"; - sha256 = "09m1vb41vxvqnk78gm9inip1abknkywij30rghvym93q460cl2hm"; + sha256 = "0czs13syvnw8fz24d075n4pmsyfs8rs8c7ksmvd7cgb3h55fvp4p"; }; buildInputs = [ smlnj which ]; diff --git a/pkgs/applications/science/math/pcalc/default.nix b/pkgs/applications/science/math/pcalc/default.nix index c291c0ce6e5b..3e7d9898a656 100644 --- a/pkgs/applications/science/math/pcalc/default.nix +++ b/pkgs/applications/science/math/pcalc/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.code.sf.net/p/pcalc/code; rev = "181d60d3c880da4344fef7138065943eb3b9255f"; - sha256 = "0n60m3p4kkqvvswjf50mnfaaacmzi1lss8vgy63mrgzwi9v6yb4l"; + sha256 = "1hd5bh20j5xzvv6qa0fmzmv0h8sf38r7zgi7y0b6nk17pjq33v90"; }; makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ]; diff --git a/pkgs/applications/science/misc/openmodelica/src-main.nix b/pkgs/applications/science/misc/openmodelica/src-main.nix index 16910675a05b..99e82259bfe6 100644 --- a/pkgs/applications/science/misc/openmodelica/src-main.nix +++ b/pkgs/applications/science/misc/openmodelica/src-main.nix @@ -2,5 +2,5 @@ url = "https://openmodelica.org/git-readonly/OpenModelica.git"; fetchSubmodules = true; rev = "8c5d48eb31a638d5220621b20377bfe6f9e9535e"; - sha256 = "15r0qpvnsb9a7nw3bh5n9r770ngd7p5py0ld2jy5mc4llaslkpa5"; + sha256 = "0i5cznkh4wwayjqms14f3phizqm493nrr1yjgs9747nfw7vnwsff"; } diff --git a/pkgs/applications/science/robotics/qgroundcontrol/default.nix b/pkgs/applications/science/robotics/qgroundcontrol/default.nix index 676c5013bcd7..b67da5b55162 100644 --- a/pkgs/applications/science/robotics/qgroundcontrol/default.nix +++ b/pkgs/applications/science/robotics/qgroundcontrol/default.nix @@ -74,7 +74,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/mavlink/qgroundcontrol.git"; rev = "refs/tags/v${version}"; - sha256 = "0rwn2ddlar58ydzdykvnab1anr4xzvb9x0sxx5rs037i49f6sqga"; + sha256 = "0isr0zamhvr853c94lblazkilil6zzmvf7afs3mxgn07jn9wrqz3"; fetchSubmodules = true; }; diff --git a/pkgs/applications/version-management/git-and-tools/darcs-to-git/default.nix b/pkgs/applications/version-management/git-and-tools/darcs-to-git/default.nix index 1b2ad45b56a9..abd10285da52 100644 --- a/pkgs/applications/version-management/git-and-tools/darcs-to-git/default.nix +++ b/pkgs/applications/version-management/git-and-tools/darcs-to-git/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/purcell/darcs-to-git.git"; rev = "e5fee32495908fe0f7d700644c7b37347b7a0a5b"; - sha256 = "0ycp7pzv9g9pgj25asiby3p3m5vg5czqf4rpy2mavjqhiblxlcv5"; + sha256 = "0lxcx0x0m1cv2j4x9ykpjf6r2zg6lh5rya016x93vkmlzxm3f0ji"; }; patchPhase = let diff --git a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix index ef681c9ba7dd..b0b3c94f5acc 100644 --- a/pkgs/applications/version-management/git-and-tools/fast-export/default.nix +++ b/pkgs/applications/version-management/git-and-tools/fast-export/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://repo.or.cz/fast-export.git; rev = "d202200fd9daa75cdb37d4cf067d4ca00e269535"; - sha256 = "1ci0jbprs7hqqzq4mqi5b9vlc43lmk2bn2kjx49bdjkqajvlicd7"; + sha256 = "0m4llsg9rx4sza1kf39kxsdvhi6y87a18wm5k19c5r2h3vpylwcc"; }; buildInputs = [mercurial.python mercurial makeWrapper subversion]; diff --git a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix index b5e1cdbcffb9..d924437c2e13 100644 --- a/pkgs/applications/version-management/git-and-tools/git-bz/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-bz/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { version = "3.2015-09-08"; src = fetchgit { - sha256 = "19d9c81d4eeabe87079d8f60e4cfa7303f776f5a7c9874642cf2bd188851d029"; + sha256 = "146z57m8nblgsxm4z6qnsvcy81p11d0w88v93ybacc6w21plh8hc"; rev = "e17bbae7a2ce454d9f69c32fc40066995d44913d"; url = "git://git.fishsoup.net/git-bz"; }; diff --git a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix index 512a8938a587..86a11d04ed7d 100644 --- a/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix +++ b/pkgs/applications/version-management/git-and-tools/git-remote-hg/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchgit { inherit rev; url = "git://github.com/fingolfin/git-remote-hg.git"; - sha256 = "7c61c8f2be47d96c4244f0f8a3c8f9b994994b15dbe1754581f746888d705463"; + sha256 = "0cmlfdxfabrs3x10mfjfap8wz67s8xk2pjn2wlcj9k2v84gji60m"; }; buildInputs = [ mercurial.python mercurial makeWrapper diff --git a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix index 076d5d5dfe01..e52fdb6375bf 100644 --- a/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix +++ b/pkgs/applications/version-management/git-and-tools/svn2git-kde/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = http://git.gitorious.org/svn2git/svn2git.git; rev = "149d6c6e14a1724c96999328683a9264fc508264"; - sha256 = "818673fe751b00a42b6ed3e78a783549fb09b5245a01dee47b3dded667bfc582"; + sha256 = "0gjxhnraizlwyidn66rczwc01f6sfx4ndmsj86ssqml3p0d4sl6q"; }; NIX_CFLAGS_COMPILE = [ "-I${apr.dev}/include/apr-1" "-I${subversion.dev}/include/subversion-1" "-DVER=\"${src.rev}\"" ]; diff --git a/pkgs/applications/video/byzanz/default.nix b/pkgs/applications/video/byzanz/default.nix index abacdf7a2d58..2d94cea0db9f 100644 --- a/pkgs/applications/video/byzanz/default.nix +++ b/pkgs/applications/video/byzanz/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/GNOME/byzanz; rev = "1875a7f6a3903b83f6b1d666965800f47db9286a"; - sha256 = "1b7hyilwj9wf2ri5zq63889bvskagdnqjc91hvyjmx1aj7vdkzd4"; + sha256 = "0a72fw2mxl8vdcdnzy0bwis4jk28pd7nc8qgr4vhyw5pd48dynvh"; }; patches = [ ./add-amflags.patch ]; diff --git a/pkgs/applications/video/cinelerra/default.nix b/pkgs/applications/video/cinelerra/default.nix index 94ec79e70d67..b250f9496d6a 100644 --- a/pkgs/applications/video/cinelerra/default.nix +++ b/pkgs/applications/video/cinelerra/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://git.cinelerra-cv.org/j6t/cinelerra.git"; rev = "01dc4375a0fb65d10dd95151473d0e195239175f"; - sha256 = "afb406a5637e4d0afad94e62ffd3af5b61e39f75aba9c08521523d00a0a5fec5"; + sha256 = "0grz644vrnajhxn96x05a3rlwrbd20yq40sw3y5yg7bvi96900gf"; }; # touch config.rpath: work around bug in automake 1.10 ? diff --git a/pkgs/applications/video/linuxstopmotion/default.nix b/pkgs/applications/video/linuxstopmotion/default.nix index 293bdd835b5d..fef2c1357747 100644 --- a/pkgs/applications/video/linuxstopmotion/default.nix +++ b/pkgs/applications/video/linuxstopmotion/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.code.sf.net/p/linuxstopmotion/code"; rev = "refs/tags/${version}"; - sha256 = "1xkkrhllgy2d7k0vrdj794ya7y3g3n7xh8c2qgnb26yrarz79dqj"; + sha256 = "19v9d0v3laiwi0f1n92lvj2s5s1mxsrfygna0xyw9pkcnk3b26q6"; }; buildInputs = [ pkgconfig qt4 SDL SDL_image libvorbis libtar libxml2 gamin qmake4Hook ]; diff --git a/pkgs/applications/video/mkvtoolnix/default.nix b/pkgs/applications/video/mkvtoolnix/default.nix index ca86906d3e19..4eeb733d9786 100644 --- a/pkgs/applications/video/mkvtoolnix/default.nix +++ b/pkgs/applications/video/mkvtoolnix/default.nix @@ -15,7 +15,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/mbunkus/mkvtoolnix.git"; rev = "54e6b52b3dde07f89da4542997ef059e18802128"; - sha256 = "1hm9f9q60c0axmmlsalazsiil8gk3v8q6cl5qxsfa95m51i39878"; + sha256 = "1gipydk1xisqy110rr38dgjzpxl8zxbm12kf7b2f4xh4iw17j0k2"; }; nativeBuildInputs = [ gettext ruby ]; diff --git a/pkgs/applications/virtualization/cbfstool/default.nix b/pkgs/applications/virtualization/cbfstool/default.nix index d99f569d7e6b..97ca3003fdd0 100644 --- a/pkgs/applications/virtualization/cbfstool/default.nix +++ b/pkgs/applications/virtualization/cbfstool/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "http://review.coreboot.org/p/coreboot"; rev = "5d866213f42fd22aed80abb5a91d74f6d485ac3f"; - sha256 = "148155829jbabsgg1inmcpqmwbg0fgp8a685bzybv9j4ibasi0z2"; + sha256 = "1fki5670pmz1wb0yg0a0hb5cap78mgbvdhj8m2xly2kndwicg40p"; }; buildInputs = [ iasl flex bison ]; diff --git a/pkgs/applications/window-managers/clfswm/default.nix b/pkgs/applications/window-managers/clfswm/default.nix index 5761d94526d1..97e399a133ef 100644 --- a/pkgs/applications/window-managers/clfswm/default.nix +++ b/pkgs/applications/window-managers/clfswm/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://gitlab.common-lisp.net/clfswm/clfswm.git"; rev = "refs/heads/master"; - sha256 = "1hkm6bn5xww932w34l13bg87m5hsnwnd0i1lka6sw0cq8whndya0"; + sha256 = "0hynzh3a1zr719cxfb0k4cvh5lskzs616hwn7p942isyvhwzhynd"; }; buildInputs = [ diff --git a/pkgs/applications/window-managers/kbdd/default.nix b/pkgs/applications/window-managers/kbdd/default.nix index 595f989ff4e8..9bbb8f161328 100644 --- a/pkgs/applications/window-managers/kbdd/default.nix +++ b/pkgs/applications/window-managers/kbdd/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/qnikst/kbdd; rev = "47dee0232f157cd865e43d92005a2ba107f6fd75"; - sha256 = "1b9a66d216326a9759cad26393fbf8259fe7a0c2dd1075047fc989f0e52d969f"; + sha256 = "1ys9w1lncsfg266g9sfnm95an2add3g51mryg0hnrzcqa4knz809"; }; buildInputs = [ pkgconfig xorg.libX11 dbus_glib autoreconfHook ]; diff --git a/pkgs/applications/window-managers/stumpwm/default.nix b/pkgs/applications/window-managers/stumpwm/default.nix index d19a537cadcb..bfbeb9739f1c 100644 --- a/pkgs/applications/window-managers/stumpwm/default.nix +++ b/pkgs/applications/window-managers/stumpwm/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/stumpwm/stumpwm"; rev = "refs/tags/${version}"; - sha256 = "05fkng2wlmhy3kb9zhrrv9zpa16g2p91p5y0wvmwkppy04cw04ps"; + sha256 = "0hmvbdk2yr5wrkiwn9dfzf65s4xc2qifj0sn6w2mghzp96cph79k"; }; buildInputs = [ diff --git a/pkgs/data/fonts/tewi/default.nix b/pkgs/data/fonts/tewi/default.nix index dfcc0578f000..2b2a71bf7b49 100644 --- a/pkgs/data/fonts/tewi/default.nix +++ b/pkgs/data/fonts/tewi/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/lucy/tewi-font"; rev = "ff930e66ae471da4fdc226ffe65fd1ccd13d4a69"; - sha256 = "d641b911cc2132a00c311e3d978c1ca454b0fb3bc3ff4b4742b9f765b765a94b"; + sha256 = "0c7k847cp68w20frzsdknpss2cwv3lp970asyybv65jxyl2jz3iq"; }; buildInputs = [ bdftopcf mkfontdir mkfontscale ]; diff --git a/pkgs/data/misc/wireless-regdb/default.nix b/pkgs/data/misc/wireless-regdb/default.nix index 37488c550d09..d7dfd60c27fc 100644 --- a/pkgs/data/misc/wireless-regdb/default.nix +++ b/pkgs/data/misc/wireless-regdb/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { version = "2016-05-02"; src = fetchgit { - sha256 = "04vqhhqm307bx63ihmli751r15b5vrp3011rj1addlkya56wflby"; + sha256 = "1qa741an242wi6gdikkr4ahanphfhwnjg8q2z3rsv8wdha91k895"; url = https://git.kernel.org/pub/scm/linux/kernel/git/sforshee/wireless-regdb.git; rev = "refs/tags/master-${version}"; }; diff --git a/pkgs/development/compilers/aldor/default.nix b/pkgs/development/compilers/aldor/default.nix index bcdeb2f19e81..352dde6d9e19 100644 --- a/pkgs/development/compilers/aldor/default.nix +++ b/pkgs/development/compilers/aldor/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/pippijn/aldor"; - sha256 = "1l9fc2cgwabifwbijcp293abc8hcv40nzx2w31jkxh8n0plbiczn"; + sha256 = "19v07ffq4r1gjnmg7a8ifgjkwan9a3rwbj0qjz8fycwy221844m6"; rev = "15471e75f3d65b93150f414ebcaf59a03054b68d"; }; diff --git a/pkgs/development/compilers/aliceml/default.nix b/pkgs/development/compilers/aliceml/default.nix index 01a8a337fc0a..a5900f2ce25a 100644 --- a/pkgs/development/compilers/aliceml/default.nix +++ b/pkgs/development/compilers/aliceml/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/aliceml/aliceml"; rev = "7d44dc8e4097c6f85888bbf4ff86d51fe05b0a08"; - sha256 = "ab2d5bf05c40905b02cb1ec975d4980ae4437757856eeb1f587ede2c45a1917f"; + sha256 = "1xpvia00cpig0i7qvz29sx7xjic6kd472ng722x4rapz8mjnf8bk"; fetchSubmodules = true; }; diff --git a/pkgs/development/compilers/chez/default.nix b/pkgs/development/compilers/chez/default.nix index 65200dce71ef..e4ceb40cad6e 100644 --- a/pkgs/development/compilers/chez/default.nix +++ b/pkgs/development/compilers/chez/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/cisco/chezscheme.git"; rev = "65df1d1f7c37f5b5a93cd7e5b475dda9dbafe03c"; - sha256 = "024x79xcdqp665xjyccpn02w6dmdvnhw0h0vdc42g9s5wv5ry92m"; + sha256 = "1b273il3njnn04z55w1hnygvcqllc6p5qg9mcwh10w39fwsd8fbs"; fetchSubmodules = true; }; diff --git a/pkgs/development/compilers/dtc/default.nix b/pkgs/development/compilers/dtc/default.nix index 6daf7a6115a3..4adcb995bde4 100644 --- a/pkgs/development/compilers/dtc/default.nix +++ b/pkgs/development/compilers/dtc/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.kernel.org/pub/scm/utils/dtc/dtc.git"; rev = "refs/tags/v${version}"; - sha256 = "0z7yrv0sdhsh5wwy7yd1fvs4pqaq0n9m5i8w65lyibg77ahkasdg"; + sha256 = "0wcn9x2vynwlfxk5c6jrf8lz7qvm1sbb9gh27drk1mx8msdh5hd5"; }; nativeBuildInputs = [ flex bison ]; diff --git a/pkgs/development/compilers/edk2/default.nix b/pkgs/development/compilers/edk2/default.nix index f68681e60232..99b652e0a5f3 100644 --- a/pkgs/development/compilers/edk2/default.nix +++ b/pkgs/development/compilers/edk2/default.nix @@ -15,7 +15,7 @@ edk2 = stdenv.mkDerivation { src = fetchgit { url = git://github.com/tianocore/edk2; rev = "684a565a04"; - sha256 = "1l46396f48v91z5b8lh3b0f0lcd7z5f86i1nrpc7l5gf7gx3117j"; + sha256 = "0s9ywb8w7xzlnmm4kwzykxkrdaw53b7pky121cc9wjkllzqwyxrb"; }; buildInputs = [ libuuid pythonFull ]; diff --git a/pkgs/development/compilers/elm/packages/elm-compiler.nix b/pkgs/development/compilers/elm/packages/elm-compiler.nix index ac0e2c236322..8bebdf4315a3 100644 --- a/pkgs/development/compilers/elm/packages/elm-compiler.nix +++ b/pkgs/development/compilers/elm/packages/elm-compiler.nix @@ -10,7 +10,7 @@ mkDerivation { version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-compiler"; - sha256 = "185mh53yyxh9m0z8808fxpds3vqyrbhahf587nnw6qzyzv63m7px"; + sha256 = "1vx4jp20nj4s41zsqnwyh80dvg7b7kd9fh6agl99v1xx9d3i6ws1"; rev = "c9c7e72c424a13255f8ee84c719f7ef48b689c1a"; }; isLibrary = true; diff --git a/pkgs/development/compilers/elm/packages/elm-make.nix b/pkgs/development/compilers/elm/packages/elm-make.nix index 862adb460e3e..1fe4acc9e3b9 100644 --- a/pkgs/development/compilers/elm/packages/elm-make.nix +++ b/pkgs/development/compilers/elm/packages/elm-make.nix @@ -8,7 +8,7 @@ mkDerivation { version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-make"; - sha256 = "0y8a67y8jhnhbcqzgjymyf1ffs75vyfpyb8as2bi0mkhb7fvzi6q"; + sha256 = "0ywi6iq2a3rb8a68ryqpq9y22536aa9k71wy7fcmrd5nwkmpwd2r"; rev = "5f7b74567c43eff341048c7caceb247b51cdb8bb"; }; isLibrary = false; diff --git a/pkgs/development/compilers/elm/packages/elm-package.nix b/pkgs/development/compilers/elm/packages/elm-package.nix index 5d2b4f8baba9..7df5516b27ad 100644 --- a/pkgs/development/compilers/elm/packages/elm-package.nix +++ b/pkgs/development/compilers/elm/packages/elm-package.nix @@ -9,7 +9,7 @@ mkDerivation { version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-package"; - sha256 = "1x9jczby38ax3rbjq6hbyr593dhxazm39gy9jv00k6508dzvfg2l"; + sha256 = "0z86560a2f7w3ywqvzqghgz100z0yn8zsiixkw4lp5168krp4axg"; rev = "fc0924210fe5a7c0af543769b1353dbb2ddf2f0c"; }; isLibrary = true; diff --git a/pkgs/development/compilers/elm/packages/elm-reactor.nix b/pkgs/development/compilers/elm/packages/elm-reactor.nix index 18bb428a7a6a..55b6b9ae416c 100644 --- a/pkgs/development/compilers/elm/packages/elm-reactor.nix +++ b/pkgs/development/compilers/elm/packages/elm-reactor.nix @@ -8,7 +8,7 @@ mkDerivation { version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-reactor"; - sha256 = "14hb16qwx1f4bfngh87pwjavgz6njbwdxlsy218rw3xydy3s1cn3"; + sha256 = "03lb6fcc5d02gflarxc54l71hbwdb73v423ffjz5hvlha6ixglv7"; rev = "4781ad2fbb6cbcde0d659dec293bbed9c847ba71"; }; isLibrary = false; diff --git a/pkgs/development/compilers/elm/packages/elm-repl.nix b/pkgs/development/compilers/elm/packages/elm-repl.nix index 4be7b023fa0f..030378e1811b 100644 --- a/pkgs/development/compilers/elm/packages/elm-repl.nix +++ b/pkgs/development/compilers/elm/packages/elm-repl.nix @@ -8,7 +8,7 @@ mkDerivation { version = "0.17"; src = fetchgit { url = "https://github.com/elm-lang/elm-repl"; - sha256 = "1mxg99w36b8i43kl1nxp7fd86igi5wyj08m9mraiq58vpcgyqnzq"; + sha256 = "0bpmkm7q3a0h4hwlbwcnzaqgf6n5p1qw65z8kw84f52s5bndc0wc"; rev = "95b4555cff6b6e2a55a4ea3dab00bfb39dfebf0d"; }; isLibrary = false; diff --git a/pkgs/development/compilers/eql/default.nix b/pkgs/development/compilers/eql/default.nix index de531e901d98..1128fbe64ec3 100644 --- a/pkgs/development/compilers/eql/default.nix +++ b/pkgs/development/compilers/eql/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { rev = "9097bf98446ee33c07bb155d800395775ce0d9b2"; url = "https://gitlab.com/eql/eql.git"; - sha256 = "1fp88xmmk1sa0iqxahfiv818bp2sbf66vqrd4xq9jb731ybdvsb8"; + sha256 = "17h23qr7fyr9hvjgiq0yhacmjs43x06vh8978aq42ymcgipxdcww"; }; buildInputs = [ ecl qt4 xorgserver xkbcomp xkeyboard_config ]; diff --git a/pkgs/development/compilers/haxe/default.nix b/pkgs/development/compilers/haxe/default.nix index 41c7a476b27b..f70fbcf583c2 100644 --- a/pkgs/development/compilers/haxe/default.nix +++ b/pkgs/development/compilers/haxe/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/HaxeFoundation/haxe.git"; - sha256 = "1p4yja6flv2r04q9lcrjxia3f3fsmhi3d88s0lz0nf0r4m61bjz0"; + sha256 = "0d8s9yqsqcbr2lfw4xnmg7vzgb6k1jq6hlwwaf1kmn9wxpvcc6x9"; fetchSubmodules = true; # Tag 3.1.3 diff --git a/pkgs/development/compilers/hhvm/default.nix b/pkgs/development/compilers/hhvm/default.nix index eb9e5f7d3627..59fb90d78cdf 100644 --- a/pkgs/development/compilers/hhvm/default.nix +++ b/pkgs/development/compilers/hhvm/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/facebook/hhvm.git"; rev = "f516f1bb9046218f89885a220354c19dda6d8f4d"; - sha256 = "1jdw6j394z7ksg4wdcnm7lkcs7iam5myx6k18w8hr595s1dfk3sj"; + sha256 = "0sv856ran15rvnrj4dk0a5jirip5w4336a0aycv9wh77wm4s8xdb"; fetchSubmodules = true; }; diff --git a/pkgs/development/compilers/julia/git.nix b/pkgs/development/compilers/julia/git.nix index 00c4730cf85f..60e71b353e82 100644 --- a/pkgs/development/compilers/julia/git.nix +++ b/pkgs/development/compilers/julia/git.nix @@ -55,7 +55,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/JuliaLang/${pname}"; rev = "cb93e6b70b4b1313b4de8c54e55e85c8eb43daa3"; - sha256 = "11dmbjqiidlbh8sj5s09zsbfslm3zs0kw7iq40281hl5dfsr7zm6"; + sha256 = "1xihq66il4wlxfm5fsgcirh76dq936fm887v2ynqkm3kz7ahhssw"; }; prePatch = '' diff --git a/pkgs/development/compilers/lessc/default.nix b/pkgs/development/compilers/lessc/default.nix index 82052b3d3ca9..3d7947dae7b6 100644 --- a/pkgs/development/compilers/lessc/default.nix +++ b/pkgs/development/compilers/lessc/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/less/less.js.git; rev = "refs/tags/v${version}"; - sha256 = "0r8bcad247v5fyh543a7dppmfbf49ai4my3vcizk42fsbnjs8q2x"; + sha256 = "1af1xbh1pjpfsx0jp69syji6w9750nigk652yk46jrja3z1scb4s"; }; phases = [ "installPhase" ]; diff --git a/pkgs/development/compilers/mkcl/default.nix b/pkgs/development/compilers/mkcl/default.nix index af1ebd6a1967..4d53ba20d081 100644 --- a/pkgs/development/compilers/mkcl/default.nix +++ b/pkgs/development/compilers/mkcl/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/jcbeaudoin/mkcl.git"; rev = "86768cc1dfc2cc9caa1fe9696584bb25ea6c1429"; - sha256 = "0ja7vyp5rjidb2a1gah35jqzqn6zjkikz5sd966p0f0wh26l6n03"; + sha256 = "1gsvjp9xlnjccg0idi8x8gzkn6hlrqia95jh3zx7snm894503mf1"; }; buildInputs = [ makeWrapper ]; diff --git a/pkgs/development/compilers/opa/default.nix b/pkgs/development/compilers/opa/default.nix index f0b503bd0be7..40c719262796 100644 --- a/pkgs/development/compilers/opa/default.nix +++ b/pkgs/development/compilers/opa/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/MLstate/opalang.git; rev = "047f58bfd4be35ee30176156b3718c707a6c0f76"; - sha256 = "1jbxfrmpbjjk7qvaxdn47044w5m8wr96q9yx65ib3wlapmjbvdvf"; + sha256 = "1laynwf64713q2vhdkxw679dah6hl3bvmrj8cj836a9k9z7jcc1r"; }; # Paths so the opa compiler code generation will use the same programs as were diff --git a/pkgs/development/compilers/opendylan/default.nix b/pkgs/development/compilers/opendylan/default.nix index 0e26526ba161..9ed85e9c4d40 100644 --- a/pkgs/development/compilers/opendylan/default.nix +++ b/pkgs/development/compilers/opendylan/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/dylan-lang/opendylan; rev = "ce9b14dab6cb9ffedc69fae8c6df524c0c79abd3"; - sha256 = "cec80980b838ac2581dfb6282e25d208e720d475256b75e24b23dbd30b09d21f"; + sha256 = "17jvhv0y63fj25ma05k70b7phcwgjyna5qkrirk48z3xapb8bknd"; fetchSubmodules = true; }; diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index fbadb9d74366..8812a4288ef9 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://repo.or.cz/tinycc.git"; rev = "80343ab7d829c21c65f8f9a14dd20158d028549f"; - sha256 = "1bz75aj93ivb2d8hfk2bczsrwa56lv7vprvdi8c1r5phjvawbshy"; + sha256 = "0l2qhlvwya2djjbwxgwvhfa11bscqcw1x8w5dzy7klzns773pv7d"; }; nativeBuildInputs = [ perl texinfo ]; diff --git a/pkgs/development/coq-modules/QuickChick/default.nix b/pkgs/development/coq-modules/QuickChick/default.nix index 3e7731d4d94a..db364ffb1afc 100644 --- a/pkgs/development/coq-modules/QuickChick/default.nix +++ b/pkgs/development/coq-modules/QuickChick/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/QuickChick/QuickChick.git; rev = revision; - sha256 = "1yql40x1zbrc6wzfafvfaxzhw57v1n468lxdv1rvsjd7gyyf74y7"; + sha256 = "1prlihkgi2yvgzd62x80fsnxp5w1n0wyk7zrd6zwa8dbqx9pbr09"; }; buildInputs = [ coq.ocaml coq.camlp5 ]; diff --git a/pkgs/development/coq-modules/coqeal/default.nix b/pkgs/development/coq-modules/coqeal/default.nix index a9e69184c4e8..b6d3fe2e34f3 100644 --- a/pkgs/development/coq-modules/coqeal/default.nix +++ b/pkgs/development/coq-modules/coqeal/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/CoqEAL/CoqEAL.git; rev = "7522037d5e01e651e705d782f4f91fc68c46866e"; - sha256 = "1cvjz0yyqihdx1hp1h9x5x14kv9qf3rjhgqq4f7rv8bxcv9p1gv3"; + sha256 = "0kbnsrycd0hjni311i8xc5xinn4ia8rnqi328sdfqzvvyky37fgj"; }; propagatedBuildInputs = [ mathcomp ]; diff --git a/pkgs/development/coq-modules/unimath/default.nix b/pkgs/development/coq-modules/unimath/default.nix index e6f32d60c4f8..8bd6cf5a84dd 100644 --- a/pkgs/development/coq-modules/unimath/default.nix +++ b/pkgs/development/coq-modules/unimath/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/UniMath/UniMath.git; rev = "a2714eca29444a595cd280ea961ec33d17712009"; - sha256 = "0brhbslx4sxl8m9nxjbdl91gi99vcrikykl6b00f4cx5ww43csln"; + sha256 = "0v7dlyipr6bhwgp9v366nxdan018acafh13pachnjkgzzpsjnr7g"; }; buildInputs = [ coq.ocaml coq.camlp5 ]; diff --git a/pkgs/development/guile-modules/guile-gnome/default.nix b/pkgs/development/guile-modules/guile-gnome/default.nix index 24928fc067fd..c58e37da4a61 100644 --- a/pkgs/development/guile-modules/guile-gnome/default.nix +++ b/pkgs/development/guile-modules/guile-gnome/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.sv.gnu.org/guile-gnome.git"; rev = "0fcbe69797b9501b8f1283a78eb92bf43b08d080"; - sha256 = "1vqlzb356ggmp8jh833gksg59c53vbmmhycbcf52qj0fdz09mpb5"; + sha256 = "19nsxwhrmrs9n16sb99pgy6zp6zpvmsd285kcjb54y362li7yc83"; }; buildInputs = [ diff --git a/pkgs/development/guile-modules/guile-sdl2/default.nix b/pkgs/development/guile-modules/guile-sdl2/default.nix index 5a166f3703ee..8d98ace71f88 100644 --- a/pkgs/development/guile-modules/guile-sdl2/default.nix +++ b/pkgs/development/guile-modules/guile-sdl2/default.nix @@ -26,7 +26,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://dthompson.us/guile-sdl2.git"; rev = "048f80ddb5c6b03b87bba199a99a6f22d911bfff"; - sha256 = "1wbx157xd8lsv4vs8igqy3qw8yym5r5s7z94an18kwbf89npmf5d"; + sha256 = "1v7bc2bsddb46qdzq7cyzlw5i2y175kh66mbzbjky85sjfypb084"; }; preConfigurePhases = [ "bootstrapPhase" ]; bootstrapPhase = '' diff --git a/pkgs/development/interpreters/ceptre/default.nix b/pkgs/development/interpreters/ceptre/default.nix index 4869859960ae..409a93447f85 100644 --- a/pkgs/development/interpreters/ceptre/default.nix +++ b/pkgs/development/interpreters/ceptre/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/chrisamaphone/interactive-lp; rev = "b3d21489d4994f03d2982de273eea90bc7fba5d0"; - sha256 = "01f72q435kmf3mkgnn47hlnv6k3i5kjb26pbjrwvysc6am33jlcb"; + sha256 = "1qpyasr3jg4i2x547yq1dzksvjagvnrmkdd00s108wvw9npc2jj1"; }; nativeBuildInputs = [ mlton ]; diff --git a/pkgs/development/interpreters/eff/default.nix b/pkgs/development/interpreters/eff/default.nix index 88490e9cd9c6..566d7025e5c9 100644 --- a/pkgs/development/interpreters/eff/default.nix +++ b/pkgs/development/interpreters/eff/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/matijapretnar/eff.git"; rev = "90f884a790fddddb51d4d1d3b7c2edf1e8aabb64"; - sha256 = "28e389b35e6959072c245c2e79fe305885b1b2d44ff540a02a097e09e9f9698f"; + sha256 = "0cqqrpvfw0nrk5d28mkzfvc8yzqxcss0k46bkmqhqjkqq886n2mm"; }; buildInputs = [ ocaml findlib menhir which ]; diff --git a/pkgs/development/interpreters/jimtcl/default.nix b/pkgs/development/interpreters/jimtcl/default.nix index a6b8478b5e20..c9f1231aa6a1 100644 --- a/pkgs/development/interpreters/jimtcl/default.nix +++ b/pkgs/development/interpreters/jimtcl/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/msteveb/jimtcl.git; rev = "c4d4bf8bc104733db1f5992a27d88fbfca9ba882"; - sha256 = "0vnl2k5sj250l08bplqd61zj6261v7kp202pss66g01rhp42fj3r"; + sha256 = "1dm1qmb35hlp0d4i15c78n8jmbv7nhz2cgbrjyn6fjy6cy67sq0r"; }; buildInputs = [ diff --git a/pkgs/development/interpreters/mujs/default.nix b/pkgs/development/interpreters/mujs/default.nix index c321de4dc9a8..278191bf839f 100644 --- a/pkgs/development/interpreters/mujs/default.nix +++ b/pkgs/development/interpreters/mujs/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.ghostscript.com/mujs.git; rev = "624f975aae6b451e35406d8cdde808626052ce2c"; - sha256 = "0vaskzpi84g56yjfkfri1r0lbkawhn556v0b69xjfls7ngsw346y"; + sha256 = "0cab7x73v380wklpkbrc1k4iyh4q2jyx3zxbymlfi1spmrpn6skl"; }; buildInputs = [ clang ]; diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix index 91ae67474ff1..0e6c06bbecd3 100644 --- a/pkgs/development/interpreters/scsh/default.nix +++ b/pkgs/development/interpreters/scsh/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { url = "git://github.com/scheme/scsh.git"; rev = "f99b8c5293628cfeaeb792019072e3a96841104f"; fetchSubmodules = true; - sha256 = "0fz1r0bmiii9ld91r84dqkqwhnqk0h6drdycq93zcy5ndyn12fqp"; + sha256 = "0ci2h9hhv8pl12sdyl2qwal3dhmd7zgm1pjnmd4kg8r1hnm6vidx"; }; nativeBuildInputs = [ autoreconfHook ]; diff --git a/pkgs/development/interpreters/self/default.nix b/pkgs/development/interpreters/self/default.nix index 7a24e092fd3e..31ef51802ed6 100644 --- a/pkgs/development/interpreters/self/default.nix +++ b/pkgs/development/interpreters/self/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/russellallen/self"; rev = "d16bcaad3c5092dae81ad0b16d503f2a53b8ef86"; - sha256 = "966025b71542e44fc830b951f404f5721ad410ed24f7236fd0cd820ea0fc5731"; + sha256 = "1dhs6209407j0ll9w9id31vbawdrm9nz1cjak8g8hixrw1nid4i5"; }; buildInputs = [ ncurses xorg.libX11 xorg.libXext makeWrapper cmake ]; diff --git a/pkgs/development/libraries/afflib/default.nix b/pkgs/development/libraries/afflib/default.nix index c29512b86a04..7f5767d2818f 100644 --- a/pkgs/development/libraries/afflib/default.nix +++ b/pkgs/development/libraries/afflib/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/sshock/AFFLIBv3/"; rev = "refs/tags/v${version}"; - sha256 = "11wpjbyja6cn0828sw3951s7dbly11abijk41my3cpy9wnvmiggh"; + sha256 = "08www22njllqz1j3jkmgn1p36sifxrjd6qlsa7ch4kqy4jaaka1k"; name = "afflib-${version}-checkout"; }; diff --git a/pkgs/development/libraries/agda/Agda-Sheaves/default.nix b/pkgs/development/libraries/agda/Agda-Sheaves/default.nix index 83066f5da632..24d547ccd8bc 100644 --- a/pkgs/development/libraries/agda/Agda-Sheaves/default.nix +++ b/pkgs/development/libraries/agda/Agda-Sheaves/default.nix @@ -6,7 +6,7 @@ agda.mkDerivation (self: rec { src = fetchgit { url = "https://github.com/jonsterling/Agda-Sheaves.git"; rev = version; - sha256 = "39e0e4a1f05e359c099cf50a5ec7dd2db7b55f98dcc019f1e4667dca8b37f001"; + sha256 = "1gjffyyi4gk9z380yw2wm0jg0a01zy8dnw7jrcc7222swisk5s2d"; }; everythingFile = "sheaves.agda"; diff --git a/pkgs/development/libraries/agda/agda-prelude/default.nix b/pkgs/development/libraries/agda/agda-prelude/default.nix index 9b67c5dbb5bb..2ac71f341d69 100644 --- a/pkgs/development/libraries/agda/agda-prelude/default.nix +++ b/pkgs/development/libraries/agda/agda-prelude/default.nix @@ -7,7 +7,7 @@ agda.mkDerivation (self: rec { src = fetchgit { url = "https://github.com/UlfNorell/agda-prelude.git"; rev = version; - sha256 = "bdcffb675d0ad1bafa2b47f581b6a9b90347ae739b6218f89f365fda2cc4f8c8"; + sha256 = "10n8bsbn0c3hmyqdis7gvawn2ylzmzl8rkbscvh0bj03fbbna4d9"; }; topSourceDirectories = [ "src" ]; diff --git a/pkgs/development/libraries/agda/agda-stdlib/default.nix b/pkgs/development/libraries/agda/agda-stdlib/default.nix index 2a75b1fb7000..b25f14dbc9f9 100644 --- a/pkgs/development/libraries/agda/agda-stdlib/default.nix +++ b/pkgs/development/libraries/agda/agda-stdlib/default.nix @@ -7,7 +7,7 @@ agda.mkDerivation (self: rec { src = fetchgit { url = "git://github.com/agda/agda-stdlib"; rev = "9c9b3cb28f9a7d39a256890a1469c1a3f7fc4faf"; - sha256 = "521899b820e70abbae7cb30008b87a2f8676bc6265b78865e42982fc2e5c972f"; + sha256 = "1h64wzm4ysmq3gi33w3kp9h3f471sydpp453yf95bh5f713a8bxk"; }; nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ]; diff --git a/pkgs/development/libraries/agda/bitvector/default.nix b/pkgs/development/libraries/agda/bitvector/default.nix index 290a2f1206d1..3f2c92e80ad4 100644 --- a/pkgs/development/libraries/agda/bitvector/default.nix +++ b/pkgs/development/libraries/agda/bitvector/default.nix @@ -7,7 +7,7 @@ agda.mkDerivation (self: rec { src = fetchgit { url = "https://github.com/copumpkin/bitvector.git"; rev = version; - sha256 = "c39f55b709366f2c627d1a3a68d4b013c415b0e0f68ca6b69e387d07e2ce6d9a"; + sha256 = "0jb421lxvyxz26sxa81qjmn1gfcxfh0fmbq128f0kslqhiiaqfrh"; }; buildDepends = [ AgdaStdlib ]; diff --git a/pkgs/development/libraries/agda/categories/default.nix b/pkgs/development/libraries/agda/categories/default.nix index cce739046199..b4ac4b79bf1e 100644 --- a/pkgs/development/libraries/agda/categories/default.nix +++ b/pkgs/development/libraries/agda/categories/default.nix @@ -7,7 +7,7 @@ agda.mkDerivation (self: rec { src = fetchgit { url = "https://github.com/copumpkin/categories.git"; rev = version; - sha256 = "cb7e8c911e10ab582c077208f5f6675711c0d65f0d9d679639d4b67a467cc4de"; + sha256 = "15x834f7jn2s816b9vz8nm8p424ppzv6v9nayaawyl43qmaaaa5p"; }; buildDepends = [ AgdaStdlib ]; diff --git a/pkgs/development/libraries/audio/ntk/default.nix b/pkgs/development/libraries/audio/ntk/default.nix index af98592e06d5..4f58adefdf3f 100644 --- a/pkgs/development/libraries/audio/ntk/default.nix +++ b/pkgs/development/libraries/audio/ntk/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.tuxfamily.org/gitroot/non/fltk.git"; rev = "5719b0044d9f267de5391fab006370cc7f4e70bd"; - sha256 = "7ecedb049e00cc9a1bb0e0e2f02e5a734c873653b68551e6573474c04abe1821"; + sha256 = "1wpqy5kk6sk31qyx1c6gdslcqcbczgji6lk8w1l8kri0s908ywyj"; }; buildInputs = [ diff --git a/pkgs/development/libraries/boringssl/default.nix b/pkgs/development/libraries/boringssl/default.nix index 4a612c5351dc..778c368f0f1c 100644 --- a/pkgs/development/libraries/boringssl/default.nix +++ b/pkgs/development/libraries/boringssl/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://boringssl.googlesource.com/boringssl"; rev = "bfb38b1a3c5e37d43188bbd02365a87bebc8d122"; - sha256 = "0g9gh915ywawqf1gq7pwkhrhbh79w7si4g34ryml7a6mnmvx8b52"; + sha256 = "0bm7vqg3bk716xmw2af99p44zizfhknq9z3cphf7klfdrr7ibqm5"; }; buildInputs = [ cmake perl go ]; diff --git a/pkgs/development/libraries/breakpad/default.nix b/pkgs/development/libraries/breakpad/default.nix index f5876d09a714..9ae4f89bfc3e 100644 --- a/pkgs/development/libraries/breakpad/default.nix +++ b/pkgs/development/libraries/breakpad/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://chromium.googlesource.com/breakpad/breakpad"; rev = "512cac3a1b69721ab727f3079f4d29e4580467b1"; - sha256 = "0v7k7racdl2f16mbi3r0vkbkagh0gf6ksnpf3ri28b9pjfngkl5s"; + sha256 = "1ksilbdpi1krycxkidqd1dlly95qf7air3zy8h5zfnagrlkz7zzx"; }; breakpad_lss = fetchgit { diff --git a/pkgs/development/libraries/cwiid/default.nix b/pkgs/development/libraries/cwiid/default.nix index a86bdc8e035b..41d6320adc6c 100644 --- a/pkgs/development/libraries/cwiid/default.nix +++ b/pkgs/development/libraries/cwiid/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation rec { name = "cwiid-2010-02-21-git"; src = fetchgit { url = https://github.com/abstrakraft/cwiid; - sha256 = "6f5355d036dab017da713c49d3042011fa24fb732ed0d5ee338ab6f5ff400f06"; + sha256 = "0qdb0x757k76nfj32xc2nrrdqd9jlwgg63vfn02l2iznnzahxp0h"; rev = "fadf11e89b579bcc0336a0692ac15c93785f3f82"; }; configureFlags = "--without-python"; diff --git a/pkgs/development/libraries/java/junit/default.nix b/pkgs/development/libraries/java/junit/default.nix index d14e444f298e..0879f0a69260 100644 --- a/pkgs/development/libraries/java/junit/default.nix +++ b/pkgs/development/libraries/java/junit/default.nix @@ -11,7 +11,7 @@ in antBuild { src = fetchgit { url = "https://github.com/junit-team/junit.git"; - sha256 = "019azv0cfy2zs45c7g3r952gvjmikkq76p2ydr4q5252r0pzy9dr"; + sha256 = "1cn5dhs6vpbfbcmnm2vb1212n0kblv8cxrvnwmksjxd6bzlkac1k"; rev = "c2e4d911fadfbd64444fb285342a8f1b72336169"; }; diff --git a/pkgs/development/libraries/java/jzmq/default.nix b/pkgs/development/libraries/java/jzmq/default.nix index 4576c1a1c72b..3f0f13a4555d 100644 --- a/pkgs/development/libraries/java/jzmq/default.nix +++ b/pkgs/development/libraries/java/jzmq/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/zeromq/jzmq.git; rev = "946fd39780423b2df6e5efd9fa2cd863fd79c9db"; - sha256 = "0j6kfmngqw2gpyxc1ak67d65l208vrb0h8bm8svclia8b339m37a"; + sha256 = "08pqh673fcqwm68hmnsmzrz4vzlwr0x9hdysic5k5mh7z411xzmp"; }; buildInputs = [ automake autoconf libtool pkgconfig zeromq2 jdk ]; diff --git a/pkgs/development/libraries/kinetic-cpp-client/default.nix b/pkgs/development/libraries/kinetic-cpp-client/default.nix index 9a11c85bd763..64fd951d70dd 100644 --- a/pkgs/development/libraries/kinetic-cpp-client/default.nix +++ b/pkgs/development/libraries/kinetic-cpp-client/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/Seagate/kinetic-cpp-client.git"; rev = "015085a5c89db0398f80923053f36b9e0611e107"; - sha256 = "15iwlfjwnyswiwssdjg6qiflhddh66nv07xji4yhz1s4vqhk3nrx"; + sha256 = "0gm34sl6lyidnxgg1lrhkxkxqj8z1y2cqn7zhzz2f1k50pigi5da"; }; patches = [ ./build-fix.patch ]; diff --git a/pkgs/development/libraries/libcommuni/default.nix b/pkgs/development/libraries/libcommuni/default.nix index 7b83be7e911a..cddfa12e2810 100644 --- a/pkgs/development/libraries/libcommuni/default.nix +++ b/pkgs/development/libraries/libcommuni/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/communi/libcommuni.git"; rev = "779b0c774428669235d44d2db8e762558e2f4b79"; - sha256 = "15sb7vinaaz1v5nclxpnp5p9a0kmfmlgiqibkipnyydizclidpfx"; + sha256 = "1zqdl5why66rg3pksxmxsmrwxs4042fq9jhc394qvk0s36aryqsj"; }; buildInputs = [ qtbase ]; diff --git a/pkgs/development/libraries/libetpan/default.nix b/pkgs/development/libraries/libetpan/default.nix index aa201106e3cf..063633619431 100644 --- a/pkgs/development/libraries/libetpan/default.nix +++ b/pkgs/development/libraries/libetpan/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://github.com/dinhviethoa/libetpan"; rev = "refs/tags/" + version; - sha256 = "12n0vd0bwdyjcmwmpv1hdq5l04mqy6qfyy8mhsblddqaa1ah9qy8"; + sha256 = "13hv49271rr9yj7ifxqqmc0jfy1f26llivhp22s5wigick7qjxky"; }; buildInputs = [ autoconf automake libtool openssl ]; diff --git a/pkgs/development/libraries/libfixposix/default.nix b/pkgs/development/libraries/libfixposix/default.nix index fbb7a709201b..a0b03c4c0057 100644 --- a/pkgs/development/libraries/libfixposix/default.nix +++ b/pkgs/development/libraries/libfixposix/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/sionescu/libfixposix"; rev = "30b75609d858588ea00b427015940351896867e9"; - sha256 = "44553c90d67f839cdd57d14d37d9faa25b1b766f607408896137f3013c1c9424"; + sha256 = "17spjz9vbgqllzlkws2abvqi0a71smhi4vgq3913aw0kq206mfxz"; }; buildInputs = [ autoreconfHook libtool ]; diff --git a/pkgs/development/libraries/libkvkontakte/default.nix b/pkgs/development/libraries/libkvkontakte/default.nix index 152fe0894af8..e43116aebc19 100644 --- a/pkgs/development/libraries/libkvkontakte/default.nix +++ b/pkgs/development/libraries/libkvkontakte/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://anongit.kde.org/libkvkontakte; rev = "4024f69cf54625dbe5dc2e2d811a996774a669ff"; - sha256 = "0ryvjfrsws845k9s76715xid48y01h0ynb5wdx6ln8cm5z5wqj61"; + sha256 = "1ly95bc72a4zjqhr03liciqpi2hp8x4gqzm4gzr8alfysv2jvxbb"; }; nativeBuildInputs = [ automoc4 cmake pkgconfig ]; diff --git a/pkgs/development/libraries/libmkv/default.nix b/pkgs/development/libraries/libmkv/default.nix index c4b98d956bba..84e484fcc3df 100644 --- a/pkgs/development/libraries/libmkv/default.nix +++ b/pkgs/development/libraries/libmkv/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/saintdev/libmkv.git; rev = "refs/tags/0.6.5.1"; - sha256 = "1b0441x5rl5dbwrc0hq9jih111iil7ckqws3hcdj63jx2ma3s4hi"; + sha256 = "0pr9q7yprndl8d15ir7i7cznvmf1yqpvnsyivv763n6wryssq6dl"; }; nativeBuildInputs = [ libtool autoconf automake ]; diff --git a/pkgs/development/libraries/libvpx/git.nix b/pkgs/development/libraries/libvpx/git.nix index 064fb807a214..1893d73401a8 100644 --- a/pkgs/development/libraries/libvpx/git.nix +++ b/pkgs/development/libraries/libvpx/git.nix @@ -68,7 +68,7 @@ stdenv.mkDerivation rec { /* DO NOT under any circumstance ever just bump the git commit without confirming changes have not been made to the configure system */ rev = "f4c29ae9ea16c502c980a81ca9683327d5051929"; - sha256 = "1d5m3dryfdrsf3mi6bcbsndyhihzksqalzfvi21fbxxkk1imsb9x"; + sha256 = "1w17vpcy44wlpr2icbwhcf3mrinybwy0bhif30p707hbxfxrj474"; }; patchPhase = ''patchShebangs .''; diff --git a/pkgs/development/libraries/libwebsockets/default.nix b/pkgs/development/libraries/libwebsockets/default.nix index 7153748348ae..6ce183889043 100644 --- a/pkgs/development/libraries/libwebsockets/default.nix +++ b/pkgs/development/libraries/libwebsockets/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.libwebsockets.org/libwebsockets"; rev = "16fb0132cec0fcced29bce6d86eaf94a9beb9785"; - sha256 = "fa4c81f86dfc39211b78c53c804efc19e15b81ccb05e72699220bbed27204c7d"; + sha256 = "0gk4dgx125nz7wl59bx0kgxxg261r9kyxvdff5ld98slr9f08d0l"; }; buildInputs = [ cmake openssl zlib ]; diff --git a/pkgs/development/libraries/ndn-cxx/default.nix b/pkgs/development/libraries/ndn-cxx/default.nix index 87aaaece53f6..783126768834 100644 --- a/pkgs/development/libraries/ndn-cxx/default.nix +++ b/pkgs/development/libraries/ndn-cxx/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/named-data/ndn-cxx.git"; rev = "4c32e748863d5165cc0e3d6b54a8383f4836cdf1"; - sha256 = "18s18inf14wmkfh1z6w087w7l3bqszd0nkhr09j73hqpz90b06hz"; + sha256 = "18szs3j3ig8wlcqngran0daxaj7j2qsmch0212ids6fymj1hgax4"; }; buildInputs = [ openssl doxygen boost sqlite cryptopp pkgconfig python pythonPackages.sphinx]; preConfigure = '' diff --git a/pkgs/development/libraries/nix-plugins/default.nix b/pkgs/development/libraries/nix-plugins/default.nix index 2db193abe592..8a5d54952606 100644 --- a/pkgs/development/libraries/nix-plugins/default.nix +++ b/pkgs/development/libraries/nix-plugins/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://github.com/shlevy/nix-plugins.git; rev = "refs/tags/1.0.0"; - sha256 = "e624de55cabc9014e77f21978d657089ae94ce161584b3d9dc3c9763658421b3"; + sha256 = "1w7l4mdwgf5w1g48mbng4lcg2nihixvp835mg2j7gghnya309fxl"; }; buildInputs = [ nix ]; diff --git a/pkgs/development/libraries/qmltermwidget/default.nix b/pkgs/development/libraries/qmltermwidget/default.nix index 1620649a3cce..c4bb36209d94 100644 --- a/pkgs/development/libraries/qmltermwidget/default.nix +++ b/pkgs/development/libraries/qmltermwidget/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/Swordfish90/qmltermwidget.git"; rev = "refs/tags/v${version}"; - sha256 = "19pz27jsdpa3pybj8sghmmd1zqgr73js1mp3875rhx158dav37nz"; + sha256 = "0ca500mzcqglkj0i6km0z512y3a025dbm24605xyv18l6y0l2ny3"; }; buildInputs = [ qtbase qtquick1 ]; diff --git a/pkgs/development/libraries/sblim-sfcc/default.nix b/pkgs/development/libraries/sblim-sfcc/default.nix index 9ec7afabab16..111b08b633a7 100644 --- a/pkgs/development/libraries/sblim-sfcc/default.nix +++ b/pkgs/development/libraries/sblim-sfcc/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/kkaempf/sblim-sfcc.git"; rev = "f70fecb410a53531e4fe99d39cf81b581819cac9"; - sha256 = "1dlhjvi888kz3bq56n0f86f25ny48a18rm4rgb4rx04aimas3dvj"; + sha256 = "1hsxim284qzldh599gf6khxj80g8q5263xl3lj3hdndxbhbs843v"; }; preConfigure = "./autoconfiscate.sh"; diff --git a/pkgs/development/libraries/skalibs/default.nix b/pkgs/development/libraries/skalibs/default.nix index 349e5582013f..93142c269c2d 100644 --- a/pkgs/development/libraries/skalibs/default.nix +++ b/pkgs/development/libraries/skalibs/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/skalibs"; rev = "refs/tags/v${version}"; - sha256 = "1c5ap14f2yr3izz8s1blgp5g4r898kzppay7xrga2j216i51zfpw"; + sha256 = "1x52mgf39yiijsj63x0ibp6d3nj0d4z9k9lisa4rzsxs7846za4a"; }; dontDisableStatic = true; diff --git a/pkgs/development/libraries/wvstreams/default.nix b/pkgs/development/libraries/wvstreams/default.nix index b879cf37a315..ecfc9b88a0e4 100644 --- a/pkgs/development/libraries/wvstreams/default.nix +++ b/pkgs/development/libraries/wvstreams/default.nix @@ -1,4 +1,4 @@ -{ stdenv, gcc46, fetchurl, qt4, dbus, zlib, openssl, readline, perl }: +{ stdenv, fetchurl, qt4, dbus, zlib, openssl, readline, perl }: stdenv.mkDerivation { name = "wvstreams-4.6.1"; @@ -16,7 +16,7 @@ stdenv.mkDerivation { sed -e '1i#include ' -i $(find . -name '*.c' -o -name '*.cc') ''; - buildInputs = [ gcc46 qt4 dbus zlib openssl readline perl ]; + buildInputs = [ qt4 dbus zlib openssl readline perl ]; meta = { description = "Network programming library in C++"; diff --git a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix index 8bd7a90ad5a6..1b6d07bfc341 100644 --- a/pkgs/development/libraries/xcb-util-cursor/HEAD.nix +++ b/pkgs/development/libraries/xcb-util-cursor/HEAD.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = http://anongit.freedesktop.org/git/xcb/util-cursor.git; rev = "f03cc278c6cce0cf721adf9c3764d3c5fba63392"; - sha256 = "1ljvq1gdc1lc33dwn4pzwppws2zgyqx51y3sd3c8gb7vcg5f27i5"; + sha256 = "127zfmihd8nqlj8jjaja06xb84xdgl263w0av1xnprx05mkbkcyc"; }; meta = with stdenv.lib; { diff --git a/pkgs/development/libraries/xgboost/default.nix b/pkgs/development/libraries/xgboost/default.nix index afe4ce4448b1..e3c5d7573107 100644 --- a/pkgs/development/libraries/xgboost/default.nix +++ b/pkgs/development/libraries/xgboost/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/dmlc/xgboost"; rev = "9c26566eb09733423f821f139938ff4105c3775d"; - sha256 = "0nmhgl70mnc2igkfppdw2in66zdczzsqxrlsb4bknrglpp3axnm1"; + sha256 = "1d7lnbwxwakclqqfjwyk9w3wd2clkihdr6ljs5z08ydiaspri093"; }; enableParallelBuilding = true; diff --git a/pkgs/development/libraries/zimlib/default.nix b/pkgs/development/libraries/zimlib/default.nix index c46a950804c5..c0b50c490ffb 100644 --- a/pkgs/development/libraries/zimlib/default.nix +++ b/pkgs/development/libraries/zimlib/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://gerrit.wikimedia.org/r/p/openzim.git; rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456"; - sha256 = "0x0d3rx6zcc8k66nqkacmwdvslrz70h9bliqawzv90ribq3alb0q"; + sha256 = "076ixsq4lis0rkk7p049g02bidc7bggl9kf2wzmgmsnx396mqymf"; }; buildInputs = [ automake autoconf libtool lzma ]; setSourceRoot = "cd openzim-*/zimlib; export sourceRoot=`pwd`"; diff --git a/pkgs/development/lisp-modules/lisp-packages.nix b/pkgs/development/lisp-modules/lisp-packages.nix index 8e3c56d49a84..6ec61cda9d09 100644 --- a/pkgs/development/lisp-modules/lisp-packages.nix +++ b/pkgs/development/lisp-modules/lisp-packages.nix @@ -53,7 +53,7 @@ let lispPackages = rec { deps = []; src = pkgs.fetchgit { url = "https://gitlab.common-lisp.net/alexandria/alexandria.git"; - sha256 = "1d981a243f9d4d3c9fd86cc47698050507ff615b87b9a710449abdb4234e501b"; + sha256 = "1gx642w00cnnkbkcsnzmg1w147r6yvc0ayns7ha4k0qcvfnb1zvs"; rev = ''2b1eb4067fb34bc501e527de75d09166a8ba9ceb''; }; }; @@ -77,7 +77,7 @@ let lispPackages = rec { deps = []; src = pkgs.fetchgit { url = "https://gitlab.common-lisp.net/cl-unification/cl-unification.git"; - sha256 = "01k2k7n98flnzm6mipk4xq2rqmjkjg8rcv4dsgifyxhqjwqf0l24"; + sha256 = "0b7yik1ma7ciwscald624325dl6265fbq52iwy6jh46nvv085dqk"; rev = ''283c94d38d11c806a1fc9db022f0b54dced93bab''; }; }; @@ -89,7 +89,7 @@ let lispPackages = rec { deps = [alexandria]; src = pkgs.fetchgit { url = "https://github.com/scymtym/esrap.git"; - sha256 = "c56616ac01be0f69e72902f9fd830a8af2c2fa9018b66747a5da3988ae38817f"; + sha256 = "175jsv309yir0yi03aa2995xg84zjgk34kgnbql5l4vy4as5x665"; rev = ''c71933b84e220f21e8a509ec26afe3e3871e2e26''; }; }; @@ -102,7 +102,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/filonenko-mikhail/clx-truetype''; - sha256 = "fe3d3923909a8f0a19298bfa366bb265c5155eed43d4dd315920535d15424d65"; + sha256 = "14wx9s1fd56l25ms2ns1w9a5rxgqr00vgw6jdarfkqk7mfrxxzs1"; rev = ''6f72905c6886a656e5a1c8167097f12375c6da7d''; }; overrides = x:{ @@ -199,7 +199,7 @@ let lispPackages = rec { #''http://git.kpe.io/clsql.git'' "http://repo.or.cz/r/clsql.git" ; - sha256 = "1wzc7qsnq8hk0j0h9jmj4xczmh7h6njafwab2zylh8wxmfzwp2nw"; + sha256 = "073rh2zxwkcd417qfcflv14j273d1j174slsbzidxvy4zgq5r3n6"; rev = ''a646f558b54191eda1d64f2926eee7b4fa763f89''; }; overrides = x:{ @@ -218,7 +218,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''http://git.kpe.io/uffi.git''; - sha256 = "219e4cfebfac251c922bcb9d517980b0988d765bd18b7f5cc765a43913aaacc6"; + sha256 = "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"; rev = ''a63da5b764b6fa30e32fcda4ddac88de385c9d5b''; }; }; @@ -350,7 +350,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''http://common-lisp.net/project/qitab/git/command-line-arguments.git''; - sha256 = "91bb321e201034c35121860cb6ec05e39c6392d5906a52b9a2d33d0f76b06123"; + sha256 = "1jgx8k706wz2qjdnqnralvnhwlzxd0nx22r6rncgs2kw7p4wll9d"; rev = ''121f303bbef9c9cdf37a7a12d8adb1ad4be5a6ae''; }; }; @@ -363,7 +363,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''http://common-lisp.net/project/trivial-backtrace/trivial-backtrace.git''; - sha256 = "1ql80z0igsng32rbp24h81pj5c4l87c1ana6c9lx3dlqpixzl4kj"; + sha256 = "0bclk05lqijpp72yfzrz0wmw142z0mwnpfl4gqv6gl4fpz1qr56s"; rev = ''48a6b081e00b0d85f1e001c7258393ed34d06bc9''; }; }; @@ -389,7 +389,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/froydnj/chipz''; - sha256 = "73ae22d58b6db5b2c86af4a465260e48a5aca19827d2b7329e2870c1148da8e2"; + sha256 = "0963nyg8173q0svqhk0ggbvfr4i57jk3swkf0r87jh3yi2l983sl"; rev = ''3402c94df1d0af7742df08d3ffa23fd5c04c9bf2''; }; }; @@ -455,7 +455,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/trivial-garbage/trivial-garbage''; - sha256 = "69f6c910921de436393ff5f93bee36443534756965fa34e43e04d9e8919212df"; + sha256 = "0r029lfl5srmhanmmh7bb692pdwb32cnbq2navx6cm3iqda9q87i"; rev = ''2721d36d71748d9736a82fe5afe333c52bae3084''; }; }; @@ -468,7 +468,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''http://git.kpe.io/cl-base64.git''; - sha256 = "a34196544cc67d54aef74e31eff2cee62a7861a5675d010fcd925f1c61c23e81"; + sha256 = "0cq3dxac3l0z2xp3c3gkgj893hvaz4vvxdz0nsc8c9q28q3nwf4p"; rev = ''f375d1fc3a6616e95ae88bb33493bb99f920ba13''; }; }; @@ -481,7 +481,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''http://git.kpe.io/puri.git''; - sha256 = "71804698e7f3009fb7f570656af5d952465bfe77f72e9c41f7e2dda8a5b45c5e"; + sha256 = "1l7d8i9615kyi7n69l07a6ri0d1k13cya0kbg3fmfqanwn5kzv2i"; rev = ''68260dbf320c01089c8cee54ef32c800eefcde7f''; }; }; @@ -506,7 +506,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/gwkkwg/cl-html-parse''; - sha256 = "0153d4962493f106849fc7cbfe03c5ff874adae8d307ea2e1ceebbb009e2f89f"; + sha256 = "0s8jjn3s55m59nihc8qiw2s71gn09sxsaii343rzfwdrkdwk9vzh"; rev = ''b21e8757210a1eb2a47104a563f58bf82ba9a579''; }; }; @@ -519,7 +519,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/froydnj/nibbles''; - sha256 = "39ad95be2b9f9ea80dbccd205a0ed6f9c5ef175a10da6eec55b7ba09a8f1a76a"; + sha256 = "0p0swss7xjx74sr95wqak5hfhfw13bwkzncy4l4hbfy130gncv8b"; rev = ''ace095d85e48b18bf9cf9e21249ba7fb57e3efe2''; }; }; @@ -544,7 +544,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = "https://gitlab.common-lisp.net/cl-smtp/cl-smtp.git"; - sha256 = "1i66x351cj114r2i8j6bhif5fcysfq5ia91hv7ksjqa4q7rfmpw2"; + sha256 = "0kvb34jzb3hgvzqlwwwmnyaqj0ghlgmi1x2zll5qw5089gbhfv10"; rev = ''2bf946c1d561c0085dba6d6337e3e53d9711a5d2''; }; }; @@ -557,7 +557,7 @@ let lispPackages = rec { # Source type: git src = pkgs.fetchgit { url = ''https://github.com/pmai/md5''; - sha256 = "f64d7e36c54da649bb1d574b92cdb907291224fb3d8565b3708703a81820367b"; + sha256 = "18k6k04cqx9zx0q8x3hk5icvjhihra1za7k2jx82xb19jfnjli1y"; rev = ''9d6f82f7121c87fb7e3b314987ba93900d300dc6''; }; }; @@ -583,7 +583,7 @@ let lispPackages = rec { src = pkgs.fetchgit { url = "https://github.com/quicklisp/quicklisp-client/"; rev = "refs/tags/version-${version}"; - sha256 = "0a6zjsd5c8zg2x26lc027538xfl182xvg7ps81pyvi4k5qd42xhd"; + sha256 = "007r1ydbhrkh6ywqgpvzp0xg0yypgrfai3n4mn16gj5w2zz013lx"; }; overrides = x: rec { inherit clwrapper; diff --git a/pkgs/development/ocaml-modules/cpdf/default.nix b/pkgs/development/ocaml-modules/cpdf/default.nix index d29136dd434e..66294206e66c 100644 --- a/pkgs/development/ocaml-modules/cpdf/default.nix +++ b/pkgs/development/ocaml-modules/cpdf/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/johnwhitington/cpdf-source.git; rev = "refs/tags/v${version}"; - sha256 = "0c482wfa5q845k0ahx8irg1jl05ncn0kv42dg08zkph7xi6dmgnv"; + sha256 = "01dq7z3admwnyp22z1h43a8f3glii3zxc9c7i6s2rgza3pd9jq4k"; }; buildInputs = [ ocaml findlib ncurses ]; diff --git a/pkgs/development/ocaml-modules/ocamlfuse/default.nix b/pkgs/development/ocaml-modules/ocamlfuse/default.nix index ce9f2cc02ed9..eaf5c8c20f6f 100644 --- a/pkgs/development/ocaml-modules/ocamlfuse/default.nix +++ b/pkgs/development/ocaml-modules/ocamlfuse/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/astrada/ocamlfuse"; rev = "c436c16dbf458bc69b1166b08baf9ec0d6f9042d"; - sha256 = "4a72097cbcb375c2be92a5c9a44f3511670fac0815d6d00f38dc7c6879e9825d"; + sha256 = "0br9x3vsbg87sar5g6yi3xfszn5icy4fv71waarccc2dr79pvakz"; }; buildInputs = [ocaml findlib]; diff --git a/pkgs/development/ocaml-modules/ojquery/default.nix b/pkgs/development/ocaml-modules/ojquery/default.nix index 054303ac8500..93da2ed693aa 100644 --- a/pkgs/development/ocaml-modules/ojquery/default.nix +++ b/pkgs/development/ocaml-modules/ojquery/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/ocsigen/ojquery.git; rev = "refs/tags/${version}"; - sha256 = "1x3cidxxjyw0g7afvczdy6chw3nxb0dcz2psgxchqgv34dcwf0l0"; + sha256 = "1n01bsk4car40p94fk1ssvww0inqapwwhdylmrb7vv40drsdldp1"; }; buildInputs = [ ocaml findlib ]; diff --git a/pkgs/development/tools/analysis/smatch/default.nix b/pkgs/development/tools/analysis/smatch/default.nix index e3fd1306cece..1730eb6a6831 100644 --- a/pkgs/development/tools/analysis/smatch/default.nix +++ b/pkgs/development/tools/analysis/smatch/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://repo.or.cz/smatch.git; rev = "23656e3e578b700cbf96d043f039e6341a3ba5b9"; - sha256 = "09a44967d4cff026c67062f778e251d0b432af132e9d59a47b7d3167f379adfa"; + sha256 = "0r43qi6vryqg450fj73yjwbb7gzcgx64rhrhb3r1m6a252srijiy"; }; buildInputs = [sqlite pkgconfig perl] diff --git a/pkgs/development/tools/boomerang/default.nix b/pkgs/development/tools/boomerang/default.nix index a17529c28375..6ecf6546e361 100644 --- a/pkgs/development/tools/boomerang/default.nix +++ b/pkgs/development/tools/boomerang/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/nemerle/boomerang.git"; rev = "78c6b9dd33790be43dcb07edc549161398904006"; - sha256 = "1hh8v0kcnipwrfz4d45d6pm5bzbm9wgbrdgg0ir2l7wyshbkff6i"; + sha256 = "1n49wx2v9r40mh5kdkspqvc8rccpb4s004qxqvn4fwc59dm0pqbs"; }; buildInputs = [ cmake expat ]; diff --git a/pkgs/development/tools/gnulib/default.nix b/pkgs/development/tools/gnulib/default.nix index 6c0883de0656..af3f4a1afffb 100644 --- a/pkgs/development/tools/gnulib/default.nix +++ b/pkgs/development/tools/gnulib/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation { src = fetchgit { url = "http://git.savannah.gnu.org/r/gnulib.git"; rev = "92b60e61666f008385d9b7f7443da17c7a44d1b1"; - sha256 = "0xpxq8vqdl0niib961dnsrgjq6kbpyap6nnydzp15dvzfhzgz189"; + sha256 = "0sa1dndvaxhw0zyc19al5cmpgzlwnnznjz89lw1b4vj3xn7avjnr"; }; installPhase = "mkdir -p $out; mv * $out/"; diff --git a/pkgs/development/tools/misc/bossa/default.nix b/pkgs/development/tools/misc/bossa/default.nix index 8884021c3a38..86a714a9882d 100644 --- a/pkgs/development/tools/misc/bossa/default.nix +++ b/pkgs/development/tools/misc/bossa/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/shumatech/BOSSA; rev = "0f0a41cb1c3a65e909c5c744d8ae664e896a08ac"; /* arduino branch */ - sha256 = "01y8r45fw02rps9q995mv82bxrm6p0mysv4wir5glpagrhnyw7md"; + sha256 = "0xg79kli1ypw9zyl90mm6vfk909jinmk3lnl8sim6v2yn8shs9cn"; }; patches = [ ./bossa-no-applet-build.patch ]; diff --git a/pkgs/development/tools/misc/dbench/default.nix b/pkgs/development/tools/misc/dbench/default.nix index c9dd7cdbfe4c..d7dad8cb0eab 100644 --- a/pkgs/development/tools/misc/dbench/default.nix +++ b/pkgs/development/tools/misc/dbench/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.samba.org/sahlberg/dbench.git; rev = "65b19870ed8d25bff14cafa1c30beb33f1fb6597"; - sha256 = "0hzn7xr58y7f01hp02d0ciy2n5awskypfbdc56ff1vkr1b12i2p9"; + sha256 = "16lcbwmmx8z5i73k3dnf54yffrpx7ql3y9k3cpkss9dcyxb1p83i"; }; buildInputs = [ autoconf popt zlib ]; diff --git a/pkgs/development/tools/misc/sysbench/default.nix b/pkgs/development/tools/misc/sysbench/default.nix index ffc8200db78e..b6223230c1c9 100644 --- a/pkgs/development/tools/misc/sysbench/default.nix +++ b/pkgs/development/tools/misc/sysbench/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/akopytov/sysbench.git; rev = "2b3042883090c9cf8cb9be2b24d3590cdcee112f"; - sha256 = "0di6jc9ybnqk3pqg45lks2c9003l74xz4g619haw36fvbi28aql6"; + sha256 = "1xlb3fracha3wva3dmmjk36b262vblynkmiz8n0mn1vkc78bssaw"; }; preAutoreconf = '' diff --git a/pkgs/development/tools/misc/ycmd/default.nix b/pkgs/development/tools/misc/ycmd/default.nix index 44bf2ac855c9..df7cc3e279a0 100644 --- a/pkgs/development/tools/misc/ycmd/default.nix +++ b/pkgs/development/tools/misc/ycmd/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/Valloric/ycmd.git"; rev = "f982f6251c5ff85e3abe6e862aad8bcd19e85ece"; - sha256 = "1qp3ip6ab34610rfy0x85xsjg7blfkiy025vskwk9zw6gqglf3b3"; + sha256 = "1g0hivv3wla7z5dgnkcn3ny38p089pjfj36nx6k29zmprgmjinyr"; }; buildInputs = [ python cmake llvmPackages.clang boost makeWrapper ]; diff --git a/pkgs/development/tools/parsing/hammer/default.nix b/pkgs/development/tools/parsing/hammer/default.nix index 5392f14926b8..84e146789244 100644 --- a/pkgs/development/tools/parsing/hammer/default.nix +++ b/pkgs/development/tools/parsing/hammer/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/UpstandingHackers/hammer"; - sha256 = "18bb0p896ch4crhcfxpbvpc17wg8gzv8696pcc51i34mza76jiz9"; + sha256 = "01l0wbhz7dymxlndacin2vi8sqwjlw81ds2i9xyi200w51nsdm38"; rev = "47f34b81e4de834fd3537dd71928c4f3cdb7f533"; }; diff --git a/pkgs/development/tools/phantomjs2/default.nix b/pkgs/development/tools/phantomjs2/default.nix index e5af795fa4b7..88fd2b559848 100644 --- a/pkgs/development/tools/phantomjs2/default.nix +++ b/pkgs/development/tools/phantomjs2/default.nix @@ -39,7 +39,7 @@ in stdenv.mkDerivation rec { src = fetchgit { rev = "refs/tags/${version}"; url = "https://github.com/ariya/phantomjs.git"; - sha256 = "16x104cw5f1dyhf7fg12vlpcywvc9c43r9afhl0dvssgxklrn0q7"; + sha256 = "1gyc8qxn8v4vm4lgd9njrprz46fg1j5ziq0mm888q8ms0p7jy2pi"; }; buildInputs = [ bison2 flex fontconfig freetype gperf icu openssl libjpeg libpng perl python ruby sqlite ] diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix index 2e2332f20f27..a62f92df98a6 100644 --- a/pkgs/development/tools/rtags/default.nix +++ b/pkgs/development/tools/rtags/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { inherit rev; fetchSubmodules = true; url = "https://github.com/andersbakken/rtags.git"; - sha256 = "1jzmpbkx1z8dnpr0ndclb6c3dxnf90ifr8j1nzz4j8cvzdpc3lzc"; + sha256 = "10j1s7kvnd5823p1kgx3hyca9jz9j27y6xk0q208p095wf8hk105"; }; meta = { diff --git a/pkgs/development/tools/rust/racerd/default.nix b/pkgs/development/tools/rust/racerd/default.nix index e315ab38344b..a5a3418388d6 100644 --- a/pkgs/development/tools/rust/racerd/default.nix +++ b/pkgs/development/tools/rust/racerd/default.nix @@ -8,7 +8,7 @@ buildRustPackage rec { src = fetchgit { url = "git://github.com/jwilm/racerd.git"; rev = "dcbb7885e84eb5e2fbb2072e185701ad1abbd93a"; - sha256 = "18c6a1x0li5yxif9qqnsnyas6if0m6srbqh0h0nywgx0lm8bpgly"; + sha256 = "0qm0hpvxba632av355mj1wqd616zjvi0qy045np7mi746m0bbqwh"; }; doCheck = false; diff --git a/pkgs/games/dwarf-fortress/dfhack/default.nix b/pkgs/games/dwarf-fortress/dfhack/default.nix index 120727396845..3d3b1c4d9aa8 100644 --- a/pkgs/games/dwarf-fortress/dfhack/default.nix +++ b/pkgs/games/dwarf-fortress/dfhack/default.nix @@ -35,7 +35,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/DFHack/dfhack"; inherit rev; - sha256 = "0h9y9z4d9lirgpcvj5r2znmfi2avdrgrffi9p63gxp1a3mv9fdm1"; + sha256 = "1p234m8r84cdr4bx622hcd13mshnjc5bw7hdxhv18waaxvdpv6jh"; }; patches = [ ./use-system-libraries.patch ]; diff --git a/pkgs/games/hawkthorne/default.nix b/pkgs/games/hawkthorne/default.nix index e720211da30e..5cb79fa92997 100644 --- a/pkgs/games/hawkthorne/default.nix +++ b/pkgs/games/hawkthorne/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/hawkthorne/hawkthorne-journey.git"; rev = "610b9b3907b2a1b21da2ae926e4c7c4c9e19959b"; - sha256 = "0n2fkk34wr3kyzfhz2mbrzn94vjivblqk2xaid5mj7ls0ymxbmgd"; + sha256 = "013smhdf9sh91153fpk2bwhhnpg6pn7kfrpw77jmf0v48i3q44h2"; }; buildInputs = [ diff --git a/pkgs/games/mars/default.nix b/pkgs/games/mars/default.nix index 2048dffb54b5..fc101ba792a2 100644 --- a/pkgs/games/mars/default.nix +++ b/pkgs/games/mars/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/thelaui/M.A.R.S..git"; inherit rev; - sha256 = "70fc4b5823f2efb03e0bcd3fe82dee88ee93ddfd81d53de0d7eb3fe02793d65e"; + sha256 = "1r4c5gap1z2zsv4yjd34qriqkxaq4lb4rykapyzkkdf4g36lc3nh"; }; buildInputs = [ cmake mesa sfml fribidi taglib ]; patches = [ ./unbind_fix.patch ]; diff --git a/pkgs/games/megaglest/default.nix b/pkgs/games/megaglest/default.nix index 059fa74f8be1..a514cec7edcb 100644 --- a/pkgs/games/megaglest/default.nix +++ b/pkgs/games/megaglest/default.nix @@ -21,7 +21,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://github.com/MegaGlest/megaglest-source"; rev = "refs/tags/${version}"; - sha256 = "0jdgcpsv16vdxkwym7pw764pggifn4g98f3dzg615xl9h4wkymm0"; + sha256 = "1406ns1533x5678d91s2xxxv19q7r238zsaxr37c6mv5jrx7s5jv"; }; buildInputs = [ cmake git curl SDL xercesc openal lua libjpeg wxGTK diff --git a/pkgs/games/unnethack/default.nix b/pkgs/games/unnethack/default.nix index 0ba542fe63c2..ae32de2e7716 100644 --- a/pkgs/games/unnethack/default.nix +++ b/pkgs/games/unnethack/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/UnNetHack/UnNetHack"; rev = "63677eb256b5a75430f190cfb0f76bdd9bd0b9dd"; - sha256 = "48a80ef83308b91d4aa86598e30e5b5ce9a5b2da2a763fe921698990c3243969"; + sha256 = "0w6vyg0j2xdvr5vdlyf3dwliyxjzcr5fdbx5maygxiql44j104v3"; }; buildInputs = [ ncurses ]; diff --git a/pkgs/misc/base16/default.nix b/pkgs/misc/base16/default.nix index 5dad210ab54b..6b53f952aad9 100644 --- a/pkgs/misc/base16/default.nix +++ b/pkgs/misc/base16/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { inherit rev; url = "https://github.com/chriskempson/base16-builder"; - sha256 = "05wyf0qz5z3n3g8lz2rd1b6gv6v7qjaazwjm0w4ib4anj4v026sd"; + sha256 = "1zicwam16nsdg74rnza65jwwf4mlpkgv35p9gkr8ydy60l7agzwy"; }; patches = [ diff --git a/pkgs/misc/emulators/dolphin-emu/master.nix b/pkgs/misc/emulators/dolphin-emu/master.nix index 0eaf08c2b8d4..9743261c6b2b 100644 --- a/pkgs/misc/emulators/dolphin-emu/master.nix +++ b/pkgs/misc/emulators/dolphin-emu/master.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://github.com/dolphin-emu/dolphin.git; rev = "5097a22844b850b429872f4de390bd958b11a616"; - sha256 = "1qizkahbimpmgjs51av1cdmnnyvbz0j0gknmi5vdc38vrzxvwkrf"; + sha256 = "09jx61cxvfimnq1snkv6w3m9qidrgp0j0w81c7pbkpmcwysz8xya"; fetchSubmodules = false; }; diff --git a/pkgs/misc/emulators/mgba/default.nix b/pkgs/misc/emulators/mgba/default.nix index 07470fa54ab4..a35b7a846b18 100644 --- a/pkgs/misc/emulators/mgba/default.nix +++ b/pkgs/misc/emulators/mgba/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/mgba-emu/mgba.git"; rev = "be2641c77b4a438e0db487bc82b43bc27a26e0c2"; - sha256 = "0ygsmmp24w14x5fm2qz2v68p59bs2ravn22axrg2ipn5skkgrvxz"; + sha256 = "1wxywfbkgqvb0j9cyz4nwsfzhxrdjcmvz1k7rljmy4bz1pjcglj1"; }; buildInputs = [ diff --git a/pkgs/misc/emulators/ppsspp/default.nix b/pkgs/misc/emulators/ppsspp/default.nix index 87ae977c7cc7..68fb71050780 100644 --- a/pkgs/misc/emulators/ppsspp/default.nix +++ b/pkgs/misc/emulators/ppsspp/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation rec{ url = "https://github.com/hrydgard/ppsspp.git"; rev = "8c8e5de89d52b8bcb968227d96cbf049d04d1241"; fetchSubmodules = true; - sha256 = "71dfa0be045f31969b1d6ab4f1adf6a208f9ef4834d708bc7bf6d9195efb5f80"; + sha256 = "1q21qskzni0nvz2yi2m17gjh4i9nrs2l4fm4y2dww9m29xpvzw3x"; }; buildInputs = [ zlib libpng pkgconfig qt4 qmake4Hook ] diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix index 07783d016183..259a6007975c 100644 --- a/pkgs/misc/emulators/retroarch/cores.nix +++ b/pkgs/misc/emulators/retroarch/cores.nix @@ -55,7 +55,7 @@ in src = fetchRetro { repo = core + "-libretro"; rev = "cbd700e2bb95f08f241ca24330fa732aa6af8018"; - sha256 = "1118iadkznppygq0mppirx1ycndmjp3fqlj8sshiby47j8sgly6h"; + sha256 = "1xp43hpd23rhj96pns13fz9mjp66gmxzl5frqa8q9fqcn2qkx7b1"; }; description = "Port of 4DO/libfreedo to libretro"; }).override { @@ -67,7 +67,7 @@ in src = fetchRetro { repo = bname; rev = "0bfe7f4f895af0927cec1c06dcae096b59416159"; - sha256 = "0xsf10zkx7pnjpdb9n605663i0vqgnshdfjmb472hg84l9dr4gr5"; + sha256 = "0dmaa1vy6nfj9jk6xkvrbbcxa9j3f3zrp24zflnqbizc088vncb9"; }; description = "Fork of bsnes with HLE DSP emulation restored"; }).override { @@ -79,7 +79,7 @@ in src = fetchRetro { repo = core; rev = "cae5945149a72b1dc0b130d6e60e2690b88a925a"; - sha256 = "1z4gzixkvxn2s5x5pn179ddwwh3blw7phdkp33qxv40kcv6g3h79"; + sha256 = "1qzlbw0vy87zi3w6hp5zj9dxdkj3qc9czjf41sj70irwyvqi0kii"; }; description = "libretro wrapper for desmume NDS emulator"; }).override { @@ -91,7 +91,7 @@ in src = fetchRetro { repo = core + "-libretro"; rev = "b642e054a1f581fbac16c08f4b8df9ab6c474203"; - sha256 = "0h2bk8m1hn2z76hachdmalgh2nv51jgfhmiqqhfkghf00rabinlx"; + sha256 = "0jxbzjhpyw1fzipm2ai2nv62vb0q5cb203m093vakr1zdsx7si2n"; }; description = "Port of Final Burn Alpha to libretro"; }).override { @@ -117,7 +117,7 @@ in src = fetchRetro { repo = core + "-libretro"; rev = "59fb6a652e0de3c3a3b29e58af5ac035958da37e"; - sha256 = "0vgnn4dnxbw258s3vs1wzgy29cvcywlbfdrzddiwxbp7anclzxkv"; + sha256 = "0n2416lgqbzah1q3ji1hhpcdi9h29563gz739kf9libmnz86vd6f"; }; description = "Gambatte libretro port"; }).override { @@ -139,7 +139,7 @@ in src = fetchRetro { repo = "mame"; rev = "8da2303292bb8530f9f4ffad8bf1df95ee4cab74"; - sha256 = "0rzy5klp8vf9vc8fylbdnp2qcvl1nkgw5a55ljqc5vich4as5alq"; + sha256 = "0afsxsm1d4x9jn28qz6v47hhnp7q9i0yqk62i4lk4d7i7m4dq5j9"; }; description = "Port of MAME to libretro"; @@ -151,7 +151,7 @@ in src = fetchRetro { repo = "beetle-pce-fast-libretro"; rev = "6e2eaf75da2eb3dfcf2fd64413f471c8c90cf885"; - sha256 = "1mxlvd3bcc6grryby2xn4k2gia3s49ngkwcvgxlj1fg3hkr5kcp8"; + sha256 = "0m946108wzawg0c4xvqpv6yzfmjngz6lji5hn4swgk0z5f2bj5a5"; }; description = "Port of Mednafen's PC Engine core to libretro"; }).override { @@ -163,7 +163,7 @@ in src = fetchRetro { repo = "beetle-psx-libretro"; rev = "20c9b0eb0062b8768cc40aca0e2b2d626f1002a2"; - sha256 = "1dhql8zy9wv55m1lgvqv412087cqmlw7zwcsmxkl3r4z199dsh3m"; + sha256 = "192xzvdbjjqlxrnxxn45hmrr6yjpxw3gapkbax6nhrabnxhva43k"; }; description = "Port of Mednafen's PSX Engine core to libretro"; }).override { @@ -175,7 +175,7 @@ in src = fetchRetro { repo = core + "-libretro"; rev = "7db9296453629a44de806589f3ff64e824e775ad"; - sha256 = "0gykkx8j0xlkr1dqz5k5hiyki2wsz9ys05df5zv3f2rpk2dkdwyp"; + sha256 = "075lpmwmj99yf9d9905x7apawd4bqz0whr37mh2fgr3jf730yiyl"; }; description = "Libretro port of Mupen64 Plus, GL only"; @@ -189,7 +189,7 @@ in src = fetchRetro { repo = core; rev = "dcaed965760669161d6fd44755887545ea393041"; - sha256 = "09fvk3ki9nw76kb1c4sw6c54wwn9y3ypsxnbzvhzsarmapkd9fa3"; + sha256 = "03fy5hb181ffx8sk9wmm415k084zqqhfqga4crgc7hdqi16s3r5v"; }; description = "nestopia undead libretro port"; }).override { @@ -201,7 +201,7 @@ in src = fetchRetro { repo = core; rev = "e912fdf26376bfa5d7d6488055fe6fdbd13c2e49"; - sha256 = "1jg9ig3vxbmna6cavz39hk6j9dpm4prfmmdpf7lzn1qvpqxs3ynx"; + sha256 = "1mi36y8kx6s76cgygpj11zw35p44gd66mxygmxliz7k6xsd7ww41"; }; description = "Fast MegaDrive/MegaCD/32X emulator"; @@ -216,7 +216,7 @@ in src = fetchRetro { repo = "libretro-" + core; rev = "ea17e27fcf16b9f875718b6550fe7145c6257c06"; - sha256 = "0l6bzh50vh87j0g1s4144qfqa7vy7gry9ifd5vq1y5114fvbqdlb"; + sha256 = "0w5njj5pamqc4a022hdplb7vapwkf34ad1w4acz3c8b05vkl457d"; }; description = "ppsspp libretro port"; extraBuildInputs = [ mesa ffmpeg ]; @@ -241,7 +241,7 @@ in src = fetchRetro { repo = "QuickNES_Core"; rev = "518638b8064c9d0cb1b5aa29d96419f8528c9de5"; - sha256 = "0n6w8g0gklli9qs9vv17kljj83n9pky32ir25r7b202nl0292h53"; + sha256 = "0jv1z65m4j3hbfnb3chklh0dhwlc4gdqr0asswdsc1y4iwp0331c"; }; description = "QuickNES libretro port"; }).override { @@ -253,7 +253,7 @@ in src = fetchRetro { repo = core; rev = "c3e719acc08c1873609bab3578939b7c9e606511"; - sha256 = "08ab4gybp76la3z94dgg0jjzmajva9003p74256hgr7nnk2kwn4q"; + sha256 = "03wvffy3h62qc7f3d8042wd234m8ikd843ggp903y285sgh54r9y"; }; description = "Libretro port of ScummVM"; extraBuildInputs = [ fluidsynth libjpeg libvorbis mesa SDL ]; @@ -278,7 +278,7 @@ in src = fetchRetro { repo = core; rev = "dfb7eef46d6bc2dbcc98f25e2bfadc9d2cff5cfd"; - sha256 = "1naznsy1mhijcijysm9g8r95dxhr8rspixmf6r187rpcrvfd4zbl"; + sha256 = "0vdfjdwr6b5izh3gy63lcfnrdvr99qhlqfibjw4mmyqk9gkjrwm8"; }; description = "Optimized port/rewrite of SNES9x 1.52+ to Libretro"; }; @@ -288,7 +288,7 @@ in src = fetchRetro { repo = core + "-libretro"; rev = "ada5c57d632ace0ba915ce7a470d504a5d89ebcc"; - sha256 = "1riwi6n9fj5vd5jcldwpwaxxvgxv3gs232l6zm9k26x3rngwcyfz"; + sha256 = "090isch1l5hm07l22l8hja31cdiaxc0vgc3i01qs8zgdyvsx4vvg"; }; description = "Port of Stella to libretro"; }).override { @@ -300,7 +300,7 @@ in src = fetchRetro { repo = core; rev = "0c20cd92bc8684340d7a1bcae14a603001ad5e4a"; - sha256 = "09shkha7i7a226nk9wfxswsj3wwrxn7xwrsaaki1x8pvbyy5wjg9"; + sha256 = "016vm2xyjfkkcqkqfw3n09if4bxxppk3g6p92waa9bv2ni4xli69"; }; description = "VBA-M libretro port with modifications for speed"; }; diff --git a/pkgs/misc/emulators/retroarch/default.nix b/pkgs/misc/emulators/retroarch/default.nix index 87fb854c8448..0ab4698c196e 100644 --- a/pkgs/misc/emulators/retroarch/default.nix +++ b/pkgs/misc/emulators/retroarch/default.nix @@ -23,7 +23,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/libretro/RetroArch.git; rev = "09dda14549fc13231311fd522a07a75e923889aa"; - sha256 = "1f7w4i0idc4n0sqc5pcrsxsljk3f614sfdqhdgjb1l4xj16g37cg"; + sha256 = "0yrisl61iaa70ahswzgb505bvm5cxq8ndnv2bw7gqrlm5qrh54qy"; }; buildInputs = [ pkgconfig ffmpeg mesa nvidia_cg_toolkit freetype libxml2 libv4l coreutils diff --git a/pkgs/misc/phabricator/default.nix b/pkgs/misc/phabricator/default.nix index 3162dd0079d0..72551e27fcfb 100644 --- a/pkgs/misc/phabricator/default.nix +++ b/pkgs/misc/phabricator/default.nix @@ -6,17 +6,17 @@ stdenv.mkDerivation rec { srcLibphutil = pkgs.fetchgit { url = git://github.com/facebook/libphutil.git; rev = "48a04395363d6c1dd9f66057bd11fd70d4665ba9"; - sha256 = "d570d2c1e68471c2eda35b8722d8083bcc13163fbd5c944529464f2c7b55a2e5"; + sha256 = "198w4kq86py31m86sgpinz2va3m9j8k92q2pa2qzzi0lyf1sb8c3"; }; srcArcanist = pkgs.fetchgit { url = git://github.com/facebook/arcanist.git; rev = "97501da16416fbfdc6e84bd60abcbf5ad9506225"; - sha256 = "9031c4ae228bdc986131e0c93c98fb73290bb0e297be1ec32f22ab09cdacafa3"; + sha256 = "1afn25db4pv3amjh06p8jk3s14i5139n59zk3h4awk84d2nj1kzk"; }; srcPhabricator = pkgs.fetchgit { url = git://github.com/phacility/phabricator.git; rev = "7ac5abb97934f7399b67762aa98f59f667711bf3"; - sha256 = "6a1d449597ae4432e40a3e6cdb14e3a5a8a40e019f3930493064c35911f2adcc"; + sha256 = "1hk6fnvdfn5w82wnprjdkjm8akzw3zfqm460cjqd8v3q5n21ddpf"; }; buildCommand = '' diff --git a/pkgs/misc/screensavers/alock/default.nix b/pkgs/misc/screensavers/alock/default.nix index 51674f5dd86c..6f2ebbc51581 100644 --- a/pkgs/misc/screensavers/alock/default.nix +++ b/pkgs/misc/screensavers/alock/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/Arkq/alock; rev = "69b547602d965733d415f877eb59d05966bd158d"; - sha256 = "c1f00bf90c966b2b76e00061cc4b54a3c0bc6547e788731ab694b43f55a216ab"; + sha256 = "0lv2ng5qxzcq0vwbl61dbwigv79sin4zg90y9cgsz6ydvm4ncpas"; }; configureFlags = [ diff --git a/pkgs/misc/screensavers/xss-lock/default.nix b/pkgs/misc/screensavers/xss-lock/default.nix index 49dd8bebaeda..a2599d5ebee8 100644 --- a/pkgs/misc/screensavers/xss-lock/default.nix +++ b/pkgs/misc/screensavers/xss-lock/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://bitbucket.org/raymonad/xss-lock.git; rev = "1e158fb20108058dbd62bd51d8e8c003c0a48717"; - sha256 = "0jdpd6x1kk30qynv2n4zbjmsicvwjwcldr2224da0srzl7sgyjsg"; + sha256 = "10hx7k7ga8g08akwz8qrsvj8iqr5nd4siiva6sjx789jvf0sak7r"; }; buildInputs = [ cmake pkgconfig docutils glib libpthreadstubs libXau diff --git a/pkgs/misc/screensavers/xtrlock-pam/default.nix b/pkgs/misc/screensavers/xtrlock-pam/default.nix index 1f12ffa93015..887c179c59d5 100644 --- a/pkgs/misc/screensavers/xtrlock-pam/default.nix +++ b/pkgs/misc/screensavers/xtrlock-pam/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/aanatoly/xtrlock-pam"; rev = "6f4920fcfff54791c0779057e9efacbbbbc05df6"; - sha256 = "fa8aeedfa2a4e1d813f8cad562bafdd4e2c5130df0a7cde7b2f956a32044e9f8"; + sha256 = "1z2wlhi5d05b18pvwz146kp0lkcc6z2mnilk01mk19hzbziyqmsc"; }; buildInputs = [ python pkgconfig xlibsWrapper pam ]; diff --git a/pkgs/misc/themes/orion/default.nix b/pkgs/misc/themes/orion/default.nix index a6d037c3c4fc..da46beb0fb07 100644 --- a/pkgs/misc/themes/orion/default.nix +++ b/pkgs/misc/themes/orion/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/shimmerproject/Orion.git"; rev = "refs/tags/v1.5"; - sha256 = "995671990514a68192dc82ed51eaa6ab17c396950e1d8b7768c262027be6b05f"; + sha256 = "1116yawv3fspkiq1ykk2wj0gza3l04b5nhldy0bayzjaj0y6fd89"; }; propagatedUserEnvPkgs = [ gtk-engine-murrine ]; diff --git a/pkgs/misc/uboot/nanonote.nix b/pkgs/misc/uboot/nanonote.nix index b8261979ec0c..8b2de80c79b3 100644 --- a/pkgs/misc/uboot/nanonote.nix +++ b/pkgs/misc/uboot/nanonote.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { srcPatches = fetchgit { url = "git://projects.qi-hardware.com/openwrt-xburst.git"; rev = "3244d5ef9f93802f9b9b6f4405636424abf6fa83"; - sha256 = "99dde9c3c4c66722d3ee2223d306bc84289a8aa77d0b5918ca49c2f4032ab38f"; + sha256 = "0mg87s10hpz41dr1zbd3bcl8i64gwvh3f1nrz8cb8c49099miqla"; }; patchPhase = '' diff --git a/pkgs/os-specific/gnu/mach/default.nix b/pkgs/os-specific/gnu/mach/default.nix index e8c158507151..852b400ccb14 100644 --- a/pkgs/os-specific/gnu/mach/default.nix +++ b/pkgs/os-specific/gnu/mach/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation ({ src = fetchgit { url = "git://git.sv.gnu.org/hurd/gnumach.git"; - sha256 = "6db17d091d410fb573e15ae5d59d860a17d78b2073f605c1dc1473f6f2c25ccc"; + sha256 = "1q8zk8xzbiwpnvvmfgkylj4gwkvkn5n2ydy9j054qv5plnaczj1c"; inherit rev; }; diff --git a/pkgs/os-specific/linux/disk-indicator/default.nix b/pkgs/os-specific/linux/disk-indicator/default.nix index 406492db2368..d0d0371ec2d7 100644 --- a/pkgs/os-specific/linux/disk-indicator/default.nix +++ b/pkgs/os-specific/linux/disk-indicator/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://github.com/MeanEYE/Disk-Indicator.git; rev = "51ef4afd8141b8d0659cbc7dc62189c56ae9c2da"; - sha256 = "0f8mxl3wqlap8zajdk6r9liliayp8w4xs4jy8jbwanmmppwz0nb9"; + sha256 = "10jx6mx9qarn21p2l2jayxkn1gmqhvck1wymgsr4jmbwxl8ra5kd"; }; buildInputs = [ libX11 ]; diff --git a/pkgs/os-specific/linux/firmware/rt5677/default.nix b/pkgs/os-specific/linux/firmware/rt5677/default.nix index 46716b3f4900..fe083d2ad653 100644 --- a/pkgs/os-specific/linux/firmware/rt5677/default.nix +++ b/pkgs/os-specific/linux/firmware/rt5677/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/raphael/linux-samus"; rev = "995de6c2093797905fbcd79f1a3625dd3f50be37"; - sha256 = "6e59f7ce24122eb9474e7863e63729de632e4c7afcb8f08534cb2102007f8381"; + sha256 = "0a6lz9wadm47cmva136q6wd0lw03bmymf9ispnzb091a7skwacry"; }; diff --git a/pkgs/os-specific/linux/gfxtablet/default.nix b/pkgs/os-specific/linux/gfxtablet/default.nix index 394defdb19ae..36397b77b77d 100644 --- a/pkgs/os-specific/linux/gfxtablet/default.nix +++ b/pkgs/os-specific/linux/gfxtablet/default.nix @@ -5,7 +5,7 @@ let version="git-2013-10-21"; name = "gfxtablet-uinput-driver-${version}"; rev = "c4e337ae0b53a8ccdfe11b904ff129714bd25ec4"; - sha256 = "19d96r2vw9xv82fnfwdyyyf0fja6n06mgg14va996knsn2x5l4la"; + sha256 = "14ll9rls2mamllmpwjiv2dc6165plazv7ny9cliylafrwgb55l7p"; url = "https://github.com/rfc2822/GfxTablet.git"; }; buildInputs = [ diff --git a/pkgs/os-specific/linux/ima-evm-utils/default.nix b/pkgs/os-specific/linux/ima-evm-utils/default.nix index ad3df25df585..a58f55abecf3 100644 --- a/pkgs/os-specific/linux/ima-evm-utils/default.nix +++ b/pkgs/os-specific/linux/ima-evm-utils/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.code.sf.net/p/linux-ima/ima-evm-utils"; rev = "4b56112c095cb5cc34dc35abac37ebfc6eadba65"; - sha256 = "6f1ef4e84b9214448ea4a530a562a20ad1ba5a7cfefd7ddda90a56e2404f3a87"; + sha256 = "1h3rydnaswcmlradafpw8q18zj88bbziad2vb6gn0q7ydr48f3jm"; }; buildInputs = [ autoreconfHook pkgconfig openssl attr keyutils asciidoc libxslt ]; diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix index d781a5b96855..72d7cd1fba0a 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.14.nix @@ -10,7 +10,7 @@ import ./generic.nix (args // rec { src = fetchgit { url = "https://chromium.googlesource.com/chromiumos/third_party/kernel"; rev = "63a768b40c91c6f3518ea1f20d0cb664ed4e6a57"; - sha256 = "613527a032699be32c18d3f5d8d4c215d7718279a1c372c9f371d4e6c0b9cc34"; + sha256 = "1gysrjanvnkbvgml7ipjr119bmlqfqn2zz5ca5kjkapwrfm3cb69"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix index fc0997eabdd7..4be81409ee1e 100644 --- a/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix +++ b/pkgs/os-specific/linux/kernel/linux-chromiumos-3.18.nix @@ -10,7 +10,7 @@ import ./generic.nix (args // rec { src = fetchgit { url = "https://chromium.googlesource.com/chromiumos/third_party/kernel"; rev = "3179ec7e3f07fcc3ca35817174c5fc6584030ab3"; - sha256 = "0hfa97fs216x8q20fsmw02kvf6mw6c6zczfjk2bpym6v7zxdzj28"; + sha256 = "0c9ccasx9kisck23350w1xf8s7qzvgvn70xlxdbkh2b18kgm0y5f"; }; features.iwlwifi = true; diff --git a/pkgs/os-specific/linux/ldm/default.nix b/pkgs/os-specific/linux/ldm/default.nix index a32d815ac2f0..9a9fca2431af 100644 --- a/pkgs/os-specific/linux/ldm/default.nix +++ b/pkgs/os-specific/linux/ldm/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = meta.repositories.git; rev = "refs/tags/v${version}"; - sha256 = "0kkby3a0xgh1lmkbzpsi4am2rqjv3ccgdpic99aw1c76y0ca837y"; + sha256 = "0lxfypnbamfx6p9ar5k9wra20gvwn665l4pp2j4vsx4yi5q7rw2n"; }; buildInputs = [ udev utillinux ]; diff --git a/pkgs/os-specific/linux/lightum/default.nix b/pkgs/os-specific/linux/lightum/default.nix index 62fbecf27d1f..0ef447ed9243 100644 --- a/pkgs/os-specific/linux/lightum/default.nix +++ b/pkgs/os-specific/linux/lightum/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/poliva/lightum; rev = "123e6babe0669b23d4c1dfa5511088608ff2baa8"; - sha256 = "1r8c9mb82qgs8i7dczqx8fc7xrbn413b59xkqgjh4z1pfy75sl79"; + sha256 = "01x24rcrkgksyvqpgkr9zafg3jgs8nqng8yf0hx0kbmcimar8dbp"; }; buildInputs = [ diff --git a/pkgs/os-specific/linux/mmc-utils/default.nix b/pkgs/os-specific/linux/mmc-utils/default.nix index 8f7881b13e8f..a17f687a2550 100644 --- a/pkgs/os-specific/linux/mmc-utils/default.nix +++ b/pkgs/os-specific/linux/mmc-utils/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc-utils.git"; rev = "44f94b925894577f9ffcf2c418dd013a5e582648"; - sha256 = "1c1g9jpyhykhmidz7mjzrf63w3xlzqkijrqz1g6j4dz6p9pv1gax"; + sha256 = "0hkdzc71pdnscbpdpgwljcchiyancarldjyd0w609sy18bky833x"; }; installPhase = '' diff --git a/pkgs/os-specific/linux/trace-cmd/default.nix b/pkgs/os-specific/linux/trace-cmd/default.nix index aeb2c371c2ad..c50f0185eb52 100644 --- a/pkgs/os-specific/linux/trace-cmd/default.nix +++ b/pkgs/os-specific/linux/trace-cmd/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/trace-cmd.git"; rev = "refs/tags/trace-cmd-v${version}"; - sha256 = "42286440a45d1b24552a1d3cdb656dc648ad346fc426b5798bacdbffd3c4b226"; + sha256 = "15d6b7l766h2mamqgphx6l6a33b1zn0yar2h7i6b24ph6kz3idxn"; }; buildInputs = [ asciidoc libxslt ]; diff --git a/pkgs/os-specific/linux/uksmtools/default.nix b/pkgs/os-specific/linux/uksmtools/default.nix index cd7c7527fe9d..4efc2d42f2be 100644 --- a/pkgs/os-specific/linux/uksmtools/default.nix +++ b/pkgs/os-specific/linux/uksmtools/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { # This project uses git submodules, which fetchFromGitHub doesn't support: src = fetchgit { - sha256 = "0ngdmici2vgi2z02brzc3f78j1g1y9myzfxn46zlm1skg94fp692"; + sha256 = "1nj53f24qjp0d87fzrz0y72rmv6lhxyiaqrsbd9v423h5zpmkrnj"; rev = "9f59a3a0b494b758aa91d7d8fa04e21b5e6463c0"; url = "https://github.com/pfactum/uksmtools.git"; }; diff --git a/pkgs/os-specific/linux/usermount/default.nix b/pkgs/os-specific/linux/usermount/default.nix index 6f96445ef5ea..b00fc7296a01 100644 --- a/pkgs/os-specific/linux/usermount/default.nix +++ b/pkgs/os-specific/linux/usermount/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/tom5760/usermount.git"; rev = "0d6aba3c1f8fec80de502f5b92fd8b28041cc8e4"; - sha256 = "1bzxwq83ikljnv0f55siyd6rd0gs9v7jl9947lw6s1npa63x3b55"; + sha256 = "0gpp0vwiwr7kgbhh26jspv3255662mnvnav6g8i2h0qxar8hf8w2"; }; buildInputs = [ pkgconfig dbus libnotify udisks2 gdk_pixbuf ]; diff --git a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix b/pkgs/os-specific/linux/xf86-input-multitouch/default.nix index 8b10136309cd..80ff99228457 100644 --- a/pkgs/os-specific/linux/xf86-input-multitouch/default.nix +++ b/pkgs/os-specific/linux/xf86-input-multitouch/default.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { src = fetchgit { url = http://bitmath.org/git/multitouch.git; rev = "4d87c041f6a232aa30528d70d4b9946d1824b4ed"; - sha256 = "79397c8f99deb2a415e8c9008a2847d973ad19ea004e732613baed707df46fc9"; + sha256 = "1jh52d3lkmchn5xdbz4qn50d30nild1zxvfbvwwl2rbmphs5ww6y"; }; # Configuration from http://bitmath.org/code/multitouch/ diff --git a/pkgs/os-specific/linux/xf86-video-nested/default.nix b/pkgs/os-specific/linux/xf86-video-nested/default.nix index 0f9e0591a060..247ec6e152a7 100644 --- a/pkgs/os-specific/linux/xf86-video-nested/default.nix +++ b/pkgs/os-specific/linux/xf86-video-nested/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://anongit.freedesktop.org/xorg/driver/xf86-video-nested; rev = "ad48dc6eb98776a8a886f26f31c0110352fa1da4"; - sha256 = "43a102405acdcdb346ab197b33c8fa724d2140f33754f8ee3941a0eea152735c"; + sha256 = "0r5k9rk8mq4j51a310qvvfmhhz8a0cmcwr8pl8mkwfsgcpwxbpfg"; }; buildInputs = diff --git a/pkgs/servers/brickd/default.nix b/pkgs/servers/brickd/default.nix index a99c8c5a6f95..8478804a7b03 100644 --- a/pkgs/servers/brickd/default.nix +++ b/pkgs/servers/brickd/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/Tinkerforge/brickd.git"; rev = "refs/tags/v${version}"; - sha256 = "08g587bgx628g5vykh482wxiw0z98fmq4lf5ka6aw0v8l9gim9yf"; + sha256 = "0m2q01sbgf8z4559jpr6k3jivb8x98vxv1fhgx8nfcjbwz1q83gb"; }; buildInputs = [ libusb pkgconfig pmutils udev ]; diff --git a/pkgs/servers/mediatomb/default.nix b/pkgs/servers/mediatomb/default.nix index 4d3ef231af3f..c4a5b0ebd290 100644 --- a/pkgs/servers/mediatomb/default.nix +++ b/pkgs/servers/mediatomb/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = meta.repositories.git; rev = "7ab761696354868bd5d67ff4f2d849994e4c98e2"; - sha256 = "7b51d488ac0b93c7720f8f8373970884a55b0879b1f6941873e916f41177d062"; + sha256 = "1mimslr4q6mky865y6561rr64cbn4gf0qc2dhgb31hxp4rc1kmzd"; }; buildInputs = [ sqlite expat spidermonkey taglib libexif curl ffmpeg file mp4v2 flac diff --git a/pkgs/servers/neard/default.nix b/pkgs/servers/neard/default.nix index 995ffc41c60e..b96fa684bfae 100644 --- a/pkgs/servers/neard/default.nix +++ b/pkgs/servers/neard/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://git.kernel.org/pub/scm/network/nfc/neard.git"; - sha256 = "08327b536ad8460a08bdceeec48c561e75ca56e5e0ee034c40d02cd1545906c0"; + sha256 = "07dny1l8n46v0yn30zqa8bkyj8ay01xphc124nhf2sqwbff7nf2m"; }; buildInputs = [ autoreconfHook pkgconfig systemd glib dbus libnl pythonPackages.python pythonPackages.wrapPython ]; diff --git a/pkgs/servers/openxpki/default.nix b/pkgs/servers/openxpki/default.nix index 777ad9407c75..83f9347cd157 100644 --- a/pkgs/servers/openxpki/default.nix +++ b/pkgs/servers/openxpki/default.nix @@ -8,7 +8,7 @@ buildPerlPackage { src = fetchgit { url = "https://github.com/openxpki/openxpki"; rev = "5cb76c553b6b1a81ede380857700628a7521f6e3"; - sha256 = "7c93bdce7a205c58b08c91c249e566e885ed08f9d43cc2ac652c705c1f7e4490"; + sha256 = "05bmhani2c7ays488xv3hx5xbxb612bnwq5rdjwmsj51xpaz454p"; }; buildInputs = [ perl openssl gettext python34Packages.sphinx ]; diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index ef7d64b3e781..dffe83490a23 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -76,7 +76,7 @@ in stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "0zmb7g00y5q4alf70i1chv3yim63i03sy4p8i83bzvxri59vw0zv"; + outputHash = "0nf2fgfiapxg26c7bxl985pszpgnzyan4j4jiaf5zvflza67h777"; }; configureFlags = diff --git a/pkgs/shells/es/default.nix b/pkgs/shells/es/default.nix index 3a4574fb8e16..ba9fe29c33e6 100644 --- a/pkgs/shells/es/default.nix +++ b/pkgs/shells/es/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://github.com/wryun/es-shell"; rev = "fdf29d5296ce3a0ef96d2b5952cff07878753975"; - sha256 = "1hj0g8r59ry9l50h4gdal38nf8lvb3cgl6c9bx5aabkw5i778dfk"; + sha256 = "12faa9b5ffwydgwyjp57zr19sqap2ma3crj6wd2rx1hv30dkll7p"; }; buildInputs = [ readline yacc libtool autoconf automake ]; diff --git a/pkgs/shells/oh-my-zsh/default.nix b/pkgs/shells/oh-my-zsh/default.nix index 78b112210acf..473b364981b7 100644 --- a/pkgs/shells/oh-my-zsh/default.nix +++ b/pkgs/shells/oh-my-zsh/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/robbyrussell/oh-my-zsh"; rev = "1b1315a777328095cd8b5f364fd4345eeae7c4bf"; - sha256 = "0q3w96a9rjxmqknycxjqjs5mi0q2mark8yrfim7snxrf9ajv0ypk"; + sha256 = "1bdh6k46kwggihw6iblm1q60x4hjxpbkhaqap0nfpapqvlba4nv6"; }; phases = "installPhase"; diff --git a/pkgs/shells/zsh-prezto/default.nix b/pkgs/shells/zsh-prezto/default.nix index 96b8cdd62500..0a2e784b17d6 100644 --- a/pkgs/shells/zsh-prezto/default.nix +++ b/pkgs/shells/zsh-prezto/default.nix @@ -14,7 +14,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/sorin-ionescu/prezto"; inherit rev; - sha256 = "1q137r2vv16cq962n0f2hyn8m04d3phvh72gz737zv99jcrqg821"; + sha256 = "17mql9mb7zbf8q1nvnci60yrmz5bl9q964i8dv4shz8b42861cdg"; fetchSubmodules = true; }; patches = [ diff --git a/pkgs/tools/X11/ckbcomp/default.nix b/pkgs/tools/X11/ckbcomp/default.nix index 87161a6442a4..dbca73359440 100644 --- a/pkgs/tools/X11/ckbcomp/default.nix +++ b/pkgs/tools/X11/ckbcomp/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://anonscm.debian.org/d-i/console-setup.git"; rev = "refs/tags/${version}"; - sha256 = "0za7y5v5rsl9da67rfiwzyfaia4xgnavqdadq0l6v8blc2kcsxr7"; + sha256 = "1whli40ik5izyfs0m8d08gq8zcsdjscnxbsvxyxvdnkrvzw4izdz"; }; buildInputs = [ perl ]; diff --git a/pkgs/tools/X11/ksuperkey/default.nix b/pkgs/tools/X11/ksuperkey/default.nix index 233296e58ac4..a753f9bd170e 100644 --- a/pkgs/tools/X11/ksuperkey/default.nix +++ b/pkgs/tools/X11/ksuperkey/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/hanschen/ksuperkey"; rev = "e75a31a0e3e80b14341e92799a7ce3232ac37639"; - sha256 = "00be6b93daf78bae0223f002e782e30a650dded3c5a83b1adfe9439e20e398fb"; + sha256 = "0y4wkak9dvcm14g54ll1ln9aks2az63hx8fv7b8d3nscxjbkxl6g"; }; preConfigure = '' diff --git a/pkgs/tools/X11/skippy-xd/default.nix b/pkgs/tools/X11/skippy-xd/default.nix index b3e9ad759f19..71a4f012a01d 100644 --- a/pkgs/tools/X11/skippy-xd/default.nix +++ b/pkgs/tools/X11/skippy-xd/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/richardgv/skippy-xd/"; rev = "397216ca67"; - sha256 = "19lvy5888j7rl52dsxv1wwxxijdlk8d7qn1zzzy0b8wvqknhxypm"; + sha256 = "0zcjacilmsv69rv85j6nfr6pxy8z36w1sjz0dbjg6s5m4kga1zl8"; }; makeFlags = ["PREFIX=$(out)"]; preInstall = '' diff --git a/pkgs/tools/X11/xcape/default.nix b/pkgs/tools/X11/xcape/default.nix index 35d353d9861b..5436edd0ea37 100644 --- a/pkgs/tools/X11/xcape/default.nix +++ b/pkgs/tools/X11/xcape/default.nix @@ -16,7 +16,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/alols/xcape; rev = "f3802fc086ce9d961d644a5d29ad5b650db56215"; - sha256 = "05mm4ap69ncwl4hhzf2dvbazqxjf27477cd3chpfc7qi7srqasvz"; + sha256 = "0d79riwzmjr621ss3yhxqn2q8chn3f9rvk2nnjckz5yxbifvfg9s"; }; preConfigure = '' makeFlags="$makeFlags PREFIX=$out" diff --git a/pkgs/tools/X11/xtrace/default.nix b/pkgs/tools/X11/xtrace/default.nix index c3c9c70fe927..35342035c9d5 100644 --- a/pkgs/tools/X11/xtrace/default.nix +++ b/pkgs/tools/X11/xtrace/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://git.debian.org/xtrace/xtrace.git"; rev = "refs/tags/xtrace-1.3.1"; - sha256 = "0csjw88ynzzcmx1jlb65c74r2sp9dzxn00airsxxfsipb74049d0"; + sha256 = "1g26hr6rl7bbb9cwqk606nbbapslq3wnsy8j28azrgi8hgfqhjfi"; }; buildInputs = [ libX11 makeWrapper autoreconfHook ]; diff --git a/pkgs/tools/X11/xwinmosaic/default.nix b/pkgs/tools/X11/xwinmosaic/default.nix index 95f351297548..40956f2acc4d 100644 --- a/pkgs/tools/X11/xwinmosaic/default.nix +++ b/pkgs/tools/X11/xwinmosaic/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/soulthreads/xwinmosaic/"; rev = "refs/tags/v0.4.2"; - sha256 = "0ddriqx4idyp55v8js5xazmhl09jwkmnv5nlfzhs2cpvshcj56ri"; + sha256 = "16qhrpgn84fz0q3nfvaz5sisc82zk6y7c0sbvbr69zfx5fwbs1rr"; }; meta = { inherit version; diff --git a/pkgs/tools/audio/mpdcron/default.nix b/pkgs/tools/audio/mpdcron/default.nix index f113eaf8145e..a8556c4ada12 100644 --- a/pkgs/tools/audio/mpdcron/default.nix +++ b/pkgs/tools/audio/mpdcron/default.nix @@ -15,7 +15,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/alip/mpdcron.git; rev = "1dd16181c32f33e7754bbe21841c8e70b28f8ecd"; - sha256 = "1h3n433jn9yg74i218pkxzrngsjpnf0z02lakfldl6j1s9di2pn3"; + sha256 = "0ayr9a5f6i4z3wx486dp77ffzs61077b8w871pqr3yypwamcjg6b"; }; meta = { diff --git a/pkgs/tools/audio/pa-applet/default.nix b/pkgs/tools/audio/pa-applet/default.nix index 7dedb27443ba..6e3e5617b311 100644 --- a/pkgs/tools/audio/pa-applet/default.nix +++ b/pkgs/tools/audio/pa-applet/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/fernandotcl/pa-applet.git"; rev = "005f192df9ba6d2e6491f9aac650be42906b135a"; - sha256 = "1rqnp6nzgb3z7c6pvd5qzsxprwrzif8cfx6i7xp3f0x5s7n2dqkb"; + sha256 = "1242sdri67wnm1cd0hr40mxarkh7qs7mb9n2m0g9dbz0f4axj6wa"; }; buildInputs = [ diff --git a/pkgs/tools/backup/burp/1.3.48.nix b/pkgs/tools/backup/burp/1.3.48.nix index a3cef656bdbc..bff46992d8b4 100644 --- a/pkgs/tools/backup/burp/1.3.48.nix +++ b/pkgs/tools/backup/burp/1.3.48.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/grke/burp.git"; rev = "3636ce0a992904a374234d68170fc1c265bff357"; - sha256 = "708e06b758e8f918aaf7cc8f7517a7eadd456263fe34618e32330e5ad69438c0"; + sha256 = "1vycivml5r87y4fmcpi9q82nhiydrq3zqvkr2gsp9d1plwsbgizz"; }; patches = [ ./burp_1.3.48.patch ]; diff --git a/pkgs/tools/backup/burp/default.nix b/pkgs/tools/backup/burp/default.nix index 5dea4eba4895..eb4240d33c6a 100644 --- a/pkgs/tools/backup/burp/default.nix +++ b/pkgs/tools/backup/burp/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/grke/burp.git"; rev = "1e8eebac420f2b0dc29102602b7e5e437d58d5b7"; - sha256 = "201fe6daf598543eaf3c8cf3495812b3a65695c6841f555410aaaab1098b8f03"; + sha256 = "02gpgcyg1x0bjk8349019zp3m002lmdhil6g6n8xv0kzz54v6gaw"; }; patches = [ ./burp_1.4.40.patch ]; diff --git a/pkgs/tools/cd-dvd/vobsub2srt/default.nix b/pkgs/tools/cd-dvd/vobsub2srt/default.nix index 31f4348a9920..a345972b3737 100644 --- a/pkgs/tools/cd-dvd/vobsub2srt/default.nix +++ b/pkgs/tools/cd-dvd/vobsub2srt/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { src = fetchgit { inherit rev; url = https://github.com/ruediger/VobSub2SRT.git; - sha256 = "8e867a021ac529e7607627d5944b95bb9f1378ffabd8837e7a028663a8ce5adf"; + sha256 = "1rpanrv8bgdh95v2320qbd44xskncvq6y84cbbfc86gw0qxpd9cb"; }; buildInputs = [ cmake libtiff pkgconfig ]; diff --git a/pkgs/tools/filesystems/ceph/default.nix b/pkgs/tools/filesystems/ceph/default.nix index a82867e59a21..b5d62482bf51 100644 --- a/pkgs/tools/filesystems/ceph/default.nix +++ b/pkgs/tools/filesystems/ceph/default.nix @@ -6,7 +6,7 @@ callPackage ./generic.nix (args // rec { src = fetchgit { url = "https://github.com/ceph/ceph.git"; rev = "refs/tags/v${version}"; - sha256 = "1lcal0jbpnm6y91s2v0g2zdnq7q0i5ql4bky294cz7g011di12vc"; + sha256 = "0a2v3bgkrbkzardcw7ymlhhyjlwi08qmcm7g34y2sjsxk9bd78an"; }; patches = [ ./fix-pythonpath.patch ]; diff --git a/pkgs/tools/filesystems/grive/default.nix b/pkgs/tools/filesystems/grive/default.nix index c6d2776f437a..e9a7204f0e6c 100644 --- a/pkgs/tools/filesystems/grive/default.nix +++ b/pkgs/tools/filesystems/grive/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/Grive/grive.git"; rev = "51e42914f3666ee6e0bc16a4c78f60b117265c24"; - sha256 = "f2b978cc93a2d16262c7b78c62019b2a58044eaef4ca95feaa74dfd4dfcbfa36"; + sha256 = "11cqfcjl128nfg1rjvpvr9x1x2ch3kyliw4vi14n51zqp82f9ysb"; }; buildInputs = [cmake libgcrypt json_c curl expat stdenv binutils boost]; diff --git a/pkgs/tools/filesystems/tmsu/default.nix b/pkgs/tools/filesystems/tmsu/default.nix index 5ebd567b8ba7..03d5bd145ac4 100644 --- a/pkgs/tools/filesystems/tmsu/default.nix +++ b/pkgs/tools/filesystems/tmsu/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { go-sqlite3 = fetchgit { url = "git://github.com/mattn/go-sqlite3"; rev = "c9a0db5d8951646743317f0756da0339fe144dd5"; - sha256 = "0j01nr3q89qs9n9zzp8gsr94hl9v0gnis6hmndl9ms554bhlv99p"; + sha256 = "1m0q9869fis0dhg34g5wc5xi6pby491spfxi23w461h29higbrqh"; }; go-fuse = fetchgit { url = "git://github.com/hanwen/go-fuse"; rev = "8c85ded140ac1889372a0e22d8d21e3d10a303bd"; - sha256 = "1kssndvrbcxvf85x6c6lgn5kpcl7d788z3sxrv1szik4acb6n2sa"; + sha256 = "1iph2hpvby2mfwqg9pp39xjqdl9a09h4442yfdn5l67pznljh2bi"; }; src = fetchFromGitHub { diff --git a/pkgs/tools/graphics/povray/default.nix b/pkgs/tools/graphics/povray/default.nix index 73b92b3974df..1dceb210235c 100644 --- a/pkgs/tools/graphics/povray/default.nix +++ b/pkgs/tools/graphics/povray/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/POV-Ray/povray.git"; rev = "39ce8a24e50651904010dda15872d63be15d7c37"; - sha256 = "0d56631d9daacb8967ed359025f56acf0bd505d1d9e752859e8ff8656ae72d20"; + sha256 = "1nbs9vwf6fn3jkm0myfnbn7nrc17q8ppzmr4h7kj49nr0710ifw0"; }; diff --git a/pkgs/tools/graphics/qrcode/default.nix b/pkgs/tools/graphics/qrcode/default.nix index e5bc5517b89e..f0e86ddfb1de 100644 --- a/pkgs/tools/graphics/qrcode/default.nix +++ b/pkgs/tools/graphics/qrcode/default.nix @@ -8,7 +8,7 @@ let name = "${baseName}-${version}"; url = "https://github.com/qsantos/qrcode"; rev = "2843cbada3b768f60ee1ae13c65160083558cc03"; - sha256 = "0x321xhzxk6ldvpr2090w14khj9n2gfay9db5vvvli16affpcrvb"; + sha256 = "1qli0b62yngqj66v6vdqqgcysy3q3fr5vwpf7yf0d9a0dg862x8a"; }; buildInputs = [ ]; diff --git a/pkgs/tools/graphics/quirc/default.nix b/pkgs/tools/graphics/quirc/default.nix index 6da565b292f9..2769a9886695 100644 --- a/pkgs/tools/graphics/quirc/default.nix +++ b/pkgs/tools/graphics/quirc/default.nix @@ -8,7 +8,7 @@ let name = "${baseName}-${version}"; url = "https://github.com/dlbeer/quirc"; rev = "3a3df0d1d6adc59fdc2cadecfaed91650b84cacb"; - sha256 = "0wk2lmnw1k6m12dxs5a684mrm05x362h5kr3dwkfj8pyvdw3am18"; + sha256 = "1r7jzxl4j93dmky8p5szpcxq7i5f7p1kfrklnzhazlizjc7a2844"; }; buildInputs = [ SDL SDL_gfx libjpeg pkgconfig diff --git a/pkgs/tools/misc/calamares/default.nix b/pkgs/tools/misc/calamares/default.nix index 596030216f60..98fcf9182d4b 100644 --- a/pkgs/tools/misc/calamares/default.nix +++ b/pkgs/tools/misc/calamares/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/calamares/calamares.git"; rev = "dabfb68a68cb012a90cd7b94a22e1ea08f7dd8ad"; - sha256 = "2851ce487aaac61d2df342a47f91ec87fe52ff036227ef697caa7056fe5f188c"; + sha256 = "12n161fmzybi20pxcjikqnckhzh175ni5da122p74bx7fzv7q41p"; }; buildInputs = [ diff --git a/pkgs/tools/misc/cpuminer-multi/default.nix b/pkgs/tools/misc/cpuminer-multi/default.nix index 4b4eb87b0ea7..5657703d3f22 100644 --- a/pkgs/tools/misc/cpuminer-multi/default.nix +++ b/pkgs/tools/misc/cpuminer-multi/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchgit { inherit rev; url = https://github.com/wolf9466/cpuminer-multi.git; - sha256 = "9c438c6cd9f40273822f3d3103a370e43e8a40368695ed5e01ae87297dce7843"; + sha256 = "1lzaiwy2wk9awpzpfnp3d6dymnb4bvgw1vg2433plfqhi9jfdrqj"; }; buildInputs = [ autoconf automake curl jansson ]; diff --git a/pkgs/tools/misc/ddate/default.nix b/pkgs/tools/misc/ddate/default.nix index 3626876ae97c..6dedb0b36a5b 100644 --- a/pkgs/tools/misc/ddate/default.nix +++ b/pkgs/tools/misc/ddate/default.nix @@ -5,7 +5,7 @@ stdenv.mkDerivation { src = fetchgit { url = "https://github.com/bo0ts/ddate"; rev = "refs/tags/v0.2.2"; - sha256 = "1mv7x8g6ddzspcxghzz5dsxrj0x7bw5hc9yvqbl9va9z7nahwv80"; + sha256 = "1qchxnxvghbma6gp1g78wnjxsri0b72ha9axyk31cplssl7yn73f"; }; buildInputs = [ cmake ]; diff --git a/pkgs/tools/misc/diffoscope/default.nix b/pkgs/tools/misc/diffoscope/default.nix index b916b91d5d23..1687c9fffafc 100644 --- a/pkgs/tools/misc/diffoscope/default.nix +++ b/pkgs/tools/misc/diffoscope/default.nix @@ -13,7 +13,7 @@ pythonPackages.buildPythonApplication rec { src = fetchgit { url = "git://anonscm.debian.org/reproducible/diffoscope.git"; rev = "refs/tags/${version}"; - sha256 = "1a22abvjs8f8c4anrcfhn02xw7m2gl701b9csxy06c5ymib0npxd"; + sha256 = "18nqsd51rc0rldyxnjmzn86154asianhv415llhbxpr1a6zwqis6"; }; patches = diff --git a/pkgs/tools/misc/execline/default.nix b/pkgs/tools/misc/execline/default.nix index 1726afca0d02..f34c9b6db230 100644 --- a/pkgs/tools/misc/execline/default.nix +++ b/pkgs/tools/misc/execline/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/execline"; rev = "refs/tags/v${version}"; - sha256 = "1k4db9iyskrqf6wbc4dkiqgpn0wb43qc9rf1br7kvy9rrzq3yrj0"; + sha256 = "01hfh2gmap3qd9qc5ncp1sxagrsi8q6cdjxxspwpmrc4d4cmzcr0"; }; dontDisableStatic = true; diff --git a/pkgs/tools/misc/grub/trusted.nix b/pkgs/tools/misc/grub/trusted.nix index 694f45599f30..6ae672db7a55 100644 --- a/pkgs/tools/misc/grub/trusted.nix +++ b/pkgs/tools/misc/grub/trusted.nix @@ -35,12 +35,12 @@ stdenv.mkDerivation rec { then fetchgit { url = "https://github.com/Sirrix-AG/TrustedGRUB2"; rev = "ab483d389bda3115ca0ae4202fd71f2e4a31ad41"; - sha256 = "4b715837f8632278720d8b29aec06332f5302c6ba78183ced5f48d3c376d89c0"; + sha256 = "1760d9hsnqkdvlag9nn8f613mqhnsxmidgvdkpmb37b0yi7p6lhz"; } else fetchgit { url = "https://github.com/Sirrix-AG/TrustedGRUB2"; rev = "1ff54a5fbe02ea01df5a7de59b1e0201e08d4f76"; - sha256 = "8c17bd7e14dd96ae9c4e98723f4e18ec6b21d45ac486ecf771447649829d0b34"; + sha256 = "0yrfwx67gpg9gij5raq0cfbx3jj769lkg3diqgb7i9n86hgcdh4k"; }; nativeBuildInputs = [ autogen flex bison python autoconf automake ]; diff --git a/pkgs/tools/misc/ipxe/default.nix b/pkgs/tools/misc/ipxe/default.nix index 4346d25ca07c..a79b9018c545 100644 --- a/pkgs/tools/misc/ipxe/default.nix +++ b/pkgs/tools/misc/ipxe/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://git.ipxe.org/ipxe.git; - sha256 = "22f427df9141a2bbb319b51bdca4f2b7d3a4cbb5d1b2dcb35a43460eac59d305"; + sha256 = "0wiy3kag6x8a2a71pc9za9izmac8gdz90vaqp2mwgih6p2lz01zq"; inherit rev; }; diff --git a/pkgs/tools/misc/ltunify/default.nix b/pkgs/tools/misc/ltunify/default.nix index 0329581bfaab..cf28fa051326 100644 --- a/pkgs/tools/misc/ltunify/default.nix +++ b/pkgs/tools/misc/ltunify/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://git.lekensteyn.nl/ltunify.git"; rev = "c3a263ff97bcd31e96abbfed33d066f8d2778f58"; - sha256 = "0zjw064fl9f73ppl9c37wsfhp6296yx65m1gis2n2ia6arlnh45q"; + sha256 = "04g7mmljkx8643k53yd9x4k2ndrr98w7fbq10qn8ll6didkph3v8"; }; makeFlags = [ "DESTDIR=$(out)" "bindir=/bin" ]; diff --git a/pkgs/tools/misc/mdbtools/git.nix b/pkgs/tools/misc/mdbtools/git.nix index 777fc7bfd16d..2dd90e4bcaf4 100644 --- a/pkgs/tools/misc/mdbtools/git.nix +++ b/pkgs/tools/misc/mdbtools/git.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = "http://github.com/brianb/mdbtools.git"; rev = "9ab40e83e6789015c965c92bdb62f92f8cdd0dbd"; - sha256 = "18j1a9y9xhl7hhx30zvmx2n4w7dc8c7sdr6722sf3mh5230mvv59"; + sha256 = "0hlf5lk86xm0bpdlpk4a1zyfvbim76dhvmybxga2p7mbb1jc825l"; }; buildInputs = [ diff --git a/pkgs/tools/misc/xburst-tools/default.nix b/pkgs/tools/misc/xburst-tools/default.nix index 93a2707d1e98..56d16fbd9055 100644 --- a/pkgs/tools/misc/xburst-tools/default.nix +++ b/pkgs/tools/misc/xburst-tools/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation { src = fetchgit { url = git://projects.qi-hardware.com/xburst-tools.git; rev = "c71ce8e15db25fe49ce8702917cb17720882e341"; - sha256 = "abe4c4591183f2bc5ca6363451d1cd7d966c080b4f5bfb0fedf7e9a4f70267a4"; + sha256 = "1hzdngs1l5ivvwnxjwzc246am6w1mj1aidcf0awh9yw0crzcjnjr"; }; preConfigure = '' diff --git a/pkgs/tools/misc/xfstests/default.nix b/pkgs/tools/misc/xfstests/default.nix index 5269955ebdf9..a7098ae21602 100644 --- a/pkgs/tools/misc/xfstests/default.nix +++ b/pkgs/tools/misc/xfstests/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://oss.sgi.com/xfs/cmds/xfstests.git"; rev = "dfe582dd396f16ddce1909baab7376e00af07792"; - sha256 = "0hbgccmhcxn5nm87nq13kpi3rcbjadlj65kd03bfjqxhm4gx732q"; + sha256 = "1pvqzw4f0r63lzhcw2lii72bp4dwqd50xshv8ch7v529z0f5icwa"; }; buildInputs = [ acl autoreconfHook attr gawk libaio libuuid libxfs openssl perl ]; diff --git a/pkgs/tools/networking/biosdevname/default.nix b/pkgs/tools/networking/biosdevname/default.nix index f39f37453551..2b7d3a5dc7ac 100644 --- a/pkgs/tools/networking/biosdevname/default.nix +++ b/pkgs/tools/networking/biosdevname/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://linux.dell.com/biosdevname.git; rev = "refs/tags/v${version}"; - sha256 = "11g2pziss0i65mr4y3mwjlcdgpygaxa06lr4q8plmrwl9cick1qa"; + sha256 = "059s3qyky9i497c9wnrjml15sknpsqbv01ww7q95bf9ybhdqqq8w"; }; buildInputs = [ diff --git a/pkgs/tools/networking/bud/default.nix b/pkgs/tools/networking/bud/default.nix index 46f923df4e9e..48ae772e1271 100644 --- a/pkgs/tools/networking/bud/default.nix +++ b/pkgs/tools/networking/bud/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/indutny/bud.git"; rev = "b112852c9667632f692d2ce3dcd9a8312b61155a"; - sha256 = "1acvsx71fmmqhqf00ria3rbq453476x1jx0x8rp6nds5nx2mi0np"; + sha256 = "08yr6l4lc2m6rng06253fcaznf6sq0v053wfr8bbym42c32z0xdh"; }; buildInputs = [ diff --git a/pkgs/tools/networking/connmanui/default.nix b/pkgs/tools/networking/connmanui/default.nix index 32ae736494f7..3c2d86f33135 100644 --- a/pkgs/tools/networking/connmanui/default.nix +++ b/pkgs/tools/networking/connmanui/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { inherit rev; url = "git://github.com/tbursztyka/connman-ui.git"; - sha256 = "2072b337379b849cc55a19a3bb40834941e3f82b3924ef5d9b29e887fd19055e"; + sha256 = "0ixx8c9cfdp480z21xfjb7n1x27sf1g8gmgbmcfhr0k888dmziyy"; }; buildInputs = [ autoconf automake libtool glib gtk3 dbus pkgconfig file intltool connman ]; diff --git a/pkgs/tools/networking/isync/unstable.nix b/pkgs/tools/networking/isync/unstable.nix index 309190ddfb4d..eae7167f2fed 100644 --- a/pkgs/tools/networking/isync/unstable.nix +++ b/pkgs/tools/networking/isync/unstable.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.code.sf.net/p/isync/isync"; inherit rev; - sha256 = "1flm9lkgf1pa6aa678xr0yj5fxwh8c9jpjzd4002f4jjmcf4w57s"; + sha256 = "02bm5m3bwpfns7qdwfybyl4fwa146n55v67pdchkhxaqpa4ddws1"; }; buildInputs = [ openssl pkgconfig db cyrus_sasl autoconf automake ]; diff --git a/pkgs/tools/networking/openvpn/update-resolv-conf.nix b/pkgs/tools/networking/openvpn/update-resolv-conf.nix index f5937f050043..80f7d149b7f4 100644 --- a/pkgs/tools/networking/openvpn/update-resolv-conf.nix +++ b/pkgs/tools/networking/openvpn/update-resolv-conf.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/masterkorp/openvpn-update-resolv-conf/; rev = "dd968419373bce71b22bbd26de962e89eb470670"; - sha256 = "dd0e3ea3661253d565bda876eb52a3f8461a3fc8237a81c40809c2071f83add1"; + sha256 = "0j7mg66lqhgvhybgbn98y7i5skj1ify41hmb0yhkx2xrli8027b9"; }; nativeBuildInputs = [ makeWrapper ]; diff --git a/pkgs/tools/networking/p2p/seeks/default.nix b/pkgs/tools/networking/p2p/seeks/default.nix index 621e71c9eae2..cddfb9621dc5 100644 --- a/pkgs/tools/networking/p2p/seeks/default.nix +++ b/pkgs/tools/networking/p2p/seeks/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation { src = fetchgit { url = "git://github.com/beniz/seeks.git"; rev = "1168b3a2f3111c3fca31dd961135194c3e8df5fd"; - sha256 = "159k9fk1ry8cybrq38jxm1qyxks9hlkfz624hzwxlzah6xb2j8a4"; + sha256 = "18s2pxal9a2aayv63hc19vnkx5a5y9rhbipdpvkinbni5283iiar"; }; buildInputs = diff --git a/pkgs/tools/networking/pingtcp/default.nix b/pkgs/tools/networking/pingtcp/default.nix index a1b1f549ee4a..484eab3a221c 100644 --- a/pkgs/tools/networking/pingtcp/default.nix +++ b/pkgs/tools/networking/pingtcp/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { # This project uses git submodules, which fetchFromGitHub doesn't support: src = fetchgit { - sha256 = "0an4dbwcp2qv1n068q0s34lz88vl1z2rqfh3j9apbq7bislsrwdd"; + sha256 = "1cv84n30y03s1b83apxxyn2jv5ss1pywsahrfrpkb6zcgzzrcqn8"; rev = "refs/tags/v${version}"; url = "https://github.com/LanetNetwork/pingtcp.git"; }; diff --git a/pkgs/tools/networking/proxychains/default.nix b/pkgs/tools/networking/proxychains/default.nix index 0181f1891c6b..2b85cef70c55 100644 --- a/pkgs/tools/networking/proxychains/default.nix +++ b/pkgs/tools/networking/proxychains/default.nix @@ -4,7 +4,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/haad/proxychains.git; rev = "c9b8ce35b24f9d4e80563242b759dff54867163f"; - sha256 = "4ab73e14c5db6d32d88e0710a9f1b7c9c77b59574a7cf0e9f69f34d8ec9fb643"; + sha256 = "163h3d3lpglbzjadf8a9kfaf0i1ds25r7si6ll6d5khn1835zik5"; }; meta = { diff --git a/pkgs/tools/networking/s6-dns/default.nix b/pkgs/tools/networking/s6-dns/default.nix index 8715cb0c45cc..a8bbe8b71ab4 100644 --- a/pkgs/tools/networking/s6-dns/default.nix +++ b/pkgs/tools/networking/s6-dns/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6-dns"; rev = "refs/tags/v${version}"; - sha256 = "033pijilkvj3vw94aqrvavr4mqafm7kcc8ql8lc3ma6lqkx4xyak"; + sha256 = "1f9a4bjpsqhs9aq0zam74mj6zn1ffaljgp98hqj9j83d2jlvqpv5"; }; dontDisableStatic = true; diff --git a/pkgs/tools/networking/s6-networking/default.nix b/pkgs/tools/networking/s6-networking/default.nix index 603b2f61551b..fa7994e8f8f3 100644 --- a/pkgs/tools/networking/s6-networking/default.nix +++ b/pkgs/tools/networking/s6-networking/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6-networking"; rev = "refs/tags/v${version}"; - sha256 = "1mvsiiv2zk1mbhway5q593xzjzd3lyzdqg85wrpvv791mv0kk8m9"; + sha256 = "0rm0vpfshayhi5qwsvkgzdjmg43lvslp74h7lda964p72wr6gahg"; }; dontDisableStatic = true; diff --git a/pkgs/tools/networking/tinc/pre.nix b/pkgs/tools/networking/tinc/pre.nix index 61e4ee281edc..c09c9a45756d 100644 --- a/pkgs/tools/networking/tinc/pre.nix +++ b/pkgs/tools/networking/tinc/pre.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { rev = "refs/tags/release-${version}"; url = "git://tinc-vpn.org/tinc"; - sha256 = "0idc4ddhz380xw26c8wwdyr0p6pibada55f0hzhnc2cz9za9x4iv"; + sha256 = "05an2vj0a3wjv5w672wgzyixbydin5jpja5zv6x81bc72dms0ymc"; }; outputs = [ "out" "doc" ]; diff --git a/pkgs/tools/networking/tlsdate/default.nix b/pkgs/tools/networking/tlsdate/default.nix index ae23978a7563..a7721b563b3f 100644 --- a/pkgs/tools/networking/tlsdate/default.nix +++ b/pkgs/tools/networking/tlsdate/default.nix @@ -13,7 +13,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://github.com/ioerror/tlsdate; rev = "fd04f48ed60eb773c8e34d27ef2ee12ee7559a41"; - sha256 = "d97b7cc6fe64799c12c31a9ebd3a69c9bc954de2eaa7f70d113d39544472854d"; + sha256 = "0naxlsanpgixj509z4mbzl41r2nn5wi6q2lp10a7xgcmcb4cgnbf"; }; buildInputs = [ diff --git a/pkgs/tools/networking/wrk/default.nix b/pkgs/tools/networking/wrk/default.nix index 312d4c6fe9bd..b1a3fc85849e 100644 --- a/pkgs/tools/networking/wrk/default.nix +++ b/pkgs/tools/networking/wrk/default.nix @@ -9,7 +9,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/wg/wrk.git"; rev = "7cdede916a53da253c995767a92eec36a245a2cc"; - sha256 = "0m8i5pk2rj40v28bzrskkzw54v9jqdby52dwfcypannhlhgqnhy2"; + sha256 = "1zk7mx27875wkbwcjpbl9zmpyyfic9177wmkif9a16mvj7mvlw9v"; }; buildInputs = [ openssl ]; diff --git a/pkgs/tools/package-management/nixui/default.nix b/pkgs/tools/package-management/nixui/default.nix index e35395b2b426..027fab26acf4 100644 --- a/pkgs/tools/package-management/nixui/default.nix +++ b/pkgs/tools/package-management/nixui/default.nix @@ -5,7 +5,7 @@ let src = fetchgit { url = "git://github.com/matejc/nixui.git"; rev = "845a5f4a33f1d0c509c727c130d0792a5b450a38"; - sha256 = "15nypa4wm2ypfzy1nascxig9lj7l7p4vkrpbn1c807mil3k7xrs7"; + sha256 = "1ay3i4lgzs3axbby06l4vvspxi0aa9pwiil84qj0dqq1jb6isara"; }; nixui = (import ./node-default.nix { nixui = src; inherit pkgs; }).build; script = writeScript "nixui" '' diff --git a/pkgs/tools/package-management/opkg-utils/default.nix b/pkgs/tools/package-management/opkg-utils/default.nix index 9a197ca763a4..8575f126e624 100644 --- a/pkgs/tools/package-management/opkg-utils/default.nix +++ b/pkgs/tools/package-management/opkg-utils/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://git.yoctoproject.org/opkg-utils"; rev = "762d9dadce548108d4204c2113461a7dd6f57e60"; - sha256 = "a450643fa1353b872166a3d462297fb2eb240554eed7a9186645ffd72b353417"; + sha256 = "09jfkq2p5wv0ifxkw62f4m7pkvpaalh74j2skymi8lh4268krfwz"; }; preBuild = '' diff --git a/pkgs/tools/security/chaps/default.nix b/pkgs/tools/security/chaps/default.nix index 1d3f530dd9fc..43e324ec2694 100644 --- a/pkgs/tools/security/chaps/default.nix +++ b/pkgs/tools/security/chaps/default.nix @@ -28,7 +28,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/google/chaps-linux"; rev = "989aadc45cdb216ca35b0c97d13fc691576fa1d7"; - sha256 = "c58e08e89d36050cd831116819d555f0e24e7bf11047cb18f2a2eead45ba67be"; + sha256 = "0chk6pnn365d5kcz6vfqx1d0383ksk97icc0lzg0vvb0kvyj0ff1"; }; patches = [ ./fix_absolute_path.patch ./fix_environment_variables.patch ./fix_scons.patch ./insert_prefetches.patch ]; diff --git a/pkgs/tools/security/fprint_demo/default.nix b/pkgs/tools/security/fprint_demo/default.nix index 282c3541dde5..c2dbb31bec45 100644 --- a/pkgs/tools/security/fprint_demo/default.nix +++ b/pkgs/tools/security/fprint_demo/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/dsd/fprint_demo"; rev = "5d86c3f778bf97a29b73bdafbebd1970e560bfb0"; - sha256 = "fe5bbf8d062fedd6fa796e50c5bd95fef49580eb0a890f78d6f55bd51cc94234"; + sha256 = "1rysqd8kdqgis1ykrbkiy1bcxav3vna8zdgbamyxw4hj5764xdcm"; }; buildInputs = [ libfprint gtk2 ]; diff --git a/pkgs/tools/security/nsjail/default.nix b/pkgs/tools/security/nsjail/default.nix index f2ec3af139fa..3e4ddcd880e9 100644 --- a/pkgs/tools/security/nsjail/default.nix +++ b/pkgs/tools/security/nsjail/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://github.com/google/nsjail; rev = "8b951e6c2827386786cde4a124cd1846d25b9404"; - sha256 = "b3b863423cc676111d2d1afbac524eee6fa824588cafccb7c42ff470508a13b1"; + sha256 = "02bmwd48l6ngp0nc65flw395mpj66brx3808d5xd19qn5524lnni"; }; installPhase = '' diff --git a/pkgs/tools/security/sbsigntool/default.nix b/pkgs/tools/security/sbsigntool/default.nix index fceb4c821281..bca93887bd4e 100644 --- a/pkgs/tools/security/sbsigntool/default.nix +++ b/pkgs/tools/security/sbsigntool/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "git://kernel.ubuntu.com/jk/sbsigntool"; rev = "951ee95a301674c046f55330cd7460e1314deff2"; - sha256 = "09k8by0qq8j7ff812l1l9z9frsx5c4cmhj5in3g1sgyz3v55nfy7"; + sha256 = "1skqrfhvsaay01l94m57sxxqp909rvn07xwmzc6vzzfcnsh6f2yk"; }; patches = [ ./autoconf.patch ]; diff --git a/pkgs/tools/security/simple-tpm-pk11/default.nix b/pkgs/tools/security/simple-tpm-pk11/default.nix index 811618d66028..f22966dca4a1 100644 --- a/pkgs/tools/security/simple-tpm-pk11/default.nix +++ b/pkgs/tools/security/simple-tpm-pk11/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/ThomasHabets/simple-tpm-pk11"; rev = "f26f10e11344560ff6e1479e6795dc0e5dc49a26"; - sha256 = "8c9501ceed0557113ce3facf7b22b8baf6f32ebb092008c089b80334ed03cec9"; + sha256 = "0546lhxssngpkrhg5kmrvn4bm1s2kyd20kvhz3rfavfrvr72cs9k"; }; buildInputs = [ trousers openssl opencryptoki automake autoconf libtool ]; diff --git a/pkgs/tools/security/tor/torsocks.nix b/pkgs/tools/security/tor/torsocks.nix index d7b0139df701..ee4749683a52 100644 --- a/pkgs/tools/security/tor/torsocks.nix +++ b/pkgs/tools/security/tor/torsocks.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = meta.repositories.git; rev = "refs/tags/v${version}"; - sha256 = "1q7rbf0j54jh17qs76b6k9hzv4sh4044qfzidjrp6gx576ysrvsf"; + sha256 = "1l890pg0h2hqpkabsnwc6pq2qi8mfv58qzaaicc9y62rq5nmrrws"; }; buildInputs = [ autoreconfHook ]; diff --git a/pkgs/tools/security/tpm-luks/default.nix b/pkgs/tools/security/tpm-luks/default.nix index 70dbc65040d4..40829df56cae 100644 --- a/pkgs/tools/security/tpm-luks/default.nix +++ b/pkgs/tools/security/tpm-luks/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://github.com/momiji/tpm-luks"; rev = "c9c5b7fdddbcdac1cd4d2ea6baddd0617cc88ffa"; - sha256 = "fdd451caddb4e51ede3f2406245e1ace57389596e85aa402c9f2606303707539"; + sha256 = "1ms2v57f13r9km6mvf9rha5ndmlmjvrz3mcikai6nzhpj0nrjz0w"; }; buildInputs = [ autoreconfHook gawk trousers cryptsetup openssl ]; diff --git a/pkgs/tools/system/evemu/default.nix b/pkgs/tools/system/evemu/default.nix index 90833b83683d..2da9a7d035de 100644 --- a/pkgs/tools/system/evemu/default.nix +++ b/pkgs/tools/system/evemu/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = git://git.freedesktop.org/git/evemu; rev = "refs/tags/v${version}"; - sha256 = "1509b524a2483054a45698c485968094dd8c0f857bba7333449e9d05acbfbd2c"; + sha256 = "0qv2ib3rb0wp881sfkzmhpkfc3nbrswdmll3087pmzpwd701g42l"; }; buildInputs = [ diff --git a/pkgs/tools/system/plan9port/default.nix b/pkgs/tools/system/plan9port/default.nix index 70f792953b85..6d2581550a45 100644 --- a/pkgs/tools/system/plan9port/default.nix +++ b/pkgs/tools/system/plan9port/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { # Latest, same as on github, google code is old url = "https://plan9port.googlesource.com/plan9"; rev = "71de840"; - sha256 = "1ffece7c0a5775a8bde6a0618c7ae3da4048449008a19e6623e8e5553f133b4c"; + sha256 = "002ma7h7z3wii520dhijikwdc679hpwn0jv5a0c8g299drvzq2wx"; }; patches = [ ./fontsrv.patch ]; diff --git a/pkgs/tools/system/s6-rc/default.nix b/pkgs/tools/system/s6-rc/default.nix index 35763e8212e3..b6f3de5f5cde 100644 --- a/pkgs/tools/system/s6-rc/default.nix +++ b/pkgs/tools/system/s6-rc/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6-rc"; rev = "refs/tags/v${version}"; - sha256 = "0x9ghi1f7zqphzlzyz67z7n7mnnyxf1hghi2wa2f8cdl70nfdi2f"; + sha256 = "1gh72q1h1ds53yrzp481nvzaxkhhpm2kv59pfx4x564gxwdvq3a6"; }; dontDisableStatic = true; diff --git a/pkgs/tools/system/s6/default.nix b/pkgs/tools/system/s6/default.nix index e1e30de5799f..84e79442ffa0 100644 --- a/pkgs/tools/system/s6/default.nix +++ b/pkgs/tools/system/s6/default.nix @@ -11,7 +11,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://git.skarnet.org/s6"; rev = "refs/tags/v${version}"; - sha256 = "0j981xslcsra8filaawgwq6daqvxxjs0014lqb7dy3qf7c5pc4l8"; + sha256 = "1jlavi3q6wmcxdcwsy42qcgfkl0ag6hwcgmi4g67dvqs9nqjq2a3"; }; dontDisableStatic = true; diff --git a/pkgs/tools/system/safe-rm/default.nix b/pkgs/tools/system/safe-rm/default.nix index 6afb6a09f2e5..ed4fe7a68482 100644 --- a/pkgs/tools/system/safe-rm/default.nix +++ b/pkgs/tools/system/safe-rm/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = "https://gitorious.org/safe-rm/mainline.git"; rev = "refs/tags/${name}"; - sha256 = "1n8ir96rwsg9r47lp3avl5sw548gvyh12zk5riflmmdvq907yi0s"; + sha256 = "0zkmwxyl1870ar6jr9h537vmqgkckqs9jd1yv6m4qqzdsmg5gdbq"; }; propagatedBuildInputs = [ perl coreutils ]; diff --git a/pkgs/tools/system/vboot_reference/default.nix b/pkgs/tools/system/vboot_reference/default.nix index 07349e6ec33b..5e0f5801ec94 100644 --- a/pkgs/tools/system/vboot_reference/default.nix +++ b/pkgs/tools/system/vboot_reference/default.nix @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchgit { url = https://chromium.googlesource.com/chromiumos/platform/vboot_reference; rev = "refs/changes/${checkout}"; - sha256 = "00qhwhh5ygrcfm9is8hrk1spqdvfs6aa744h10jbr03zics5bvac"; + sha256 = "14d3a93ha5k4al4ib43nyn1ppx7kgb12xw6mkflhx8nxmx8827nc"; }; buildInputs = [ pkgconfig openssl ] ++ diff --git a/pkgs/tools/text/peco/default.nix b/pkgs/tools/text/peco/default.nix index 619e1f8d9b1b..a58cb87d1db1 100644 --- a/pkgs/tools/text/peco/default.nix +++ b/pkgs/tools/text/peco/default.nix @@ -23,7 +23,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = "git://github.com/peco/peco"; rev = "4952013023ae1d92c10d826e6970c5a68959678d"; - sha256 = "02fwmxhaydx9m6q146amq1aw44abzisskkblmv1sjxrm37x81l31"; + sha256 = "15blxy6a9ph6hm5wn14p025qidbspjy6hhmp4zbbgpxx2l1x8fpg"; }; buildInputs = [ go ]; diff --git a/pkgs/tools/text/zimreader/default.nix b/pkgs/tools/text/zimreader/default.nix index afc02e623019..488f3d3c5e51 100644 --- a/pkgs/tools/text/zimreader/default.nix +++ b/pkgs/tools/text/zimreader/default.nix @@ -28,7 +28,7 @@ in stdenv.mkDerivation rec { src = fetchgit { url = https://gerrit.wikimedia.org/r/p/openzim.git; rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456"; - sha256 = "0x0d3rx6zcc8k66nqkacmwdvslrz70h9bliqawzv90ribq3alb0q"; + sha256 = "076ixsq4lis0rkk7p049g02bidc7bggl9kf2wzmgmsnx396mqymf"; }; buildInputs = [ automake autoconf libtool zimlib cxxtools tntnet ]; diff --git a/pkgs/tools/text/zimwriterfs/default.nix b/pkgs/tools/text/zimwriterfs/default.nix index bd51e2082d92..10be33f1e242 100644 --- a/pkgs/tools/text/zimwriterfs/default.nix +++ b/pkgs/tools/text/zimwriterfs/default.nix @@ -7,7 +7,7 @@ stdenv.mkDerivation { src = fetchgit { url = https://gerrit.wikimedia.org/r/p/openzim.git; rev = "165eab3e154c60b5b6436d653dc7c90f56cf7456"; - sha256 = "0x0d3rx6zcc8k66nqkacmwdvslrz70h9bliqawzv90ribq3alb0q"; + sha256 = "076ixsq4lis0rkk7p049g02bidc7bggl9kf2wzmgmsnx396mqymf"; }; buildInputs = [ automake autoconf libtool lzma pkgconfig zimlib file zlib ]; diff --git a/pkgs/tools/typesetting/multimarkdown/default.nix b/pkgs/tools/typesetting/multimarkdown/default.nix index 1b6104106ba4..d628d84ee9e2 100644 --- a/pkgs/tools/typesetting/multimarkdown/default.nix +++ b/pkgs/tools/typesetting/multimarkdown/default.nix @@ -8,7 +8,7 @@ stdenv.mkDerivation rec { url = "https://github.com/fletcher/MultiMarkdown-4.git"; fetchSubmodules = true; rev = "dd060247518715ef2b52be22b8f49d0e6d2c3a8b"; - sha256 = "0s7rcxgmv1almlic7bky426x52h7g1pjdhi3y8wf84fpx8c7b6g2"; + sha256 = "11f246r30q2fx4xw7valhqjj4mc4ydj5fv5f2kbl5h93y69q0bw7"; }; preBuild = '' diff --git a/pkgs/tools/video/rtmpdump/default.nix b/pkgs/tools/video/rtmpdump/default.nix index 9987d697cf0b..ce23c5f4193c 100644 --- a/pkgs/tools/video/rtmpdump/default.nix +++ b/pkgs/tools/video/rtmpdump/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation rec { url = git://git.ffmpeg.org/rtmpdump; # Currently the latest commit is used (a release has not been made since 2011, i.e. '2.4') rev = "a107cef9b392616dff54fabfd37f985ee2190a6f"; - sha256 = "178h5j7w20g2h9mn6cb7dfr3fa4g4850hpl1lzxmi0nk3blzcsvl"; + sha256 = "03x7dy111dk8b23cq2wb5h8ljcv58fzhp0xm0d1myfvzhr9amqqs"; }; makeFlags = [ ''prefix=$(out)'' ] diff --git a/pkgs/tools/virtualization/euca2ools/default.nix b/pkgs/tools/virtualization/euca2ools/default.nix index 7a93d96036f4..7a1d56435aa7 100644 --- a/pkgs/tools/virtualization/euca2ools/default.nix +++ b/pkgs/tools/virtualization/euca2ools/default.nix @@ -7,7 +7,7 @@ pythonPackages.buildPythonApplication rec { src = fetchgit { url = https://github.com/eucalyptus/euca2ools.git; rev = "19cb7eac34dd7efe3a56e4841b9692c03458bf3b"; - sha256 = "0f52jqw3s79w391lbzlh83lp55j73clvwmn2np4fy6kxc4j49da1"; + sha256 = "0grsgn5gbvk1hlfa8qx7ppz7iyfyi2pdhxy8njr8lm60w4amfiyq"; }; pythonPath = [ pythonPackages.boto pythonPackages.m2crypto ]; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 27043c9516ba..b3ecb2f9009d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -456,7 +456,7 @@ let src = fetchgit { inherit rev; url = "https://github.com/go-check/check.git"; - sha256 = "0i83qjmd4ri9mrfddhsbpj9nb43rf2j9803k030fj155j31klwcx"; + sha256 = "1qhji81yxz3map937bf8lyp8j2qpwlbnag5pr5pf0qw3li2nciah"; }; }; @@ -2804,7 +2804,7 @@ let src = fetchgit { inherit rev; url = "https://${goPackagePath}.git"; - sha256 = "4075ede31601adf8c4e92739693aebffa3718c641dfca75b09cf6b4bd6c26cc0"; + sha256 = "1jjvss4cmcd505aqhsyag15lmzjycgwwml9mfdigprxv3v8f3pnq"; }; #goTestInputs = [ ogletest ]; doCheck = false; # infinite recursion @@ -2817,7 +2817,7 @@ let src = fetchgit { inherit rev; url = "https://${goPackagePath}.git"; - sha256 = "685e7fc4308d118ae25467ba84c64754692a7772c77c197f38d8c1b63ea81da2"; + sha256 = "1sn6hj34c54x0svr68vcgm2l725x03ccpq6h3ypi3hrvzg349ykw"; }; buildInputs = [ oglematchers ]; #goTestInputs = [ ogletest ]; @@ -2831,7 +2831,7 @@ let src = fetchgit { inherit rev; url = "https://${goPackagePath}.git"; - sha256 = "0cfc43646d59dcea5772320f968aef2f565fb5c46068d8def412b8f635365361"; + sha256 = "0y4y20a84rhmp66x9d7nzlygiabky98wlbvx56h1hknm08gpskiz"; }; buildInputs = [ oglemock oglematchers ]; doCheck = false; # check this again diff --git a/pkgs/top-level/node-packages-generated.nix b/pkgs/top-level/node-packages-generated.nix index 3237a975e497..079926a7595f 100644 --- a/pkgs/top-level/node-packages-generated.nix +++ b/pkgs/top-level/node-packages-generated.nix @@ -32838,7 +32838,7 @@ src = fetchgit { url = "git://github.com/NixOS/npm2nix.git"; rev = "0c06be7d278a7f64fc853a5fd42d2031d14496d5"; - sha256 = "fb79dccb5ca4bfa0c8cc4490be37313367eb98e216d8eb97cb00f9e492e8e7a7"; + sha256 = "1x8bsmli0s1l3vshw5ylmak9z1pvnc1ps5cbc72cbn1zi36m5cp1"; }; deps = { "semver-4.3.6" = self.by-version."semver"."4.3.6"; diff --git a/pkgs/top-level/php-packages.nix b/pkgs/top-level/php-packages.nix index c0248644d5eb..f08117903be9 100644 --- a/pkgs/top-level/php-packages.nix +++ b/pkgs/top-level/php-packages.nix @@ -70,7 +70,7 @@ let src = fetchgit { url = "https://github.com/php-memcached-dev/php-memcached"; rev = "e573a6e8fc815f12153d2afd561fc84f74811e2f"; - sha256 = "f7acfdae04ef2ef9ece67b6d009aaf6604db64735fc7619f7169929aabb9c58f"; + sha256 = "0asfi6rsspbwbxhwmkxxnapd8w01xvfmwr1n9qsr2pryfk0w6y07"; }; configureFlags = [ @@ -203,7 +203,7 @@ let src = fetchgit { url = "https://github.com/phpredis/phpredis"; rev = "4a37e47d0256581ce2f7a3b15b5bb932add09f36"; - sha256 = "ac5894d168e22ae4a770ce252cfbd07d0f9f1a5b48b084c0559b67fe4d3e51cb"; + sha256 = "1qm2ifa0zf95l1g967iiabmja17srpwz73lfci7z13ffdw1ayhfd"; }; }; diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 220868baf0ed..60dca7f1deca 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1869,7 +1869,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/skarra/CalDAVClientLibrary.git"; rev = "06699b08190d50cc2636b921a654d67db0a967d1"; - sha256 = "1i6is7lv4v9by4panrd9w63m4xsmhwlp3rq4jjj3azwg5jm10940"; + sha256 = "157q32251ac9x3gdshgrjwsy48nq74vrzviswvph56h9wa8ksnnk"; }; disabled = isPy3k; @@ -1897,7 +1897,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/g2p/bedup.git"; rev = "598fd4b"; - sha256 = "0s11dpf4k26n8qxrx6wcsr78vp98rx3yibzkh6ifmsyaqcmpm7wy"; + sha256 = "0cwnifv5mk5rgil0rcibqchz7y8nzpdpi3k2s9wbqcynjl7l49ln"; }; buildInputs = with self; [ pkgs.btrfs-progs ]; @@ -2051,7 +2051,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/cornice.git; rev = "refs/tags/${version}"; - sha256 = "12yrcsv1sdl5w308y1cc939ppq7pi2490s54zfcbs481cvsyr1lg"; + sha256 = "11xgf7mddq9gm3yag61zj8hj2kgsgabrnzwn2zpfj37xp1p0pky7"; }; propagatedBuildInputs = with self; [ pyramid simplejson ]; @@ -5008,7 +5008,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/scrapinghub/dateparser.git"; rev = "d20a63f1d1cee5b4bd19c9f745774cfa9f219549"; - sha256 = "f04f75d013ba2896681ffeb3669d78e4c496236121da751b89ff0b4a4053f771"; + sha256 = "0na7b4hvf7vykrk48482gxiq5xny67rvs8ilamxcxw3y9gfgdjfd"; }; # Does not seem to work on Python 3 because of relative import. @@ -7026,7 +7026,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mapnik/python-mapnik.git; rev = "fae63881ed0945829e73f711d52740240b740936"; - sha256 = "13i9zsy0dk9pa947vfq26a3nrn1ddknqliyb0ljcmi5w5x0z758k"; + sha256 = "04k78l0xxb9cy8dbvmgldg8fgzz701gks14199h8zs2xvyi4gqd2"; }; disabled = isPyPy; @@ -7144,7 +7144,7 @@ in modules // { src = pkgs.fetchgit { url = git://github.com/etsy/logster; rev = "7475c53822"; - sha256 = "1ls007qmziwb50c5iikxhqin0xbn673gbd25m5k09861435cknvr"; + sha256 = "0565wxxiwksnly8rakb2r77k7lwzniq16kv861qd2ns9hgsjgy31"; }; }; @@ -7755,7 +7755,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/pyramid_hawkauth.git; rev = "refs/tags/v${version}"; - sha256 = "1ic7xl72qnz382xaqhcy9ql17gx7pxbs78znp8xr66sp3dcx2s3c"; + sha256 = "038ign7qlavlmvrhb2y8bygbxvy4j7bx2k1zg0i3wblg2ja50w7h"; }; propagatedBuildInputs = with self; [ pyramid hawkauthlib tokenlib webtest ]; @@ -8173,7 +8173,7 @@ in modules // { src = pkgs.fetchgit { inherit rev; url = "https://github.com/Pylons/substanced.git"; - sha256 = "17s7sdvydw9a9d2d36c70lq962ryny3dv9nzdxqpfvwiry9iy3jx"; + sha256 = "1fb8m5aylw8kig13fvldchgkxi4s2xlvwralrzinyma3imbznd3q"; }; buildInputs = with self; [ mock ]; @@ -10640,7 +10640,7 @@ in modules // { src = pkgs.fetchgit { url = "https://chromium.googlesource.com/external/gyp.git"; rev = "fdc7b812f99e48c00e9a487bd56751bbeae07043"; - sha256 = "176sdxkva2irr1v645nn4q6rwc6grbb1wxj82n7x9hh09q4bxqcz"; + sha256 = "1imgxsl4mr1662vsj2mlnpvvrbz71yk00w8p85vi5bkgmc6awgiz"; }; patches = optionals pkgs.stdenv.isDarwin [ @@ -10702,7 +10702,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/hawkauthlib.git; rev = "refs/tags/v${version}"; - sha256 = "0b3xydii50ifs8qkgbpdlidfs2rzw63f807ahrq9flz90ahf582h"; + sha256 = "0mr1mpx4j9q7sch9arwfvpysnpf2p7ijy7072wilxm8pnj0bwvsi"; }; propagatedBuildInputs = with self; [ requests webob ]; @@ -11760,7 +11760,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/konfig.git; rev = "refs/tags/${version}"; - sha256 = "1v9pjb9idapjlc75p6h06kx7bi8zxhfgj93yxq1bn337kmyk1xdf"; + sha256 = "1kc5iy61ckbmf65d9ssyqiyb25lnxjvr7c2vcsdl9wx4n6fhwzx3"; }; propagatedBuildInputs = with self; [ configparser argparse ]; @@ -12761,7 +12761,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/mozservices.git; rev = "refs/tags/${version}"; - sha256 = "0k1d7v8aa4xd3f9h8m5crl647136ba15i9nzdrpxg5aqmv2n0i0p"; + sha256 = "1zci2ikk83mf7va88c83dr6snfh4ddjqw0lsg3y29qk5nxf80vx2"; }; patches = singleton (pkgs.fetchurl { @@ -12977,7 +12977,7 @@ in modules // { name = "mutag-0.0.2-2ffa0258ca"; src = pkgs.fetchgit { url = "https://github.com/aroig/mutag.git"; - sha256 = "0azq2sb32mv6wyjlw1hk01c23isl4x1hya52lqnhknak299s5fml"; + sha256 = "0axdnwdypfd74a9dnw0g25m16xx1yygyl828xy0kpj8gyqdc6gb1"; rev = "2ffa0258cadaf79313241f43bf2c1caaf197d9c2"; }; @@ -13151,7 +13151,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/PyMySQL/PyMySQL.git; rev = "refs/tags/pymysql-${version}"; - sha256 = "12v8bw7pp455zqkwraxk69qycz2ngk18bbz60v72kdbp6kssnqhz"; + sha256 = "0kpw11rxpyyhs9b139hxhbnx9n5kzjjw10wgwvhnf9m3mv7j4n71"; }; buildInputs = with self; [ unittest2 ]; @@ -14161,7 +14161,7 @@ in modules // { src = pkgs.fetchgit { url = meta.repositories.git; rev = "refs/tags/${name}"; - sha256 = "16jb8x5hbs3g4dq10y6rqc1005bnffwnlws8x7j1d96n7k9mjn8h"; + sha256 = "04ja1cl8xzqnwrd2gi6nlnxbmjri141bzwa5gybvr44d8h3k2nfa"; }; patchPhase = '' @@ -14396,7 +14396,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/openSUSE/osc; rev = "6cd541967ee2fca0b89e81470f18b97a3ffc23ce"; - sha256 = "a39ce0e321e40e9758bf7b9128d316c71b35b80eabc84f13df492083bb6f1cc6"; + sha256 = "0bf0yc4y1q87k7hq40xnr687lyw3ma93b3zprjlgn9pr8s1cn9xw"; }; doCheck = false; @@ -17458,7 +17458,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/Lispython/pycurl.git"; rev = "0f00109950b883d680bd85dc6e8a9c731a7d0d13"; - sha256 = "0mhg7f9y5zl0m2xgz3rf1yqjd6l8n0qhfk7bpf36r44jfnhj75ld"; + sha256 = "1qmw3cm93kxj94s71a8db9lwv2cxmr2wjv7kp1r8zildwdzhaw7j"; }; # error: (6, "Couldn't resolve host 'h.wrttn.me'") @@ -22084,7 +22084,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/miracle2k/tarsnapper.git; rev = "620439bca68892f2ffaba1079a34b18496cc6596"; - sha256 = "06pp499qm2dxpja2jgmmq2jrcx3m4nq52x5hhil9r1jxvyiq962p"; + sha256 = "1n2k2r9x11r1ph9jcjhlk44hsghfnl1pl3aakbx121qc5dg7b0yn"; }; propagatedBuildInputs = with self; [ argparse pyyaml ]; @@ -24488,7 +24488,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/tokenlib.git; rev = "refs/tags/${version}"; - sha256 = "0dmq41sy64jmkj7n49jgbpii5n5d41ci263lyhqbff5slr289m51"; + sha256 = "0bq6dqyfwh29pg8ngmrm4mx4q27an9lsj0p9l79p9snn4g2rxzc8"; }; propagatedBuildInputs = with self; [ requests webob ]; @@ -24535,7 +24535,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/scs3jb/screenkey.git; rev = "b3634a2c6eb6d6936c3b2c1ef5078bf3a84c40c6"; - sha256 = "eb754917e98e03cb9d528eb5f57a08c88fa7a8172f92325a9fe796b2daf14db0"; + sha256 = "1535mpm5x6v85d4ghxhdiianhjrsz280dwvs61ss0yyjx4kivx3s"; }; meta = { @@ -24603,7 +24603,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla/PyBrowserID.git; rev = "refs/tags/${version}"; - sha256 = "0nyqb0v8yrkqnrqsh1hlhvzr2pyvkxvkw701p3gpsvk29c0gb5n6"; + sha256 = "0zsljr45gm8a4c0lxh6mgfc60a5fijhs4pwijb9fdkq16zw0pmf0"; }; doCheck = false; # some tests use networking @@ -24641,7 +24641,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/tokenserver.git; rev = "refs/tags/${version}"; - sha256 = "1pjrw7xhhqx7h4s08h1lsaa499r2ymc41zdknjimn6zlqdjdk1fb"; + sha256 = "1cvkvxcday1qc3zyarasj3l7322w8afhrcxcsvb5wac1ryh1w6y2"; }; doCheck = false; @@ -25066,7 +25066,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/brutasse/graphite-api.git"; rev = "b6f75e8a08fae695c094fece6de611b893fc65fb"; - sha256 = "41b90d5f35e99a020a6b1b77938690652521d1841b3165574fcfcee807ce4e6a"; + sha256 = "1n8h5krhv7hzmn336y9vjrmv6b6009lz5hj0d9wz7v1k2500ws5k"; }; checkPhase = "nosetests"; @@ -25124,7 +25124,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/vimeo/graphite-influxdb.git"; rev = "2273d12a24e1d804685a36debfd4224b7416b62f"; - sha256 = "e386eaf190793d3ad0a42a74b9e137a968a51fc3806f602ff756e09c0c0648a8"; + sha256 = "1v00fgrnmsd9c0ahggyw9sia5m7dyzz16i5pa4vy6w2sbfyrmm4v"; }; propagatedBuildInputs = with self; [ influxdb graphite_api ]; @@ -25144,7 +25144,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/offlinehacker/graphite-pager.git"; - sha256 = "aa932f941efe4ed89971fe7572218b020d1a144259739ef78db6397b968eef62"; + sha256 = "0ylal0vkc2yrjvssfz1gls84yk9vkvvkx3pyv4lx15jm2qqzdmxd"; rev = version; }; @@ -25213,7 +25213,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/jodal/pykka.git"; rev = "refs/tags/v${version}"; - sha256 = "17vv2q636zp2fvxrp7ckgnz1ifaffcj5vdxvfb4isd1d32c49amb"; + sha256 = "0qlfw1054ap0cha1m6dbnq51kjxqxaf338g7jwnwy33b3gr8x0hg"; }; # There are no tests @@ -25234,7 +25234,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/Lawouach/WebSocket-for-Python.git"; rev = "ace276500ca7e4c357595e3773be151d37bcd6e2"; - sha256 = "04m4m3ncn7g4rb81xg5n28imns7rsq8d2w98gjpaib6vlmyly3g1"; + sha256 = "1g7nmhjjxjf6vx75dyzns8bpid3b5i02kakk2lh1i297b5rw2rjq"; }; # python zip complains about old timestamps @@ -25760,7 +25760,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/syncserver.git; rev = "refs/tags/${version}"; - sha256 = "002if8wk3bhz70zycggvp5qfvr1n2c6i27wnzj317wlkkjmcknx7"; + sha256 = "1pk4rvwvsd1vxbpzg39hxqi8pi9v6b4s6m0mqbpg88s6s7i6ks3m"; }; buildInputs = with self; [ unittest2 ]; @@ -25783,7 +25783,7 @@ in modules // { src = pkgs.fetchgit { url = https://github.com/mozilla-services/server-syncstorage.git; rev = "refs/tags/${version}"; - sha256 = "06ss88j2gkgqchwd51fwynf2i41ssazs2xwiin8g7p8bc517ywmq"; + sha256 = "0m14v7n105y06w3mdp35pyxyzjj5vqwbznzdbixhkms3df6md2lq"; }; propagatedBuildInputs = with self; [ @@ -25832,7 +25832,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/matrix-org/python-canonicaljson.git"; rev = "refs/tags/v${version}"; - sha256 = "29802d0effacd26ca1d6eccc8d4c7e4f543a194754ba89263861e87f44a83f0c"; + sha256 = "0r82zlip93y169ijkn8xpbp0yr22mf92pni6dw420vb53l27sprq"; }; propagatedBuildInputs = with self; [ @@ -25870,7 +25870,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/matrix-org/pymacaroons.git"; rev = "refs/tags/v${version}"; - sha256 = "481a486520f5a3ad2761c3cd3954d2b08f456a94fb080aaa4ad1e68ddc705b52"; + sha256 = "0bykjk01zdndp6gjr30x46blsn0cvxa7j0zh5g8raxwaawchjhii"; }; propagatedBuildInputs = with self; [ pynacl six ]; @@ -25913,7 +25913,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/matrix-org/python-signedjson.git"; rev = "refs/tags/v${version}"; - sha256 = "4ef1c89ea85846632d711a37a2e6aae1348c62b9d62ed0e80428b4a00642e9df"; + sha256 = "0b8xxhc3npd4567kqapfp4gs7m0h057xam3an7424az262ind82n"; }; propagatedBuildInputs = with self; [ @@ -25928,7 +25928,7 @@ in modules // { src = pkgs.fetchgit { url = "https://github.com/matrix-org/python-unpaddedbase64.git"; rev = "refs/tags/v${version}"; - sha256 = "2dad07b53cf816a5c2fc14a1a193b0df63ab5aacaccffb328753e7d3027d434e"; + sha256 = "0if3fjfxga0bwdq47v77fs9hrcqpmwdxry2i2a7pdqsp95258nxd"; }; }; From c9da8df990566288aa1e5f58fd9af0aa695d8f14 Mon Sep 17 00:00:00 2001 From: Markus Hauck Date: Fri, 3 Jun 2016 13:11:16 +0200 Subject: [PATCH 230/520] scalafmt: 0.2.3 -> 0.2.5 --- 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 b909c646555f..0a4855bdcb8d 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.3"; + version = "0.2.5"; baseName = "scalafmt"; name = "${baseName}-${version}"; src = fetchurl { url = "https://github.com/olafurpg/scalafmt/releases/download/v${version}/${baseName}.tar.gz"; - sha256 = "0klzm86771wl6d8cq5cf4a4mfz8idcis6wrg0x2ix5rcc5zi0d4d"; + sha256 = "07l95xdwgdbdfa91pg1sds82aw3c60gxzdcvdhhhk6a7zwrl73cp"; }; unpackPhase = "tar xvzf $src"; From 5260686aa84dea2e2810d88789ab251f09ef2a0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Fri, 3 Jun 2016 15:55:01 +0100 Subject: [PATCH 231/520] fix https://github.com/NixOS/nixops/issues/331 --- nixos/doc/manual/options-to-docbook.xsl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/doc/manual/options-to-docbook.xsl b/nixos/doc/manual/options-to-docbook.xsl index cd30ae36ae59..5387546b5982 100644 --- a/nixos/doc/manual/options-to-docbook.xsl +++ b/nixos/doc/manual/options-to-docbook.xsl @@ -11,6 +11,7 @@ + @@ -188,7 +189,7 @@ - + https://github.com/NixOS/nixops/blob//nix/ From 693b49166a76d775f94b5ca11a430e3ec33532ee Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 2 Jun 2016 16:44:40 +0300 Subject: [PATCH 232/520] qt5: remove gtkStyle option It's no more needed now that we split QGtkStyle plugin into separate output. --- pkgs/development/libraries/qt-5/5.5/qtbase/default.nix | 9 +++++---- pkgs/development/libraries/qt-5/5.6/qtbase/default.nix | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix index 2cd129acab1d..f3badc24244c 100644 --- a/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.5/qtbase/default.nix @@ -19,7 +19,7 @@ , buildExamples ? false , buildTests ? false , developerBuild ? false -, gtkStyle ? true, libgnomeui, GConf, gnome_vfs, gtk +, libgnomeui, GConf, gnome_vfs, gtk , decryptSslTraffic ? false }: @@ -28,7 +28,7 @@ let system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; # Search path for Gtk plugin - gtkLibPath = lib.makeLibraryPath [ gtk.out gnome_vfs.out libgnomeui.out GConf.out ]; + gtkLibPath = lib.makeLibraryPath [ gtk gnome_vfs libgnomeui GConf ]; dontInvalidateBacking = fetchurl { url = "https://codereview.qt-project.org/gitweb?p=qt/qtbase.git;a=patch;h=0f68f8920573cdce1729a285a92ac8582df32841;hp=24c50f8dcf7fa61ac3c3d4d6295c259a104a2b8c"; @@ -147,7 +147,7 @@ stdenv.mkDerivation { -xcb -qpa xcb -${lib.optionalString (cups == null) "no-"}cups - -${lib.optionalString (!gtkStyle) "no-"}gtkstyle + -gtkstyle -no-eglfs -no-directfb @@ -210,7 +210,8 @@ stdenv.mkDerivation { ++ lib.optional (cups != null) cups ++ lib.optional (mysql != null) mysql.lib ++ lib.optional (postgresql != null) postgresql - ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; + # FIXME: move to the main list on rebuild. + ++ [gnome_vfs.out libgnomeui.out gtk GConf]; nativeBuildInputs = [ fixQtModuleCMakeConfig lndir patchelf perl pkgconfig python ]; diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix index c28e6fcbb390..5b02190b0454 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/default.nix @@ -19,7 +19,7 @@ , buildExamples ? false , buildTests ? false , developerBuild ? false -, gtkStyle ? true, libgnomeui, GConf, gnome_vfs, gtk +, libgnomeui, GConf, gnome_vfs, gtk , decryptSslTraffic ? false }: @@ -28,7 +28,7 @@ let system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; # Search path for Gtk plugin - gtkLibPath = lib.makeLibraryPath [ gtk.out gnome_vfs.out libgnomeui.out GConf.out ]; + gtkLibPath = lib.makeLibraryPath [ gtk gnome_vfs libgnomeui GConf ]; in stdenv.mkDerivation { @@ -141,7 +141,7 @@ stdenv.mkDerivation { -xcb -qpa xcb -${lib.optionalString (cups == null) "no-"}cups - -${lib.optionalString (!gtkStyle) "no-"}gtkstyle + -gtkstyle -no-eglfs -no-directfb @@ -204,7 +204,8 @@ stdenv.mkDerivation { ++ lib.optional (cups != null) cups ++ lib.optional (mysql != null) mysql.lib ++ lib.optional (postgresql != null) postgresql - ++ lib.optionals gtkStyle [gnome_vfs.out libgnomeui.out gtk GConf]; + # FIXME: move to the main list on rebuild. + ++ [gnome_vfs.out libgnomeui.out gtk GConf]; nativeBuildInputs = [ lndir patchelf perl pkgconfig python ]; From 1942957b53aa4462ecca202ddec8fe841884ebd4 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 3 Jun 2016 06:38:47 +0300 Subject: [PATCH 233/520] nixos manual: document Gtk and Qt themes --- nixos/doc/manual/configuration/x-windows.xml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index 0405146ab0fa..689051e7c035 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -115,5 +115,14 @@ services.xserver.synaptics.twoFingerScroll = true; +GTK/Qt themes + +GTK themes can be installed either to user profile or system-wide (via +system.environmentPackages). To make Qt 5 applications look similar +to GTK2 ones, you can install qt5.qtbase.gtk package into your +system environment. It should work for all Qt 5 library versions. + + + From 1dfdc3e521211f2e4a875a6ec5e2e17cf921dc79 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 3 Jun 2016 19:23:17 +0300 Subject: [PATCH 234/520] nixos manual: fix syntax It appears I've cherry-picked wrong commit without this fix. --- nixos/doc/manual/configuration/x-windows.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/doc/manual/configuration/x-windows.xml b/nixos/doc/manual/configuration/x-windows.xml index 689051e7c035..3040839861c1 100644 --- a/nixos/doc/manual/configuration/x-windows.xml +++ b/nixos/doc/manual/configuration/x-windows.xml @@ -115,7 +115,7 @@ services.xserver.synaptics.twoFingerScroll = true; -GTK/Qt themes +GTK/Qt themes GTK themes can be installed either to user profile or system-wide (via system.environmentPackages). To make Qt 5 applications look similar From 6d2f00b209ada48fdf044349c7c686d8f8c40971 Mon Sep 17 00:00:00 2001 From: Pascal Wittmann Date: Fri, 3 Jun 2016 18:24:29 +0200 Subject: [PATCH 235/520] calibre: 2.57.1 -> 2.58.0 --- pkgs/applications/misc/calibre/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 98061f459dce..871d153e9617 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.57.1"; + version = "2.58.0"; name = "calibre-${version}"; src = fetchurl { url = "http://download.calibre-ebook.com/${version}/${name}.tar.xz"; - sha256 = "0bgkm2cf1icx73v7r6njkx31jdm3l7psnfwd9kjqc21p7ii70h11"; + sha256 = "0npqvfjqj1vwa7nmnsyd4d30z40brydw275ldf1jankrp6dr9dyd"; }; inherit python; From ab9acc27f9bd3a2def9d66be5c90290e3facaab9 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 3 Jun 2016 18:59:09 +0200 Subject: [PATCH 236/520] tinycc: 0.9.27pre-20160328 -> 0.9.27pre-20160525 Also do various refactorings: - Use `fetchFromRepoOrCz` - Use `isGlibc` to check for glibc stdenv - Multiple outputs - Apply PaX marking Also adopt the package. --- pkgs/development/compilers/tinycc/default.nix | 76 +++++++++++-------- 1 file changed, 43 insertions(+), 33 deletions(-) diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index 8812a4288ef9..147edcb5d48a 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -1,21 +1,27 @@ -{ stdenv, fetchurl, fetchgit, perl, texinfo }: +{ stdenv, fetchFromRepoOrCz, perl, texinfo }: -assert stdenv ? glibc; +assert (stdenv.isGlibc); + +with stdenv.lib; + +let + date = "20160525"; + version = "0.9.27pre-${date}"; + rev = "1ca685f887310b5cbdc415cdfc3a578dbc8d82d8"; + sha256 = "149s847jkg2zdmk09h0cp0q69m8kxxci441zyw8b08fy9b87ayd8"; +in stdenv.mkDerivation rec { - #name = "tcc-0.9.26"; - name = "tcc-git-0.9.27pre-20160328"; + name = "tcc-${version}"; - #src = fetchurl { - # url = "mirror://savannah/tinycc/${name}.tar.bz2"; - # sha256 = "0wbdbdq6090ayw8bxnbikiv989kykff3m5rzbia05hrnwhd707jj"; - #}; - src = fetchgit { - url = "git://repo.or.cz/tinycc.git"; - rev = "80343ab7d829c21c65f8f9a14dd20158d028549f"; - sha256 = "0l2qhlvwya2djjbwxgwvhfa11bscqcw1x8w5dzy7klzns773pv7d"; + src = fetchFromRepoOrCz { + repo = "tinycc"; + inherit rev; + inherit sha256; }; + outputs = [ "dev" "out" "bin" ]; + nativeBuildInputs = [ perl texinfo ]; postPatch = '' @@ -33,37 +39,41 @@ stdenv.mkDerivation rec { doCheck = true; checkTarget = "test"; + postFixup = '' + paxmark m $out/bin/tcc + ''; + meta = { description = "Small, fast, and embeddable C compiler and interpreter"; - longDescription = - '' TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike - other C compilers, it is meant to be self-sufficient: you do not - need an external assembler or linker because TCC does that for - you. + longDescription = '' + TinyCC (aka TCC) is a small but hyper fast C compiler. Unlike + other C compilers, it is meant to be self-sufficient: you do not + need an external assembler or linker because TCC does that for + you. - TCC compiles so fast that even for big projects Makefiles may not - be necessary. + TCC compiles so fast that even for big projects Makefiles may not + be necessary. - TCC not only supports ANSI C, but also most of the new ISO C99 - standard and many GNU C extensions. + TCC not only supports ANSI C, but also most of the new ISO C99 + standard and many GNU C extensions. - TCC can also be used to make C scripts, i.e. pieces of C source - that you run as a Perl or Python script. Compilation is so fast - that your script will be as fast as if it was an executable. + TCC can also be used to make C scripts, i.e. pieces of C source + that you run as a Perl or Python script. Compilation is so fast + that your script will be as fast as if it was an executable. - TCC can also automatically generate memory and bound checks while - allowing all C pointers operations. TCC can do these checks even - if non patched libraries are used. + TCC can also automatically generate memory and bound checks while + allowing all C pointers operations. TCC can do these checks even + if non patched libraries are used. - With libtcc, you can use TCC as a backend for dynamic code - generation. - ''; + With libtcc, you can use TCC as a backend for dynamic code + generation. + ''; homepage = http://www.tinycc.org/; - license = stdenv.lib.licenses.lgpl2Plus; + license = licenses.lgpl2Plus; - platforms = stdenv.lib.platforms.unix; - maintainers = [ ]; + platforms = platforms.unix; + maintainers = [ maintainers.joachifm ]; }; } From 75f793bbb27c1d73858e419851a7b0b6728ac32d Mon Sep 17 00:00:00 2001 From: Chris Jefferson Date: Thu, 2 Jun 2016 22:53:39 +0100 Subject: [PATCH 237/520] gap : 4.4.12 -> 4.8.3 --- lib/maintainers.nix | 1 + .../applications/science/math/gap/default.nix | 34 +++++++++---------- 2 files changed, 17 insertions(+), 18 deletions(-) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 198bb93c6be3..07f458f8a456 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -74,6 +74,7 @@ chaoflow = "Florian Friesdorf "; chattered = "Phil Scott "; choochootrain = "Hurshal Patel "; + chrisjefferson = "Christopher Jefferson "; christopherpoole = "Christopher Mark Poole "; cleverca22 = "Michael Bishop "; cmcdragonkai = "Roger Qiu "; diff --git a/pkgs/applications/science/math/gap/default.nix b/pkgs/applications/science/math/gap/default.nix index dcd0734d85d9..3d9e06527c9d 100644 --- a/pkgs/applications/science/math/gap/default.nix +++ b/pkgs/applications/science/math/gap/default.nix @@ -1,36 +1,34 @@ -{ stdenv, fetchurl, pari ? null }: +{ stdenv, fetchurl, m4, gmp }: let baseName = "gap"; - version = "4r4p12"; + version = "4r8p3"; - pkgVer = "2012_01_12-10_47_UTC"; - pkgSrc = fetchurl { - url = "ftp://ftp.gap-system.org/pub/gap/gap4/tar.bz2/packages-${pkgVer}.tar.bz2"; - sha256 = "0z9ncy1m5gvv4llkclxd1vpcgpb0b81a2pfmnhzvw8x708frhmnb"; - }; + pkgVer = "2016_03_19-22_17"; in stdenv.mkDerivation rec { name = "${baseName}-${version}"; src = fetchurl { - url = "ftp://ftp.gap-system.org/pub/gap/gap4/tar.gz/${baseName}${version}.tar.gz"; - sha256 = "0flap5lbkvpms3zznq1zwxyxyj0ax3fk7m24f3bvhvr37vyxnf40"; + url = "ftp://ftp.gap-system.org/pub/gap/gap48/tar.gz/${baseName}${version}_${pkgVer}.tar.gz"; + sha256 = "1rmb0lj43avv456sjwb7ia3y0wwk5shlqylpkdwnnqpjnvjbnzv6"; }; - buildInputs = [ pari ]; - + configureFlags = [ "--with-gmp=system" ]; + buildInputs = [ m4 gmp ]; + + postBuild = '' + pushd pkg + bash ../bin/BuildPackages.sh + popd + ''; + installPhase = '' mkdir -p "$out/bin" "$out/share/gap/" cp -r . "$out/share/gap/build-dir" - tar xf "${pkgSrc}" -C "$out/share/gap/build-dir/pkg" - - ${if pari != null then - ''sed -e '2iexport PATH=$PATH:${pari}/bin' -i "$out/share/gap/build-dir/bin/gap.sh" '' - else ""} sed -e "/GAP_DIR=/aGAP_DIR='$out/share/gap/build-dir/'" -i "$out/share/gap/build-dir/bin/gap.sh" ln -s "$out/share/gap/build-dir/bin/gap.sh" "$out/bin" @@ -41,10 +39,10 @@ stdenv.mkDerivation rec { maintainers = with maintainers; [ raskin + chrisjefferson ]; - platforms = platforms.linux; + platforms = platforms.all; license = licenses.gpl2; homepage = http://gap-system.org/; - broken = true; }; } From 3f80f0149f65bcd17b925c0a3fca9e73707cbf8d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Fri, 3 Jun 2016 08:22:40 -0300 Subject: [PATCH 238/520] arc-gtk-theme: 2016-05-14 -> 2016-06-02 --- pkgs/misc/themes/arc/default.nix | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pkgs/misc/themes/arc/default.nix b/pkgs/misc/themes/arc/default.nix index eda2daf15c97..b14746cfec50 100644 --- a/pkgs/misc/themes/arc/default.nix +++ b/pkgs/misc/themes/arc/default.nix @@ -1,29 +1,29 @@ -{ stdenv, autoconf, automake, fetchFromGitHub, gnome3, gtk, gtk-engine-murrine, pkgconfig}: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, gnome3, gtk, gtk-engine-murrine }: stdenv.mkDerivation rec { - version = "2016-05-14"; - name = "arc-gtk-theme-git-${version}"; + version = "2016-06-02"; + name = "arc-gtk-theme-${version}"; + src = fetchFromGitHub { owner = "horst3180"; repo = "arc-theme"; - rev = "fb3fe2fc0b280e9d8ca4b5fc5ca23e5b00fcac27"; - sha256 = "1q844i7bkf75jv9fvf15n47vwvzzbkvhv5ssxl98q8x66dgjwx35"; + rev = "226098a06b646981022f0e260fd4d3ca64ff5616"; + sha256 = "1lg2iig1rws2h0p7qy1pavphyzdcchmfdlv126696jczz21d67qm"; }; - preferLocalBuild = true; - - nativeBuildInputs = [ autoconf automake pkgconfig ]; + nativeBuildInputs = [ autoreconfHook pkgconfig ]; buildInputs = [ gtk-engine-murrine ]; - configureScript = "./autogen.sh"; + preferLocalBuild = true; + configureFlags = "--with-gnome=${gnome3.version}"; meta = with stdenv.lib; { description = "A flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell"; homepage = "https://github.com/horst3180/Arc-theme"; license = licenses.gpl3; - maintainers = [ maintainers.simonvandel ]; platforms = platforms.linux; + maintainers = with maintainers; [ simonvandel romildo ]; }; } From 9dc2ab3d169670988463c0f22b9a515b4ade255f Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Fri, 3 Jun 2016 23:45:26 +0300 Subject: [PATCH 239/520] teamviewer: 11.0.53191 -> 11.0.57095 Also fixes #15965 --- .../networking/remote/teamviewer/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/networking/remote/teamviewer/default.nix b/pkgs/applications/networking/remote/teamviewer/default.nix index 1abedc890f46..be685118e1f0 100644 --- a/pkgs/applications/networking/remote/teamviewer/default.nix +++ b/pkgs/applications/networking/remote/teamviewer/default.nix @@ -1,8 +1,6 @@ { stdenv, lib, fetchurl, xdg_utils, pkgs, pkgsi686Linux }: let - version = "11.0.53191"; - ld32 = if stdenv.system == "i686-linux" then "${stdenv.cc}/nix-support/dynamic-linker" else if stdenv.system == "x86_64-linux" then "${stdenv.cc}/nix-support/dynamic-linker-m32" @@ -11,18 +9,20 @@ let mkLdPath = ps: lib.makeLibraryPath (with ps; [ qt4 dbus alsaLib ]); - deps = ps: (with ps; [ dbus alsaLib fontconfig freetype libpng libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst ]); + deps = ps: (with ps; [ dbus alsaLib fontconfig freetype libpng12 libjpeg ]) ++ (with ps.xlibs; [ libX11 libXext libXdamage libXrandr libXrender libXfixes libSM libXtst ]); tvldpath32 = lib.makeLibraryPath (with pkgsi686Linux; [ qt4 "$out/share/teamviewer/tv_bin/wine" ] ++ deps pkgsi686Linux); tvldpath64 = lib.makeLibraryPath (deps pkgs); - in -stdenv.mkDerivation { + +stdenv.mkDerivation rec { name = "teamviewer-${version}"; + version = "11.0.57095"; + src = fetchurl { # There is a 64-bit package, but it has no differences apart from Debian dependencies. # Generic versioned packages (teamviewer_${version}_i386.tar.xz) are not available for some reason. url = "http://download.teamviewer.com/download/teamviewer_${version}_i386.deb"; - sha256 = "1yr4c7d6hymw7kvca2jqxzaz6rw5xr66iby77aknd0v4afh4yzz3"; + sha256 = "0gdqy6b3np8ndlrq5cwgsys6ad529904133za51r20cj528n7rx3"; }; unpackPhase = '' From 5577e1a293bb3b15be467b21a9fb6f1febbe260d Mon Sep 17 00:00:00 2001 From: Philipp Hausmann Date: Sat, 4 Jun 2016 09:46:06 +0200 Subject: [PATCH 240/520] uhc: 1.1.9.3 -> 1.1.9.4 --- pkgs/development/compilers/uhc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/uhc/default.nix b/pkgs/development/compilers/uhc/default.nix index df79b0ba70ee..d20057916805 100644 --- a/pkgs/development/compilers/uhc/default.nix +++ b/pkgs/development/compilers/uhc/default.nix @@ -4,14 +4,14 @@ let wrappedGhc = ghcWithPackages (hpkgs: with hpkgs; [fgl vector syb uulib network binary hashable uhc-util mtl transformers directory containers array process filepath shuffle uuagc] ); in stdenv.mkDerivation rec { - version = "1.1.9.3"; + version = "1.1.9.4"; name = "uhc-${version}"; src = fetchFromGitHub { owner = "UU-ComputerScience"; repo = "uhc"; rev = "v${version}"; - sha256 = "1r3mja77dqj2ncgp1d9nnc7dhp3gzrb1b1qvml3rq2321mn3m2ad"; + sha256 = "1s84csk6zgzj09igxgdza7gb52jdn3jsr8lygl5xplshv8yzl34n"; }; postUnpack = "sourceRoot=\${sourceRoot}/EHC"; From 3c41baac9d355c82fd97c095e74aef2882f14c2b Mon Sep 17 00:00:00 2001 From: Martijn Vermaat Date: Sat, 4 Jun 2016 11:42:07 +0200 Subject: [PATCH 241/520] Add haskellPackages.ShellCheck to all-packages.nix --- pkgs/top-level/all-packages.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index acbd820736f7..6a5f03743048 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6442,6 +6442,8 @@ in sbt = callPackage ../development/tools/build-managers/sbt { }; simpleBuildTool = sbt; + shellcheck = self.haskellPackages.ShellCheck; + sigrok-cli = callPackage ../development/tools/sigrok-cli { }; simpleTpmPk11 = callPackage ../tools/security/simple-tpm-pk11 { }; From 893a50b95785af759f265914155d57fa9f8a826b Mon Sep 17 00:00:00 2001 From: Herwig Hochleitner Date: Sat, 4 Jun 2016 13:48:46 +0200 Subject: [PATCH 242/520] melpa-packages 2016-06-04 remove company override from ac-php --- .../editors/emacs-modes/melpa-generated.nix | 14102 ++++++++-------- .../editors/emacs-modes/melpa-packages.nix | 2 +- .../emacs-modes/melpa-stable-generated.nix | 3422 ++-- 3 files changed, 9113 insertions(+), 8413 deletions(-) diff --git a/pkgs/applications/editors/emacs-modes/melpa-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-generated.nix index e6cd58569a40..6ebe16171964 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-generated.nix @@ -2,7 +2,7 @@ _0blayout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "_0blayout"; - version = "20151021.649"; + version = "20151021.1249"; src = fetchFromGitHub { owner = "etu"; repo = "0blayout-mode"; @@ -10,7 +10,7 @@ sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; @@ -23,14 +23,14 @@ _2048-game = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "_2048-game"; - version = "20151026.1533"; + version = "20151026.2033"; src = fetchhg { url = "https://bitbucket.com/zck/2048.el"; rev = "ea6c3bce8ac1"; sha256 = "1p9qn9n8mfb4z62h1s94mlg0vshpzafbhsxgzvx78sqlf6bfc80l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/2048-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/2048-game"; sha256 = "0z7x9bnyi3qlq7l0fskb61i6yr9gm7w7wplqd28wz8p1j5yw8aa0"; name = "_2048-game"; }; @@ -43,7 +43,7 @@ _4clojure = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "_4clojure"; - version = "20131014.1807"; + version = "20131015.7"; src = fetchFromGitHub { owner = "losingkeys"; repo = "4clojure.el"; @@ -51,7 +51,7 @@ sha256 = "1fybicg46fc5jjqv7g2d3dnj1x9n58m2fg9x6qxn9l8qlzk9yxkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/4clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/4clojure"; sha256 = "09bmdxkkp676sn1sbbly44k99i47w83yznq950nkxv6x8753ifgk"; name = "_4clojure"; }; @@ -64,7 +64,7 @@ aa-edit-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, navi2ch }: melpaBuild { pname = "aa-edit-mode"; - version = "20160228.117"; + version = "20160228.717"; src = fetchFromGitHub { owner = "zonuexe"; repo = "aa-edit-mode"; @@ -72,7 +72,7 @@ sha256 = "0d7q0fhcw4cvy9140hwxp8zdh0g37zhfsq6kmsdngxdx7lw3wryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aa-edit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aa-edit-mode"; sha256 = "00b99ik04xx4b2a1cm1z8dl42hjnb5r32qypjyyx8924n1dhxzgn"; name = "aa-edit-mode"; }; @@ -85,7 +85,7 @@ abc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abc-mode"; - version = "20140225.1244"; + version = "20140225.1844"; src = fetchFromGitHub { owner = "mkjunker"; repo = "abc-mode"; @@ -93,7 +93,7 @@ sha256 = "1h4gwp2gyd4jhbkb8ai1zbzhhmlhmihbwzr0wsxg5yq074n72ifs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -106,7 +106,7 @@ abl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abl-mode"; - version = "20160129.531"; + version = "20160129.1131"; src = fetchFromGitHub { owner = "afroisalreadyinu"; repo = "abl-mode"; @@ -114,7 +114,7 @@ sha256 = "09hy7rj27h7xbvasd87146di4vhpg5cmqc9f39fy0ihmv9gy56za"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abl-mode"; sha256 = "0h25lc87pa8irgxflnmnmkr9dcv4kz841nfc45fcz4awrn75kkzb"; name = "abl-mode"; }; @@ -127,7 +127,7 @@ abyss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "abyss-theme"; - version = "20160420.812"; + version = "20160420.1412"; src = fetchFromGitHub { owner = "mgrbyte"; repo = "emacs-abyss-theme"; @@ -135,7 +135,7 @@ sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; @@ -148,7 +148,7 @@ ac-alchemist = callPackage ({ alchemist, auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-alchemist"; - version = "20150908.256"; + version = "20150908.856"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-alchemist"; @@ -156,7 +156,7 @@ sha256 = "19msfx3f3px1maj41bzh139s6sv2pjk9vm3bphn7758fqhzyin0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -169,7 +169,7 @@ ac-anaconda = callPackage ({ anaconda-mode, auto-complete, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-anaconda"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "ac-anaconda"; @@ -177,7 +177,7 @@ sha256 = "092m8y38h4irh2ig6n6510gw2scjjxah37zim6mk92jzn1xv06d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -190,7 +190,7 @@ ac-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-c-headers"; - version = "20151021.434"; + version = "20151021.1034"; src = fetchFromGitHub { owner = "zk-phi"; repo = "ac-c-headers"; @@ -198,7 +198,7 @@ sha256 = "1z6rj15p5gjv0jwnnck8789n9csf1pwxfvsz37graihgfy2khj0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-c-headers"; sha256 = "1cq5rz2w79bj185va7y13x7bciihrpsvyxwk6msmcxb4g86s9phv"; name = "ac-c-headers"; }; @@ -211,7 +211,7 @@ ac-cake = callPackage ({ auto-complete, cake, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cake"; - version = "20140315.1229"; + version = "20140315.1729"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ac-cake"; @@ -219,7 +219,7 @@ sha256 = "1llpnb9vy612sg214i76rxnzcl3qx8pqnixczc5pik9kd3fdaz5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -232,7 +232,7 @@ ac-cake2 = callPackage ({ auto-complete, cake2, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cake2"; - version = "20140320.308"; + version = "20140320.808"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ac-cake2"; @@ -240,7 +240,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -253,7 +253,7 @@ ac-capf = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-capf"; - version = "20151031.2217"; + version = "20151101.317"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-capf"; @@ -261,7 +261,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -274,15 +274,15 @@ ac-cider = callPackage ({ auto-complete, cider, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cider"; - version = "20160305.1024"; + version = "20160530.1358"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "ac-cider"; - rev = "cc8efb877cb80475392860a478c985421a25acd5"; - sha256 = "0j8bbliijycnvpqbl1x3a0nbixhr57czfch2s8phn7v3zzdr8k3h"; + rev = "4be034e5f82421b0a836ec7ff45815c67caffcee"; + sha256 = "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -295,7 +295,7 @@ ac-clang = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, yasnippet }: melpaBuild { pname = "ac-clang"; - version = "20150906.1308"; + version = "20150906.1908"; src = fetchFromGitHub { owner = "yaruopooner"; repo = "ac-clang"; @@ -303,7 +303,7 @@ sha256 = "0n9zagwh3rz7b76irj4ya8wskffns9v1c1pivsdqgpd76spvl7n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -315,13 +315,13 @@ }) {}; ac-dabbrev = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-dabbrev"; - version = "20130906.118"; + version = "20130906.718"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ac-dabbrev.el"; sha256 = "0q0lbhdng5s5hqa342yyvg02hf2bfbwq513lj1rlaqz4ykvpd7fh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dabbrev"; sha256 = "03lndw7y55bzz4rckl80j0kh66qa82xxxhfakzs1dh1h9f1f0azh"; name = "ac-dabbrev"; }; @@ -334,7 +334,7 @@ ac-dcd = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, flycheck-dmd-dub, lib, melpaBuild }: melpaBuild { pname = "ac-dcd"; - version = "20160311.917"; + version = "20160311.1517"; src = fetchFromGitHub { owner = "atilaneves"; repo = "ac-dcd"; @@ -342,7 +342,7 @@ sha256 = "1hlijh415wgl450ry16a1072jjrkqqqkk862hfhswfr2l6rjfw98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -355,7 +355,7 @@ ac-emmet = callPackage ({ auto-complete, emmet-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-emmet"; - version = "20131015.1158"; + version = "20131015.1758"; src = fetchFromGitHub { owner = "yasuyk"; repo = "ac-emmet"; @@ -363,7 +363,7 @@ sha256 = "1lkhqmfkjga7qi4r1m7mjax3pyf9m6minsn57cbzm2z2kvkhq22g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emmet"; sha256 = "09ycjllfpdgqaf5iis5bkkhal1vxvl3qkxrn2759p67s97c49f3x"; name = "ac-emmet"; }; @@ -376,7 +376,7 @@ ac-emoji = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-emoji"; - version = "20150823.311"; + version = "20150823.911"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-emoji"; @@ -384,7 +384,7 @@ sha256 = "19981mzxnqqdb8dsdizy2i8byb8sx9138x3nrvi6ap2qbcsabjmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -397,7 +397,7 @@ ac-etags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-etags"; - version = "20151031.2221"; + version = "20151101.321"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-etags"; @@ -405,7 +405,7 @@ sha256 = "140i02b2ipyfmki945l1xd1nsqdpganhmi3bmwj1h9w8cg078bd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -418,7 +418,7 @@ ac-geiser = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, geiser, lib, melpaBuild }: melpaBuild { pname = "ac-geiser"; - version = "20130929.247"; + version = "20130929.847"; src = fetchFromGitHub { owner = "xiaohanyu"; repo = "ac-geiser"; @@ -426,7 +426,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -439,7 +439,7 @@ ac-haskell-process = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "ac-haskell-process"; - version = "20150423.1002"; + version = "20150423.1602"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-haskell-process"; @@ -447,7 +447,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -460,7 +460,7 @@ ac-helm = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, popup }: melpaBuild { pname = "ac-helm"; - version = "20160318.2233"; + version = "20160319.333"; src = fetchFromGitHub { owner = "yasuyk"; repo = "ac-helm"; @@ -468,7 +468,7 @@ sha256 = "1fyikdwn0gzng7pbmfg7zb7jphjv228776vsjc12j7g1aqz92n4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -481,15 +481,15 @@ ac-html = callPackage ({ auto-complete, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ac-html"; - version = "20151005.331"; + version = "20151005.931"; src = fetchFromGitHub { owner = "cheunghy"; repo = "ac-html"; - rev = "3de94a46d8cb93e8e62a1b6bdebbde4d65dc7cc2"; - sha256 = "1sip87j4wvlf9pfnpr0zyyhys1dd9smh6hy3zs08ihbdh98krgs5"; + rev = "668154cba123c321d1b07c2dc8b26d14092253b8"; + sha256 = "0lz1a8a4bqxiw20jh65r7cg7jnid3vz4h8b7dkfcrzwn0agx8frw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -502,7 +502,7 @@ ac-html-angular = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-angular"; - version = "20151225.219"; + version = "20151225.819"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-angular"; @@ -510,7 +510,7 @@ sha256 = "1v3ia439h4n2i204n0sazzbwwm0l5k6j31gq58iv2rqrq2ysikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-angular"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-angular"; sha256 = "05rbxf5kbr4jlskrhvfvhf82qvb55zl5cb6z1ymfh9l3h9j9xk3s"; name = "ac-html-angular"; }; @@ -523,7 +523,7 @@ ac-html-bootstrap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-bootstrap"; - version = "20160302.1201"; + version = "20160302.1801"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-bootstrap"; @@ -531,7 +531,7 @@ sha256 = "0ry398awbsyswc87v275x4mdyv64kr0s647y6nagqg1h3n3jhvsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -544,7 +544,7 @@ ac-html-csswatcher = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "ac-html-csswatcher"; - version = "20151208.1613"; + version = "20151208.2213"; src = fetchFromGitHub { owner = "osv"; repo = "ac-html-csswatcher"; @@ -552,7 +552,7 @@ sha256 = "0swbw62zh5rjjf73pvmp8brrrmk6bp061k793z4z83v7ic0cicrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -565,7 +565,7 @@ ac-inf-ruby = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "ac-inf-ruby"; - version = "20131115.650"; + version = "20131115.1250"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-inf-ruby"; @@ -573,7 +573,7 @@ sha256 = "0xdqk0qr1mmm5q3049ldwlmrcfgz6rzk4yxc8qgz6kll27kciia0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -586,7 +586,7 @@ ac-ispell = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-ispell"; - version = "20151031.2226"; + version = "20151101.326"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-ispell"; @@ -594,7 +594,7 @@ sha256 = "1cq73bdv3lkn8v3nx6aznygqaac9s5i7pvirl8wz9ib31hsgwpbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -607,7 +607,7 @@ ac-js2 = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "ac-js2"; - version = "20140906.742"; + version = "20140906.1342"; src = fetchFromGitHub { owner = "ScottyB"; repo = "ac-js2"; @@ -615,7 +615,7 @@ sha256 = "0yn9333rjs2pzb1wk1japclsqagdcl28j0yjl3q5b70g5gi5vx7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-js2"; sha256 = "0gcr0xdi89nj3854v2z3nndfgazmcdzmd6wdndl0i4s7pdfl96fa"; name = "ac-js2"; }; @@ -628,7 +628,7 @@ ac-math = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "ac-math"; - version = "20141116.1627"; + version = "20141116.2227"; src = fetchFromGitHub { owner = "vspinu"; repo = "ac-math"; @@ -636,7 +636,7 @@ sha256 = "0p5cdaw9v8jgnmjqpb95bxy4khwbdgg19wzg8jkr2j2p55dpfbd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-math"; sha256 = "02c821zabxp9qkwx252pxjmssdbmas0iwanw09r03bmiby9d4nsl"; name = "ac-math"; }; @@ -649,7 +649,7 @@ ac-mozc = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "ac-mozc"; - version = "20150227.1119"; + version = "20150227.1719"; src = fetchFromGitHub { owner = "igjit"; repo = "ac-mozc"; @@ -657,7 +657,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -670,7 +670,7 @@ ac-octave = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-octave"; - version = "20150111.2008"; + version = "20150112.208"; src = fetchFromGitHub { owner = "coldnew"; repo = "ac-octave"; @@ -678,7 +678,7 @@ sha256 = "16bg2zg08223x7q54rmfjziaccgm64h9vc8z59sjljkw1bgx9m7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -691,15 +691,15 @@ ac-php = callPackage ({ auto-complete, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, popup, s, xcscope, yasnippet }: melpaBuild { pname = "ac-php"; - version = "20160513.2238"; + version = "20160525.826"; src = fetchFromGitHub { owner = "xcwen"; repo = "ac-php"; - rev = "03c21a24ebef93099510cf119b4018827d99bea6"; - sha256 = "14krd0n21cls2lbbhcq0zmwjwizyapfmzngmcckrizzjlxq0zjzi"; + rev = "23b998dafd43ff1dadc85cd0fa71f6aca34411e6"; + sha256 = "02mpyzc7w14f3xgj4snkqh54537892a4bz98dl0fac65fk268xzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-php"; sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja"; name = "ac-php"; }; @@ -722,7 +722,7 @@ ac-racer = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, racer }: melpaBuild { pname = "ac-racer"; - version = "20160518.120"; + version = "20160518.720"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-ac-racer"; @@ -730,7 +730,7 @@ sha256 = "0p0220axf7c0ga4bkd8d2lcwdgwz08xqglw56lnwzdlksgqhsgyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -743,7 +743,7 @@ ac-skk = callPackage ({ auto-complete, cl-lib ? null, ddskk, fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }: melpaBuild { pname = "ac-skk"; - version = "20141229.2019"; + version = "20141230.219"; src = fetchFromGitHub { owner = "myuhe"; repo = "ac-skk.el"; @@ -751,7 +751,7 @@ sha256 = "1nvz0jfz4x99xc5ywspl8fdpyqns5zd0j7i4bwzlwplmy3qakjwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-skk"; sha256 = "0iycyfgv8v15ygngvyx66m3w3sv8p9h6q6j1hbpzwd8azl8fzj5z"; name = "ac-skk"; }; @@ -764,7 +764,7 @@ ac-slime = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "ac-slime"; - version = "20150729.2335"; + version = "20150730.535"; src = fetchFromGitHub { owner = "purcell"; repo = "ac-slime"; @@ -772,7 +772,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -785,7 +785,7 @@ ac-sly = callPackage ({ auto-complete, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "ac-sly"; - version = "20150421.1622"; + version = "20150421.2222"; src = fetchFromGitHub { owner = "qoocku"; repo = "ac-sly"; @@ -793,7 +793,7 @@ sha256 = "0mif35chyj4ai1bj4gq8qi38dyfsp72yi1xchhzy9zi2plpvqa7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-sly"; sha256 = "1ng81b5f8w2s9mm9s7h5kwyx8fdwndnlsbzx50slmqyaz2ad15mx"; name = "ac-sly"; }; @@ -806,7 +806,7 @@ ace-flyspell = callPackage ({ ace-jump-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-flyspell"; - version = "20150523.1415"; + version = "20150523.2015"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-flyspell"; @@ -814,7 +814,7 @@ sha256 = "1msj0dbzfan0jax5wh5rmv4l7cp5zhrp5wy5k1n9s7xdgz2dprzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -827,7 +827,7 @@ ace-isearch = callPackage ({ ace-jump-mode, avy, emacs, fetchFromGitHub, fetchurl, helm-swoop, lib, melpaBuild }: melpaBuild { pname = "ace-isearch"; - version = "20150808.856"; + version = "20150808.1456"; src = fetchFromGitHub { owner = "tam17aki"; repo = "ace-isearch"; @@ -835,7 +835,7 @@ sha256 = "02i3gxk7kfv3a0pcc82z69hgvjw8bvn40y8h7d59chg8bixcwbyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -848,7 +848,7 @@ ace-jump-buffer = callPackage ({ avy, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-buffer"; - version = "20160229.1758"; + version = "20160229.2358"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-buffer"; @@ -856,7 +856,7 @@ sha256 = "1y2rl4faj1nfjqbh393yp460cbv24simllak31ag1ischpcbqjy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; @@ -869,7 +869,7 @@ ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "20160329.1518"; + version = "20160329.2118"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; @@ -877,7 +877,7 @@ sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -890,7 +890,7 @@ ace-jump-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-mode"; - version = "20140616.415"; + version = "20140616.1015"; src = fetchFromGitHub { owner = "winterTTr"; repo = "ace-jump-mode"; @@ -898,7 +898,7 @@ sha256 = "17axrgd99glnl6ma4ls3k01ysdqmiqr581wnrbsn3s4gp53mm2x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -911,7 +911,7 @@ ace-jump-zap = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-jump-zap"; - version = "20150330.1642"; + version = "20150330.2242"; src = fetchFromGitHub { owner = "waymondo"; repo = "ace-jump-zap"; @@ -919,7 +919,7 @@ sha256 = "0z0rblr41r94l4b2gh9fcw50nk82ifxrr3ilxqzbb8wmvil54gh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -932,15 +932,15 @@ ace-link = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-link"; - version = "20160506.236"; + version = "20160530.850"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-link"; - rev = "5c955a17d94d53ee47ed765f109a0027194b7dee"; - sha256 = "0qcj6farhin29q359v9yrzvs2vxda1dk4xdai57bda81bf2fha3a"; + rev = "5bf301e2c74960246427d3e48889a49f9f8ec6ba"; + sha256 = "1mrlwkls80blispg5hdgnif42rck3iqhcm1f3khq14nm09yqwdk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; @@ -953,7 +953,7 @@ ace-mc = callPackage ({ ace-jump-mode, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "ace-mc"; - version = "20160408.2037"; + version = "20160409.237"; src = fetchFromGitHub { owner = "mm--"; repo = "ace-mc"; @@ -961,7 +961,7 @@ sha256 = "1zgmqgh5dff914dw7i8s142znd849gv4xh86f8q8agx5r7almx14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-mc"; sha256 = "1kca6ha2glhv7lkamqx3sxp7dy05c7f6xxy3lr3v2bik8r50jss8"; name = "ace-mc"; }; @@ -974,7 +974,7 @@ ace-pinyin = callPackage ({ ace-jump-mode, avy, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: melpaBuild { pname = "ace-pinyin"; - version = "20160516.37"; + version = "20160516.637"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-pinyin"; @@ -982,7 +982,7 @@ sha256 = "0q91f52v57qgfn245z3xsskqj9p9lpmxpj3py0vcx8r9br0ykagq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; @@ -995,15 +995,15 @@ ace-popup-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-popup-menu"; - version = "20160522.819"; + version = "20160522.1419"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "ace-popup-menu"; - rev = "ada7b1d006cd6e73fe2642bbbe5bbfc47d80d25c"; - sha256 = "07bbcbzxnbxmddkhkm7ykxsdxp0c6yysnfanh90q34h1f009hrca"; + rev = "8c97cf2cd9decae3acaf6c858a986bdbc9d7ccff"; + sha256 = "1afw9nxxd0shlg62w9ifc1wlf8vsw5ss8r52h5a5s8m3pnswlx2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -1016,7 +1016,7 @@ ace-window = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-window"; - version = "20160225.1119"; + version = "20160225.1719"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-window"; @@ -1024,7 +1024,7 @@ sha256 = "1afc0f8ax334gv644zdrrp55754gxa353iijvmfzxmlr67v23j96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -1037,14 +1037,14 @@ achievements = callPackage ({ fetchhg, fetchurl, keyfreq, lib, melpaBuild }: melpaBuild { pname = "achievements"; - version = "20150530.1426"; + version = "20150530.2026"; src = fetchhg { url = "https://bitbucket.com/gvol/emacs-achievements"; rev = "5b4b7b6816aa"; sha256 = "0zjncby2884cv8nz2ss7i0p17l15lsk88zwvb7b0gr3apbfpcpa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/achievements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/achievements"; sha256 = "1pwlibq87ph20z2pssk5hbgs6v8kdym9193jjdx2rxp0nic4k0cr"; name = "achievements"; }; @@ -1057,7 +1057,7 @@ ack-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, mag-menu, melpaBuild }: melpaBuild { pname = "ack-menu"; - version = "20150504.1622"; + version = "20150504.2222"; src = fetchFromGitHub { owner = "chumpage"; repo = "ack-menu"; @@ -1065,7 +1065,7 @@ sha256 = "02ba4d8qkvgy52g0zcbyfvsnhr9685gq569nkwa2as30xdcq3khm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -1078,7 +1078,7 @@ actionscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "actionscript-mode"; - version = "20140605.1428"; + version = "20140605.2028"; src = fetchFromGitHub { owner = "austinhaas"; repo = "actionscript-mode"; @@ -1086,7 +1086,7 @@ sha256 = "1rxx2j7kkzjdsk06zgisiydg8dc18vqll4wl6q9mfhrg2y12lq94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -1099,7 +1099,7 @@ addressbook-bookmark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "addressbook-bookmark"; - version = "20160317.203"; + version = "20160317.703"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "addressbook-bookmark"; @@ -1107,7 +1107,7 @@ sha256 = "0dk7hyp7cs0ws4w7i32g7di5aqkkxlxkvmrllg43bi5ivlji7pvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/addressbook-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/addressbook-bookmark"; sha256 = "15p00v4ndrsbadal0ss176mks4ynj39786bmrnil29b6sqibd43r"; name = "addressbook-bookmark"; }; @@ -1120,7 +1120,7 @@ adoc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markup-faces, melpaBuild }: melpaBuild { pname = "adoc-mode"; - version = "20160314.1730"; + version = "20160314.2230"; src = fetchFromGitHub { owner = "sensorflo"; repo = "adoc-mode"; @@ -1128,7 +1128,7 @@ sha256 = "199da15f6p84809z33w3m35lrk9bgx8qpgnxsxgisli373mpzvd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -1141,7 +1141,7 @@ aes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aes"; - version = "20160121.1537"; + version = "20160121.2137"; src = fetchFromGitHub { owner = "Sauermann"; repo = "emacs-aes"; @@ -1149,7 +1149,7 @@ sha256 = "1p90yv2xl1hhpjm0mmhdjyf1jagf79610hkzhw8nycy2p1y4gvl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -1162,7 +1162,7 @@ afternoon-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "afternoon-theme"; - version = "20140104.1359"; + version = "20140104.1959"; src = fetchFromGitHub { owner = "osener"; repo = "emacs-afternoon-theme"; @@ -1170,7 +1170,7 @@ sha256 = "19d5d6qs5nwmpf26rsb86ranb5p4236qp7p2b4i88cimcmzspylb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/afternoon-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/afternoon-theme"; sha256 = "13xgdw8px58sxpl7nyhkcdxwqdpp13i8wghvlb3l4471plw3vqgj"; name = "afternoon-theme"; }; @@ -1183,7 +1183,7 @@ ag = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ag"; - version = "20160321.1906"; + version = "20160322.6"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ag.el"; @@ -1191,7 +1191,7 @@ sha256 = "1hwjd1ln99595xwakynhgr3azs4h8rziy75kfz8k5b7i3hns7z08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -1204,7 +1204,7 @@ aggressive-fill-paragraph = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-fill-paragraph"; - version = "20160301.1714"; + version = "20160301.2314"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "aggressive-fill-paragraph-mode"; @@ -1212,7 +1212,7 @@ sha256 = "05lci7hpla4f0z124zr58aj282pgmabqkzgcqadf0hbnqbz2jwcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-fill-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-fill-paragraph"; sha256 = "1df4bk3ks09805y67af6z1gpfln0lz773jzbbckfl0fy3yli0dja"; name = "aggressive-fill-paragraph"; }; @@ -1225,7 +1225,7 @@ aggressive-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aggressive-indent"; - version = "20160518.1914"; + version = "20160519.114"; src = fetchFromGitHub { owner = "Malabarba"; repo = "aggressive-indent-mode"; @@ -1233,7 +1233,7 @@ sha256 = "1mymm68126nhv7fss1vlkyy20qw7f2mdsz2cskcjiv1crzpvkz4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -1245,14 +1245,14 @@ }) {}; ahg = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahg"; - version = "20160513.436"; + version = "20160513.1036"; src = fetchhg { url = "https://bitbucket.com/agriggio/ahg"; rev = "8779fec342a4"; sha256 = "0w5wqanw2spxxhmlxgxyp4rb9i1y6kqhfb8cyv5fz01i8b8p5faw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahg"; sha256 = "0kw138lfzwp54fmly3jzzml11y7fhcjp3w0irmwdzr68lc206lr4"; name = "ahg"; }; @@ -1265,7 +1265,7 @@ ahk-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahk-mode"; - version = "20160320.1821"; + version = "20160320.2321"; src = fetchFromGitHub { owner = "ralesi"; repo = "ahk-mode"; @@ -1273,7 +1273,7 @@ sha256 = "07qpwa990bgs9028rqqk344c3z4hnr1jkfzcx9fi4z5k756zmw3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -1286,7 +1286,7 @@ ahungry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ahungry-theme"; - version = "20160516.2358"; + version = "20160517.558"; src = fetchFromGitHub { owner = "ahungry"; repo = "color-theme-ahungry"; @@ -1294,7 +1294,7 @@ sha256 = "0y17ilvpqivzrd1hvdwi6w0j5bb2d87v54c54ibnf92aryndvyqy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahungry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahungry-theme"; sha256 = "0fhim0qscpqx9siprp3ax1azxzmqkzvrjx517d9bnd68z7xxbpqy"; name = "ahungry-theme"; }; @@ -1307,7 +1307,7 @@ airline-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "airline-themes"; - version = "20160203.1810"; + version = "20160204.10"; src = fetchFromGitHub { owner = "AnthonyDiGirolamo"; repo = "airline-themes"; @@ -1315,7 +1315,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -1328,7 +1328,7 @@ airplay = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request, simple-httpd }: melpaBuild { pname = "airplay"; - version = "20130212.726"; + version = "20130212.1326"; src = fetchFromGitHub { owner = "gongo"; repo = "airplay-el"; @@ -1336,7 +1336,7 @@ sha256 = "1lxpfswp1bjrz192px79f155dycf2kazpr7dfrcr1gyshlgxkpf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/airplay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airplay"; sha256 = "095nibgs197iplphk6csvkgsrgh1fcfyy33py860v6qmihvk538f"; name = "airplay"; }; @@ -1349,15 +1349,15 @@ alchemist = callPackage ({ company, dash, elixir-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "alchemist"; - version = "20160519.1424"; + version = "20160603.841"; src = fetchFromGitHub { owner = "tonini"; repo = "alchemist.el"; - rev = "561e9e17901215b214453d96e9a433a31395cac7"; - sha256 = "1i0xgiq3d8nffpb6ai6ijhl4qinzbgh547c40g4yh03jyn6sq9c6"; + rev = "b70a9458d7cb0cf191a660e7f27c73dc49d0278c"; + sha256 = "1pfmpwma9k6l386v4m884gb5p2apl4k5m2vaxhmb7hnf9p27yrwl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -1370,7 +1370,7 @@ alda-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alda-mode"; - version = "20160322.300"; + version = "20160322.800"; src = fetchFromGitHub { owner = "jgkamat"; repo = "alda-mode"; @@ -1378,7 +1378,7 @@ sha256 = "1bzw713rvih6p2h7c6vw6iyjyiqrrgwr46p5r0l57zklj279m37r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alda-mode"; sha256 = "0vpxiw3k0qxp6s19n93qkkyrr44rbw38ygriqdrfpp84pa09wprh"; name = "alda-mode"; }; @@ -1391,7 +1391,7 @@ alect-themes = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "alect-themes"; - version = "20160414.414"; + version = "20160414.1014"; src = fetchFromGitHub { owner = "alezost"; repo = "alect-themes"; @@ -1399,7 +1399,7 @@ sha256 = "1g9fai2i8izswiih4ba0l2wamhfl6pvmkq7is8x0wr45waldcga9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -1412,7 +1412,7 @@ alert = callPackage ({ fetchFromGitHub, fetchurl, gntp, lib, log4e, melpaBuild }: melpaBuild { pname = "alert"; - version = "20160506.2121"; + version = "20160507.321"; src = fetchFromGitHub { owner = "jwiegley"; repo = "alert"; @@ -1420,7 +1420,7 @@ sha256 = "1p6969wq2n26jvbh8p2gwc0hw38h4xq4rs299i7yzviq2hwvg8r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -1433,7 +1433,7 @@ align-cljlet = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "align-cljlet"; - version = "20160112.1601"; + version = "20160112.2201"; src = fetchFromGitHub { owner = "gstamp"; repo = "align-cljlet"; @@ -1441,7 +1441,7 @@ sha256 = "0l2rgs0rd4nmv4v7m10zhf2znzfvdifv1vlhpa3zbppg0fj8zph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/align-cljlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/align-cljlet"; sha256 = "0pnhhv33rvlmb3823xpy9v5h6q99fa7fn38djbwry4rymi4jmlih"; name = "align-cljlet"; }; @@ -1454,15 +1454,15 @@ all-ext = callPackage ({ all, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "all-ext"; - version = "20130131.1721"; + version = "20160530.328"; src = fetchFromGitHub { owner = "rubikitch"; repo = "all-ext"; - rev = "dcde52a9663a597435cccb48ba551b28ee2a66ef"; - sha256 = "0xxdy53ln0x61zxlc9l941qwjszva1f0nakwzblqnx49pm8z591r"; + rev = "ccee331b96f58c62d9bbc8790d82e6b4eaebc6a1"; + sha256 = "0fj8426a6sraflk4vr2qb9frfqvaj5fczl8ibn67s6wnnyhhknjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/all-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/all-ext"; sha256 = "0vmpa5p7likg2xgck18sa0jvmvnhjs9v1fbl82sxx7qy2f3cggql"; name = "all-ext"; }; @@ -1475,15 +1475,15 @@ amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: melpaBuild { pname = "amd-mode"; - version = "20160320.531"; + version = "20160603.1901"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "amd-mode.el"; - rev = "fd94a88ac92e2f5b45bb87212bf44dc22d3e0ccd"; - sha256 = "090qmjg3jf7m0cvx5pi5fmrkjfanwg60wiimcli7kq4gxpjvzwp9"; + rev = "1b9e5c3a18722bd65692a2069eea0e88fcddda71"; + sha256 = "1q49gfs98djwjxw2sr8q08jf5glf9d3ks9014gjjwa1dpf98mpy3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; @@ -1505,7 +1505,7 @@ ample-regexps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-regexps"; - version = "20151023.600"; + version = "20151023.1200"; src = fetchFromGitHub { owner = "immerrr"; repo = "ample-regexps.el"; @@ -1513,7 +1513,7 @@ sha256 = "17kdv4447dyjaz2chi1f8hlrry8pgvjgxivvk48r9yzi1crjd1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-regexps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-regexps"; sha256 = "00y07pd438v7ldkn5f1w84cpxa1mvcnzjkj6sf5l5pm97xqiz7j2"; name = "ample-regexps"; }; @@ -1526,7 +1526,7 @@ ample-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-theme"; - version = "20150814.1401"; + version = "20150814.2001"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "ample-theme"; @@ -1534,7 +1534,7 @@ sha256 = "0x72czw5rmz89w5fa27z54bz8qirrr882g0r37pb8li04j1hk7kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-theme"; sha256 = "055c6jy2q761za4cl1vlqdskcd3mc1j58k8b4418q7h2lv2zc0ry"; name = "ample-theme"; }; @@ -1547,7 +1547,7 @@ ample-zen-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ample-zen-theme"; - version = "20150119.1654"; + version = "20150119.2254"; src = fetchFromGitHub { owner = "mjwall"; repo = "ample-zen"; @@ -1555,7 +1555,7 @@ sha256 = "18z9jl5d19a132k6g1dvwqfbbdh5cx66b2qxlcjsfiqxlxglc2sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ample-zen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ample-zen-theme"; sha256 = "0xygk80mh05qssrbfj4h6k50pg557dyj6kzc2pdlmnr5r4gnzdn3"; name = "ample-zen-theme"; }; @@ -1568,15 +1568,15 @@ anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: melpaBuild { pname = "anaconda-mode"; - version = "20160411.950"; + version = "20160527.1412"; src = fetchFromGitHub { owner = "proofit404"; repo = "anaconda-mode"; - rev = "6a8c20683dc818cf0e9faba3f511131e37708c3e"; - sha256 = "0p51c8vvm8j11bzf8a64xvmpvbajs0r72m34x80zgcfkg4wij8b6"; + rev = "f44862d8d43f124acab349ecb207529622a363fa"; + sha256 = "0931yd46dfmaagmgvjx8f4a584a4faaw7krwmhnmhdbc3cqjvy39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1589,7 +1589,7 @@ anaphora = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anaphora"; - version = "20140728.1836"; + version = "20140729.36"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "anaphora"; @@ -1597,7 +1597,7 @@ sha256 = "1ym43y0wqifkzpkm7ayf8cq2wz8pc2wgg9zvdyi0cn9lr9mwpbav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1610,13 +1610,13 @@ anchored-transpose = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "anchored-transpose"; - version = "20080905.154"; + version = "20080905.754"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/anchored-transpose.el"; sha256 = "1hklypbp79pgaf1yklbm3qx4skm3xlml0cm1r9b9js3dbqyha651"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anchored-transpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anchored-transpose"; sha256 = "19dgj1605qxc2znvzj0cj6x29zyrh00qnzk2rlwpn9hvzypg9v7w"; name = "anchored-transpose"; }; @@ -1629,7 +1629,7 @@ android-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "android-mode"; - version = "20160408.823"; + version = "20160408.1423"; src = fetchFromGitHub { owner = "remvee"; repo = "android-mode"; @@ -1637,7 +1637,7 @@ sha256 = "1cg35nb4hhibsk9d6daszs2khadqb3gzyzaxjsykxsgmpfh27ikv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1650,7 +1650,7 @@ angry-police-captain = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "angry-police-captain"; - version = "20120829.852"; + version = "20120829.1452"; src = fetchFromGitHub { owner = "rolpereira"; repo = "angry-police-captain-el"; @@ -1658,7 +1658,7 @@ sha256 = "1m0c7ns7aiycg86cgglir8bkw730fslyg1n15m9ki0da4cnmm97a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angry-police-captain"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angry-police-captain"; sha256 = "00r3dx33h0wjxj0687ln8nbl1ff2badm3mk3r3bplfrd61z2qzld"; name = "angry-police-captain"; }; @@ -1671,7 +1671,7 @@ angular-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "angular-mode"; - version = "20151201.1627"; + version = "20151201.2227"; src = fetchFromGitHub { owner = "omouse"; repo = "angularjs-mode"; @@ -1679,7 +1679,7 @@ sha256 = "04kg2x0lif91knmkkh05mj42xw3dkzsnysjda6ian95v57wfg377"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1692,7 +1692,7 @@ angular-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "angular-snippets"; - version = "20140514.123"; + version = "20140514.723"; src = fetchFromGitHub { owner = "magnars"; repo = "angular-snippets.el"; @@ -1700,7 +1700,7 @@ sha256 = "0hdm1a323mzxjfdply8ri3addk146f21d8cmpd18r7dw3j3cdfrn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1713,7 +1713,7 @@ annotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "annotate"; - version = "20151227.1122"; + version = "20151227.1722"; src = fetchFromGitHub { owner = "bastibe"; repo = "annotate.el"; @@ -1721,7 +1721,7 @@ sha256 = "08gs96r9mbdg0s5l504yp6i5nmi9qr4nwxq3xprsbx9bdzv5l2dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1734,7 +1734,7 @@ annotate-depth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "annotate-depth"; - version = "20160520.1640"; + version = "20160520.2240"; src = fetchFromGitHub { owner = "netromdk"; repo = "annotate-depth"; @@ -1742,7 +1742,7 @@ sha256 = "18cav5wl3d0yq15273rqmdwvrgw96lmqiq9x5fxhf3wjb543mifl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate-depth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate-depth"; sha256 = "1j1pwnj7k6gl1p4npxsgrib0j1rzisq40pkm2wchjh86j3ybv2l4"; name = "annotate-depth"; }; @@ -1755,7 +1755,7 @@ annoying-arrows-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "annoying-arrows-mode"; - version = "20151113.1202"; + version = "20151113.1802"; src = fetchFromGitHub { owner = "magnars"; repo = "annoying-arrows-mode.el"; @@ -1763,7 +1763,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1776,7 +1776,7 @@ ansi = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ansi"; - version = "20150703.426"; + version = "20150703.1026"; src = fetchFromGitHub { owner = "rejeep"; repo = "ansi.el"; @@ -1784,7 +1784,7 @@ sha256 = "19k71dj83kvc8mks6zhl45vsrsb61via53dqxjv9bny1ybh2av85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansi"; sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; @@ -1797,7 +1797,7 @@ ansible = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ansible"; - version = "20160326.1131"; + version = "20160326.1631"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-ansible"; @@ -1805,7 +1805,7 @@ sha256 = "0k927pwhmn1cfl6jqs7ww1g6f64nq5i8f6a732d4q2rbl3aqzbdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1818,7 +1818,7 @@ ansible-doc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ansible-doc"; - version = "20150524.1305"; + version = "20150524.1905"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "ansible-doc.el"; @@ -1826,7 +1826,7 @@ sha256 = "1h3rqrjrl8wx7xvvd631jkbbczq3srd4mgz7y9wh3cvz1njdpy62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1839,7 +1839,7 @@ ant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ant"; - version = "20160211.1043"; + version = "20160211.1643"; src = fetchFromGitHub { owner = "apg"; repo = "ant-el"; @@ -1847,7 +1847,7 @@ sha256 = "0jb5vl3cq5m3r23fjhcxgxl4g011zkjkkyn5mqqxx22a1sydsvab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ant"; sha256 = "06028xjic14yv3rfqyc3k6jyjgm6fqfrf1mv8lvbh2sri2d5ifqa"; name = "ant"; }; @@ -1860,7 +1860,7 @@ anti-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anti-zenburn-theme"; - version = "20160501.1950"; + version = "20160502.150"; src = fetchFromGitHub { owner = "m00natic"; repo = "anti-zenburn-theme"; @@ -1868,7 +1868,7 @@ sha256 = "06xa29hq2qgg8hx1igj5hq7c16yj674mlnd3sgj40pwk88j5jp88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1881,7 +1881,7 @@ anx-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anx-api"; - version = "20140208.1014"; + version = "20140208.1614"; src = fetchFromGitHub { owner = "rmloveland"; repo = "emacs-appnexus-api"; @@ -1889,7 +1889,7 @@ sha256 = "0fzxzar8m9qznfxv3wr7vfj9y2110wf6mm5cj55k3sd5djdjhmf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anx-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anx-api"; sha256 = "1vzg3wsqyfb9rsfxrpz8k2gazjlz2nwnf4gnn1dypsjspjnzcb8r"; name = "anx-api"; }; @@ -1902,7 +1902,7 @@ anybar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anybar"; - version = "20160112.1102"; + version = "20160112.1702"; src = fetchFromGitHub { owner = "tie-rack"; repo = "anybar-el"; @@ -1910,7 +1910,7 @@ sha256 = "0qy5q4rq68nb21k7w3xpil8k8k5awcpjrjlxjwnhcklwb83w3dhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anybar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anybar"; sha256 = "0prnr8wjhishpf2zmn4b7054vfahk10w05nzsg2p6whaxywcachm"; name = "anybar"; }; @@ -1923,7 +1923,7 @@ anyins = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anyins"; - version = "20131229.541"; + version = "20131229.1141"; src = fetchFromGitHub { owner = "antham"; repo = "anyins"; @@ -1931,7 +1931,7 @@ sha256 = "05lq0bllgn44zs85mgnfdcyjasm6j8m70jdcxksf798i0qdqnk7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1944,14 +1944,14 @@ anything = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything"; - version = "20151018.2203"; + version = "20151019.403"; src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "2d7e0450e13ab04b20f4dff08f32936e78677e58"; sha256 = "0sc64kmykfkcxfs4zd4anxvvdiiyajd9vz9byb7a8ncyc22fs3g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1964,7 +1964,7 @@ anything-exuberant-ctags = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-exuberant-ctags"; - version = "20140316.1937"; + version = "20140317.37"; src = fetchFromGitHub { owner = "k1LoW"; repo = "anything-exuberant-ctags"; @@ -1972,7 +1972,7 @@ sha256 = "0dbf510gcd0m191samih0r4lx6d7sgk0ls0sx2jrdkyacy82ridy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1985,7 +1985,7 @@ anything-git-files = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-git-files"; - version = "20130609.543"; + version = "20130609.1143"; src = fetchFromGitHub { owner = "tarao"; repo = "anything-git-files-el"; @@ -1993,7 +1993,7 @@ sha256 = "0gj0p7420wx5c186kdccjb9icn656sg5b0zwnwy3fjvhsbbvrb2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-git-files"; sha256 = "13giasg8lh5968plva449ki9nc3478a63700f8c0yghnwjb77asw"; name = "anything-git-files"; }; @@ -2006,7 +2006,7 @@ anything-git-grep = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-git-grep"; - version = "20130608.2240"; + version = "20130609.440"; src = fetchFromGitHub { owner = "mechairoi"; repo = "anything-git-grep"; @@ -2014,7 +2014,7 @@ sha256 = "06fyvk7cjz1aag6fj52qraqmr23b0fqwml41yyid8gjxl4ygmkpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-git-grep"; sha256 = "1kw88fvxil9l80w8zn16az7avqplyf2m0l7kp431wb5b1b1508jl"; name = "anything-git-grep"; }; @@ -2027,7 +2027,7 @@ anything-milkode = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, milkode }: melpaBuild { pname = "anything-milkode"; - version = "20140518.1043"; + version = "20140518.1643"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "anything-milkode"; @@ -2035,7 +2035,7 @@ sha256 = "1jw6gqwcl3fx1m7w0a15w2pnzzlqyr1fbg0m81ay358s4w3jn6v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-milkode"; sha256 = "1apc865a01jyx602ldzj32rrjk6xmgnxdccpjpcfgh24h2aqpdan"; name = "anything-milkode"; }; @@ -2048,7 +2048,7 @@ anything-project = callPackage ({ anything, fetchFromGitHub, fetchurl, imakado, lib, melpaBuild }: melpaBuild { pname = "anything-project"; - version = "20141024.527"; + version = "20141024.1127"; src = fetchFromGitHub { owner = "imakado"; repo = "anything-project"; @@ -2056,7 +2056,7 @@ sha256 = "16a7i01q8qqkgph1s3jnwdr2arjq3cm3jpv5bk5sqs29c003q0pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-project"; sha256 = "10crwm34igb4kjh97alni15xzhsb2s0d4ghva86f2gpjidka9fhr"; name = "anything-project"; }; @@ -2069,7 +2069,7 @@ anything-prosjekt = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }: melpaBuild { pname = "anything-prosjekt"; - version = "20140129.304"; + version = "20140129.904"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -2077,7 +2077,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-prosjekt"; sha256 = "15kgn0wrnbh666kchijdlssf2gp7spgbymr2nwgv6k730cb4mfa8"; name = "anything-prosjekt"; }; @@ -2090,7 +2090,7 @@ anything-replace-string = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anything-replace-string"; - version = "20140317.636"; + version = "20140317.1136"; src = fetchFromGitHub { owner = "k1LoW"; repo = "anything-replace-string"; @@ -2098,7 +2098,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -2111,7 +2111,7 @@ anything-sage = callPackage ({ anything, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "anything-sage"; - version = "20141005.713"; + version = "20141005.1313"; src = fetchFromGitHub { owner = "stakemori"; repo = "anything-sage"; @@ -2119,7 +2119,7 @@ sha256 = "08xr6fkk1r4r5jqh349d4dfal9nbs2a8y2fp8zn3zlrj2cd0g80k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -2132,7 +2132,7 @@ anzu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "anzu"; - version = "20160405.118"; + version = "20160405.718"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-anzu"; @@ -2140,7 +2140,7 @@ sha256 = "1l0frc62i542avx8mmirdbwp6x3iy2ysdpwycpradmx4hsriin2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -2152,13 +2152,13 @@ }) {}; aok = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "aok"; - version = "20130824.727"; + version = "20130824.1327"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/aok.el"; sha256 = "10vdmxzifxx3fkpyg76ngnj79k3d2pq0f322rd8ssc66alxhkz3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aok"; sha256 = "1nkkbfwqp5r44wjwl902gm0xc8p3d2qj5mk1cchilr2rib52zd46"; name = "aok"; }; @@ -2171,7 +2171,7 @@ aozora-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aozora-view"; - version = "20140310.917"; + version = "20140310.1417"; src = fetchFromGitHub { owner = "kawabata"; repo = "aozora-view"; @@ -2179,7 +2179,7 @@ sha256 = "0528z3axjmplg2fdbv4jxgy1p39vr4rnsm4a3ps2fanf8bwsyx3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aozora-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aozora-view"; sha256 = "0pd2574a6dkhrfr0jf5gvv34ganp6ddylyb6cfpg2d4znwbc2r2w"; name = "aozora-view"; }; @@ -2191,13 +2191,13 @@ }) {}; apache-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apache-mode"; - version = "20150828.1014"; + version = "20150828.1614"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apache-mode.el"; sha256 = "1jndhcjvj6s1clmyyphl5ss5267c7b5a58fz8gbp1ffk1d9ylfik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apache-mode"; sha256 = "1a1pj3bk0gplfx217yd6qdn7qrhfbkx2bhkk33k0gq5sia6rzs44"; name = "apache-mode"; }; @@ -2210,7 +2210,7 @@ apel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apel"; - version = "20160427.452"; + version = "20160427.1052"; src = fetchFromGitHub { owner = "wanderlust"; repo = "apel"; @@ -2218,7 +2218,7 @@ sha256 = "1aywxk77vfgr1mk7j4pygy9hl4q7lbbx4iik1rs9frkmw6sb8qni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apel"; sha256 = "0zhlm8lfri3zkhj62cycvdhkkgrn72lqb0dalh8qgr049bdv816y"; name = "apel"; }; @@ -2231,7 +2231,7 @@ apples-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apples-mode"; - version = "20110120.2318"; + version = "20110121.518"; src = fetchFromGitHub { owner = "tequilasunset"; repo = "apples-mode"; @@ -2239,7 +2239,7 @@ sha256 = "0br0jl6xnajdx37s5cvs13srn9lldg58y9587a11s3s651xjdq0z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -2252,14 +2252,14 @@ applescript-mode = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "applescript-mode"; - version = "20120205.607"; + version = "20120205.1207"; src = fetchsvn { url = "http://svn.osdn.jp/svnroot/macemacsjp/applescript-mode/trunk"; rev = "584"; sha256 = "0n3y0314ajqhn5hzih09gl72110ifw4vzcgdxm8n6npjbx7irbml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/applescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/applescript-mode"; sha256 = "1ya0dh7gz7qfflhn6dq43rapb2zg7djvxwn7p4jajyjnwbxmk611"; name = "applescript-mode"; }; @@ -2272,7 +2272,7 @@ aproject = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aproject"; - version = "20150605.506"; + version = "20150605.1106"; src = fetchFromGitHub { owner = "vietor"; repo = "aproject"; @@ -2280,7 +2280,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -2293,13 +2293,13 @@ apropos-fn-plus-var = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apropos-fn-plus-var"; - version = "20151231.1505"; + version = "20151231.2105"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apropos-fn+var.el"; sha256 = "0wc9zg30a48cj2ssfj9wc7ga0ip9igcxcdbn1wr0qmndzxxa7x5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apropos-fn+var"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apropos-fn+var"; sha256 = "1s5gnsipsj7dhc8ca806grg32i6vlwm78hcxhrbs830vx9k84g5x"; name = "apropos-fn-plus-var"; }; @@ -2312,7 +2312,7 @@ apropospriate-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "apropospriate-theme"; - version = "20160212.1230"; + version = "20160212.1830"; src = fetchFromGitHub { owner = "waymondo"; repo = "apropospriate-theme"; @@ -2320,7 +2320,7 @@ sha256 = "0j0k5ak5pzh3n2grf7b6b7ajxsp4ssv2l5gmg08kmbdwscavzc4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apropospriate-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apropospriate-theme"; sha256 = "10bj2bsi7b104m686z8mgvbh493liidsvivxfvfxzbndc8wyjsw9"; name = "apropospriate-theme"; }; @@ -2332,13 +2332,13 @@ }) {}; apu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "apu"; - version = "20151231.1508"; + version = "20151231.2108"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/apu.el"; sha256 = "1xbvky0mspmbi8ghqhqhgbjn70acipwf0qwn6s5zdarwch10nljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apu"; sha256 = "0399rmjwcs7fykj10s9m0lm2wb1cr2bzw2bkgm5rp4n3va0rzaa2"; name = "apu"; }; @@ -2351,7 +2351,7 @@ archive-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "archive-region"; - version = "20140201.1842"; + version = "20140202.42"; src = fetchFromGitHub { owner = "rubikitch"; repo = "archive-region"; @@ -2359,7 +2359,7 @@ sha256 = "03pmwgvlxxlp4wh0sg5czpx1i88i43lz8lwdbfa6l28g1sv0f264"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/archive-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/archive-region"; sha256 = "1aiz6a0vdc2zm2q5r80cj5xixqfhsgmr7ldj9ff40k4sf3z5xny3"; name = "archive-region"; }; @@ -2372,7 +2372,7 @@ arduino-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arduino-mode"; - version = "20151018.235"; + version = "20151018.835"; src = fetchFromGitHub { owner = "bookest"; repo = "arduino-mode"; @@ -2380,7 +2380,7 @@ sha256 = "1yvaqjc9hadbnnay5fprnh890xsp53kidad1zpb4a5z4a5z61n3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arduino-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arduino-mode"; sha256 = "1lpsjpc7par12zsmg9sf4r1h039kxa4n68anjr3mhpp3d6rapjcx"; name = "arduino-mode"; }; @@ -2393,14 +2393,14 @@ aria2 = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aria2"; - version = "20141107.1817"; + version = "20141108.17"; src = fetchgit { url = "https://bitbucket.org/ukaszg/aria2.git"; rev = "3c54254e424c6c8b4eb0d8e7c4907b094c27a3f0"; - sha256 = "1xkgz3l7idw5bk1xlffdaddf5v1q6fm3grbryl4xvssrbwgnyisf"; + sha256 = "1z6smlc5cpf6kswbibhwwx3h5khsbj38a371lsjjhgmharg7a4r7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aria2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aria2"; sha256 = "10x2k99m3kl6y0k0mw590gq1ac162nmdwk58i8i7a4mb72zmsmhc"; name = "aria2"; }; @@ -2413,7 +2413,7 @@ ariadne = callPackage ({ bert, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ariadne"; - version = "20131117.1211"; + version = "20131117.1811"; src = fetchFromGitHub { owner = "manzyuk"; repo = "ariadne-el"; @@ -2421,7 +2421,7 @@ sha256 = "0vh9wfc3657sd12ybjcrxpg6f757x2ghkcl1lw01szmyy5vmj27h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ariadne"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ariadne"; sha256 = "0lfhving19wcfr40gjb2gnginiz8cncixiyyxhwx08lm84qb3a7p"; name = "ariadne"; }; @@ -2434,7 +2434,7 @@ arjen-grey-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arjen-grey-theme"; - version = "20160403.1515"; + version = "20160403.2115"; src = fetchFromGitHub { owner = "credmp"; repo = "arjen-grey-theme"; @@ -2442,7 +2442,7 @@ sha256 = "0p8k6sxmvmf535sawis6rn6lfyl5ph263i1phf2d5wl3dzs0xj5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arjen-grey-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arjen-grey-theme"; sha256 = "18q66f7hhys2ab9ljsdp9013mp7d6v6d1lrb0d1bb035r1b4pfj7"; name = "arjen-grey-theme"; }; @@ -2455,15 +2455,15 @@ artbollocks-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "artbollocks-mode"; - version = "20141212.1632"; + version = "20160604.220"; src = fetchFromGitHub { owner = "sachac"; repo = "artbollocks-mode"; - rev = "583c7048a1b09cd79554423d5115f5ddd129d190"; - sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; + rev = "f4d36cf9b506cd27e0615ba8dfed59c35885cd18"; + sha256 = "063j7q2i3701fmh44m77d572ppq0fd60hznh8jcwqa1ljbzynzkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -2476,7 +2476,7 @@ arview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "arview"; - version = "20160419.1709"; + version = "20160419.2309"; src = fetchFromGitHub { owner = "afainer"; repo = "arview"; @@ -2484,7 +2484,7 @@ sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arview"; sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; name = "arview"; }; @@ -2496,13 +2496,13 @@ }) {}; ascii = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ascii"; - version = "20130824.800"; + version = "20130824.1400"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ascii.el"; sha256 = "05fjsj5nmc05cmsi0qj914dqdwk8rll1d4dwhn0crw36p2ivql75"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ascii"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ascii"; sha256 = "0jb63f7qwhfbz0n4yrvnvx03cjqly3mqsc3rq9mgf4svy2zw702r"; name = "ascii"; }; @@ -2515,7 +2515,7 @@ asilea = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "asilea"; - version = "20150105.1025"; + version = "20150105.1625"; src = fetchFromGitHub { owner = "Fanael"; repo = "asilea"; @@ -2523,7 +2523,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -2536,7 +2536,7 @@ asn1-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "asn1-mode"; - version = "20151124.128"; + version = "20151124.728"; src = fetchFromGitHub { owner = "kawabata"; repo = "asn1-mode"; @@ -2544,7 +2544,7 @@ sha256 = "0h18x9nh152dnyqjv5b1zjksl8wb75s8zmx3v8vvmwqyy6ql8gcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asn1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asn1-mode"; sha256 = "0iswisb08dqz7jc5ra4wcdhbmglildgyrb547dm5362xmvm9ifmy"; name = "asn1-mode"; }; @@ -2557,15 +2557,15 @@ assess = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild }: melpaBuild { pname = "assess"; - version = "20160518.1757"; + version = "20160523.2222"; src = fetchFromGitHub { owner = "phillord"; repo = "assess"; - rev = "387e5cfe2f010fb3da7f1b670fc27c19ace99b4a"; - sha256 = "1qfrrw6vgz93xiyy0xiaw0hh97lmv3365gm6a9cr5g0h4012z8pq"; + rev = "e1b7740df50771b8eec5742f6910988e4a08b88f"; + sha256 = "1lng956z7cc73b0sn1zp433cl9hgya8x7drnaf0v122hg9qhf5c4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/assess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/assess"; sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; name = "assess"; }; @@ -2578,7 +2578,7 @@ async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "async"; - version = "20160513.428"; + version = "20160513.1028"; src = fetchFromGitHub { owner = "jwiegley"; repo = "emacs-async"; @@ -2586,7 +2586,7 @@ sha256 = "0w1cf78074is9n7wyfnyf1xjyydpyrbppf2xbvs9f1knmdajsph3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -2599,7 +2599,7 @@ at = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, queue }: melpaBuild { pname = "at"; - version = "20140707.820"; + version = "20140707.1420"; src = fetchFromGitHub { owner = "skeeto"; repo = "at-el"; @@ -2607,7 +2607,7 @@ sha256 = "0rnnvr8x1czphbinby2z2dga7ikwgd13d7zhgmp3ggamzyaz6nf1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/@"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/@"; sha256 = "0w91qx955z67w2yh8kf86b58bb3b6s6490mmbky8467knf2q83qz"; name = "at"; }; @@ -2620,7 +2620,7 @@ atom-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "atom-dark-theme"; - version = "20151120.235"; + version = "20151120.835"; src = fetchFromGitHub { owner = "whitlockjc"; repo = "atom-dark-theme-emacs"; @@ -2628,7 +2628,7 @@ sha256 = "0jfpzv8dmvl4nr6kvq5aii830s5h632bq2q3jbnfc4zdql7id464"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-dark-theme"; sha256 = "1ci61blm7wc83wm2iyax017ai4jljyag5j1mvw86rimmmjzr0v8f"; name = "atom-dark-theme"; }; @@ -2641,7 +2641,7 @@ atom-one-dark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "atom-one-dark-theme"; - version = "20160521.1506"; + version = "20160521.2106"; src = fetchFromGitHub { owner = "jonathanchu"; repo = "atom-one-dark-theme"; @@ -2649,7 +2649,7 @@ sha256 = "07gbnm0bbgbqvmzhwmfpnxfkirrldr4dvvvq5plv923hbqzayiih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-one-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-one-dark-theme"; sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; name = "atom-one-dark-theme"; }; @@ -2662,15 +2662,15 @@ auctex-latexmk = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auctex-latexmk"; - version = "20160522.5"; + version = "20160522.1950"; src = fetchFromGitHub { owner = "tom-tan"; repo = "auctex-latexmk"; - rev = "ef067ff644d9e62b3b20d0ed92c8a264548c8da5"; - sha256 = "0vs7i8iam92q3ijyjyy92rqf8d94aayv1rvqv3c6ably71gf720k"; + rev = "9b2e63c1de74a838375aae8de0858cefb9558de1"; + sha256 = "0myf7y4ayz79875vaqmms7ps9wk8p5sj4bd4vgxmzgfwi3vqdql4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auctex-latexmk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auctex-latexmk"; sha256 = "1rdlgkiwlgm06i1gjxcfciz6wgdskfhln8qhixyfxk7pnz0ax327"; name = "auctex-latexmk"; }; @@ -2683,7 +2683,7 @@ auctex-lua = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "auctex-lua"; - version = "20151121.1110"; + version = "20151121.1710"; src = fetchFromGitHub { owner = "vermiculus"; repo = "auctex-lua"; @@ -2691,7 +2691,7 @@ sha256 = "0lgfgvnaln5rhhwgcrzwrhbj0gz8sgaf6xxdl7njf3sa6bfgngsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auctex-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auctex-lua"; sha256 = "0v999jvinljkvhbn205p36a6jfzppn0xvflvzr8mid1hnqlrpjhf"; name = "auctex-lua"; }; @@ -2704,7 +2704,7 @@ audio-notes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "audio-notes-mode"; - version = "20140204.1454"; + version = "20140204.2054"; src = fetchFromGitHub { owner = "Malabarba"; repo = "audio-notes-mode"; @@ -2712,7 +2712,7 @@ sha256 = "0q79kblcbz5vlzj0f49vpc1902767ydmvkmwwjs60x3w2f3aq3cm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/audio-notes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/audio-notes-mode"; sha256 = "0q88xmi7jbrx47nvbbmwggbm6i7agzpnv5y7cpdh73lg165xsz2h"; name = "audio-notes-mode"; }; @@ -2725,7 +2725,7 @@ aurel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurel"; - version = "20160309.336"; + version = "20160309.936"; src = fetchFromGitHub { owner = "alezost"; repo = "aurel"; @@ -2733,7 +2733,7 @@ sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -2746,7 +2746,7 @@ aurora-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurora-config-mode"; - version = "20140520.503"; + version = "20140520.1103"; src = fetchFromGitHub { owner = "bdd"; repo = "aurora-config-mode.el"; @@ -2754,7 +2754,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-config-mode"; sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; @@ -2767,7 +2767,7 @@ aurora-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "aurora-theme"; - version = "20151015.1402"; + version = "20151015.2002"; src = fetchFromGitHub { owner = "xzerocode"; repo = "aurora-theme"; @@ -2775,7 +2775,7 @@ sha256 = "1z2n6gd63mgj2wj45n6g1gmfrk0iwzlrzb6g1rdd9r9a03c03qi6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-theme"; sha256 = "1fhlng30v25ycr502vfvajl70vimscqkipva6ghr670j35ac5vz5"; name = "aurora-theme"; }; @@ -2788,7 +2788,7 @@ auth-password-store = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store, seq }: melpaBuild { pname = "auth-password-store"; - version = "20160228.923"; + version = "20160228.1523"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "auth-password-store"; @@ -2796,7 +2796,7 @@ sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -2809,7 +2809,7 @@ auto-async-byte-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-async-byte-compile"; - version = "20120322.1741"; + version = "20120322.2241"; src = fetchFromGitHub { owner = "rubikitch"; repo = "auto-async-byte-compile"; @@ -2817,7 +2817,7 @@ sha256 = "17nv8rqjh3ynbk1r0njwjb5hd7sgii0vncsa1q19jyp3h30rj4in"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-async-byte-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-async-byte-compile"; sha256 = "0ks6xsxzayiyd0jl8m36xlc5p57p21qbhgq2mmz50a2lhpxxfiyg"; name = "auto-async-byte-compile"; }; @@ -2830,7 +2830,7 @@ auto-auto-indent = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-auto-indent"; - version = "20131106.1403"; + version = "20131106.2003"; src = fetchFromGitHub { owner = "sabof"; repo = "auto-auto-indent"; @@ -2838,7 +2838,7 @@ sha256 = "1whbvqylwnxg8d8gn55kcky39rgyc49rakyxlbkplh813lk6lxb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-auto-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-auto-indent"; sha256 = "08s73pnyrmklb660jl5rshncpq31z3m9fl55v7453ch8syp7gzh7"; name = "auto-auto-indent"; }; @@ -2850,13 +2850,13 @@ }) {}; auto-capitalize = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-capitalize"; - version = "20160415.1703"; + version = "20160415.2303"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/auto-capitalize.el"; sha256 = "0xywyfpsi64g9lihm5ncmjrj06iq9s6pp9fmsgj1hdf9y0z65lg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-capitalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-capitalize"; sha256 = "18fygc71n9bc0vrpymz2f7sw9hzkpqxzfglh53shmbm1zns3wkw0"; name = "auto-capitalize"; }; @@ -2869,7 +2869,7 @@ auto-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, packed }: melpaBuild { pname = "auto-compile"; - version = "20160424.718"; + version = "20160424.1318"; src = fetchFromGitHub { owner = "tarsius"; repo = "auto-compile"; @@ -2877,7 +2877,7 @@ sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -2890,7 +2890,7 @@ auto-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "auto-complete"; - version = "20160416.904"; + version = "20160416.1504"; src = fetchFromGitHub { owner = "auto-complete"; repo = "auto-complete"; @@ -2898,7 +2898,7 @@ sha256 = "19sdjwnjryzaq1rpjkvr3mjz9mg7cqzrrx5mqzic3aklgg71d53j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -2911,7 +2911,7 @@ auto-complete-auctex = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-complete-auctex"; - version = "20140223.1258"; + version = "20140223.1858"; src = fetchFromGitHub { owner = "monsanto"; repo = "auto-complete-auctex"; @@ -2919,7 +2919,7 @@ sha256 = "1wri8q5llpy1q1h4ac4kjnnkgj6fby8i9vrpr6mrb13d4gnk4gr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-auctex"; sha256 = "00npvryds5wd3d5a13r9prlvw6vvjlag8d32x5xf9bfmmvs0fgqh"; name = "auto-complete-auctex"; }; @@ -2932,7 +2932,7 @@ auto-complete-c-headers = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-c-headers"; - version = "20150911.2323"; + version = "20150912.523"; src = fetchFromGitHub { owner = "mooz"; repo = "auto-complete-c-headers"; @@ -2940,7 +2940,7 @@ sha256 = "12mzi6bwg702sp0f0wd1ag555blbpk252rr9rqs03bn8pkw89h4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-c-headers"; sha256 = "02pkrxvzrpyjrr2fkxnl1qw06aspzv8jlp2c1piln6zcjd92l3j7"; name = "auto-complete-c-headers"; }; @@ -2953,7 +2953,7 @@ auto-complete-chunk = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-chunk"; - version = "20140225.446"; + version = "20140225.1046"; src = fetchFromGitHub { owner = "tkf"; repo = "auto-complete-chunk"; @@ -2961,7 +2961,7 @@ sha256 = "1zhbpxpl443ghpkl9i68jcjfcw1vnf8ky06pf5qjjmqbxlcyd9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-chunk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-chunk"; sha256 = "1937j1xm20vfcqm9ig4nvciqfkz7rpw0nsfhlg69gkmv0nqszdr3"; name = "auto-complete-chunk"; }; @@ -2974,7 +2974,7 @@ auto-complete-clang = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-clang"; - version = "20140409.352"; + version = "20140409.952"; src = fetchFromGitHub { owner = "brianjcj"; repo = "auto-complete-clang"; @@ -2982,7 +2982,7 @@ sha256 = "12y6f47xbjl4gy14j2f5wlisy5vl6rhx74n27w61pjv38m0a7mi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang"; sha256 = "1rnmphl7ml5ryjl5ka2l58hddir8b34iz1rm905wdwh164piljva"; name = "auto-complete-clang"; }; @@ -2995,7 +2995,7 @@ auto-complete-clang-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-clang-async"; - version = "20130526.1114"; + version = "20130526.1714"; src = fetchFromGitHub { owner = "Golevka"; repo = "emacs-clang-complete-async"; @@ -3003,7 +3003,7 @@ sha256 = "1sw0wxrjcjqk0w1llfj376g6axa5bnk2lq2vv66746bkz14h0s8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -3016,7 +3016,7 @@ auto-complete-exuberant-ctags = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-exuberant-ctags"; - version = "20140320.324"; + version = "20140320.824"; src = fetchFromGitHub { owner = "k1LoW"; repo = "auto-complete-exuberant-ctags"; @@ -3024,7 +3024,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -3037,7 +3037,7 @@ auto-complete-nxml = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-nxml"; - version = "20140220.2358"; + version = "20140221.558"; src = fetchFromGitHub { owner = "aki2o"; repo = "auto-complete-nxml"; @@ -3045,7 +3045,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -3058,7 +3058,7 @@ auto-complete-pcmp = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "auto-complete-pcmp"; - version = "20140227.151"; + version = "20140227.751"; src = fetchFromGitHub { owner = "aki2o"; repo = "auto-complete-pcmp"; @@ -3066,7 +3066,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -3079,7 +3079,7 @@ auto-complete-rst = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-complete-rst"; - version = "20140225.444"; + version = "20140225.1044"; src = fetchFromGitHub { owner = "tkf"; repo = "auto-complete-rst"; @@ -3087,7 +3087,7 @@ sha256 = "107svb82cgfns9kcrmy3hh56cab81782jkbz5i9959ms81xizfb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-rst"; sha256 = "0dazkpnzzr0imb2a01qq8l60jxhhlknzjx7wccnbm7d2rk3338m6"; name = "auto-complete-rst"; }; @@ -3100,7 +3100,7 @@ auto-complete-sage = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "auto-complete-sage"; - version = "20160514.351"; + version = "20160514.951"; src = fetchFromGitHub { owner = "stakemori"; repo = "auto-complete-sage"; @@ -3108,7 +3108,7 @@ sha256 = "139in1jgxg43v7ji4i1qmxbgspr71h95lzlz0fvdk78vkxc5842b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -3121,7 +3121,7 @@ auto-dictionary = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-dictionary"; - version = "20150410.1210"; + version = "20150410.1810"; src = fetchFromGitHub { owner = "nschum"; repo = "auto-dictionary-mode"; @@ -3129,7 +3129,7 @@ sha256 = "0rfjx0x2an28821shgb4v5djza4kwn5nnrsl2cvh3px4wrvw3izp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -3142,7 +3142,7 @@ auto-dim-other-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-dim-other-buffers"; - version = "20160128.1246"; + version = "20160128.1846"; src = fetchFromGitHub { owner = "mina86"; repo = "auto-dim-other-buffers.el"; @@ -3150,7 +3150,7 @@ sha256 = "0lqfnv8wqnbb5ddwmh9svphc3bgmwdpwx40qw9sgqdzpj3xh7v8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dim-other-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dim-other-buffers"; sha256 = "0n9d23sfcmkjfqlm80vrgf856wy08ak4n4rk0z7vadq07yj46zxh"; name = "auto-dim-other-buffers"; }; @@ -3163,7 +3163,7 @@ auto-highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-highlight-symbol"; - version = "20130313.543"; + version = "20130313.1043"; src = fetchFromGitHub { owner = "gennad"; repo = "auto-highlight-symbol"; @@ -3171,7 +3171,7 @@ sha256 = "0jfiax1qqnyznhlnqkjsr9nnv7fpjywvfhj9jq59460j0nbrgs5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-highlight-symbol"; sha256 = "02mkji4sxym07jf5ww5kgv1c18x0xdfn8cmvgns5h4gij64lnr66"; name = "auto-highlight-symbol"; }; @@ -3184,7 +3184,7 @@ auto-indent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-indent-mode"; - version = "20160426.2322"; + version = "20160427.522"; src = fetchFromGitHub { owner = "mattfidler"; repo = "auto-indent-mode.el"; @@ -3192,7 +3192,7 @@ sha256 = "1ya7lnlgrxwrbaxlkl0bbz2m8pic6yjln0dm1mcmr9mjglp8kh6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -3204,13 +3204,13 @@ }) {}; auto-install = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-install"; - version = "20150418.2002"; + version = "20150419.202"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/auto-install.el"; sha256 = "043pb2wk7jh0jgxphdl4848rjyabna26gj0vlhpiyd8zc361pg9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-install"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-install"; sha256 = "1gaxc2ya4r903k0jf3319wg7wg5kzq7k8rfy8ac9b0wfzv247ixk"; name = "auto-install"; }; @@ -3223,7 +3223,7 @@ auto-package-update = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-package-update"; - version = "20151026.211"; + version = "20151026.711"; src = fetchFromGitHub { owner = "rranelli"; repo = "auto-package-update.el"; @@ -3231,7 +3231,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -3244,7 +3244,7 @@ auto-pause = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-pause"; - version = "20160426.816"; + version = "20160426.1416"; src = fetchFromGitHub { owner = "lujun9972"; repo = "auto-pause"; @@ -3252,7 +3252,7 @@ sha256 = "1pxhqwvg059pslin6z87jd8d0q44ljwvdn6y23ffrz9kfpn3m5m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-pause"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-pause"; sha256 = "0cdak2kicxylj5f161kia0bzzqad426y8cj4zf04gcl0nndijyrc"; name = "auto-pause"; }; @@ -3265,7 +3265,7 @@ auto-save-buffers-enhanced = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "auto-save-buffers-enhanced"; - version = "20130607.2249"; + version = "20130608.449"; src = fetchFromGitHub { owner = "kentaro"; repo = "auto-save-buffers-enhanced"; @@ -3273,7 +3273,7 @@ sha256 = "10aw3bpvawkqj1l8brvzq057wx3mkzpxs4zc3yhppkhq2cpvx7i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-save-buffers-enhanced"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-save-buffers-enhanced"; sha256 = "123vf6nnvdhrrfjn8n8h8a11mkqmy2zm3w3yn99np0zj31x8z7bb"; name = "auto-save-buffers-enhanced"; }; @@ -3286,15 +3286,15 @@ auto-shell-command = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "auto-shell-command"; - version = "20150416.1357"; + version = "20160604.438"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "auto-shell-command"; - rev = "59d4abce779a3ce3e920592bf5696b54b2e192c7"; - sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; + rev = "454b75a07b663095334381d5bf5625c7f136f743"; + sha256 = "0ahiy5cv3a632wfiar28186l0dgibafx5jaw9nrp4h5sqkbyvmjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -3307,7 +3307,7 @@ auto-virtualenv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pyvenv, s }: melpaBuild { pname = "auto-virtualenv"; - version = "20160220.936"; + version = "20160220.1536"; src = fetchFromGitHub { owner = "marcwebbie"; repo = "auto-virtualenv"; @@ -3315,7 +3315,7 @@ sha256 = "1ya5rn55sclh2w5bjy4b2b75gd6bgavfqmhdisz6afp8w4l4a2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-virtualenv"; sha256 = "0xv51g74l5pxa3s185867dpc98m6y26xbj5wgz7f9177qchvdbhk"; name = "auto-virtualenv"; }; @@ -3328,15 +3328,15 @@ auto-yasnippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "auto-yasnippet"; - version = "20160223.608"; + version = "20160524.1518"; src = fetchFromGitHub { owner = "abo-abo"; repo = "auto-yasnippet"; - rev = "e7576721b165f191257dfc23e412634fad6619a4"; - sha256 = "13g0vc0wsq7yn4qgxy3g64pdm30dafi75z6bsxnf3iq77zkqai0p"; + rev = "35760e8e06eb2f724fd456ad05b8ddbdf9a51f76"; + sha256 = "0xp9yixv853bcyqyb1yy9sq5b8xdmad68z38wylrn0m971p722dd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -3349,7 +3349,7 @@ autobookmarks = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autobookmarks"; - version = "20160430.1521"; + version = "20160430.2121"; src = fetchFromGitHub { owner = "Fuco1"; repo = "autobookmarks"; @@ -3357,7 +3357,7 @@ sha256 = "1kb6h37qlhzxk3v45bn0m38bp244c3fpxr3lzr7f6rsy8bpc8w67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autobookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autobookmarks"; sha256 = "11zhg3y9fb5mq67fwsnjrql9mnwkp3hwib7fpllb3yyf2yywc8zp"; name = "autobookmarks"; }; @@ -3370,7 +3370,7 @@ autodisass-java-bytecode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autodisass-java-bytecode"; - version = "20151005.1212"; + version = "20151005.1812"; src = fetchFromGitHub { owner = "gbalats"; repo = "autodisass-java-bytecode"; @@ -3378,7 +3378,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -3391,7 +3391,7 @@ autodisass-llvm-bitcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autodisass-llvm-bitcode"; - version = "20150410.2125"; + version = "20150411.325"; src = fetchFromGitHub { owner = "gbalats"; repo = "autodisass-llvm-bitcode"; @@ -3399,7 +3399,7 @@ sha256 = "1fq4h5fmamyh7z8nq6pigx74p5v8k3qfm64k66vwsm8bl5jdkw17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -3412,13 +3412,13 @@ autofit-frame = callPackage ({ fetchurl, fit-frame, lib, melpaBuild }: melpaBuild { pname = "autofit-frame"; - version = "20151231.1509"; + version = "20151231.2109"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/autofit-frame.el"; sha256 = "1af45z1w69dkdk4mzjphwn420m9rrkc3djv5kpp6lzbxxnmswbqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autofit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autofit-frame"; sha256 = "0p24qqnfa1vfn5pgnpvbxwi11zjkd6f3cv5igwg6h0pr5s7spnvw"; name = "autofit-frame"; }; @@ -3431,7 +3431,7 @@ automargin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "automargin"; - version = "20131112.314"; + version = "20131112.914"; src = fetchFromGitHub { owner = "zk-phi"; repo = "automargin"; @@ -3439,7 +3439,7 @@ sha256 = "02nnyncfh6g0xizy7wa8721ahpnwk451kngd6n0y0249f50p3962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/automargin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/automargin"; sha256 = "0llqz01wmacc0f8j3h7r0j57vkmzksl9vj1h0igfxzpm347mm9q8"; name = "automargin"; }; @@ -3452,7 +3452,7 @@ autopair = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autopair"; - version = "20160304.737"; + version = "20160304.1337"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "autopair"; @@ -3460,7 +3460,7 @@ sha256 = "09p56vi5zgm2djglimwyhv4n4gyydjndzn46vg9qzzlxvvmw66i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -3473,7 +3473,7 @@ autotest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autotest"; - version = "20150130.525"; + version = "20150130.1125"; src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; @@ -3481,7 +3481,7 @@ sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autotest"; sha256 = "0f46m5pc40i531dzfnhkcn192dcs1q20y083c1c0wg2zhjcdr5iy"; name = "autotest"; }; @@ -3494,7 +3494,7 @@ autotetris-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autotetris-mode"; - version = "20141114.1146"; + version = "20141114.1746"; src = fetchFromGitHub { owner = "skeeto"; repo = "autotetris-mode"; @@ -3502,7 +3502,7 @@ sha256 = "162zay36mmkkpbfvp0lagv2js4cr1z75dc1z5l2505814m5sx3az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autotetris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autotetris-mode"; sha256 = "0k4yq4pvrs1zaf9aqxmlb6l2v4k774zbxj4zcx49w3l1h8gwxpbb"; name = "autotetris-mode"; }; @@ -3515,7 +3515,7 @@ autumn-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "autumn-light-theme"; - version = "20150515.1047"; + version = "20150515.1647"; src = fetchFromGitHub { owner = "aalpern"; repo = "emacs-color-theme-autumn-light"; @@ -3523,7 +3523,7 @@ sha256 = "1lip7282g41ghn64dvx2ab437s83cj9l8ps1rd8rbhqyz4bx5wb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autumn-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autumn-light-theme"; sha256 = "0g3wqv1yw3jycq30mcj3w4sn9nj6i6gyd2ljzimf547ggcai536a"; name = "autumn-light-theme"; }; @@ -3533,18 +3533,39 @@ license = lib.licenses.free; }; }) {}; + avandu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "avandu"; + version = "20140412.2326"; + src = fetchFromGitHub { + owner = "dk87"; + repo = "avandu"; + rev = "891a847b0fff0ec1abfa717ede28250a16d5c429"; + sha256 = "01mcp4q8qsbcz2nfsfd5wndpnka7qfiqfn2f35y0pm56di7a49v5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avandu"; + sha256 = "00fhc3mw7ihfil8fbnibgs8bch9712fya2d1k7k3ll2aln25jjxw"; + name = "avandu"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/avandu"; + license = lib.licenses.free; + }; + }) {}; avy = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy"; - version = "20160519.836"; + version = "20160601.758"; src = fetchFromGitHub { owner = "abo-abo"; repo = "avy"; - rev = "33af738ae777c01fd527a69fe088b52450bb427a"; - sha256 = "0q5sz6vnbd3fjrqbcyy6f5p33bjxmrgb50madr5nmyjixq3az4kv"; + rev = "4dcf0a9a9a2c4d08723e29d3e451ae2caf27acb5"; + sha256 = "10hc3b1cvsnajbrxdmanc2apcrb01sgmrrfvfhkwaffnmck75z99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -3557,15 +3578,15 @@ avy-menu = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy-menu"; - version = "20160126.725"; + version = "20160126.1325"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "avy-menu"; - rev = "ccc835abbb02b6846d9b01423190c6ea3b9bcba0"; - sha256 = "1a6h44a6id4ash8kp0a59f34658p7czcl2d3i1880k8hckhy445j"; + rev = "bd32dde9b8d5695f28b87a198e683cf7c94a043b"; + sha256 = "0bjx6fsrnx373fzndhwq4k6nbrvq4q2pxrmgd9lpi4fpdwxq635c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -3578,7 +3599,7 @@ avy-migemo = callPackage ({ avy, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "avy-migemo"; - version = "20160521.926"; + version = "20160521.1526"; src = fetchFromGitHub { owner = "momomo5717"; repo = "avy-migemo"; @@ -3586,7 +3607,7 @@ sha256 = "0akllwdn1qn4v4b7hj5if11v87ppx6dr8spzmlmkav8ls4z8zhgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -3599,7 +3620,7 @@ avy-zap = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "avy-zap"; - version = "20160330.1430"; + version = "20160330.2030"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "avy-zap"; @@ -3607,7 +3628,7 @@ sha256 = "0nv6y9jwy2z4rlnd6qklhqww367kaqjc5id7yr4hsmxmxw2jj43p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -3619,13 +3640,13 @@ }) {}; awk-it = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "awk-it"; - version = "20130917.1448"; + version = "20130917.2048"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/awk-it.el"; sha256 = "1r1vbi1r3rdbkyb2naciqwja7hxigjhqfxsfcinnygabsi7fw9aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/awk-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/awk-it"; sha256 = "1rnrm9jf9wvfrwyylhj0bfrz9140945lc87lrh21caf7q88fpvkw"; name = "awk-it"; }; @@ -3638,15 +3659,15 @@ aws-ec2 = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, tablist }: melpaBuild { pname = "aws-ec2"; - version = "20160518.1010"; + version = "20160603.1616"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "aws.el"; - rev = "14ff97cc3479cc871937d8f09a5a9b8746016cc8"; - sha256 = "0sgza6p6m1fssf0qmdi3s9apzqzb69bsmwh7ynh30x31yswwmrdm"; + rev = "df3f68ebb938adec7c3bb39f619fcf5247313eaf"; + sha256 = "1gxwd4w09mp7kymcppfvi971d8cv9dqzvayxk69ijazszibxw8hm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aws-ec2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aws-ec2"; sha256 = "040c69g8rhpcmrdjjg4avdmqarxx3dfzylmz62yxhfpn02qh48xd"; name = "aws-ec2"; }; @@ -3659,14 +3680,14 @@ axiom-environment = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "axiom-environment"; - version = "20160325.1815"; + version = "20160325.2315"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; rev = "bc294e47f51c"; sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/axiom-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/axiom-environment"; sha256 = "1d3h1fn5zfbh7kpm2i02kza3bq9s6if4yd2vvfjdhgrykvl86h66"; name = "axiom-environment"; }; @@ -3679,7 +3700,7 @@ babel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "babel"; - version = "20131231.1025"; + version = "20131231.1625"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "babel"; @@ -3687,7 +3708,7 @@ sha256 = "140lbpqq4qz45ykycdn8nvcn8pv0xqfwpapgprvyg8z5fjkyc4sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -3700,7 +3721,7 @@ babel-repl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "babel-repl"; - version = "20160504.1801"; + version = "20160505.1"; src = fetchFromGitHub { owner = "hung-phan"; repo = "babel-repl"; @@ -3708,7 +3729,7 @@ sha256 = "0sp0ja0346k401q5zpx3zl4pnxp4ml2jqkgk7z8i08rhdbp0c4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel-repl"; sha256 = "0h11i8w8s4ia1x0lm5n7bnc3db4bv0a7f7hzl27qrg38m3c7dl6x"; name = "babel-repl"; }; @@ -3721,7 +3742,7 @@ back-button = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, nav-flash, pcache, persistent-soft, smartrep, ucs-utils }: melpaBuild { pname = "back-button"; - version = "20150804.1604"; + version = "20150804.2204"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "back-button"; @@ -3729,7 +3750,7 @@ sha256 = "0rj6a8rdwa0h2ckz7h4d91hnxqcin98l4ikbfyak2whfb47z909l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -3748,13 +3769,13 @@ }) {}; backup-each-save = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "backup-each-save"; - version = "20130704.1032"; + version = "20130704.1632"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/backup-each-save.el"; sha256 = "0b9vvi2m0fdv36wj8mvawl951gjmg3pypg08a8n6rzn3rwg0fwz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/backup-each-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/backup-each-save"; sha256 = "1fv9sf6vkjyv93vil4l9hjm2fg73zlxbnif0xfm3kpmva9xin337"; name = "backup-each-save"; }; @@ -3767,7 +3788,7 @@ backup-walker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "backup-walker"; - version = "20130720.1116"; + version = "20130720.1716"; src = fetchFromGitHub { owner = "lewang"; repo = "backup-walker"; @@ -3775,7 +3796,7 @@ sha256 = "0z4d8x9lkad50720lgvr8f85p1ligv07865i30lgr9ck0q04w68v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/backup-walker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/backup-walker"; sha256 = "0hfr27yiiblrd0p3zhpapbj4vijfdk7wqh406xnlwf2yvnfsqycd"; name = "backup-walker"; }; @@ -3788,7 +3809,7 @@ badger-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badger-theme"; - version = "20140716.2232"; + version = "20140717.432"; src = fetchFromGitHub { owner = "ccann"; repo = "badger-theme"; @@ -3796,7 +3817,7 @@ sha256 = "0g8smx6pi2wqv78mhxfgwg51mx5msqsgcc55xcz29aq0q3naw4z1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badger-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badger-theme"; sha256 = "01h5bsqllgn6gs0wpl0y2h041007mn3ldjswkz6f3mayrgl4c6yf"; name = "badger-theme"; }; @@ -3809,7 +3830,7 @@ badwolf-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "badwolf-theme"; - version = "20160521.755"; + version = "20160521.1355"; src = fetchFromGitHub { owner = "bkruczyk"; repo = "badwolf-emacs"; @@ -3817,7 +3838,7 @@ sha256 = "06l5b1dnz8gggqf1lsmw8x4mlra9pvpxzykjw06qaassfjjhaql2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -3830,7 +3851,7 @@ baidu-life = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "baidu-life"; - version = "20160426.819"; + version = "20160426.1419"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-baidu-life"; @@ -3838,7 +3859,7 @@ sha256 = "024gpdjr1lbqjg6md526g4wz2shpgfpdrrd2m1bn4fissbzj70i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/baidu-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/baidu-life"; sha256 = "0rib50hja33qk8dmw5i62gaxhx7mscj2y0n25jmnds7k88ms8z19"; name = "baidu-life"; }; @@ -3851,7 +3872,7 @@ base16-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "base16-theme"; - version = "20151019.1011"; + version = "20151019.1611"; src = fetchFromGitHub { owner = "mkaito"; repo = "base16-emacs"; @@ -3859,7 +3880,7 @@ sha256 = "16240dj0hvxkljas9973wjdgkbx213sqws77j167yr5xf761dlsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/base16-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/base16-theme"; sha256 = "1zxbvfj6gvz1ynhj6i9q9y65hq7aq41qx4vnx738cjizcq0rc8bs"; name = "base16-theme"; }; @@ -3872,7 +3893,7 @@ bash-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bash-completion"; - version = "20150514.1028"; + version = "20150514.1628"; src = fetchFromGitHub { owner = "szermatt"; repo = "emacs-bash-completion"; @@ -3880,7 +3901,7 @@ sha256 = "06c42531dy5ngscwfvg8rksg6jcsakfn7104hmlg1jp4kvfiy1kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -3893,7 +3914,7 @@ basic-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "basic-theme"; - version = "20151010.407"; + version = "20151010.1007"; src = fetchFromGitHub { owner = "fgeller"; repo = "basic-theme.el"; @@ -3901,7 +3922,7 @@ sha256 = "1pbnw6ccphxynbhnc4g687jfcg33p1sa7a0mfxc2ai0i3z59gn78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/basic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/basic-theme"; sha256 = "16rgff1d0s65alh328lr93zc06zmgbzgwx1rf3k3l4d10ki4cc27"; name = "basic-theme"; }; @@ -3913,13 +3934,13 @@ }) {}; batch-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "batch-mode"; - version = "20140807.1650"; + version = "20140807.2250"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/batch-mode.el"; sha256 = "1aa611jrzw4svmxvw1ghgh53x4nry0sl7mxmp4kxiaybqqvz6a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/batch-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/batch-mode"; sha256 = "1p0rh5r8w00jag64sbjy8xb9g6lqhm2fz476v201kbrj9ggp643x"; name = "batch-mode"; }; @@ -3932,7 +3953,7 @@ bats-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bats-mode"; - version = "20160514.215"; + version = "20160514.815"; src = fetchFromGitHub { owner = "dougm"; repo = "bats-mode"; @@ -3940,7 +3961,7 @@ sha256 = "1ikb4rb20ng1yq95g3ydwpk37axmiw38rjzn1av9m4cs81qby4jv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bats-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bats-mode"; sha256 = "1l5winy30w8fs3f5cylc3a3j3mfkvchwanlgsin7q76jivn87h7w"; name = "bats-mode"; }; @@ -3953,7 +3974,7 @@ bbcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbcode-mode"; - version = "20141103.1641"; + version = "20141103.2241"; src = fetchFromGitHub { owner = "ejmr"; repo = "bbcode-mode"; @@ -3961,7 +3982,7 @@ sha256 = "17ip24fk13aj9zldn2qsr4naa8anqhm484m1an5l5i9m9awfiyn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -3973,14 +3994,14 @@ }) {}; bbdb = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb"; - version = "20151114.1841"; + version = "20151115.41"; src = fetchgit { url = "git://git.savannah.nongnu.org/bbdb.git"; rev = "8fce6df3ab09250d545a2ed373ae64e68d12ff4c"; - sha256 = "1nglakzpcy2pizg80ny1w972vq74v5jgzdvgqp69jkb7312cqzvd"; + sha256 = "09ib71b669sccp0x5lf2ic4gzdqcmmdx918n870lhabqhn0gw3g2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb"; sha256 = "0zhs4psa9b9yf9hxm19q5znsny11cdp23pya3rrlmj39j4jfn73j"; name = "bbdb"; }; @@ -3993,7 +4014,7 @@ bbdb- = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "bbdb-"; - version = "20140221.1854"; + version = "20140222.54"; src = fetchFromGitHub { owner = "aki2o"; repo = "bbdb-"; @@ -4001,7 +4022,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -4014,7 +4035,7 @@ bbdb-android = callPackage ({ bbdb-vcard, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-android"; - version = "20150706.124"; + version = "20150706.724"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-android"; @@ -4022,7 +4043,7 @@ sha256 = "0m80k87dahzdpfa4snbl4p9zm5d5anc8s91535mwzsnfbr98qmhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-android"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-android"; sha256 = "0v3njygqkcrwjkf7jrqmza6bwk2jp3956cx1qvf9ph7dfxsq7rn3"; name = "bbdb-android"; }; @@ -4035,7 +4056,7 @@ bbdb-china = callPackage ({ bbdb-vcard, chinese-pyim, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-china"; - version = "20150615.2156"; + version = "20150616.356"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-china"; @@ -4043,7 +4064,7 @@ sha256 = "07plwm5nh58qya03l8z0iaqh8bmyhywx7qiffkf803n8wwjb3kdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-china"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-china"; sha256 = "111lf256zxlnylfmwis0pngbpj73p59s520v8abbm7pn82k2m72b"; name = "bbdb-china"; }; @@ -4056,7 +4077,7 @@ bbdb-csv-import = callPackage ({ bbdb, dash, fetchFromGitLab, fetchurl, lib, melpaBuild, pcsv }: melpaBuild { pname = "bbdb-csv-import"; - version = "20140802.742"; + version = "20140802.1342"; src = fetchFromGitLab { owner = "iankelling"; repo = "bbdb-csv-import"; @@ -4064,7 +4085,7 @@ sha256 = "1h9vi9wb3dzzjrw5zfypk60afzzshxa3qmnbc24ypby5dr7qy91l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-csv-import"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-csv-import"; sha256 = "0r7pc2ypd1ydqrnvcqmsg69rm047by7k0zhm563538ra82597wnm"; name = "bbdb-csv-import"; }; @@ -4077,7 +4098,7 @@ bbdb-ext = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-ext"; - version = "20151220.1513"; + version = "20151220.2113"; src = fetchFromGitHub { owner = "vapniks"; repo = "bbdb-ext"; @@ -4085,7 +4106,7 @@ sha256 = "1ydf89mmp3zjfqdymnrwg18wclyf7psarz9f2k82pl58h0khh71g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-ext"; sha256 = "0fnxcvzdyh0602rdfz3lz3vmvza4s0syz1vn2fgsn2lg3afqq7li"; name = "bbdb-ext"; }; @@ -4098,7 +4119,7 @@ bbdb-handy = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-handy"; - version = "20150707.2052"; + version = "20150708.252"; src = fetchFromGitHub { owner = "tumashu"; repo = "bbdb-handy"; @@ -4106,7 +4127,7 @@ sha256 = "04yxky7qxh0s4y4addry85qd1074l97frhp0hw77xd1bc7n5zzg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-handy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-handy"; sha256 = "0qv1lw4fv9w9c1ypzpbnvkm6ypqrzqpwyw5gpi7n9almxpd8d68z"; name = "bbdb-handy"; }; @@ -4119,7 +4140,7 @@ bbdb-vcard = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb-vcard"; - version = "20150713.1650"; + version = "20150713.2250"; src = fetchFromGitHub { owner = "tohojo"; repo = "bbdb-vcard"; @@ -4127,7 +4148,7 @@ sha256 = "1zlf9xhpirln72xr7v6kgndkg5wyz5ipsl4gpq9lbmp92jlgbwlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -4140,7 +4161,7 @@ bbdb2erc = callPackage ({ bbdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbdb2erc"; - version = "20130607.229"; + version = "20130607.829"; src = fetchFromGitHub { owner = "unhammer"; repo = "bbdb2erc"; @@ -4148,7 +4169,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -4161,7 +4182,7 @@ bbyac = callPackage ({ browse-kill-ring, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bbyac"; - version = "20150316.601"; + version = "20150316.1101"; src = fetchFromGitHub { owner = "baohaojun"; repo = "bbyac"; @@ -4169,7 +4190,7 @@ sha256 = "1cdm4d6fjf3m495phynq0dzvv0wc0gfsw6fdq4d47iyxs0p4q2dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbyac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbyac"; sha256 = "19s9fqcdyqz22m981vr0p8jwghbs267yrlxsv9xkfzd7fccnx170"; name = "bbyac"; }; @@ -4182,7 +4203,7 @@ bdo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bdo"; - version = "20140126.401"; + version = "20140126.1001"; src = fetchFromGitHub { owner = "chrisdone"; repo = "bdo"; @@ -4190,7 +4211,7 @@ sha256 = "0d5b7zyl2vg621w1ll2lw3kjz5hx6lqxc0jivh0i449gckk5pzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bdo"; sha256 = "0vp8am2x11abxganw90025w9qxnqjdkj015592glbbzpa6338nfl"; name = "bdo"; }; @@ -4203,15 +4224,15 @@ beacon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "beacon"; - version = "20160430.1049"; + version = "20160527.250"; src = fetchFromGitHub { owner = "Malabarba"; repo = "beacon"; - rev = "16be7a12d0dbbbd0e59fc2ccf9a7c7085eb9cf5a"; - sha256 = "0b3d4zi6c53s69sl4di6scf5s9wik0qxqc4g5wd42af85b7yfnva"; + rev = "aaeb619f1ff57e666925bcef22bb3195c22d589e"; + sha256 = "0hjzh5dgwzr4sq9pj22g0cfkqdcd01aq5dcpg96c8xq8b8ga81g6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beacon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beacon"; sha256 = "1pwxvdfzs9qjd44wvgimipi2hg4qw5sh5wlsl8h8mq2kyx09s7hq"; name = "beacon"; }; @@ -4224,7 +4245,7 @@ beeminder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "beeminder"; - version = "20160209.2203"; + version = "20160210.403"; src = fetchFromGitHub { owner = "Sodaware"; repo = "beeminder.el"; @@ -4232,7 +4253,7 @@ sha256 = "0ki9q3ylssjabh15dr49k7dxv88snpj4564g0myp3c61qzyy82lk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beeminder"; sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; @@ -4245,7 +4266,7 @@ beginend = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "beginend"; - version = "20150607.1301"; + version = "20150607.1901"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "beginend"; @@ -4253,7 +4274,7 @@ sha256 = "1hyiz7iwnzbg1616q0w7fndllbnx4m98kakgxn04bsqib5fqk78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -4266,7 +4287,7 @@ benchmark-init = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "benchmark-init"; - version = "20150905.538"; + version = "20150905.1138"; src = fetchFromGitHub { owner = "dholm"; repo = "benchmark-init-el"; @@ -4274,7 +4295,7 @@ sha256 = "058mic9jkwiqvmp3k9sfd6gb70ysdphnb1iynlszhixbrz5w7zs2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/benchmark-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/benchmark-init"; sha256 = "0dknch4b1j7ff1079z2fhqng7kp4903b3v7mhj15b5vzspbp3wal"; name = "benchmark-init"; }; @@ -4287,7 +4308,7 @@ bert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bert"; - version = "20131117.514"; + version = "20131117.1114"; src = fetchFromGitHub { owner = "manzyuk"; repo = "bert-el"; @@ -4295,7 +4316,7 @@ sha256 = "06izbc0ksyhgh4gsjiifhj11v0gx9x5xjx9aqci5mc4kc6mg05sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bert"; sha256 = "1zhz1dcy1nf84p244x6lc4ajancv5fgmqmbrm080yhb2ral1z8x7"; name = "bert"; }; @@ -4308,15 +4329,15 @@ better-defaults = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "better-defaults"; - version = "20160128.218"; + version = "20160601.2119"; src = fetchFromGitHub { owner = "technomancy"; repo = "better-defaults"; - rev = "90df5752a0a0602feb47aadfd3542aa7fc841bd8"; - sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; + rev = "3f993b021d885a5386d7724425efeb7248cfe9b7"; + sha256 = "10aq52vrp2sxj713si6m0bpz9s3c0yxjr2qqw29731hb1s2hvznp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -4328,13 +4349,13 @@ }) {}; better-registers = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "better-registers"; - version = "20140813.419"; + version = "20140813.1019"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/better-registers.el"; sha256 = "05dlhhvd1m9q642gqqj6klif13shbinqi6bi72fldidi1z6wcqlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-registers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-registers"; sha256 = "01i0qjrwsc5way2h9z3pmsgccsbdifsq1dh6zhka4h6qfgrmn3bx"; name = "better-registers"; }; @@ -4347,7 +4368,7 @@ bf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bf-mode"; - version = "20130403.1042"; + version = "20130403.1642"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "bf-mode"; @@ -4355,7 +4376,7 @@ sha256 = "02b2m0cq04ynjcmr4j8gpdzjv9mpf1fysn736xv724xgaymj396n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bf-mode"; sha256 = "0b1yf9bx1ldkzry7v5qvcnl059rq62a50dvpa10i2f5v0y96n1q9"; name = "bf-mode"; }; @@ -4368,7 +4389,7 @@ bfbuilder = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bfbuilder"; - version = "20150924.1250"; + version = "20150924.1850"; src = fetchFromGitHub { owner = "zk-phi"; repo = "bfbuilder"; @@ -4376,7 +4397,7 @@ sha256 = "1y9fxs1nbf0xsn8mw45m9ghmji3h64wdbfnyr1npmf5fb27rmd17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bfbuilder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bfbuilder"; sha256 = "16ckybqd0a8l75ascm3k4cdzp969lzq7m050aymdyjhwif6ld2r7"; name = "bfbuilder"; }; @@ -4389,15 +4410,15 @@ biblio = callPackage ({ biblio-core, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "biblio"; - version = "20160407.527"; + version = "20160407.1127"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "biblio.el"; - rev = "1d37beac6024bb0e354966f20cd860fc8260bdc6"; - sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; + rev = "0985aff28a2a105d6cee1b9a89b3c4e66780bd3c"; + sha256 = "12i4ha6cncni0159n6i8qy2kfrn4ixdwni71gbwqmi9fbcyj4rls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio"; sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; name = "biblio"; }; @@ -4410,15 +4431,15 @@ biblio-core = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "biblio-core"; - version = "20160407.526"; + version = "20160530.48"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "biblio.el"; - rev = "1d37beac6024bb0e354966f20cd860fc8260bdc6"; - sha256 = "0mlbpmf6l9hvdw2pdx1qbad6q54r8zjb514d89znd461vs9ipjya"; + rev = "0985aff28a2a105d6cee1b9a89b3c4e66780bd3c"; + sha256 = "12i4ha6cncni0159n6i8qy2kfrn4ixdwni71gbwqmi9fbcyj4rls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio-core"; sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; name = "biblio-core"; }; @@ -4431,7 +4452,7 @@ bibretrieve = callPackage ({ auctex, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bibretrieve"; - version = "20131013.1432"; + version = "20131013.2032"; src = fetchFromGitHub { owner = "pzorin"; repo = "bibretrieve"; @@ -4439,7 +4460,7 @@ sha256 = "0rwy4k06nd9a31hpyqs0fxp45dpddbvbhwcw1gzx4f73qmgawq9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibretrieve"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibretrieve"; sha256 = "1mf884c6adx7rq5c2z5wrnjpb6znljy30mscxskwqiyfs8c62mii"; name = "bibretrieve"; }; @@ -4452,7 +4473,7 @@ bibslurp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "bibslurp"; - version = "20151202.1846"; + version = "20151203.46"; src = fetchFromGitHub { owner = "mkmcc"; repo = "bibslurp"; @@ -4460,7 +4481,7 @@ sha256 = "077shjz9sd0k0akvxzzgjd8a626ck650xxlhp2ws4gs7rjd7a823"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibslurp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibslurp"; sha256 = "178nhng87bdi8s0r2bdh2gk31w9mmjkyi6ncnddk3v7p8fsh4jjp"; name = "bibslurp"; }; @@ -4473,7 +4494,7 @@ bibtex-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bibtex-utils"; - version = "20150924.947"; + version = "20150924.1547"; src = fetchFromGitHub { owner = "plantarum"; repo = "bibtex-utils"; @@ -4481,7 +4502,7 @@ sha256 = "1qf45s53vcbd90v2d2brynv3xmp8sy9w9jp611cf0dzfl1k7x8p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bibtex-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bibtex-utils"; sha256 = "13llsyyvy0xc9s51cqqc1rz13m3qdqh8jw07gwywfbixlma59z8l"; name = "bibtex-utils"; }; @@ -4494,15 +4515,15 @@ bind-chord = callPackage ({ bind-key, fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "bind-chord"; - version = "20151111.1107"; + version = "20160530.1942"; src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; - rev = "b7de6b2a1270d37a1aca3bd8f29f67ec578527d7"; - sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; + rev = "8dedc76617cbabd605f4c0d486018e3c4d3c8a9b"; + sha256 = "0d69hckz6xbll1x2mll385kcw7mwx8cwxg1wdhphnww0s810isgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-chord"; sha256 = "01a3c298kq8cfsxsscpic0shkjm77adiamgbgk8laqkbrlsrrcsb"; name = "bind-chord"; }; @@ -4515,7 +4536,7 @@ bind-key = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-key"; - version = "20160227.348"; + version = "20160227.948"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; @@ -4523,7 +4544,7 @@ sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -4536,7 +4557,7 @@ bind-map = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bind-map"; - version = "20160510.1348"; + version = "20160510.1948"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-bind-map"; @@ -4544,7 +4565,7 @@ sha256 = "126pjiiwhz500l60dvf6a9ixgda2sqv0rbj5f2a7g3pssh5yjh12"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; @@ -4557,7 +4578,7 @@ bing-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bing-dict"; - version = "20160514.1659"; + version = "20160514.2259"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "bing-dict.el"; @@ -4565,7 +4586,7 @@ sha256 = "1cv2gx3wpk360a0s80pnd2h2xnbfz5cgsln2kij36dvjbxkrzjz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -4578,7 +4599,7 @@ birds-of-paradise-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "birds-of-paradise-plus-theme"; - version = "20130419.1729"; + version = "20130419.2329"; src = fetchFromGitHub { owner = "jimeh"; repo = "birds-of-paradise-plus-theme.el"; @@ -4586,7 +4607,7 @@ sha256 = "1n5icy29ks5rxrxp7v4sf0523z7wxn0fh9lx4y6jb7ppdjnff12s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -4599,7 +4620,7 @@ bison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bison-mode"; - version = "20141119.343"; + version = "20141119.943"; src = fetchFromGitHub { owner = "Wilfred"; repo = "bison-mode"; @@ -4607,7 +4628,7 @@ sha256 = "0iccafawm9ah62f7qq1k77kjpafhcpjcaiqh5xjig1wxnpc43ck7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bison-mode"; sha256 = "097gimlzmyrsfnl76cbzyyi9dm0d2y3f9107672h56ncri35mh66"; name = "bison-mode"; }; @@ -4620,7 +4641,7 @@ bitbake = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode, s }: melpaBuild { pname = "bitbake"; - version = "20160104.354"; + version = "20160104.954"; src = fetchFromGitHub { owner = "canatella"; repo = "bitbake-el"; @@ -4628,7 +4649,7 @@ sha256 = "14dsjbw4ss3i6ydynm121v5j3idvy85sk1vqbr5r871d32179xan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitbake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitbake"; sha256 = "1k2n1i8g0jc78sp1icm64rlhi1q0vqar2a889nldp134a1l7bfah"; name = "bitbake"; }; @@ -4641,7 +4662,7 @@ bitlbee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bitlbee"; - version = "20151202.1900"; + version = "20151203.100"; src = fetchFromGitHub { owner = "pjones"; repo = "bitlbee-el"; @@ -4649,7 +4670,7 @@ sha256 = "0mccvpf8f87i7rqga3s4slrqz80rp3kyj071rrimhzpx8pnsrxx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitlbee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitlbee"; sha256 = "1lmbmlshr8b645qsb88rswmbbcbbawzl04xdjlygq4dnpkxc8w0f"; name = "bitlbee"; }; @@ -4662,7 +4683,7 @@ bitly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bitly"; - version = "20151125.1148"; + version = "20151125.1748"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "bitly-el"; @@ -4670,7 +4691,7 @@ sha256 = "09blh9cbcbqr3pdaiwm9fmh5kzqm1v9mffy623z3jn87g5wadrmb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bitly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bitly"; sha256 = "032s7ax8qp3qzcj1njbyyxiyadjirphswqdlr45zj6hzajfsr247"; name = "bitly"; }; @@ -4682,13 +4703,13 @@ }) {}; blank-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "blank-mode"; - version = "20130824.759"; + version = "20130824.1359"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/blank-mode.el"; sha256 = "1wdplnmdllbydwr9gyyq4fbkxl5xjh7220vd4iajyv74pg2jkkkv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blank-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blank-mode"; sha256 = "1pyx5xwflnni9my5aqpgf8xz4q4rvmj67pwb4zxx1lghrca97z87"; name = "blank-mode"; }; @@ -4701,7 +4722,7 @@ blgrep = callPackage ({ clmemo, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "blgrep"; - version = "20150401.1016"; + version = "20150401.1616"; src = fetchFromGitHub { owner = "ataka"; repo = "blgrep"; @@ -4709,7 +4730,7 @@ sha256 = "1pslwyaq18d1z7fay2ih3n27i6b49ss62drqqb095l1jxk42xxm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blgrep"; sha256 = "0w7453vh9c73hdfgr06693kwvhznn9xr1hqa65izlsx2fjhqc9gm"; name = "blgrep"; }; @@ -4722,7 +4743,7 @@ bliss-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bliss-theme"; - version = "20141116.201"; + version = "20141116.801"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-bliss-theme"; @@ -4730,7 +4751,7 @@ sha256 = "0dn0i3nxrqd82b9d17p1v0ddlpxnlfclkc8sqzrwq6cf19wcrmdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bliss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bliss-theme"; sha256 = "1kzvi6zymfgirr41l8r2kazfz1y4xkigbp5qa1fafcdmw81anmdh"; name = "bliss-theme"; }; @@ -4743,7 +4764,7 @@ blockdiag-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "blockdiag-mode"; - version = "20160427.124"; + version = "20160427.724"; src = fetchFromGitHub { owner = "xcezx"; repo = "blockdiag-mode"; @@ -4751,7 +4772,7 @@ sha256 = "111i897dnkbx4xq62jfkqq4li4gm16lxbgkgg2gn13zv0f0lzgvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blockdiag-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blockdiag-mode"; sha256 = "0v48w4slzx8baxrf10jrzcpqmcv9d3z2pz0xqn8czlzm2f6id3ya"; name = "blockdiag-mode"; }; @@ -4764,15 +4785,15 @@ blog-admin = callPackage ({ ctable, f, fetchFromGitHub, fetchurl, lib, melpaBuild, names, s }: melpaBuild { pname = "blog-admin"; - version = "20160521.1454"; + version = "20160531.850"; src = fetchFromGitHub { owner = "CodeFalling"; repo = "blog-admin"; - rev = "7ae75fff0b1fb424355aced594ac5d914373d72d"; - sha256 = "11hi1ymsqv64kg6hnhzn4s0f12gf4a1kivqds4glf3zds2992ipx"; + rev = "09e077da0ba1cbf2242b49e913bb1746c172eaaa"; + sha256 = "1ssjd2k7fkxk09f2cm56kjjlil9vrv28y2v80gd8xgylm17523bn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/blog-admin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/blog-admin"; sha256 = "03wnci5903c6jikkvlzc2vfma9h9qk673cc3wm756rx94jxinmyk"; name = "blog-admin"; }; @@ -4785,7 +4806,7 @@ bm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bm"; - version = "20151222.1903"; + version = "20151223.103"; src = fetchFromGitHub { owner = "joodland"; repo = "bm"; @@ -4793,7 +4814,7 @@ sha256 = "1ggqg0lgvxg2adq91damvh55m36qsa23n3z6zyf5z6855ilzaa4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bm"; sha256 = "07459r7m12j2nsb7qrb26bx32alylhaaq3z448n42lz02a8dc63g"; name = "bm"; }; @@ -4806,15 +4827,15 @@ bog = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bog"; - version = "20160517.2159"; + version = "20160523.747"; src = fetchFromGitHub { owner = "kyleam"; repo = "bog"; - rev = "ee403848c65c6141888344144958bc979596f5d4"; - sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7"; + rev = "11d6dce0d8e40ed90eceabbd4db9e4995a18ee45"; + sha256 = "0lj2xxyjkrvwh2hfqa086l39c419afsg2rxacbmk6rqvbi8cc4wl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -4827,7 +4848,7 @@ bongo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bongo"; - version = "20160313.1017"; + version = "20160313.1517"; src = fetchFromGitHub { owner = "dbrock"; repo = "bongo"; @@ -4835,7 +4856,7 @@ sha256 = "109r51flzhva8npch6ykqkcd2j5jpffhw6ziq3rmlqb7yc04wghb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -4848,7 +4869,7 @@ bonjourmadame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bonjourmadame"; - version = "20160112.456"; + version = "20160112.1056"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "bonjourmadame"; @@ -4856,7 +4877,7 @@ sha256 = "06cpbjbv8ysz81szwgglgy5r1aay8rrzw5k86wyqg9jdzwpmilpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bonjourmadame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bonjourmadame"; sha256 = "0d36yradh37359fjk59s54hxkbh4qcc17sblj2ylcdyw7181iwfn"; name = "bonjourmadame"; }; @@ -4869,7 +4890,7 @@ boogie-friends = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, yasnippet }: melpaBuild { pname = "boogie-friends"; - version = "20160423.1203"; + version = "20160423.1803"; src = fetchFromGitHub { owner = "boogie-org"; repo = "boogie-friends"; @@ -4877,7 +4898,7 @@ sha256 = "128xs1qznhbzicv0k7k80mwb68amjdgigm7qzqln5nfg8p1rwz50"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boogie-friends"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boogie-friends"; sha256 = "0cfs7gvjxsx2027dbzh4yypz500nmk503ikiiprbww8jyvc8grk7"; name = "boogie-friends"; }; @@ -4889,13 +4910,13 @@ }) {}; bookmark-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "bookmark-plus"; - version = "20160515.1257"; + version = "20160530.2300"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/bookmark+.el"; sha256 = "06621js3bvslfmzmkphzzcrd8hbixin2nx30ammcqaa6572y14ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bookmark+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bookmark+"; sha256 = "0121xx7dp2pakk9g7sg6par4mkxd9ky746yk4wh2wrhprc9dqzni"; name = "bookmark-plus"; }; @@ -4908,15 +4929,15 @@ boon = callPackage ({ emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "boon"; - version = "20160228.1735"; + version = "20160502.1506"; src = fetchFromGitHub { owner = "jyp"; repo = "boon"; - rev = "4eb0305c7130a3b36af69b5ec6a30162138d2180"; - sha256 = "0ab9wmm1i5ws77dfa6y21ds39gh28i2xw0xbqrf4mc147bsgfz4n"; + rev = "47e04abf608cc16f52ed87fa69f64a3f7ac62706"; + sha256 = "16mlhc00wd1vakzfwda4zhp5q9xvd34xyb9ibwy6fayd06brfaad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -4929,7 +4950,7 @@ borland-blue-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "borland-blue-theme"; - version = "20160117.821"; + version = "20160117.1421"; src = fetchFromGitHub { owner = "fourier"; repo = "borland-blue-theme"; @@ -4937,7 +4958,7 @@ sha256 = "0yzfxxv2bw4x320268bixfc7yf97851804bz3829vbdhnr4kp6y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/borland-blue-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/borland-blue-theme"; sha256 = "1sc8qngm40bwdym8k1dgbahg48i73c00zxd99kqqwm9fnd6nm7qx"; name = "borland-blue-theme"; }; @@ -4950,7 +4971,7 @@ boron-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "boron-theme"; - version = "20150117.1252"; + version = "20150117.1852"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-boron-theme"; @@ -4958,7 +4979,7 @@ sha256 = "1gys5ri56s2s525wdji3m72sxzswmb8cmhmw5iha84v7hlqkrahb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boron-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boron-theme"; sha256 = "1rrqlq08jnh9ihb99ji1vvmamj742assnm4a7xqz6gp7f248nb81"; name = "boron-theme"; }; @@ -4971,7 +4992,7 @@ boxquote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "boxquote"; - version = "20081011.1626"; + version = "20081011.2226"; src = fetchFromGitHub { owner = "davep"; repo = "boxquote.el"; @@ -4979,7 +5000,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -4992,7 +5013,7 @@ bpe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bpe"; - version = "20141228.1705"; + version = "20141228.2305"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "bpe"; @@ -5000,7 +5021,7 @@ sha256 = "0chmarbpqingdma54d6chbr6v6jg8lapbw56cpvcpbl04fz980r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bpe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bpe"; sha256 = "08zfqcgs7i2ram2qpy8vrzksx5722aahr66vdi4d9bcxm03s19fm"; name = "bpe"; }; @@ -5013,7 +5034,7 @@ bpr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bpr"; - version = "20160514.758"; + version = "20160514.1358"; src = fetchFromGitHub { owner = "ilya-babanov"; repo = "emacs-bpr"; @@ -5021,7 +5042,7 @@ sha256 = "10178l56ryfxsrxysy9qb6vg71q1xavfw1sbchh0mrb90x12vilz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bpr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bpr"; sha256 = "0rjxn40n4s4xdq51bq0w3455g9pli2pvcf1gnbr96zawbngrw6x2"; name = "bpr"; }; @@ -5034,7 +5055,7 @@ bracketed-paste = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bracketed-paste"; - version = "20160407.1948"; + version = "20160408.148"; src = fetchFromGitHub { owner = "hchbaw"; repo = "bracketed-paste.el"; @@ -5042,7 +5063,7 @@ sha256 = "1l6j2zs12psc15cfhqq6hm1bg012jr49zd2i36cmappbsiax1l8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bracketed-paste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bracketed-paste"; sha256 = "1v7zwi29as0218vy6ch21iqqcxfhyh373m3dbcdzm2pb8bpcg58j"; name = "bracketed-paste"; }; @@ -5055,7 +5076,7 @@ brainfuck-mode = callPackage ({ fetchFromGitHub, fetchurl, langdoc, lib, melpaBuild }: melpaBuild { pname = "brainfuck-mode"; - version = "20150113.342"; + version = "20150113.942"; src = fetchFromGitHub { owner = "tom-tan"; repo = "brainfuck-mode"; @@ -5063,7 +5084,7 @@ sha256 = "1nzgjgzidyrplfs4jl8nikd5wwvb4rmrnm51qxmw9y2if0hpq0jd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/brainfuck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/brainfuck-mode"; sha256 = "08jzx329mrr3c2pifs3hb4i79dsw606b0iviagaaja8s808m40cd"; name = "brainfuck-mode"; }; @@ -5076,7 +5097,7 @@ broadcast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "broadcast"; - version = "20151204.2112"; + version = "20151205.312"; src = fetchFromGitHub { owner = "killdash9"; repo = "broadcast.el"; @@ -5084,7 +5105,7 @@ sha256 = "0w6b9rxdciy1365kgf6fh3vgrjr8xd5ar6xcn0g4h56f2zg9hdmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/broadcast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/broadcast"; sha256 = "1h2c3mb49q3vlpalrsrx8q3rmy1zg0y45ayvzbvzdkfgs8idgbib"; name = "broadcast"; }; @@ -5097,7 +5118,7 @@ browse-at-remote = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "browse-at-remote"; - version = "20160413.2021"; + version = "20160414.221"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "browse-at-remote"; @@ -5105,7 +5126,7 @@ sha256 = "12m24n9yif9km4b2sw6am1bdfhxg05wdrq2jnp56jy1i7cgjrm1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-at-remote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-at-remote"; sha256 = "1d40b9j3pc6iy3l25062k7f52aq0vk9sizdwd7wii3v5nciczv6w"; name = "browse-at-remote"; }; @@ -5118,7 +5139,7 @@ browse-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "browse-kill-ring"; - version = "20160125.309"; + version = "20160125.909"; src = fetchFromGitHub { owner = "browse-kill-ring"; repo = "browse-kill-ring"; @@ -5126,7 +5147,7 @@ sha256 = "0sndzhza9k4vcf70fzxsyzrfryaz92lm1y7bbb0dx10m65qljpbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -5139,13 +5160,13 @@ browse-kill-ring-plus = callPackage ({ browse-kill-ring, fetchurl, lib, melpaBuild }: melpaBuild { pname = "browse-kill-ring-plus"; - version = "20151231.1521"; + version = "20151231.2121"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/browse-kill-ring+.el"; sha256 = "1z6pix1ml3s97jh34fwjj008ihlrz4hkipdh5yzcvc6nhrimjw2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring+"; sha256 = "1flw7vmqgsjjvr2zlgz2909gvpq9mhz8qkg6hvsrzwg95f4l548w"; name = "browse-kill-ring-plus"; }; @@ -5158,7 +5179,7 @@ browse-url-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "browse-url-dwim"; - version = "20140731.1522"; + version = "20140731.2122"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "browse-url-dwim"; @@ -5166,7 +5187,7 @@ sha256 = "1rcihwdxrzhgcz573rh1yp3770ihkwqjqvd39yhic1d3sgwxz2hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -5178,13 +5199,13 @@ }) {}; bs-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "bs-ext"; - version = "20130824.759"; + version = "20130824.1359"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/bs-ext.el"; sha256 = "1yslzlx54n17330sf6b2pynz01y6ifnkhipz4hggn1i55bz8hvrw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bs-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bs-ext"; sha256 = "0dddligqr71qdakgfkx0r45k9py85qlym7y5f204bxppyw5jmwb6"; name = "bs-ext"; }; @@ -5197,7 +5218,7 @@ btc-ticker = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "btc-ticker"; - version = "20151113.959"; + version = "20151113.1559"; src = fetchFromGitHub { owner = "niedbalski"; repo = "emacs-btc-ticker"; @@ -5205,7 +5226,7 @@ sha256 = "022j0gw5qkxjz8f70vqjxysifv2mz6cigf9n5z03zmpvwwvxmx2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/btc-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/btc-ticker"; sha256 = "1vfnx114bvnly1k3fmcpkqq4m9558wqr5c9k9yj8f046dgfh8dp1"; name = "btc-ticker"; }; @@ -5218,7 +5239,7 @@ bts = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, pos-tip, s, widget-mvc, yaxception }: melpaBuild { pname = "bts"; - version = "20151109.833"; + version = "20151109.1433"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-bts"; @@ -5226,7 +5247,7 @@ sha256 = "1qgasaqhqm0birjmb6k6isd2f5pn58hva8db8qfhva9g5kg1f38w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bts"; sha256 = "1i1lbjracrgdxr52agxhxxgkra4w291dmz85s195lcx38rva7ib3"; name = "bts"; }; @@ -5239,7 +5260,7 @@ bts-github = callPackage ({ bts, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }: melpaBuild { pname = "bts-github"; - version = "20150108.327"; + version = "20150108.927"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-bts-github"; @@ -5247,7 +5268,7 @@ sha256 = "1sfr3j11jz4k9jnfa9i05bp4v5vkil38iyrgsp3kxf15797b9dg9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bts-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bts-github"; sha256 = "03lz12bbkjqbs82alc97k6s1pmk721qip3h9cifq8a5ww5cbq9ln"; name = "bts-github"; }; @@ -5260,7 +5281,7 @@ bubbleberry-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bubbleberry-theme"; - version = "20141017.544"; + version = "20141017.1144"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-bubbleberry-theme"; @@ -5268,7 +5289,7 @@ sha256 = "1aha8rzilv4k300rr4l9qjfygydfwllkbw17lhm8jz0kh9w6bd28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bubbleberry-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bubbleberry-theme"; sha256 = "056pcr9ynsl34wqa2pw6sh4bdl5kpp1r0pl1vvw15p4866l9bdz3"; name = "bubbleberry-theme"; }; @@ -5281,7 +5302,7 @@ buffer-buttons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-buttons"; - version = "20150106.939"; + version = "20150106.1539"; src = fetchFromGitHub { owner = "rpav"; repo = "buffer-buttons"; @@ -5289,7 +5310,7 @@ sha256 = "1p5a29bpjqr1gs6sb6rr7y0j06nlva23wxkwfskap25zvjpgwbvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-buttons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-buttons"; sha256 = "1p0ydbrff9197sann3s0d7hpav7r9g461w4llncafmy31w7m1dn6"; name = "buffer-buttons"; }; @@ -5302,7 +5323,7 @@ buffer-flip = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "buffer-flip"; - version = "20160109.2154"; + version = "20160110.354"; src = fetchFromGitHub { owner = "killdash9"; repo = "buffer-flip.el"; @@ -5310,7 +5331,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -5323,7 +5344,7 @@ buffer-move = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-move"; - version = "20160108.1008"; + version = "20160108.1608"; src = fetchFromGitHub { owner = "lukhas"; repo = "buffer-move"; @@ -5331,7 +5352,7 @@ sha256 = "1yzga2zs9flbarsh704hh7k4l3w09g4li9a7r3fsvl4kll80x393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -5343,13 +5364,13 @@ }) {}; buffer-stack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-stack"; - version = "20101223.520"; + version = "20101223.1120"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/buffer-stack.el"; sha256 = "0d87cl7a4rcd6plbjyf26vaar7imwd18z24xdi4dz734m9zbkg6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-stack"; sha256 = "00vxfd4ki5pqf9n9vbmn1441vn2y14bdr1v05h46hswf13b4hzrn"; name = "buffer-stack"; }; @@ -5362,7 +5383,7 @@ buffer-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buffer-utils"; - version = "20140512.1000"; + version = "20140512.1600"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "buffer-utils"; @@ -5370,7 +5391,7 @@ sha256 = "1mnf0dgr6g58k0jyia7985jsinrla04vm5sjl2iajwphbhadjk8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -5383,7 +5404,7 @@ bufshow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bufshow"; - version = "20130711.1339"; + version = "20130711.1939"; src = fetchFromGitHub { owner = "pjones"; repo = "bufshow"; @@ -5391,7 +5412,7 @@ sha256 = "1plh77xzpbhgmjdagm5rhqx6nkhc0g39ir0b6s5yh003wmx6r1hh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -5404,7 +5425,7 @@ bug-reference-github = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bug-reference-github"; - version = "20131202.1603"; + version = "20131202.2203"; src = fetchFromGitHub { owner = "arnested"; repo = "bug-reference-github"; @@ -5412,7 +5433,7 @@ sha256 = "0zr1raf0q5wi3vr66kglxcfxswlm8g2l501adm8c27clvqizpnrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -5425,7 +5446,7 @@ bundler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "bundler"; - version = "20160121.624"; + version = "20160121.1224"; src = fetchFromGitHub { owner = "tobiassvn"; repo = "bundler.el"; @@ -5433,7 +5454,7 @@ sha256 = "0gr4v6fmg0im17f6i3pw6h8l401n5l5lzxz0hgi8lrisvx73iqa5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -5446,7 +5467,7 @@ bury-successful-compilation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "bury-successful-compilation"; - version = "20150328.2028"; + version = "20150329.128"; src = fetchFromGitHub { owner = "EricCrosson"; repo = "bury-successful-compilation"; @@ -5454,7 +5475,7 @@ sha256 = "0mirb3yvs4aq6n53lx690k06zllyzr29ms0888v5svjirxjazvh8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -5467,7 +5488,7 @@ buster-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buster-mode"; - version = "20140928.813"; + version = "20140928.1413"; src = fetchFromGitHub { owner = "magnars"; repo = "buster-mode"; @@ -5475,7 +5496,7 @@ sha256 = "1viq7cb41r8klr8i38c5zjrhdnww31gh4j51xdgy4v2lc3z321zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buster-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buster-mode"; sha256 = "1qndhchc8y27x49znhnc4rny1ynfcplr64rczrlbj53qmkxn5am7"; name = "buster-mode"; }; @@ -5488,7 +5509,7 @@ buster-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "buster-snippets"; - version = "20151125.510"; + version = "20151125.1110"; src = fetchFromGitHub { owner = "magnars"; repo = "buster-snippets.el"; @@ -5496,7 +5517,7 @@ sha256 = "11djqlw4qf3qs2rwiz7dn5q2zw5i8sykwdf4hg4awsgv8g0bbxn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buster-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buster-snippets"; sha256 = "0k36c2k7wwix10rgmjxipc77fkn9jahjyvl191af6w41wla47x4x"; name = "buster-snippets"; }; @@ -5509,7 +5530,7 @@ busybee-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "busybee-theme"; - version = "20130920.1242"; + version = "20130920.1842"; src = fetchFromGitHub { owner = "mswift42"; repo = "busybee-theme"; @@ -5517,7 +5538,7 @@ sha256 = "11z987frzswnsym8g3l0s9wwdly1zn5inl2l558m6kcvfy7g59cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/busybee-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/busybee-theme"; sha256 = "0w0z5x2fbnalv404av3mapfkqbfgyk81a1mzvngll8x0pirbyi10"; name = "busybee-theme"; }; @@ -5530,7 +5551,7 @@ butler = callPackage ({ deferred, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "butler"; - version = "20150811.2008"; + version = "20150812.208"; src = fetchFromGitHub { owner = "AshtonKem"; repo = "Butler"; @@ -5538,7 +5559,7 @@ sha256 = "0pp604r2gzzdpfajw920607pklwflk842difdyl4hy9w87fgc0jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -5551,7 +5572,7 @@ buttercup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "buttercup"; - version = "20160514.334"; + version = "20160514.934"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "emacs-buttercup"; @@ -5559,7 +5580,7 @@ sha256 = "16r3qfva20blfxh54l4p85m2x4fq7hwj71rlblp5ipicna7zs4dn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -5572,7 +5593,7 @@ button-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "button-lock"; - version = "20150223.854"; + version = "20150223.1454"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "button-lock"; @@ -5580,7 +5601,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -5593,7 +5614,7 @@ c-c-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c-c-combo"; - version = "20151223.2155"; + version = "20151224.355"; src = fetchFromGitHub { owner = "CestDiego"; repo = "c-c-combo.el"; @@ -5601,7 +5622,7 @@ sha256 = "040mcq2cwzbrf96f9mghb4314cd8xwp7ki2ix9fxpmbwiy323ld5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c-c-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c-c-combo"; sha256 = "09rvh6n2hqls7qki5dc34s2hmcmlvdsbgzcxgglhcmrhwx5w4vxn"; name = "c-c-combo"; }; @@ -5614,7 +5635,7 @@ c-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c-eldoc"; - version = "20150904.432"; + version = "20150904.1032"; src = fetchFromGitHub { owner = "nflath"; repo = "c-eldoc"; @@ -5622,7 +5643,7 @@ sha256 = "0mlm5f66541namqn04vx6csf14mxhsiknbm36yqdnp1lxb7knv7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c-eldoc"; sha256 = "13grkww14w39y2x6mrbfa9nzljsnl5l7il8dnj6sjdyv0hz9x8vm"; name = "c-eldoc"; }; @@ -5635,7 +5656,7 @@ c0-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "c0-mode"; - version = "20151110.1352"; + version = "20151110.1952"; src = fetchFromGitHub { owner = "catern"; repo = "c0-mode"; @@ -5643,7 +5664,7 @@ sha256 = "10k90r4ckkkdjn9pqcbfyp6ynvrd5k0ngqcn5d0v1qvkn6jifxjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/c0-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/c0-mode"; sha256 = "0s3h4b3lpz4jsk222yyfdxh780dvykhaqgyv6r3ambz95vrmmpl4"; name = "c0-mode"; }; @@ -5656,7 +5677,7 @@ cabledolphin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "cabledolphin"; - version = "20160204.438"; + version = "20160204.1038"; src = fetchFromGitHub { owner = "legoscia"; repo = "cabledolphin"; @@ -5664,7 +5685,7 @@ sha256 = "1h395hvia7r76zlgr10qdr9q2159qyrs89znhkp2czikwm8kjiqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cabledolphin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cabledolphin"; sha256 = "04slrx0vkcm66q59158limn0cpxn18ghlqyx7z8nrn7frrc03z03"; name = "cabledolphin"; }; @@ -5677,7 +5698,7 @@ cache = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cache"; - version = "20111019.1900"; + version = "20111020.100"; src = fetchFromGitHub { owner = "nflath"; repo = "cache"; @@ -5685,7 +5706,7 @@ sha256 = "1hp6dk84vvgkmj5lzghvqlpq3axwzgx9c7gly2yx6497fgf9jlby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cache"; sha256 = "0lzj0h23g6alqcmd20ack53p72g9i09dp9x0bp3rdw5izcfkvhh3"; name = "cache"; }; @@ -5698,7 +5719,7 @@ cacoo = callPackage ({ concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cacoo"; - version = "20120319.1959"; + version = "20120320.59"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-cacoo"; @@ -5706,7 +5727,7 @@ sha256 = "07kzhyqr8ycjvkknijqhsfr26zd5jc8wxm9sl8bp6pzn4jbs1dmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -5719,7 +5740,7 @@ cake = callPackage ({ anything, cake-inflector, fetchFromGitHub, fetchurl, historyf, lib, melpaBuild }: melpaBuild { pname = "cake"; - version = "20140604.31"; + version = "20140604.631"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake"; @@ -5727,7 +5748,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -5740,7 +5761,7 @@ cake-inflector = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "cake-inflector"; - version = "20140415.458"; + version = "20140415.1058"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake-inflector"; @@ -5748,7 +5769,7 @@ sha256 = "0xq10jkbk3crdhbh4lab39xhfw6vvcqz3if5q3yy4gzhx7zp94i4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -5761,7 +5782,7 @@ cake2 = callPackage ({ anything, cake-inflector, dash, f, fetchFromGitHub, fetchurl, historyf, ht, json ? null, lib, melpaBuild, s }: melpaBuild { pname = "cake2"; - version = "20140626.842"; + version = "20140626.1442"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-cake2"; @@ -5769,7 +5790,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -5782,7 +5803,7 @@ cal-china-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cal-china-x"; - version = "20160102.424"; + version = "20160102.1024"; src = fetchFromGitHub { owner = "xwl"; repo = "cal-china-x"; @@ -5790,7 +5811,7 @@ sha256 = "03hi0ggq81nm1kd0mcf8fwnya4axzd80vfdjdbhgpxbkvnxldzpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cal-china-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cal-china-x"; sha256 = "06mh2p14m2axci8vy1hr7jpy53jj215z0djyn8h7zpr0k62ajhka"; name = "cal-china-x"; }; @@ -5803,7 +5824,7 @@ calfw = callPackage ({ fetchFromGitHub, fetchurl, google-maps, lib, melpaBuild }: melpaBuild { pname = "calfw"; - version = "20160302.2158"; + version = "20160303.358"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-calfw"; @@ -5811,7 +5832,7 @@ sha256 = "0rhasr818qijd2pcgifi0j3q4fkbiw2ck1nivajk7m810p53bxbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -5824,7 +5845,7 @@ calfw-gcal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "calfw-gcal"; - version = "20120111.500"; + version = "20120111.1100"; src = fetchFromGitHub { owner = "myuhe"; repo = "calfw-gcal.el"; @@ -5832,7 +5853,7 @@ sha256 = "14n5rci4bkbl7037xvkd69gfxnjlgvd2j1xzciqcgz92f06ir3xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw-gcal"; sha256 = "182p56wiycrm2cjzmlqabksyshpk7nga68jf80vjjmaavp5xqsq8"; name = "calfw-gcal"; }; @@ -5845,7 +5866,7 @@ calmer-forest-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "calmer-forest-theme"; - version = "20130926.110"; + version = "20130926.710"; src = fetchFromGitHub { owner = "caldwell"; repo = "calmer-forest-theme"; @@ -5853,7 +5874,7 @@ sha256 = "0n6y4z3qg04qnlsrjysf8ldxl2f2bk7n8crijydwabyy672qxd9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calmer-forest-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calmer-forest-theme"; sha256 = "0riz5n8fzvxdnzgg650xqc2zwc4xvhwjlrrzls5h0pl5adaxz96p"; name = "calmer-forest-theme"; }; @@ -5866,7 +5887,7 @@ camcorder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "camcorder"; - version = "20160405.34"; + version = "20160405.634"; src = fetchFromGitHub { owner = "Malabarba"; repo = "camcorder.el"; @@ -5874,7 +5895,7 @@ sha256 = "0am8asrzjs3iwak9c86fxb4zwgx5smbb9ywp0zn4y7j37blygswj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -5906,7 +5927,7 @@ capture = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "capture"; - version = "20130828.1244"; + version = "20130828.1844"; src = fetchFromGitHub { owner = "pashinin"; repo = "capture.el"; @@ -5914,7 +5935,7 @@ sha256 = "08cp45snhyir5w8gyp6xws1q7c54pz06q099l0m3zmwn9277g68z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/capture"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/capture"; sha256 = "1hxrvyq8my5886q7wj5w3mhyja7d6cf19gyclap492ci7kmrkdk2"; name = "capture"; }; @@ -5927,15 +5948,15 @@ cargo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode }: melpaBuild { pname = "cargo"; - version = "20160521.1022"; + version = "20160525.1419"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "cargo.el"; - rev = "9c6b85b86c1f2f99f3c3463f6db9d903ef36d9a4"; - sha256 = "1zvjrd0yqaczri9bwxfa0k0791hvs9qmw2vkjps10wy2njh9s29k"; + rev = "6aa0c45ef75a0b23c5a29acd8a50cdbcb8745eef"; + sha256 = "030glbfdybjnkpraa37x6i34hpm1pjqssxf2dgwbp0l0phvfbv5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -5948,7 +5969,7 @@ caroline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "caroline-theme"; - version = "20160318.120"; + version = "20160318.620"; src = fetchFromGitHub { owner = "xjackk"; repo = "caroline-theme"; @@ -5956,7 +5977,7 @@ sha256 = "055w1spba0q9rqqg4rjds0iakr9d8xg66959xahxq8268mq5446n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caroline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caroline-theme"; sha256 = "07flxggnf0lb1fnvprac1daplgx4bi5fnnkgfc58wnw805s12k32"; name = "caroline-theme"; }; @@ -5969,7 +5990,7 @@ caseformat = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "caseformat"; - version = "20160115.1115"; + version = "20160115.1715"; src = fetchFromGitHub { owner = "HKey"; repo = "caseformat"; @@ -5977,7 +5998,7 @@ sha256 = "1cp9i69npvyn72fqv0w8q1hlkcawkhbah4jblc341ycxwxb48mkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -5990,15 +6011,15 @@ cask = callPackage ({ cl-lib ? null, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build, s, shut-up }: melpaBuild { pname = "cask"; - version = "20151123.828"; + version = "20151123.1428"; src = fetchFromGitHub { owner = "cask"; repo = "cask"; - rev = "c223b4ab0a7af633e332b9cf3ec5bc7980205f25"; - sha256 = "17z5nbl7i6fiy74p98wv057ri8g9pmqmzivb0iq7k471qxbk9xqh"; + rev = "f9e804ea96d14e24ae49eeb72d95d44e358b38f2"; + sha256 = "1xhnh9zjlsycwx4fa83pn70zvrv538a7lmlgmq9vmn8i6jrwj63g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -6011,7 +6032,7 @@ cask-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cask-mode"; - version = "20160410.1049"; + version = "20160410.1649"; src = fetchFromGitHub { owner = "Wilfred"; repo = "cask-mode"; @@ -6019,7 +6040,7 @@ sha256 = "0gywc2mzdzq3ny0jjffa3151vi7zb9i8ddy5d63x4yhicf5sxlh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-mode"; sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; name = "cask-mode"; }; @@ -6032,7 +6053,7 @@ cask-package-toolset = callPackage ({ ansi, cl-lib ? null, commander, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }: melpaBuild { pname = "cask-package-toolset"; - version = "20160102.437"; + version = "20160102.1037"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "cask-package-toolset.el"; @@ -6040,7 +6061,7 @@ sha256 = "1m40s9q00l06fz525m3zrvwd6s60lggdqls5k5njkn671aa3h71s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -6053,7 +6074,7 @@ caskxy = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "caskxy"; - version = "20140513.1139"; + version = "20140513.1739"; src = fetchFromGitHub { owner = "aki2o"; repo = "caskxy"; @@ -6061,7 +6082,7 @@ sha256 = "15sq5vrkhb7c5j6ny6wy4bkyl5pggch4l7zw46an29rzni3pffr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -6074,7 +6095,7 @@ cbm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cbm"; - version = "20160131.1206"; + version = "20160131.1806"; src = fetchFromGitHub { owner = "akermu"; repo = "cbm.el"; @@ -6082,7 +6103,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -6095,7 +6116,7 @@ ccc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ccc"; - version = "20151205.843"; + version = "20151205.1443"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -6103,7 +6124,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ccc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ccc"; sha256 = "0fckhmz4svcg059v4acbn13yf3ijs09fxmq1axc1b9bm3xxig2cq"; name = "ccc"; }; @@ -6116,7 +6137,7 @@ cd-compile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cd-compile"; - version = "20141108.1457"; + version = "20141108.2057"; src = fetchFromGitHub { owner = "jamienicol"; repo = "emacs-cd-compile"; @@ -6124,7 +6145,7 @@ sha256 = "1a93cim1w96aaj81clhjv25r7v9bwqm9a818mn8lk4aj1bmhgc4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cd-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cd-compile"; sha256 = "1a24rv1jbb883vwhjkw6qxv3h3qy039iqkhkx3jkq1ydidr9f0hv"; name = "cd-compile"; }; @@ -6137,7 +6158,7 @@ cdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cdb"; - version = "20151205.843"; + version = "20151205.1443"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -6145,7 +6166,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdb"; sha256 = "1gx34062h25gqsl3j1fjlklha19snvmfaw068q6bv6x9r92niqnf"; name = "cdb"; }; @@ -6158,7 +6179,7 @@ cdlatex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cdlatex"; - version = "20140707.726"; + version = "20140707.1326"; src = fetchFromGitHub { owner = "cdominik"; repo = "cdlatex"; @@ -6166,7 +6187,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -6179,7 +6200,7 @@ cdnjs = callPackage ({ cl-lib ? null, dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "cdnjs"; - version = "20140217.1612"; + version = "20140217.2212"; src = fetchFromGitHub { owner = "yasuyk"; repo = "cdnjs.el"; @@ -6187,7 +6208,7 @@ sha256 = "0aspci0zg8waa3l234l0f8fjfzm67z2gydfdwwpxksz49sm2s1jk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdnjs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdnjs"; sha256 = "1clm86n643z1prxrlxlg59jg43l9wwm34x5d88bj6yvix8g6wkb7"; name = "cdnjs"; }; @@ -6200,7 +6221,7 @@ cedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cedit"; - version = "20141231.1114"; + version = "20141231.1714"; src = fetchFromGitHub { owner = "zk-phi"; repo = "cedit"; @@ -6208,7 +6229,7 @@ sha256 = "1f8gdj3p54q3410c66716y3l7i7nnkmq6hqz0dg1a1sc6jwdij3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cedit"; sha256 = "169sy7a1bgczwfxkkzjiggb7vdjxhrx7i3a39g6zv9f1zs6byk6m"; name = "cedit"; }; @@ -6221,7 +6242,7 @@ celery = callPackage ({ dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "celery"; - version = "20150812.447"; + version = "20150812.1047"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-celery"; @@ -6229,7 +6250,7 @@ sha256 = "0974bxy85rcxia6dkfryas2g46nanjdf8fv90adbc7kyj07xsf7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -6242,13 +6263,13 @@ centered-cursor-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "centered-cursor-mode"; - version = "20151001.934"; + version = "20151001.1534"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/centered-cursor-mode.el"; sha256 = "15psyizjz8wf9wfxwwcdmg1bxf8jbv0qy40rskz7si7vxin8hhxl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centered-cursor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centered-cursor-mode"; sha256 = "0a5mymnkwjvpra8iffxjwa5fq3kq4vc8fw7pr7gmrwq8ml7il5zl"; name = "centered-cursor-mode"; }; @@ -6261,7 +6282,7 @@ centered-window-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "centered-window-mode"; - version = "20160210.547"; + version = "20160210.1147"; src = fetchFromGitHub { owner = "anler"; repo = "centered-window-mode"; @@ -6269,7 +6290,7 @@ sha256 = "1i5ipll7jlrxqb0kcwq0rlrpfaxsyp663bwjdnhj84c50wlv052f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centered-window-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centered-window-mode"; sha256 = "08pmk3rqgbk5fzhxx1kd8rp2k5r5vd2jc9k2phrqg75pf89h3zf4"; name = "centered-window-mode"; }; @@ -6282,7 +6303,7 @@ centimacro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "centimacro"; - version = "20140306.927"; + version = "20140306.1527"; src = fetchFromGitHub { owner = "abo-abo"; repo = "centimacro"; @@ -6290,7 +6311,7 @@ sha256 = "0zqrpaq9c3lm12jxnvysh8f3m3193k22zaj0ycscdqd1jpq4wcgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/centimacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/centimacro"; sha256 = "1qbyfi6s4hdp5sv394w3sib8g2kx06i06q8gh6hdv5pis5kq9fx6"; name = "centimacro"; }; @@ -6303,7 +6324,7 @@ cerbere = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "cerbere"; - version = "20140418.1015"; + version = "20140418.1615"; src = fetchFromGitHub { owner = "nlamirault"; repo = "cerbere"; @@ -6311,7 +6332,7 @@ sha256 = "17jg5d5afh9zpnjx8wkys8bjllxq99j0yhz8j3fvkskisvhkz1im"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -6324,15 +6345,15 @@ cfengine-code-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cfengine-code-style"; - version = "20131209.711"; + version = "20131209.1311"; src = fetchFromGitHub { owner = "cfengine"; repo = "core"; - rev = "f845384263cb143c211b8a48bb7351418d353f2a"; - sha256 = "1z0civ5vg72ns8333i3f1vf1wq6lvclgrf89kzj33nqyr04i61fz"; + rev = "613159b4a6fe10c400f33f5b887c508216570f12"; + sha256 = "1iphq7kysksf2bldy22q3vdr1z4jqj22maba0i00r725y2wpswzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -6345,7 +6366,7 @@ cff = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cff"; - version = "20160118.1518"; + version = "20160118.2118"; src = fetchFromGitHub { owner = "fourier"; repo = "cff"; @@ -6353,7 +6374,7 @@ sha256 = "019vqjmq6hb2f5lddqy0ya5q0fd47xix29cashlchz0r034rc32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cff"; sha256 = "04b2ck1jkhsrka6dbyn6rpsmmc2bn13kpyhzibd781hj73d93jgc"; name = "cff"; }; @@ -6365,14 +6386,14 @@ }) {}; cg = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cg"; - version = "20160414.1009"; + version = "20160414.1609"; src = fetchsvn { url = "http://beta.visl.sdu.dk/svn/visl/tools/vislcg3/trunk/emacs"; - rev = "11602"; + rev = "11624"; sha256 = "1ninfjra12s9agrzb115wrcphkb38flacnjgw1czw6sdqjjxcnp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cg"; sha256 = "0ra6mxf8l9fjn1vszjj71fs6f6l08hwypka8zsb3si96fzb6sgjh"; name = "cg"; }; @@ -6385,7 +6406,7 @@ change-inner = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "change-inner"; - version = "20150707.1144"; + version = "20150707.1744"; src = fetchFromGitHub { owner = "magnars"; repo = "change-inner.el"; @@ -6393,7 +6414,7 @@ sha256 = "1m9sq93bwajbld3lnlzkjbsby5zlm9sxjzqynryyvsb9zr1d0a9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/change-inner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/change-inner"; sha256 = "0r693056wykg4bs7inbfzfniyawmb91igk6kjjpq3njk0v84y1sj"; name = "change-inner"; }; @@ -6406,7 +6427,7 @@ chapel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chapel-mode"; - version = "20160504.408"; + version = "20160504.1008"; src = fetchFromGitHub { owner = "russel"; repo = "Emacs-Chapel-Mode"; @@ -6414,7 +6435,7 @@ sha256 = "0r3yja2ak3z62lav2s8vimmjyi4rd5s82fbs8r6p2k0shm6lj7hz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chapel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chapel-mode"; sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; name = "chapel-mode"; }; @@ -6427,15 +6448,15 @@ char-menu = callPackage ({ avy-menu, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "char-menu"; - version = "20160204.115"; + version = "20160204.715"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "char-menu"; - rev = "e1b43238db53b5cb509175a8a9a5a5e3382f7bdc"; - sha256 = "0jq5xicf0y7z1v68cgsg9vniw6pa793izz350a4wgdq8f5fcm24f"; + rev = "b19b1abed6bcf582e0f21c401bc5ae86fd9d7524"; + sha256 = "0jdjf8mg0as90hb01kgwgcbng4cqaq4h9gd2v5pfl250c1mdq13g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -6448,13 +6469,13 @@ character-fold-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "character-fold-plus"; - version = "20160227.1803"; + version = "20160228.3"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/character-fold+.el"; sha256 = "0xvgxjyl6s6hds7m9brzly6vxj06m47hxkw5h2riscq6l4nwc9vz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/character-fold+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/character-fold+"; sha256 = "01ibdwd7vap9m64w0bhyknxa3iank3wfss49gsgg4xbbxibyrjh3"; name = "character-fold-plus"; }; @@ -6467,7 +6488,7 @@ charmap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "charmap"; - version = "20160309.446"; + version = "20160309.1046"; src = fetchFromGitHub { owner = "lateau"; repo = "charmap"; @@ -6475,7 +6496,7 @@ sha256 = "05k19q7iihvhi0gflmkpsg5q3ydkdlvf0xh7kjk4lx9yvi0am7m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -6488,7 +6509,7 @@ chatwork = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chatwork"; - version = "20150807.2248"; + version = "20150808.448"; src = fetchFromGitHub { owner = "ataka"; repo = "chatwork"; @@ -6496,7 +6517,7 @@ sha256 = "1r2s3fszblk5wa6v3hnbzsri550gi5qsmp2w1spvmf1726n900cb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chatwork"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chatwork"; sha256 = "0p71swcpfqbx2zmp5nh57f0m30cn68g3019005wa5x4fg7dx746p"; name = "chatwork"; }; @@ -6509,7 +6530,7 @@ cheatsheet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cheatsheet"; - version = "20151203.451"; + version = "20151203.1051"; src = fetchFromGitHub { owner = "darksmile"; repo = "cheatsheet"; @@ -6517,7 +6538,7 @@ sha256 = "15kam5hf2f4nwp29nvxqm5bs8nyhqf5m44fdb21qljgbmjdlh38y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cheatsheet"; sha256 = "11z3svlzvmhdy0pkxbx9qz9bnq056cgkbfyw9z34aq1yxazi2cpq"; name = "cheatsheet"; }; @@ -6530,7 +6551,7 @@ checkbox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "checkbox"; - version = "20141116.1958"; + version = "20141117.158"; src = fetchFromGitHub { owner = "camdez"; repo = "checkbox.el"; @@ -6538,7 +6559,7 @@ sha256 = "0660ix17ksxy5a5v8yqy7adr9d4bs6p1mnkc6lpyw96k4pn62h45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -6551,15 +6572,15 @@ chee = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "chee"; - version = "20160510.1741"; + version = "20160531.2236"; src = fetchFromGitHub { owner = "eikek"; repo = "chee"; - rev = "00f00e85c512d51514e534b02a1d447b6f764bc7"; - sha256 = "12m98afxlm14vvm8dksr7hai44l5nb970ny4dicwdbzp0xl4wway"; + rev = "625868451e1cd6cc8cad6bda20c879e59b714542"; + sha256 = "080zh5qz6smw6ynmigi559b9na3ln3bvbn3q7596wmzranpqwbkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chee"; sha256 = "1njldlp9bnwq7izmdlz5a97kfgxxnycv43djrvx4b01j4v2yz4zv"; name = "chee"; }; @@ -6572,7 +6593,7 @@ cheerilee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xelb }: melpaBuild { pname = "cheerilee"; - version = "20160313.1435"; + version = "20160313.1935"; src = fetchFromGitHub { owner = "Vannil"; repo = "cheerilee.el"; @@ -6580,7 +6601,7 @@ sha256 = "1jdlp5cnsiza55vx4kxacqgk7yqg9fvd9swhwdxkczadb2d5l9p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cheerilee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cheerilee"; sha256 = "15igjlnq35cg9nslyqa63i1inqipx3y8g7zg4r26m69k25simqrv"; name = "cheerilee"; }; @@ -6593,7 +6614,7 @@ chef-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chef-mode"; - version = "20111121.1000"; + version = "20111121.1600"; src = fetchFromGitHub { owner = "mpasternacki"; repo = "chef-mode"; @@ -6601,7 +6622,7 @@ sha256 = "1mnskri5r1lyzzcag60x7amn00613jyl7by7hd4sqm2a7zd4r5aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chef-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chef-mode"; sha256 = "1pz82s82d4z3vkm8mpmwdxb9pd11kq09g23mg461lzqxjjw734rr"; name = "chef-mode"; }; @@ -6614,7 +6635,7 @@ cherry-blossom-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cherry-blossom-theme"; - version = "20150621.2342"; + version = "20150622.542"; src = fetchFromGitHub { owner = "inlinestyle"; repo = "emacs-cherry-blossom-theme"; @@ -6622,7 +6643,7 @@ sha256 = "0m97xr6lddy2jdmd4bl4kbp2568p4n110yfa9k7fqc20ihq8jkyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cherry-blossom-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cherry-blossom-theme"; sha256 = "1i3kafj3m7iij5mr0vhg45zdnkl9pg9ndrq0b0i3k3mw7d5siq7w"; name = "cherry-blossom-theme"; }; @@ -6635,7 +6656,7 @@ chicken-scheme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chicken-scheme"; - version = "20141116.1439"; + version = "20141116.2039"; src = fetchFromGitHub { owner = "dleslie"; repo = "chicken-scheme.el"; @@ -6643,7 +6664,7 @@ sha256 = "0j61lvr99viaharg4553whcppp7lxhimkk5lps0izz9mnd8y2wm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chicken-scheme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chicken-scheme"; sha256 = "0ns49p7nsifpi7wrzr02ljrr0p6hxanrg54zaixakvjkxwcgfabr"; name = "chicken-scheme"; }; @@ -6656,7 +6677,7 @@ chinese-conv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-conv"; - version = "20160218.1615"; + version = "20160218.2215"; src = fetchFromGitHub { owner = "gucong"; repo = "emacs-chinese-conv"; @@ -6664,7 +6685,7 @@ sha256 = "1vfyb8gfrvfrvaaw0p7c6xji2kz6cqm6km2cmjixw0qjikxxlkv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-conv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-conv"; sha256 = "1lqpq7pg0nqqqj29f8is6c724vl75wscmm1v08j480pfks3l8cnr"; name = "chinese-conv"; }; @@ -6677,15 +6698,15 @@ chinese-fonts-setup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-fonts-setup"; - version = "20160420.59"; + version = "20160602.806"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-fonts-setup"; - rev = "eeb0bb29539f7f65f886a7aefafb75acd4492f33"; - sha256 = "0j0a1aqpayyxlay0mfj5gv1h27pqa3lj4z4x790y5lkgnlmwzsc0"; + rev = "9926412a91be504e95abba5e9bdcf9f0f901f6b6"; + sha256 = "0hsyjlfvpj7hv08fwq41gp636sng3k5fi6gmxwi3wzxqxfhq7h4y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-fonts-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-fonts-setup"; sha256 = "141ri6a6mnxf7fn17gw48kxk8pvl3khdxkb4pw8brxwrr9rx0xd5"; name = "chinese-fonts-setup"; }; @@ -6698,15 +6719,15 @@ chinese-pyim = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "chinese-pyim"; - version = "20160520.1933"; + version = "20160603.16"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-pyim"; - rev = "62acd9f66662516b93870894758cc1cc4f3156a9"; - sha256 = "1k3riw9hcrl7x3k8j4plsalwgxchjcvdnaik0zsr6ys4cf57zrh3"; + rev = "092a8d4a07209114d2ba85f708fd0460797f6938"; + sha256 = "12p3yg3j60r745k8mh79f1ncaqmfwq59gkwagkvgkck3snb6x9xh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-pyim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-pyim"; sha256 = "0zdx5zhgj1ly89pl48vigjzd8g74fxnxcd9bxrqykcn7y5qvim8l"; name = "chinese-pyim"; }; @@ -6719,7 +6740,7 @@ chinese-remote-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-remote-input"; - version = "20150111.3"; + version = "20150111.603"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-remote-input"; @@ -6727,7 +6748,7 @@ sha256 = "06k13wk659qw40aczq3i9gj0nyz6vb9z1nwsz7c1bgjbl2lh6hcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-remote-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-remote-input"; sha256 = "0nnccm6w9i0qsgiif22hi1asr0xqdivk8fgg76mp26a2fv8d3dag"; name = "chinese-remote-input"; }; @@ -6740,7 +6761,7 @@ chinese-wbim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-wbim"; - version = "20150623.2350"; + version = "20150624.550"; src = fetchFromGitHub { owner = "zilongshanren"; repo = "chinese-wbim"; @@ -6748,7 +6769,7 @@ sha256 = "0cx1g6drkr8gyqqdxjf7j4wprxcbq30gam2racgnvdicgij0apwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-wbim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-wbim"; sha256 = "1pax3kpmvg170mpvfrjbpj9czq0xykmfbany2f7vbn96jb5xfmsb"; name = "chinese-wbim"; }; @@ -6761,7 +6782,7 @@ chinese-word-at-point = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-word-at-point"; - version = "20150618.2138"; + version = "20150619.338"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "chinese-word-at-point.el"; @@ -6769,7 +6790,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -6782,7 +6803,7 @@ chinese-yasdcv = callPackage ({ chinese-pyim, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chinese-yasdcv"; - version = "20150702.916"; + version = "20150702.1516"; src = fetchFromGitHub { owner = "tumashu"; repo = "chinese-yasdcv"; @@ -6790,7 +6811,7 @@ sha256 = "14yzmyzkf846yjrwnqrbzmvyhfav39qa5fr8jnb7lyz8rm7y9pnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-yasdcv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-yasdcv"; sha256 = "1y2qywldf8b8b0km1lcf74p0w6rd8gr86qcj7ikwhhbvd19dfglm"; name = "chinese-yasdcv"; }; @@ -6802,13 +6823,13 @@ }) {}; chm-view = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "chm-view"; - version = "20110616.1319"; + version = "20110616.1919"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/chm-view.el"; sha256 = "1r274pf0xrcdml4sy2nhhp3v5pr3y3s4lvk45hd3pmw1i4pw2fd8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chm-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chm-view"; sha256 = "1acz0fvl3inn7g4himq680yf64bgm7n61hsv2zpm1k6smrdl78nz"; name = "chm-view"; }; @@ -6821,7 +6842,7 @@ chronos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chronos"; - version = "20150602.1129"; + version = "20150602.1729"; src = fetchFromGitHub { owner = "dxknight"; repo = "chronos"; @@ -6829,7 +6850,7 @@ sha256 = "1mqdz3rvx0jm80fgzw3s3lqn448kqrlrifdwcg36cqq4qmkpalq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chronos"; sha256 = "1fwpll0mk6pc37qagbq3b3z32d2qwz993nxp9pjw4qbmlnq6sy9d"; name = "chronos"; }; @@ -6842,7 +6863,7 @@ chruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "chruby"; - version = "20151204.730"; + version = "20151204.1330"; src = fetchFromGitHub { owner = "plexus"; repo = "chruby.el"; @@ -6850,7 +6871,7 @@ sha256 = "0gx0bd7j71rlniq64vw8k59yzl070mdia05ry18br8kpsbk3bhrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chruby"; sha256 = "0pk6vdvmifiq52n452lbrkklxa69c40bfyzra9qhrghxr2q5v3mk"; name = "chruby"; }; @@ -6863,15 +6884,15 @@ cider = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, queue, seq, spinner }: melpaBuild { pname = "cider"; - version = "20160521.2312"; + version = "20160602.1709"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider"; - rev = "873206e155b1ad39ad3b775d58d751a664622f66"; - sha256 = "021cs6m2wx0gi42ndjrzisvjqg7pbkydwykmbll0gbcci5n26gcg"; + rev = "dd07f59cbfbe49caaa9c9058a9b32ead4ca7d7ab"; + sha256 = "0pwv93bp982z95shn0s0vifi24gmj88yz4swmrfy07a3p9nfq4xk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -6884,7 +6905,7 @@ cider-decompile = callPackage ({ cider, fetchFromGitHub, fetchurl, javap-mode, lib, melpaBuild }: melpaBuild { pname = "cider-decompile"; - version = "20151122.37"; + version = "20151122.637"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider-decompile"; @@ -6892,7 +6913,7 @@ sha256 = "1w4y65s3m2irga4iqfqqkcmvl6ss24zmaxqzbfib8jmi84r4lpac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-decompile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-decompile"; sha256 = "0jhsm31zcfwkbpsdh1lvmjm1fv2m7y849930sjvf5nxv3ffhx3b4"; name = "cider-decompile"; }; @@ -6905,7 +6926,7 @@ cider-eval-sexp-fu = callPackage ({ emacs, eval-sexp-fu, fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "cider-eval-sexp-fu"; - version = "20160412.228"; + version = "20160412.828"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "cider-eval-sexp-fu"; @@ -6913,7 +6934,7 @@ sha256 = "0g8yzfpaz1glxd0dxrd19bvk469pdjkr4b11xifcvamxa2slryij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -6926,7 +6947,7 @@ cider-profile = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cider-profile"; - version = "20141120.925"; + version = "20141120.1525"; src = fetchFromGitHub { owner = "thunknyc"; repo = "nrepl-profile"; @@ -6934,7 +6955,7 @@ sha256 = "0lgq4p7rs4prqfqd83v1l36xxacrd65jsfzbp7q62b2pjqikpgk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-profile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-profile"; sha256 = "14jc98h4r9rb7pxfb60ps4ss8p0bm66wdl6n8z1357hk93h9kmfs"; name = "cider-profile"; }; @@ -6947,7 +6968,7 @@ cider-spy = callPackage ({ cider, cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet }: melpaBuild { pname = "cider-spy"; - version = "20160313.1040"; + version = "20160313.1540"; src = fetchFromGitHub { owner = "jonpither"; repo = "cider-spy"; @@ -6955,7 +6976,7 @@ sha256 = "1x96f5wc916dcwb75a34b6x1mas20gdgy34c7rg59n91ydn1mfaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-spy"; sha256 = "0478jlg76h0mrjwk2b1kdj16s1q1b03b7ygacai45jh89bc025fh"; name = "cider-spy"; }; @@ -6968,7 +6989,7 @@ cil-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cil-mode"; - version = "20150223.550"; + version = "20150223.1150"; src = fetchFromGitHub { owner = "ForNeVeR"; repo = "cil-mode"; @@ -6976,7 +6997,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -6989,7 +7010,7 @@ cinspect = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }: melpaBuild { pname = "cinspect"; - version = "20150715.2233"; + version = "20150716.433"; src = fetchFromGitHub { owner = "inlinestyle"; repo = "cinspect-mode"; @@ -6997,7 +7018,7 @@ sha256 = "190n4kdcqdwglhnawnj9mqjarmcaqylxipc07whmrii0jv279kjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cinspect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cinspect"; sha256 = "0djh61mrfgcm3767ll1l5apw6646j4fdcaripksrmvn5aqfn8rjj"; name = "cinspect"; }; @@ -7010,15 +7031,15 @@ circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "20160522.314"; + version = "20160527.1522"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ea13b639568a6486aa77bb23e5db8318d9698bb1"; - sha256 = "0xfip9hdvkyx18sxz40jkfrvsw6zrw5yz6d34sg4fg0ni0f3bsqb"; + rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918"; + sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -7031,7 +7052,7 @@ cl-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cl-format"; - version = "20160412.2045"; + version = "20160413.245"; src = fetchFromGitHub { owner = "alvinfrancis"; repo = "cl-format"; @@ -7039,7 +7060,7 @@ sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-format"; sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; name = "cl-format"; }; @@ -7052,7 +7073,7 @@ cl-lib-highlight = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cl-lib-highlight"; - version = "20140127.1612"; + version = "20140127.2212"; src = fetchFromGitHub { owner = "skeeto"; repo = "cl-lib-highlight"; @@ -7060,7 +7081,7 @@ sha256 = "1mc8kayw8fmvpl0z09v6i68s2lharlwpzff0cvcsfn0an2imj2d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -7073,14 +7094,14 @@ clang-format = callPackage ({ cl-lib ? null, fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clang-format"; - version = "20151116.738"; + version = "20151116.1338"; src = fetchsvn { url = "http://llvm.org/svn/llvm-project/cfe/trunk/tools/clang-format"; - rev = "270371"; + rev = "271788"; sha256 = "1miz9ycxk0vvvnfi0hn0jl3sipvsyibc7j4cf59l4drz34zi8y5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clang-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clang-format"; sha256 = "19qaihb0lqnym2in4465lv8scw6qba6fdn8rcbkpsq09hpzikbah"; name = "clang-format"; }; @@ -7093,7 +7114,7 @@ clean-aindent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clean-aindent-mode"; - version = "20150816.2329"; + version = "20150817.529"; src = fetchFromGitHub { owner = "pmarinov"; repo = "clean-aindent-mode"; @@ -7101,7 +7122,7 @@ sha256 = "1h6k6kzim1zb87y1kzpqjzk3ip9bmfxyg54kdh2sfp4xy0g5h3p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clean-aindent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clean-aindent-mode"; sha256 = "1whzbs2gg2ar24kw29ffv94dgvrlfy2v4zdn0g7ksjjmmdr8ahh4"; name = "clean-aindent-mode"; }; @@ -7114,15 +7135,15 @@ clean-buffers = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clean-buffers"; - version = "20160426.818"; + version = "20160530.59"; src = fetchFromGitHub { owner = "lujun9972"; repo = "clean-buffers"; - rev = "fa1abbd49ee4c2b126cd7e2a7520633b34376db6"; - sha256 = "1gkxmsjabnr9g36srxihs1d5n7p8ckqcmzcgpgsbp6s1990gzcig"; + rev = "1be6c54e3095761b6b64bf749faae3dfce94e72a"; + sha256 = "1h7kmj53fqwfzam3ywz3yn4abl2n94v0lxnyv7x4qzwi2ggizc3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clean-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clean-buffers"; sha256 = "025sxrqxm24yg1wpfncrjw1nm91h0h7jy2xd5g20xqlinqqvdihj"; name = "clean-buffers"; }; @@ -7135,7 +7156,7 @@ clear-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clear-text"; - version = "20160406.1643"; + version = "20160406.2243"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "clear-text.el"; @@ -7143,7 +7164,7 @@ sha256 = "0y5z2pfhzpv67w2lnw1q06mflww90sfcilj89kqx2jhhrnrnn2ka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clear-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clear-text"; sha256 = "1cx2lbcbhd024pq9njan7xrlvj3k4c3wdsvgbz5qyna0k06ix8dv"; name = "clear-text"; }; @@ -7156,7 +7177,7 @@ clevercss = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clevercss"; - version = "20131228.2055"; + version = "20131229.255"; src = fetchFromGitHub { owner = "jschaf"; repo = "CleverCSS-Mode"; @@ -7164,7 +7185,7 @@ sha256 = "19q6zbnl9fg4cwgi56d7p4qp6y3g0fdyihinpakby49xv2n2k8dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clevercss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clevercss"; sha256 = "189f2l4za1j9ds0bhxrzyp7da9p6svh5dx2vnzf4vql7qhjk3gf0"; name = "clevercss"; }; @@ -7177,7 +7198,7 @@ click-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "click-mode"; - version = "20160331.1748"; + version = "20160331.2348"; src = fetchFromGitHub { owner = "bmalehorn"; repo = "click-mode"; @@ -7185,7 +7206,7 @@ sha256 = "0hbdk1xdh753g59dgyqjj6wgjkf3crsd6pzaq7p5ifbfhrph0qjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; @@ -7198,7 +7219,7 @@ cliphist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "cliphist"; - version = "20160502.2212"; + version = "20160503.412"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cliphist"; @@ -7206,7 +7227,7 @@ sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -7219,7 +7240,7 @@ clipmon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clipmon"; - version = "20160128.1304"; + version = "20160128.1904"; src = fetchFromGitHub { owner = "bburns"; repo = "clipmon"; @@ -7227,7 +7248,7 @@ sha256 = "07a55q97j2vsqpha0akri2kq90v1l97mc1mgr97pq39gc1bbc5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clipmon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clipmon"; sha256 = "1gvy1722px4fh88jyb8xx7k1dgyjgq7zjadr5fghdir42l0byw7i"; name = "clipmon"; }; @@ -7240,7 +7261,7 @@ clippy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "clippy"; - version = "20140417.714"; + version = "20140417.1314"; src = fetchFromGitHub { owner = "Fuco1"; repo = "clippy.el"; @@ -7248,7 +7269,7 @@ sha256 = "0msmigzip7hpjxwkz0khhlc2lj9wgb2919i4k0kv8ppi9j2f9hjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clippy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clippy"; sha256 = "0nqmc8f2qrsp25vzc66xw6b232n7fyw6g06mwn2cdpm3d2pgb7rg"; name = "clippy"; }; @@ -7261,7 +7282,7 @@ clips-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clips-mode"; - version = "20131012.1701"; + version = "20131012.2301"; src = fetchFromGitHub { owner = "grettke"; repo = "clips-mode"; @@ -7269,7 +7290,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -7279,23 +7300,24 @@ license = lib.licenses.free; }; }) {}; - clj-refactor = callPackage ({ cider, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: + clj-refactor = callPackage ({ cider, clojure-mode, dash, edn, emacs, fetchFromGitHub, fetchurl, hydra, inflections, lib, melpaBuild, multiple-cursors, paredit, s, yasnippet }: melpaBuild { pname = "clj-refactor"; - version = "20160501.734"; + version = "20160524.1046"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clj-refactor.el"; - rev = "47480c6ad701ca78645093b548bf64b72f19fb2b"; - sha256 = "0m13gd28b49h2vzbw1knhs8x1b26m5n7ys046hxsxzmlqd1z05kx"; + rev = "c40fa3241bc06504731a77019c677772558e69d9"; + sha256 = "1yl1vldc2zsmc1hlslgvb9xr87fa0kya2f9phmmc96yqanvmh69g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; packageRequires = [ cider + clojure-mode dash edn emacs @@ -7314,7 +7336,7 @@ cljr-helm = callPackage ({ clj-refactor, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "cljr-helm"; - version = "20150425.1607"; + version = "20150425.2207"; src = fetchFromGitHub { owner = "philjackson"; repo = "cljr-helm"; @@ -7322,7 +7344,7 @@ sha256 = "0ydv2prnw1j3m5nk23fqn4iv202kjswr8z0ip4zacdm8bl0q25ln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -7335,7 +7357,7 @@ cljsbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cljsbuild-mode"; - version = "20160402.1300"; + version = "20160402.1900"; src = fetchFromGitHub { owner = "kototama"; repo = "cljsbuild-mode"; @@ -7343,7 +7365,7 @@ sha256 = "0flnfivz6w3pkham3g08m3xzy3jg1rzvxfa00vkr7ll8iyv4ypqc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljsbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljsbuild-mode"; sha256 = "0qvb990dgq4v75lwnd661wxszbdbhlgxpsyv4zaj6h10gp1vi214"; name = "cljsbuild-mode"; }; @@ -7356,7 +7378,7 @@ clmemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clmemo"; - version = "20160326.1223"; + version = "20160326.1723"; src = fetchFromGitHub { owner = "ataka"; repo = "clmemo"; @@ -7364,7 +7386,7 @@ sha256 = "152qf7i5bf7xvr35gyawl8abkh7v5dsz957zxslrbbnc8bb1k6bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clmemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clmemo"; sha256 = "03qa79ip0gqinj1kk898lcvixk98hf6gknz0yc2fnqcrm642k2vs"; name = "clmemo"; }; @@ -7377,7 +7399,7 @@ cloc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cloc"; - version = "20151007.501"; + version = "20151007.1101"; src = fetchFromGitHub { owner = "cosmicexplorer"; repo = "cloc-emacs"; @@ -7385,7 +7407,7 @@ sha256 = "1rflc00yrbb7xzfh8c54ajf4qnhsp3mq07gkr257gjyrwsdw762v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cloc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cloc"; sha256 = "1ny5wixa9x4fq5jvhs01jmyvwkfvwwi9aamrcqsl42s9sx6ygz7a"; name = "cloc"; }; @@ -7398,7 +7420,7 @@ clocker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "clocker"; - version = "20160125.1805"; + version = "20160126.5"; src = fetchFromGitHub { owner = "roman"; repo = "clocker.el"; @@ -7406,7 +7428,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -7419,7 +7441,7 @@ clojars = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "clojars"; - version = "20160519.35"; + version = "20160519.635"; src = fetchFromGitHub { owner = "joshuamiller"; repo = "clojars.el"; @@ -7427,7 +7449,7 @@ sha256 = "15hnjxc7xczidn3fl88zkb8868r0v1892pvhgzpwkh3biailfq5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojars"; sha256 = "1skvd29347hwapgdqznbzwfcp2nf077qkdzknxc8ylmqa32yf5w1"; name = "clojars"; }; @@ -7440,7 +7462,7 @@ clojure-cheatsheet = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "clojure-cheatsheet"; - version = "20160320.615"; + version = "20160320.1115"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-cheatsheet"; @@ -7448,7 +7470,7 @@ sha256 = "0943fh8309mvg73paf97i2mfkrnl04x11gy8iz73c9622bkkmpcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -7461,15 +7483,15 @@ clojure-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode"; - version = "20160521.1409"; + version = "20160521.2009"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "cff06c48cba02fbb7de0a81dcdab596712ba54bb"; - sha256 = "1py9s177qiqymw152fxypd0bs15zgsy1i0fv46y704rbg5dj4png"; + rev = "173b67dcc4a547844361ab93265c3b529e6fb6b2"; + sha256 = "10czk5fnq4blksl9m8c5b2mp8wkicsjrifdfig9yn3gnpg4rmwbq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -7482,15 +7504,15 @@ clojure-mode-extra-font-locking = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-mode-extra-font-locking"; - version = "20160307.714"; + version = "20160307.1314"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clojure-mode"; - rev = "cff06c48cba02fbb7de0a81dcdab596712ba54bb"; - sha256 = "1py9s177qiqymw152fxypd0bs15zgsy1i0fv46y704rbg5dj4png"; + rev = "173b67dcc4a547844361ab93265c3b529e6fb6b2"; + sha256 = "10czk5fnq4blksl9m8c5b2mp8wkicsjrifdfig9yn3gnpg4rmwbq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -7503,7 +7525,7 @@ clojure-quick-repls = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clojure-quick-repls"; - version = "20150814.336"; + version = "20150814.936"; src = fetchFromGitHub { owner = "symfrog"; repo = "clojure-quick-repls"; @@ -7511,7 +7533,7 @@ sha256 = "1vgahik2q2sn6vqm9wg5b9jc74mkbc1md8pl69apz4cg397kjkzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -7524,7 +7546,7 @@ clojure-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "clojure-snippets"; - version = "20160305.902"; + version = "20160305.1502"; src = fetchFromGitHub { owner = "mpenet"; repo = "clojure-snippets"; @@ -7532,7 +7554,7 @@ sha256 = "08sswxmrb94an95cjxxcppn3f8gvy99jdr4cbwlwk2yswdrxdlg0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -7545,7 +7567,7 @@ clomacs = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clomacs"; - version = "20160513.453"; + version = "20160513.1053"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "clomacs"; @@ -7553,7 +7575,7 @@ sha256 = "0wc2zv4xirw3whpgrdhw156mz0m6had3nwk1xm1zswzblkgv754w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clomacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clomacs"; sha256 = "1vfjzrzp58ap75i0dh5bwnlkb8qbpfmrd3fg9n6aaibvvd2m3hyh"; name = "clomacs"; }; @@ -7566,7 +7588,7 @@ closql = callPackage ({ emacs, emacsql-sqlite, fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "closql"; - version = "20160415.2216"; + version = "20160416.416"; src = fetchFromGitLab { owner = "tarsius"; repo = "closql"; @@ -7574,7 +7596,7 @@ sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closql"; sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; name = "closql"; }; @@ -7587,7 +7609,7 @@ closure-lint-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "closure-lint-mode"; - version = "20101118.1624"; + version = "20101118.2224"; src = fetchFromGitHub { owner = "r0man"; repo = "closure-lint-mode"; @@ -7595,7 +7617,7 @@ sha256 = "0v0wdq0b5jz4x0d7dl3ilgf3aqp2hk375db366ij6gxwd0b9i3na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closure-lint-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closure-lint-mode"; sha256 = "1xmi1gjgayd5xbm3xx721xv57ns3x56r8ps94zpwyf2znpdchqfy"; name = "closure-lint-mode"; }; @@ -7608,7 +7630,7 @@ cloud-to-butt-erc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cloud-to-butt-erc"; - version = "20130627.1908"; + version = "20130628.108"; src = fetchFromGitHub { owner = "leathekd"; repo = "cloud-to-butt-erc"; @@ -7616,7 +7638,7 @@ sha256 = "07kvnb6p35swkyj92c4wymsqq4r2885wdpqhv7nhicvi6n658kpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cloud-to-butt-erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cloud-to-butt-erc"; sha256 = "061mmw39dq8sqzi2589lf7svy15n2iyiwbfiram48r2yhma5dd0f"; name = "cloud-to-butt-erc"; }; @@ -7629,7 +7651,7 @@ clues-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "clues-theme"; - version = "20140922.2356"; + version = "20140923.556"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-clues-theme"; @@ -7637,7 +7659,7 @@ sha256 = "0fnl3b62clg9llcs2l511sxp4yishan4pqk45sqp8ih4rdzvy7ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clues-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clues-theme"; sha256 = "12g7373js5a2fa0m396k9kjhxvx3qws7n1r435nr9zgwaw7xvciy"; name = "clues-theme"; }; @@ -7650,7 +7672,7 @@ cm-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cm-mode"; - version = "20160310.1129"; + version = "20160310.1729"; src = fetchFromGitHub { owner = "joostkremers"; repo = "criticmarkup-emacs"; @@ -7658,7 +7680,7 @@ sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -7671,7 +7693,7 @@ cmake-font-lock = callPackage ({ cmake-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-font-lock"; - version = "20150828.1627"; + version = "20150828.2227"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "cmake-font-lock"; @@ -7679,7 +7701,7 @@ sha256 = "030kg3m546gcm6cf1k928ld51znsfrzhlpm005dvqap3gkcrg4sf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-font-lock"; sha256 = "0ws4kd94m8fh55d7whsf3rj9qrxjp1wsgxh0valsjxyp2ck9zrz0"; name = "cmake-font-lock"; }; @@ -7692,15 +7714,15 @@ cmake-ide = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, levenshtein, lib, melpaBuild, seq }: melpaBuild { pname = "cmake-ide"; - version = "20160520.1010"; + version = "20160531.918"; src = fetchFromGitHub { owner = "atilaneves"; repo = "cmake-ide"; - rev = "ae854c545c398fa96983a8a5b375d0744a8c932b"; - sha256 = "0nxfanlwi96lfkl5gvvwbwpw3n4sb1y4sqspp04x0915iqylqbxm"; + rev = "e693fd876cc9063c45485cd0fbf6de0a188533a9"; + sha256 = "1d2qlx7fqhiwnxlf5sy4331brcv9m1g29pwcylpw627b7jp0xhm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -7713,15 +7735,15 @@ cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "20160510.1440"; + version = "20160510.2040"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "52eeef3264897ae111015b41262ae785c06737b6"; - sha256 = "1bgv9n682568zxdfrrjajzica4ikj0693bh2rdpp49grcxdn9n08"; + rev = "6a22a7cf71c0f564a150717a31651f9730c808fc"; + sha256 = "1rdparszanp9c4041d3q9naaa2mghqsqqr42lm8l3k4fvzbjrmia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -7734,7 +7756,7 @@ cmake-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-project"; - version = "20150720.1659"; + version = "20150720.2259"; src = fetchFromGitHub { owner = "alamaison"; repo = "emacs-cmake-project"; @@ -7742,7 +7764,7 @@ sha256 = "0fyzi8xac80wnhnwwm1j6yxpvpg1n4diq2lcl3qkj8klvk5gpxr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -7754,13 +7776,13 @@ }) {}; cmds-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmds-menu"; - version = "20151231.1530"; + version = "20151231.2130"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cmds-menu.el"; sha256 = "13r8pjxknsfd6ywzlgcy4bm7fvr768ba34k6b7y365y3c1asz6y3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmds-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmds-menu"; sha256 = "12s75y9d75cxqgg3hj0s4w0d10zy8y230b5gy09685ab5lcajfks"; name = "cmds-menu"; }; @@ -7773,7 +7795,7 @@ cmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmm-mode"; - version = "20150225.246"; + version = "20150225.846"; src = fetchFromGitHub { owner = "bgamari"; repo = "cmm-mode"; @@ -7781,7 +7803,7 @@ sha256 = "0xdcw329d2gssx86iajwrgpr7yv69b9nflmzjgb4jvg4pskj4pgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmm-mode"; sha256 = "184b8x19cnvx8z4dr9alv62wchzc7vr7crzz8jiyqw9d544zs50h"; name = "cmm-mode"; }; @@ -7794,7 +7816,7 @@ cn-outline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cn-outline"; - version = "20100321.1214"; + version = "20100321.1714"; src = fetchFromGitHub { owner = "mori-dev"; repo = "cn-outline"; @@ -7802,7 +7824,7 @@ sha256 = "1635k51ppivq6v2702fihq8dvi33445smds9zhqm0drnpv9rv5cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cn-outline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cn-outline"; sha256 = "0cw1rr56hdngvhmx59j76hvkfzgybasn0fwhd6vwm709jqiiiwiz"; name = "cn-outline"; }; @@ -7815,7 +7837,7 @@ cobra-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cobra-mode"; - version = "20140116.1616"; + version = "20140116.2216"; src = fetchFromGitHub { owner = "Nekroze"; repo = "cobra-mode"; @@ -7823,7 +7845,7 @@ sha256 = "1sx8grp3j7zcma3nb7zj6kijkdqx166vw1qgmm29hvx48bys6vlp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cobra-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cobra-mode"; sha256 = "11jscpbclxlq2xqy2nsfa4y575bp8h0kpkp8cfjqb05lm5ybcp89"; name = "cobra-mode"; }; @@ -7836,7 +7858,7 @@ code-library = callPackage ({ fetchFromGitHub, fetchurl, gist, lib, melpaBuild }: melpaBuild { pname = "code-library"; - version = "20160426.818"; + version = "20160426.1418"; src = fetchFromGitHub { owner = "lujun9972"; repo = "code-library"; @@ -7844,7 +7866,7 @@ sha256 = "0gc56pdyzcnv3q1a82c79i8w58q9r6ccfix9s1s6msjxzxkznap5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/code-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/code-library"; sha256 = "0gi8lz2q0vis4nyziykq15jp3m3vykfwycbk6amhf1ybkn9k3ywj"; name = "code-library"; }; @@ -7857,7 +7879,7 @@ codebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codebug"; - version = "20140929.1737"; + version = "20140929.2337"; src = fetchFromGitHub { owner = "shano"; repo = "emacs-codebug"; @@ -7865,7 +7887,7 @@ sha256 = "11v671c4338bsizbmm7ypp4x9s5hiwyddsg2ig6h157gfv2597pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codebug"; sha256 = "1cb2wvawp3wqslhgbmbw9xwcqgwfscqg0jfgqzi3nr42mjp9zgqj"; name = "codebug"; }; @@ -7878,7 +7900,7 @@ codesearch = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codesearch"; - version = "20160111.955"; + version = "20160111.1555"; src = fetchFromGitHub { owner = "abingham"; repo = "codesearch.el"; @@ -7886,7 +7908,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codesearch"; sha256 = "0z7zvain9n0rm6bvrh3j7z275l32fmp46p4b33mizqd1y86w89nx"; name = "codesearch"; }; @@ -7899,7 +7921,7 @@ codic = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "codic"; - version = "20150926.727"; + version = "20150926.1327"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-codic"; @@ -7907,7 +7929,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -7920,7 +7942,7 @@ coffee-fof = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-fof"; - version = "20131012.830"; + version = "20131012.1430"; src = fetchFromGitHub { owner = "yasuyk"; repo = "coffee-fof"; @@ -7928,7 +7950,7 @@ sha256 = "010v886ak0rbbhqwxwj6m0mkgh19s232igy7wwbv07l2pdqszf3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-fof"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-fof"; sha256 = "02cqza46qp8y69jd33cg4nmcgvrpwz23vyxqnmzwwvlmnbky96yc"; name = "coffee-fof"; }; @@ -7941,7 +7963,7 @@ coffee-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coffee-mode"; - version = "20160520.446"; + version = "20160520.1046"; src = fetchFromGitHub { owner = "defunkt"; repo = "coffee-mode"; @@ -7949,7 +7971,7 @@ sha256 = "10l7as2z903y5bgqb4zr203rx254l62wrn9zx9863p7vzw1yhbpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -7962,13 +7984,13 @@ col-highlight = callPackage ({ fetchurl, lib, melpaBuild, vline }: melpaBuild { pname = "col-highlight"; - version = "20151231.1533"; + version = "20151231.2133"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/col-highlight.el"; sha256 = "1fpkymmgv58b734d2rr7cfj2j2if1qkwgrpk3yp2ibw2n2567y0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/col-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/col-highlight"; sha256 = "1kycjdlrg7a5x37b0pzqhg56yn7kaisryrk303qx1084kwq9464i"; name = "col-highlight"; }; @@ -7981,7 +8003,7 @@ colemak-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colemak-evil"; - version = "20140508.1912"; + version = "20140509.112"; src = fetchFromGitHub { owner = "patbl"; repo = "colemak-evil"; @@ -7989,7 +8011,7 @@ sha256 = "0jjj1miwc7hw2fbb1fnmfnydim81djswla8iy4waam9014yraqci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colemak-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colemak-evil"; sha256 = "1bfzs5px1k6g3cnwjdaq2m78bbnfy3lxhjzkcch7zdv3nyacwl5z"; name = "colemak-evil"; }; @@ -8002,7 +8024,7 @@ colonoscopy-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colonoscopy-theme"; - version = "20141116.201"; + version = "20141116.801"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-colonoscopy-theme"; @@ -8010,7 +8032,7 @@ sha256 = "1k3sd07ffgpfhzg7d9mb1gc3n02zsvilxc30bgiycbjrbjgqq0i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colonoscopy-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colonoscopy-theme"; sha256 = "0x9bfr4j0sp41jkgnyjlaxnnjjrc102x6sznn6cgcmqk5qhswl4q"; name = "colonoscopy-theme"; }; @@ -8023,7 +8045,7 @@ color-identifiers-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-identifiers-mode"; - version = "20160519.1446"; + version = "20160519.2046"; src = fetchFromGitHub { owner = "ankurdave"; repo = "color-identifiers-mode"; @@ -8031,7 +8053,7 @@ sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-identifiers-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-identifiers-mode"; sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; name = "color-identifiers-mode"; }; @@ -8044,7 +8066,7 @@ color-moccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-moccur"; - version = "20141222.1935"; + version = "20141223.135"; src = fetchFromGitHub { owner = "myuhe"; repo = "color-moccur.el"; @@ -8052,7 +8074,7 @@ sha256 = "1p1f30qz4nd5a8ym2iwrgp6vhws0dls2qlc0apblj9nj3b0ziv0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-moccur"; sha256 = "17b9walfc5c9qfdvl9pcwb2gjikc3wxk1d3v878ckypmxd38vciq"; name = "color-moccur"; }; @@ -8065,14 +8087,14 @@ color-theme = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme"; - version = "20080305.334"; + version = "20080305.934"; src = fetchbzr { url = "http://bzr.savannah.gnu.org/r/color-theme/trunk"; rev = "57"; sha256 = "17bidzq9kiz250gal1fn9mg8gf8l749nz69z0awpc4x2222wxxiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme"; sha256 = "1p4bjh8a9f6ixmwwnyjb520myk3bww1v9w6427za07v68m9cdh79"; name = "color-theme"; }; @@ -8085,7 +8107,7 @@ color-theme-approximate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-approximate"; - version = "20140227.2336"; + version = "20140228.536"; src = fetchFromGitHub { owner = "tungd"; repo = "color-theme-approximate"; @@ -8093,7 +8115,7 @@ sha256 = "1b0ymwszqsjcihcbfp7s4fjam983ixh3yb7sdc0rmqlyric1zwxq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-approximate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-approximate"; sha256 = "1wdnia9q42x7vky3ks555iic5s50g4mx7ss5ppaljvgxvbxyxqh1"; name = "color-theme-approximate"; }; @@ -8106,7 +8128,7 @@ color-theme-buffer-local = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-buffer-local"; - version = "20151012.1928"; + version = "20151013.128"; src = fetchFromGitHub { owner = "vic"; repo = "color-theme-buffer-local"; @@ -8114,7 +8136,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-buffer-local"; sha256 = "1448rffyzn5k5mr31hwd28wlj7if7rp5sjlqcsvbxd2mnbgkgjz0"; name = "color-theme-buffer-local"; }; @@ -8127,7 +8149,7 @@ color-theme-modern = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-modern"; - version = "20160411.2146"; + version = "20160412.346"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "replace-colorthemes"; @@ -8135,7 +8157,7 @@ sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -8148,7 +8170,7 @@ color-theme-sanityinc-solarized = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-solarized"; - version = "20160429.2203"; + version = "20160430.403"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-solarized"; @@ -8156,7 +8178,7 @@ sha256 = "0cw1al8dan7vglkm33wkznvmyma903ckd95l1ns6qmf1d55lnpig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -8169,15 +8191,15 @@ color-theme-sanityinc-tomorrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-sanityinc-tomorrow"; - version = "20160521.1825"; + version = "20160601.1314"; src = fetchFromGitHub { owner = "purcell"; repo = "color-theme-sanityinc-tomorrow"; - rev = "5ce58a5aaa177fee7210284f94913ba71d009009"; - sha256 = "18rj02ykh0r13fj2dz374698i2inavm2129gb041066mg8c3danb"; + rev = "58128341c05b1d7183e659c0a4c9b32d5905b05e"; + sha256 = "00clabn9sckvrj0lnpmc5iarqzl34048b3w1qmmlhkgzc0qb4isx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -8190,7 +8212,7 @@ color-theme-solarized = callPackage ({ color-theme, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "color-theme-solarized"; - version = "20160219.1224"; + version = "20160219.1824"; src = fetchFromGitHub { owner = "sellout"; repo = "emacs-color-theme-solarized"; @@ -8198,7 +8220,7 @@ sha256 = "1yn0wacicf218212d9qgn67pf16i7x6bih67zdfcplq4i9lqbpg3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-solarized"; sha256 = "011rzq38ffmq7f2nzwrq96wwz67p82p1f0p5nib4nwqa47xlx7kf"; name = "color-theme-solarized"; }; @@ -8211,7 +8233,7 @@ colorsarenice-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "colorsarenice-theme"; - version = "20150421.1636"; + version = "20150421.2236"; src = fetchFromGitHub { owner = "Fanael"; repo = "colorsarenice-theme"; @@ -8219,7 +8241,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -8232,7 +8254,7 @@ column-enforce-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "column-enforce-mode"; - version = "20140902.1249"; + version = "20140902.1849"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "column-enforce-mode"; @@ -8240,7 +8262,7 @@ sha256 = "0ay4wrnyrdp4v3vjxr99hy8fpq6zsyh246c0gbp7bh63l5fx8nwr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/column-enforce-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/column-enforce-mode"; sha256 = "1qh7kwr65spbbnzvq744gkksx50x04zs0nwn5ly60swc05d05lcg"; name = "column-enforce-mode"; }; @@ -8252,13 +8274,13 @@ }) {}; column-marker = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "column-marker"; - version = "20121128.343"; + version = "20121128.943"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/column-marker.el"; sha256 = "05bv198zhqw5hqq6cr11mhz02dpca74hhp1ycwq369m0yb2naxy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/column-marker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/column-marker"; sha256 = "1xgfsiw46aib2vb9bbjlgnhcgfnlfhdcxd0cl0jqj4fjfxzbz0bq"; name = "column-marker"; }; @@ -8271,7 +8293,7 @@ command-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "command-log-mode"; - version = "20160413.47"; + version = "20160413.647"; src = fetchFromGitHub { owner = "lewang"; repo = "command-log-mode"; @@ -8279,7 +8301,7 @@ sha256 = "06hll2frlx4sg9fj13a7ipq9y24isbjkjm6034xswhak40m7g1ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/command-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/command-log-mode"; sha256 = "11jq6055bvpwvrm0b8cgab25wa2mcyylpz4j56h1nqj7cnhb6ppj"; name = "command-log-mode"; }; @@ -8292,7 +8314,7 @@ command-queue = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "command-queue"; - version = "20160328.1325"; + version = "20160328.1925"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "command-queue"; @@ -8300,7 +8322,7 @@ sha256 = "0216hzdl4h1jssw5g2y95z4yx7abqsaxpk1s78r35w5cnx7kplrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/command-queue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/command-queue"; sha256 = "1jaywdg8vcf1v6ayy1zd5mjs0x3s96845ig9ssb08397lfqasx1k"; name = "command-queue"; }; @@ -8313,7 +8335,7 @@ commander = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "commander"; - version = "20140120.1352"; + version = "20140120.1952"; src = fetchFromGitHub { owner = "rejeep"; repo = "commander.el"; @@ -8321,7 +8343,7 @@ sha256 = "06y7ika4781gkh94ygdaz7a760s7ahrma6af6n7cqhgjyikz7lg1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -8334,7 +8356,7 @@ comment-dwim-2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "comment-dwim-2"; - version = "20150825.1849"; + version = "20150826.49"; src = fetchFromGitHub { owner = "remyferre"; repo = "comment-dwim-2"; @@ -8342,7 +8364,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -8355,7 +8377,7 @@ commenter = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "commenter"; - version = "20160219.1127"; + version = "20160219.1727"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "commenter"; @@ -8363,7 +8385,7 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -8376,7 +8398,7 @@ commify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "commify"; - version = "20151110.438"; + version = "20151110.1038"; src = fetchFromGitHub { owner = "ddoherty03"; repo = "commify"; @@ -8384,7 +8406,7 @@ sha256 = "04bma9sdn7h8fjz62wlcwayzhr7lvzhidh48wc5rk195zlbgagwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commify"; sha256 = "1jc6iqa4hna3277hx13scfcqzkr43yv6gndbxv7qf4ydi01ysd0m"; name = "commify"; }; @@ -8397,15 +8419,15 @@ common-lisp-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "common-lisp-snippets"; - version = "20150910.647"; + version = "20160531.1803"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "common-lisp-snippets"; - rev = "7dc8da55ee7182c95ff3e4dfb59b8e7aef6fdd6d"; - sha256 = "14giiif043yvdaykq700v3n12j295a2pw1aygrl6gr42a3srbnpl"; + rev = "442ec783ee0e691a7b5554b13a317abd090ba080"; + sha256 = "0iz5fgcp542hx26q6vmycfrfxyn58yjkdjr6zfn3mzhmxssaf1rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -8418,15 +8440,15 @@ company = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company"; - version = "20160514.2050"; + version = "20160523.335"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-mode"; - rev = "395f846b05fa37be4d00247941a370e6e0b7790e"; - sha256 = "0kfbpfkzv0v6v66v2jd2dddiabfizd3vgbyflgcgamsbxkifrl63"; + rev = "2d9bf1e9ce40c7670a39fce8ee7d0ffe1ff2fbc7"; + sha256 = "083z3ssf76bw53bimai9ziaj2g3pl2mzjc40varkyqz02jz2m2mw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -8439,7 +8461,7 @@ company-anaconda = callPackage ({ anaconda-mode, cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-anaconda"; - version = "20160509.717"; + version = "20160509.1317"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-anaconda"; @@ -8447,7 +8469,7 @@ sha256 = "1vkh0angvi9aqfbn2n1f2kq9myq0zw0dk19hqb5x6gxxd5s8l7hb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -8460,7 +8482,7 @@ company-ansible = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-ansible"; - version = "20150901.550"; + version = "20150901.1150"; src = fetchFromGitHub { owner = "krzysztof-magosa"; repo = "company-ansible"; @@ -8468,7 +8490,7 @@ sha256 = "06gh33qzglv40r62dsapzhxwparw8ciblv80g7h6y6ilyazwcidn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -8481,7 +8503,7 @@ company-arduino = callPackage ({ arduino-mode, cl-lib ? null, company, company-c-headers, company-irony, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-arduino"; - version = "20160306.1239"; + version = "20160306.1839"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "company-arduino"; @@ -8489,7 +8511,7 @@ sha256 = "08766m35s0r2fyv32y0h3sns9d5jykbgg24d2z8czklnc8hay7jc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-arduino"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-arduino"; sha256 = "1bch447lllikip1xd90kdgssgc67sl04a70fxqkqlrc1bs6gkkws"; name = "company-arduino"; }; @@ -8510,7 +8532,7 @@ company-auctex = callPackage ({ auctex, company, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-auctex"; - version = "20151102.943"; + version = "20151102.1543"; src = fetchFromGitHub { owner = "alexeyr"; repo = "company-auctex"; @@ -8518,7 +8540,7 @@ sha256 = "0mkyg9y1rhl6hdzhr51psnvy2q0zw4y29m9p0ivb7s643k3fjjp5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-auctex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-auctex"; sha256 = "1jia80sqmm83kzjcf1h1d9iz2k4k9albzvfka5hx6hpa4h8nm5q4"; name = "company-auctex"; }; @@ -8531,7 +8553,7 @@ company-c-headers = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-c-headers"; - version = "20150801.1201"; + version = "20150801.1801"; src = fetchFromGitHub { owner = "randomphrase"; repo = "company-c-headers"; @@ -8539,7 +8561,7 @@ sha256 = "0jh2j260x1smlm4362dvgfpfpba7kg6hqvszjirc6mpm74zdcnp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-c-headers"; sha256 = "1715vnjr5cjiq8gjcd3idnpnijg5cg3sw3f8gr5x2ixcrip1hx3a"; name = "company-c-headers"; }; @@ -8552,7 +8574,7 @@ company-cabal = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-cabal"; - version = "20151216.1020"; + version = "20151216.1620"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-cabal"; @@ -8560,7 +8582,7 @@ sha256 = "0ll9dxzsgrpy4psz3dqhzny990lfccn63swcyfvl8mnqgwbrq8k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -8573,7 +8595,7 @@ company-coq = callPackage ({ cl-lib ? null, company, company-math, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "company-coq"; - version = "20160316.1414"; + version = "20160316.1914"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "company-coq"; @@ -8581,7 +8603,7 @@ sha256 = "0lnb3qf1xhb0nbqy6ry0bkz2xrzfgkvavb7a3cbllawyz5idhfg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; @@ -8594,7 +8616,7 @@ company-dcd = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, flycheck-dmd-dub, helm, lib, melpaBuild, popwin, yasnippet }: melpaBuild { pname = "company-dcd"; - version = "20160406.2348"; + version = "20160407.548"; src = fetchFromGitHub { owner = "tsukimizake"; repo = "company-dcd"; @@ -8602,7 +8624,7 @@ sha256 = "0jkshkh44cgahpz2d7lrwfyl4kmhinivlbp08yn4zz6hpcvz87x9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dcd"; sha256 = "03849k4jzs23iglk9ghcq6283c9asffcq4dznypcjax7y4x113vd"; name = "company-dcd"; }; @@ -8619,22 +8641,22 @@ license = lib.licenses.free; }; }) {}; - company-dict = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: + company-dict = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }: melpaBuild { pname = "company-dict"; - version = "20160521.1830"; + version = "20160528.953"; src = fetchFromGitHub { owner = "hlissner"; repo = "emacs-company-dict"; - rev = "e791f48067880ea79ddb588f78be4008d2dfb7ad"; - sha256 = "1hirr6fc1advnyhianvzviwglc55b91gyw7k760yiar2q9saim0b"; + rev = "d51b801fe319e7984cbc202c4745214d84039942"; + sha256 = "16ai8ljp0i75kby1knj7ldysd8s6kd6drmlh9ygyddxbi2i35x61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dict"; sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; name = "company-dict"; }; - packageRequires = [ cl-lib company ]; + packageRequires = [ company emacs parent-mode ]; meta = { homepage = "https://melpa.org/#/company-dict"; license = lib.licenses.free; @@ -8643,7 +8665,7 @@ company-edbi = callPackage ({ cl-lib ? null, company, edbi, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "company-edbi"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-edbi"; @@ -8651,7 +8673,7 @@ sha256 = "0n2hvrfbybsp57w6m9mm7ywjq30fwwx9bzc2rllfr06d2ms7naai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-edbi"; sha256 = "067ff1xdyqy4qzgk5pmqf4kksfjk1glkrslcj3rk4zmhcalwrfrm"; name = "company-edbi"; }; @@ -8664,7 +8686,7 @@ company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-emoji"; - version = "20160331.1941"; + version = "20160401.141"; src = fetchFromGitHub { owner = "dunn"; repo = "company-emoji"; @@ -8672,7 +8694,7 @@ sha256 = "1ipknikwyd6h2w72s5sn32mfql4p2cmgv868n13r3wg42c619blq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -8685,7 +8707,7 @@ company-flx = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "company-flx"; - version = "20160423.2013"; + version = "20160424.213"; src = fetchFromGitHub { owner = "PythonNut"; repo = "company-flx"; @@ -8693,7 +8715,7 @@ sha256 = "1di3nndif2gkzwvs8bvqg994z422ql308lh47hbjdjnqm182mwy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-flx"; sha256 = "1r4jcfzrhdpclblfrmi4qbl8dnhc2d7d4c1425xnslg7bhwd2vxn"; name = "company-flx"; }; @@ -8706,7 +8728,7 @@ company-ghc = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, ghc, lib, melpaBuild }: melpaBuild { pname = "company-ghc"; - version = "20160315.1010"; + version = "20160315.1510"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-ghc"; @@ -8714,7 +8736,7 @@ sha256 = "1mc7y4j772x54n2wc2dskb5wjc46r7sg2jwyvmnj44cyaasxqmck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -8727,7 +8749,7 @@ company-ghci = callPackage ({ company, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "company-ghci"; - version = "20160310.2100"; + version = "20160311.300"; src = fetchFromGitHub { owner = "juiko"; repo = "company-ghci"; @@ -8735,7 +8757,7 @@ sha256 = "02gq083lpbszy8pf7s5j61bjlm0hacv4md4g17n0q6448rix9yny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghci"; sha256 = "0h9hqfb8fm90h87bi3myl84nppbbminhnvv6jqg62qi9k6snn1iq"; name = "company-ghci"; }; @@ -8748,7 +8770,7 @@ company-go = callPackage ({ company, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "company-go"; - version = "20160306.1655"; + version = "20160306.2255"; src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; @@ -8756,7 +8778,7 @@ sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -8769,7 +8791,7 @@ company-inf-ruby = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "company-inf-ruby"; - version = "20140805.1654"; + version = "20140805.2254"; src = fetchFromGitHub { owner = "company-mode"; repo = "company-inf-ruby"; @@ -8777,7 +8799,7 @@ sha256 = "0fnv4rvvs9rqzrs86g23jcrpg0rcgk25299hm6jm08ia0kjjby1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-inf-ruby"; sha256 = "0cb1w0sxgb5jf0p2a5s2i4d511lsjjhyaqkqlwjz8nk4w14n0zxm"; name = "company-inf-ruby"; }; @@ -8790,7 +8812,7 @@ company-irony = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony"; - version = "20160321.1703"; + version = "20160321.2203"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "company-irony"; @@ -8798,7 +8820,7 @@ sha256 = "15xv59c6pwdysr9hqvaj7jgsa9pnicy7cnn9dq53zngjh3f5mf83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -8811,7 +8833,7 @@ company-irony-c-headers = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "company-irony-c-headers"; - version = "20151018.509"; + version = "20151018.1109"; src = fetchFromGitHub { owner = "hotpxl"; repo = "company-irony-c-headers"; @@ -8819,7 +8841,7 @@ sha256 = "1x2dfjmy86icyv2g1y5bjlr87w8rixqdcndkwm1sba6ha277wp9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony-c-headers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony-c-headers"; sha256 = "0kiag5ggmc2f5c3gd8nn40x16i686jpdrfrflgrz2aih8p3g6af8"; name = "company-irony-c-headers"; }; @@ -8832,7 +8854,7 @@ company-jedi = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }: melpaBuild { pname = "company-jedi"; - version = "20151216.2221"; + version = "20151217.421"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-company-jedi"; @@ -8840,7 +8862,7 @@ sha256 = "0bpqswcc6a65wms0pdk9rsad9jiigmx2l1jaqr8bz4va945qdlhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -8853,7 +8875,7 @@ company-lua = callPackage ({ company, f, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild, s }: melpaBuild { pname = "company-lua"; - version = "20160514.1720"; + version = "20160514.2320"; src = fetchFromGitHub { owner = "ptrv"; repo = "company-lua"; @@ -8861,7 +8883,7 @@ sha256 = "1fwb333p4yv02msx67p0n4bgzwa73d2zh78mwx79jani32m730ci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-lua"; sha256 = "13sm7ya2ndqxwdjarhxbmg7fvr3413c7p3n6yf1i4rabbliqsf2c"; name = "company-lua"; }; @@ -8874,7 +8896,7 @@ company-math = callPackage ({ company, fetchFromGitHub, fetchurl, lib, math-symbol-lists, melpaBuild }: melpaBuild { pname = "company-math"; - version = "20160229.1032"; + version = "20160229.1632"; src = fetchFromGitHub { owner = "vspinu"; repo = "company-math"; @@ -8882,7 +8904,7 @@ sha256 = "1xsk02ymgj0gfblz2f6pzwh96crgx4m524ia6m95kcxrd7y63004"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -8895,7 +8917,7 @@ company-nand2tetris = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }: melpaBuild { pname = "company-nand2tetris"; - version = "20151027.1736"; + version = "20151027.2236"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -8903,7 +8925,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nand2tetris"; sha256 = "1g2i33jjh7kbpzk835kbnqicf0w4cq5rqv934bqzz5kavj9cg886"; name = "company-nand2tetris"; }; @@ -8916,15 +8938,15 @@ company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-ngram"; - version = "20160330.1726"; + version = "20160530.755"; src = fetchFromGitHub { owner = "kshramt"; repo = "company-ngram"; - rev = "1129ab1481c591644a04f3050ef50d6bb8989d9c"; - sha256 = "0cs79d3cz1lncnvrh9h4pyrm3rfbxd524psvx9sd6fhbf5914wix"; + rev = "15418f2551e1449ba3c1e74d7bb5260688961028"; + sha256 = "172aah6vnwsij6h8c668l0jrncmd9wszbf55bv3snnw80wnqikmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ngram"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ngram"; sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; name = "company-ngram"; }; @@ -8937,7 +8959,7 @@ company-nixos-options = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild, nixos-options }: melpaBuild { pname = "company-nixos-options"; - version = "20160215.357"; + version = "20160215.957"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -8945,7 +8967,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -8958,7 +8980,7 @@ company-qml = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, qml-mode }: melpaBuild { pname = "company-qml"; - version = "20160212.1812"; + version = "20160213.12"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "company-qml"; @@ -8966,7 +8988,7 @@ sha256 = "0sl59b9wwnpz6p2kxsc87b3q28vvfxg7pwk67c51q8qyrl0c1klv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-qml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-qml"; sha256 = "0sva7i93dam8mc2z3cp785vmgcg7cphrpkwyvqyqhq8w51qg8mxx"; name = "company-qml"; }; @@ -8979,7 +9001,7 @@ company-quickhelp = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip }: melpaBuild { pname = "company-quickhelp"; - version = "20160211.1018"; + version = "20160211.1618"; src = fetchFromGitHub { owner = "expez"; repo = "company-quickhelp"; @@ -8987,7 +9009,7 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -9000,7 +9022,7 @@ company-racer = callPackage ({ cl-lib ? null, company, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-racer"; - version = "20150628.2233"; + version = "20150629.433"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "company-racer"; @@ -9008,7 +9030,7 @@ sha256 = "1lk3fqsgbi6mg4hrpc9gy4hbfp9snyj4yvc0zh8iqqw5nx12dab4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-racer"; sha256 = "0zc8dzvsjz5qsrwhv7x9f7djzvb9awacc3pgjirsv8f8sp7p3am4"; name = "company-racer"; }; @@ -9021,7 +9043,7 @@ company-restclient = callPackage ({ cl-lib ? null, company, emacs, fetchFromGitHub, fetchurl, know-your-http-well, lib, melpaBuild, restclient }: melpaBuild { pname = "company-restclient"; - version = "20151202.701"; + version = "20151202.1301"; src = fetchFromGitHub { owner = "iquiw"; repo = "company-restclient"; @@ -9029,7 +9051,7 @@ sha256 = "04829y7510zxjww9pq8afvnzwyyv30c0b3a71mxwf6ympfxb9rx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -9048,15 +9070,15 @@ company-shell = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-shell"; - version = "20160212.1439"; + version = "20160528.1407"; src = fetchFromGitHub { owner = "Alexander-Miller"; repo = "company-shell"; - rev = "d725646cb19a71a14b76add40e0b8ebb3031ad1b"; - sha256 = "097v261fp0j7sjg6fkxwywpqf1vg1i2gq3i7m34vxzvs9l7ahagl"; + rev = "538371368a7590cfddb23d6a5e70fe204b7fa641"; + sha256 = "0dfqc506zyljsl5xasvdq7ym5pfhd3r17kvz84mzgg34r1fd4b8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-shell"; sha256 = "0my9jghf3s4idkgrpki8mj1lm5ichfvznb09lfwf07fjhg0q1apz"; name = "company-shell"; }; @@ -9069,7 +9091,7 @@ company-sourcekit = callPackage ({ company, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sourcekit }: melpaBuild { pname = "company-sourcekit"; - version = "20160510.2317"; + version = "20160511.517"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; @@ -9077,7 +9099,7 @@ sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -9090,7 +9112,7 @@ company-tern = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tern }: melpaBuild { pname = "company-tern"; - version = "20160510.951"; + version = "20160510.1551"; src = fetchFromGitHub { owner = "proofit404"; repo = "company-tern"; @@ -9098,7 +9120,7 @@ sha256 = "0pdzr7sqpja3cr2mydx9b4813r1g9jilpin7n13sjbqyk8108xc6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -9111,7 +9133,7 @@ company-try-hard = callPackage ({ company, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-try-hard"; - version = "20150902.1806"; + version = "20150903.6"; src = fetchFromGitHub { owner = "Wilfred"; repo = "company-try-hard"; @@ -9119,7 +9141,7 @@ sha256 = "1isnk2i64kppsr23nr6qm5kwxxwcp4xazjwvm2chyzl4vbvp03p2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-try-hard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-try-hard"; sha256 = "1rwn521dc8kxh43vcd3rf0h8jc53d4gmid3szj2msi0da1sk0mmj"; name = "company-try-hard"; }; @@ -9132,7 +9154,7 @@ company-web = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, web-completion-data }: melpaBuild { pname = "company-web"; - version = "20160502.958"; + version = "20160502.1558"; src = fetchFromGitHub { owner = "osv"; repo = "company-web"; @@ -9140,7 +9162,7 @@ sha256 = "0pjxahrhvz7l45whqlgm6n4mvqqxc8zs1dv33p3b498hyb83f52j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -9153,7 +9175,7 @@ company-ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ycm }: melpaBuild { pname = "company-ycm"; - version = "20140904.1417"; + version = "20140904.2017"; src = fetchFromGitHub { owner = "neuromage"; repo = "ycm.el"; @@ -9161,7 +9183,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycm"; sha256 = "1q4d63c7nr3g7q0smd55pp636vqa9lf1pkwjn9iq265369npvina"; name = "company-ycm"; }; @@ -9174,15 +9196,15 @@ company-ycmd = callPackage ({ company, dash, deferred, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s, ycmd }: melpaBuild { pname = "company-ycmd"; - version = "20160504.202"; + version = "20160504.802"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; - sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; + rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f"; + sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -9195,7 +9217,7 @@ composable = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "composable"; - version = "20160519.1357"; + version = "20160519.1957"; src = fetchFromGitHub { owner = "paldepind"; repo = "composable.el"; @@ -9203,7 +9225,7 @@ sha256 = "0phqphcgygy2amwy6lm96mxxhwac03p177lyklksy71gwlr3zxb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/composable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/composable"; sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; name = "composable"; }; @@ -9216,7 +9238,7 @@ concurrent = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "concurrent"; - version = "20160109.2346"; + version = "20160110.546"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-deferred"; @@ -9224,7 +9246,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -9237,7 +9259,7 @@ config-parser = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "config-parser"; - version = "20160426.819"; + version = "20160426.1419"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-config-parser"; @@ -9245,7 +9267,7 @@ sha256 = "09vq7hcsw4027whn3xrnfz9hkgkakva619hyz0zfgpvppqah9n1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/config-parser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/config-parser"; sha256 = "0wncg1v4wccb9j16rcmwz8fcmrscj7knfisq0r4qqx3skrmpccah"; name = "config-parser"; }; @@ -9278,7 +9300,7 @@ conkeror-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "conkeror-minor-mode"; - version = "20150114.1104"; + version = "20150114.1704"; src = fetchFromGitHub { owner = "Malabarba"; repo = "conkeror-minor-mode"; @@ -9286,7 +9308,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -9299,7 +9321,7 @@ connection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "connection"; - version = "20140717.2329"; + version = "20140718.529"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -9307,7 +9329,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -9320,7 +9342,7 @@ contextual = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "contextual"; - version = "20160131.1337"; + version = "20160131.1937"; src = fetchFromGitHub { owner = "lshift-de"; repo = "contextual"; @@ -9328,7 +9350,7 @@ sha256 = "0ykc3lzdypf543dgm7jpi70z08kz9hwhn2gvp06ylb22id8b3fai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -9341,7 +9363,7 @@ control-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "control-mode"; - version = "20140218.907"; + version = "20140218.1507"; src = fetchFromGitHub { owner = "stephendavidmarsh"; repo = "control-mode"; @@ -9349,7 +9371,7 @@ sha256 = "1qsq543rb0z2fq716a2khs8zqyh13npzmbj58f00s8b3w3andpbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/control-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/control-mode"; sha256 = "1biq4p2w8rqcbvr09gxbchjqlaixjf1fzv7xv8lpv81dlhi7dgz6"; name = "control-mode"; }; @@ -9362,7 +9384,7 @@ corral = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "corral"; - version = "20160502.301"; + version = "20160502.901"; src = fetchFromGitHub { owner = "nivekuil"; repo = "corral"; @@ -9370,7 +9392,7 @@ sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -9383,15 +9405,15 @@ counsel = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "counsel"; - version = "20160519.1044"; + version = "20160603.1812"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04"; - sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5"; + rev = "c960de51ce4e868daedb91e523ff6267a3113c3a"; + sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -9401,10 +9423,52 @@ license = lib.licenses.free; }; }) {}; + counsel-dash = callPackage ({ counsel, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, helm-dash, lib, melpaBuild }: + melpaBuild { + pname = "counsel-dash"; + version = "20160524.852"; + src = fetchFromGitHub { + owner = "nathankot"; + repo = "counsel-dash"; + rev = "f88ca42c3f29584adb42cbae7f5f9c68af1e622b"; + sha256 = "15caglb1pvnrsgc17sfdfahkilrqba5r61118ny5fa3vgk9cbwcq"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-dash"; + sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk"; + name = "counsel-dash"; + }; + packageRequires = [ counsel dash dash-functional emacs helm-dash ]; + meta = { + homepage = "https://melpa.org/#/counsel-dash"; + license = lib.licenses.free; + }; + }) {}; + counsel-osx-app = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: + melpaBuild { + pname = "counsel-osx-app"; + version = "20160525.1205"; + src = fetchFromGitHub { + owner = "d12frosted"; + repo = "counsel-osx-app"; + rev = "e794630989c8df75f6c025846d73d911cc63cbd6"; + sha256 = "1h25wy945n173rv629d3q9s9q6yl72nnfr6xg27jjbnzf6v2i8lv"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-osx-app"; + sha256 = "0zc74szalyazbvi0lh3zy08kb8kzlwcwnc8d1sj5n23ymvvs5nn3"; + name = "counsel-osx-app"; + }; + packageRequires = [ emacs ivy ]; + meta = { + homepage = "https://melpa.org/#/counsel-osx-app"; + license = lib.licenses.free; + }; + }) {}; counsel-projectile = callPackage ({ counsel, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "counsel-projectile"; - version = "20160507.1322"; + version = "20160507.1922"; src = fetchFromGitHub { owner = "ericdanan"; repo = "counsel-projectile"; @@ -9412,7 +9476,7 @@ sha256 = "1jzqhbw6mid7p5s88lwk1vjb12fmmxc3zfkhdkvxiglmanqghq6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-projectile"; sha256 = "1gshphxaa902kq878rnizn3k1zycakwqkciz92z3xxb3bdyy0hnl"; name = "counsel-projectile"; }; @@ -9425,7 +9489,7 @@ coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: melpaBuild { pname = "coverage"; - version = "20160222.414"; + version = "20160222.1014"; src = fetchFromGitHub { owner = "trezona-lecomte"; repo = "coverage"; @@ -9433,7 +9497,7 @@ sha256 = "0glnvr10lwi17g44653qqswn9vnyh5r2nmpaa0y6lvfb952zn0k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; @@ -9446,7 +9510,7 @@ coverlay = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "coverlay"; - version = "20160507.1255"; + version = "20160507.1855"; src = fetchFromGitHub { owner = "twada"; repo = "coverlay.el"; @@ -9454,7 +9518,7 @@ sha256 = "1q6cx6kq68xxqcx7zd9l4szy038i5ifjb82fxs3sn5fv00q0j9vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverlay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverlay"; sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4"; name = "coverlay"; }; @@ -9467,7 +9531,7 @@ cp5022x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cp5022x"; - version = "20120323.1935"; + version = "20120324.35"; src = fetchFromGitHub { owner = "awasira"; repo = "cp5022x.el"; @@ -9475,7 +9539,7 @@ sha256 = "1z67x4a0aricd9q6i2w33k74alddl6w0rijjhzyxwml7ibhbvphz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cp5022x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cp5022x"; sha256 = "0v1jhkix01l299m67jag43rnps68m19zy83vvdglxa8dj3naz5dl"; name = "cp5022x"; }; @@ -9488,7 +9552,7 @@ cpputils-cmake = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cpputils-cmake"; - version = "20160515.403"; + version = "20160515.1003"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "cpputils-cmake"; @@ -9496,7 +9560,7 @@ sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -9509,7 +9573,7 @@ cql-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cql-mode"; - version = "20160413.2043"; + version = "20160414.243"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "cql-mode"; @@ -9517,7 +9581,7 @@ sha256 = "18nxsd1axd3m70p7cw4ifcj33z9v5w25v6g09q38maixymlad962"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cql-mode"; sha256 = "0wdal8w0i73xjak2g0wazs54z957f4lj4n8qdmzpcylzpl1lqd88"; name = "cql-mode"; }; @@ -9530,7 +9594,7 @@ crab = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }: melpaBuild { pname = "crab"; - version = "20150127.37"; + version = "20150127.637"; src = fetchFromGitHub { owner = "puffnfresh"; repo = "crab-emacs"; @@ -9538,7 +9602,7 @@ sha256 = "0y37fx4ghx8a74cp7ci6p5yfpji8g42hlah2xcwfnyw0qlpqfbnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crab"; sha256 = "1jz26bw2h7ahcb7y2qhpqrlfald244c92m6pvfrb0jg0z384i6aj"; name = "crab"; }; @@ -9551,7 +9615,7 @@ crappy-jsp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crappy-jsp-mode"; - version = "20140311.531"; + version = "20140311.1031"; src = fetchFromGitHub { owner = "magnars"; repo = "crappy-jsp-mode"; @@ -9559,7 +9623,7 @@ sha256 = "12g6l6xlbs9h24q5lk8yjgk91xqd7r3v7r6czy10r09cmfjmkxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crappy-jsp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crappy-jsp-mode"; sha256 = "00wj61maib77qldzq06l9v0pbvp9jih75w1xw0ry9mij0r6ca8ii"; name = "crappy-jsp-mode"; }; @@ -9572,7 +9636,7 @@ creds = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "creds"; - version = "20140510.1306"; + version = "20140510.1906"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-creds"; @@ -9580,7 +9644,7 @@ sha256 = "0l4bvk3m355b25d7pdnhczn3fckbq0rg2l4r0a0d94004ksvylqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -9593,7 +9657,7 @@ creole = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }: melpaBuild { pname = "creole"; - version = "20140924.1100"; + version = "20140924.1700"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elwikicreole"; @@ -9601,7 +9665,7 @@ sha256 = "18c4jfjnhb7asdhwj41g06cp9rz5xd7bbx2s1xvk6gahay27rlrv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creole"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creole"; sha256 = "1pqgm7m2gzkn65v3qic71c38qiira29cwx11l96qph8h8sf47zw5"; name = "creole"; }; @@ -9614,7 +9678,7 @@ creole-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "creole-mode"; - version = "20130721.2050"; + version = "20130722.250"; src = fetchFromGitHub { owner = "nicferrier"; repo = "creole-mode"; @@ -9622,7 +9686,7 @@ sha256 = "0japww5x89vd1ahjm2bc3biz6wxv94vvqq5fyyzkqsblgk5bys0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creole-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creole-mode"; sha256 = "1lj9a0bgn7lmc2wyjzzvmpaz1f1spj02l51ki2wydjbfhxq61k0s"; name = "creole-mode"; }; @@ -9632,10 +9696,31 @@ license = lib.licenses.free; }; }) {}; + cricbuzz = callPackage ({ enlive, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cricbuzz"; + version = "20160601.2239"; + src = fetchFromGitHub { + owner = "lepisma"; + repo = "cricbuzz.el"; + rev = "6f80f90a8916216b4c98d13f3605f50b5f6e64af"; + sha256 = "12qs9z1cnwhmks7x7fhymg21hbpjwgbdfz20pz2jgrl48hm6mmk5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cricbuzz"; + sha256 = "1ad2afyn3xny3rgb8yy6w87f33idlrmis1vx0b6s8ppafv9z74j0"; + name = "cricbuzz"; + }; + packageRequires = [ enlive ]; + meta = { + homepage = "https://melpa.org/#/cricbuzz"; + license = lib.licenses.free; + }; + }) {}; crm-custom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crm-custom"; - version = "20160116.1906"; + version = "20160117.106"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "crm-custom"; @@ -9643,7 +9728,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -9656,7 +9741,7 @@ crontab-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crontab-mode"; - version = "20090510.1655"; + version = "20090510.2255"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "crontab-mode"; @@ -9664,7 +9749,7 @@ sha256 = "1r9dhk8h8lq18vi0hjai8y4z42yjxg18786mcr2qs5m3q1ampf9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crontab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crontab-mode"; sha256 = "16qc2isvf6cgl5ihdbwmvv0gbhns4mkhd5lxkl6f8f6h0za054ci"; name = "crontab-mode"; }; @@ -9677,13 +9762,13 @@ crosshairs = callPackage ({ col-highlight, fetchurl, hl-line-plus, lib, melpaBuild, vline }: melpaBuild { pname = "crosshairs"; - version = "20151231.1538"; + version = "20151231.2138"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/crosshairs.el"; sha256 = "120hxk82i0r4qan4hfk9ldmw5a8bzv7p683lrnlcx9gyxgkia3am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crosshairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crosshairs"; sha256 = "1gf73li6q5rg1dimzihxq0rdxiqzbl2w78r1qzc9mxw3qj7azxqp"; name = "crosshairs"; }; @@ -9696,15 +9781,15 @@ crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "crux"; - version = "20160503.2333"; + version = "20160531.654"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "6ae09d05c7729a74b342017acbe54784abcee8f3"; - sha256 = "1vk1p0541fwama5dngrm15v2qw6gpzakh9gs6j739bckgky8nlhk"; + rev = "5b3c8155a9e9fe6f189645d175976026a2dc7b8d"; + sha256 = "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; @@ -9717,7 +9802,7 @@ cryptol-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cryptol-mode"; - version = "20140426.1304"; + version = "20140426.1904"; src = fetchFromGitHub { owner = "thoughtpolice"; repo = "cryptol-mode"; @@ -9725,7 +9810,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -9738,7 +9823,7 @@ cryptsy-public-api = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "cryptsy-public-api"; - version = "20141008.828"; + version = "20141008.1428"; src = fetchFromGitHub { owner = "Sodaware"; repo = "cryptsy-public-api.el"; @@ -9746,7 +9831,7 @@ sha256 = "0ry0087g1br3397js7a9iy6k2x6p0dgqlggxx9gaqhms7pmpq14b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptsy-public-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptsy-public-api"; sha256 = "1331nrx57136k09a7p6imv0k9g6w8ibpwn5xmv33dxc22hsmc41j"; name = "cryptsy-public-api"; }; @@ -9759,15 +9844,15 @@ csharp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "csharp-mode"; - version = "20160414.522"; + version = "20160604.909"; src = fetchFromGitHub { owner = "josteink"; repo = "csharp-mode"; - rev = "acaa9bb11e059e7035008e746db823efc46a4974"; - sha256 = "1i8bnb809487scrpgf8pfmmldsplpkqz4ik7xriixsr8gm0ag4pl"; + rev = "fe3ca7e036b5df57f5387ab897a10d41d32e3961"; + sha256 = "1rk9891nzq9biqsgfr7ykj3dm5yv7lpjhkgzk3sg384h8lix214w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -9780,7 +9865,7 @@ css-comb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "css-comb"; - version = "20160416.159"; + version = "20160416.759"; src = fetchFromGitHub { owner = "channikhabra"; repo = "css-comb.el"; @@ -9788,7 +9873,7 @@ sha256 = "0nvl6y90p9crk12j7aw0cqdjhli7xbrx3hqckxsnvrnxy4zax7nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/css-comb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/css-comb"; sha256 = "1axwrvbc3xl1ixhh72bii3hhbi9d96y6i1my1rpvwqyd6f7wb2cf"; name = "css-comb"; }; @@ -9801,7 +9886,7 @@ css-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "css-eldoc"; - version = "20150124.2223"; + version = "20150125.423"; src = fetchFromGitHub { owner = "zenozeng"; repo = "css-eldoc"; @@ -9809,7 +9894,7 @@ sha256 = "1mgc6bd0dzrp1dq1yj8m2qxjnpysd8ppdk2yp96d3zd07zllw4rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/css-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/css-eldoc"; sha256 = "1f079q3ccrr4drk2hvn4xs4vbrd3hg87xqbk3r9mmjvkagd1v7rf"; name = "css-eldoc"; }; @@ -9822,7 +9907,7 @@ cssfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cssfmt"; - version = "20150819.28"; + version = "20150819.628"; src = fetchFromGitHub { owner = "KeenS"; repo = "cssfmt.el"; @@ -9830,7 +9915,7 @@ sha256 = "0hyf4im7b8zka065daw7yxrb3670dpp8q92vd2gcsva1jla92h9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cssfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cssfmt"; sha256 = "12yq4dhyv3p5gxnd2w193ilpj2d3gx5ns09w0z1zkg7ax3a4q4b8"; name = "cssfmt"; }; @@ -9843,7 +9928,7 @@ cssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cssh"; - version = "20150810.1309"; + version = "20150810.1909"; src = fetchFromGitHub { owner = "dimitri"; repo = "cssh"; @@ -9851,7 +9936,7 @@ sha256 = "1xf2hy077frfz8qf91c0l0qppcjxzr4bsbb622bx6fidqkpa3a1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cssh"; sha256 = "10yvvyzqr06jvijmzis9clb1slzp2mn80yclis8wvrmg4p8djljk"; name = "cssh"; }; @@ -9863,13 +9948,13 @@ }) {}; csv-nav = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "csv-nav"; - version = "20130407.1420"; + version = "20130407.2020"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/csv-nav.el"; sha256 = "15rfg3326xcs3zj3siy9rn7yff101vfch1srskdi2650c3l3krva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csv-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csv-nav"; sha256 = "0626vsm2f5zc2wi5pyx4xrwcr4ai8w9a3l7gi9883smvayr619sj"; name = "csv-nav"; }; @@ -9882,7 +9967,7 @@ ctable = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctable"; - version = "20140304.1959"; + version = "20140305.159"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-ctable"; @@ -9890,7 +9975,7 @@ sha256 = "07vasdlai49qs0nsmq2cz1kcq1adqyarv8199imgwwcbh4vn7dqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -9902,14 +9987,14 @@ }) {}; ctags = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctags"; - version = "20110911.604"; + version = "20110911.1204"; src = fetchhg { url = "https://bitbucket.com/semente/ctags.el"; rev = "afb16c5b2530"; sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -9922,7 +10007,7 @@ ctags-update = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctags-update"; - version = "20150427.2314"; + version = "20150428.514"; src = fetchFromGitHub { owner = "jixiuf"; repo = "helm-etags-plus"; @@ -9930,7 +10015,7 @@ sha256 = "1va394nls4yi77rgm0kz5r00xiidj6lwcabhqxisz08m3h8gfkh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -9943,7 +10028,7 @@ ctl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ctl-mode"; - version = "20151202.506"; + version = "20151202.1106"; src = fetchFromGitHub { owner = "yyr"; repo = "emacs-grads"; @@ -9951,7 +10036,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctl-mode"; sha256 = "0fydq779b0y6hmh8srfdimr5rl9mk3sj08rbvlljxv3kqv5ajczj"; name = "ctl-mode"; }; @@ -9964,7 +10049,7 @@ ctxmenu = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }: melpaBuild { pname = "ctxmenu"; - version = "20140303.1642"; + version = "20140303.2242"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-ctxmenu"; @@ -9972,7 +10057,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -9985,7 +10070,7 @@ cucumber-goto-step = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }: melpaBuild { pname = "cucumber-goto-step"; - version = "20131210.19"; + version = "20131210.619"; src = fetchFromGitHub { owner = "gstamp"; repo = "cucumber-goto-step"; @@ -9993,7 +10078,7 @@ sha256 = "184plai32sn0indvi1dma6ykz907zgnrdyxdw6f5mghwca96g5kx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cucumber-goto-step"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cucumber-goto-step"; sha256 = "1ydsd455dvaw6a180b6570bfgg0kxn01sn6cb57smqj835am6gx8"; name = "cucumber-goto-step"; }; @@ -10006,7 +10091,7 @@ cuda-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cuda-mode"; - version = "20151213.2221"; + version = "20151214.421"; src = fetchFromGitHub { owner = "chachi"; repo = "cuda-mode"; @@ -10014,7 +10099,7 @@ sha256 = "1ms0z5zplcbdwwdbgsjsbm32i57z9i2i8j9y3wm0pwzyz4zr36zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -10026,13 +10111,13 @@ }) {}; cursor-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cursor-chg"; - version = "20151231.1540"; + version = "20151231.2140"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cursor-chg.el"; sha256 = "1w0msh4mfhwglkwgb8ksqfdzbd1bvspllydnjzhc0yl3s7qrifbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-chg"; sha256 = "0d1ilall8c1y4w014wks9yx4fz743hvx5lc8jqxxlrq7pmqyqdxk"; name = "cursor-chg"; }; @@ -10045,15 +10130,15 @@ cursor-in-brackets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cursor-in-brackets"; - version = "20160520.538"; + version = "20160603.1316"; src = fetchFromGitHub { owner = "yascentur"; repo = "cursor-in-brackets-el"; - rev = "219ae4ae0533436c95cee47b68bc46ba78046fb7"; - sha256 = "1xp2zrn46b7p149ldmcx4r32x04kh2fxxidwl4ssrxx65yi1qg8d"; + rev = "3c085913eff08eddcc8fa4ed6438d60da59d7bc2"; + sha256 = "06q46hmspgq1g3dkpim3fnz1gnzpqywwqcg5yism2lc6qj4zmanm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-in-brackets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-in-brackets"; sha256 = "1p4p0v7x4i4i2z56dw4xf1phckanrwjciifi0zqba36xd4zxgx8f"; name = "cursor-in-brackets"; }; @@ -10066,7 +10151,7 @@ cursor-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cursor-test"; - version = "20131207.1232"; + version = "20131207.1832"; src = fetchFromGitHub { owner = "ainame"; repo = "cursor-test.el"; @@ -10074,7 +10159,7 @@ sha256 = "0wmnhizv4jfcl1w9za4ydxf6xwxgm5vwmn1zi5vn70zmv4d6r49l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cursor-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cursor-test"; sha256 = "1c1d5xq4alamlwyqxjx557aykz5dw87acp0lyglsrzzkdynbwlb1"; name = "cursor-test"; }; @@ -10086,13 +10171,13 @@ }) {}; cus-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cus-edit-plus"; - version = "20151231.1541"; + version = "20160529.2337"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cus-edit+.el"; - sha256 = "1p0kacbw5zfrd7zplhlh7j1890spvn8p0bryvqqmyf8w5873pcmh"; + sha256 = "0d62nv8i208ysi5cg906p9ribpnrn2jvzdcwm35km4i0q0bp6yg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cus-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cus-edit+"; sha256 = "1kazcdfajcnrzvhsgsmwwx96rkry0dglprrc02hbd7ky1fppp4sz"; name = "cus-edit-plus"; }; @@ -10105,7 +10190,7 @@ cyberpunk-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cyberpunk-theme"; - version = "20160121.2012"; + version = "20160122.212"; src = fetchFromGitHub { owner = "n3mo"; repo = "cyberpunk-theme.el"; @@ -10113,7 +10198,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -10126,7 +10211,7 @@ cycbuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycbuf"; - version = "20131203.1537"; + version = "20131203.2137"; src = fetchFromGitHub { owner = "martinp26"; repo = "cycbuf"; @@ -10134,7 +10219,7 @@ sha256 = "1d5i8sm1xrsp4v4myidfyb40hm3wp7hgva7dizg9gbb7prmn1p5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycbuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycbuf"; sha256 = "0gyj48h5wgjawqq3j4hgk5a8d23nffmhd1q53kg7b9vfsda51hbw"; name = "cycbuf"; }; @@ -10147,7 +10232,7 @@ cycle-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycle-resize"; - version = "20160521.1157"; + version = "20160521.1757"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "cycle-resize"; @@ -10155,7 +10240,7 @@ sha256 = "1bmdjr99g50dzr4y1jxixfjhqmhrzblmpiyjhh5l5gqmdhammm4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycle-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycle-resize"; sha256 = "0vp57plwqx4nf3pbv5g4frjriq8niiia9xc3bv6c3gzd4a0zm7xi"; name = "cycle-resize"; }; @@ -10168,7 +10253,7 @@ cycle-themes = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cycle-themes"; - version = "20150402.2309"; + version = "20150403.509"; src = fetchFromGitHub { owner = "toroidal-code"; repo = "cycle-themes.el"; @@ -10176,7 +10261,7 @@ sha256 = "125s6vwbb9zpx6h3vrxnn7nr8pb45vhxd70ba2r3f87dlxah93am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cycle-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cycle-themes"; sha256 = "1whp9q26sgyf59wygbrvdf9gc94bn4dmhr2f2qivpajx550fjfbc"; name = "cycle-themes"; }; @@ -10188,13 +10273,13 @@ }) {}; cygwin-mount = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "cygwin-mount"; - version = "20131111.1646"; + version = "20131111.2246"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/cygwin-mount.el"; sha256 = "09my4gj3qm9rdpk8lg6n6ki8ywj7kwzwd4hhgwascfnfi1hzwdvw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cygwin-mount"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cygwin-mount"; sha256 = "0ik2c8ab9bsx58mgcv511p50h45cpv7455n4b0kri83sx9xf5abb"; name = "cygwin-mount"; }; @@ -10207,15 +10292,15 @@ cyphejor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cyphejor"; - version = "20160106.144"; + version = "20160531.1805"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "cyphejor"; - rev = "86b53dcc66aa0c10132392161999ae52d76a6fe1"; - sha256 = "1xcd8j5chh5j3fibi8bg2il6r09vza5xlb5fqm9j8sg3vkab26z8"; + rev = "9e1cdaaaf86f3acae074e40d96de008115d81ef9"; + sha256 = "04add8i0g4x5kzi1yd49i5viq9i2f5r5gzq33k05q6rimsp2ga02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -10228,7 +10313,7 @@ cypher-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cypher-mode"; - version = "20151110.642"; + version = "20151110.1242"; src = fetchFromGitHub { owner = "fxbois"; repo = "cypher-mode"; @@ -10236,7 +10321,7 @@ sha256 = "0vbcq807jpjssabmyjcdkpp6nnx1288is2c6x79dkrviw2xxw3qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cypher-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cypher-mode"; sha256 = "174rfbm7yzkznkfjmh9bdnm5fgqv9bjwm85h39317pv1g8c3mgv0"; name = "cypher-mode"; }; @@ -10249,15 +10334,15 @@ cython-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cython-mode"; - version = "20140705.1529"; + version = "20140705.2129"; src = fetchFromGitHub { owner = "cython"; repo = "cython"; - rev = "33ff4edd971ee55452f8c5ce23e6e3d99d098abf"; - sha256 = "0h0rf9mn4ialy7fns1h46m0y8i5fnqgsl7ma1dcla064w3ddh47y"; + rev = "2f967a63d6ce9fbf9a1b66ea3d12b59011ab473f"; + sha256 = "04lgjp59a22jndsyvrnrnlaz78gyxzhc3jvgspmkbcdjajm4ljja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -10270,7 +10355,7 @@ czech-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "czech-holidays"; - version = "20160113.1252"; + version = "20160113.1852"; src = fetchFromGitHub { owner = "hydandata"; repo = "czech-holidays"; @@ -10278,7 +10363,7 @@ sha256 = "1ck1a61m0kjynqwzbw9hnc7y2a6gd6l1430wm7mw3qqsq959qwm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/czech-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/czech-holidays"; sha256 = "10c0zscbn7pr9xqdqksy4kh0cxjg9bhw8p4qzlk18fd4c8rhqn84"; name = "czech-holidays"; }; @@ -10291,7 +10376,7 @@ d-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "d-mode"; - version = "20160504.1255"; + version = "20160504.1855"; src = fetchFromGitHub { owner = "Emacs-D-Mode-Maintainers"; repo = "Emacs-D-Mode"; @@ -10299,7 +10384,7 @@ sha256 = "1568jqcrw3xks1pvvn6dyn6jiam26vmp5m53jf8q4165ic2lazi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -10312,7 +10397,7 @@ dactyl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dactyl-mode"; - version = "20140906.1325"; + version = "20140906.1925"; src = fetchFromGitHub { owner = "luxbock"; repo = "dactyl-mode"; @@ -10320,7 +10405,7 @@ sha256 = "0fp40cyamchc9qq5vbpxgq3yp6vs8p3ncg46mjzr54psy3fc86dm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dactyl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dactyl-mode"; sha256 = "0ppcabddcpwshfd04x42nbrbkagbyi1bg4vslysnlxn4kaxjs7pm"; name = "dactyl-mode"; }; @@ -10333,7 +10418,7 @@ dakrone-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dakrone-theme"; - version = "20140211.2345"; + version = "20140212.545"; src = fetchFromGitHub { owner = "dakrone"; repo = "dakrone-theme"; @@ -10341,7 +10426,7 @@ sha256 = "0fd0h07m42q2h1ggsjra20kzv209rpb4apjv408h2dxqm8sy0jiy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dakrone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dakrone-theme"; sha256 = "0ma4rfmgwd6k24jzn6pgk46b88jfix7mz0ib7c7r90h5vmpiq814"; name = "dakrone-theme"; }; @@ -10354,7 +10439,7 @@ danneskjold-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "danneskjold-theme"; - version = "20160409.1317"; + version = "20160409.1917"; src = fetchFromGitHub { owner = "rails-to-cosmos"; repo = "danneskjold-theme"; @@ -10362,7 +10447,7 @@ sha256 = "1shysnf34qxd5rabad14a26m5id88g4wl4y4mwap53l2p3mcxq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/danneskjold-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/danneskjold-theme"; sha256 = "0cwab7qp293g92n9mjjz2vpg1pz2q3d40hfszf29rci89wsf3yxl"; name = "danneskjold-theme"; }; @@ -10372,19 +10457,19 @@ license = lib.licenses.free; }; }) {}; - darcula-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darcula-theme"; - version = "20160305.521"; - src = fetchFromGitHub { + version = "20160305.1121"; + src = fetchFromGitLab { owner = "fommil"; - repo = "darcula-theme-emacs"; + repo = "emacs-darcula-theme"; rev = "eb799be242a9420a8e6730d659939d4703d44b43"; sha256 = "128a9iv1vrassmk4sy4cs4nj6lggr5v4rhjj04v1xssj5nn5flxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darcula-theme"; - sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darcula-theme"; + sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3"; name = "darcula-theme"; }; packageRequires = []; @@ -10396,7 +10481,7 @@ dark-krystal-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-krystal-theme"; - version = "20141116.201"; + version = "20141116.801"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-dark-krystal-theme"; @@ -10404,7 +10489,7 @@ sha256 = "07w5aycgaps904q8lk52d0g28wxq41c82xgl5mw2q56n3s5iixfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-krystal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-krystal-theme"; sha256 = "056aql35502sgvdpbgphpqdxzbjf4ay01rra6pm11c1dya8avv0j"; name = "dark-krystal-theme"; }; @@ -10417,7 +10502,7 @@ dark-mint-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-mint-theme"; - version = "20160302.142"; + version = "20160302.742"; src = fetchFromGitHub { owner = "shaunvxc"; repo = "dark-mint-theme"; @@ -10425,7 +10510,7 @@ sha256 = "052k8mqxx8lkadxyz6rwa7l741rwbd1blk2ggpsj2s1g6p9l68a1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-mint-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-mint-theme"; sha256 = "0rljpwycarbn8rnac9vz7n23j69wmx35gn5dx77v0f0ws8ni4k9m"; name = "dark-mint-theme"; }; @@ -10438,7 +10523,7 @@ dark-souls = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dark-souls"; - version = "20140314.728"; + version = "20140314.1228"; src = fetchFromGitHub { owner = "tomjakubowski"; repo = "dark-souls.el"; @@ -10446,7 +10531,7 @@ sha256 = "1w0y2j0j9n107dbk7ksr9bipshjfs9dk08qbs9m6h5aqh4hmwa4r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dark-souls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dark-souls"; sha256 = "1ilsn657mpl7v8vkbzqf3gp0gmvy0dgynfsn8w4cb49qaiy337xc"; name = "dark-souls"; }; @@ -10459,7 +10544,7 @@ darkburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkburn-theme"; - version = "20151003.400"; + version = "20151003.1000"; src = fetchFromGitHub { owner = "gorauskas"; repo = "darkburn-theme"; @@ -10467,7 +10552,7 @@ sha256 = "19vrxfzhi0sqf7frzjx5z02d65r2jp1w2nhhf0527g7baid5hqvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkburn-theme"; sha256 = "18hwdnwmkf640vcyx8d66i424wwazbzjq3k0w0xjmwsn2mpyhm9w"; name = "darkburn-theme"; }; @@ -10480,7 +10565,7 @@ darkmine-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkmine-theme"; - version = "20160406.224"; + version = "20160406.824"; src = fetchFromGitHub { owner = "pierre-lecocq"; repo = "darkmine-theme"; @@ -10488,7 +10573,7 @@ sha256 = "0d2g4iyp8gyfrcc1gkvl40p1shlw1sadswzhry0m1lgbyxiiklrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkmine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkmine-theme"; sha256 = "06vzldyqlmfd11g8dqrqh5x244ikfa20qwpsmbgsiry3041k8iw5"; name = "darkmine-theme"; }; @@ -10501,7 +10586,7 @@ darkokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darkokai-theme"; - version = "20160512.1116"; + version = "20160512.1716"; src = fetchFromGitHub { owner = "sjrmanning"; repo = "darkokai"; @@ -10509,7 +10594,7 @@ sha256 = "1603pk88mnzvwv75wdqk83s0wba4q2b7cmg5bwn2yncxmirmh3lq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darkokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darkokai-theme"; sha256 = "0jw71xl4ihkyq4m0w8c35x5hr8ic07wcabmvpwmvspnj8hkfccwf"; name = "darkokai-theme"; }; @@ -10522,15 +10607,15 @@ darktooth-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darktooth-theme"; - version = "20160406.1124"; + version = "20160525.750"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-theme-darktooth"; - rev = "b9c8bd4d513b422412be92bb807782905001b101"; - sha256 = "0qqak05w8y5734d78wc22l82y9riz12mxsg0b4zrjbd2l16bxf1c"; + rev = "abdcab39f38438b80fddaa326c634b8606bc9cf1"; + sha256 = "0z1d15dgs4iymkh744bnqpq8b32d94244m4riq07lh4180wkdglq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -10543,7 +10628,7 @@ dart-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "dart-mode"; - version = "20160212.1421"; + version = "20160212.2021"; src = fetchFromGitHub { owner = "nex3"; repo = "dart-mode"; @@ -10551,7 +10636,7 @@ sha256 = "0ylzgaf4g0fh16rc061iaw3jrl2sjiwpr4x1ndk2bp0j14n7hqid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -10564,15 +10649,15 @@ dash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash"; - version = "20160510.1427"; + version = "20160510.2027"; src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "eef3bb05bdc09cc8f02b748f8d04274ebc74c22d"; - sha256 = "1xahb9zf70qqadpfja490127fjhf9i0q3mdx6ymwhqzwgdlppqm7"; + rev = "012b3bca9fef526bfe8aac73763e2c0b9622e1da"; + sha256 = "02zj2g9wcs213kbd21n40ha3dbjqyclyr26wbayqwqq9dpm5i8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -10585,7 +10670,7 @@ dash-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash-at-point"; - version = "20140626.335"; + version = "20140626.935"; src = fetchFromGitHub { owner = "stanaka"; repo = "dash-at-point"; @@ -10593,7 +10678,7 @@ sha256 = "0zd50sr51mmvndjb9qfc3sn502nhc939rhd454jbkmlrzqsxvphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-at-point"; sha256 = "0x4nq42nbh2qgbg111lgbknc7w7m7lxd14mp9s8dcrpwsaxz960m"; name = "dash-at-point"; }; @@ -10606,15 +10691,15 @@ dash-functional = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dash-functional"; - version = "20150828.713"; + version = "20160601.1918"; src = fetchFromGitHub { owner = "magnars"; repo = "dash.el"; - rev = "eef3bb05bdc09cc8f02b748f8d04274ebc74c22d"; - sha256 = "1xahb9zf70qqadpfja490127fjhf9i0q3mdx6ymwhqzwgdlppqm7"; + rev = "012b3bca9fef526bfe8aac73763e2c0b9622e1da"; + sha256 = "02zj2g9wcs213kbd21n40ha3dbjqyclyr26wbayqwqq9dpm5i8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -10627,7 +10712,7 @@ date-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "date-at-point"; - version = "20150108.718"; + version = "20150108.1318"; src = fetchFromGitHub { owner = "alezost"; repo = "date-at-point.el"; @@ -10635,7 +10720,7 @@ sha256 = "0l4z9rjla4xvm2hmp07xil69q1cg0v8iff0ya41svaqr944qf7hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -10648,7 +10733,7 @@ date-field = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "date-field"; - version = "20141128.2005"; + version = "20141129.205"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-date-field"; @@ -10656,7 +10741,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -10669,7 +10754,7 @@ datetime = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "datetime"; - version = "20160521.1603"; + version = "20160521.2203"; src = fetchFromGitHub { owner = "doublep"; repo = "datetime"; @@ -10677,7 +10762,7 @@ sha256 = "0dz65zw7zi4kjldxs3syjxnss8kaf7hx0v6a22jplcsy35iai6xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime"; sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850"; name = "datetime"; }; @@ -10690,7 +10775,7 @@ datetime-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "datetime-format"; - version = "20160520.622"; + version = "20160520.1222"; src = fetchFromGitHub { owner = "zonuexe"; repo = "emacs-datetime"; @@ -10698,7 +10783,7 @@ sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime-format"; sha256 = "0v9jp54qxzj2scbmr35xi6bz16q8bq6hmyxdglb3a4qbf4zgvwpi"; name = "datetime-format"; }; @@ -10711,7 +10796,7 @@ datomic-snippets = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s, yasnippet }: melpaBuild { pname = "datomic-snippets"; - version = "20130707.1615"; + version = "20130707.2215"; src = fetchFromGitHub { owner = "magnars"; repo = "datomic-snippets"; @@ -10719,7 +10804,7 @@ sha256 = "0ry7magy9x63xv2apjbpgszp0slch92g23gqwl4rd564qafajmf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datomic-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datomic-snippets"; sha256 = "0lax0pj4k9c9n0gmrvil240pc9p25535q3n5m8nb2ar4sli8dn8r"; name = "datomic-snippets"; }; @@ -10732,7 +10817,7 @@ dayone = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, mustache, uuid }: melpaBuild { pname = "dayone"; - version = "20160105.740"; + version = "20160105.1340"; src = fetchFromGitHub { owner = "mori-dev"; repo = "emacs-dayone"; @@ -10740,7 +10825,7 @@ sha256 = "1j0mk8vyr6sniliq0ix77jldx8vzl73nd5yhh82klzgyymal58ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dayone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dayone"; sha256 = "0hi09dj00h6g5r84jxglwkgbijhfxknx4mq5gcl5jzjis5affk8l"; name = "dayone"; }; @@ -10753,7 +10838,7 @@ db = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }: melpaBuild { pname = "db"; - version = "20140421.1711"; + version = "20140421.2311"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-db"; @@ -10761,7 +10846,7 @@ sha256 = "0syv4kr319d34yqi4q61b8jh5yy22wvd148x1m3pc511znh2ry5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/db"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/db"; sha256 = "05jhga9n6gh1bmj8gda14sb703gn7jgjlvy55mlr5kdb2z3rqw1n"; name = "db"; }; @@ -10774,7 +10859,7 @@ db-pg = callPackage ({ db, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }: melpaBuild { pname = "db-pg"; - version = "20130131.1402"; + version = "20130131.2002"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-db-pg"; @@ -10782,7 +10867,7 @@ sha256 = "15r0qwjkl33p8kh2k5kxz9wnbkv1k470b1h0i6svvljkx9ynk68a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/db-pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/db-pg"; sha256 = "06nfibw01ijv7nr0m142y80jbbpg9kk1dh19s5wq7i6fqf7g08xg"; name = "db-pg"; }; @@ -10795,7 +10880,7 @@ ddskk = callPackage ({ ccc, cdb, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ddskk"; - version = "20160315.1008"; + version = "20160315.1508"; src = fetchFromGitHub { owner = "skk-dev"; repo = "ddskk"; @@ -10803,7 +10888,7 @@ sha256 = "1mqz83yqgad7p5ssjil10w0bw0vm642xp18ms4id8pzcbxz8ygsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ddskk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ddskk"; sha256 = "01pb00p126q7swsl12yjrhghln2wgaj65jhjr0k7dkk64x4psyc9"; name = "ddskk"; }; @@ -10816,7 +10901,7 @@ debpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "debpaste"; - version = "20160113.1847"; + version = "20160114.47"; src = fetchFromGitHub { owner = "alezost"; repo = "debpaste.el"; @@ -10824,7 +10909,7 @@ sha256 = "1darxggvyv100cfb7imyzvgif8a09pnky62pf3bl2612hhvaijfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/debpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/debpaste"; sha256 = "1vgirfy4vdqkhllnnmcplhwmzqqwca3la5jfvvansykqriwbq9lw"; name = "debpaste"; }; @@ -10837,7 +10922,7 @@ debug-print = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "debug-print"; - version = "20140125.1919"; + version = "20140126.119"; src = fetchFromGitHub { owner = "kenoss"; repo = "debug-print"; @@ -10845,7 +10930,7 @@ sha256 = "1n99nrp42slmyp5228d1nz174bysjn122jgs8fn1x0qxywg7jyxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/debug-print"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/debug-print"; sha256 = "01dsqq2qdsbxny6j9dhvg770493awxjhk1m85c14ysgh6sl199rm"; name = "debug-print"; }; @@ -10858,7 +10943,7 @@ decide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "decide"; - version = "20160314.1548"; + version = "20160314.2048"; src = fetchFromGitHub { owner = "lifelike"; repo = "decide-mode"; @@ -10866,7 +10951,7 @@ sha256 = "05n57djagbkm8im4168d5d2fr2ibfnckya7qzrca1f9rmm0ah15j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decide"; sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; name = "decide"; }; @@ -10879,7 +10964,7 @@ decl = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "decl"; - version = "20151231.2323"; + version = "20160101.523"; src = fetchFromGitHub { owner = "preetpalS"; repo = "decl.el"; @@ -10887,7 +10972,7 @@ sha256 = "01bafkc99g9vi45y95mi3sqin2lsfw885z63f7llpqvnfav86n4y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decl"; sha256 = "0wdhmp226wmrjvjgpbz8ihvhxxv3rrxh97sdqm3mgsav3n071n6k"; name = "decl"; }; @@ -10900,7 +10985,7 @@ dedicated = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dedicated"; - version = "20090428.1531"; + version = "20090428.2131"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "dedicated"; @@ -10908,7 +10993,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -10921,7 +11006,7 @@ dedukti-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dedukti-mode"; - version = "20160329.1302"; + version = "20160329.1902"; src = fetchFromGitHub { owner = "rafoo"; repo = "dedukti-mode"; @@ -10929,7 +11014,7 @@ sha256 = "1lnvr1rxgf1i0dh1gqlkghz6r4lm1llpv3vhky313220ibxrpsvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedukti-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedukti-mode"; sha256 = "17adfmrhfks5f45ddr6ygjq870ac50vfzc5872ycv414zg0w4sa9"; name = "dedukti-mode"; }; @@ -10942,7 +11027,7 @@ default-text-scale = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "default-text-scale"; - version = "20150227.1256"; + version = "20150227.1856"; src = fetchFromGitHub { owner = "purcell"; repo = "default-text-scale"; @@ -10950,7 +11035,7 @@ sha256 = "1ysv1q7n7k2l4x8x7hlzmxmawyxl5lx627sbdv3phkvjh5zccsm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -10963,7 +11048,7 @@ deferred = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "deferred"; - version = "20160109.2346"; + version = "20160110.546"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-deferred"; @@ -10971,7 +11056,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -10984,7 +11069,7 @@ define-word = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "define-word"; - version = "20150709.1523"; + version = "20150709.2123"; src = fetchFromGitHub { owner = "abo-abo"; repo = "define-word"; @@ -10992,7 +11077,7 @@ sha256 = "02i621yq2ih0zp7mna8iykj41prv77hvcadz7rx8c942zyvjzxqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -11005,7 +11090,7 @@ defproject = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "defproject"; - version = "20151201.1719"; + version = "20151201.2319"; src = fetchFromGitHub { owner = "kotfic"; repo = "defproject"; @@ -11013,7 +11098,7 @@ sha256 = "07jzr571q02l0lg5d40rnmzg16hmybi1nkjgslmvlx46z3c4xvyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/defproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/defproject"; sha256 = "1gld2fkssrjh4smpp54017549d6aw3n1zisp5s4kkb6cmszwj5gm"; name = "defproject"; }; @@ -11025,14 +11110,14 @@ }) {}; deft = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "deft"; - version = "20160427.2352"; + version = "20160602.1639"; src = fetchgit { url = "git://jblevins.org/git/deft.git"; - rev = "cf530ebfebbb2b9ca02c30d05ab6bc3016d4d12d"; - sha256 = "0hgz4n509k69qxy5nhwa5w4q1i5sprhk212n52wdzjfzdrxsn1c0"; + rev = "a040f0490285410273f00e38fc7a26f0e9a9f109"; + sha256 = "01vfxkmjbvm8nck4rapxvz6ws2kw42ll9347pn4lmp3y3pann0q9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -11044,13 +11129,13 @@ }) {}; delight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "delight"; - version = "20160305.1851"; + version = "20160306.51"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/delight.el"; sha256 = "0lqg23mpzcbcfkn84wm8i1bma73wpyh3m5f0zjrrzbwpgsmw8fqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/delight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/delight"; sha256 = "1d9m5k18k73vhidwd50mcbq7mlvwdn4sb9ih8r5gri9a9whi2nkj"; name = "delight"; }; @@ -11063,7 +11148,7 @@ delim-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "delim-kill"; - version = "20100517.220"; + version = "20100517.820"; src = fetchFromGitHub { owner = "thomas11"; repo = "delim-kill"; @@ -11071,7 +11156,7 @@ sha256 = "06a20sd8nc273azrgha40l1fbqvv9qmxsmkjiqbf6dcf1blkwjyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/delim-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/delim-kill"; sha256 = "1pplc456771hi52ap1p87y7pabxlvm6raszcxjvnxff3xzw56pig"; name = "delim-kill"; }; @@ -11084,7 +11169,7 @@ demangle-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "demangle-mode"; - version = "20151109.1553"; + version = "20151109.2153"; src = fetchFromGitHub { owner = "liblit"; repo = "demangle-mode"; @@ -11092,7 +11177,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -11105,15 +11190,15 @@ demo-it = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "demo-it"; - version = "20160413.1531"; + version = "20160525.1546"; src = fetchFromGitHub { owner = "howardabrams"; repo = "demo-it"; - rev = "85b6dcdbb0d257afc0ee4455340432d190aa6114"; - sha256 = "0bilf8q2y28vymvi796qs20whw12wi2n2apyxwgcghwmlddzz29c"; + rev = "cc88b9b2b73dedbe60f5767ac0d1cbedeb58eb08"; + sha256 = "12sdba2c2zh91cmv4p2naq9b2y6l7ygizb88l4m9g0jsvwx6brvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demo-it"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demo-it"; sha256 = "063v115xy9mcga4qv16v538k12rn9maz92khzwa35wx56bwz4gg7"; name = "demo-it"; }; @@ -11126,7 +11211,7 @@ describe-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yabin }: melpaBuild { pname = "describe-number"; - version = "20151031.2055"; + version = "20151101.155"; src = fetchFromGitHub { owner = "netromdk"; repo = "describe-number"; @@ -11134,7 +11219,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -11147,7 +11232,7 @@ desktop-plus = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-plus"; - version = "20160330.912"; + version = "20160330.1512"; src = fetchFromGitHub { owner = "ffevotte"; repo = "desktop-plus"; @@ -11155,7 +11240,7 @@ sha256 = "10f5dkrwfd6a1ab98j2kywkh1h01pnanvj2i7fv9a9vxnmiywrcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -11168,7 +11253,7 @@ desktop-registry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "desktop-registry"; - version = "20140119.1643"; + version = "20140119.2243"; src = fetchFromGitHub { owner = "ryuslash"; repo = "desktop-registry"; @@ -11176,7 +11261,7 @@ sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop-registry"; sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; @@ -11189,7 +11274,7 @@ devdocs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "devdocs"; - version = "20160412.1508"; + version = "20160412.2108"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "devdocs.el"; @@ -11197,7 +11282,7 @@ sha256 = "0m4gw6jsdj8pq6wxvvczwvp8pcjnz57ybnb9zib4bq1cajny42zg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/devdocs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/devdocs"; sha256 = "04a1yspk3dwx0lzyg03lrbvig4g6sqmavzwicshdyr7q1bny7ikn"; name = "devdocs"; }; @@ -11230,7 +11315,7 @@ dictcc = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "dictcc"; - version = "20151221.657"; + version = "20151221.1257"; src = fetchFromGitHub { owner = "cqql"; repo = "dictcc.el"; @@ -11238,7 +11323,7 @@ sha256 = "0b8yg03h5arfl5rlzlg2a6q7nhx452mdyngizjzxlvkmrqnlra4v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictcc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictcc"; sha256 = "0x1y742hb3dm7xmh5810dlqki38kybw68rmg9adcchm2rn86jqlm"; name = "dictcc"; }; @@ -11251,7 +11336,7 @@ dictionary = callPackage ({ connection, fetchFromGitHub, fetchurl, lib, link, melpaBuild }: melpaBuild { pname = "dictionary"; - version = "20140717.2329"; + version = "20140718.529"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -11259,7 +11344,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -11272,7 +11357,7 @@ diff-hl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diff-hl"; - version = "20160517.1931"; + version = "20160518.131"; src = fetchFromGitHub { owner = "dgutov"; repo = "diff-hl"; @@ -11280,7 +11365,7 @@ sha256 = "1rlgyw1c0xz0vw10pq2wnczl5r2qhm5fcilmysvlfcq0nxcsd80q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -11293,7 +11378,7 @@ diffscuss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diffscuss-mode"; - version = "20141014.1957"; + version = "20141015.157"; src = fetchFromGitHub { owner = "hut8labs"; repo = "diffscuss"; @@ -11301,7 +11386,7 @@ sha256 = "14ccak3cmv36pd085188lypal9gd3flyikcrxn0wi6hn60w2dgvr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffscuss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffscuss-mode"; sha256 = "06jd7wh4yzryz0yjwa4a0xddz7srl5mif8ff1wvcpxsb66m2zbvh"; name = "diffscuss-mode"; }; @@ -11314,7 +11399,7 @@ diffview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diffview"; - version = "20150929.111"; + version = "20150929.711"; src = fetchFromGitHub { owner = "mgalgs"; repo = "diffview-mode"; @@ -11322,7 +11407,7 @@ sha256 = "0diw887x4q7kbgdvxbbnxdw51z33kqwxw3v9m45fczxbywyi4cxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -11335,7 +11420,7 @@ digistar-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "digistar-mode"; - version = "20160218.1455"; + version = "20160218.2055"; src = fetchFromGitHub { owner = "retroj"; repo = "digistar-mode"; @@ -11343,7 +11428,7 @@ sha256 = "0qxdfv1p0140fqcxh677hhxwpx1fihvwhvh76pysn4q4pcfr6ldr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -11356,7 +11441,7 @@ dim = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dim"; - version = "20151226.415"; + version = "20151226.1015"; src = fetchFromGitHub { owner = "alezost"; repo = "dim.el"; @@ -11364,7 +11449,7 @@ sha256 = "17jfmgyras32w9xr8fldqj924bijgng4bjg9fy6ckwb3mgihyil8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -11377,7 +11462,7 @@ dim-autoload = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dim-autoload"; - version = "20160521.1028"; + version = "20160521.1628"; src = fetchFromGitHub { owner = "tarsius"; repo = "dim-autoload"; @@ -11385,7 +11470,7 @@ sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -11398,7 +11483,7 @@ diminish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diminish"; - version = "20151215.1215"; + version = "20151215.1815"; src = fetchFromGitHub { owner = "myrjola"; repo = "diminish.el"; @@ -11406,7 +11491,7 @@ sha256 = "04vfc5zgcjp0pax5zk1x98ivx5g349c5g3748lb9pgsijqaprgg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -11419,7 +11504,7 @@ dionysos = callPackage ({ alert, cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild, pkg-info, s }: melpaBuild { pname = "dionysos"; - version = "20151013.403"; + version = "20151013.1003"; src = fetchFromGitHub { owner = "nlamirault"; repo = "dionysos"; @@ -11427,7 +11512,7 @@ sha256 = "1ldqxdwy6r0fd2vh0ckkhgpincvybghavi8c7vvyd24j91i57y2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -11440,7 +11525,7 @@ dircmp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dircmp"; - version = "20141204.1256"; + version = "20141204.1856"; src = fetchFromGitHub { owner = "matthewlmcclure"; repo = "dircmp-mode"; @@ -11448,7 +11533,7 @@ sha256 = "0mcsfsybpsxhzkd2m9bzc0np49azm6qf5x4x9h9lbxc8vfgh4z8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dircmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dircmp"; sha256 = "0cnj7b0s8vc83sh9sai1cldw54krk5qbz1qmlvvd1whryf2pc95c"; name = "dircmp"; }; @@ -11461,7 +11546,7 @@ dired-atool = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-atool"; - version = "20160208.733"; + version = "20160208.1333"; src = fetchFromGitHub { owner = "HKey"; repo = "dired-atool"; @@ -11469,7 +11554,7 @@ sha256 = "06m2p5sf47ykhkl958x4k0j0rxzrq0wfwf86mvnarlgc1215dbaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -11482,15 +11567,15 @@ dired-avfs = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-avfs"; - version = "20141203.1032"; + version = "20160526.2236"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-avfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-avfs"; sha256 = "1q42pvrpmd525887iicd3m5gw4w2a78xb72v7fjfl30ay1kir4bm"; name = "dired-avfs"; }; @@ -11502,13 +11587,13 @@ }) {}; dired-details = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-details"; - version = "20130824.758"; + version = "20130824.1358"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-details.el"; sha256 = "1ddrhj1kw0wl7jbs9jn067vfffsvqhz4izfw9f7ihxz34fdl2iza"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-details"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-details"; sha256 = "1390vl3i4qbnl7lbia98wznhf6x887d24f8p7146fpqjsiwbm5ck"; name = "dired-details"; }; @@ -11521,13 +11606,13 @@ dired-details-plus = callPackage ({ dired-details, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-details-plus"; - version = "20151231.1550"; + version = "20151231.2150"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-details+.el"; sha256 = "07z4h5l8763ks6b6m8dcmq78jiyq4xvan1mb0z8fbasmi1bsrya4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-details+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-details+"; sha256 = "1gzr3z4nyzip299z08mignhigxr7drak7rv9z6gmdjrika9a29lx"; name = "dired-details-plus"; }; @@ -11540,7 +11625,7 @@ dired-dups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-dups"; - version = "20130527.1725"; + version = "20130527.2325"; src = fetchFromGitHub { owner = "vapniks"; repo = "dired-dups"; @@ -11548,7 +11633,7 @@ sha256 = "1lcmpzwj43gix2q56bh2gw3gfqh8vl5j3mqr8s7v3k0aw816j0ni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-dups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-dups"; sha256 = "05s02gw8b339yvsr7vvka1r2140y7mbjzs8px4kn4acgb5y7rk71"; name = "dired-dups"; }; @@ -11561,7 +11646,7 @@ dired-efap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-efap"; - version = "20140122.1156"; + version = "20140122.1756"; src = fetchFromGitHub { owner = "juan-leon"; repo = "dired-efap"; @@ -11569,7 +11654,7 @@ sha256 = "0jj9da880b4zwxba140fldai1x9p2sxc6hdf3wz6lnbvz1pyn1mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -11582,7 +11667,7 @@ dired-fdclone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-fdclone"; - version = "20150417.432"; + version = "20150417.1032"; src = fetchFromGitHub { owner = "knu"; repo = "dired-fdclone.el"; @@ -11590,7 +11675,7 @@ sha256 = "1lnqjkbzryv655n16xj1c5bxck2jb5ccy8yckz1wp5yikkr06ba8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -11603,7 +11688,7 @@ dired-filetype-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-filetype-face"; - version = "20160217.347"; + version = "20160217.947"; src = fetchFromGitHub { owner = "jixiuf"; repo = "dired-filetype-face"; @@ -11611,7 +11696,7 @@ sha256 = "06hxcxgivxds42qilraqa6q1mlrhkn21w2adb1dg70p8qyrjqfk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-filetype-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-filetype-face"; sha256 = "1g9wzkkqmlkxlxwx43446q9mlam035zwq0wzpf7m6394rw2xlwx6"; name = "dired-filetype-face"; }; @@ -11624,15 +11709,15 @@ dired-filter = callPackage ({ cl-lib ? null, dash, dired-hacks-utils, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-filter"; - version = "20160201.1526"; + version = "20160526.2236"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-filter"; sha256 = "1mw94210i57wrqfyif6rh689xbwbpv1qp6bgc0j7z6g4xypvd52p"; name = "dired-filter"; }; @@ -11645,15 +11730,15 @@ dired-hacks-utils = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-hacks-utils"; - version = "20150819.1248"; + version = "20160527.2336"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-hacks-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-hacks-utils"; sha256 = "1vgl0wqf7gc2nbiqjn0rkrdlnxfm3wrgspx5b3cixv2n8rqx8kyi"; name = "dired-hacks-utils"; }; @@ -11666,7 +11751,7 @@ dired-imenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-imenu"; - version = "20140109.1110"; + version = "20140109.1710"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "dired-imenu"; @@ -11674,7 +11759,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -11687,7 +11772,7 @@ dired-k = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-k"; - version = "20160330.2213"; + version = "20160331.413"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-dired-k"; @@ -11695,7 +11780,7 @@ sha256 = "1bg7msz672rp2l490l3wm99i18b30r6033yfkrq6ia742nagn040"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -11708,15 +11793,15 @@ dired-narrow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-narrow"; - version = "20160130.1145"; + version = "20160130.1745"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-narrow"; sha256 = "1rgqiscbizalh78jwc53zbj599dd13a6vzdgf75vzllc1w7jsg6d"; name = "dired-narrow"; }; @@ -11729,15 +11814,15 @@ dired-open = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-open"; - version = "20160205.1513"; + version = "20160205.2113"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-open"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-open"; sha256 = "0a4ksz2jkva4gvhprywjc1fzrbf95xdk8gn25nv1h1c1ckhr91qx"; name = "dired-open"; }; @@ -11749,13 +11834,13 @@ }) {}; dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-plus"; - version = "20160515.1248"; + version = "20160528.1648"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired+.el"; - sha256 = "110ad0dxzqqgql3igp5103n50h8949ff07nvfx12n78b0qcwrkgp"; + sha256 = "0wi2ph2ixsk6cjw81yxlqxl9ar0wh3k0yfwijr254yn9rl4vibxc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired+"; sha256 = "1dmp6wcynran03nsa0fd26b9q0zj9wp8ngaafx1i1ybwn2gx32g5"; name = "dired-plus"; }; @@ -11768,15 +11853,15 @@ dired-quick-sort = callPackage ({ fetchFromGitLab, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "dired-quick-sort"; - version = "20160514.2350"; + version = "20160524.1238"; src = fetchFromGitLab { owner = "xuhdev"; repo = "dired-quick-sort"; - rev = "261d5f3d56fe93f7db88ddda50424a6007745a6f"; - sha256 = "0j5y9hlb864i7vmdwwdrzil9sp8di68gv2pdp2cy35w2p75rbvsx"; + rev = "d6417677c471f3d19c60c64e8079753e698c6f72"; + sha256 = "14mbvqb692bc5q04qb1i7z2bjrgrfny71j2laq6pr3cvf1w8lj7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-quick-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-quick-sort"; sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l"; name = "dired-quick-sort"; }; @@ -11789,15 +11874,15 @@ dired-rainbow = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-rainbow"; - version = "20141214.843"; + version = "20141214.1443"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-rainbow"; sha256 = "1b9yh8p2x1dg7dyqhjhnqqiiymyl6bwsam65j0lpvbdx8r4iw882"; name = "dired-rainbow"; }; @@ -11810,15 +11895,15 @@ dired-ranger = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-ranger"; - version = "20150819.1248"; + version = "20160528.1931"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-ranger"; sha256 = "19lbbzqflqda5b0alqfzdhpbgqssghqb4n4viq8x4l1fac8mby6h"; name = "dired-ranger"; }; @@ -11831,7 +11916,7 @@ dired-single = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-single"; - version = "20151230.2058"; + version = "20151231.258"; src = fetchFromGitHub { owner = "crocket"; repo = "dired-single"; @@ -11839,7 +11924,7 @@ sha256 = "01xvaqckyr31ywsn1fp9sz9wq4h4dd1hgghfqypc9s4akrxmgnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -11851,13 +11936,13 @@ }) {}; dired-sort = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort"; - version = "20090208.2338"; + version = "20090209.538"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort.el"; sha256 = "1dpxkxxfs14sdm3hwxv0j26lq0qzx4gryw42vrcdi680aj24962z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort"; sha256 = "1dzy2601yikmmbfqivf9s5xi4vd1f5g3c53f8rc74kfnxr1qn59x"; name = "dired-sort"; }; @@ -11869,13 +11954,13 @@ }) {}; dired-sort-menu = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort-menu"; - version = "20130824.807"; + version = "20130824.1407"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort-menu.el"; sha256 = "1i42r7j1c8677qf79ig33bia24d2yvcj26y92migfvrlbi03w4qi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort-menu"; sha256 = "0n7zh8s3vdw3pcax8wkas9rykf917wn2dzikdlyrl5bbil9ijblb"; name = "dired-sort-menu"; }; @@ -11888,13 +11973,13 @@ dired-sort-menu-plus = callPackage ({ dired-sort-menu, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-sort-menu-plus"; - version = "20151231.1551"; + version = "20151231.2151"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dired-sort-menu+.el"; sha256 = "1hjci4zfzig04ji1jravxg9n67rdr4wyhmxmahbrzq9kjnql510i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-sort-menu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-sort-menu+"; sha256 = "19ah8qgbfdvyhfszdr6hlw8l01lbdb84vf5snldw8qh3x6lw8cfq"; name = "dired-sort-menu-plus"; }; @@ -11907,15 +11992,15 @@ dired-subtree = callPackage ({ dash, dired-hacks-utils, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-subtree"; - version = "20150908.1333"; + version = "20150908.1933"; src = fetchFromGitHub { owner = "Fuco1"; repo = "dired-hacks"; - rev = "2bccdaf155f29d6b251a916c9a1faaacdae59798"; - sha256 = "0ynr3bl0yaa4z7agqwpm4gn4vr8ka6728f2bhmxynxqhw4vnf38v"; + rev = "230f81191824fa920016d9828a8672df402b4e12"; + sha256 = "1hrfm139c1g1pkpclx491qj9rjlms7g873wds7n4dqiq2mlm1rp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-subtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-subtree"; sha256 = "1vqcnkh3g6dwi2hwfkb534q0j19pkqzqk3yb7ah8ck4z4ln4ppfk"; name = "dired-subtree"; }; @@ -11928,7 +12013,7 @@ dired-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-toggle"; - version = "20140907.1649"; + version = "20140907.2249"; src = fetchFromGitHub { owner = "fasheng"; repo = "dired-toggle"; @@ -11936,7 +12021,7 @@ sha256 = "1yx20h16hc1b04knsqhrxni0j8qgwnq7i5b0dlggq3dakcvqfxma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-toggle"; sha256 = "18v571kp440n5g1d7pj86rr8dgbbm324f9vblkdbdvn13c5dczf5"; name = "dired-toggle"; }; @@ -11949,7 +12034,7 @@ dired-toggle-sudo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dired-toggle-sudo"; - version = "20151109.506"; + version = "20151109.1106"; src = fetchFromGitHub { owner = "renard"; repo = "dired-toggle-sudo"; @@ -11957,7 +12042,7 @@ sha256 = "0ajj8d6k5in2hclcrqckinfh80ylddplva0ryfbkzsjkfq167cv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-toggle-sudo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-toggle-sudo"; sha256 = "0fy05af9aq9791ij4j9pscdk5j44pbg0kmhpqli41qiazjw7v2va"; name = "dired-toggle-sudo"; }; @@ -11970,15 +12055,15 @@ diredful = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "diredful"; - version = "20151118.1600"; + version = "20160529.2217"; src = fetchFromGitHub { owner = "thamer"; repo = "diredful"; - rev = "e814fa3ffc7ec7b2455112c3d98e905674a6006b"; - sha256 = "1rx7vq6yl83fbmb76sczbb1bv972s4cyg160sm2yap1i6nzhd10p"; + rev = "c08e163d9d6c62f7b07e94d54c96c2e364e67e0e"; + sha256 = "1h2hnm8r3anfbk5x7d2dnv38bdllsbwaam6ivpbgzn12r23wrsr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diredful"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diredful"; sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; name = "diredful"; }; @@ -11991,7 +12076,7 @@ direx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "direx"; - version = "20151023.1906"; + version = "20151024.106"; src = fetchFromGitHub { owner = "m2ym"; repo = "direx-el"; @@ -11999,7 +12084,7 @@ sha256 = "0mis3m6lg3vlvp8qm8iajprgx3pm3gcbhdszsm9mvrcgkahdjqnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -12012,7 +12097,7 @@ direx-grep = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "direx-grep"; - version = "20140515.1106"; + version = "20140515.1706"; src = fetchFromGitHub { owner = "aki2o"; repo = "direx-grep"; @@ -12020,7 +12105,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -12033,13 +12118,13 @@ dirtree = callPackage ({ fetchurl, lib, melpaBuild, tree-mode, windata }: melpaBuild { pname = "dirtree"; - version = "20140129.332"; + version = "20140129.932"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dirtree.el"; sha256 = "1q03q4j0wkbg9p2nzf1kb7l517b21mskp2v52i95jbxh09igbjjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dirtree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dirtree"; sha256 = "0wfz9ks5iha2n0rya9yjmrb6f9lhp620iaqi92lw9smm7w83zj29"; name = "dirtree"; }; @@ -12052,7 +12137,7 @@ dirtree-prosjekt = callPackage ({ dirtree, fetchFromGitHub, fetchurl, lib, melpaBuild, prosjekt }: melpaBuild { pname = "dirtree-prosjekt"; - version = "20140129.404"; + version = "20140129.1004"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -12060,7 +12145,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dirtree-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dirtree-prosjekt"; sha256 = "0pyb6c0gvc16z5rc5h0kpl8021hz2hzv86cmjsd20gbhz7imrqwk"; name = "dirtree-prosjekt"; }; @@ -12073,7 +12158,7 @@ disaster = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "disaster"; - version = "20130509.1355"; + version = "20130509.1955"; src = fetchFromGitHub { owner = "jart"; repo = "disaster"; @@ -12081,7 +12166,7 @@ sha256 = "1srlz63pncxndh1kmb6dl5sxaanspxa444wg998dld3dkdflwavq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/disaster"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/disaster"; sha256 = "1ad8q81n0s13cwmm216wqx3s92195pda1amc4wxvpb3lq7dbd3yn"; name = "disaster"; }; @@ -12094,7 +12179,7 @@ discover = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "discover"; - version = "20140103.1639"; + version = "20140103.2239"; src = fetchFromGitHub { owner = "mickeynp"; repo = "discover.el"; @@ -12102,7 +12187,7 @@ sha256 = "0f7h2rhh37lrs6xclj182li6s1fawv5m8w3hgy6qgm06dam45lka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -12115,7 +12200,7 @@ discover-clj-refactor = callPackage ({ clj-refactor, discover, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "discover-clj-refactor"; - version = "20150328.1059"; + version = "20150328.1559"; src = fetchFromGitHub { owner = "maio"; repo = "discover-clj-refactor.el"; @@ -12123,7 +12208,7 @@ sha256 = "0l2g58f55p8zmzv2q2hf163ggm9p0wk8hg93wlkyldrgyb94dgf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-clj-refactor"; sha256 = "08bz60fxcgzab77690mmv0f7wdxcpygmasazcss427k37z9ysm7r"; name = "discover-clj-refactor"; }; @@ -12136,7 +12221,7 @@ discover-js2-refactor = callPackage ({ discover, fetchFromGitHub, fetchurl, js2-refactor, lib, melpaBuild }: melpaBuild { pname = "discover-js2-refactor"; - version = "20140129.1052"; + version = "20140129.1652"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "discover-js2-refactor"; @@ -12144,7 +12229,7 @@ sha256 = "1vnbn4asz3lifscvy4shzisl6r0gkgq0qsa3kpgif3853wcd2rvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-js2-refactor"; sha256 = "139zq66cpcn4dnidf22h7x88p812ywrrz4c3c62w3915b75f71ki"; name = "discover-js2-refactor"; }; @@ -12157,7 +12242,7 @@ discover-my-major = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "discover-my-major"; - version = "20160108.1341"; + version = "20160108.1941"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "discover-my-major"; @@ -12165,7 +12250,7 @@ sha256 = "0b73nc4jkf9bggnlp0l34jfcgx91vxbpavz6bpnf5rjvm0v1bil9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -12177,13 +12262,13 @@ }) {}; disk = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "disk"; - version = "20081128.1006"; + version = "20081128.1606"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/disk.el"; sha256 = "1c0pgqvl1z2f5hprszln53pn2v2pqy110r3wx3g84v71w6378bbv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/disk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/disk"; sha256 = "0bij9gr4zv6jmc6dwsy3lb06vsxvmyzl8xrm8wzasxisk1qd2l6n"; name = "disk"; }; @@ -12196,7 +12281,7 @@ dispass = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dispass"; - version = "20140202.1031"; + version = "20140202.1631"; src = fetchFromGitHub { owner = "ryuslash"; repo = "dispass.el"; @@ -12204,7 +12289,7 @@ sha256 = "075gj81rnhrvv061wnldixpfmlsyfbnvacnk107z6f9v3m2m3vl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -12217,7 +12302,7 @@ display-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "display-theme"; - version = "20140115.1056"; + version = "20140115.1656"; src = fetchFromGitHub { owner = "kawabata"; repo = "emacs-display-theme"; @@ -12225,7 +12310,7 @@ sha256 = "0r560bpgw5p2pfcgkgcrlpp1bprv1f23dl4y5fjk06dg93fgaysa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/display-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/display-theme"; sha256 = "07nqscmfa6iykll1m6gyiqca1g5ncx3rx468iyf2ahygpvqvnbxa"; name = "display-theme"; }; @@ -12238,7 +12323,7 @@ distinguished-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "distinguished-theme"; - version = "20151216.1515"; + version = "20151216.2115"; src = fetchFromGitHub { owner = "Lokaltog"; repo = "distinguished-theme"; @@ -12246,7 +12331,7 @@ sha256 = "03d8zb2is7n2y2z0k6j37cijjc3ndgasxsm9gqyq7drlq9bqwzsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/distinguished-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/distinguished-theme"; sha256 = "0h03aqgijrmisbgqga42zlb5yz4x3jn9jgr29rq8canyhayr3rk4"; name = "distinguished-theme"; }; @@ -12259,15 +12344,15 @@ dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dix"; - version = "20160429.829"; + version = "20160602.2226"; src = fetchFromGitHub { owner = "unhammer"; repo = "dix"; - rev = "34d3e08ae392695a7850ed5d492de88f7bc58726"; - sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp"; + rev = "15c23a350c88abfdec6a14e7d85c78938e487307"; + sha256 = "1pvd4gf4w4jb0j6n84ak844i6dk064y2pvnm5x0z5q70c2fn9170"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix"; sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; name = "dix"; }; @@ -12280,15 +12365,15 @@ dix-evil = callPackage ({ dix, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dix-evil"; - version = "20160506.323"; + version = "20160601.1324"; src = fetchFromGitHub { owner = "unhammer"; repo = "dix"; - rev = "34d3e08ae392695a7850ed5d492de88f7bc58726"; - sha256 = "0w3avhk4i7yp8bk66f75jzl1imgalwaxmynqrgyv617ajmzakkwp"; + rev = "15c23a350c88abfdec6a14e7d85c78938e487307"; + sha256 = "1pvd4gf4w4jb0j6n84ak844i6dk064y2pvnm5x0z5q70c2fn9170"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix-evil"; sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3"; name = "dix-evil"; }; @@ -12301,7 +12386,7 @@ dizzee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dizzee"; - version = "20111009.916"; + version = "20111009.1516"; src = fetchFromGitHub { owner = "davidmiller"; repo = "dizzee"; @@ -12309,7 +12394,7 @@ sha256 = "120zgp38nz4ssid6bv0zy5rnf2claa5s880incgljqyl0vmj9nq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dizzee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dizzee"; sha256 = "1axydags80jkyhpzp3m4gyplwr9k3a13w6vmrrzcv161nln7jhhs"; name = "dizzee"; }; @@ -12322,7 +12407,7 @@ django-manage = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "django-manage"; - version = "20151025.230"; + version = "20151025.730"; src = fetchFromGitHub { owner = "gopar"; repo = "django-manage"; @@ -12330,7 +12415,7 @@ sha256 = "15i25zh54b2fqji0qmkg502051ymccih6pgqnzq02c43dpnsqhqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-manage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-manage"; sha256 = "0j95g7fps28xhlrikkg61xgpbpf52xb56swmns2qdib6x1xzd6rh"; name = "django-manage"; }; @@ -12343,7 +12428,7 @@ django-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "django-mode"; - version = "20150207.817"; + version = "20150207.1417"; src = fetchFromGitHub { owner = "myfreeweb"; repo = "django-mode"; @@ -12351,7 +12436,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-mode"; sha256 = "1rdkzqvicjpfh9k66m31ky6jshx9fqw7pza7add36bk6xg8lbara"; name = "django-mode"; }; @@ -12364,7 +12449,7 @@ django-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "django-snippets"; - version = "20131229.1111"; + version = "20131229.1711"; src = fetchFromGitHub { owner = "myfreeweb"; repo = "django-mode"; @@ -12372,7 +12457,7 @@ sha256 = "0dw0m77w7kdwxxh53b4k15jjkpfl5vha17hw9dn29ap77pf820va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-snippets"; sha256 = "1qs9fw104kidbr5zbxc1q71yy033nq3wxh98vvzk4z4fppnd29sw"; name = "django-snippets"; }; @@ -12385,7 +12470,7 @@ django-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "django-theme"; - version = "20131022.502"; + version = "20131022.1102"; src = fetchFromGitHub { owner = "andrzejsliwa"; repo = "django-theme.el"; @@ -12393,7 +12478,7 @@ sha256 = "1azf4p6salga7269l0kf13bqlxf9idp0ys8mm20qpyjpj79p5g9w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/django-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/django-theme"; sha256 = "1rydl857zfpbvd7aziz6h7n3rrh584z2cbfxlss3wgfclzmbyhgf"; name = "django-theme"; }; @@ -12406,7 +12491,7 @@ dkdo = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dkdo"; - version = "20131110.619"; + version = "20131110.1219"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dkdo"; @@ -12414,7 +12499,7 @@ sha256 = "1nbvdnw9g3zbbb0n2sn2kxfzs5wichhl9qid3qjp8dsiq1wpv459"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dkdo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dkdo"; sha256 = "0p7ybgldjs046jrkkbpli1iicfmblpxfz9lql8m8sz7lpjn7h300"; name = "dkdo"; }; @@ -12427,7 +12512,7 @@ dklrt = callPackage ({ dkmisc, emacs, fetchFromGitHub, fetchurl, ledger-mode, lib, melpaBuild }: melpaBuild { pname = "dklrt"; - version = "20131110.841"; + version = "20131110.1441"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dklrt"; @@ -12435,7 +12520,7 @@ sha256 = "063nnln5m42qf190vr2z0ibacyn7n0xkxm3v5vaa4gxdvdwzhshs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dklrt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dklrt"; sha256 = "11ss5x9sxgxp1wx2r1m0vsp5z5qm8m4ww20ybr6bqjw0a1gax561"; name = "dklrt"; }; @@ -12448,7 +12533,7 @@ dkmisc = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dkmisc"; - version = "20131110.615"; + version = "20131110.1215"; src = fetchFromGitHub { owner = "davidkeegan"; repo = "dkmisc"; @@ -12456,7 +12541,7 @@ sha256 = "1nz71g8pb19aqjcb4s94hhn6j30cc04q05kmwvcbxpjb11qqrv49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dkmisc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dkmisc"; sha256 = "0nnbl272hldcmhyj47r463yvj7b06rjdkpkl5xk0gw9ikyja7w0z"; name = "dkmisc"; }; @@ -12469,7 +12554,7 @@ dmenu = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dmenu"; - version = "20160228.927"; + version = "20160228.1527"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-dmenu"; @@ -12477,7 +12562,7 @@ sha256 = "1xx4ccr3mfxay2j3wgd93qw5dpjasaq9mkmmjww3ibpf86ahf7l3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dmenu"; sha256 = "1w1pgaj2yasfhsd1ibvrwy11ykq8v17h913g298h3ycsvqv8gic0"; name = "dmenu"; }; @@ -12490,7 +12575,7 @@ dna-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dna-mode"; - version = "20130821.1405"; + version = "20130821.2005"; src = fetchFromGitHub { owner = "jhgorrell"; repo = "dna-mode-el"; @@ -12498,7 +12583,7 @@ sha256 = "0z28j7x7wgkc1cg1q1kz1lhdx1v1n6s88ixgkm8hn458h9bfnr3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dna-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dna-mode"; sha256 = "0ak3g152q3xxkiz1a4pl5y2vgbigbbmbc95fggirbcrh52zkzgk9"; name = "dna-mode"; }; @@ -12511,7 +12596,7 @@ docbook-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "docbook-snippets"; - version = "20150714.1225"; + version = "20150714.1825"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-docbook-snippets"; @@ -12519,7 +12604,7 @@ sha256 = "1nbm3wzd12rsrhnwlcc6b72b1ala328mfpcp5bwlfcdshw6mfcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docbook-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docbook-snippets"; sha256 = "1ipqfylgiw9iyjc1nckbay890clfkhda81nr00cq06sjmm71iniq"; name = "docbook-snippets"; }; @@ -12532,7 +12617,7 @@ docean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "docean"; - version = "20150927.1418"; + version = "20150927.2018"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "docean.el"; @@ -12540,7 +12625,7 @@ sha256 = "055kr0qknjgnjs7dn6gdmahrdbs8piwldbz7vg1hgq3b046x8lky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docean"; sha256 = "1mqmn2i9axnv5vnkg9gwfdjpzr6gxx4ia9mcdpm200ix297dg7x9"; name = "docean"; }; @@ -12553,15 +12638,15 @@ docker = callPackage ({ dash, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }: melpaBuild { pname = "docker"; - version = "20160520.1044"; + version = "20160529.1752"; src = fetchFromGitHub { owner = "Silex"; repo = "docker.el"; - rev = "5f4c890a28bdd2f69790d1021afeb3cbdb61dccc"; - sha256 = "1r0k3hqsicvxrc5am7ym5ygflnqnsn91hqzvhshxgz4a53i89rgl"; + rev = "16cf3786952ead6289f24f465085fb06b1cd0b34"; + sha256 = "1x23sv11gsqfxk7dfcfxah7h3k5wjg41lqq1g9yyrkxmqnlgy7p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; @@ -12571,22 +12656,22 @@ license = lib.licenses.free; }; }) {}; - docker-api = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + docker-api = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "docker-api"; - version = "20160421.253"; + version = "20160525.920"; src = fetchFromGitHub { owner = "Silex"; repo = "docker-api.el"; - rev = "397286872d462a5bc00419f629380ef77e87edbe"; - sha256 = "0lamp8xkn84q14xswvzwcamp2rk2rvgm15zf8iki5yp6zz1dppb2"; + rev = "206144346b7fa4165223349cfeb64a75d47ddd1b"; + sha256 = "0phmpranrgdi2gi89nxr1ii9xbr7h2ccpx1mkpnfxnjlzkdzq2fb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker-api"; sha256 = "1giqiapm4hf4dhfm3x69qqpir3jg7qz3parhbx88xxqrd1z18my0"; name = "docker-api"; }; - packageRequires = [ dash s ]; + packageRequires = [ dash request s ]; meta = { homepage = "https://melpa.org/#/docker-api"; license = lib.licenses.free; @@ -12595,7 +12680,7 @@ docker-tramp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "docker-tramp"; - version = "20160113.2252"; + version = "20160114.452"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "docker-tramp.el"; @@ -12603,7 +12688,7 @@ sha256 = "0bvnvs17cbisymiqp96q4y2w2jqy5hd0zyk6rv7mihr9p97ak9kv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker-tramp"; sha256 = "19kky80qm68n2izpjfyiy4gjywav7ljcmp101kmziklpqdldgh1w"; name = "docker-tramp"; }; @@ -12616,7 +12701,7 @@ dockerfile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dockerfile-mode"; - version = "20160128.1251"; + version = "20160128.1851"; src = fetchFromGitHub { owner = "spotify"; repo = "dockerfile-mode"; @@ -12624,7 +12709,7 @@ sha256 = "0vx7lv54v4bznn4mik4i6idb9dl7fpp3gw7nyhymbkr6hx884haw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -12637,7 +12722,7 @@ dokuwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dokuwiki-mode"; - version = "20160129.307"; + version = "20160129.907"; src = fetchFromGitHub { owner = "kai2nenobu"; repo = "emacs-dokuwiki-mode"; @@ -12645,7 +12730,7 @@ sha256 = "1qfmq8l4jqyrhfplsr1zd8bg9qqqwbh3mhipqzja0px0knjpqj85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dokuwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dokuwiki-mode"; sha256 = "1jc3sn61mipkhgr91wp74s673jk2w5991p54jlw05qqpf5gmxd7v"; name = "dokuwiki-mode"; }; @@ -12658,7 +12743,7 @@ dollaro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "dollaro"; - version = "20151123.802"; + version = "20151123.1402"; src = fetchFromGitHub { owner = "laynor"; repo = "dollaro"; @@ -12666,7 +12751,7 @@ sha256 = "1xyqsnymgdd8ic3az2lgwv7s7vld6d4pcycb234bxm4in9fixgdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dollaro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dollaro"; sha256 = "06kaqzb0nh8sndhk7p5n4acn5nc27dyxw3ldgcbp81wj6ipii26h"; name = "dollaro"; }; @@ -12679,7 +12764,7 @@ doom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "doom"; - version = "20160121.1022"; + version = "20160121.1622"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "doom"; @@ -12687,7 +12772,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -12699,13 +12784,13 @@ }) {}; doremi = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi"; - version = "20151231.1555"; + version = "20151231.2155"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi.el"; sha256 = "0201clwq9nbl8336lddcbwah8d6xipr7q8135yq79szfxq2bdg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi"; sha256 = "11i4cdxgrspx44p44zz5py89ypji5li6p5w77wy0b07i8a5gq2gb"; name = "doremi"; }; @@ -12718,13 +12803,13 @@ doremi-cmd = callPackage ({ doremi, fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi-cmd"; - version = "20160512.2012"; + version = "20160513.212"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-cmd.el"; sha256 = "1ay8rkcyydjqi1081vphb8iw3w2zc73m5bg1dz2mkxhksqwchqvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-cmd"; sha256 = "1qzspirn1abqps0dn5z8w6ymffc6b02dyki5hr8v74wfs8fhzx05"; name = "doremi-cmd"; }; @@ -12737,13 +12822,13 @@ doremi-frm = callPackage ({ doremi, faces-plus, fetchurl, frame-fns, hexrgb, lib, melpaBuild }: melpaBuild { pname = "doremi-frm"; - version = "20151231.1553"; + version = "20151231.2153"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-frm.el"; sha256 = "0v7ycmddh1ds64m1y5yai5nh34bd32q3wcm5y2pdzhj6jk7nj5wz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-frm"; sha256 = "1rj3p665q32acsxxwygv1j5nbmjqrhi0b4glzrk88xki4lyz0ihz"; name = "doremi-frm"; }; @@ -12755,13 +12840,13 @@ }) {}; doremi-mac = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "doremi-mac"; - version = "20151231.1554"; + version = "20151231.2154"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/doremi-mac.el"; sha256 = "157kvlb4dqiyk1h7b4p0dhrr6crdakwnrxydyl6yh51w2hdnnigw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doremi-mac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doremi-mac"; sha256 = "0n9fffgxnpqc7cch7aci5kxbwzk36iljdz2r8gcp5y5n1p7aamls"; name = "doremi-mac"; }; @@ -12773,13 +12858,13 @@ }) {}; dos = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dos"; - version = "20140808.1735"; + version = "20140808.2335"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dos.el"; sha256 = "0sfmcd1rq6wih9q7d9vkcfrw6gf7309mm7491jx091ij8m4p8ypp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dos"; sha256 = "0cpijbqpci96s0d6rwqz5bbi9b0zkan1bg8vdgib1f87r7g980nc"; name = "dos"; }; @@ -12791,13 +12876,13 @@ }) {}; dot-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dot-mode"; - version = "20151029.955"; + version = "20151029.1455"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dot-mode.el"; sha256 = "0xhbzq3yvfvvvl6mfihrzkd3pn5p5yxvbcyf2jhsppk7lscifsgk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dot-mode"; sha256 = "1fik32635caq3r5f9k62qbj2dkwczz2z1v28mc7bcj7jv2p93nvh"; name = "dot-mode"; }; @@ -12810,7 +12895,7 @@ download-region = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "download-region"; - version = "20160430.1416"; + version = "20160430.2016"; src = fetchFromGitHub { owner = "zk-phi"; repo = "download-region"; @@ -12818,7 +12903,7 @@ sha256 = "0v52djg39b6k2snizd9x0qc009ws5y0ywqsfwhqgcbs5ymzh7dsc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/download-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/download-region"; sha256 = "1mrl2x6j708nchyh9y5avbf2cq10kpnhfj553l6akarvl5n5pvkl"; name = "download-region"; }; @@ -12831,7 +12916,7 @@ downplay-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "downplay-mode"; - version = "20151125.1509"; + version = "20151125.2109"; src = fetchFromGitHub { owner = "tobias"; repo = "downplay-mode"; @@ -12839,7 +12924,7 @@ sha256 = "0s7swvfd7h8r0n3cjmkps6ary9vwg61jylfm4qrkp3idsz6is548"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -12852,7 +12937,7 @@ dpaste = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dpaste"; - version = "20160303.1612"; + version = "20160303.2212"; src = fetchFromGitHub { owner = "gregnewman"; repo = "dpaste.el"; @@ -12860,7 +12945,7 @@ sha256 = "03n3k6a40lw9m1ycf62g6vll4gr2kr2509vjp1dkfq722xwrw7zk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dpaste"; sha256 = "17mrdkldv4gfwm6ggc047l4a69xg2fy9f9mjbphkjl0p5nr6b4kz"; name = "dpaste"; }; @@ -12873,7 +12958,7 @@ dpaste_de = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "dpaste_de"; - version = "20131015.825"; + version = "20131015.1425"; src = fetchFromGitHub { owner = "theju"; repo = "dpaste_de.el"; @@ -12881,7 +12966,7 @@ sha256 = "1avpg0cgzk8d6g1q0ryx41lkcdgkm0mkzr5xr32xm28dzrfmgd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dpaste_de"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dpaste_de"; sha256 = "0dql9qsl5gj51i3l2grl7nhw0ign8h4xa4jnhwn196j71c0rdwwp"; name = "dpaste_de"; }; @@ -12915,7 +13000,7 @@ draft-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "draft-mode"; - version = "20140609.1056"; + version = "20140609.1656"; src = fetchFromGitHub { owner = "gaudecker"; repo = "draft-mode"; @@ -12923,7 +13008,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -12936,7 +13021,7 @@ drag-stuff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drag-stuff"; - version = "20160520.1459"; + version = "20160520.2059"; src = fetchFromGitHub { owner = "rejeep"; repo = "drag-stuff.el"; @@ -12944,7 +13029,7 @@ sha256 = "0vcc1pfxsjbrslh4k6d14xv4k8pvkg09kikwf7ipis12l62df6i4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drag-stuff"; sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; @@ -12957,7 +13042,7 @@ drawille = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drawille"; - version = "20160418.1438"; + version = "20160418.2038"; src = fetchFromGitHub { owner = "sshbio"; repo = "drawille"; @@ -12965,7 +13050,7 @@ sha256 = "1z3akh0ywzihr0ghk6f8x9z38mwqy3zg29p0q69h4i6yzhxpdmxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drawille"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drawille"; sha256 = "01rl21hbj3hwy072yr27jl6iql331v131d3mr9zifg9v6f3jqbil"; name = "drawille"; }; @@ -12978,7 +13063,7 @@ drill-instructor-AZIK-force = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "drill-instructor-AZIK-force"; - version = "20151123.14"; + version = "20151123.614"; src = fetchFromGitHub { owner = "myuhe"; repo = "drill-instructor-AZIK-force.el"; @@ -12986,7 +13071,7 @@ sha256 = "0lzq0mkhhj3s5yrcbs576qxkd8h0m2ikc4iplk97ddpzh4nz4127"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drill-instructor-AZIK-force"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drill-instructor-AZIK-force"; sha256 = "1bb698r11m58csd2rm17fmiw691p25npphzqgjiiqbn4vx35ja7f"; name = "drill-instructor-AZIK-force"; }; @@ -12999,7 +13084,7 @@ dropbox = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, oauth }: melpaBuild { pname = "dropbox"; - version = "20130513.1837"; + version = "20130514.37"; src = fetchFromGitHub { owner = "pavpanchekha"; repo = "dropbox.el"; @@ -13007,7 +13092,7 @@ sha256 = "1s4cz5s0mw733ak9ps62fs150y3psqmb6v5s6s88jjfsi0r03c0s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dropbox"; sha256 = "0ak6g2d2sq026ml6cmn6v1qz7sczkplgv2j9zq9zgzafihyyzs5f"; name = "dropbox"; }; @@ -13019,13 +13104,13 @@ }) {}; dropdown-list = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "dropdown-list"; - version = "20120329.1236"; + version = "20120329.1836"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/dropdown-list.el"; sha256 = "1szy46sk3nvlbb3yzk1s983281kkf507xr3fkclkki3d3x31n08a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dropdown-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dropdown-list"; sha256 = "14i9w897gnb3mvnkbzhzij04bgr551r8km310mbrmzzag54w077z"; name = "dropdown-list"; }; @@ -13038,7 +13123,7 @@ drupal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "drupal-mode"; - version = "20160420.1558"; + version = "20160420.2158"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-mode"; @@ -13046,7 +13131,7 @@ sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -13059,7 +13144,7 @@ drupal-spell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "drupal-spell"; - version = "20130520.1255"; + version = "20130520.1855"; src = fetchFromGitHub { owner = "arnested"; repo = "drupal-spell"; @@ -13067,7 +13152,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -13079,14 +13164,14 @@ }) {}; dsvn = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dsvn"; - version = "20130120.1557"; + version = "20130120.2157"; src = fetchsvn { url = "http://svn.apache.org/repos/asf/subversion/trunk/contrib/client-side/emacs/"; - rev = "1745073"; + rev = "1746801"; sha256 = "016dxpzm1zba8rag7czynlk58hys4xab4mz1nkry5bfihknpzcrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dsvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dsvn"; sha256 = "12cviq6v08anif762a5qav3l8ircp81kmnl9q4yl6bkh9zxv7vy6"; name = "dsvn"; }; @@ -13099,7 +13184,7 @@ dtrace-script-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dtrace-script-mode"; - version = "20150214.123"; + version = "20150214.723"; src = fetchFromGitHub { owner = "dotemacs"; repo = "dtrace-script-mode"; @@ -13107,7 +13192,7 @@ sha256 = "1blfx3r2xd3idbfjrx44ma3x1d83xp67il2s2bmdwa8qz92z99lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dtrace-script-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dtrace-script-mode"; sha256 = "0v29rzlyccrc37052w2qmvjaii84jihhp736l807b0hjjfryras4"; name = "dtrace-script-mode"; }; @@ -13120,15 +13205,15 @@ dtrt-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dtrt-indent"; - version = "20160504.845"; + version = "20160523.2218"; src = fetchFromGitHub { owner = "jscheid"; repo = "dtrt-indent"; - rev = "1115688391bf8cc58a814ca99bfc769a3afd46cf"; - sha256 = "1zzy0xdybclpch818nv6b9fqawfv8hga4x9x4xwjxd7h8nxjhc85"; + rev = "24ac7b39a9b920a6b622ba91f6dc4e2ce2627dc8"; + sha256 = "1gxz2alc95k638nxvxifrard34y2a797m9f274gqp7xqy9ps464d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dtrt-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dtrt-indent"; sha256 = "1npn2jngy1wq0jpwmg1hkn8lx6ncbqsi587jl38lyp2xwchshfk5"; name = "dtrt-indent"; }; @@ -13141,7 +13226,7 @@ dts-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dts-mode"; - version = "20150403.1904"; + version = "20150404.104"; src = fetchFromGitHub { owner = "bgamari"; repo = "dts-mode"; @@ -13149,7 +13234,7 @@ sha256 = "0cafvhbpfqd8ajqg2757fs64kryrl2ckvbp5abldb4y8fa14pb9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dts-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dts-mode"; sha256 = "1k8cbiayajbzwkm0s0kyin0qpq9yhymidz0srs4hbvsnb6hvp234"; name = "dts-mode"; }; @@ -13162,7 +13247,7 @@ ducpel = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ducpel"; - version = "20140419.116"; + version = "20140419.716"; src = fetchFromGitHub { owner = "alezost"; repo = "ducpel"; @@ -13170,7 +13255,7 @@ sha256 = "1ixb78dv66lmqlbv4zl5ysvv1xqafvqh1h5cfdv03jdkqlfk34jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -13180,22 +13265,22 @@ license = lib.licenses.free; }; }) {}; - dumb-jump = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: + dumb-jump = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "dumb-jump"; - version = "20160428.221"; + version = "20160601.1948"; src = fetchFromGitHub { owner = "jacktasia"; repo = "dumb-jump"; - rev = "2c3ab93955eb05f9bc051cf65bc26d5d54116ac4"; - sha256 = "0wdlly5aqzscbqd86vbp02hhcxs2c6ah70kbs1n7m7z0n607x2z6"; + rev = "590773bbfd3f5156d7d2231dcdb9554135fa10fe"; + sha256 = "0qcx245wbcyr3y7bflc2dmr4nr8nsfj6sr724ylsxa0ywzd8k7yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; - packageRequires = [ dash f popup s ]; + packageRequires = [ dash emacs f popup s ]; meta = { homepage = "https://melpa.org/#/dumb-jump"; license = lib.licenses.free; @@ -13204,15 +13289,15 @@ dummy-h-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dummy-h-mode"; - version = "20160209.629"; + version = "20160603.1317"; src = fetchFromGitHub { owner = "yascentur"; repo = "dummy-h-mode-el"; - rev = "f94779ea046d6dc1334a4c896c9aeafcf79c1b52"; - sha256 = "0qsjp1xh8cp5wl4xi9yg2nwy982jgxji41hpbg7rff5hcn7svii9"; + rev = "2bc896f0e3bd3c976c4bb4cdf8056065bf39f50e"; + sha256 = "1xkfwg1awb3ikb9i71xdbnbb94y3p2qd1fhnbx6kzfs0kmsiv5k9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummy-h-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummy-h-mode"; sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; name = "dummy-h-mode"; }; @@ -13225,7 +13310,7 @@ dummyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dummyparens"; - version = "20141009.624"; + version = "20141009.1224"; src = fetchFromGitHub { owner = "snosov1"; repo = "dummyparens"; @@ -13233,7 +13318,7 @@ sha256 = "0g72nnz0j6dvllyxyrw20z1vg6p7sy46yy0fq017pa77sgqm0xzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummyparens"; sha256 = "1yah8kpqkk9ygm73iy51fzwc8q5nw0xlwqir2qld1fc5y1lkb7dk"; name = "dummyparens"; }; @@ -13246,7 +13331,7 @@ duplicate-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "duplicate-thing"; - version = "20120515.1248"; + version = "20120515.1848"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "duplicate-thing"; @@ -13254,7 +13339,7 @@ sha256 = "1qaiwm8mf4656gc1pdj8ivgy4abkjsypr52pvf4nrdkkln9qzfli"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/duplicate-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/duplicate-thing"; sha256 = "1jx2b6h23dj561xhizzbpxp3av69ic8zdw4kkf0py1jm3gnrmlm4"; name = "duplicate-thing"; }; @@ -13267,14 +13352,14 @@ dyalog-mode = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dyalog-mode"; - version = "20160315.1149"; + version = "20160315.1649"; src = fetchhg { url = "https://bitbucket.com/harsman/dyalog-mode"; rev = "4dac440334f0"; sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -13287,7 +13372,7 @@ dylan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dylan-mode"; - version = "20160405.1814"; + version = "20160406.14"; src = fetchFromGitHub { owner = "dylan-lang"; repo = "dylan-mode"; @@ -13295,7 +13380,7 @@ sha256 = "0fxdv594k6p4kv6nc598rw51sy4x10dvbyhzn3gni2linb3v1c5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dylan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dylan-mode"; sha256 = "0kimvz8vmcvgxi0wvf7dqv6plj31xlksmvgip8h3bhyy7slxj3yy"; name = "dylan-mode"; }; @@ -13308,7 +13393,7 @@ dynamic-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "dynamic-fonts"; - version = "20140731.826"; + version = "20140731.1426"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "dynamic-fonts"; @@ -13316,7 +13401,7 @@ sha256 = "150dj1g49q9x9zx9wkymq30l5gc8c4mhsq91fm6q0yj6ip7hlfxh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -13329,15 +13414,15 @@ dynamic-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dynamic-ruler"; - version = "20150826.1709"; + version = "20160602.1008"; src = fetchFromGitHub { owner = "rocher"; repo = "dynamic-ruler"; - rev = "06318152d6831b1b0cfd814b4f4150a00b47ef67"; - sha256 = "1jsjk4fkisgprn2w1d1385kbc9w1bd707biapd1y453k20q5c4h5"; + rev = "c9c0de6fe5721f06b50e01d9b4684b519c71b367"; + sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -13350,7 +13435,7 @@ e2ansi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2ansi"; - version = "20150220.1813"; + version = "20150221.13"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "e2ansi"; @@ -13358,7 +13443,7 @@ sha256 = "0d18kdpw4zfbq4bkqh19cf42xlinxqa71lr2d994phaxqxqq195w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2ansi"; sha256 = "0ns1sldipx5kyqpi0bw79kdmhi1ry5glwxfzfx8r01hbbkf0cc94"; name = "e2ansi"; }; @@ -13371,7 +13456,7 @@ e2wm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, window-layout }: melpaBuild { pname = "e2wm"; - version = "20150608.2023"; + version = "20150609.223"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-window-manager"; @@ -13379,7 +13464,7 @@ sha256 = "1lx0c7s810x6prf7x1lnx412gll8nn8gqpmi56n319n406cxhnhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -13392,7 +13477,7 @@ e2wm-R = callPackage ({ e2wm, ess, fetchFromGitHub, fetchurl, inlineR, lib, melpaBuild }: melpaBuild { pname = "e2wm-R"; - version = "20151230.426"; + version = "20151230.1026"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-R.el"; @@ -13400,7 +13485,7 @@ sha256 = "1g77gf24abwcvf7z52vs762s6jp978pnvza8zmzwkwfvp1mkx233"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -13413,7 +13498,7 @@ e2wm-bookmark = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-bookmark"; - version = "20151123.21"; + version = "20151123.621"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-bookmark.el"; @@ -13421,7 +13506,7 @@ sha256 = "121vd44f42bxqvdjswmjlghf1jalbs974b6cip2i049k1n08xgh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-bookmark"; sha256 = "1myaqxzrgff5gxcn3zn1bsmyf5122ql1mwr05wamd450lq8nmbw5"; name = "e2wm-bookmark"; }; @@ -13434,7 +13519,7 @@ e2wm-direx = callPackage ({ direx, e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-direx"; - version = "20140815.1913"; + version = "20140816.113"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-direx"; @@ -13442,7 +13527,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -13455,7 +13540,7 @@ e2wm-pkgex4pl = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, plsense-direx }: melpaBuild { pname = "e2wm-pkgex4pl"; - version = "20140525.647"; + version = "20140525.1247"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-pkgex4pl"; @@ -13463,7 +13548,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -13476,7 +13561,7 @@ e2wm-svg-clock = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild, svg-clock }: melpaBuild { pname = "e2wm-svg-clock"; - version = "20150106.806"; + version = "20150106.1406"; src = fetchFromGitHub { owner = "myuhe"; repo = "e2wm-svg-clock.el"; @@ -13484,7 +13569,7 @@ sha256 = "0h1fnlpvy2mqfxjv64znghmiadh9qimj9q9a60cxhyc0bq0prz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-svg-clock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-svg-clock"; sha256 = "0q02lksrbn43s8d9rzpglqybalglpi6qi9lix0cllag6i7fzcbms"; name = "e2wm-svg-clock"; }; @@ -13497,7 +13582,7 @@ e2wm-sww = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "e2wm-sww"; - version = "20140524.458"; + version = "20140524.1058"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-sww"; @@ -13505,7 +13590,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -13518,7 +13603,7 @@ e2wm-term = callPackage ({ e2wm, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "e2wm-term"; - version = "20141009.908"; + version = "20141009.1508"; src = fetchFromGitHub { owner = "aki2o"; repo = "e2wm-term"; @@ -13526,7 +13611,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -13539,7 +13624,7 @@ easy-after-load = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-after-load"; - version = "20121224.2149"; + version = "20121225.349"; src = fetchFromGitHub { owner = "pd"; repo = "easy-after-load"; @@ -13547,7 +13632,7 @@ sha256 = "09ikwg5s42b50lfj0796pa2h32larkf5j6cy042dzh8c441vgih4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-after-load"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-after-load"; sha256 = "1mn4hpx82nifphzx71yw3rbixbgis8bhvl3iyxcgcd88n5hqwvys"; name = "easy-after-load"; }; @@ -13560,7 +13645,7 @@ easy-escape = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-escape"; - version = "20150718.2233"; + version = "20150719.433"; src = fetchFromGitHub { owner = "cpitclaudel"; repo = "easy-escape"; @@ -13568,7 +13653,7 @@ sha256 = "1qn0givyh07w41sv5xayfzlwbpbq7p39wbhmwsgffgfqzzz5r2ys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-escape"; sha256 = "1zspb79x6s151wwiian45j1nh0xps8y8yd98byyn5lbwbj2pp2gk"; name = "easy-escape"; }; @@ -13581,7 +13666,7 @@ easy-kill = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-kill"; - version = "20151031.129"; + version = "20151031.629"; src = fetchFromGitHub { owner = "leoliu"; repo = "easy-kill"; @@ -13589,7 +13674,7 @@ sha256 = "0i2plbvaalapx3svryn5lrc68m0qj1xm0z577xxzq7i9z91nanq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -13602,7 +13687,7 @@ easy-kill-extras = callPackage ({ easy-kill, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-kill-extras"; - version = "20160418.2219"; + version = "20160419.419"; src = fetchFromGitHub { owner = "knu"; repo = "easy-kill-extras.el"; @@ -13610,7 +13695,7 @@ sha256 = "0mmhqid0x56m0p3b18a757147fy8km3p4kmi0y94kjq04a4ysg3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -13623,15 +13708,15 @@ easy-lentic = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lentic, lib, melpaBuild }: melpaBuild { pname = "easy-lentic"; - version = "20151227.457"; + version = "20160530.830"; src = fetchFromGitHub { owner = "tumashu"; repo = "easy-lentic"; - rev = "1b59ebe748e80488512034f885ad6540ad037382"; - sha256 = "0qpabig0qrkyhhiifjpq9a7qv7h3nlqmpz79xy8lk58xy6rj0zk0"; + rev = "4e1fc55b6936ca240b265809ca8a5dc2a237837d"; + sha256 = "0sm54ngmpciqmik7y3zihyygw9g0lhphzdm4xx07wvxmhnlamxsa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-lentic"; sha256 = "1j141lncgcgfpa42m505xndiy6lh848xymfvb3cz4d6h73421khg"; name = "easy-lentic"; }; @@ -13644,7 +13729,7 @@ easy-repeat = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "easy-repeat"; - version = "20150516.448"; + version = "20150516.1048"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "easy-repeat.el"; @@ -13652,7 +13737,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -13665,15 +13750,15 @@ ebal = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ebal"; - version = "20160122.707"; + version = "20160531.1806"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "ebal"; - rev = "4d2ffa7ffbdfd6ee8a39a268e7c7c0de0905df6b"; - sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; + rev = "1155c70b8dbb2f2caed2958782afe3d8018ab0b2"; + sha256 = "0fbfdhz1fmxiy9hg038qqw7r3gvhvzyk68qaww0saja9zywx8hal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -13686,7 +13771,7 @@ ebf = callPackage ({ cl-lib ? null, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ebf"; - version = "20160211.1258"; + version = "20160211.1858"; src = fetchFromGitHub { owner = "rexim"; repo = "ebf"; @@ -13694,7 +13779,7 @@ sha256 = "1pgn6fcg5cnbpk93hc2vw95sna07x0s1v2i6lq9bmij2msvar611"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; @@ -13707,15 +13792,15 @@ ebib = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib }: melpaBuild { pname = "ebib"; - version = "20160410.2044"; + version = "20160604.953"; src = fetchFromGitHub { owner = "joostkremers"; repo = "ebib"; - rev = "069ecbe32a4d5f1273e2d749204750652fbb5d91"; - sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; + rev = "4ce0088a2e9d5607c262a744333c2e76192edee4"; + sha256 = "09qbblp3gn6zyff7j1vawmqishcilh0b0r7070x2cxg213s36d8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -13728,7 +13813,7 @@ ebib-handy = callPackage ({ chinese-pyim, ebib, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ebib-handy"; - version = "20160509.1856"; + version = "20160510.56"; src = fetchFromGitHub { owner = "tumashu"; repo = "ebib-handy"; @@ -13736,7 +13821,7 @@ sha256 = "0z89gggdgy2icnc6vwwbqbpnzbixxm6njgkz37zrrpwk23jsx1pb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib-handy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib-handy"; sha256 = "069dq4sfw4jz4cd8mw611qzcz7jyj271qwv2l54fyi3pfvd68h17"; name = "ebib-handy"; }; @@ -13749,7 +13834,7 @@ ecb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ecb"; - version = "20140215.414"; + version = "20140215.1014"; src = fetchFromGitHub { owner = "alexott"; repo = "ecb"; @@ -13757,7 +13842,7 @@ sha256 = "1hs069m4m6vhb37ac2x6hzbp9mfmpd3zhp4m631lx8dlmx11rydz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -13769,13 +13854,13 @@ }) {}; echo-bell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "echo-bell"; - version = "20151231.1556"; + version = "20151231.2156"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/echo-bell.el"; sha256 = "0jk7pb2sr4qbxwcn4ipcjc9phl9zjmgg8sf91qj113112xx7vvxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/echo-bell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/echo-bell"; sha256 = "0adhdfbcpmdhd9252rh0jik2z3v9bzf0brpzfvcjn5py2x6724ws"; name = "echo-bell"; }; @@ -13788,7 +13873,7 @@ eclipse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eclipse-theme"; - version = "20160430.622"; + version = "20160430.1222"; src = fetchFromGitHub { owner = "abo-abo"; repo = "eclipse-theme"; @@ -13796,7 +13881,7 @@ sha256 = "03yyagd37l9kgdnkqrkvrcgp5njyl4an0af7cfmcdnpyjghczf4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eclipse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eclipse-theme"; sha256 = "0mww0jysxqky1zkkhvhj7fn20w970n2w6501rdm5jwqfb58ivxfx"; name = "eclipse-theme"; }; @@ -13809,7 +13894,7 @@ ecukes = callPackage ({ ansi, commander, dash, espuds, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ecukes"; - version = "20150717.948"; + version = "20150717.1548"; src = fetchFromGitHub { owner = "ecukes"; repo = "ecukes"; @@ -13817,7 +13902,7 @@ sha256 = "0h6vh719ai0cxyja6wpfi6m76d42vskj56wg666j0h6j0qw6h3i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -13830,7 +13915,7 @@ edbi = callPackage ({ concurrent, ctable, epc, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi"; - version = "20160224.2041"; + version = "20160225.241"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-edbi"; @@ -13838,7 +13923,7 @@ sha256 = "0x0igyvdcm4863n7zndvcv6wgzwgn7324cbfjja6xd7r0k936zdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -13851,7 +13936,7 @@ edbi-database-url = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-database-url"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-database-url"; @@ -13859,7 +13944,7 @@ sha256 = "0f59s0a7zpa3dny1k7x6zrymrnzba184smq8v1vvz8hkc0ym1j1v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-database-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-database-url"; sha256 = "018rxijmy0lvisy281d501ra9lnh5xi0wmvz5avbjpb0fi4q1zdn"; name = "edbi-database-url"; }; @@ -13872,7 +13957,7 @@ edbi-django = callPackage ({ edbi, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-django"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-django"; @@ -13880,7 +13965,7 @@ sha256 = "1029b7p1lnyqkg0jm9an6s1l7la0kb38gx42g7212wbj71s3krga"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-django"; sha256 = "1s59hab35hwnspyklxbhi0js0sgdn0rc7y33dqjk0psjcikqymg1"; name = "edbi-django"; }; @@ -13893,7 +13978,7 @@ edbi-minor-mode = callPackage ({ edbi, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-minor-mode"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-minor-mode"; @@ -13901,7 +13986,7 @@ sha256 = "176954d4agk4by5w8a5ky65iwjky1dqxxvz8vdf8fxj82r5k9fhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-minor-mode"; sha256 = "0p7vdf9cp6i7mhjxj82670pfflf1kacalmakb7ssgigs1nsf3spi"; name = "edbi-minor-mode"; }; @@ -13914,7 +13999,7 @@ edbi-sqlite = callPackage ({ edbi, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edbi-sqlite"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "edbi-sqlite"; @@ -13922,7 +14007,7 @@ sha256 = "1vll81386fx90lq5sy4rlxcik6mvw7zx5cc51f0yaca9bkcckp51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi-sqlite"; sha256 = "1w53ypz3pdqaml3vq9j3f1w443n8s9hb2ys090kxvjqnb8x8v44y"; name = "edbi-sqlite"; }; @@ -13935,7 +14020,7 @@ ede-compdb = callPackage ({ cl-lib ? null, ede ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, semantic ? null }: melpaBuild { pname = "ede-compdb"; - version = "20150920.1633"; + version = "20150920.2233"; src = fetchFromGitHub { owner = "randomphrase"; repo = "ede-compdb"; @@ -13943,7 +14028,7 @@ sha256 = "1cfjw9b1lm29s5cbh0qqmkchbq2382s71w4rpb0gyf603s0yg13m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ede-compdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ede-compdb"; sha256 = "1ypi7rxbgg2qck1b571hcw5m4ipllb48g6sindpdf180kbfbfpn7"; name = "ede-compdb"; }; @@ -13956,7 +14041,7 @@ edebug-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edebug-x"; - version = "20130616.225"; + version = "20130616.825"; src = fetchFromGitHub { owner = "ScottyB"; repo = "edebug-x"; @@ -13964,7 +14049,7 @@ sha256 = "1zgiifi1k2d9g8sarfpjzamk8g1yx4ilgn60mqhy2pznp30b5qb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edebug-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edebug-x"; sha256 = "0mzrip6y346mix4ny1xj8rkji1w531ix24k3cczmlmm4hm7l29ql"; name = "edebug-x"; }; @@ -13977,7 +14062,7 @@ edit-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-at-point"; - version = "20150716.924"; + version = "20150716.1524"; src = fetchFromGitHub { owner = "enoson"; repo = "edit-at-point.el"; @@ -13985,7 +14070,7 @@ sha256 = "0crwdgng377sy1zbq7kqkz24v697mlzgdsvkdp1m8r7ympikkj6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-at-point"; sha256 = "0sn5a644zm165li44yffcpcai8bhl3yfvqcljghlwaa0w45sc9im"; name = "edit-at-point"; }; @@ -13998,7 +14083,7 @@ edit-color-stamp = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-color-stamp"; - version = "20130529.1333"; + version = "20130529.1933"; src = fetchFromGitHub { owner = "sabof"; repo = "edit-color-stamp"; @@ -14006,7 +14091,7 @@ sha256 = "0vk954f44m2bq7qb122pzlb8fibrisx47ihvn3h96m8nmx0fv32r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-color-stamp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-color-stamp"; sha256 = "1f8v8w3w7vb8jv29w06mplah8yfcs5qfjz2w4irv0rg7dwzy3zk8"; name = "edit-color-stamp"; }; @@ -14019,15 +14104,15 @@ edit-indirect = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-indirect"; - version = "20141213.1305"; + version = "20160528.1551"; src = fetchFromGitHub { owner = "Fanael"; repo = "edit-indirect"; - rev = "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0"; - sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; + rev = "1d1dae842505e5ff09644529deec87c056e1b14e"; + sha256 = "145knahvvxbm8qmcdb69ilrg14w7130vav2pqjd7anr1l8n2i6gz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -14040,7 +14125,7 @@ edit-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-list"; - version = "20100930.1043"; + version = "20100930.1643"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "edit-list"; @@ -14048,7 +14133,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -14061,7 +14146,7 @@ edit-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-server"; - version = "20141231.1658"; + version = "20141231.2258"; src = fetchFromGitHub { owner = "stsquad"; repo = "emacs_chrome"; @@ -14069,7 +14154,7 @@ sha256 = "0ssmhwg4wfh5cxgqv8bl55449204h4zi863m7jhvas4c9zq005kd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -14082,7 +14167,7 @@ edit-server-htmlize = callPackage ({ edit-server, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-server-htmlize"; - version = "20130329.1848"; + version = "20130329.2348"; src = fetchFromGitHub { owner = "frobtech"; repo = "edit-server-htmlize"; @@ -14090,7 +14175,7 @@ sha256 = "174xq45xc632zrb916aw7q4bch96pbi6zgy3dk77qla3ky9cfpl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server-htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server-htmlize"; sha256 = "007lv3698a88wxan7kplz2117azxxpzzgshin9c1aabg059hszlj"; name = "edit-server-htmlize"; }; @@ -14103,15 +14188,15 @@ editorconfig = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "editorconfig"; - version = "20160516.1054"; + version = "20160531.1040"; src = fetchFromGitHub { owner = "editorconfig"; repo = "editorconfig-emacs"; - rev = "79a890cee7009e01afb37ac7f60e415441e62990"; - sha256 = "0k8aqfhcvqv19ddkljvq1hgljvqwp4yrhjsgsalji9qm5gq344ha"; + rev = "58961f515e6cfcc6fc4f4c2c3e415260a2ab8027"; + sha256 = "0nf8m9mnm2q0vanwngwrx9m5qjrng22fk9jg6sws340z4059m1ak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/editorconfig"; sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; @@ -14124,7 +14209,7 @@ edn = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, peg }: melpaBuild { pname = "edn"; - version = "20160215.719"; + version = "20160215.1319"; src = fetchFromGitHub { owner = "expez"; repo = "edn.el"; @@ -14132,7 +14217,7 @@ sha256 = "1xp2hjhn52k6l1g6ypva6dsklpawni7gvjafbz6404f9dyxflh7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; @@ -14145,7 +14230,7 @@ edts = callPackage ({ auto-complete, auto-highlight-symbol, dash, eproject, erlang, f, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s }: melpaBuild { pname = "edts"; - version = "20160430.931"; + version = "20160430.1531"; src = fetchFromGitHub { owner = "tjarvstrand"; repo = "edts"; @@ -14153,7 +14238,7 @@ sha256 = "0dn2p80pifkc5pjqqx6xhr53mjp5y0hb48imhwybf9mwbgpz16va"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -14175,7 +14260,7 @@ efire = callPackage ({ circe, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "efire"; - version = "20151009.1631"; + version = "20151009.2231"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "efire"; @@ -14183,7 +14268,7 @@ sha256 = "1c2iyv392ap35nss4j901h33d3lx9lmq5v43flf2rid1766pam6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/efire"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/efire"; sha256 = "1c8vdc58i0k7vvanwhckfc31226d3rb5xq77lh9ydgnd4i97gq2w"; name = "efire"; }; @@ -14196,7 +14281,7 @@ egg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egg"; - version = "20160330.2347"; + version = "20160331.547"; src = fetchFromGitHub { owner = "byplayer"; repo = "egg"; @@ -14204,7 +14289,7 @@ sha256 = "1qrblglkafwzfds8x5wp4yrn1gq8iz823iilxcp9mwycbw57ajw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -14217,15 +14302,15 @@ egison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "egison-mode"; - version = "20160520.228"; + version = "20160603.1003"; src = fetchFromGitHub { owner = "egisatoshi"; repo = "egison3"; - rev = "69cc3cebbc05b1e6e6172baab18f773d6790ffdb"; - sha256 = "0vgpv48is3aijz4w5gmhrhjkirbyqzv1kkswqlpxah4bz4qn5v5k"; + rev = "6181c9e4e9e564b0bd2c3c2c77a868d24a9e3195"; + sha256 = "1akmng2vip60wlv6grby8aqrn99y3xx8bbj58cd3x4n4ayfa5ax7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -14238,15 +14323,15 @@ ego = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "ego"; - version = "20160509.1210"; + version = "20160602.733"; src = fetchFromGitHub { owner = "emacs-china"; repo = "EGO"; - rev = "88796f1f81ece8b7b41362bbc8e338d4ae09f362"; - sha256 = "04bx8k854dj0c4qnn9kxzzv4j9v2k2g5nrqh6118pbbdii36l6d1"; + rev = "31e2bfd0f7cc3ce0ef01184f55ac389ce7595a8c"; + sha256 = "1m53zv74lqzdy78jix0a33ih2pqkmrfriwlgsgvb12lb281bfnsa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ego"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ego"; sha256 = "02s840chz3v4gdyq01b5i5w2vxl94001jk9j1nsp5b8xm10w985j"; name = "ego"; }; @@ -14258,14 +14343,14 @@ }) {}; eide = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eide"; - version = "20160210.1538"; + version = "20160210.2138"; src = fetchgit { url = "git://git.tuxfamily.org/gitroot/eide/emacs-ide.git"; rev = "9d7fb8c50568ece04bb0382caca42d3ab68fbb01"; sha256 = "1qiafvx6bhliqaysyc4qv2ps44qsmls75ysjbgmzw5rndc8hf0r0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -14278,7 +14363,7 @@ eimp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eimp"; - version = "20120826.1639"; + version = "20120826.2239"; src = fetchFromGitHub { owner = "nicferrier"; repo = "eimp"; @@ -14286,7 +14371,7 @@ sha256 = "154d57yafxbcf39r89n5j43c86rp2fki3lw3gwy7ww2g6qkclcra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eimp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eimp"; sha256 = "00g77bg49m38cjfbh17ccnmksz05qx7yvgl6i4i4hysbr2d8pgxd"; name = "eimp"; }; @@ -14299,7 +14384,7 @@ ein = callPackage ({ cl-generic, fetchFromGitHub, fetchurl, lib, melpaBuild, request, websocket }: melpaBuild { pname = "ein"; - version = "20160422.929"; + version = "20160422.1529"; src = fetchFromGitHub { owner = "millejoh"; repo = "emacs-ipython-notebook"; @@ -14307,7 +14392,7 @@ sha256 = "1b20cz9grxyjpbmc91csfygkg6rnclj39cc6pnlxxy6ikcn5xywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -14320,7 +14405,7 @@ ein-mumamo = callPackage ({ ein, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ein-mumamo"; - version = "20150301.1928"; + version = "20150302.128"; src = fetchFromGitHub { owner = "millejoh"; repo = "ein-mumamo"; @@ -14328,7 +14413,7 @@ sha256 = "1w0b3giy9ca35pp2ni4afnqas64a2vriilab7jiw9anp3ryh6570"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein-mumamo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein-mumamo"; sha256 = "029sk90xz9fhv2s56f5hp0aks1d6ybz517009vv4892bbzkpjv1w"; name = "ein-mumamo"; }; @@ -14341,7 +14426,7 @@ eink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eink-theme"; - version = "20160522.203"; + version = "20160522.803"; src = fetchFromGitHub { owner = "maio"; repo = "eink-emacs"; @@ -14349,7 +14434,7 @@ sha256 = "1ll3d8ylwbznmlq0wl6nvf6sgb9y2hkkpybv17ymg016j5xbngkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eink-theme"; sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; name = "eink-theme"; }; @@ -14362,15 +14447,15 @@ ejc-sql = callPackage ({ auto-complete, clomacs, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ejc-sql"; - version = "20160514.1027"; + version = "20160603.1642"; src = fetchFromGitHub { owner = "kostafey"; repo = "ejc-sql"; - rev = "99ea2629a45c349047e7a37d7d7205228bf9176d"; - sha256 = "1h9d2prdr02npl9qn4kinij9zvf0a60mf4zfcdxc4ylvlyqz75jc"; + rev = "a7509abcdf76408acc03f1f198450b9064bcd5c4"; + sha256 = "0v7amrmzrmj3myikd0a3g30cmkjri84paxxi4qzldwshj1pwypn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ejc-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ejc-sql"; sha256 = "0v9mmwc2gm58nky81q7fibj93zi7zbxq1jzjw55dg6cb6qb87vnx"; name = "ejc-sql"; }; @@ -14383,7 +14468,7 @@ el-autoyas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-autoyas"; - version = "20120918.917"; + version = "20120918.1517"; src = fetchFromGitHub { owner = "mattfidler"; repo = "el-autoyas.el"; @@ -14391,7 +14476,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -14404,15 +14489,15 @@ el-get = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-get"; - version = "20160519.1946"; + version = "20160520.146"; src = fetchFromGitHub { owner = "dimitri"; repo = "el-get"; - rev = "2d9068f7bc2aa0b2ad2e9cbb2022e72ac737eaa7"; - sha256 = "0mgrpiy1bga8ggr58jnmb8zmb9qc9w3a87gibmgy6ji6p8j4law9"; + rev = "32d9903ea77f6d63fae45a14ab97f69333d7e5fc"; + sha256 = "1dyc8qqyj54xg6wdybysgwpyvqpsjnd87nrqfzfb49mw470wf37r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -14425,7 +14510,7 @@ el-init = callPackage ({ anaphora, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-init"; - version = "20150728.520"; + version = "20150728.1120"; src = fetchFromGitHub { owner = "HKey"; repo = "el-init"; @@ -14433,7 +14518,7 @@ sha256 = "0qk5jk0n7ga2cxqnm69rsy5cjjn5b4l4yqgaafvmmrrp70p8drmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -14446,7 +14531,7 @@ el-init-viewer = callPackage ({ anaphora, cl-lib ? null, ctable, dash, el-init, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-init-viewer"; - version = "20150303.328"; + version = "20150303.928"; src = fetchFromGitHub { owner = "HKey"; repo = "el-init-viewer"; @@ -14454,7 +14539,7 @@ sha256 = "0flf0pa3xwrdhfkshyr6nqrm957sgx9jkganbasqavbq1dvlw6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -14467,7 +14552,7 @@ el-mock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-mock"; - version = "20150906.621"; + version = "20150906.1221"; src = fetchFromGitHub { owner = "rejeep"; repo = "el-mock.el"; @@ -14475,7 +14560,7 @@ sha256 = "1jiq2hpym3wpk80zsl4lffpv4kgkykc2zp08sb01wa7pl8d1knmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -14488,7 +14573,7 @@ el-pocket = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "el-pocket"; - version = "20150202.1828"; + version = "20150203.28"; src = fetchFromGitHub { owner = "pterygota"; repo = "el-pocket"; @@ -14496,7 +14581,7 @@ sha256 = "1iykhicc1ic1r6h4vj3701rm0vfy41b16w3d98amf8jjypv54wv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-pocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-pocket"; sha256 = "0fgylpfixsx5l1nrgz6n1c2ayf52p60f9q290hmkn36siyx5hixw"; name = "el-pocket"; }; @@ -14509,7 +14594,7 @@ el-spec = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-spec"; - version = "20121018.304"; + version = "20121018.904"; src = fetchFromGitHub { owner = "uk-ar"; repo = "el-spec"; @@ -14517,7 +14602,7 @@ sha256 = "1lsq7980pwcwlg7z37hrig8ddm9nyvaqrlczv1w0vy631vc5z2az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spec"; sha256 = "017syizs8qw5phwvpzzffzdnj6rh9q4n7s51qjvj8qfb3088igkh"; name = "el-spec"; }; @@ -14530,7 +14615,7 @@ el-spice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, thingatpt-plus }: melpaBuild { pname = "el-spice"; - version = "20140805.1438"; + version = "20140805.2038"; src = fetchFromGitHub { owner = "vedang"; repo = "el-spice"; @@ -14538,7 +14623,7 @@ sha256 = "1sba405h1sy5vxg4ki631p4979gyaqv8wnwbgca5jp2pm8l3viri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -14551,7 +14636,7 @@ el-sprunge = callPackage ({ emacs, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, web-server }: melpaBuild { pname = "el-sprunge"; - version = "20140106.2039"; + version = "20140107.239"; src = fetchFromGitHub { owner = "eschulte"; repo = "el-sprunge"; @@ -14559,7 +14644,7 @@ sha256 = "04k1fz0ypmfzgwamncp2vz0lq54bq6y7c8k9nm39csp2564vmbbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-sprunge"; sha256 = "0rb1cr7zrfl1s5prxy3xwdqgnm8ddw33pcvk049km2qbccb08v6a"; name = "el-sprunge"; }; @@ -14572,7 +14657,7 @@ el-spy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-spy"; - version = "20131226.1508"; + version = "20131226.2108"; src = fetchFromGitHub { owner = "uk-ar"; repo = "el-spy"; @@ -14580,7 +14665,7 @@ sha256 = "016l3inzb7dby0w58najj2pvymwk6gllsxvqj2fkz3599i36p1pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spy"; sha256 = "1bgv4mgsnkmjdyay7lhkqdszvnwpjy4dxxw11kq45w866ba8645n"; name = "el-spy"; }; @@ -14592,13 +14677,13 @@ }) {}; el-swank-fuzzy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-swank-fuzzy"; - version = "20130824.757"; + version = "20130824.1357"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/el-swank-fuzzy.el"; sha256 = "1g2jhm9m5qcj6a231n5ch6b8bqwzq3kj275nd4s89p89v1252qhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-swank-fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-swank-fuzzy"; sha256 = "1m7y4c0r1w8ndmr1wgc2llrbfawbbxnvcvgjpsckb3704s87yxr1"; name = "el-swank-fuzzy"; }; @@ -14611,7 +14696,7 @@ el-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el-x"; - version = "20140111.1701"; + version = "20140111.2301"; src = fetchFromGitHub { owner = "sigma"; repo = "el-x"; @@ -14619,7 +14704,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -14632,7 +14717,7 @@ el2markdown = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "el2markdown"; - version = "20150516.1638"; + version = "20150516.2238"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "el2markdown"; @@ -14640,7 +14725,7 @@ sha256 = "03xlxx57z1id9mr7afkvf77m2f9rrknrm1380p51vka84v2hl3mh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el2markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el2markdown"; sha256 = "1a52qm0jrcvvpb01blr5l7apaxqn4bvhkgha53cr48rdkmmq318g"; name = "el2markdown"; }; @@ -14653,7 +14738,7 @@ elang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "elang"; - version = "20160104.956"; + version = "20160104.1556"; src = fetchFromGitHub { owner = "vkazanov"; repo = "elang"; @@ -14661,7 +14746,7 @@ sha256 = "1wikmzl9gi72h6fxawj0h20828n4vypw9rrv35kqnl4gfrdmxzkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -14674,7 +14759,7 @@ eldoc-eval = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eldoc-eval"; - version = "20150512.806"; + version = "20150512.1406"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "eldoc-eval"; @@ -14682,7 +14767,7 @@ sha256 = "0vppa9xihn8777rphiw1aqp96xn16vgjwff1dwvp8z861silp8ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -14694,13 +14779,13 @@ }) {}; eldoc-extension = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "eldoc-extension"; - version = "20140306.945"; + version = "20140306.1545"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/eldoc-extension.el"; sha256 = "13ncpp3hrwk0h030c5nnm2zfiingilr5b876jsf2wxmylg57nbch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-extension"; sha256 = "0azkdx4ncjhb7qyhyg1a5pxgqqf2z1wq9iz802j0nxxnjzh9ny24"; name = "eldoc-extension"; }; @@ -14713,7 +14798,7 @@ electric-case = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "electric-case"; - version = "20150417.712"; + version = "20150417.1312"; src = fetchFromGitHub { owner = "zk-phi"; repo = "electric-case"; @@ -14721,7 +14806,7 @@ sha256 = "0s4y1319sr4xc0k6h2zhzzxsx2kc3pc2m6saah18y4kip0hjyhr8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-case"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-case"; sha256 = "11mab7799kxs3w47srmds5prmwh6ldxzial9kqbqy33vybpkprmd"; name = "electric-case"; }; @@ -14734,15 +14819,15 @@ electric-operator = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "electric-operator"; - version = "20160511.231"; + version = "20160511.831"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "electric-operator"; - rev = "1a13d01603897f2aee94433e46d881936034aee6"; - sha256 = "1bwcz93m5axr88hbksm0w9zxs8c397xbazxb3kc3mprbw5my7k1a"; + rev = "ff1aceec151bd9e7b25f0414ba93f3435e5c2999"; + sha256 = "1fq80j0gq3x03jqdpb6lr748mbx7sj7r54lq2m3qpnxp15p2v360"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -14755,7 +14840,7 @@ electric-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "electric-spacing"; - version = "20151209.1036"; + version = "20151209.1636"; src = fetchFromGitHub { owner = "xwl"; repo = "electric-spacing"; @@ -14763,7 +14848,7 @@ sha256 = "0q1pb01h48wdbjgi04a6ck2jn7yfh92wpq1vka5pg54wv2k9b5fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-spacing"; sha256 = "0fcsz9wmibqp6ci0pa5r4gzlrsyj5klajxpgfksa0nfj3dc94cvg"; name = "electric-spacing"; }; @@ -14776,7 +14861,7 @@ elein = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elein"; - version = "20120120.616"; + version = "20120120.1216"; src = fetchFromGitHub { owner = "remvee"; repo = "elein"; @@ -14784,7 +14869,7 @@ sha256 = "1ijrhm9vrzh5wl1rr9ayl11dwm05bh1i43fnbz3ga58l6whgkfpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elein"; sha256 = "0af263zq4xxaxhpypn769q8h1dla0ygpnd6l8xc13zlni6jjwdsg"; name = "elein"; }; @@ -14797,15 +14882,15 @@ elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elfeed"; - version = "20160519.855"; + version = "20160525.1416"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "5e3b43b9896864a96575d1dc3bc4d534fc4630c5"; - sha256 = "1lrndd30f46rpbczqma7wppc64fwa1mh0a48p8ma9nw3nbxd911n"; + rev = "f34b5c34766868c6ebe3408155086dcf54062e2b"; + sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -14818,7 +14903,7 @@ elfeed-goodies = callPackage ({ ace-jump-mode, cl-lib ? null, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, popwin, powerline }: melpaBuild { pname = "elfeed-goodies"; - version = "20160317.724"; + version = "20160317.1224"; src = fetchFromGitHub { owner = "algernon"; repo = "elfeed-goodies"; @@ -14826,7 +14911,7 @@ sha256 = "10dbf292l1pd6a4jchdlvpp4yf2kxmf2j6zqigh4wlg125px1drk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-goodies"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-goodies"; sha256 = "0zpk6nx757hasgzcww90fzkcdn078my33p7yax7xslvi4msm37bi"; name = "elfeed-goodies"; }; @@ -14846,7 +14931,7 @@ elfeed-org = callPackage ({ dash, elfeed, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "elfeed-org"; - version = "20151003.631"; + version = "20151003.1231"; src = fetchFromGitHub { owner = "remyhonig"; repo = "elfeed-org"; @@ -14854,7 +14939,7 @@ sha256 = "0cp8sbhym83db88ii7gyab6iqxppinjlrkzb9627gq7xgb5mqj5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-org"; sha256 = "0xf2r5ca3gnx2cv9f8rr4s1hds2ggqsbllvfr229gznkcqjnglik"; name = "elfeed-org"; }; @@ -14867,15 +14952,15 @@ elfeed-web = callPackage ({ elfeed, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "elfeed-web"; - version = "20151222.1422"; + version = "20160525.1416"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "5e3b43b9896864a96575d1dc3bc4d534fc4630c5"; - sha256 = "1lrndd30f46rpbczqma7wppc64fwa1mh0a48p8ma9nw3nbxd911n"; + rev = "f34b5c34766868c6ebe3408155086dcf54062e2b"; + sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -14888,7 +14973,7 @@ elhome = callPackage ({ fetchFromGitHub, fetchurl, initsplit, lib, melpaBuild }: melpaBuild { pname = "elhome"; - version = "20131202.1408"; + version = "20131202.2008"; src = fetchFromGitHub { owner = "demyanrogozhin"; repo = "elhome"; @@ -14896,7 +14981,7 @@ sha256 = "0rdhnnyn0xsmnshnf289kxk974r57i6nx0vii1w36j6p6q0b7f9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elhome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elhome"; sha256 = "1k7936wxgslr29511dz9az38i9vi35rcxk68gzv35v9lpj89lalh"; name = "elhome"; }; @@ -14909,7 +14994,7 @@ elisp-depend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-depend"; - version = "20120428.1604"; + version = "20120428.2204"; src = fetchFromGitHub { owner = "tehom"; repo = "elisp-depend"; @@ -14917,7 +15002,7 @@ sha256 = "1a73zdh4jkx8f74cq802b5j4bx8k1z7cbsp10lz40lmwwxbl3czq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-depend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-depend"; sha256 = "1x3acgkpd9a8xxjg5zjw0d4nv4q9xx30ipr6v3544mn16sv4ab7c"; name = "elisp-depend"; }; @@ -14930,7 +15015,7 @@ elisp-format = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-format"; - version = "20160508.552"; + version = "20160508.1152"; src = fetchFromGitHub { owner = "Yuki-Inoue"; repo = "elisp-format"; @@ -14938,7 +15023,7 @@ sha256 = "17l2xsixx3p93dmx9jsg0a3xqdg19nwp1di2pymlg41pw0kdf3x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-format"; sha256 = "1l0596y4yjn3jdyy6pgws1pgz6i12fxfy27566lmxklbxp8sxgy8"; name = "elisp-format"; }; @@ -14951,7 +15036,7 @@ elisp-lint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-lint"; - version = "20150430.1858"; + version = "20150501.58"; src = fetchFromGitHub { owner = "nschum"; repo = "elisp-lint"; @@ -14959,7 +15044,7 @@ sha256 = "1ci6nyk1vvb3wgxzarbf6448i9rjb74zzrhcmls634gfxbryxdyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-lint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-lint"; sha256 = "102hrxdw72bm11a29i15g09lv7jlnd7vkv7292fm3mcxf5f4hkw9"; name = "elisp-lint"; }; @@ -14993,7 +15078,7 @@ elisp-slime-nav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elisp-slime-nav"; - version = "20160128.1409"; + version = "20160128.2009"; src = fetchFromGitHub { owner = "purcell"; repo = "elisp-slime-nav"; @@ -15001,7 +15086,7 @@ sha256 = "11vyy0bvzbs1h1kggikrvhd658j7c730w0pdp6qkm60rigvfi1ih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -15014,15 +15099,15 @@ elixir-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "elixir-mode"; - version = "20160512.227"; + version = "20160601.931"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "emacs-elixir"; - rev = "642e14660ee336958130990f1882227bfbf56cb1"; - sha256 = "1si3dsr4bllkxg6abwjfyzj47k6nbrmj1vg8i9c7nxi7i58c077j"; + rev = "fe313d3ba80a2ea847f2e1ed45bd11a589c5cc8c"; + sha256 = "0d4m3q3kh6wsk4rwwgknxddmvqhdd0b367xyj9qkwra4wsbaapa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -15035,7 +15120,7 @@ elixir-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "elixir-yasnippets"; - version = "20150417.839"; + version = "20150417.1439"; src = fetchFromGitHub { owner = "hisea"; repo = "elixir-yasnippets"; @@ -15043,7 +15128,7 @@ sha256 = "1sdq4372i19wdxpdp3347a1rf5zf5w6sa0da6lr511m7ri0lj6hd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-yasnippets"; sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; @@ -15056,15 +15141,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "20160513.621"; + version = "20160604.1114"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "261dc0f22d177afa325640533423803dce4f467c"; - sha256 = "086d0lr5kflr4qrpr4xs3sl0vmsc5i5b9vk6ldh7flhrrr8kg784"; + rev = "5e2e70436d4e5be6725a43b1f09eb68db7400f02"; + sha256 = "0wzxk4p9rxgv2k3z5k5zyi46mfvax658j7p29q2ii5hyj9imcjka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -15077,7 +15162,7 @@ elm-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "elm-yasnippets"; - version = "20160401.124"; + version = "20160401.724"; src = fetchFromGitHub { owner = "abingham"; repo = "elm-yasnippets"; @@ -15085,7 +15170,7 @@ sha256 = "1zb5yra6znkr7yaq6wqlmlr054wkv9cy1dih8h4j2gp2wnfwg968"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-yasnippets"; sha256 = "0nnr0sxkxviw2i7b5s8jgvsv7lgqxqvirmvmband84q9gxlz24zb"; name = "elm-yasnippets"; }; @@ -15098,7 +15183,7 @@ elmacro = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elmacro"; - version = "20160224.1231"; + version = "20160224.1831"; src = fetchFromGitHub { owner = "Silex"; repo = "elmacro"; @@ -15106,7 +15191,7 @@ sha256 = "085ab50q3jdy3vh22lz2p5ivcjlhfki3zzfsp1n0939myw6vqcsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -15119,7 +15204,7 @@ elmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elmine"; - version = "20151121.723"; + version = "20151121.1323"; src = fetchFromGitHub { owner = "leoc"; repo = "elmine"; @@ -15127,7 +15212,7 @@ sha256 = "1463y4zc6yabd30k6806yw0am18fjv0bkxm56p2siqrwn9pbsh8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -15140,7 +15225,7 @@ elnode = callPackage ({ creole, dash, db, fakir, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet, s, web }: melpaBuild { pname = "elnode"; - version = "20140203.1806"; + version = "20140204.6"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elnode"; @@ -15148,7 +15233,7 @@ sha256 = "0p3cj5vgka388i4dk9r7bx8pv8mywnfij9ahgqak5jlsddflh8hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elnode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elnode"; sha256 = "0piy5gy9a7c8s10b99fmdyh6glhvjvdyrz0x2bv30h7wplx5szi6"; name = "elnode"; }; @@ -15161,7 +15246,7 @@ elog = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elog"; - version = "20160426.822"; + version = "20160426.1422"; src = fetchFromGitHub { owner = "lujun9972"; repo = "elog"; @@ -15169,7 +15254,7 @@ sha256 = "0z3g7jddsjf4hmhwvi8mhd90255ylaix0ysljscqsixacknzcjm9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elog"; sha256 = "0hixsi60nf0khm9xmya3saf95ahn1gydp0l5wxawsc491qwg4vqd"; name = "elog"; }; @@ -15182,7 +15267,7 @@ elogcat = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "elogcat"; - version = "20151120.1941"; + version = "20151121.141"; src = fetchFromGitHub { owner = "youngker"; repo = "elogcat.el"; @@ -15190,7 +15275,7 @@ sha256 = "1jcr8bxffvnfs0ym6zkgs79hd6a0m81r4x4jr3v5l9zwxw04sy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elogcat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elogcat"; sha256 = "0sqdqlpg4firswr742nrb6b8sz3bpijf6pbxvandq3ddpm0rx9ia"; name = "elogcat"; }; @@ -15203,7 +15288,7 @@ elpa-audit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elpa-audit"; - version = "20141023.931"; + version = "20141023.1531"; src = fetchFromGitHub { owner = "purcell"; repo = "elpa-audit"; @@ -15211,7 +15296,7 @@ sha256 = "1dadf24x6v1vk57bp6w0g2dysigy5cqjzwldc8dn129f4pfrhipy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -15224,7 +15309,7 @@ elpa-mirror = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elpa-mirror"; - version = "20160512.104"; + version = "20160512.704"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "elpa-mirror"; @@ -15232,7 +15317,7 @@ sha256 = "1l1wnnmz62crr2gzpf0gzqp2pwmd50xp9knpswwz7l482gvfbzl7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -15245,15 +15330,15 @@ elpy = callPackage ({ company, fetchFromGitHub, fetchurl, find-file-in-project, highlight-indentation, lib, melpaBuild, pyvenv, yasnippet }: melpaBuild { pname = "elpy"; - version = "20160429.1329"; + version = "20160528.2110"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "elpy"; - rev = "c9487a14e9cb21b531660de7e648086e270ab08f"; - sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj"; + rev = "625434c8bd13335f165ac56017895543185c9d4a"; + sha256 = "0q70z5hif78s3syv6ny55phz8w794fwxkjwizbmiy4kn5y7lf3q7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpy"; sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d"; name = "elpy"; }; @@ -15272,7 +15357,7 @@ elscreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen"; - version = "20151025.2100"; + version = "20151026.200"; src = fetchFromGitHub { owner = "knu"; repo = "elscreen"; @@ -15280,7 +15365,7 @@ sha256 = "055kam18k4ni1zw3310cpsvdnrp62d579r30lq67ig2lq3yxzc1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen"; sha256 = "1mlqbw14ilk6d3ba38kfw50pnlhb9f6sm5hy9dw58gp59siark5s"; name = "elscreen"; }; @@ -15293,7 +15378,7 @@ elscreen-buffer-group = callPackage ({ cl-lib ? null, elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-buffer-group"; - version = "20160105.1103"; + version = "20160105.1703"; src = fetchFromGitHub { owner = "jeffgran"; repo = "elscreen-buffer-group"; @@ -15301,7 +15386,7 @@ sha256 = "0bbashrqpyhs282w5i15rzravvj0fjnydbh9vfnfnfnk8a9sssxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-buffer-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-buffer-group"; sha256 = "1clmhpk9zp6hsgz6a4jpmbrr9fr6k8b324s0x61n5yi4yzgdmc0v"; name = "elscreen-buffer-group"; }; @@ -15314,7 +15399,7 @@ elscreen-mew = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-mew"; - version = "20160504.1435"; + version = "20160504.2035"; src = fetchFromGitHub { owner = "masutaka"; repo = "elscreen-mew"; @@ -15322,7 +15407,7 @@ sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -15335,7 +15420,7 @@ elscreen-multi-term = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term }: melpaBuild { pname = "elscreen-multi-term"; - version = "20151021.2233"; + version = "20151022.433"; src = fetchFromGitHub { owner = "wamei"; repo = "elscreen-multi-term"; @@ -15343,7 +15428,7 @@ sha256 = "1cninrbgxzg0gykkpjx0i8pk2yc7sgr2kliqd35lgcxz2q4jlr51"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-multi-term"; sha256 = "1zwrzblkag1d18xz450b7khsdssvsxyl1x6a682vy0dkn1y5qh1n"; name = "elscreen-multi-term"; }; @@ -15356,7 +15441,7 @@ elscreen-persist = callPackage ({ elscreen, fetchFromGitHub, fetchurl, lib, melpaBuild, revive }: melpaBuild { pname = "elscreen-persist"; - version = "20160505.2129"; + version = "20160506.329"; src = fetchFromGitHub { owner = "robario"; repo = "elscreen-persist"; @@ -15364,7 +15449,7 @@ sha256 = "0p0zphl3ylrbs3mz12y40hphslxd1hlszk1pqi151xrfgc2r0pp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -15377,7 +15462,7 @@ elscreen-separate-buffer-list = callPackage ({ elscreen, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elscreen-separate-buffer-list"; - version = "20150522.245"; + version = "20150522.845"; src = fetchFromGitHub { owner = "wamei"; repo = "elscreen-separate-buffer-list"; @@ -15385,7 +15470,7 @@ sha256 = "1w34nnl4zalxzmyfbc81qd82m7qp3zvz608dx6hfi44pjz0dp36f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-separate-buffer-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-separate-buffer-list"; sha256 = "1d8kc137cd8i3wglir1rlvk7w8mrdhd3xvcihi2f2f2g5nh2n5jk"; name = "elscreen-separate-buffer-list"; }; @@ -15398,7 +15483,7 @@ elwm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elwm"; - version = "20150817.607"; + version = "20150817.1207"; src = fetchFromGitHub { owner = "Fuco1"; repo = "elwm"; @@ -15406,7 +15491,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -15419,15 +15504,15 @@ elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elx"; - version = "20160220.1214"; + version = "20160523.1428"; src = fetchFromGitHub { owner = "tarsius"; repo = "elx"; - rev = "24bb321b275d441ca532c4ca7417143a79a88dcf"; - sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; + rev = "0f80390bcf2a1dd9a3ba609e92f50a4a3463036e"; + sha256 = "07k8kq444ki7pxbz3vnrwqgycm9hfcdxgsnvf7qihqvzs2y1qm3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -15440,7 +15525,7 @@ emacs-eclim = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, popup, s }: melpaBuild { pname = "emacs-eclim"; - version = "20160411.1217"; + version = "20160411.1817"; src = fetchFromGitHub { owner = "emacs-eclim"; repo = "emacs-eclim"; @@ -15448,7 +15533,7 @@ sha256 = "1fj84r3r0kdprjy2sbzxgx7icfn6fbhvylbzfcv4wq5g7qbn45sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -15461,7 +15546,7 @@ emacs-setup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacs-setup"; - version = "20120727.1026"; + version = "20120727.1626"; src = fetchFromGitHub { owner = "echosa"; repo = "emacs-setup"; @@ -15469,7 +15554,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -15482,7 +15567,7 @@ emacsagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsagist"; - version = "20140331.1430"; + version = "20140331.2030"; src = fetchFromGitHub { owner = "echosa"; repo = "emacsagist"; @@ -15490,7 +15575,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -15503,7 +15588,7 @@ emacsc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsc"; - version = "20150807.557"; + version = "20150807.1157"; src = fetchFromGitHub { owner = "knu"; repo = "emacsc"; @@ -15511,7 +15596,7 @@ sha256 = "1rqr08gj07hw37mqd0flmq4a10wn16vy7wg0msqq0ab2smwjhns7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -15524,7 +15609,7 @@ emacsist-view = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsist-view"; - version = "20160426.823"; + version = "20160426.1423"; src = fetchFromGitHub { owner = "lujun9972"; repo = "emacsist-view"; @@ -15532,7 +15617,7 @@ sha256 = "1vhs9725fyl2j65lk014qz76iv4hsvyim06361h4lai634hp7ck6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsist-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsist-view"; sha256 = "0lf280ppi3zksqvx81y8mm9479j26kd5wywfghhwk36kz410hk99"; name = "emacsist-view"; }; @@ -15545,7 +15630,7 @@ emacsql = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, finalize, lib, melpaBuild }: melpaBuild { pname = "emacsql"; - version = "20160424.1047"; + version = "20160424.1647"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15553,7 +15638,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -15566,7 +15651,7 @@ emacsql-mysql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-mysql"; - version = "20151004.1015"; + version = "20151004.1615"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15574,7 +15659,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -15587,7 +15672,7 @@ emacsql-psql = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild, pg }: melpaBuild { pname = "emacsql-psql"; - version = "20151004.1015"; + version = "20151004.1615"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15595,7 +15680,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -15608,7 +15693,7 @@ emacsql-sqlite = callPackage ({ cl-lib ? null, emacs, emacsql, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsql-sqlite"; - version = "20160311.1538"; + version = "20160311.2138"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacsql"; @@ -15616,7 +15701,7 @@ sha256 = "012x6cx3rbxysvsmbx56y295ijdlpgy8z7ggcfp0cq0khki67yva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -15629,7 +15714,7 @@ emacsshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emacsshot"; - version = "20160504.432"; + version = "20160504.1032"; src = fetchFromGitHub { owner = "marcowahl"; repo = "emacsshot"; @@ -15637,7 +15722,7 @@ sha256 = "08j10c699r8r8xynvlkm0vwlfza1fqz11zcfk2dsrakq3y9vb4ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsshot"; sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; name = "emacsshot"; }; @@ -15650,7 +15735,7 @@ emagician-fix-spell-memory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emagician-fix-spell-memory"; - version = "20141229.1734"; + version = "20141229.2334"; src = fetchFromGitHub { owner = "jonnay"; repo = "emagicians-starter-kit"; @@ -15658,7 +15743,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emagician-fix-spell-memory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emagician-fix-spell-memory"; sha256 = "0ffjrpiph21dn8bplklsz3hrsai25l67yyr7n8qjxlwlibwqzv6j"; name = "emagician-fix-spell-memory"; }; @@ -15671,15 +15756,15 @@ emamux = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emamux"; - version = "20160518.1048"; + version = "20160602.1553"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-emamux"; - rev = "239a32aa6c92baef0f653250840b5979d4a1396e"; - sha256 = "19d6dc74zv0wk2i3p5x1ys2frzhicaadp87vv1rifbkz0697krz1"; + rev = "ff5f701b9d844681879756f7980c75361aba1a96"; + sha256 = "0y6f759vh1v7pficjsf3n5ks52x36y2khk123a7ppi0vp826z52r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -15692,7 +15777,7 @@ emamux-ruby-test = callPackage ({ emamux, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "emamux-ruby-test"; - version = "20130812.1239"; + version = "20130812.1839"; src = fetchFromGitHub { owner = "syohex"; repo = "emamux-ruby-test"; @@ -15700,7 +15785,7 @@ sha256 = "1idsvilsvlxh72waalhl8vrsmh0vfvz56qcv56fc2c0pb1i90icn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux-ruby-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux-ruby-test"; sha256 = "1l1hp2dggjlc287qkfyj21w9lri4agh91g5x707qqq8nicdlv3xm"; name = "emamux-ruby-test"; }; @@ -15713,7 +15798,7 @@ ember-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ember-mode"; - version = "20151103.521"; + version = "20151103.1121"; src = fetchFromGitHub { owner = "madnificent"; repo = "ember-mode"; @@ -15721,7 +15806,7 @@ sha256 = "0cv8y6hr719648yxr2fbgb1hyg36m60bsbd57f2vvvqvg87si4jz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ember-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ember-mode"; sha256 = "0fwd34cim29dg802ibsfd120px9sj54d4wzp3ggmjjzwkl9ky7dx"; name = "ember-mode"; }; @@ -15734,15 +15819,15 @@ ember-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "ember-yasnippets"; - version = "20160201.1820"; + version = "20160526.1858"; src = fetchFromGitHub { owner = "ronco"; repo = "ember-yasnippets.el"; - rev = "5d09e0d95218ce9a9abf9c908effd17f52cf5dbe"; - sha256 = "1sj033acw1q80accdfkrxw4kzfl8p1ld16y188ikbizvq75lfkpp"; + rev = "3b5bd01569646237bf1b540d097e12f9118b67f4"; + sha256 = "0g7hp1aq0zznbhd234dpbblnagn34fxdasc5v4lfhm5ykw5xyb5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ember-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ember-yasnippets"; sha256 = "1jwkzcqcpy7ykdjhsqmg8ds6qyl4jglyjbgg7v301x068dsxkja6"; name = "ember-yasnippets"; }; @@ -15755,7 +15840,7 @@ embrace = callPackage ({ cl-lib ? null, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "embrace"; - version = "20160513.2213"; + version = "20160514.413"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "embrace.el"; @@ -15763,7 +15848,7 @@ sha256 = "0arxgq1a75lhzc8f18aa32q2rxq4wxxacm6l7zxiqz98kl0gvfyi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/embrace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/embrace"; sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; name = "embrace"; }; @@ -15776,7 +15861,7 @@ emmet-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emmet-mode"; - version = "20160501.1451"; + version = "20160501.2051"; src = fetchFromGitHub { owner = "smihica"; repo = "emmet-mode"; @@ -15784,7 +15869,7 @@ sha256 = "1dh43fhkaqljnh1517kf8h3rjqaygj6wdhcbsy7mzcac0jrbfsfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emmet-mode"; sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; @@ -15796,14 +15881,14 @@ }) {}; emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms"; - version = "20160304.1220"; + version = "20160531.1823"; src = fetchgit { url = "git://git.sv.gnu.org/emms.git"; - rev = "ac15f46e19d259e5d49acdac877d0793be1c1ebe"; - sha256 = "03vvqp08vkgqqrfcnxfnx0z1dl0wpljgkjkavfyjsd1h7npxs7ik"; + rev = "bb8bb83cd83b02ba57e3283475d7fd2689ea5c33"; + sha256 = "1syy2y4rp0nqjdkq0lwnii20xkzv7iyryh2zlq6qg4pd6b2c73jb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms"; sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m"; name = "emms"; }; @@ -15816,7 +15901,7 @@ emms-info-mediainfo = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-info-mediainfo"; - version = "20131223.800"; + version = "20131223.1400"; src = fetchFromGitHub { owner = "fgallina"; repo = "emms-info-mediainfo"; @@ -15824,7 +15909,7 @@ sha256 = "07qbbs2i05bqndr4dxb84z50wav8ffbc56f6saw6pdx6n0sw6n6n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-info-mediainfo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-info-mediainfo"; sha256 = "17x8vvfhx739hcj9j1nh6j4r6zqnwa5zq9zpi9b6lxc8979k3m4w"; name = "emms-info-mediainfo"; }; @@ -15837,7 +15922,7 @@ emms-mark-ext = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mark-ext"; - version = "20130528.2327"; + version = "20130529.527"; src = fetchFromGitHub { owner = "vapniks"; repo = "emms-mark-ext"; @@ -15845,7 +15930,7 @@ sha256 = "03a7sn8pl0pnr05rmrrbw4hjyi8vpjqbvkvh0fqnij913a6qc64l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mark-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mark-ext"; sha256 = "13h6hy8y0as0xfc1cg8balw63as81fzar32q9h4zhnndl3hc1081"; name = "emms-mark-ext"; }; @@ -15858,7 +15943,7 @@ emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mode-line-cycle"; - version = "20160221.620"; + version = "20160221.1220"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-mode-line-cycle"; @@ -15866,7 +15951,7 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -15879,7 +15964,7 @@ emms-player-mpv = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv"; - version = "20160319.308"; + version = "20160319.808"; src = fetchFromGitHub { owner = "dochang"; repo = "emms-player-mpv"; @@ -15887,7 +15972,7 @@ sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -15900,7 +15985,7 @@ emms-player-mpv-jp-radios = callPackage ({ cl-lib ? null, emacs, emms, emms-player-simple-mpv, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-mpv-jp-radios"; - version = "20160501.933"; + version = "20160501.1533"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-player-mpv-jp-radios"; @@ -15908,7 +15993,7 @@ sha256 = "1phjrisr9m6rpd40y6f8iiagrr7vpqc8ksgwymi8w11b1kmxhdja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv-jp-radios"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv-jp-radios"; sha256 = "0gdap5cv08pz370fl92v9lyvgkbbyjhp9wsc4kyjm4f4pwx9fybv"; name = "emms-player-mpv-jp-radios"; }; @@ -15921,7 +16006,7 @@ emms-player-simple-mpv = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-player-simple-mpv"; - version = "20151020.901"; + version = "20151020.1501"; src = fetchFromGitHub { owner = "momomo5717"; repo = "emms-player-simple-mpv"; @@ -15929,7 +16014,7 @@ sha256 = "0ajxyv7yx4ni8dizs7acpsxnmy3c9s0dx28vw9y1ym0bxkgfyzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -15942,7 +16027,7 @@ emms-soundcloud = callPackage ({ emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "emms-soundcloud"; - version = "20131221.645"; + version = "20131221.1245"; src = fetchFromGitHub { owner = "osener"; repo = "emms-soundcloud"; @@ -15950,7 +16035,7 @@ sha256 = "0nx5bb5fjmaa1nhkbfnhd1aydqrq390x4rl1vfh11ilnf52wzzld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-soundcloud"; sha256 = "0nf1f719m4pvxn0mf4qyx8mzwhrhv6kchnrpiy9clx520y8x3dqi"; name = "emms-soundcloud"; }; @@ -15963,7 +16048,7 @@ emms-state = callPackage ({ emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-state"; - version = "20160504.405"; + version = "20160504.1005"; src = fetchFromGitHub { owner = "alezost"; repo = "emms-state.el"; @@ -15971,7 +16056,7 @@ sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-state"; sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; name = "emms-state"; }; @@ -15984,7 +16069,7 @@ emoji-cheat-sheet-plus = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "emoji-cheat-sheet-plus"; - version = "20150617.931"; + version = "20150617.1531"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "emacs-emoji-cheat-sheet-plus"; @@ -15992,7 +16077,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -16005,7 +16090,7 @@ emoji-display = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emoji-display"; - version = "20140117.513"; + version = "20140117.1113"; src = fetchFromGitHub { owner = "ikazuhiro"; repo = "emoji-display"; @@ -16013,7 +16098,7 @@ sha256 = "0sh4q4sb4j58ryvvmlsx7scry9inzgv2ssa87vbyzpxq0435l229"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-display"; sha256 = "04cf18z26d64l0sv8qkbxjixi2wbw23awd5fznvg1cs8ixss01j9"; name = "emoji-display"; }; @@ -16026,7 +16111,7 @@ emoji-fontset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emoji-fontset"; - version = "20151107.2347"; + version = "20151108.547"; src = fetchFromGitHub { owner = "zonuexe"; repo = "emoji-fontset.el"; @@ -16034,7 +16119,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -16047,7 +16132,7 @@ emojify = callPackage ({ emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, seq }: melpaBuild { pname = "emojify"; - version = "20160316.1248"; + version = "20160316.1748"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "emacs-emojify"; @@ -16055,7 +16140,7 @@ sha256 = "1zz6q5jf22nwb9qlyxxrz56gz7x5gcxh6q6d0ybf4bapk35g3v0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emojify"; sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; @@ -16068,7 +16153,7 @@ empos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "empos"; - version = "20151011.1516"; + version = "20151011.2116"; src = fetchFromGitHub { owner = "dimalik"; repo = "empos"; @@ -16076,7 +16161,7 @@ sha256 = "0bm0cxnv7g2dzfvfhkyy16kzn6shvy9gzypiqyjj42ng54xmhs0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/empos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/empos"; sha256 = "0wbrszl9rq4is0ymxq9lxpqzlfg93gljh6almjy0hp3cs7pkzyl4"; name = "empos"; }; @@ -16089,7 +16174,7 @@ emr = callPackage ({ cl-lib ? null, clang-format, dash, emacs, fetchFromGitHub, fetchurl, iedit, lib, list-utils, melpaBuild, paredit, popup, projectile, redshank, s }: melpaBuild { pname = "emr"; - version = "20160218.2047"; + version = "20160219.247"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "emacs-refactor"; @@ -16097,7 +16182,7 @@ sha256 = "1frcn6694q74is8qbvrjkcsw0q1wz56z4gl35n4v3wakr9wvdvd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -16122,7 +16207,7 @@ enclose = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enclose"; - version = "20121008.1214"; + version = "20121008.1814"; src = fetchFromGitHub { owner = "rejeep"; repo = "enclose.el"; @@ -16130,7 +16215,7 @@ sha256 = "0dz5xm05d7irh1j8iy08jk521p19cjai1kw68z2nngnyf1az7cim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enclose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enclose"; sha256 = "1bkrv3cwhbiydgfjhmyjr96cvsgr9zi8n0ir1akgamccm2ln73d6"; name = "enclose"; }; @@ -16143,7 +16228,7 @@ encourage-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "encourage-mode"; - version = "20151128.405"; + version = "20151128.1005"; src = fetchFromGitHub { owner = "halbtuerke"; repo = "encourage-mode.el"; @@ -16151,7 +16236,7 @@ sha256 = "0k5ns40s5nskn0zialwq96qll1v5k50lfa5xh8hxbpcamsfym6h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/encourage-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/encourage-mode"; sha256 = "0fwn6w7s61c08z0d8z3awclqrhszia9is30gm2kx4hwr9dhhwh63"; name = "encourage-mode"; }; @@ -16164,7 +16249,7 @@ engine-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "engine-mode"; - version = "20150902.1335"; + version = "20150902.1935"; src = fetchFromGitHub { owner = "hrs"; repo = "engine-mode"; @@ -16172,7 +16257,7 @@ sha256 = "066pxfv4rpxgi7jxdyc0a3g5z9m1j66sbi5gh2l7m4rwhzkqchn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -16185,7 +16270,7 @@ enh-ruby-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enh-ruby-mode"; - version = "20151123.441"; + version = "20151123.1041"; src = fetchFromGitHub { owner = "zenspider"; repo = "enhanced-ruby-mode"; @@ -16193,7 +16278,7 @@ sha256 = "008wggl6xxk339njrgpj2fndbil7k9f3i2hg1mjwqk033j87nbz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enh-ruby-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enh-ruby-mode"; sha256 = "0r486yajjf7vsaz92ypxpfmz2nsvw9giffpxb9szj7fcry3nfdns"; name = "enh-ruby-mode"; }; @@ -16206,7 +16291,7 @@ enlive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enlive"; - version = "20150824.849"; + version = "20150824.1449"; src = fetchFromGitHub { owner = "zweifisch"; repo = "enlive"; @@ -16214,7 +16299,7 @@ sha256 = "0vd7zy06nqb1ayjlnf2wl0bfv1cqv2qcb3cgy3zr9k9c4whcd8jh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -16227,7 +16312,7 @@ eno = callPackage ({ dash, edit-at-point, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eno"; - version = "20160110.534"; + version = "20160110.1134"; src = fetchFromGitHub { owner = "enoson"; repo = "eno.el"; @@ -16235,7 +16320,7 @@ sha256 = "1qimqrvk0myqfi2l3viigkx1ld90qpjgi1gs6xhw2g51r8x4i3in"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eno"; sha256 = "0k4n4vw261v3bcxg7pqhxr99vh673l963yjridl0dp1663gcrfpk"; name = "eno"; }; @@ -16248,7 +16333,7 @@ enotify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "enotify"; - version = "20130407.948"; + version = "20130407.1548"; src = fetchFromGitHub { owner = "laynor"; repo = "enotify"; @@ -16256,7 +16341,7 @@ sha256 = "0v5p97dvzrk3j59yjc6iny71j3fdw9bb8737wnnzm098ff42dfmd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -16269,15 +16354,15 @@ ensime = callPackage ({ company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, s, sbt-mode, scala-mode, yasnippet }: melpaBuild { pname = "ensime"; - version = "20160521.1846"; + version = "20160602.2003"; src = fetchFromGitHub { owner = "ensime"; repo = "ensime-emacs"; - rev = "a190b9b4ed11415c6906745fc3b06b705d61f567"; - sha256 = "1rx28xn4jh1pywvfipy7xb6sfxa92zl2p18j6vhnq68hqkcj9wwb"; + rev = "caf2e8b7a57a604c1a2a4d999a1e963837a75bd3"; + sha256 = "1d90msjym36w8wzyvdrxfpl4n7a6qn37qajpj5dnv8zkqifl9fmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ensime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ensime"; sha256 = "1d8y72l7bh93x9zdj3d3qjhrrzr804rgi6kjifyrin772dffjwby"; name = "ensime"; }; @@ -16298,7 +16383,7 @@ envdir = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "envdir"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "envdir-mode"; @@ -16306,7 +16391,7 @@ sha256 = "1jyhr9gv3d0rxv5iks2g9x6xbxqv1bvf1fnih96h4pgsfxz8wrp6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/envdir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/envdir"; sha256 = "085bfm4w7flrv8jvzdnzbdg3j5n29xfzbs1wlrr29mg9dja6s8g8"; name = "envdir"; }; @@ -16319,7 +16404,7 @@ eopengrok = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, s }: melpaBuild { pname = "eopengrok"; - version = "20160214.247"; + version = "20160214.847"; src = fetchFromGitHub { owner = "youngker"; repo = "eopengrok.el"; @@ -16327,7 +16412,7 @@ sha256 = "0pmawjfyihqygqz7y0nvyrs6jcvckqzkq9k6z6yanpvkd2x5g13x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; @@ -16340,7 +16425,7 @@ epc = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epc"; - version = "20140610.134"; + version = "20140610.734"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-epc"; @@ -16348,7 +16433,7 @@ sha256 = "11z08y61xd00rlw5mcyrix8nx41mqs127wighhjsxsyzbfqydxdr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -16361,7 +16446,7 @@ epic = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "epic"; - version = "20150503.337"; + version = "20150503.937"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "epic"; @@ -16369,7 +16454,7 @@ sha256 = "18gfi1287skv5xvh12arkvxy2c4fism8bdk42wc5q3y21h8nsiim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epic"; sha256 = "0gfl8if83jbs0icz6gcjkwxvcz5v744k1kvqnbx3ga481kds9rqf"; name = "epic"; }; @@ -16382,7 +16467,7 @@ epkg = callPackage ({ closql, dash, emacs, fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epkg"; - version = "20160515.1109"; + version = "20160515.1709"; src = fetchFromGitLab { owner = "tarsius"; repo = "epkg"; @@ -16390,7 +16475,7 @@ sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epkg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epkg"; sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; name = "epkg"; }; @@ -16403,7 +16488,7 @@ epl = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "epl"; - version = "20150517.733"; + version = "20150517.1333"; src = fetchFromGitHub { owner = "cask"; repo = "epl"; @@ -16411,7 +16496,7 @@ sha256 = "0s4k2grikhibd075435giv3bmba1mx71ndxlr0k1i0q0xawpyyb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -16421,10 +16506,31 @@ license = lib.licenses.free; }; }) {}; + epm = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "epm"; + version = "20160601.902"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "epm"; + rev = "2ee9a69d725a77ac4e57cc652ce4b4cfd1fef63a"; + sha256 = "1kjkb2cvpkbbcvlq64imnv5ispkf3yrj4f5acagd32jx7gcgxfj8"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epm"; + sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08"; + name = "epm"; + }; + packageRequires = [ emacs epl ]; + meta = { + homepage = "https://melpa.org/#/epm"; + license = lib.licenses.free; + }; + }) {}; epresent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "epresent"; - version = "20160410.2201"; + version = "20160411.401"; src = fetchFromGitHub { owner = "dakrone"; repo = "epresent"; @@ -16432,7 +16538,7 @@ sha256 = "1qa1nq63kax767gs53s75ihspirvh69l4xdm89mj57qvrbpz36z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epresent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epresent"; sha256 = "176d1nwsafi6fb0dnv35bfskp0xczyzf2939gi4bz69zh0161jg8"; name = "epresent"; }; @@ -16445,7 +16551,7 @@ eprime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eprime-mode"; - version = "20140513.1416"; + version = "20140513.2016"; src = fetchFromGitHub { owner = "AndrewHynes"; repo = "eprime-mode"; @@ -16453,7 +16559,7 @@ sha256 = "1wwg46xdb488wxvglwvsy08vznrnmdmmbcvm9vb60dy3gqjmz7cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eprime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eprime-mode"; sha256 = "0vswjcs24f3mdyw6ai7p21ab8pdn327lr2d6css0a5nrg539cn2g"; name = "eprime-mode"; }; @@ -16466,7 +16572,7 @@ eproject = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "eproject"; - version = "20151206.30"; + version = "20151206.630"; src = fetchFromGitHub { owner = "jrockway"; repo = "eproject"; @@ -16474,7 +16580,7 @@ sha256 = "13ds5z2nvanx8cvxrzi0da6ixx7kw222z6mrlbs8cldqcmzm7xh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eproject"; sha256 = "0kpg4r57khbyinc73v9kj32b9m3b4nb5014r5fkl5mzzpzmd85b4"; name = "eproject"; }; @@ -16487,7 +16593,7 @@ erc-colorize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-colorize"; - version = "20160108.520"; + version = "20160108.1120"; src = fetchFromGitHub { owner = "thisirs"; repo = "erc-colorize"; @@ -16495,7 +16601,7 @@ sha256 = "18r66yl52xm1gjbn0dm8z80gv4p3794pi91qa8i2sri4grbsyi5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-colorize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-colorize"; sha256 = "1m941q7ql3yb71s71783nvz822bwhn1krmin18fvh0fbsbbnck2a"; name = "erc-colorize"; }; @@ -16508,7 +16614,7 @@ erc-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-crypt"; - version = "20160323.2139"; + version = "20160324.239"; src = fetchFromGitHub { owner = "atomontage"; repo = "erc-crypt"; @@ -16516,7 +16622,7 @@ sha256 = "0yiv16k0b2399asghc7qv9c9pj6ih0rwc863dskr2isnpl39amra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -16529,14 +16635,14 @@ erc-hipchatify = callPackage ({ alert, emacs, fetchhg, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "erc-hipchatify"; - version = "20160504.1445"; + version = "20160504.2045"; src = fetchhg { url = "https://bitbucket.com/seanfarley/erc-hipchatify"; rev = "b237cf8118fd"; sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; @@ -16549,7 +16655,7 @@ erc-hl-nicks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-hl-nicks"; - version = "20160202.1450"; + version = "20160202.2050"; src = fetchFromGitHub { owner = "leathekd"; repo = "erc-hl-nicks"; @@ -16557,7 +16663,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -16570,7 +16676,7 @@ erc-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-image"; - version = "20150914.614"; + version = "20150914.1214"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-image.el"; @@ -16578,7 +16684,7 @@ sha256 = "03r13x2hxy4hk0n0ri5wld8rp8frx4j3mig6mn2v25k0cr52689f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-image"; sha256 = "1cgzygkysjyrsdr6jwqkxlnisxccsvh4kxgn19rk4n61ms7bafvf"; name = "erc-image"; }; @@ -16591,7 +16697,7 @@ erc-social-graph = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-social-graph"; - version = "20150508.804"; + version = "20150508.1404"; src = fetchFromGitHub { owner = "vibhavp"; repo = "erc-social-graph"; @@ -16599,7 +16705,7 @@ sha256 = "0k3gp4c74g5awk7v9lzb6py3dvf59nggh6dw7530cswxb6kg2psa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-social-graph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-social-graph"; sha256 = "07arn3k89cqxab5x5lczv8bpgrbirmlw9p6c37fgrl3df6f46h4h"; name = "erc-social-graph"; }; @@ -16612,7 +16718,7 @@ erc-terminal-notifier = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-terminal-notifier"; - version = "20140115.524"; + version = "20140115.1124"; src = fetchFromGitHub { owner = "julienXX"; repo = "erc-terminal-notifier.el"; @@ -16620,7 +16726,7 @@ sha256 = "0cfqbqskh260zfq1lx1s8jz2351w2ij9m73rqim16fy7zr0s0670"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-terminal-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-terminal-notifier"; sha256 = "0vrxkg62qr3ki8n9mdn02sdni5fkj79fpkn0drx0a4kqp0nrrj7c"; name = "erc-terminal-notifier"; }; @@ -16633,7 +16739,7 @@ erc-track-score = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-track-score"; - version = "20130328.815"; + version = "20130328.1315"; src = fetchFromGitHub { owner = "jd"; repo = "erc-track-score.el"; @@ -16641,7 +16747,7 @@ sha256 = "0n107d77z04ahypa7hn2165kkb6490v4vkzdm5zwm4lfhvlmp0x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-track-score"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-track-score"; sha256 = "19wjwah2n8ri6gyrsbzxnrvxwr5cj48sxrar1226n9miqvgj5whx"; name = "erc-track-score"; }; @@ -16654,7 +16760,7 @@ erc-tweet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-tweet"; - version = "20150920.858"; + version = "20150920.1458"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-tweet.el"; @@ -16662,7 +16768,7 @@ sha256 = "118q4zj9dh5xnimcsi229j5pflhcd8qz0p212kc4p9dmyrx2iw0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-tweet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-tweet"; sha256 = "0bazwq21mah4qrzwaji6w13m91l6v9dqh9svxrd13ij8yycr184b"; name = "erc-tweet"; }; @@ -16675,7 +16781,7 @@ erc-twitch = callPackage ({ erc ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "erc-twitch"; - version = "20160522.1159"; + version = "20160522.1759"; src = fetchFromGitHub { owner = "vibhavp"; repo = "erc-twitch"; @@ -16683,7 +16789,7 @@ sha256 = "094pzznjiv33lbjjg7yfjngc5hrphjj5j2l6jjy7fd62vh4m9jxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-twitch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-twitch"; sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; name = "erc-twitch"; }; @@ -16696,7 +16802,7 @@ erc-view-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-view-log"; - version = "20140227.1539"; + version = "20140227.2139"; src = fetchFromGitHub { owner = "Niluge-KiWi"; repo = "erc-view-log"; @@ -16704,7 +16810,7 @@ sha256 = "0bzi2sh2fhrz49j5y53h6jgf41av6rx78smb3bbk6m74is8vim2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-view-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-view-log"; sha256 = "1k6fawblz0d7kz1y7sa3q43s7ci28jsmzkp9vnl1nf55p9xvv4cf"; name = "erc-view-log"; }; @@ -16717,7 +16823,7 @@ erc-youtube = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-youtube"; - version = "20150603.1736"; + version = "20150603.2336"; src = fetchFromGitHub { owner = "kidd"; repo = "erc-youtube.el"; @@ -16725,7 +16831,7 @@ sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -16738,7 +16844,7 @@ erc-yt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-yt"; - version = "20150426.849"; + version = "20150426.1449"; src = fetchFromGitHub { owner = "yhvh"; repo = "erc-yt"; @@ -16746,7 +16852,7 @@ sha256 = "1dlw34kaslyvnsrahf4rm76r2b7qqqn589i4mmhr23prl8xbz9z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-yt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-yt"; sha256 = "0yrwvahv4l2s1aavy6y6mjlrw8l11i00a249825ab5yaxrkzz7xc"; name = "erc-yt"; }; @@ -16759,7 +16865,7 @@ ercn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ercn"; - version = "20150523.1103"; + version = "20150523.1703"; src = fetchFromGitHub { owner = "leathekd"; repo = "ercn"; @@ -16767,7 +16873,7 @@ sha256 = "0xw3d9fz4kmn1myrsy44ki4bgg0aclv41wldl6r9nhvkrnri41cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -16780,7 +16886,7 @@ eredis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eredis"; - version = "20120808.2307"; + version = "20120809.507"; src = fetchFromGitHub { owner = "justinhj"; repo = "eredis"; @@ -16788,7 +16894,7 @@ sha256 = "0cdyhklmsv0xfcq97c3wqh8scs6910jzvvp04w0jxlayd1dbzx49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eredis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eredis"; sha256 = "087lln2izn5bv7bprmbaciivf17vv4pz2cjl91hy2f0sww6nsiw8"; name = "eredis"; }; @@ -16801,7 +16907,7 @@ erefactor = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erefactor"; - version = "20160121.459"; + version = "20160121.1059"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-erefactor"; @@ -16809,7 +16915,7 @@ sha256 = "1v8x6qmhywfxs7crzv7hfl5n4zq5y3ar40l873946l4wyk0wclng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -16822,15 +16928,15 @@ ergoemacs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ergoemacs-mode"; - version = "20160509.916"; + version = "20160527.659"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-mode"; - rev = "be364265ea420d9dfbb6eb47153b715833c4563c"; - sha256 = "0mdflidhcv1hhzgzljsgx46vvfgbjxv813dmzyxv9wd4igjn9rza"; + rev = "879fec91dbc61e4cde599874463cd301ce41dd7d"; + sha256 = "1f793x1xmf5p9cbaixdkk9qq3cxiz618nb5g2gpsv8mm71x88172"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -16843,7 +16949,7 @@ ergoemacs-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline }: melpaBuild { pname = "ergoemacs-status"; - version = "20160318.138"; + version = "20160318.638"; src = fetchFromGitHub { owner = "ergoemacs"; repo = "ergoemacs-status"; @@ -16851,7 +16957,7 @@ sha256 = "06pdwrhflpi5rkigqnr5h3jzv3dm1p9nydpvql9w33ixm6qhjj71"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-status"; sha256 = "065pw31s8dmqpag7zj40iv6dbl0qln7c65gcyp7pz9agg9rp6vbb"; name = "ergoemacs-status"; }; @@ -16864,7 +16970,7 @@ erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erlang"; - version = "20151013.457"; + version = "20151013.1057"; src = fetchFromGitHub { owner = "erlang"; repo = "otp"; @@ -16872,7 +16978,7 @@ sha256 = "1ss9jl5zasn7y7xk395igbbmaa2vw5pwhc120hs7hp07qqyqgyh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -16885,7 +16991,7 @@ ert-async = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-async"; - version = "20151011.959"; + version = "20151011.1559"; src = fetchFromGitHub { owner = "rejeep"; repo = "ert-async.el"; @@ -16893,7 +16999,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -16905,13 +17011,13 @@ }) {}; ert-expectations = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-expectations"; - version = "20130824.800"; + version = "20130824.1400"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ert-expectations.el"; sha256 = "0cwy3ilsid90abzzjb7ha2blq9kmv3gfp3icwwfcz6qczgirq6g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-expectations"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-expectations"; sha256 = "094lkf1h83rc0dkvdv8923xjrzj5pnpnsb4izk8n5n7g0rbz1l9w"; name = "ert-expectations"; }; @@ -16924,14 +17030,14 @@ ert-junit = callPackage ({ ert ? null, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ert-junit"; - version = "20140830.1821"; + version = "20140831.21"; src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "c303c04da7a3ba4d2c46b00b79b67ff7ec57cc6d"; sha256 = "0ipcpsymbpicg0b0v1gbv0hkjwg8pq5d5rj1lfx1cbf3adkxvpzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -16944,7 +17050,7 @@ ert-modeline = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "ert-modeline"; - version = "20140115.515"; + version = "20140115.1115"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "ert-modeline"; @@ -16952,7 +17058,7 @@ sha256 = "08yfq3qzscxvzyxvyvdqpkrm787278yhkdd9prbvrgjj80p8n7vq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-modeline"; sha256 = "06pc50q9ggin20cbfafxd53x35ac3kh85dap0nbws7514f473m7b"; name = "ert-modeline"; }; @@ -16965,7 +17071,7 @@ ert-runner = callPackage ({ ansi, commander, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up }: melpaBuild { pname = "ert-runner"; - version = "20160330.206"; + version = "20160330.806"; src = fetchFromGitHub { owner = "rejeep"; repo = "ert-runner.el"; @@ -16973,7 +17079,7 @@ sha256 = "0cjdpk0v07yzxbxqhxlgrk0nh9cj31yx6dd90d9f7jd4bxyzkzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -16986,7 +17092,7 @@ es-lib = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-lib"; - version = "20141111.1330"; + version = "20141111.1930"; src = fetchFromGitHub { owner = "sabof"; repo = "es-lib"; @@ -16994,7 +17100,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -17007,7 +17113,7 @@ es-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, spark }: melpaBuild { pname = "es-mode"; - version = "20160516.1550"; + version = "20160516.2150"; src = fetchFromGitHub { owner = "dakrone"; repo = "es-mode"; @@ -17015,7 +17121,7 @@ sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; @@ -17028,7 +17134,7 @@ es-windows = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "es-windows"; - version = "20140211.404"; + version = "20140211.1004"; src = fetchFromGitHub { owner = "sabof"; repo = "es-windows"; @@ -17036,7 +17142,7 @@ sha256 = "14rsifcx2kwdmwq9zh41fkb848l0f4igp5v9pk3x4jd2yw9gay7m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -17049,7 +17155,7 @@ esa = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esa"; - version = "20160501.240"; + version = "20160501.840"; src = fetchFromGitHub { owner = "nabinno"; repo = "esa.el"; @@ -17057,7 +17163,7 @@ sha256 = "1rxfqj46zg3xgg7miflgsb187xa9fpwcvrbkqj41g8lvmycdnm0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esa"; sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; name = "esa"; }; @@ -17070,7 +17176,7 @@ escreen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "escreen"; - version = "20091203.1313"; + version = "20091203.1913"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "escreen"; @@ -17078,7 +17184,7 @@ sha256 = "0id7820vjbprlpprj4fyhylkjvx00b87mw4n7jnxn1gczvjgafmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/escreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/escreen"; sha256 = "0yis27362jc63jkzdndz1wpysmf1b51rrbv3swvi6b36da5i6b54"; name = "escreen"; }; @@ -17091,7 +17197,7 @@ esh-buf-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esh-buf-stack"; - version = "20140107.518"; + version = "20140107.1118"; src = fetchFromGitHub { owner = "tom-tan"; repo = "esh-buf-stack"; @@ -17099,7 +17205,7 @@ sha256 = "1k8k9hl9m4vjqdw3x9wg04cy2lb9x64mq0mm0i3i6w59zrsnkn4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esh-buf-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esh-buf-stack"; sha256 = "0zmwlsm98m9vbjk9mldfj2nf6cip7mlvb71j33ddix76yqggp4qg"; name = "esh-buf-stack"; }; @@ -17112,7 +17218,7 @@ esh-help = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esh-help"; - version = "20140107.522"; + version = "20140107.1122"; src = fetchFromGitHub { owner = "tom-tan"; repo = "esh-help"; @@ -17120,7 +17226,7 @@ sha256 = "1yfvdx763xxhxf2r6kjjjyafaxrj1lpgrz1sgbhzkyj6nspmm9ms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esh-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esh-help"; sha256 = "1k925wmn8jy9rxxsxxawasxq6r4yzwl116digdx314gd3i04sh3w"; name = "esh-help"; }; @@ -17133,7 +17239,7 @@ eshell-autojump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-autojump"; - version = "20150927.324"; + version = "20150927.924"; src = fetchFromGitHub { owner = "coldnew"; repo = "eshell-autojump"; @@ -17141,7 +17247,7 @@ sha256 = "13crzgkx1lham1nfsg6hj2zg875majvnig0v4ydg691zk1qi4hc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -17154,7 +17260,7 @@ eshell-did-you-mean = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-did-you-mean"; - version = "20150915.1552"; + version = "20150915.2152"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-did-you-mean"; @@ -17162,7 +17268,7 @@ sha256 = "0v0wshck5n4hspcv1zk1g2nm6xiigcjp16lx0dc8wzkl6ymljvbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-did-you-mean"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-did-you-mean"; sha256 = "1z1wpn3sj1gi5nn0a71wg0i3av0dijnk79dc32zh3qlh500kz8mz"; name = "eshell-did-you-mean"; }; @@ -17172,10 +17278,31 @@ license = lib.licenses.free; }; }) {}; + eshell-fringe-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "eshell-fringe-status"; + version = "20160224.1316"; + src = fetchFromGitHub { + owner = "ryuslash"; + repo = "eshell-fringe-status"; + rev = "573bc2d48b7d24bb4bf7575e3d438525a6f3cd46"; + sha256 = "10c31a1ypa6yd957r1jiasx0ql2z9ykbn31l51y1xwrp00mq3yls"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-fringe-status"; + sha256 = "1vavidnijxzhr4v39q4bxi645vsfcj6vp0wnlhznpxagshr950lg"; + name = "eshell-fringe-status"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/eshell-fringe-status"; + license = lib.licenses.free; + }; + }) {}; eshell-git-prompt = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "eshell-git-prompt"; - version = "20160509.438"; + version = "20160509.1038"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-git-prompt"; @@ -17183,7 +17310,7 @@ sha256 = "00gaq8vz8vnhh0j2i66mp763hm3dfxkxz3j782nsfml81sngkww0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-git-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-git-prompt"; sha256 = "0a8pyppqvnavvb8rwsjxagb76hra9zhs5gwa0ylyznmql83f8w8s"; name = "eshell-git-prompt"; }; @@ -17196,7 +17323,7 @@ eshell-prompt-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-prompt-extras"; - version = "20160418.1130"; + version = "20160418.1730"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "eshell-prompt-extras"; @@ -17204,7 +17331,7 @@ sha256 = "0lhmqnqrcnwnir0kqhkhnda6dyn7ggcidmk6lf24p57n3sf33pww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-prompt-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-prompt-extras"; sha256 = "0kh4lvjkayjdz5lqvdqmdcblxizxk9kwmigjwa68kx8z6ngmfwa5"; name = "eshell-prompt-extras"; }; @@ -17217,7 +17344,7 @@ eshell-z = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eshell-z"; - version = "20151110.2346"; + version = "20151111.546"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "eshell-z"; @@ -17225,7 +17352,7 @@ sha256 = "0znk2wmvk7b5mi727cawbddvzx74dlm1lwsxgkiylx2qp299ark0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -17238,7 +17365,7 @@ espresso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "espresso-theme"; - version = "20130301.248"; + version = "20130301.848"; src = fetchFromGitHub { owner = "dgutov"; repo = "espresso-theme"; @@ -17246,7 +17373,7 @@ sha256 = "0ir7j4dgy0fq9ybixaqs52kiqk73p9v6prgqzjs8nyicjrpmnpyq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espresso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espresso-theme"; sha256 = "1bsff8fnq5z0f6cwg6wprz8qi3ivsqxpxx6v6fxfammn74qqyvb5"; name = "espresso-theme"; }; @@ -17259,7 +17386,7 @@ espuds = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "espuds"; - version = "20151114.1059"; + version = "20151114.1659"; src = fetchFromGitHub { owner = "ecukes"; repo = "espuds"; @@ -17267,7 +17394,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -17280,7 +17407,7 @@ esqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcsv }: melpaBuild { pname = "esqlite"; - version = "20151206.706"; + version = "20151206.1306"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-esqlite"; @@ -17288,7 +17415,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esqlite"; sha256 = "1dny5qjzl9gaj90ihzbhliwk0n0x7jz333hzf6gaw7wsjmx91wlh"; name = "esqlite"; }; @@ -17301,7 +17428,7 @@ esqlite-helm = callPackage ({ esqlite, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "esqlite-helm"; - version = "20151116.350"; + version = "20151116.950"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-esqlite"; @@ -17309,7 +17436,7 @@ sha256 = "05f8n24yvzm3zjvc1523ib44wv76ms5sn6mv8s1wrjsl190av0rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esqlite-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esqlite-helm"; sha256 = "00y2nwyx13xlny40afczr31lvbpnw1cgmj5wc3iycyznizg5kvhq"; name = "esqlite-helm"; }; @@ -17322,15 +17449,15 @@ ess = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "ess"; - version = "20160521.1333"; + version = "20160602.1103"; src = fetchFromGitHub { owner = "emacs-ess"; repo = "ESS"; - rev = "059eb57d7cb5acca05d253691bd11fca3d02f532"; - sha256 = "04abxand83np8zhqni2nlk0aiw090lbjszdclzsh0wx6ziafy35a"; + rev = "2130dda2f8bb56e603c9a823b0d754e1a4444080"; + sha256 = "1xxasavqvymw339h12g3swyjq8v4if7jfaxky51h1rqskgx7xy7x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -17343,7 +17470,7 @@ ess-R-data-view = callPackage ({ ctable, ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "ess-R-data-view"; - version = "20130509.758"; + version = "20130509.1358"; src = fetchFromGitHub { owner = "myuhe"; repo = "ess-R-data-view.el"; @@ -17351,7 +17478,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -17364,7 +17491,7 @@ ess-R-object-popup = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "ess-R-object-popup"; - version = "20130302.636"; + version = "20130302.1236"; src = fetchFromGitHub { owner = "myuhe"; repo = "ess-R-object-popup.el"; @@ -17372,7 +17499,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -17385,7 +17512,7 @@ ess-smart-equals = callPackage ({ emacs, ess, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ess-smart-equals"; - version = "20150202.101"; + version = "20150202.701"; src = fetchFromGitHub { owner = "genovese"; repo = "ess-smart-equals"; @@ -17393,7 +17520,7 @@ sha256 = "0ici253mllqyzcbhxrazfj2kl50brr8qid99fk9nlyfgh516ms1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-equals"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-equals"; sha256 = "0mfmxmsqr2byj56psx4h08cjc2j3aac3xqr04yd47k2mlivnyrxp"; name = "ess-smart-equals"; }; @@ -17406,7 +17533,7 @@ ess-smart-underscore = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ess-smart-underscore"; - version = "20131229.2151"; + version = "20131230.351"; src = fetchFromGitHub { owner = "mattfidler"; repo = "ess-smart-underscore.el"; @@ -17414,7 +17541,7 @@ sha256 = "01xa98q0pqsf4gyl6ixlpjjdqazqsxg1sf7a3j2wbh7196ps61v5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -17427,7 +17554,7 @@ ess-view = callPackage ({ ess, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ess-view"; - version = "20160309.1615"; + version = "20160309.2215"; src = fetchFromGitHub { owner = "GioBo"; repo = "ess-view"; @@ -17435,7 +17562,7 @@ sha256 = "1fdg8a4nsyjhwqsslawfvij77g3fp9klpas7m8vwjsjpc85iwh3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-view"; sha256 = "1zx5sbxmbs6ya349ic7yvnx56v3km2cb27p8kan5ygisnwwq2wc4"; name = "ess-view"; }; @@ -17448,7 +17575,7 @@ esup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "esup"; - version = "20151227.1250"; + version = "20151227.1850"; src = fetchFromGitHub { owner = "jschaf"; repo = "esup"; @@ -17456,7 +17583,7 @@ sha256 = "034rs6mmc5f6y8ply2a90b5s4pi4qx9m49wsxc9v0zwa9i5skmx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -17469,7 +17596,7 @@ esxml = callPackage ({ fetchFromGitHub, fetchurl, kv, lib, melpaBuild }: melpaBuild { pname = "esxml"; - version = "20151013.1428"; + version = "20151013.2028"; src = fetchFromGitHub { owner = "tali713"; repo = "esxml"; @@ -17477,7 +17604,7 @@ sha256 = "0mrfkq3jcsjfccqir02yijl24hllc347b02y7gk3b2yn0b676dv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -17490,7 +17617,7 @@ etable = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, interval-list, lib, melpaBuild }: melpaBuild { pname = "etable"; - version = "20150327.1316"; + version = "20150327.1816"; src = fetchFromGitHub { owner = "Fuco1"; repo = "ETable"; @@ -17498,7 +17625,7 @@ sha256 = "1k361bbwd9z17qlycymb1x7scidvgvrh9bdp06rhwfh9j3slrbxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etable"; sha256 = "0m4h24mmhp680wfhb90im228mrcyxapzyi4kla8xdmss83gc0c32"; name = "etable"; }; @@ -17510,13 +17637,13 @@ }) {}; etags-select = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "etags-select"; - version = "20130824.800"; + version = "20130824.1400"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/etags-select.el"; sha256 = "0gmlmxlwfsfk5axn3x5cfvqy9bx26ynpbg50mdxiljk7wzqs5dyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etags-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etags-select"; sha256 = "0j6mxj10n7jf087l7j86s3a8si5hzpwmvrpqisfvlnvn6a0rdy7h"; name = "etags-select"; }; @@ -17528,13 +17655,13 @@ }) {}; etags-table = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "etags-table"; - version = "20130824.757"; + version = "20130824.1357"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/etags-table.el"; sha256 = "0apm8as606bbkpa7i1hkwcbajzsmsyxn6cwfk9dkkll5bh4vglqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/etags-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/etags-table"; sha256 = "1jzij9jknab42jmx358g7f1c0d8lsp9baxbk3xsy7w4nl0l53d84"; name = "etags-table"; }; @@ -17547,7 +17674,7 @@ ethan-wspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ethan-wspace"; - version = "20160317.1220"; + version = "20160317.1720"; src = fetchFromGitHub { owner = "glasserc"; repo = "ethan-wspace"; @@ -17555,7 +17682,7 @@ sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ethan-wspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ethan-wspace"; sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; name = "ethan-wspace"; }; @@ -17568,16 +17695,16 @@ euslisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "euslisp-mode"; - version = "20160519.1558"; + version = "20160524.1647"; src = fetchFromGitHub { owner = "iory"; repo = "euslisp-mode"; - rev = "3a85538adb9da9ca3ccb6c8a064b35005fff9d1f"; - sha256 = "0cvrs0aj1ixfdf82hshcnl67jgai89m1a41pmw1pxh0nw78yw5mn"; + rev = "e42a512f5bf204ac9c149a8dfbe9abdfe24c9bc2"; + sha256 = "1zrf652ipy701s6n5k1aga0l97ws66imhk7dj6ii9qf4587byy7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/euslisp-mode"; - sha256 = "0qrd35jdr8p13x34972scyk6d0zrj1zh6vx9d740rjc8gmq0z5l4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/euslisp-mode"; + sha256 = "0m04a8k2z7inhfpqz68hv56h352ikcd39fg65dqvj79md05yila9"; name = "euslisp-mode"; }; packageRequires = []; @@ -17589,7 +17716,7 @@ eval-in-repl = callPackage ({ ace-window, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "eval-in-repl"; - version = "20160418.2143"; + version = "20160419.343"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "eval-in-repl"; @@ -17597,7 +17724,7 @@ sha256 = "07jlrngmnfp1jp30hx9vk42h065c74dz92b38sa18swzfmhwd4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -17610,7 +17737,7 @@ eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "eval-sexp-fu"; - version = "20131230.1651"; + version = "20131230.2251"; src = fetchFromGitHub { owner = "hchbaw"; repo = "eval-sexp-fu.el"; @@ -17618,7 +17745,7 @@ sha256 = "1syqakdyg3ydnq9gvkjf2rw9rz3kyhzp7avhy6dvyy65pv2ndyc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -17631,7 +17758,7 @@ evalator = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "evalator"; - version = "20160212.2028"; + version = "20160213.228"; src = fetchFromGitHub { owner = "seanirby"; repo = "evalator"; @@ -17639,7 +17766,7 @@ sha256 = "1llxxdprs8yw2hqj4dhrkrrzmkl25h7p4rcaa2cw544fmg3kvlz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -17652,7 +17779,7 @@ evalator-clojure = callPackage ({ cider, evalator, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evalator-clojure"; - version = "20160208.1648"; + version = "20160208.2248"; src = fetchFromGitHub { owner = "seanirby"; repo = "evalator-clojure"; @@ -17660,7 +17787,7 @@ sha256 = "1q5s1ffmfh5dby92853xm8kjhgjfd5vbvcg1xbf8lswc1i41k7n7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator-clojure"; sha256 = "10mxlgirnsq3z7l1izrf2v1l1yr4sbdjsaszz7llqv6l80y4bji3"; name = "evalator-clojure"; }; @@ -17673,14 +17800,14 @@ evil = callPackage ({ fetchhg, fetchurl, goto-chg, lib, melpaBuild, undo-tree }: melpaBuild { pname = "evil"; - version = "20160522.936"; + version = "20160525.2048"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "c3c1cec937c6"; - sha256 = "18wc427gjxhs0sa53nbid3h76zbsmfb5kdwqbvcly7awzfrgw5xx"; + rev = "136e0e5a8fc4"; + sha256 = "1f5kdaj0gh3kcqlsxly8kiq2a9k75j6nwnvjwwxl6c8n6rljly3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -17693,7 +17820,7 @@ evil-anzu = callPackage ({ anzu, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-anzu"; - version = "20150124.1909"; + version = "20150125.109"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-evil-anzu"; @@ -17701,7 +17828,7 @@ sha256 = "0cnj91lwpmk4c8nf3xi80yvv6anvkg8h1kbzbp16glkgmy6jpmy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -17714,7 +17841,7 @@ evil-args = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-args"; - version = "20140329.1729"; + version = "20140329.2229"; src = fetchFromGitHub { owner = "wcsmith"; repo = "evil-args"; @@ -17722,7 +17849,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -17735,7 +17862,7 @@ evil-avy = callPackage ({ avy, cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-avy"; - version = "20150908.348"; + version = "20150908.948"; src = fetchFromGitHub { owner = "louy2"; repo = "evil-avy"; @@ -17743,7 +17870,7 @@ sha256 = "1q6znbnshk45mdglx519qlbfhb7g47qsm245i93ka4djsjy55j9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-avy"; sha256 = "1hc96dd78yxgr8cs9sk9y1i5h1qnyk110vlb3wnlxv1hwn92qvrd"; name = "evil-avy"; }; @@ -17756,7 +17883,7 @@ evil-cleverparens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit, smartparens }: melpaBuild { pname = "evil-cleverparens"; - version = "20160513.4"; + version = "20160513.604"; src = fetchFromGitHub { owner = "luxbock"; repo = "evil-cleverparens"; @@ -17764,7 +17891,7 @@ sha256 = "1cqkx9wx3cmskybxl2h35wfpykba8f4ap70wn1mch2rc56j27l0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-cleverparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-cleverparens"; sha256 = "10zkyaxy52ixh26hzm9v1y0gakcn5sdwz4ny8v1vcmjqjphnk799"; name = "evil-cleverparens"; }; @@ -17777,7 +17904,7 @@ evil-commentary = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-commentary"; - version = "20160221.1530"; + version = "20160221.2130"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-commentary"; @@ -17785,7 +17912,7 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -17798,7 +17925,7 @@ evil-dvorak = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-dvorak"; - version = "20160416.1441"; + version = "20160416.2041"; src = fetchFromGitHub { owner = "jbranso"; repo = "evil-dvorak"; @@ -17806,7 +17933,7 @@ sha256 = "15rnxhqc56g4ydr8drvcgzvjp8blxsarm86dqc36rym7g5gnxr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-dvorak"; sha256 = "1iq9wzcb625vs942khja39db1js8r46vrdiqcm47yfji98g39gsn"; name = "evil-dvorak"; }; @@ -17819,7 +17946,7 @@ evil-easymotion = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-easymotion"; - version = "20160510.1309"; + version = "20160510.1909"; src = fetchFromGitHub { owner = "PythonNut"; repo = "evil-easymotion"; @@ -17827,7 +17954,7 @@ sha256 = "1rdhfsqrkzhbybb49365hx2nxfw7bsnpzh12fqfzq92vcn5441lq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-easymotion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-easymotion"; sha256 = "0zixgdhc228y6yqr044cbyls0pihzacqsgvybhhar916p4h8izgv"; name = "evil-easymotion"; }; @@ -17840,7 +17967,7 @@ evil-ediff = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-ediff"; - version = "20160202.1541"; + version = "20160202.2141"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-ediff"; @@ -17848,7 +17975,7 @@ sha256 = "16pz48gdpl68azaqwyixh10y1x9xzi1lnhq2v0nrd0y6bfcqcvc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-ediff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-ediff"; sha256 = "1xwl2511byb00ybfnm6q6mbkgzarrq8bfv5rbip67zqbw2qgmb6i"; name = "evil-ediff"; }; @@ -17861,7 +17988,7 @@ evil-embrace = callPackage ({ emacs, embrace, evil-surround, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-embrace"; - version = "20160519.1429"; + version = "20160519.2029"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "evil-embrace.el"; @@ -17869,7 +17996,7 @@ sha256 = "1cplq9s3fw8nadcipjrix46jfcjbgg3xhz6d226wcqgmg90aclfn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-embrace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-embrace"; sha256 = "10cfkksh3llyfk26x36b7ri0x6a6hrcv275pxk7ckhs1pyhb14y7"; name = "evil-embrace"; }; @@ -17882,7 +18009,7 @@ evil-escape = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-escape"; - version = "20160313.1505"; + version = "20160313.2005"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-escape"; @@ -17890,7 +18017,7 @@ sha256 = "0v30yfkyy21nl45f9c05rbkbpfivf173bn2470r1b9vxgx6gcj8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -17903,7 +18030,7 @@ evil-exchange = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-exchange"; - version = "20160408.18"; + version = "20160408.618"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "evil-exchange"; @@ -17911,7 +18038,7 @@ sha256 = "0avaw5pgyv75nhbinjjpy30pgkwfq79fx2k9z034f1x76ls9s683"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-exchange"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-exchange"; sha256 = "1mvw7w23yfbfmhzj6wimslbryb0gppryw24ac0wh4fzl9rdcma4r"; name = "evil-exchange"; }; @@ -17924,7 +18051,7 @@ evil-extra-operator = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-extra-operator"; - version = "20160407.222"; + version = "20160407.822"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "evil-extra-operator"; @@ -17932,7 +18059,7 @@ sha256 = "10vwyrg833imja3ak9fx0zackdjwlcncl7wm9dym3kjs6qf2rvv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-extra-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-extra-operator"; sha256 = "066apin0yrjx7zr007p2h9p2nq58lz7qikzjzg0spqkb8vy7vkc5"; name = "evil-extra-operator"; }; @@ -17945,7 +18072,7 @@ evil-find-char-pinyin = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: melpaBuild { pname = "evil-find-char-pinyin"; - version = "20160514.1641"; + version = "20160514.2241"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "evil-find-char-pinyin"; @@ -17953,7 +18080,7 @@ sha256 = "1bsy2bynzxr1ibyidv2r21xnfnxbzr0xh5m3h05s5igbmajxr12d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-find-char-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-find-char-pinyin"; sha256 = "0n52ijdf5hy7mn0rab4493zs2nrf7r1qkmvf0algqaj7bfjscs79"; name = "evil-find-char-pinyin"; }; @@ -17966,7 +18093,7 @@ evil-god-state = callPackage ({ evil, fetchFromGitHub, fetchurl, god-mode, lib, melpaBuild }: melpaBuild { pname = "evil-god-state"; - version = "20141116.2155"; + version = "20141117.355"; src = fetchFromGitHub { owner = "gridaphobe"; repo = "evil-god-state"; @@ -17974,7 +18101,7 @@ sha256 = "1cv24qnxxf6n1grf4n5969v8y9xll5zb9mbfdnq9iavdvhnndk2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-god-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-god-state"; sha256 = "1g547d58zf11qw0zz3fk5kmrzmfx1rhawyh5d2h8bll8hwygnrxf"; name = "evil-god-state"; }; @@ -17987,7 +18114,7 @@ evil-iedit-state = callPackage ({ evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-iedit-state"; - version = "20160313.1456"; + version = "20160313.1956"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-iedit-state"; @@ -17995,7 +18122,7 @@ sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -18008,7 +18135,7 @@ evil-indent-plus = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-indent-plus"; - version = "20151109.1406"; + version = "20151109.2006"; src = fetchFromGitHub { owner = "TheBB"; repo = "evil-indent-plus"; @@ -18016,7 +18143,7 @@ sha256 = "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-indent-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-indent-plus"; sha256 = "15vnvch0qsaram22d44k617bqhr9rrf8qc86sf20yvdyy3gi5j12"; name = "evil-indent-plus"; }; @@ -18029,7 +18156,7 @@ evil-indent-textobject = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-indent-textobject"; - version = "20130831.1819"; + version = "20130901.19"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-indent-textobject"; @@ -18037,7 +18164,7 @@ sha256 = "0nghisnc49ivh56mddfdlcbqv3y2vqzjvkpgwv3zp80ga6ghvdmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-indent-textobject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-indent-textobject"; sha256 = "172a3krid5lrx1w9xcifkhjnvlxg1nbz4w102d99d0grr9465r09"; name = "evil-indent-textobject"; }; @@ -18050,7 +18177,7 @@ evil-leader = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-leader"; - version = "20140606.843"; + version = "20140606.1443"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-leader"; @@ -18058,7 +18185,7 @@ sha256 = "10xrlimsxk09z9cw6rxdz8qvvn1i0vhc1gdicwxri0j10p0hacl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -18071,7 +18198,7 @@ evil-lisp-state = callPackage ({ bind-map, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-lisp-state"; - version = "20160403.2248"; + version = "20160404.448"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-lisp-state"; @@ -18079,7 +18206,7 @@ sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -18092,15 +18219,15 @@ evil-lispy = callPackage ({ evil, fetchFromGitHub, fetchurl, hydra, lib, lispy, melpaBuild }: melpaBuild { pname = "evil-lispy"; - version = "20160522.437"; + version = "20160522.2006"; src = fetchFromGitHub { owner = "sp3ctum"; repo = "evil-lispy"; - rev = "0d14fd96bdacfea155c43b1d086d40c8eb6004bd"; - sha256 = "1yqm66cf5digkpk980kkaycwmdbwcvav8sjcynmq3pjm1p08ci2h"; + rev = "af670bf37068d94e4f9c0bcb5019d4c11dbf4143"; + sha256 = "1ylj4mblill964ffbkg8mqy8gxhr8krjgnl9gzp8icr0izb9hj14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lispy"; sha256 = "17z830b0x6lhmqkk07hfbrg63c7q7mpn4zz1ppjd1smv4mcqzyld"; name = "evil-lispy"; }; @@ -18113,7 +18240,7 @@ evil-magit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "evil-magit"; - version = "20160420.715"; + version = "20160420.1315"; src = fetchFromGitHub { owner = "justbur"; repo = "evil-magit"; @@ -18121,7 +18248,7 @@ sha256 = "17dc48qc8sicmqngy8kpw7r0qm1gnzsal1106d4lx4z7d8lyhpvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; @@ -18134,7 +18261,7 @@ evil-mark-replace = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mark-replace"; - version = "20150424.318"; + version = "20150424.918"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-mark-replace"; @@ -18142,7 +18269,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -18155,7 +18282,7 @@ evil-matchit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-matchit"; - version = "20160413.925"; + version = "20160413.1525"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-matchit"; @@ -18163,7 +18290,7 @@ sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -18176,7 +18303,7 @@ evil-mc = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mc"; - version = "20160507.107"; + version = "20160507.707"; src = fetchFromGitHub { owner = "gabesoft"; repo = "evil-mc"; @@ -18184,7 +18311,7 @@ sha256 = "1ayfrl0bk8i6mqaq4hwgd0wbigiw6ndsi3c2q6znahhcbdfzjjmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mc"; sha256 = "0cq4xg6svb5gz4ra607wy768as2igla4h1xcrfnxldknk476fqqs"; name = "evil-mc"; }; @@ -18197,7 +18324,7 @@ evil-mu4e = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-mu4e"; - version = "20160214.622"; + version = "20160214.1222"; src = fetchFromGitHub { owner = "JorisE"; repo = "evil-mu4e"; @@ -18205,7 +18332,7 @@ sha256 = "0zqmmv3if9zzq9fgjg8wj62pk1qn65nax9hsk9m7lx2ncdv8cph1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mu4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mu4e"; sha256 = "1ks4vnga7dkz27a7gza5hakzbcsiqgkq1ysc0lcx7g82ihpmrrcq"; name = "evil-mu4e"; }; @@ -18218,15 +18345,15 @@ evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-multiedit"; - version = "20160412.310"; + version = "20160602.2113"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-multiedit"; - rev = "39163cb968848bd4c60871f617365a861b011020"; - sha256 = "16rrd02yr6rz4xlc35gr5d7ds3h168yhz4iinq8zmnlw778waz5j"; + rev = "04a7633ce4cd77617ea54cc5465293d013cc3c2b"; + sha256 = "171bq84dg86s33p73l6lji155c4as2dnjs7q3jyl8jhqsqf2cmyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-multiedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-multiedit"; sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; name = "evil-multiedit"; }; @@ -18239,15 +18366,15 @@ evil-nerd-commenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-nerd-commenter"; - version = "20160209.349"; + version = "20160524.1300"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "evil-nerd-commenter"; - rev = "d61c6629b44b8eb15378b2b75addcd5011b752d9"; - sha256 = "0msk65smj05wgs8dr42wy0w265pgcffrpgbvclahxhyj9ypscwsb"; + rev = "8e126cda3d47f87f96d81b5abf76188d3b6316fe"; + sha256 = "05lv08gj0659j16jf8x1pif3b885vnj0qg3md7n827la9k94sfml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -18260,7 +18387,7 @@ evil-numbers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-numbers"; - version = "20140606.851"; + version = "20140606.1451"; src = fetchFromGitHub { owner = "cofi"; repo = "evil-numbers"; @@ -18268,7 +18395,7 @@ sha256 = "1aq95hj8x13py0pwsnc6wvd8cc5yv5qin8ym9js42y5966vwj4np"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -18281,7 +18408,7 @@ evil-org = callPackage ({ evil, evil-leader, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "evil-org"; - version = "20151203.247"; + version = "20151203.847"; src = fetchFromGitHub { owner = "edwtjo"; repo = "evil-org-mode"; @@ -18289,7 +18416,7 @@ sha256 = "0pir7a3xxbcp5f3q9pi36rpdpi8pbx18afmh0r3501ynssyjfq53"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -18302,7 +18429,7 @@ evil-paredit = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "evil-paredit"; - version = "20150413.1648"; + version = "20150413.2248"; src = fetchFromGitHub { owner = "roman"; repo = "evil-paredit"; @@ -18310,7 +18437,7 @@ sha256 = "0b08y4spapl4g2292j3l4cr84gjlvm3rpma3gqld4yb1sxd7v78p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-paredit"; sha256 = "0xvxxa3gjgsrv10a61y0591bn3gj8v1ff2wck8s0svwfl076gyfy"; name = "evil-paredit"; }; @@ -18323,7 +18450,7 @@ evil-quickscope = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-quickscope"; - version = "20160202.1424"; + version = "20160202.2024"; src = fetchFromGitHub { owner = "blorbx"; repo = "evil-quickscope"; @@ -18331,7 +18458,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -18344,7 +18471,7 @@ evil-rails = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile-rails }: melpaBuild { pname = "evil-rails"; - version = "20150803.746"; + version = "20150803.1346"; src = fetchFromGitHub { owner = "antono"; repo = "evil-rails"; @@ -18352,7 +18479,7 @@ sha256 = "12rdx5zjp5pck008cykpw200rr1y0b3lj2dpzf82llfyfaxzh7wi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rails"; sha256 = "0ah0nvzl30z19566kacyrsznsdm3cpij8n3bw3dfng7263rh60gj"; name = "evil-rails"; }; @@ -18365,7 +18492,7 @@ evil-rsi = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-rsi"; - version = "20160221.1604"; + version = "20160221.2204"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-rsi"; @@ -18373,7 +18500,7 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -18386,7 +18513,7 @@ evil-search-highlight-persist = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild }: melpaBuild { pname = "evil-search-highlight-persist"; - version = "20151215.538"; + version = "20151215.1138"; src = fetchFromGitHub { owner = "juanjux"; repo = "evil-search-highlight-persist"; @@ -18394,7 +18521,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -18407,7 +18534,7 @@ evil-smartparens = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "evil-smartparens"; - version = "20160502.455"; + version = "20160502.1055"; src = fetchFromGitHub { owner = "expez"; repo = "evil-smartparens"; @@ -18415,7 +18542,7 @@ sha256 = "1jvyj2qc340vzw379ij9vkzfw5qningkv0n1mwzhzhb1dg8i1ciq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -18428,15 +18555,15 @@ evil-snipe = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-snipe"; - version = "20160413.1349"; + version = "20160413.1949"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-snipe"; - rev = "7037103feedcead1d5b51e11b1968ba340cb5bd1"; - sha256 = "19lgjlpgyjbyir7zvravgrsmzk6ryj8rvxpfy0alxa38nv5wgpmd"; + rev = "726cc907027cb5bde078b9915fedbf2b7ad1984d"; + sha256 = "15rhnrz2ppwyyhjj4y251654kvyw3yjzmkbslvszcp5y8a5m30pg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -18449,7 +18576,7 @@ evil-space = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-space"; - version = "20151208.728"; + version = "20151208.1328"; src = fetchFromGitHub { owner = "linktohack"; repo = "evil-space"; @@ -18457,7 +18584,7 @@ sha256 = "1x4nphjq8lvg8qsm1pj04mk9n59xc6jlxiv5s3bih1nl4xkssrxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -18470,7 +18597,7 @@ evil-surround = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-surround"; - version = "20160501.2004"; + version = "20160502.204"; src = fetchFromGitHub { owner = "timcharper"; repo = "evil-surround"; @@ -18478,7 +18605,7 @@ sha256 = "1sl89qm3wgmsr1mld1nv18mz7fjc2wq11br6hkdf7qm733q68b7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-surround"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-surround"; sha256 = "1bcjxw0yrk2bqj5ihl5r2c4id0m9wbnj7fpd0wwmw9444xvwp8ag"; name = "evil-surround"; }; @@ -18491,7 +18618,7 @@ evil-tabs = callPackage ({ elscreen, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-tabs"; - version = "20160217.1020"; + version = "20160217.1620"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "evil-tabs"; @@ -18499,7 +18626,7 @@ sha256 = "1qklx0j3fz3mp87v64yqbyyq5csfymbjfwvy2s4nk634wbnrra93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tabs"; sha256 = "0qgvpv5hcai8wmkv2fp6i2vdy7qp4gwidwpzz8j6vl9519x73s62"; name = "evil-tabs"; }; @@ -18512,7 +18639,7 @@ evil-terminal-cursor-changer = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-terminal-cursor-changer"; - version = "20150827.2251"; + version = "20150828.451"; src = fetchFromGitHub { owner = "7696122"; repo = "evil-terminal-cursor-changer"; @@ -18520,7 +18647,7 @@ sha256 = "10aic2r1akk38hh761hr5vp9fjlh1m5nimag0nzdq5x9g9467cc8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-terminal-cursor-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-terminal-cursor-changer"; sha256 = "1300ch6f8mkz45na1hdffglhw0cdrrxmwnbd3g4m3sl5z4midian"; name = "evil-terminal-cursor-changer"; }; @@ -18533,7 +18660,7 @@ evil-textobj-anyblock = callPackage ({ cl-lib ? null, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-textobj-anyblock"; - version = "20151017.1717"; + version = "20151017.2317"; src = fetchFromGitHub { owner = "noctuid"; repo = "evil-textobj-anyblock"; @@ -18541,7 +18668,7 @@ sha256 = "1v4z2snllgg32cy8glv7xl0m9ib7rwi5ixgdydz1d0sx0z62jyhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -18554,7 +18681,7 @@ evil-textobj-column = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "evil-textobj-column"; - version = "20151228.1644"; + version = "20151228.2244"; src = fetchFromGitHub { owner = "noctuid"; repo = "evil-textobj-column"; @@ -18562,7 +18689,7 @@ sha256 = "0nff90v6d97n2xizvfz126ksrf7ngd5rp0j7k7lhbv0v5zcqgxiv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-column"; sha256 = "13q3nawx05rn3k6kzq1889vxjznr454cib96pc9lmrq7h65lym2h"; name = "evil-textobj-column"; }; @@ -18575,7 +18702,7 @@ evil-tutor = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-tutor"; - version = "20150103.150"; + version = "20150103.750"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "evil-tutor"; @@ -18583,7 +18710,7 @@ sha256 = "00yfq8aflxvp2nnz7smgq0c5wlb7cips5irj8qs6193ixlkpffvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -18596,7 +18723,7 @@ evil-vimish-fold = callPackage ({ emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, vimish-fold }: melpaBuild { pname = "evil-vimish-fold"; - version = "20160430.740"; + version = "20160430.1340"; src = fetchFromGitHub { owner = "alexmurray"; repo = "evil-vimish-fold"; @@ -18604,7 +18731,7 @@ sha256 = "1z75wp4az5pykvn90vszfb9y8w675g1w288lx8ar9i2hyddsids4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-vimish-fold"; sha256 = "01wp4h97hjyzbpd7iighjj26m79499wp5pn8m4pa7v59f6r3sdk6"; name = "evil-vimish-fold"; }; @@ -18617,7 +18744,7 @@ evil-visual-mark-mode = callPackage ({ dash, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-visual-mark-mode"; - version = "20150202.1300"; + version = "20150202.1900"; src = fetchFromGitHub { owner = "roman"; repo = "evil-visual-mark-mode"; @@ -18625,7 +18752,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -18638,7 +18765,7 @@ evil-visualstar = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evil-visualstar"; - version = "20160222.1948"; + version = "20160223.148"; src = fetchFromGitHub { owner = "bling"; repo = "evil-visualstar"; @@ -18646,7 +18773,7 @@ sha256 = "0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -18659,7 +18786,7 @@ evm = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "evm"; - version = "20141007.756"; + version = "20141007.1356"; src = fetchFromGitHub { owner = "rejeep"; repo = "evm.el"; @@ -18667,7 +18794,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -18680,7 +18807,7 @@ ewmctrl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ewmctrl"; - version = "20150630.438"; + version = "20150630.1038"; src = fetchFromGitHub { owner = "flexibeast"; repo = "ewmctrl"; @@ -18688,7 +18815,7 @@ sha256 = "1frhcgkiys0pqrlcsi5zcl3ngblr38wrwfi6wzqk75x21rnwnbqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ewmctrl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ewmctrl"; sha256 = "1w60pb7szai1kh06jd3qvgpzq3z1ci4a77ysnpqjfk326s6zv7hl"; name = "ewmctrl"; }; @@ -18701,7 +18828,7 @@ eww-lnum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eww-lnum"; - version = "20150102.1012"; + version = "20150102.1612"; src = fetchFromGitHub { owner = "m00natic"; repo = "eww-lnum"; @@ -18709,7 +18836,7 @@ sha256 = "1i6zf17rwa390c33cbspz81dz86vwlphyhjjsia4gp205nfk3s20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -18722,7 +18849,7 @@ exec-path-from-shell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "exec-path-from-shell"; - version = "20160113.146"; + version = "20160113.746"; src = fetchFromGitHub { owner = "purcell"; repo = "exec-path-from-shell"; @@ -18730,7 +18857,7 @@ sha256 = "0xxk0cr28g7vw8cwsnwrdrc8xqr50g6m9h0v43mx2iws9pn9dd47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -18743,7 +18870,7 @@ expand-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "expand-line"; - version = "20151005.2207"; + version = "20151006.407"; src = fetchFromGitHub { owner = "cheunghy"; repo = "expand-line"; @@ -18751,7 +18878,7 @@ sha256 = "0wz4h5hrr5ci0w8pynd2nr1b2zl5hl4pa8gc16mcabik5927rf7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-line"; sha256 = "07nfgp6jlrb9wxqy835j79i4g88714zndidkda84z16qn2y901a9"; name = "expand-line"; }; @@ -18764,7 +18891,7 @@ expand-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "expand-region"; - version = "20150902.858"; + version = "20150902.1458"; src = fetchFromGitHub { owner = "magnars"; repo = "expand-region.el"; @@ -18772,7 +18899,7 @@ sha256 = "0qqqv0pp25xg1zh72i6fsb7l9vi14nd96rx0qdj1f3pdwfidqms1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -18785,7 +18912,7 @@ express = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "express"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "express"; @@ -18793,7 +18920,7 @@ sha256 = "0ah8zayipwp760909llb9whcdvmbsdgkg0x5y4qlcicm1r9kwcc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -18806,7 +18933,7 @@ extempore-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extempore-mode"; - version = "20160323.234"; + version = "20160323.734"; src = fetchFromGitHub { owner = "extemporelang"; repo = "extempore-emacs-mode"; @@ -18814,7 +18941,7 @@ sha256 = "0sx3kywaqb8sgywqgcx9gllz8zm53pr5vp82vlv7aj5h93lxhxzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extempore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extempore-mode"; sha256 = "1z8nzpcj27s74kxfjz7wyr3848jpd6mbyjkssd06ri5p694j9php"; name = "extempore-mode"; }; @@ -18827,7 +18954,7 @@ extend-dnd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "extend-dnd"; - version = "20151122.1350"; + version = "20151122.1950"; src = fetchFromGitHub { owner = "mattfidler"; repo = "extend-dnd"; @@ -18835,7 +18962,7 @@ sha256 = "15dwl1rb3186k328a83dz9xmslc0px60ah16fifvmr3migis9hwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -18848,7 +18975,7 @@ exwm-x = callPackage ({ cl-lib ? null, dmenu, exwm, fetchFromGitHub, fetchurl, lib, melpaBuild, start-menu, switch-window }: melpaBuild { pname = "exwm-x"; - version = "20160307.355"; + version = "20160307.955"; src = fetchFromGitHub { owner = "tumashu"; repo = "exwm-x"; @@ -18856,7 +18983,7 @@ sha256 = "1i9lklzg7fyi4rl0vv1lidx0shlhih0474bbjsvc74p19p5cmlrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exwm-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exwm-x"; sha256 = "1d9q57vz63sk3h1g5gvp9xnmqkpa73wppmiy2bv8mxk11whl6xa3"; name = "exwm-x"; }; @@ -18869,7 +18996,7 @@ eyebrowse = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "eyebrowse"; - version = "20160102.1749"; + version = "20160102.2349"; src = fetchFromGitHub { owner = "wasamasa"; repo = "eyebrowse"; @@ -18877,7 +19004,7 @@ sha256 = "0w2g7rpw26j65j4r23w6j8nw3arw73l601kyy6qv9p9bkk1yc072"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -18890,13 +19017,13 @@ eyedropper = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "eyedropper"; - version = "20151231.1601"; + version = "20151231.2201"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/eyedropper.el"; sha256 = "1fg3j0jlww2rqc6k2nq95hcg6i26nqdp043h7kyjcwrgqbjfsigl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyedropper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyedropper"; sha256 = "07kdn90vm2nbdprw9hwdgi4py6gqzmrad09y1fwqdy49hrvbwdzk"; name = "eyedropper"; }; @@ -18909,7 +19036,7 @@ eyuml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "eyuml"; - version = "20141028.1827"; + version = "20141028.2327"; src = fetchFromGitHub { owner = "antham"; repo = "eyuml"; @@ -18917,7 +19044,7 @@ sha256 = "1rgzydxv7c455vj1jm44vvs6xc4qgivqqb0g6zh5x4wdcpgdi2g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyuml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyuml"; sha256 = "0ada2gcl8bw9nn0fz8g9lbqy8a8w1554q03fzd7lv8qla33ri3wx"; name = "eyuml"; }; @@ -18930,7 +19057,7 @@ ez-query-replace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ez-query-replace"; - version = "20140810.817"; + version = "20140810.1417"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ez-query-replace.el"; @@ -18938,7 +19065,7 @@ sha256 = "15qa09x206s7rxmk35rslqniydh6hdb3n2kbspm5zrndcmsqz4zi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ez-query-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ez-query-replace"; sha256 = "1h9ijr1qagwp9vvikh7ajby0dqgfypjgc45s7d93zb9jrg2n5cgx"; name = "ez-query-replace"; }; @@ -18951,7 +19078,7 @@ f = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "f"; - version = "20160426.827"; + version = "20160426.1427"; src = fetchFromGitHub { owner = "rejeep"; repo = "f.el"; @@ -18959,7 +19086,7 @@ sha256 = "0v6y897ibs589gry7xrs1vj14h9qd6riach6r27xf7386ji5hb6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -18972,7 +19099,7 @@ fabric = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fabric"; - version = "20141024.622"; + version = "20141024.1222"; src = fetchFromGitHub { owner = "nlamirault"; repo = "fabric.el"; @@ -18980,7 +19107,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -18992,13 +19119,13 @@ }) {}; face-remap-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "face-remap-plus"; - version = "20151231.1602"; + version = "20151231.2202"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/face-remap+.el"; sha256 = "0yr3fqpn9pj6y8bsb6g7hkg75sl703pzngn8gp0sgs3v90c180l5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/face-remap+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/face-remap+"; sha256 = "0vq6xjrv3qic89pxzi6mx1s08k4ba27g8wqm1ap4fxh3l14wkg0y"; name = "face-remap-plus"; }; @@ -19010,13 +19137,13 @@ }) {}; facemenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "facemenu-plus"; - version = "20151231.1605"; + version = "20151231.2205"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/facemenu+.el"; sha256 = "1kayc4hsalvqnn577y3f97w9kz94c53vcxwx01s0k34ffav919c2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/facemenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/facemenu+"; sha256 = "0lbggalgkj59wj67z95949jmppmqrzrp63mdhw42r2x0fz1ir0iv"; name = "facemenu-plus"; }; @@ -19028,13 +19155,13 @@ }) {}; faces-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "faces-plus"; - version = "20151231.1605"; + version = "20151231.2205"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/faces+.el"; sha256 = "0sqrymmr583cgqmv4bs6rjms5ij5cm8vvxjrfc9alacwyz5f7w8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faces+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faces+"; sha256 = "0k3m434f3d3061pvir0dnykmv6r9jswl7pzybzja3afiy591hh92"; name = "faces-plus"; }; @@ -19047,7 +19174,7 @@ faceup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faceup"; - version = "20150215.1648"; + version = "20150215.2248"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "faceup"; @@ -19055,7 +19182,7 @@ sha256 = "0sjmjydapfnv979dx8dwiz67wffamiaf41s4skkwa0wn2h4p6wja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faceup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faceup"; sha256 = "0l41xp38iji55dv20lk7r187ywcz8s1g2jmwbjwkspzmcf763xvx"; name = "faceup"; }; @@ -19068,7 +19195,7 @@ factlog = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "factlog"; - version = "20130209.2040"; + version = "20130210.240"; src = fetchFromGitHub { owner = "tkf"; repo = "factlog"; @@ -19076,7 +19203,7 @@ sha256 = "19zm9my7fl1r3q48axjv2f8x9hcjk6qah4y4r92b90bzfmcdc30y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -19089,7 +19216,7 @@ faff-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faff-theme"; - version = "20160424.1152"; + version = "20160424.1752"; src = fetchFromGitHub { owner = "WJCFerguson"; repo = "emacs-faff-theme"; @@ -19097,7 +19224,7 @@ sha256 = "1iv9xnpylw2mw18993yy5s9bkxs1rjrn4q92b1wvrx1n51kcw2ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faff-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faff-theme"; sha256 = "1dmwbkp94zsddy0brs3mkdjr09n69maw2mrdfhriqcdk56qpwp4g"; name = "faff-theme"; }; @@ -19110,7 +19237,7 @@ fakespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fakespace"; - version = "20120817.2006"; + version = "20120818.206"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-fakespace"; @@ -19118,7 +19245,7 @@ sha256 = "11fm0h9rily5731s137mgv8rdbfqi99s6f36bgr0arwbq3f2j3fs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fakespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fakespace"; sha256 = "09dsmrqax4wfcw8fd5jf07bjxm5dizpc2qvjkqwg74j2n352wv27"; name = "fakespace"; }; @@ -19131,7 +19258,7 @@ fakir = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, noflet }: melpaBuild { pname = "fakir"; - version = "20140729.1252"; + version = "20140729.1852"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-fakir"; @@ -19139,7 +19266,7 @@ sha256 = "1w5apzbzr1jd983b0rzsy9ldb0z0zcq6mpyb5r8czl5wd4vvj69h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fakir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fakir"; sha256 = "07bicglgpm6qkcsxwj6rswhx4hgh27rfg8s1cki7g8qcvk2f7b25"; name = "fakir"; }; @@ -19152,7 +19279,7 @@ fancy-battery = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fancy-battery"; - version = "20150101.704"; + version = "20150101.1304"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "fancy-battery.el"; @@ -19160,7 +19287,7 @@ sha256 = "0m7rjzl9js2gjfcaqp2n5pn5ykpqnv8qfv35l5m5kpfigsi9cbb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -19173,7 +19300,7 @@ fancy-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fancy-narrow"; - version = "20160124.703"; + version = "20160124.1303"; src = fetchFromGitHub { owner = "Malabarba"; repo = "fancy-narrow"; @@ -19181,7 +19308,7 @@ sha256 = "0825hyz8b2biil0pd2bgjxqd2zm3gw9si7br5hnh51qasbaw9hid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -19194,7 +19321,7 @@ farmhouse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "farmhouse-theme"; - version = "20150507.27"; + version = "20150507.627"; src = fetchFromGitHub { owner = "mattly"; repo = "emacs-farmhouse-theme"; @@ -19202,7 +19329,7 @@ sha256 = "08lgfa2k42qpcs4999b77ycsg76zb56qbcxbsvmg0pcwjwa1ambz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/farmhouse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/farmhouse-theme"; sha256 = "0hbqdrw6x25b331qhbg3yaaa45c2b896wknsjm0a1kg142klq229"; name = "farmhouse-theme"; }; @@ -19215,7 +19342,7 @@ fasd = callPackage ({ fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }: melpaBuild { pname = "fasd"; - version = "20151208.216"; + version = "20151208.816"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "emacs-fasd"; @@ -19223,7 +19350,7 @@ sha256 = "0m2qn3rd16s7ahyw6f9a4jb73sdc8bqp6d03p450yzcn36lw78z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fasd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fasd"; sha256 = "0i49z50bpi7fx0dm5jywlndnq9hb0dm5a906k4017w8y7sfpfl6c"; name = "fasd"; }; @@ -19236,7 +19363,7 @@ fastdef = callPackage ({ fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, w3m }: melpaBuild { pname = "fastdef"; - version = "20160517.820"; + version = "20160517.1420"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "fastdef"; @@ -19244,7 +19371,7 @@ sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastdef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastdef"; sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj"; name = "fastdef"; }; @@ -19257,7 +19384,7 @@ fastnav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fastnav"; - version = "20120211.957"; + version = "20120211.1557"; src = fetchFromGitHub { owner = "gleber"; repo = "fastnav.el"; @@ -19265,7 +19392,7 @@ sha256 = "0y95lrdqd9i2kbb266s1wdiim4m8vrn3br19d8s55ib6xlywf8cx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -19278,7 +19405,7 @@ faust-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "faust-mode"; - version = "20160119.1220"; + version = "20160119.1820"; src = fetchFromGitHub { owner = "magnetophon"; repo = "emacs-faust-mode"; @@ -19286,7 +19413,7 @@ sha256 = "0m9nzl0z3gc6fjpfqklwrsxlcgbbyydls004a39wfppyz0wr94fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/faust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/faust-mode"; sha256 = "1lfn4q1wcc3vzazv2yzcnpvnmq6bqcczq8lpkz7w8yj8i5kpjvsc"; name = "faust-mode"; }; @@ -19299,7 +19426,7 @@ fcitx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcitx"; - version = "20160518.1254"; + version = "20160518.1854"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "fcitx.el"; @@ -19307,7 +19434,7 @@ sha256 = "1qrmzlvc7bbq0ayv9l7wp32vg22c2w27y7nr0k79qk4p6kn1pnn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -19320,7 +19447,7 @@ fcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fcopy"; - version = "20150304.903"; + version = "20150304.1503"; src = fetchFromGitHub { owner = "ataka"; repo = "fcopy"; @@ -19328,7 +19455,7 @@ sha256 = "0c56j8ip2fyma9yvwaanz89jyzgi9k11xwwkflzlzc4smnvgfibr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcopy"; sha256 = "13337ymf8vlbk8c4jpj6paqi06xdmk39yf72s40kmfrbvgmi8qy1"; name = "fcopy"; }; @@ -19341,7 +19468,7 @@ feature-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "feature-mode"; - version = "20141121.1330"; + version = "20141121.1930"; src = fetchFromGitHub { owner = "michaelklishin"; repo = "cucumber.el"; @@ -19349,7 +19476,7 @@ sha256 = "0ylm4zcf82f5rl4lps5p6p8dc3i5p2v7w93caadgzv5qbl400h5d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -19362,7 +19489,7 @@ fetch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fetch"; - version = "20131201.230"; + version = "20131201.830"; src = fetchFromGitHub { owner = "crshd"; repo = "fetch.el"; @@ -19370,7 +19497,7 @@ sha256 = "0pjw9fb3n08yd38680ifdn2wlnw2k6q97lzhqb2259mywsycyqy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fetch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fetch"; sha256 = "1jqc6pspgcrdzm7ij46r1q6vpjq7il5dy2xyxwn2c1ky5a80paby"; name = "fetch"; }; @@ -19383,7 +19510,7 @@ fic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fic-mode"; - version = "20160209.1311"; + version = "20160209.1911"; src = fetchFromGitHub { owner = "lewang"; repo = "fic-mode"; @@ -19391,7 +19518,7 @@ sha256 = "06xd5rvn037g1kjdw7aa1n71i1mpnp4qz3a7wcmzbls0amhhnx1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fic-mode"; sha256 = "0yy1zw0b0s93qkzyq0n17gzn33ma5h56mh40ysz6adwsi68af84c"; name = "fic-mode"; }; @@ -19404,7 +19531,7 @@ fifo-class = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fifo-class"; - version = "20160425.158"; + version = "20160425.758"; src = fetchFromGitHub { owner = "mola-T"; repo = "fifo-class"; @@ -19412,7 +19539,7 @@ sha256 = "0dkng4zkd5xdyvqy67bnfp4z6w8byx66bssq1zl7bhga45vihfjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fifo-class"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fifo-class"; sha256 = "0yyjrvdjiq5166vrys13c3dqy5807a3x99597iw5v6mcxg37jg3h"; name = "fifo-class"; }; @@ -19424,14 +19551,14 @@ }) {}; figlet = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "figlet"; - version = "20160218.1737"; + version = "20160218.2337"; src = fetchhg { url = "https://bitbucket.com/jpkotta/figlet"; rev = "70ca269d706e"; sha256 = "1c18b1h154sdxkksqwk8snyk8n43bwzgavi75l8mnz8dnl1ciaxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/figlet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/figlet"; sha256 = "1m7hw56awdbvgzdnjysb3wqkhkjqy68jxsxh9f7fx266wjqhp6yj"; name = "figlet"; }; @@ -19443,13 +19570,13 @@ }) {}; files-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "files-plus"; - version = "20151231.1607"; + version = "20151231.2207"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/files+.el"; sha256 = "0s79b5jj3jfl3aih6r3fa0zix40arysk6mz4fijapd8ybaflz25n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/files+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/files+"; sha256 = "1m1pxf6knrnyc9ygmyr27gm709ydxf0kkh1xrfcza6n476frmwr8"; name = "files-plus"; }; @@ -19461,13 +19588,13 @@ }) {}; filesets-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "filesets-plus"; - version = "20151231.1608"; + version = "20151231.2208"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/filesets+.el"; sha256 = "020rpjrjp2gh4w6mrphrvk27kdizfqbjsw2sxraf8jz0dibg9gfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/filesets+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/filesets+"; sha256 = "06n8pw8c65bmrkxda2akvv57ndfijgbp95l40j7sjg8bjp385spn"; name = "filesets-plus"; }; @@ -19480,7 +19607,7 @@ fill-column-indicator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fill-column-indicator"; - version = "20151030.1533"; + version = "20151030.2033"; src = fetchFromGitHub { owner = "alpaker"; repo = "Fill-Column-Indicator"; @@ -19488,7 +19615,7 @@ sha256 = "0gbqspqn4y7f2fwqq8210b6k5q22c0zr7b4ws8qgz9swav8g3vrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -19501,7 +19628,7 @@ fillcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fillcode"; - version = "20150812.1241"; + version = "20150812.1841"; src = fetchFromGitHub { owner = "snarfed"; repo = "fillcode"; @@ -19509,7 +19636,7 @@ sha256 = "1x9wmxbcmd6qgdyzrl978nczfqrgyk6xz3rnh5hffbapy1v1rw47"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fillcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fillcode"; sha256 = "0bfsw55vjhx88jpy6npnzfwinvggivbvkk7fa3iwzq19005fkag2"; name = "fillcode"; }; @@ -19522,7 +19649,7 @@ finalize = callPackage ({ cl-lib ? null, eieio ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "finalize"; - version = "20140127.1346"; + version = "20140127.1946"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-finalize"; @@ -19530,7 +19657,7 @@ sha256 = "0f76cgh97z0rbbg2bp217nqmxfimzkvw85k9mx8bj78i9s2cdmwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -19543,7 +19670,7 @@ find-by-pinyin-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-by-pinyin-dired"; - version = "20150202.516"; + version = "20150202.1116"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "find-by-pinyin-dired"; @@ -19551,7 +19678,7 @@ sha256 = "18a4ydp30ycx5w80j3xgghclzmzbvrkl2awxixy4aj68nmljk480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -19563,13 +19690,13 @@ }) {}; find-dired-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-dired-plus"; - version = "20160515.1250"; + version = "20160515.1850"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/find-dired+.el"; sha256 = "0a2wgdrj6yxvpmzqiqpgzj3gbf04fvbhrfa3213hiah1k9l066m5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-dired+"; sha256 = "06a6lwx61xindlchh3ps8khhxc6sr7i9d7i60rjw1h07nxmh0fli"; name = "find-dired-plus"; }; @@ -19582,7 +19709,7 @@ find-file-in-project = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "find-file-in-project"; - version = "20160516.154"; + version = "20160516.754"; src = fetchFromGitHub { owner = "technomancy"; repo = "find-file-in-project"; @@ -19590,7 +19717,7 @@ sha256 = "0n1vpnh4afzb67k0s0jxlynv01m2lqczsfscpcvbmvxa22fnlal9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -19603,7 +19730,7 @@ find-file-in-repository = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-file-in-repository"; - version = "20151113.819"; + version = "20151113.1419"; src = fetchFromGitHub { owner = "hoffstaetter"; repo = "find-file-in-repository"; @@ -19611,7 +19738,7 @@ sha256 = "090m5647dpc8r8fwi3mszvc8kp0420ma5sv0lmqr2fpxyn9ybkjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -19624,7 +19751,7 @@ find-temp-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-temp-file"; - version = "20160108.513"; + version = "20160108.1113"; src = fetchFromGitHub { owner = "thisirs"; repo = "find-temp-file"; @@ -19632,7 +19759,7 @@ sha256 = "1d6zn3qsg4lpk13cvn5r1w88dnhfydnhwf59x6cb4sy5q1ihk0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-temp-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-temp-file"; sha256 = "0c98zm94958rb9kdvqr3pad744nh63y3vy3lshfm0lsg85k9j62p"; name = "find-temp-file"; }; @@ -19645,7 +19772,7 @@ find-things-fast = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "find-things-fast"; - version = "20150519.1826"; + version = "20150520.26"; src = fetchFromGitHub { owner = "eglaysher"; repo = "find-things-fast"; @@ -19653,7 +19780,7 @@ sha256 = "1r6cs7p43pi6n2inbrv9q924m679izxwxqgyr4sjjj3lg6an4cnx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-things-fast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-things-fast"; sha256 = "1fs3wf61lzm1hxh5sx8pr74g7g9np3npdwg7xmk81b5f2jx2vy6m"; name = "find-things-fast"; }; @@ -19665,13 +19792,13 @@ }) {}; finder-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "finder-plus"; - version = "20151231.1613"; + version = "20151231.2213"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/finder+.el"; sha256 = "0x3f9qygp26c4yw32cgyy35bb4f1fq0fg7q8s9vs777skyl3rvp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finder+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finder+"; sha256 = "1ichxghp2vzx01n129fmjm6iwx4b98ay3xk1ja1i8vzyd2p0z8vh"; name = "finder-plus"; }; @@ -19683,13 +19810,13 @@ }) {}; findr = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "findr"; - version = "20130824.807"; + version = "20130824.1407"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/findr.el"; sha256 = "0a04mgya59w468jv2bmkqlayzgh0r8sdz0qg3n70wn9rhdcwnl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/findr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/findr"; sha256 = "0pxyfnn3f70gknxv09mfkjixqkzn77rdbql703wsslrj2v1l7bfq"; name = "findr"; }; @@ -19702,7 +19829,7 @@ fingers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fingers"; - version = "20150809.2016"; + version = "20150810.216"; src = fetchFromGitHub { owner = "fgeller"; repo = "fingers.el"; @@ -19710,7 +19837,7 @@ sha256 = "1vjgcxyzv2p74igr3y0z6hk7bj6yqwjawx90xvvmp9z7m91d4yrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fingers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fingers"; sha256 = "1r8fy6q6isjxz9mvaa8in4imdghzla3gg1l93dfm1v2rlr7bhzbg"; name = "fingers"; }; @@ -19723,7 +19850,7 @@ fiplr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, grizzl, lib, melpaBuild }: melpaBuild { pname = "fiplr"; - version = "20140724.245"; + version = "20140724.845"; src = fetchFromGitHub { owner = "grizzl"; repo = "fiplr"; @@ -19731,7 +19858,7 @@ sha256 = "14yy7kr2iv549xaf5gkav48lk2hzmvipwbs0rzljzw60il6k05hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fiplr"; sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; @@ -19744,7 +19871,7 @@ firebelly-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firebelly-theme"; - version = "20140410.455"; + version = "20140410.1055"; src = fetchFromGitHub { owner = "startling"; repo = "firebelly"; @@ -19752,7 +19879,7 @@ sha256 = "02ajday0lnk37dnzf4747ha3w0azisq35fmdhq322hx0hfb1c66x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firebelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firebelly-theme"; sha256 = "0lns846l70wcrzqb6p5cy5hpd0szh4gvjxd4xq4zsb0z5nfz97jr"; name = "firebelly-theme"; }; @@ -19765,7 +19892,7 @@ firecode-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firecode-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-firecode-theme"; @@ -19773,7 +19900,7 @@ sha256 = "0v8liv6aq10f8dxbl3d4rph1qk891dlxm9wqdc6w8aj318750hfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firecode-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firecode-theme"; sha256 = "10lxd93lkrvz8884dv4sh6fzzg355j7ab4p5dpvwry79rhs7f739"; name = "firecode-theme"; }; @@ -19786,15 +19913,15 @@ firefox-controller = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, moz, popwin }: melpaBuild { pname = "firefox-controller"; - version = "20160320.1447"; + version = "20160320.1947"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "emacs-firefox-controller"; - rev = "5b1bedec83206f41672b1b65bba859f235bff48b"; - sha256 = "04afwxgydrn23bv93zqf9bd2cp02i9dcfqbi809arkmh8723qf6k"; + rev = "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f"; + sha256 = "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -19807,7 +19934,7 @@ fireplace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fireplace"; - version = "20160101.1347"; + version = "20160101.1947"; src = fetchFromGitHub { owner = "johanvts"; repo = "emacs-fireplace"; @@ -19815,7 +19942,7 @@ sha256 = "1smg4mqc5qdwzk5mp2hfm6l4s7k408x46xfl7fl45csb18islmrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -19828,7 +19955,7 @@ firestarter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "firestarter"; - version = "20160318.1642"; + version = "20160318.2142"; src = fetchFromGitHub { owner = "wasamasa"; repo = "firestarter"; @@ -19836,7 +19963,7 @@ sha256 = "0ssx3qjv600n8x83g34smphiyywgl97dh4wx8kzm9pp42jnp29cj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -19849,7 +19976,7 @@ fish-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fish-mode"; - version = "20160429.2357"; + version = "20160430.557"; src = fetchFromGitHub { owner = "wwwjfy"; repo = "emacs-fish"; @@ -19857,7 +19984,7 @@ sha256 = "0z0ji88mdp3xm5lg3drkd56gpl4qy61mxh11i09rqiwmiw0lp1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -19869,13 +19996,13 @@ }) {}; fit-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fit-frame"; - version = "20151231.1614"; + version = "20151231.2214"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fit-frame.el"; sha256 = "082c6yyb1269va6k602hxpdf7ylfxz8gq8swqzwf07qaas0b5qxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fit-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fit-frame"; sha256 = "1xcq4n9gj0npjjl98vqacms0a0wnzw62a9iplyf7bgj7n77pgkjb"; name = "fit-frame"; }; @@ -19888,15 +20015,15 @@ fix-input = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fix-input"; - version = "20160123.19"; + version = "20160123.619"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "fix-input"; - rev = "728ae9258ebe790a69cf332407cba2f8c0be7d81"; - sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; + rev = "7c3f4770fd068fc789f80ec33934dc3aceb47ddf"; + sha256 = "1hw3fvj2xq96di4xfs852vy1268hi3a4n10pzrnwnrn0mqy0hn30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -19909,15 +20036,15 @@ fix-word = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fix-word"; - version = "20150716.902"; + version = "20150716.1502"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "fix-word"; - rev = "3e6aa7e3e2625efdac2c0f7d715959dabf01560f"; - sha256 = "17f11v9sd5fay3i4k6lmpsjicdw9j3zvx3fvhx0a86mp7ay2ywwf"; + rev = "36a513e401e850ecf884ef43290ad4ea3cec9af5"; + sha256 = "02ixv7ckf419sy0r596fkc7f81bfwk410jl23z6cvdh3j64q12l6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -19930,7 +20057,7 @@ fixmee = callPackage ({ back-button, button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash, smartrep, string-utils, tabulated-list ? null }: melpaBuild { pname = "fixmee"; - version = "20150223.855"; + version = "20150223.1455"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "fixmee"; @@ -19938,7 +20065,7 @@ sha256 = "1x4k8890pzdcizzl0p6v96ylrx5xid9ykgrmggx0b3y0gx0vhwic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -19958,7 +20085,7 @@ flappymacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flappymacs"; - version = "20140715.1201"; + version = "20140715.1801"; src = fetchFromGitHub { owner = "taksatou"; repo = "flappymacs"; @@ -19966,7 +20093,7 @@ sha256 = "07hv6l80ka10qszm16fpan8sas4b0qvl5s6qixxlz02fm7m0s7m5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flappymacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flappymacs"; sha256 = "0dcpl5n7wwsk62ddgfrkq5dkm91569y4i4f0yqa61pdmzhgllx7d"; name = "flappymacs"; }; @@ -19979,7 +20106,7 @@ flash-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flash-region"; - version = "20130923.1417"; + version = "20130923.2017"; src = fetchFromGitHub { owner = "Fuco1"; repo = "flash-region"; @@ -19987,7 +20114,7 @@ sha256 = "0z77lm6jv2w5z551pwarcx6xg9kx8fgms9dlskngfvnzbqkldj1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flash-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flash-region"; sha256 = "1rgg7j34ka0nj1yjl688asim07bbz4aavh67kly6dzzwndr0nw8c"; name = "flash-region"; }; @@ -20000,7 +20127,7 @@ flatland-black-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatland-black-theme"; - version = "20141116.130"; + version = "20141116.730"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-flatland-black-theme"; @@ -20008,7 +20135,7 @@ sha256 = "0ib6r6q4wbkkxdwgqsd25nx7ccxhk16lqkvwikign80j9n11g7s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatland-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatland-black-theme"; sha256 = "0cl2qbry56nb4prbsczffx8h35x91pgicw5pld0ndw3pxid9h2da"; name = "flatland-black-theme"; }; @@ -20021,7 +20148,7 @@ flatland-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatland-theme"; - version = "20140805.605"; + version = "20140805.1205"; src = fetchFromGitHub { owner = "gchp"; repo = "flatland-emacs"; @@ -20029,7 +20156,7 @@ sha256 = "0cl8m1i1aaw4zmkrkhfchhp0gxhpvhcmpjglsisjni47y5mydypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatland-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatland-theme"; sha256 = "14drqwcp9nv269aqm34d426a7gx1a7kr9ygnqa2c8ia1fsizybl3"; name = "flatland-theme"; }; @@ -20042,7 +20169,7 @@ flatui-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flatui-theme"; - version = "20150531.443"; + version = "20150531.1043"; src = fetchFromGitHub { owner = "john2x"; repo = "flatui-theme.el"; @@ -20050,7 +20177,7 @@ sha256 = "0j8pklgd2sk01glgkr24b5n5521425vws8zwdi4sxcv74922j5zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flatui-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flatui-theme"; sha256 = "0s88xihw44ks4b07wcb9swr52f3l1ls0jn629mxvfkv4a6hn7rmz"; name = "flatui-theme"; }; @@ -20063,7 +20190,7 @@ flex-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flex-autopair"; - version = "20120809.818"; + version = "20120809.1418"; src = fetchFromGitHub { owner = "uk-ar"; repo = "flex-autopair"; @@ -20071,7 +20198,7 @@ sha256 = "187ah7yhmr3ckw23bf4fivx8v79yj0zmilrkjj7k6l198w8wmvql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flex-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flex-autopair"; sha256 = "0hphrqwryp3c0wwyf2f16hj8nc7jlg2dkvljgm2rdvmh2kgj3007"; name = "flex-autopair"; }; @@ -20084,14 +20211,14 @@ flex-isearch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flex-isearch"; - version = "20130508.1803"; + version = "20130509.3"; src = fetchhg { url = "https://bitbucket.com/jpkotta/flex-isearch"; rev = "bb9c3502057d"; sha256 = "02z1w8z9fqdshyyf03c26zjwhmmclb02caw3b6nhhk4w1rkbh6is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flex-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flex-isearch"; sha256 = "1msgrimi2a0xm5h23p78jflh00bl5bx44xpc3sc9pspznjv1d0k3"; name = "flex-isearch"; }; @@ -20104,7 +20231,7 @@ flim = callPackage ({ apel, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flim"; - version = "20160311.1837"; + version = "20160312.37"; src = fetchFromGitHub { owner = "wanderlust"; repo = "flim"; @@ -20112,7 +20239,7 @@ sha256 = "10sayqyf5jwmz7h9gpp4657v6v8vmcd8ahzbshwwqbakjqwnn08c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flim"; sha256 = "1gkaq549svflx8qyqrk0ccb52b7wp17wmd5jgzkw1109bpc4k6jc"; name = "flim"; }; @@ -20124,13 +20251,13 @@ }) {}; fliptext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fliptext"; - version = "20131113.2118"; + version = "20131114.318"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fliptext.el"; sha256 = "1viigj04kla20dk46xm913jzqrmx05rpjrpghnc0ylbqppqdwzpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fliptext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fliptext"; sha256 = "0cmyan9hckjsv5wk1mvjzif9nrc07frhzkhhl6pkgm0j0f1q30ji"; name = "fliptext"; }; @@ -20143,7 +20270,7 @@ floobits = callPackage ({ fetchFromGitHub, fetchurl, highlight, json ? null, lib, melpaBuild }: melpaBuild { pname = "floobits"; - version = "20160517.1852"; + version = "20160518.52"; src = fetchFromGitHub { owner = "Floobits"; repo = "floobits-emacs"; @@ -20151,7 +20278,7 @@ sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -20164,7 +20291,7 @@ flx = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flx"; - version = "20151030.1412"; + version = "20151030.1912"; src = fetchFromGitHub { owner = "lewang"; repo = "flx"; @@ -20172,7 +20299,7 @@ sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -20185,7 +20312,7 @@ flx-ido = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "flx-ido"; - version = "20151030.1412"; + version = "20151030.1912"; src = fetchFromGitHub { owner = "lewang"; repo = "flx"; @@ -20193,7 +20320,7 @@ sha256 = "0csflhd69vz3wwq5j7872xx2l62hwiz1f5nggl5nz7h7v9anjx3r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -20206,7 +20333,7 @@ flx-isearch = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flx, lib, melpaBuild }: melpaBuild { pname = "flx-isearch"; - version = "20160105.1517"; + version = "20160105.2117"; src = fetchFromGitHub { owner = "PythonNut"; repo = "flx-isearch"; @@ -20214,7 +20341,7 @@ sha256 = "1cmjw1zrb1nq9nx0d634ajli1di8x48k6s88zi2s2q0mbi28lzz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-isearch"; sha256 = "14cshv5xb57ch5g3m3hfhawnnabdnbacp4kx40d0pw6jxw677gqd"; name = "flx-isearch"; }; @@ -20227,15 +20354,15 @@ flycheck = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, pkg-info, seq }: melpaBuild { pname = "flycheck"; - version = "20160519.603"; + version = "20160604.1054"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck"; - rev = "05aae1b1160e909ff747afe1230c87b2f9fe96ad"; - sha256 = "1w2hzg4786sfs5yi0p3nwl4bk48gddj0bnm5ca0586s8dn2h4dgq"; + rev = "c794314868af3180c3f3f5d4312d952f5291f0b8"; + sha256 = "0ph9liakhpnrxy11ckb3w9p6d5q9xmmd3yiilqxlzzg1974z7gjm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; @@ -20248,7 +20375,7 @@ flycheck-apertium = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-apertium"; - version = "20160406.918"; + version = "20160406.1518"; src = fetchFromGitHub { owner = "unhammer"; repo = "flycheck-apertium"; @@ -20256,7 +20383,7 @@ sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-apertium"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-apertium"; sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; name = "flycheck-apertium"; }; @@ -20269,7 +20396,7 @@ flycheck-ats2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ats2"; - version = "20151130.907"; + version = "20151130.1507"; src = fetchFromGitHub { owner = "drvink"; repo = "flycheck-ats2"; @@ -20277,7 +20404,7 @@ sha256 = "0fh5z68gnggm0qjb8ncmfngv195lbp1dxz9jbmdi418d47mlba9c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ats2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ats2"; sha256 = "0xm7zzz6hs5qnqkmv7hwxpvp3jjca57agx71sj0m12v0h53gbzhr"; name = "flycheck-ats2"; }; @@ -20290,7 +20417,7 @@ flycheck-cask = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cask"; - version = "20150920.753"; + version = "20150920.1353"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-cask"; @@ -20298,7 +20425,7 @@ sha256 = "0klnhq0zfn5zbkwl7y9kja7x49n1w6r1qbphk7a7v9svgm3h9s7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -20311,7 +20438,7 @@ flycheck-checkbashisms = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-checkbashisms"; - version = "20160224.1206"; + version = "20160224.1806"; src = fetchFromGitHub { owner = "Gnouc"; repo = "flycheck-checkbashisms"; @@ -20319,7 +20446,7 @@ sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -20332,7 +20459,7 @@ flycheck-clangcheck = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-clangcheck"; - version = "20150712.310"; + version = "20150712.910"; src = fetchFromGitHub { owner = "kumar8600"; repo = "flycheck-clangcheck"; @@ -20340,7 +20467,7 @@ sha256 = "1ckzs32wzqpnw89rrw3l7i4gbyn25wagbadsc4mcrixml5nf0mck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clangcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clangcheck"; sha256 = "1316cj3ynl80j39ha0371ss7cqw5hcr3m8944pdacdzbmp2sak2m"; name = "flycheck-clangcheck"; }; @@ -20353,7 +20480,7 @@ flycheck-clojure = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-clojure"; - version = "20160319.1058"; + version = "20160319.1558"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "squiggly-clojure"; @@ -20361,7 +20488,7 @@ sha256 = "04qyylw868mn7wvml8l23vxgca9pwq1hrv6xlcd3xqgn7102n3w2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -20374,7 +20501,7 @@ flycheck-color-mode-line = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-color-mode-line"; - version = "20131126.38"; + version = "20131126.638"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-color-mode-line"; @@ -20382,7 +20509,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -20395,7 +20522,7 @@ flycheck-css-colorguard = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-css-colorguard"; - version = "20151122.447"; + version = "20151122.1047"; src = fetchFromGitHub { owner = "Simplify"; repo = "flycheck-css-colorguard"; @@ -20403,7 +20530,7 @@ sha256 = "073vkjgcyqp8frsi05s6x8ml3ar6hwjmn2c7ryfab5b35kp9gmdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-css-colorguard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-css-colorguard"; sha256 = "1n56j5nicac94jl7kp8fbqxmd115vbhzklzgfz5jbib2ab8y60jc"; name = "flycheck-css-colorguard"; }; @@ -20416,7 +20543,7 @@ flycheck-cstyle = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cstyle"; - version = "20160320.1908"; + version = "20160321.8"; src = fetchFromGitHub { owner = "alexmurray"; repo = "flycheck-cstyle"; @@ -20424,7 +20551,7 @@ sha256 = "1fric65r33bgn2h1s1m3pxnm3d1gk2z4pwnj72in6p7glj3kg24w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cstyle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cstyle"; sha256 = "0p3lzpcgwk4nkq1w0iq40njz8ll2h3vi9z5fbvv1ar4r80fqd909"; name = "flycheck-cstyle"; }; @@ -20437,7 +20564,7 @@ flycheck-cython = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-cython"; - version = "20160327.1528"; + version = "20160327.2128"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-cython"; @@ -20445,7 +20572,7 @@ sha256 = "0994346iyp7143476i3y6pc5m1n6z7g1r6n1rldivsj0qr4gjh01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cython"; sha256 = "1mbrwhpbs8in11mp79cnl4bd3m33qdgrvnbvi1mqvrsvz1ay28g4"; name = "flycheck-cython"; }; @@ -20458,7 +20585,7 @@ flycheck-d-unittest = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-d-unittest"; - version = "20160522.17"; + version = "20160522.617"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-d-unittest"; @@ -20466,7 +20593,7 @@ sha256 = "0lrxyrvdkj88qh78jmamrnji770vjsr6h01agl7hvd4n2xvlxcym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-d-unittest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-d-unittest"; sha256 = "0n4m4f0zqcx966582af1nqff5sla7jcr0wrmgzzxnn97yjrlnzk2"; name = "flycheck-d-unittest"; }; @@ -20479,7 +20606,7 @@ flycheck-dedukti = callPackage ({ dedukti-mode, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dedukti"; - version = "20150106.951"; + version = "20150106.1551"; src = fetchFromGitHub { owner = "rafoo"; repo = "flycheck-dedukti"; @@ -20487,7 +20614,7 @@ sha256 = "1hw875dirz041vzw1pxjpk5lr1zmrp2kp9m6pazs9j19d686hyn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dedukti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dedukti"; sha256 = "00nc18w4nsi6vicpbqqpr4xcdh48g95vnay3kirb2xp5hc2rw3x8"; name = "flycheck-dedukti"; }; @@ -20500,7 +20627,7 @@ flycheck-dialyzer = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dialyzer"; - version = "20160326.1030"; + version = "20160326.1530"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-dialyzer"; @@ -20508,7 +20635,7 @@ sha256 = "1i5wm2r6rck6864a60mm6kv31vgvqnq49hi9apvhyywfn6sycwkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dialyzer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dialyzer"; sha256 = "0bn81yzijmnfg5xcnvcvxvqxz995iaafhgbfckgcal974s229kd2"; name = "flycheck-dialyzer"; }; @@ -20518,22 +20645,22 @@ license = lib.licenses.free; }; }) {}; - flycheck-dmd-dub = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + flycheck-dmd-dub = callPackage ({ f, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-dmd-dub"; - version = "20151019.922"; + version = "20160601.1909"; src = fetchFromGitHub { owner = "atilaneves"; repo = "flycheck-dmd-dub"; - rev = "1acd7e3683ed55ac11f013e325c1cbf19be8ad66"; - sha256 = "0dqkd9h54qmr9cv2gmic010j2h03i80psajrv4wq3c4pvxyqyn2j"; + rev = "6d5c97d1632ede73d32b3c1541e32d31bddd23cb"; + sha256 = "1x4x3h27xalvzvzhjr5cz2jzhc4x0v1jggpdp23bdkwdpra80fgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; - packageRequires = [ flycheck ]; + packageRequires = [ f flycheck ]; meta = { homepage = "https://melpa.org/#/flycheck-dmd-dub"; license = lib.licenses.free; @@ -20542,7 +20669,7 @@ flycheck-elixir = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-elixir"; - version = "20160404.331"; + version = "20160404.931"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-elixir"; @@ -20550,7 +20677,7 @@ sha256 = "1aa7x25a70ldbm6rl0s1wa1ncd6p6z1a7f75lk5a3274ghq8jv8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-elixir"; sha256 = "0f78fai6q15smh9rvsliv8r0hh3kpwn1lz37yvqkkbx9vl7rlwld"; name = "flycheck-elixir"; }; @@ -20563,7 +20690,7 @@ flycheck-elm = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-elm"; - version = "20151204.1024"; + version = "20151204.1624"; src = fetchFromGitHub { owner = "bsermons"; repo = "flycheck-elm"; @@ -20571,7 +20698,7 @@ sha256 = "08dlm3g2d8rl53hq0b4z7gp8529almlkyf69d3c8f9didmlhizk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-elm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-elm"; sha256 = "06dpv19wgbw48gbf701c77vw1dkpddx8056wpim3zbvwwfwk8ra4"; name = "flycheck-elm"; }; @@ -20584,7 +20711,7 @@ flycheck-flow = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-flow"; - version = "20151218.704"; + version = "20151218.1304"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-flow"; @@ -20592,7 +20719,7 @@ sha256 = "0lk7da7axn9fm0kzlzx10ir014rsdsycffi8jcy4biqllw6yi4dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-flow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-flow"; sha256 = "0p4vvk09vjgk98dwzr2qzldvij3v6af56pradssi6sm3shbqhkk3"; name = "flycheck-flow"; }; @@ -20605,7 +20732,7 @@ flycheck-ghcmod = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ghcmod"; - version = "20150114.132"; + version = "20150114.732"; src = fetchFromGitHub { owner = "scturtle"; repo = "flycheck-ghcmod"; @@ -20613,7 +20740,7 @@ sha256 = "0q1m1f3vhw1wy0pa3njy55z28psznbw2xwmwk2v1p5c86n74ns8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ghcmod"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ghcmod"; sha256 = "0mqxg622lqnkb52a0wff7h8b0k6mm1k7fhkfi95fi5sahclja0rp"; name = "flycheck-ghcmod"; }; @@ -20626,7 +20753,7 @@ flycheck-gometalinter = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-gometalinter"; - version = "20160301.2205"; + version = "20160302.405"; src = fetchFromGitHub { owner = "favadi"; repo = "flycheck-gometalinter"; @@ -20634,7 +20761,7 @@ sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -20647,7 +20774,7 @@ flycheck-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-google-cpplint"; - version = "20140806.1225"; + version = "20140806.1825"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-google-cpplint"; @@ -20655,7 +20782,7 @@ sha256 = "0l6sg83f6z8x2alnblpv03rj442sbnkkkcbf8i0agjmx3713a5yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-google-cpplint"; sha256 = "0llrvg6mhcsj5aascsndhbv99122zj32agxk1w6s8xn8ksk2i90b"; name = "flycheck-google-cpplint"; }; @@ -20668,15 +20795,15 @@ flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-haskell"; - version = "20160413.431"; + version = "20160524.1017"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-haskell"; - rev = "927abe14bfb2da632267ef95a9fa8db92fcdd08a"; - sha256 = "1yyjh649ag6h3wnflsjlndmrlanjqbf59zg4gm9qqyhksqy4hyyv"; + rev = "a475c9c4d799bf98931efec95b61160e3ad8b61f"; + sha256 = "05a5hyl6avf09drq6wva8mmxbag41dqixaz6azifywa8p63w1mlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; @@ -20689,7 +20816,7 @@ flycheck-hdevtools = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-hdevtools"; - version = "20160109.2114"; + version = "20160110.314"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-hdevtools"; @@ -20697,7 +20824,7 @@ sha256 = "1x61q0fqr1jbqs9kk59f565a02qjxh1gnp1aigys0yz6qnshvzbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -20710,7 +20837,7 @@ flycheck-irony = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, irony, lib, melpaBuild }: melpaBuild { pname = "flycheck-irony"; - version = "20160317.1836"; + version = "20160317.2336"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "flycheck-irony"; @@ -20718,7 +20845,7 @@ sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; @@ -20731,7 +20858,7 @@ flycheck-ledger = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-ledger"; - version = "20140605.1446"; + version = "20140605.2046"; src = fetchFromGitHub { owner = "purcell"; repo = "flycheck-ledger"; @@ -20739,7 +20866,7 @@ sha256 = "15cgqbl6n3nyqiizgs2zvcvfs6bcnjk3bj81lhhwrzizbjvap3rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -20752,7 +20879,7 @@ flycheck-mercury = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, s }: melpaBuild { pname = "flycheck-mercury"; - version = "20151123.234"; + version = "20151123.834"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-mercury"; @@ -20760,7 +20887,7 @@ sha256 = "0isqa6ybdd4166h3rdcg0b8pcxn00v8dav58xwfcj92nhzvs0qca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-mercury"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-mercury"; sha256 = "1z2y6933f05yv9y2aapmn876jnsydh642zqid3j88bb9kqi67x0h"; name = "flycheck-mercury"; }; @@ -20773,7 +20900,7 @@ flycheck-mypy = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-mypy"; - version = "20160220.1732"; + version = "20160220.2332"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-flycheck-mypy"; @@ -20781,7 +20908,7 @@ sha256 = "01r2ycbayhsxh3dq4d3qky5s0gcv3fjlp8j08y8dgyl406pkzhdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-mypy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-mypy"; sha256 = "1w418jm6x3vcg2x31nzc8a3b8asx6gznl6m76ip8w98riz7vy02f"; name = "flycheck-mypy"; }; @@ -20794,7 +20921,7 @@ flycheck-nim = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-nim"; - version = "20150911.1947"; + version = "20150912.147"; src = fetchFromGitHub { owner = "ALSchwalm"; repo = "flycheck-nim"; @@ -20802,7 +20929,7 @@ sha256 = "06hs41l41hm08dv93wldd98hmnd3jqbg58pj5ymn15kgdsy1rirg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-nim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-nim"; sha256 = "0w6f6998rqx8a3i4xhga7mrmvhxrm690wkqwfzspidid2z7v71az"; name = "flycheck-nim"; }; @@ -20815,7 +20942,7 @@ flycheck-ocaml = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, merlin }: melpaBuild { pname = "flycheck-ocaml"; - version = "20151103.512"; + version = "20151103.1112"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-ocaml"; @@ -20823,7 +20950,7 @@ sha256 = "0fm8w7126vf04n76qhh33rzybvl1n7va2whbqzafbvmv2nny3v94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -20836,7 +20963,7 @@ flycheck-package = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-package"; - version = "20160502.435"; + version = "20160502.1035"; src = fetchFromGitHub { owner = "purcell"; repo = "flycheck-package"; @@ -20844,7 +20971,7 @@ sha256 = "1x5lk6fdai5jvq4hlcgb88ljjncwkq1lkqs8d3wkqwyc3kh3rwjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -20857,7 +20984,7 @@ flycheck-perl6 = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-perl6"; - version = "20150414.2132"; + version = "20150415.332"; src = fetchFromGitHub { owner = "hinrik"; repo = "flycheck-perl6"; @@ -20865,7 +20992,7 @@ sha256 = "0ffas4alqhijvm8wl1p5nqjhnxki8gs6b5bxb4nsqwnma8qmlcx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-perl6"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-perl6"; sha256 = "0czc0fqx7g543afzkbjyz4bhxfl4s3v5swn9xrkayv8cgk8acvp4"; name = "flycheck-perl6"; }; @@ -20878,7 +21005,7 @@ flycheck-pkg-config = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "flycheck-pkg-config"; - version = "20160430.1811"; + version = "20160501.11"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flycheck-pkg-config"; @@ -20886,7 +21013,7 @@ sha256 = "1fnk59mk4qrkaaig3nv2w45add82agjfm82a9rf0128znfipf02p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pkg-config"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pkg-config"; sha256 = "0w7h4fa4mv8377sdbkilqcw4b9qda98c1k01nxic7a8i3iyq02d6"; name = "flycheck-pkg-config"; }; @@ -20899,7 +21026,7 @@ flycheck-pony = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-pony"; - version = "20160501.1717"; + version = "20160501.2317"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "flycheck-pony"; @@ -20907,7 +21034,7 @@ sha256 = "06wij2g3prj5qzd8csc6v0phww7prdsf8hqmli6kil954lyxxaxl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pony"; sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; name = "flycheck-pony"; }; @@ -20920,7 +21047,7 @@ flycheck-pos-tip = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, pos-tip }: melpaBuild { pname = "flycheck-pos-tip"; - version = "20160323.429"; + version = "20160323.929"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-pos-tip"; @@ -20928,7 +21055,7 @@ sha256 = "0wca22jp0alknmllfl22j89aasiwms6ipqyv1pnvbrgmrbzcmlp7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -20941,7 +21068,7 @@ flycheck-protobuf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, protobuf-mode }: melpaBuild { pname = "flycheck-protobuf"; - version = "20160211.1000"; + version = "20160211.1600"; src = fetchFromGitHub { owner = "edvorg"; repo = "flycheck-protobuf"; @@ -20949,7 +21076,7 @@ sha256 = "1adcijysw4v8rrxzswi8zhd6w99iaqq7asps0jp21gr9nqci8vdj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-protobuf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-protobuf"; sha256 = "0cn5b9pr9i9hrix7dbrylwb2812al8ipbpqvlb9bm2f8hc9kgsmc"; name = "flycheck-protobuf"; }; @@ -20962,7 +21089,7 @@ flycheck-purescript = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-purescript"; - version = "20160512.2245"; + version = "20160513.445"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "flycheck-purescript"; @@ -20970,7 +21097,7 @@ sha256 = "10cjgbxxc26ykm0ww4b6ykjbx89c12mjrmqmny6riq92pfrnl4y3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-purescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-purescript"; sha256 = "05j1iscyg9khw0zq63676zrisragklxp48hmbc7vrbmbiy964lwd"; name = "flycheck-purescript"; }; @@ -20983,7 +21110,7 @@ flycheck-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "flycheck-pyflakes"; - version = "20140630.1821"; + version = "20140701.21"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flycheck-pyflakes"; @@ -20991,7 +21118,7 @@ sha256 = "16albss527dq4ncpiy8p326fib038qc6wjbh985lw2p1f9babswa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pyflakes"; sha256 = "186h5ky48i1xmjbvvhn1i0rzhsy8bgdv1d8f7rlr2z4brb52f9c1"; name = "flycheck-pyflakes"; }; @@ -21004,7 +21131,7 @@ flycheck-rust = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-rust"; - version = "20160511.1650"; + version = "20160511.2250"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-rust"; @@ -21012,7 +21139,7 @@ sha256 = "136rwl2dm686v2a9s7wg5yppr0is1vx5q4mvah030m9xs9r66jkp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-rust"; sha256 = "1k0n0y6lbp71v4465dwq7864vp1qqyx7zjz0kssszcpx5gl1596w"; name = "flycheck-rust"; }; @@ -21025,7 +21152,7 @@ flycheck-stack = callPackage ({ fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "flycheck-stack"; - version = "20160520.544"; + version = "20160520.1144"; src = fetchFromGitHub { owner = "chrisdone"; repo = "flycheck-stack"; @@ -21033,7 +21160,7 @@ sha256 = "139q43ldvymfxns8zv7gxasn3sg0rn4i9yz08wgk50psg5zq5mjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-stack"; sha256 = "1r9zppqmp1i5i06jhkrgvwy1p3yc8kmcvgibricydqsij26lhpmf"; name = "flycheck-stack"; }; @@ -21046,7 +21173,7 @@ flycheck-status-emoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "flycheck-status-emoji"; - version = "20160207.1751"; + version = "20160207.2351"; src = fetchFromGitHub { owner = "liblit"; repo = "flycheck-status-emoji"; @@ -21054,7 +21181,7 @@ sha256 = "0v7d0yijqn3mhgjwqiv1rsdhw2ay6ffbn8i45x0dlp960v7k2k8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -21067,7 +21194,7 @@ flycheck-tip = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, popup }: melpaBuild { pname = "flycheck-tip"; - version = "20160318.2134"; + version = "20160319.234"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "flycheck-tip"; @@ -21075,7 +21202,7 @@ sha256 = "0lrgww53xzz2hnc8c83hqxczzfm1bvixfswhsav4i8aakk3idjxi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -21088,15 +21215,15 @@ flycheck-ycmd = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild, ycmd }: melpaBuild { pname = "flycheck-ycmd"; - version = "20160320.724"; + version = "20160320.1224"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; - sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; + rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f"; + sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -21109,7 +21236,7 @@ flymake-coffee = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-coffee"; - version = "20140809.624"; + version = "20140809.1224"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-coffee"; @@ -21117,7 +21244,7 @@ sha256 = "10i0rbvk6vyifgbgskdyspmw9q64x99fzi8i1h8bgv58xhfx6pm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -21130,7 +21257,7 @@ flymake-cppcheck = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-cppcheck"; - version = "20140415.857"; + version = "20140415.1457"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-cppcheck"; @@ -21138,7 +21265,7 @@ sha256 = "1dlxn8hhz3gfrhvkwhlxjmby6zc0g8yy9n9j9dn8c4cbi2fhyx5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-cppcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-cppcheck"; sha256 = "11brzgq2zl32a8a2dgj2imsldjqaqvxwk2jypf4bmfwa3mkcqh3d"; name = "flymake-cppcheck"; }; @@ -21151,7 +21278,7 @@ flymake-css = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-css"; - version = "20121104.1404"; + version = "20121104.2004"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-css"; @@ -21159,7 +21286,7 @@ sha256 = "00cnz3snhs44aknq6wmf19hq9bzb5pj0hvfzz93l6n7ngd8vvpzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -21171,13 +21298,13 @@ }) {}; flymake-cursor = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-cursor"; - version = "20130822.632"; + version = "20130822.1232"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/flymake-cursor.el"; sha256 = "10cpzrd588ya52blghxss5zkn6x8hc7bx1h0qbcdlybbmkjgpkxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-cursor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-cursor"; sha256 = "1s065w0z3sfv3d348w4zhlw96xf3j28bcz14sl46963mj2dm90lr"; name = "flymake-cursor"; }; @@ -21190,7 +21317,7 @@ flymake-easy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-easy"; - version = "20140818.355"; + version = "20140818.955"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-easy"; @@ -21198,7 +21325,7 @@ sha256 = "1mylcsklnv3q27q1gvf7wrila39rmxab1ypmvjh5p56d91y6pszc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -21211,7 +21338,7 @@ flymake-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-elixir"; - version = "20130810.1017"; + version = "20130810.1617"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "flymake-elixir"; @@ -21219,7 +21346,7 @@ sha256 = "04w6g4wixrpfidxbk2bwazhvf0cx3c2v2mxnycqqlqkg0m0sb0fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-elixir"; sha256 = "15r3m58hnc75l3j02xdr8yg25fbn2sbz1295ac44widzis82m792"; name = "flymake-elixir"; }; @@ -21232,7 +21359,7 @@ flymake-gjshint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-gjshint"; - version = "20130327.832"; + version = "20130327.1332"; src = fetchFromGitHub { owner = "yasuyk"; repo = "flymake-gjshint-el"; @@ -21240,7 +21367,7 @@ sha256 = "14kbqyw4v1c51dx7pfgqbn8x4j8j3rgyyq2fa9klqzxpldcskl24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -21253,7 +21380,7 @@ flymake-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-go"; - version = "20150714.333"; + version = "20150714.933"; src = fetchFromGitHub { owner = "robert-zaremba"; repo = "flymake-go"; @@ -21261,7 +21388,7 @@ sha256 = "03gh0y988pksghmmvb5av2vnlbcsncafvn4nwihsis0bhys8k28q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-go"; sha256 = "030m67d8g60ljm7ny3jh4vwj3cshypsklgbjpcvh32y109ga1hy1"; name = "flymake-go"; }; @@ -21274,7 +21401,7 @@ flymake-google-cpplint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-google-cpplint"; - version = "20140205.825"; + version = "20140205.1425"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-google-cpplint"; @@ -21282,7 +21409,7 @@ sha256 = "0zldhlvxmk0xcjmj4ns48pp4h3bvijrzs1md69ya7m3dmsbayfrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-google-cpplint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-google-cpplint"; sha256 = "0q7v70xbprh03f1yabq216q4q82a58s2c1ykr6ig49cg1jdgzkf3"; name = "flymake-google-cpplint"; }; @@ -21295,7 +21422,7 @@ flymake-haml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-haml"; - version = "20130324.651"; + version = "20130324.1151"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-haml"; @@ -21303,7 +21430,7 @@ sha256 = "08rcsg76qdq2l6z8q339yw770kv1q657ywqvq6a20pxxz2158a8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -21316,7 +21443,7 @@ flymake-haskell-multi = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-haskell-multi"; - version = "20130620.722"; + version = "20130620.1322"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-haskell-multi"; @@ -21324,7 +21451,7 @@ sha256 = "0hwcgas83wwhk0szwgw7abf70400knb8dfabknwv0qrcsk4gqffd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -21337,7 +21464,7 @@ flymake-hlint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-hlint"; - version = "20130309.445"; + version = "20130309.1045"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-hlint"; @@ -21345,7 +21472,7 @@ sha256 = "003fdrgxlyhs595ndcdzhmdkcpsf9bpw53hrlrrrh07qlnqxwrvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -21358,7 +21485,7 @@ flymake-jshint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-jshint"; - version = "20140319.1800"; + version = "20140319.2300"; src = fetchFromGitHub { owner = "Wilfred"; repo = "flymake-jshint.el"; @@ -21366,7 +21493,7 @@ sha256 = "0ywm9fpb7d7ry2fly8719fa41q97yj9za3phqhv6j1chzaxvcv3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jshint"; sha256 = "0j4djylz6mrq14qmbm35k3gvvsw6i9qc4gd9ma4fykiqzkdjsg7j"; name = "flymake-jshint"; }; @@ -21379,7 +21506,7 @@ flymake-jslint = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-jslint"; - version = "20130613.502"; + version = "20130613.1102"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-jslint"; @@ -21387,7 +21514,7 @@ sha256 = "0y01albwwcnhj4pnpvcry0zw7z2g9py9q2p3sw5zhgw3g0v5p9ls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -21400,7 +21527,7 @@ flymake-json = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-json"; - version = "20130424.257"; + version = "20130424.857"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-json"; @@ -21408,7 +21535,7 @@ sha256 = "1qn15pr7c07fmki484z5xpqyn8546qb5dr9gcp5n1172wnh2a534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -21421,7 +21548,7 @@ flymake-less = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, less-css-mode, lib, melpaBuild }: melpaBuild { pname = "flymake-less"; - version = "20151111.238"; + version = "20151111.838"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-less"; @@ -21429,7 +21556,7 @@ sha256 = "0ggi8a4j4glpsar0sqg8q06rscajjaziis5ann31wphx88rc5wd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -21442,7 +21569,7 @@ flymake-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymake-lua"; - version = "20140310.530"; + version = "20140310.1030"; src = fetchFromGitHub { owner = "sroccaserra"; repo = "emacs"; @@ -21450,7 +21577,7 @@ sha256 = "1fz7kywp1y2nhp50b2v961wz604sw1gzqcid4k8igz9aii3ygxcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-lua"; sha256 = "0pa66ymhazcfgd9jmxizq5w2sgj008hph42wsa9ljr2rina1gai6"; name = "flymake-lua"; }; @@ -21463,7 +21590,7 @@ flymake-perlcritic = callPackage ({ fetchFromGitHub, fetchurl, flymake ? null, lib, melpaBuild }: melpaBuild { pname = "flymake-perlcritic"; - version = "20120328.414"; + version = "20120328.1014"; src = fetchFromGitHub { owner = "illusori"; repo = "emacs-flymake-perlcritic"; @@ -21471,7 +21598,7 @@ sha256 = "1f4l2r4gp03s18255jawc7s5abpjjrw54937wzygmvzvqvmaiikj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -21484,7 +21611,7 @@ flymake-php = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-php"; - version = "20121104.1402"; + version = "20121104.2002"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-php"; @@ -21492,7 +21619,7 @@ sha256 = "09mibjdji5mf3qvngspv1zmik1zd9jwp4mb4c1w4256202359sf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -21505,7 +21632,7 @@ flymake-phpcs = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-phpcs"; - version = "20140713.231"; + version = "20140713.831"; src = fetchFromGitHub { owner = "senda-akiha"; repo = "flymake-phpcs"; @@ -21513,7 +21640,7 @@ sha256 = "140rlp6m0aqibwa0bhv8w6l3giziybqdw7x271nq8f3r60ch13bi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-phpcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-phpcs"; sha256 = "0zzxi3c203fiw6jp1ar9bb9f28x2lg23bczgy8n5cicrq59jfsn9"; name = "flymake-phpcs"; }; @@ -21526,7 +21653,7 @@ flymake-puppet = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-puppet"; - version = "20141006.2155"; + version = "20141007.355"; src = fetchFromGitHub { owner = "benprew"; repo = "flymake-puppet"; @@ -21534,7 +21661,7 @@ sha256 = "1r3yjqxig2j7l50l787qsi96mkvjcgqll9vb4ci51j7b43d53c5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-puppet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-puppet"; sha256 = "1izq6s33p74dy4wzfnjii8wjs723bm5ggl0w6hkvzgbmyjc01hxv"; name = "flymake-puppet"; }; @@ -21547,7 +21674,7 @@ flymake-python-pyflakes = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-python-pyflakes"; - version = "20131127.306"; + version = "20131127.906"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-python-pyflakes"; @@ -21555,7 +21682,7 @@ sha256 = "1aijapvpw4skfhfmz09v5kpaxay6b0bp77bbjkrvgyizsqdd39vp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -21568,7 +21695,7 @@ flymake-ruby = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-ruby"; - version = "20121104.1359"; + version = "20121104.1959"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-ruby"; @@ -21576,7 +21703,7 @@ sha256 = "13yk9cncp3zw6d7zkgdpgprpw6wrirk2gxgjvkr15dwcyx1g3109"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -21589,7 +21716,7 @@ flymake-rust = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-rust"; - version = "20141004.1852"; + version = "20141005.52"; src = fetchFromGitHub { owner = "jxs"; repo = "flymake-rust"; @@ -21597,7 +21724,7 @@ sha256 = "1qxb3vhh83ikhmm89ms7irdip2l03hnjcq5ncmgywkaqkpslaacv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-rust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-rust"; sha256 = "0fgpkz1d4y2ywizwwrhqdqncdmhdnbgf3mcv3hjpa82x44yb7j32"; name = "flymake-rust"; }; @@ -21610,7 +21737,7 @@ flymake-sass = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-sass"; - version = "20140308.625"; + version = "20140308.1225"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-sass"; @@ -21618,7 +21745,7 @@ sha256 = "0rwjiplpqw3rrh76llnx2fn78f6avxsg0la5br46q1rgw4n8r1w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -21631,7 +21758,7 @@ flymake-shell = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-shell"; - version = "20121104.1400"; + version = "20121104.2000"; src = fetchFromGitHub { owner = "purcell"; repo = "flymake-shell"; @@ -21639,7 +21766,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -21652,7 +21779,7 @@ flymake-solidity = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-solidity"; - version = "20160424.1020"; + version = "20160424.1620"; src = fetchFromGitHub { owner = "kootenpv"; repo = "flymake-solidity"; @@ -21660,7 +21787,7 @@ sha256 = "1rq47qhp3jdrw1n22cnhvhcxqzbi6v9r94kgf3200vrfp435rvkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-solidity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-solidity"; sha256 = "10d1g14y3l670lqgfdsnyxanzcjs2jpgnliih56n1xhcpyz551l3"; name = "flymake-solidity"; }; @@ -21673,7 +21800,7 @@ flymake-vala = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-vala"; - version = "20150326.131"; + version = "20150326.631"; src = fetchFromGitHub { owner = "daniellawrence"; repo = "flymake-vala"; @@ -21681,7 +21808,7 @@ sha256 = "0qpr0frcn3w0f6yz8vgavwbxvn6wb0qkfk653v4cfy57dvslr4wf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-vala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-vala"; sha256 = "0yp81phd96z594ckav796qrjm0wlkrfsl0rwpmgg840qn49w71vx"; name = "flymake-vala"; }; @@ -21694,7 +21821,7 @@ flymake-yaml = callPackage ({ fetchFromGitHub, fetchurl, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "flymake-yaml"; - version = "20130423.1148"; + version = "20130423.1748"; src = fetchFromGitHub { owner = "yasuyk"; repo = "flymake-yaml"; @@ -21702,7 +21829,7 @@ sha256 = "0mdam39a85csi9b90wak9j3zkd25lj6x54affwkg3fym8yphmplm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-yaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-yaml"; sha256 = "17wghm797np4hlidf3wwb47w4klwc6qyk6ry1z05psl3nykws1g7"; name = "flymake-yaml"; }; @@ -21715,15 +21842,15 @@ flymd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flymd"; - version = "20160513.604"; + version = "20160523.959"; src = fetchFromGitHub { owner = "mola-T"; repo = "flymd"; - rev = "167fdaa7336d3ed8fdfac738887c1d9829bb56f7"; - sha256 = "0844g0yajl34x4fn95rqfxlsv5h6jwaql30v4mnlkhz28hsdpgqm"; + rev = "e49c9a5a03fe5dd6d281376868df2917c68481ca"; + sha256 = "0dnafc5pq7j2s9lvb86imsd4a6n62qq3bxq404fyl7pc38fyxr6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymd"; sha256 = "16wq34xv7hswbxw5w9wnnsw2mhc9qzhmaa6aydhh32blcszhp4rk"; name = "flymd"; }; @@ -21736,7 +21863,7 @@ flyparens = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flyparens"; - version = "20140723.1446"; + version = "20140723.2046"; src = fetchFromGitHub { owner = "jiyoo"; repo = "flyparens"; @@ -21744,7 +21871,7 @@ sha256 = "07hy1kyw4cbxydmhp4scsy3dcbk2s50rmdp8rch1vbcjk5lj4mvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyparens"; sha256 = "1mvbfq062qj8vmgzk6rymg3idlfc1makfp1scmjvpw98h30j2a0a"; name = "flyparens"; }; @@ -21757,15 +21884,15 @@ flyspell-correct = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flyspell-correct"; - version = "20160519.113"; + version = "20160602.1017"; src = fetchFromGitHub { owner = "d12frosted"; repo = "flyspell-correct"; - rev = "d2c50edab5f6fc97035efd241a224e5066fd928b"; - sha256 = "0jixdq11hp2lqbss1rpq6b89qg994dyb2kh7k70ja31ky3pq5hzc"; + rev = "0ee248b35c9280c4f23aa4dcb1f2b4532a087e85"; + sha256 = "11cajkn29a10r96x1zil40y66z2zh4khkfwsv3vwi2ryzlfpgr1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-correct"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-correct"; sha256 = "1bm1a9r9g5nsx544a263g26mxrmam7bx2m0a09ggzr6hpwp9sp2n"; name = "flyspell-correct"; }; @@ -21778,7 +21905,7 @@ flyspell-lazy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "flyspell-lazy"; - version = "20141222.952"; + version = "20141222.1552"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "flyspell-lazy"; @@ -21786,7 +21913,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -21799,7 +21926,7 @@ flyspell-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "flyspell-popup"; - version = "20150926.1103"; + version = "20150926.1703"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "flyspell-popup"; @@ -21807,7 +21934,7 @@ sha256 = "1rdpggnw9mz3qr4kp5gh9nvwncivj446vdhpc04d4jgrl568bhqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -21820,7 +21947,7 @@ fm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fm"; - version = "20130126.1918"; + version = "20130127.118"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "fm"; @@ -21828,7 +21955,7 @@ sha256 = "1fk4zsb4jliwz10sqz5bpqgj1p479mc506dmvy4zq3vqnpbypqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -21841,7 +21968,7 @@ fm-bookmarks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fm-bookmarks"; - version = "20151203.903"; + version = "20151203.1503"; src = fetchFromGitHub { owner = "kuanyui"; repo = "fm-bookmarks.el"; @@ -21849,7 +21976,7 @@ sha256 = "0984fhf1nlpdh9mh3gd2xak3v2rlv76qxppqvr6a4kl1dxwg37r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm-bookmarks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm-bookmarks"; sha256 = "12ami0k6rfwhrr6xgj0dls4mkk6dp0r9smwzhr4897dv0lw89bdj"; name = "fm-bookmarks"; }; @@ -21862,7 +21989,7 @@ focus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "focus"; - version = "20160131.1718"; + version = "20160131.2318"; src = fetchFromGitHub { owner = "larstvei"; repo = "Focus"; @@ -21870,7 +21997,7 @@ sha256 = "0vqjyc00ba9wy2rn454hhy9rnnghljc1i8f3zrpkdmkqn5cg3336"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -21883,7 +22010,7 @@ focus-autosave-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "focus-autosave-mode"; - version = "20160519.1716"; + version = "20160519.2316"; src = fetchFromGitHub { owner = "Vifon"; repo = "focus-autosave-mode.el"; @@ -21891,7 +22018,7 @@ sha256 = "1c1mh96kghp5d22assm9kzxlp0cy7bws9yrqwwgaw3d72cba40k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus-autosave-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus-autosave-mode"; sha256 = "10cd1x5b1w7apgxd2kq45lv0jlj7az4zmn2iz4iymf2r2hancrcd"; name = "focus-autosave-mode"; }; @@ -21904,7 +22031,7 @@ foggy-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "foggy-night-theme"; - version = "20160209.1008"; + version = "20160209.1608"; src = fetchFromGitHub { owner = "mswift42"; repo = "foggy-night-theme"; @@ -21912,7 +22039,7 @@ sha256 = "1mnak9k0hz99jq2p7gydxajzvx2vcql8yzwcm0v80a6xji2whl70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foggy-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foggy-night-theme"; sha256 = "03x3dhkk81d2zh9nflq6wd7v3khpy9046v8qhq4i9dw6davvy9j4"; name = "foggy-night-theme"; }; @@ -21925,7 +22052,7 @@ fold-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fold-dwim"; - version = "20140208.1137"; + version = "20140208.1737"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "fold-dwim"; @@ -21933,7 +22060,7 @@ sha256 = "1yz1wis31asw6xa5maliyd1ck2q02xnnh7dc6swgj9cb4wi7k6i1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -21946,7 +22073,7 @@ fold-dwim-org = callPackage ({ fetchFromGitHub, fetchurl, fold-dwim, lib, melpaBuild }: melpaBuild { pname = "fold-dwim-org"; - version = "20131203.851"; + version = "20131203.1451"; src = fetchFromGitHub { owner = "mattfidler"; repo = "fold-dwim-org"; @@ -21954,7 +22081,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -21967,7 +22094,7 @@ fold-this = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fold-this"; - version = "20150601.642"; + version = "20150601.1242"; src = fetchFromGitHub { owner = "magnars"; repo = "fold-this.el"; @@ -21975,7 +22102,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -21988,7 +22115,7 @@ folding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "folding"; - version = "20140401.303"; + version = "20140401.903"; src = fetchFromGitHub { owner = "jaalto"; repo = "project-emacs--folding-mode"; @@ -21996,7 +22123,7 @@ sha256 = "1z2dkyzj1gq3gp9cc3lhi240f8f3yjpjnw520xszm0wvx1rp06ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/folding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/folding"; sha256 = "0rb4f4llc4z502znmmc0hfi7n07lp01msx4y1iyqijvqzlq2i93y"; name = "folding"; }; @@ -22008,13 +22135,13 @@ }) {}; font-lock-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "font-lock-plus"; - version = "20151231.1619"; + version = "20151231.2219"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/font-lock+.el"; sha256 = "04j9xybn9an3bm2p2aqmqnswxxg3gwq2mc96brkgxkr88h316d4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-lock+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-lock+"; sha256 = "1wn99cb53ykds87lg9mrlfpalrmjj177nwskrnp9wglyqs65lk4g"; name = "font-lock-plus"; }; @@ -22027,7 +22154,7 @@ font-lock-studio = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "font-lock-studio"; - version = "20141201.1958"; + version = "20141202.158"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "font-lock-studio"; @@ -22035,7 +22162,7 @@ sha256 = "04n32rgdz7m24jji8p0j42zmf2r60sdbbr4mkr6435fqyvmdd20k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-lock-studio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-lock-studio"; sha256 = "0swwbfaypc78cg4ak24cc92kgxmr1x9vcpaw3jz4zgpm2wzbgmrq"; name = "font-lock-studio"; }; @@ -22048,7 +22175,7 @@ font-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "font-utils"; - version = "20150806.1351"; + version = "20150806.1951"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "font-utils"; @@ -22056,7 +22183,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -22069,7 +22196,7 @@ fontawesome = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "fontawesome"; - version = "20151202.930"; + version = "20151202.1530"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-fontawesome"; @@ -22077,7 +22204,7 @@ sha256 = "103xz042h8w6c85hn19cglfsa34syjh18asm41rjhr9krp15sdl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -22090,7 +22217,7 @@ forecast = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "forecast"; - version = "20160513.1459"; + version = "20160513.2059"; src = fetchFromGitHub { owner = "cadadr"; repo = "forecast.el"; @@ -22098,7 +22225,7 @@ sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -22111,7 +22238,7 @@ foreign-regexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "foreign-regexp"; - version = "20160318.1207"; + version = "20160318.1707"; src = fetchFromGitHub { owner = "k-talo"; repo = "foreign-regexp.el"; @@ -22119,7 +22246,7 @@ sha256 = "1459hy5kgp0dkzy1jab41aibixgmrk9lk6ysn1801spd8gwph371"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreign-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreign-regexp"; sha256 = "189cq8n759f28nx10fn3w4qbq7q49bb788kp9l70pj38jgnjn7n7"; name = "foreign-regexp"; }; @@ -22132,7 +22259,7 @@ foreman-mode = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "foreman-mode"; - version = "20160520.1037"; + version = "20160520.1637"; src = fetchFromGitHub { owner = "zweifisch"; repo = "foreman-mode"; @@ -22140,7 +22267,7 @@ sha256 = "0pp68kqg2impar6rhlpifixx0lqgkcrj6ncjn5jlids6vfhq23nd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -22153,7 +22280,7 @@ form-feed = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "form-feed"; - version = "20160102.1753"; + version = "20160102.2353"; src = fetchFromGitHub { owner = "wasamasa"; repo = "form-feed"; @@ -22161,7 +22288,7 @@ sha256 = "0nj056x87gcpdqkgx3li5syp6wbj58a1mw2aqa48zflbqwyvs03i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -22174,7 +22301,7 @@ format-sql = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "format-sql"; - version = "20150422.933"; + version = "20150422.1533"; src = fetchFromGitHub { owner = "paetzke"; repo = "format-sql.el"; @@ -22182,7 +22309,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -22195,7 +22322,7 @@ fortpy = callPackage ({ auto-complete, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, pos-tip, python-environment }: melpaBuild { pname = "fortpy"; - version = "20150715.1632"; + version = "20150715.2232"; src = fetchFromGitHub { owner = "rosenbrockc"; repo = "fortpy-el"; @@ -22203,7 +22330,7 @@ sha256 = "1nqx2igxmwswjcrnzdjpx5qcjr60zjy3q9cadq5disms17wdcr6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fortpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fortpy"; sha256 = "1nn5vx1rspfsijwhilnjhiy0mjw154ds3lwxvkpwxpchygirlyxj"; name = "fortpy"; }; @@ -22216,7 +22343,7 @@ fortune-cookie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fortune-cookie"; - version = "20151111.135"; + version = "20151111.735"; src = fetchFromGitHub { owner = "andschwa"; repo = "fortune-cookie"; @@ -22224,7 +22351,7 @@ sha256 = "1kk04hl2y2svrs07w4pq9f4g7vs9qzy2qpw9prvi1gravmnfrzc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fortune-cookie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fortune-cookie"; sha256 = "0xg0zk7hnyhnbhqpxnzrgqs5yz0sy6wb0n9982qc0pa6jqnl9z78"; name = "fortune-cookie"; }; @@ -22237,7 +22364,7 @@ fountain-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fountain-mode"; - version = "20160221.807"; + version = "20160221.1407"; src = fetchFromGitHub { owner = "rnkn"; repo = "fountain-mode"; @@ -22245,7 +22372,7 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -22258,13 +22385,13 @@ frame-cmds = callPackage ({ fetchurl, frame-fns, lib, melpaBuild }: melpaBuild { pname = "frame-cmds"; - version = "20160124.1126"; + version = "20160124.1726"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/frame-cmds.el"; sha256 = "1867zmm3pyqz8p9ig44jf598z9jkyvbp04mfg6j6ys3hyqfkw942"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-cmds"; sha256 = "0xwzp6sgcb5ap76hpzm8g4kl08a8cgq7i2x9w64njyfink7frwc0"; name = "frame-cmds"; }; @@ -22276,13 +22403,13 @@ }) {}; frame-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-fns"; - version = "20151231.1622"; + version = "20151231.2222"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/frame-fns.el"; sha256 = "0lvlyxb62sgrm37hc21dn7qzlrq2yagiwpspa926q6dpzcsbam15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-fns"; sha256 = "1wq8wva9q1hdzkvjk582a3fgig0lpqz9ch1p2jd6p29kb1i15f5p"; name = "frame-fns"; }; @@ -22295,7 +22422,7 @@ frame-restore = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-restore"; - version = "20140811.1709"; + version = "20140811.2309"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "frame-restore.el"; @@ -22303,7 +22430,7 @@ sha256 = "0n6jhm1198c8slvdymsfjif0dfx3wlf8q4mm0yvpiln46shhwldx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -22316,7 +22443,7 @@ frame-tag = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "frame-tag"; - version = "20151121.218"; + version = "20151121.818"; src = fetchFromGitHub { owner = "liangzan"; repo = "frame-tag.el"; @@ -22324,7 +22451,7 @@ sha256 = "1vvkdgj8warl40kqmd0408q46dxy9qp2sclq4q92b6falry9qy30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-tag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-tag"; sha256 = "1n13xcc3ny9j9h1h4vslpjl6k9mqksr73kgmqrmkq301p8zps94q"; name = "frame-tag"; }; @@ -22336,13 +22463,13 @@ }) {}; framemove = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "framemove"; - version = "20130328.733"; + version = "20130328.1233"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/framemove.el"; sha256 = "03ll68d0j0b55rfxymzcirdigkmxcy8556d0i67ghdzmcqfwily7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/framemove"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/framemove"; sha256 = "10qf017j0zfnzmcs1i56pznhbvgw7mv4232p8znqaaxphgh6r0ar"; name = "framemove"; }; @@ -22355,7 +22482,7 @@ framesize = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "framesize"; - version = "20131017.1732"; + version = "20131017.2332"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-framesize"; @@ -22363,7 +22490,7 @@ sha256 = "11h9xw6jnw7dacyv1jch2a77xp7hfb93690m7hhazy6l87xmm4dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/framesize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/framesize"; sha256 = "1rwiwx3n7gkpfihbf6ndl1lxza4zi2rlj5av6lfp5qypbw9wddkf"; name = "framesize"; }; @@ -22376,7 +22503,7 @@ free-keys = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "free-keys"; - version = "20151202.622"; + version = "20151202.1222"; src = fetchFromGitHub { owner = "Fuco1"; repo = "free-keys"; @@ -22384,7 +22511,7 @@ sha256 = "12rmwf7gm9ib2c99jangygh2yswy41vxlp90rg0hvlhdfmbqa8p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/free-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/free-keys"; sha256 = "0j9cfgy2nkbska4lm5z32p804i9n8pdgn50bs5zzk1ilwd5vbalj"; name = "free-keys"; }; @@ -22397,7 +22524,7 @@ fringe-current-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fringe-current-line"; - version = "20140110.2311"; + version = "20140111.511"; src = fetchFromGitHub { owner = "kyanagi"; repo = "fringe-current-line"; @@ -22405,7 +22532,7 @@ sha256 = "0zwlnzbi91hkfz1jgj9s9pxwi21s21cwp6psdm687wj2a3wy4231"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-current-line"; sha256 = "125yn0wbrrxrmdn7qfxj0f4538sb3xnqb3r2inz3gpblc1vxnqb8"; name = "fringe-current-line"; }; @@ -22418,7 +22545,7 @@ fringe-helper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fringe-helper"; - version = "20140620.1709"; + version = "20140620.2309"; src = fetchFromGitHub { owner = "nschum"; repo = "fringe-helper.el"; @@ -22426,7 +22553,7 @@ sha256 = "0ra9rc53l1gvkqank8apasl3r7wz2yfjrcvmfk3wpxhh24ppxv9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -22439,7 +22566,7 @@ fsharp-mode = callPackage ({ company, company-quickhelp, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip, s }: melpaBuild { pname = "fsharp-mode"; - version = "20160427.1148"; + version = "20160427.1748"; src = fetchFromGitHub { owner = "rneatherway"; repo = "emacs-fsharp-mode-bin"; @@ -22447,7 +22574,7 @@ sha256 = "1d28kdh96izj05mfknhgyd8954kl2abjgjlinmx1bsa9flb9vgpb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; @@ -22460,7 +22587,7 @@ fstar-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fstar-mode"; - version = "20160215.1007"; + version = "20160215.1607"; src = fetchFromGitHub { owner = "FStarLang"; repo = "fstar-mode.el"; @@ -22468,7 +22595,7 @@ sha256 = "0vw6z68b99llcj10jy7vbmirlx62j23rgzxgdngl7kj6rfg9llpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fstar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fstar-mode"; sha256 = "0kyzkghdkrnqqbd5b969pjyz9jxgq0j8hkmvlcwikl7ynnhm9lgy"; name = "fstar-mode"; }; @@ -22481,14 +22608,14 @@ fuel = callPackage ({ cl-lib ? null, emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuel"; - version = "20160328.829"; + version = "20160525.2300"; src = fetchgit { url = "git://factorcode.org/git/factor.git"; - rev = "d5e5589da8864bdf1a3ca95338dab7966b6b0ceb"; - sha256 = "1y6alsmwwv9v1gxqsgddzzk0gcdysjw1xaj4764hrb7wxs7z0qf6"; + rev = "c7041fe96ec2db36dac7e1201270b970b854d2f3"; + sha256 = "175d9qqw1sgwkdhbhcmm5b1m5cd1hmg12h7llcycx161jkhl66zb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -22501,7 +22628,7 @@ full-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "full-ack"; - version = "20140223.1232"; + version = "20140223.1832"; src = fetchFromGitHub { owner = "nschum"; repo = "full-ack"; @@ -22509,7 +22636,7 @@ sha256 = "0bjny4ryrs788myhiaf3ir99vadf2v4swa5gkz9i36a7j6wzpgk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -22522,7 +22649,7 @@ fullframe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fullframe"; - version = "20160504.1049"; + version = "20160504.1649"; src = fetchFromGitHub { owner = "tomterl"; repo = "fullframe"; @@ -22530,7 +22657,7 @@ sha256 = "0nhw708b5jjymbw3b7np11jlkzdrzq7qnnxdyl8nndsn1c3qcr0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -22543,7 +22670,7 @@ function-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "function-args"; - version = "20160206.817"; + version = "20160206.1417"; src = fetchFromGitHub { owner = "abo-abo"; repo = "function-args"; @@ -22551,7 +22678,7 @@ sha256 = "067fmk46wk6jpc01wylagw948sgs3ndrq18mp3x81pdv3dykzmr6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -22564,7 +22691,7 @@ furl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "furl"; - version = "20150508.2316"; + version = "20150509.516"; src = fetchFromGitHub { owner = "nex3"; repo = "furl-el"; @@ -22572,7 +22699,7 @@ sha256 = "0wrmbvx0risdjkaxqmh4li6iwvg4635cdpjvw32k2wkdsyn2dlsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/furl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/furl"; sha256 = "1z3yqx95qmvpi6vkkgcwvkmw96s24h8ssd5gc06988picw6vj76f"; name = "furl"; }; @@ -22585,7 +22712,7 @@ fuzzy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy"; - version = "20150729.2337"; + version = "20150730.537"; src = fetchFromGitHub { owner = "auto-complete"; repo = "fuzzy-el"; @@ -22593,7 +22720,7 @@ sha256 = "0rzp8c2164w775ggm2fs4j5dz33vqcah84ysp81majirwfql1niv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -22605,13 +22732,13 @@ }) {}; fuzzy-format = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy-format"; - version = "20130824.800"; + version = "20130824.1400"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fuzzy-format.el"; sha256 = "1iv0x1cb12kknnxyq2gca7m3c3rg9s4cxz397sazkh1csrn0b2i7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy-format"; sha256 = "055b8710yxbi2sdqsqk6jqgnzky4nykv8jgqgwy8q2isgj6q98jb"; name = "fuzzy-format"; }; @@ -22623,13 +22750,13 @@ }) {}; fuzzy-match = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "fuzzy-match"; - version = "20151231.1623"; + version = "20151231.2223"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/fuzzy-match.el"; sha256 = "1q3gbv9xp2jxrf9vfarjqk9k805xc9z72zbaw7aqdxrj1bafxwnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy-match"; sha256 = "0mpy84f2zdyzmipzhs06b8rl2pxiypazf35ls1nc1yj8r16ijrds"; name = "fuzzy-match"; }; @@ -22642,7 +22769,7 @@ fvwm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fvwm-mode"; - version = "20160411.738"; + version = "20160411.1338"; src = fetchFromGitHub { owner = "theBlackDragon"; repo = "fvwm-mode"; @@ -22650,7 +22777,7 @@ sha256 = "03zmk4v259pqx7gkwqq95lccn78rwmh7iq5j0d5jj4jf9h39rr20"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -22663,15 +22790,15 @@ fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fwb-cmds"; - version = "20131209.1900"; + version = "20160523.1435"; src = fetchFromGitHub { owner = "tarsius"; repo = "fwb-cmds"; - rev = "93504c2022799a84cc14d598e1413f8d9df4ee0e"; - sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; + rev = "57973f99cf4a185b5cccbf941478fad25e8428c3"; + sha256 = "1c7h043lz10mw1hdsx9viksy6q79jipz2mm18y1inlbqhmg33n2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -22684,7 +22811,7 @@ fxrd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "fxrd-mode"; - version = "20160503.1645"; + version = "20160503.2245"; src = fetchFromGitHub { owner = "msherry"; repo = "fxrd-mode"; @@ -22692,7 +22819,7 @@ sha256 = "1m8zgwcfl0i3yizx01ikxjhhqm1nj74q35fs3d32z9fkk5h21m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -22705,7 +22832,7 @@ fyure = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fyure"; - version = "20130216.814"; + version = "20130216.1414"; src = fetchFromGitHub { owner = "mooz"; repo = "fyure"; @@ -22713,7 +22840,7 @@ sha256 = "08x5li0mshrlamr7vswy7xh358bqhh3pngjr4ckswfi0l2r5fjbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fyure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fyure"; sha256 = "0k5z2xqlrzp5lyvp2lr462x38kqdmqld845bvyvkfjd2k4yri71x"; name = "fyure"; }; @@ -22726,7 +22853,7 @@ fzf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fzf"; - version = "20151129.933"; + version = "20151129.1533"; src = fetchFromGitHub { owner = "bling"; repo = "fzf.el"; @@ -22734,7 +22861,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -22747,7 +22874,7 @@ gams-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gams-mode"; - version = "20160320.528"; + version = "20160320.1028"; src = fetchFromGitHub { owner = "ShiroTakeda"; repo = "gams-mode"; @@ -22755,7 +22882,7 @@ sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gams-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gams-mode"; sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; name = "gams-mode"; }; @@ -22768,7 +22895,7 @@ gandalf-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gandalf-theme"; - version = "20130809.547"; + version = "20130809.1147"; src = fetchFromGitHub { owner = "ptrv"; repo = "gandalf-theme-emacs"; @@ -22776,7 +22903,7 @@ sha256 = "0sn3y1ilbg532mg941qmzipvzq86q31x86ypaf0h0m4015r7l59v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gandalf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gandalf-theme"; sha256 = "0wkmsg3pdw98gyp3q508wsqkzw821qsqi796ynm53zd7a4jfap4p"; name = "gandalf-theme"; }; @@ -22788,14 +22915,14 @@ }) {}; gap-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gap-mode"; - version = "20160204.1036"; + version = "20160204.1636"; src = fetchhg { url = "https://bitbucket.com/gvol/gap-mode"; rev = "1de32f2ff384"; sha256 = "1jsw2mywc0y8sf7yl7y3i3l8vs3jv1srjf34lgb5xfz6p8wc5lc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gap-mode"; sha256 = "07whab3gi4b8gsvy5ijmjnj700lw0rm3bnr1769byhnpi7qpqin2"; name = "gap-mode"; }; @@ -22808,7 +22935,7 @@ gather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gather"; - version = "20141230.838"; + version = "20141230.1438"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-gather"; @@ -22816,7 +22943,7 @@ sha256 = "0j0dg7nl9kmanayvw0712x5c5x9h48qmqdsyi0pijvgmv8l5slg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -22829,7 +22956,7 @@ geben = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geben"; - version = "20160509.1729"; + version = "20160509.2329"; src = fetchFromGitHub { owner = "ahungry"; repo = "geben"; @@ -22837,7 +22964,7 @@ sha256 = "04s25rgyk8qqalynkgdafzg9c1c3jq6g9c4dq1nm579bmzkp3hhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geben"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geben"; sha256 = "1ai1qcx76m8xh80c8zixq9cqbhnqmj3jk3r7lj3ngbiwx4pnlnwf"; name = "geben"; }; @@ -22850,7 +22977,7 @@ geben-helm-projectile = callPackage ({ emacs, fetchFromGitHub, fetchurl, geben, helm-projectile, lib, melpaBuild }: melpaBuild { pname = "geben-helm-projectile"; - version = "20160430.148"; + version = "20160430.748"; src = fetchFromGitHub { owner = "ahungry"; repo = "geben-helm-projectile"; @@ -22858,7 +22985,7 @@ sha256 = "1w2h059bfdxa18sk8xrk2cdssj1s1qdp7mb38plgvndgs6fccwn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geben-helm-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geben-helm-projectile"; sha256 = "11zhapys6wx2cadflvjimsmilwvjpfd4ihwzzmap8shxpyllsq9r"; name = "geben-helm-projectile"; }; @@ -22871,7 +22998,7 @@ geeknote = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geeknote"; - version = "20150223.1115"; + version = "20150223.1715"; src = fetchFromGitHub { owner = "avendael"; repo = "emacs-geeknote"; @@ -22879,7 +23006,7 @@ sha256 = "14v5gm931dcsfflhsvijr4ihx7cs6jymvnjzph3arvhvqwyqhwgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geeknote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geeknote"; sha256 = "1ci82fj3layd95lqj2w40y87xps6bs7x05z8ai9m59k244g26m8v"; name = "geeknote"; }; @@ -22892,15 +23019,15 @@ geiser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "geiser"; - version = "20160502.1515"; + version = "20160529.339"; src = fetchFromGitHub { owner = "jaor"; repo = "geiser"; - rev = "2e335695fc1a4a0b520b50deb761b958194cbec4"; - sha256 = "00rmpn8zncq1fiah5m12l26z0s28bh7ql63kxdvksqdgfrisnmgf"; + rev = "d8cb36651aa628075df494c0a1515d98d5a75adf"; + sha256 = "04a4zkj4l8xhf79rb9nprlpw7li795pg6awjs2k2zja4j15ins4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -22913,15 +23040,15 @@ general = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "general"; - version = "20160521.2153"; + version = "20160603.218"; src = fetchFromGitHub { owner = "noctuid"; repo = "general.el"; - rev = "2423ce5b44cffc04f00ab316a6c70b2562e05688"; - sha256 = "0cng2pxp1crvq94pdzj97hwbipnjz00gvsmidfwbh0liggs8nr0q"; + rev = "93045954e914779fc0cc81c9aa03cde5413acb6d"; + sha256 = "0km0wfp1sd575ymalzqbb9pg7l22lbyb88hgjy58595rrx6xlbqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/general"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/general"; sha256 = "104ywsfylfymly64p1i3hsy9pnpz3dkpmcq1ygafnld8zjd08gpc"; name = "general"; }; @@ -22934,7 +23061,7 @@ general-close = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "general-close"; - version = "20160501.344"; + version = "20160501.944"; src = fetchFromGitHub { owner = "emacs-berlin"; repo = "general-close"; @@ -22942,7 +23069,7 @@ sha256 = "024xshsl1wvjgnik3dc29g29a503rx46j8v9d6hfd597nf0qmz6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/general-close"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/general-close"; sha256 = "17v0aprfvxbygx5517a8hrl88qm5lb9k7523yd0ps5p9l5x96964"; name = "general-close"; }; @@ -22955,7 +23082,7 @@ genrnc = callPackage ({ concurrent, deferred, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "genrnc"; - version = "20140612.837"; + version = "20140612.1437"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-genrnc"; @@ -22963,7 +23090,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -22976,7 +23103,7 @@ german-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "german-holidays"; - version = "20151102.1043"; + version = "20151102.1643"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "german-holidays"; @@ -22984,7 +23111,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -22997,7 +23124,7 @@ gerrit-download = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "gerrit-download"; - version = "20150714.1008"; + version = "20150714.1608"; src = fetchFromGitHub { owner = "chmouel"; repo = "gerrit-download.el"; @@ -23005,7 +23132,7 @@ sha256 = "1ch8yp0mgk57x0pny9bvkknsqj27fd1rcmpm9s7qpryrwqkp1ix4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gerrit-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gerrit-download"; sha256 = "1rlz0iqgvr8yxnv5qmk29xs1jwf0g0ckzanlyldcxvs7n6mhkjjp"; name = "gerrit-download"; }; @@ -23018,7 +23145,7 @@ ggo-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ggo-mode"; - version = "20130524.743"; + version = "20130524.1343"; src = fetchFromGitHub { owner = "mkjunker"; repo = "ggo-mode"; @@ -23026,7 +23153,7 @@ sha256 = "0bwjiq4a4f5pg0ngvc3lmkk7aki8n9zqfa1dym0lk4vy6yfhcbhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -23039,7 +23166,7 @@ ggtags = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ggtags"; - version = "20151214.1644"; + version = "20151214.2244"; src = fetchFromGitHub { owner = "leoliu"; repo = "ggtags"; @@ -23047,7 +23174,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -23060,7 +23187,7 @@ gh = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, logito, melpaBuild, pcache }: melpaBuild { pname = "gh"; - version = "20160222.2111"; + version = "20160223.311"; src = fetchFromGitHub { owner = "sigma"; repo = "gh.el"; @@ -23068,7 +23195,7 @@ sha256 = "10iy5sfyqnz3mrl951j9skxp1s8zm6cqmsadgbxnl9fj3br3ygd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -23081,7 +23208,7 @@ gh-md = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gh-md"; - version = "20151207.1240"; + version = "20151207.1840"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "gh-md.el"; @@ -23089,7 +23216,7 @@ sha256 = "0g3bjpnwgqczw6ddh4mv7pby0zyqzqgywjrjz2ib6hwmdqzyp1s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh-md"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh-md"; sha256 = "0b72fl1hj7gkqlqrr8hklq0w3ryqqqfn5qpb7a9i6q0vh98652xm"; name = "gh-md"; }; @@ -23102,7 +23229,7 @@ ghc = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "ghc"; - version = "20160108.1001"; + version = "20160108.1601"; src = fetchFromGitHub { owner = "DanielG"; repo = "ghc-mod"; @@ -23110,7 +23237,7 @@ sha256 = "0zm8x7bclh5sdfgkj6jv6id2mjfvb8bb4iy1kmk83am076bj5ysh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc"; sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; @@ -23123,7 +23250,7 @@ ghc-imported-from = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghc-imported-from"; - version = "20141124.1432"; + version = "20141124.2032"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "ghc-imported-from-el"; @@ -23131,7 +23258,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -23144,7 +23271,7 @@ ghci-completion = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghci-completion"; - version = "20151125.757"; + version = "20151125.1357"; src = fetchFromGitHub { owner = "manzyuk"; repo = "ghci-completion"; @@ -23152,7 +23279,7 @@ sha256 = "17fl3k2sqiavbv3bp6rnp3p89j6pnpkkp7wi26pzzk4675r5k45q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghci-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghci-completion"; sha256 = "1a6k47z5kmacj1s5479393jyj27bjx0911yaqfmmwg2hr0yz7vll"; name = "ghci-completion"; }; @@ -23165,7 +23292,7 @@ gherkin-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gherkin-mode"; - version = "20140107.1104"; + version = "20140107.1704"; src = fetchFromGitHub { owner = "candera"; repo = "gherkin-mode"; @@ -23173,7 +23300,7 @@ sha256 = "0lcbyw6yrl6c8py5v2hqghcbsf9cbiplzil90al4lwqps7rw09a8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gherkin-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gherkin-mode"; sha256 = "0dhrsz24hn0sdf22wpmzbkn66g4540vdkl03pc27kv21gwa9ixxv"; name = "gherkin-mode"; }; @@ -23183,10 +23310,31 @@ license = lib.licenses.free; }; }) {}; + ghost-blog = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: + melpaBuild { + pname = "ghost-blog"; + version = "20160526.1157"; + src = fetchFromGitHub { + owner = "javaguirre"; + repo = "ghost-blog-emacs"; + rev = "19c2f62da87c756ff080a235bf1b115c88d499ba"; + sha256 = "1br27p8kqnj6gfii6xp37yd3rja876vhpcf784n98qhnkd7a63q1"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghost-blog"; + sha256 = "1wqi7r5jr3n0mgax7lddq5h3jfkcq69vvj02a6078vzd2bfxg9ia"; + name = "ghost-blog"; + }; + packageRequires = [ markdown-mode ]; + meta = { + homepage = "https://melpa.org/#/ghost-blog"; + license = lib.licenses.free; + }; + }) {}; ghq = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ghq"; - version = "20151130.418"; + version = "20151130.1018"; src = fetchFromGitHub { owner = "rcoedo"; repo = "emacs-ghq"; @@ -23194,7 +23342,7 @@ sha256 = "1aj5j0y244r1fbbbl0lzb53wnyhljw91kb4n3hi2gagm7zwp8jcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghq"; sha256 = "0prvywcgwdhx5pw66rv5kkfriahal2mli2ibam5np3z6bwcq4ngh"; name = "ghq"; }; @@ -23207,7 +23355,7 @@ gildas-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }: melpaBuild { pname = "gildas-mode"; - version = "20150919.1801"; + version = "20150920.1"; src = fetchFromGitHub { owner = "smaret"; repo = "gildas-mode"; @@ -23215,7 +23363,7 @@ sha256 = "1na8pp1g940zi22jgqi6drsm12db0hyw99v493i5j1p2y67c4hxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gildas-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gildas-mode"; sha256 = "0bc3d8bnvg1w2chrr4rp9daq1x8p41qgklrniq0bbkr2h93cmkgv"; name = "gildas-mode"; }; @@ -23228,7 +23376,7 @@ gist = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild }: melpaBuild { pname = "gist"; - version = "20160118.1956"; + version = "20160119.156"; src = fetchFromGitHub { owner = "defunkt"; repo = "gist.el"; @@ -23236,7 +23384,7 @@ sha256 = "18433gjhra0gqrwnxssd3njpxbvqhh64bds9rym1vq9l7w09z024"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -23249,7 +23397,7 @@ git = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "git"; - version = "20140128.541"; + version = "20140128.1141"; src = fetchFromGitHub { owner = "rejeep"; repo = "git.el"; @@ -23257,7 +23405,7 @@ sha256 = "0471xm0h6jkmxnrcqy5agq42i8immdb2qpnw7q7czrbsl521al8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -23270,7 +23418,7 @@ git-annex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-annex"; - version = "20160215.1411"; + version = "20160215.2011"; src = fetchFromGitHub { owner = "jwiegley"; repo = "git-annex-el"; @@ -23278,7 +23426,7 @@ sha256 = "0d2blcnyqd1br7zhwprdxpx2jphjhsb4jgaw9dr4gvv0xdb2sr87"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-annex"; sha256 = "0194y24vq1w6m2cjgqgx9dqp99cq8y9licyry2zxa5brbrsxi94l"; name = "git-annex"; }; @@ -23291,7 +23439,7 @@ git-auto-commit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-auto-commit-mode"; - version = "20150404.1051"; + version = "20150404.1651"; src = fetchFromGitHub { owner = "ryuslash"; repo = "git-auto-commit-mode"; @@ -23299,7 +23447,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -23312,7 +23460,7 @@ git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-blame"; - version = "20110509.1226"; + version = "20110509.1826"; src = fetchFromGitHub { owner = "tsgates"; repo = "git-emacs"; @@ -23320,7 +23468,7 @@ sha256 = "0g839pzmipjlv32r0gh166jn3na5d0wh2w1sia2k4yx1w0ch1bsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-blame"; sha256 = "0glmnj77vya8ivjin4qja7lis67wyibzy9k6z8b54z7mqf9ikx06"; name = "git-blame"; }; @@ -23333,7 +23481,7 @@ git-command = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, term-run, with-editor }: melpaBuild { pname = "git-command"; - version = "20160111.803"; + version = "20160111.1403"; src = fetchFromGitHub { owner = "10sr"; repo = "git-command-el"; @@ -23341,7 +23489,7 @@ sha256 = "1irqmypgc4l1jlzj4g65ihpic3ffnnkcg1hlysj7qpip5nbflqgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -23354,15 +23502,15 @@ git-commit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, with-editor }: melpaBuild { pname = "git-commit"; - version = "20160519.1250"; + version = "20160519.1850"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "826f72e72784315d3eceb96144bdfc9e225af6bf"; - sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il"; + rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2"; + sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -23375,7 +23523,7 @@ git-commit-insert-issue = callPackage ({ fetchFromGitLab, fetchurl, github-issues, helm, lib, melpaBuild, projectile, s }: melpaBuild { pname = "git-commit-insert-issue"; - version = "20160122.1049"; + version = "20160122.1649"; src = fetchFromGitLab { owner = "emacs-stuff"; repo = "git-commit-insert-issue"; @@ -23383,7 +23531,7 @@ sha256 = "1vdyrqg2w5q4xmazqqh2ymjnrp9p1x5172nllwryz43jvvxaw05s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit-insert-issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit-insert-issue"; sha256 = "0mhpszm2y178dxgjv3kh2n744hg2kd60h16zbgmjf4f8228xw8j3"; name = "git-commit-insert-issue"; }; @@ -23396,7 +23544,7 @@ git-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-dwim"; - version = "20100718.1736"; + version = "20100718.2336"; src = fetchFromGitHub { owner = "rubikitch"; repo = "emacs-git-dwim"; @@ -23404,7 +23552,7 @@ sha256 = "12k0bh0mrwlkrsfhc0pm9b1xvdks20smarsmvzg4zi5060ds1pzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-dwim"; sha256 = "0xcigah06ak5wdma4ddcix58q2v5hszncb65f272m4lc2racgsfl"; name = "git-dwim"; }; @@ -23417,7 +23565,7 @@ git-gutter = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-gutter"; - version = "20160520.1955"; + version = "20160521.155"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter"; @@ -23425,7 +23573,7 @@ sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; @@ -23438,7 +23586,7 @@ git-gutter-fringe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fringe-helper, git-gutter, lib, melpaBuild }: melpaBuild { pname = "git-gutter-fringe"; - version = "20160520.1956"; + version = "20160521.156"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-gutter-fringe"; @@ -23446,7 +23594,7 @@ sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; @@ -23459,7 +23607,7 @@ git-gutter-fringe-plus = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, git-gutter-plus, lib, melpaBuild }: melpaBuild { pname = "git-gutter-fringe-plus"; - version = "20140729.703"; + version = "20140729.1303"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "git-gutter-fringe-plus"; @@ -23467,7 +23615,7 @@ sha256 = "1rsj193zpblndki4khjjlwl2njxb329d42l75ki55msxifqrn4fi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -23480,7 +23628,7 @@ git-gutter-plus = callPackage ({ dash, fetchFromGitHub, fetchurl, git-commit, lib, melpaBuild }: melpaBuild { pname = "git-gutter-plus"; - version = "20151204.1223"; + version = "20151204.1823"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "git-gutter-plus"; @@ -23488,7 +23636,7 @@ sha256 = "0bhrrgdzzj8gwxjx7b2kibp1b6s0vgvykfg0n47iq49m6rqkgi5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -23501,7 +23649,7 @@ git-lens = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-lens"; - version = "20160204.137"; + version = "20160204.737"; src = fetchFromGitHub { owner = "pidu"; repo = "git-lens"; @@ -23509,7 +23657,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -23522,7 +23670,7 @@ git-link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-link"; - version = "20160401.2150"; + version = "20160402.350"; src = fetchFromGitHub { owner = "sshaw"; repo = "git-link"; @@ -23530,7 +23678,7 @@ sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -23543,15 +23691,15 @@ git-messenger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "git-messenger"; - version = "20160121.2142"; + version = "20160602.1610"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-git-messenger"; - rev = "ca6526119706623de1e573c48addc4cc60ba7860"; - sha256 = "082g2gqbf8yjgvj2c32ix6j3wwba5fmgcyi75bf0q0bbg4ck5rab"; + rev = "e53e1f1c3d8a8de0f0d1deb9a07f340e4bb13021"; + sha256 = "05wm9hl1fi2dav6hx02j59vnljn5awbk3i32xvv8qlpkhv6fk4ld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -23564,7 +23712,7 @@ git-ps1-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-ps1-mode"; - version = "20151228.402"; + version = "20151228.1002"; src = fetchFromGitHub { owner = "10sr"; repo = "git-ps1-mode-el"; @@ -23572,7 +23720,7 @@ sha256 = "1v0jk35ynfg9hivw9gdz2snk73pac67xlfx7av8argdcss1bmyb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -23585,7 +23733,7 @@ git-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "git-timemachine"; - version = "20160323.1540"; + version = "20160323.2040"; src = fetchFromGitHub { owner = "pidu"; repo = "git-timemachine"; @@ -23593,7 +23741,7 @@ sha256 = "1iz5cy3fc7y56s4005syxnb1y3sn1q0s0nlpa01bnxksrfy5zahl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -23606,7 +23754,7 @@ git-wip-timemachine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "git-wip-timemachine"; - version = "20150408.606"; + version = "20150408.1206"; src = fetchFromGitHub { owner = "itsjeyd"; repo = "git-wip-timemachine"; @@ -23614,7 +23762,7 @@ sha256 = "1ivnf4vsqk6c7iw1cid7q1hxp7047ajd1mpg0fl002d7m7ginhyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -23627,7 +23775,7 @@ gitattributes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitattributes-mode"; - version = "20160319.602"; + version = "20160319.1102"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23635,7 +23783,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -23648,7 +23796,7 @@ gitconfig = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig"; - version = "20130718.535"; + version = "20130718.1135"; src = fetchFromGitHub { owner = "tonini"; repo = "gitconfig.el"; @@ -23656,7 +23804,7 @@ sha256 = "184q3vsxa9rvhc1n57ms47r73f3zap25wswzi66rm6rmfi2k7678"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -23669,7 +23817,7 @@ gitconfig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitconfig-mode"; - version = "20160319.602"; + version = "20160319.1102"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23677,7 +23825,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -23690,7 +23838,7 @@ github-browse-file = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-browse-file"; - version = "20160205.927"; + version = "20160205.1527"; src = fetchFromGitHub { owner = "osener"; repo = "github-browse-file"; @@ -23698,7 +23846,7 @@ sha256 = "0i3dkm0j4gh21b7r5vxr6dddql5rj7lg8xlaairvild0ccf3bhdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -23711,7 +23859,7 @@ github-clone = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild }: melpaBuild { pname = "github-clone"; - version = "20160114.953"; + version = "20160114.1553"; src = fetchFromGitHub { owner = "dgtized"; repo = "github-clone.el"; @@ -23719,7 +23867,7 @@ sha256 = "000m6w2akx1z1lb32nvy6qzyggpcvlbdjh1i8419rzaidxf5gaxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -23732,7 +23880,7 @@ github-issues = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-issues"; - version = "20120425.1835"; + version = "20120426.35"; src = fetchFromGitHub { owner = "inkel"; repo = "github-issues.el"; @@ -23740,7 +23888,7 @@ sha256 = "065gpnllsk4x574fn9d6m4ajxl7mj5w2w5g9in421sp5r80fp9fv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-issues"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-issues"; sha256 = "12c6yb3v7xwkzc51binfgl4jb3sm3al5nlrklbsxhn44alazsvb0"; name = "github-issues"; }; @@ -23753,7 +23901,7 @@ github-notifier = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "github-notifier"; - version = "20160505.102"; + version = "20160505.702"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "github-notifier.el"; @@ -23761,7 +23909,7 @@ sha256 = "0n5mrd2la44r66bkqs0r3298qn5yybs80nwsy54pzlaz88v899bl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-notifier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-notifier"; sha256 = "1jqc2wx1pvkca8syj97ds32404szm0wn12b7zpa98265sg3n64nw"; name = "github-notifier"; }; @@ -23774,7 +23922,7 @@ gitignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitignore-mode"; - version = "20160319.602"; + version = "20160319.1102"; src = fetchFromGitHub { owner = "magit"; repo = "git-modes"; @@ -23782,7 +23930,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -23795,7 +23943,7 @@ gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "gitlab"; - version = "20160519.603"; + version = "20160519.1203"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-gitlab"; @@ -23803,7 +23951,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -23816,7 +23964,7 @@ gitolite-clone = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "gitolite-clone"; - version = "20150819.939"; + version = "20150819.1539"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "gitolite-clone"; @@ -23824,7 +23972,7 @@ sha256 = "1h66wywhl5ipryx0s0w1vxp3ydg57zpizjz61wvf6qd8zn07nhng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitolite-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitolite-clone"; sha256 = "1la1nrfns9j6wii6lriwwsd44cx3ksyhh09h8lf9dai6wp67kjac"; name = "gitolite-clone"; }; @@ -23837,7 +23985,7 @@ gitty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gitty"; - version = "20151121.248"; + version = "20151121.848"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "gitty"; @@ -23845,7 +23993,7 @@ sha256 = "0y8msn22lzfwh7d417abay9by2zhs9zswhcj8a0l7ln2ksljl500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitty"; sha256 = "1z6w4vbn0aaajyqanc7h1m5ali7dbrnh4ngw87a2x2pkxarx6x16"; name = "gitty"; }; @@ -23858,7 +24006,7 @@ glsl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "glsl-mode"; - version = "20160209.1133"; + version = "20160209.1733"; src = fetchFromGitHub { owner = "jimhourihan"; repo = "glsl-mode"; @@ -23866,7 +24014,7 @@ sha256 = "14ziljq34k585scwn606hqbkcvy8h1iylsc4h2n1grfmm8ilf0ws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/glsl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/glsl-mode"; sha256 = "0d05qb60k5f7wwpsp3amzghayfbwcha6rh8nrslhnklpjbg87aw5"; name = "glsl-mode"; }; @@ -23879,7 +24027,7 @@ gmail-message-mode = callPackage ({ fetchFromGitHub, fetchurl, ham-mode, lib, melpaBuild }: melpaBuild { pname = "gmail-message-mode"; - version = "20140815.1116"; + version = "20140815.1716"; src = fetchFromGitHub { owner = "Malabarba"; repo = "gmail-mode"; @@ -23887,7 +24035,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -23900,7 +24048,7 @@ gmail2bbdb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gmail2bbdb"; - version = "20150909.2139"; + version = "20150910.339"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "gmail2bbdb"; @@ -23908,7 +24056,7 @@ sha256 = "01hhanijqlh741f9wh6xn88qvghwqnfj5j0rvys5mghssfspqs3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -23921,7 +24069,7 @@ gmpl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gmpl-mode"; - version = "20151116.1449"; + version = "20151116.2049"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "gmpl-mode"; @@ -23929,7 +24077,7 @@ sha256 = "08d6j5wws2ngngf3p31ic0lrsrp9i9lkpr3nxgmiiadm617x8hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -23942,7 +24090,7 @@ gnome-calendar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnome-calendar"; - version = "20140112.659"; + version = "20140112.1259"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "gnome-calendar.el"; @@ -23950,7 +24098,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -23963,7 +24111,7 @@ gnomenm = callPackage ({ dash, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }: melpaBuild { pname = "gnomenm"; - version = "20150316.1518"; + version = "20150316.2018"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-nm"; @@ -23971,7 +24119,7 @@ sha256 = "1svnvm9fqqx4mrk9jjn11pzqwk71w8kyyd9wwxam8gz22ykw5jb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnomenm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnomenm"; sha256 = "01vmr64j6hcvdbzg945c5a2g4fiidl18dsk4px7mdf85cv45kzqm"; name = "gnomenm"; }; @@ -23984,7 +24132,7 @@ gntp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gntp"; - version = "20141024.2250"; + version = "20141025.450"; src = fetchFromGitHub { owner = "tekai"; repo = "gntp.el"; @@ -23992,7 +24140,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -24005,7 +24153,7 @@ gnu-apl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnu-apl-mode"; - version = "20160506.40"; + version = "20160506.640"; src = fetchFromGitHub { owner = "lokedhs"; repo = "gnu-apl-mode"; @@ -24013,7 +24161,7 @@ sha256 = "15v14ff1639i3i1rgjh72qgq7r70bdy9li28r3rsrjbaiizyrbs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnu-apl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnu-apl-mode"; sha256 = "0971pzc14gw8f0b4lzvicxww1k3wc58gbr3fd0qvdra2jifk2is6"; name = "gnu-apl-mode"; }; @@ -24026,7 +24174,7 @@ gnuplot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnuplot"; - version = "20141231.1637"; + version = "20141231.2237"; src = fetchFromGitHub { owner = "bruceravel"; repo = "gnuplot-mode"; @@ -24034,7 +24182,7 @@ sha256 = "1gm116479gdwc4hr3nyv1id692dcd1sx7w2a80pvmgr35ybccn7c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -24047,7 +24195,7 @@ gnuplot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnuplot-mode"; - version = "20151123.239"; + version = "20151123.839"; src = fetchFromGitHub { owner = "mkmcc"; repo = "gnuplot-mode"; @@ -24055,7 +24203,7 @@ sha256 = "1pss9a60dh6i277pkp8j5g1v5h7qlh11w2fki50qcp0zglyw1kaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot-mode"; sha256 = "1avpik06cmi4h6v6039c64b4zw1r1nsg3nrryl254gl881pysfxg"; name = "gnuplot-mode"; }; @@ -24068,7 +24216,7 @@ gnus-alias = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-alias"; - version = "20150315.2042"; + version = "20150316.142"; src = fetchFromGitHub { owner = "hexmode"; repo = "gnus-alias"; @@ -24076,7 +24224,7 @@ sha256 = "1i278npayv3kfxxd1ypi9n83q5l402sbc1zkm11pf8g006ifqsp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-alias"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-alias"; sha256 = "0mbq9v8fiqqyldpb66v9bc777mzxywaq2dabivabxjg6554s8chf"; name = "gnus-alias"; }; @@ -24089,7 +24237,7 @@ gnus-desktop-notify = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }: melpaBuild { pname = "gnus-desktop-notify"; - version = "20160210.547"; + version = "20160210.1147"; src = fetchFromGitHub { owner = "wavexx"; repo = "gnus-desktop-notify.el"; @@ -24097,7 +24245,7 @@ sha256 = "1zizmxjf55bkm9agmrym80h2mnyvpc9bamkjy2azs42fqgi9pqjn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-desktop-notify"; sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; @@ -24109,13 +24257,13 @@ }) {}; gnus-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-spotlight"; - version = "20130901.1035"; + version = "20130901.1635"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/gnus-spotlight.el"; sha256 = "1r6bck1hsvk39ccri1h128jj8zd0fh9bsrlp8ijb0v9f6x3cysw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-spotlight"; sha256 = "065jcix6a4mxwq8wc8gkr0x9lxmn6hlvf0rqmhi8hb840km1syjx"; name = "gnus-spotlight"; }; @@ -24128,15 +24276,15 @@ gnus-summary-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gnus-summary-ext"; - version = "20160301.2234"; + version = "20160531.1824"; src = fetchFromGitHub { owner = "vapniks"; repo = "gnus-summary-ext"; - rev = "9c0f410f9d3c94a7b35752a83835c0715ecb45ac"; - sha256 = "0csr5nd8lgn9yzqw1vxrvww8af6nf419ab9zh3y2rc0rr47plz94"; + rev = "189f60abba68b08b92924d5d0df74a5a8c492185"; + sha256 = "0xpmk931jak8323v67dfw7q0y5v031a2pinhmllnml8rbx7n6cbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-summary-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-summary-ext"; sha256 = "0svyz8fy4k9ba6gpdymf4cf8zjjpgm71y48vlybxbv507xjm17qf"; name = "gnus-summary-ext"; }; @@ -24149,7 +24297,7 @@ gnus-x-gm-raw = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "gnus-x-gm-raw"; - version = "20140610.331"; + version = "20140610.931"; src = fetchFromGitHub { owner = "aki2o"; repo = "gnus-x-gm-raw"; @@ -24157,7 +24305,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -24170,7 +24318,7 @@ go = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go"; - version = "20160430.2039"; + version = "20160501.239"; src = fetchFromGitHub { owner = "eschulte"; repo = "el-go"; @@ -24178,7 +24326,7 @@ sha256 = "1i6x7larpqm5h4369pz07353lk0v6gyb5grk52xslmg8w14si52n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go"; sha256 = "1mk1j504xwi3xswc0lfr3czs9j6wcsbrw2halr46mraiy8lnbz6h"; name = "go"; }; @@ -24191,7 +24339,7 @@ go-autocomplete = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-autocomplete"; - version = "20150903.2240"; + version = "20150904.440"; src = fetchFromGitHub { owner = "nsf"; repo = "gocode"; @@ -24199,7 +24347,7 @@ sha256 = "120bdalz29b5lvl0iqg00da194ihrwwbbib8gjga8w5gnnscm6nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -24212,7 +24360,7 @@ go-complete = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-complete"; - version = "20151015.528"; + version = "20151015.1128"; src = fetchFromGitHub { owner = "vibhavp"; repo = "go-complete"; @@ -24220,7 +24368,7 @@ sha256 = "0phy24cra8cza89xrqsx9xrwg98v9qwqx0fzgm1gwlf333zb3hha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-complete"; sha256 = "0dl0ibw145f84kd709r5i2kaw07z1sjzn3dmsiqn8dncspcf2vb4"; name = "go-complete"; }; @@ -24233,7 +24381,7 @@ go-direx = callPackage ({ cl-lib ? null, direx, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-direx"; - version = "20150315.2143"; + version = "20150316.243"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-direx"; @@ -24241,7 +24389,7 @@ sha256 = "09rxz40bkr0l75v3lmf8lcwqsgjiv5c8zjmwzy2d4syj4qv69c5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -24254,7 +24402,7 @@ go-dlv = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-dlv"; - version = "20160517.1646"; + version = "20160517.2246"; src = fetchFromGitHub { owner = "benma"; repo = "go-dlv.el"; @@ -24262,7 +24410,7 @@ sha256 = "0pph99fl3bwws9vr1r8fs411frd04rfdhl87fy2a75cqcpxlhsj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-dlv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-dlv"; sha256 = "13mk7mg2xk7v65r1rs6rmvi4g5nvm8jqg3p9nhk62d46i7dzp61i"; name = "go-dlv"; }; @@ -24275,7 +24423,7 @@ go-eldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-eldoc"; - version = "20160307.916"; + version = "20160307.1516"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-eldoc"; @@ -24283,7 +24431,7 @@ sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -24296,7 +24444,7 @@ go-errcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-errcheck"; - version = "20150828.1435"; + version = "20150828.2035"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-errcheck.el"; @@ -24304,7 +24452,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -24317,7 +24465,7 @@ go-gopath = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-gopath"; - version = "20160311.348"; + version = "20160311.948"; src = fetchFromGitHub { owner = "iced"; repo = "go-gopath"; @@ -24325,7 +24473,7 @@ sha256 = "1hfyxf07m73jf8zca8dna3w828ypvx8a3p70f8nfr5mijy4q3i4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-gopath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-gopath"; sha256 = "0jfy2r3axqpn2cnibp8f9vw36kmx0icixhj6zy43d9xa4znvdqal"; name = "go-gopath"; }; @@ -24338,14 +24486,14 @@ go-guru = callPackage ({ cl-lib ? null, fetchgit, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-guru"; - version = "20160428.1021"; + version = "20160428.1621"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; - sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; + rev = "b41cbfc0fac050e3a416b4f51df202a101cd2aa5"; + sha256 = "1xyvj8bsgdnn8zhzw6w0zracr960six5rsipi89wj6zjh0z9ywxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-guru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-guru"; sha256 = "0c62rvsfqcx2g02iwaga2zp1266w0zhkc73ihpi0iq7cd6nr4wn0"; name = "go-guru"; }; @@ -24358,15 +24506,15 @@ go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-impl"; - version = "20160519.1123"; + version = "20160523.649"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-impl"; - rev = "b6e963bad01c1350eec20e4d399d2c7ccbf6d59d"; - sha256 = "00sgmwvkick6grcqlpyi4a1p3g1w91a77ig7dwhsydgbvws1yfr9"; + rev = "eb80a75ea006c503c09b709e656f94fec24bfb09"; + sha256 = "01j67naqvajhg5ccb5yk4dz7hg6rrc6k9q6ppbm77c0aacjxcr39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-impl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-impl"; sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx"; name = "go-impl"; }; @@ -24379,7 +24527,7 @@ go-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-mode"; - version = "20160512.410"; + version = "20160512.1010"; src = fetchFromGitHub { owner = "dominikh"; repo = "go-mode.el"; @@ -24387,7 +24535,7 @@ sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -24400,7 +24548,7 @@ go-playground = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, gotest, lib, melpaBuild }: melpaBuild { pname = "go-playground"; - version = "20160426.1528"; + version = "20160426.2128"; src = fetchFromGitHub { owner = "grafov"; repo = "go-playground"; @@ -24408,7 +24556,7 @@ sha256 = "16qpxi9d240rdqnqcnbnsqlh2gcy6c9hxwdpdy874akzw7942nc0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-playground"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-playground"; sha256 = "1rabwc80qwkafq833m6a199zfiwwmf0hha89721gc7i0myk9pac6"; name = "go-playground"; }; @@ -24421,7 +24569,7 @@ go-playground-cli = callPackage ({ cl-lib ? null, deferred, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, names, request, s }: melpaBuild { pname = "go-playground-cli"; - version = "20160503.514"; + version = "20160503.1114"; src = fetchFromGitHub { owner = "kosh04"; repo = "emacs-go-playground"; @@ -24429,7 +24577,7 @@ sha256 = "1fcm65r1sy2fmcp2i7mwc7mxqiaf4aaxda4i2qrm8s25cxsffir7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-playground-cli"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-playground-cli"; sha256 = "00h89rh8d7lq1di77nv609xbzxmjmffq6mz3cmagylxncflg81jc"; name = "go-playground-cli"; }; @@ -24442,7 +24590,7 @@ go-projectile = callPackage ({ fetchFromGitHub, fetchurl, go-eldoc, go-guru, go-mode, go-rename, lib, melpaBuild, projectile }: melpaBuild { pname = "go-projectile"; - version = "20160418.1917"; + version = "20160419.117"; src = fetchFromGitHub { owner = "dougm"; repo = "go-projectile"; @@ -24450,7 +24598,7 @@ sha256 = "0010dgkk521pn4cwir5lvkxxzfzzw2nyz1cr5zx1h1ahxvhrzsqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-projectile"; sha256 = "07diik27gr82n11a8k62v1jxq8rhi16f02ybk548f6cn7iqgp2ml"; name = "go-projectile"; }; @@ -24463,14 +24611,14 @@ go-rename = callPackage ({ fetchgit, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-rename"; - version = "20160307.1044"; + version = "20160307.1644"; src = fetchgit { url = "https://go.googlesource.com/tools"; - rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; - sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; + rev = "b41cbfc0fac050e3a416b4f51df202a101cd2aa5"; + sha256 = "1xyvj8bsgdnn8zhzw6w0zracr960six5rsipi89wj6zjh0z9ywxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-rename"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-rename"; sha256 = "1sc3iwxiydgs787a6pi778i0qzqv3bf498r47jwiw5b6mmib3fah"; name = "go-rename"; }; @@ -24483,7 +24631,7 @@ go-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-scratch"; - version = "20150810.40"; + version = "20150810.640"; src = fetchFromGitHub { owner = "shosti"; repo = "go-scratch.el"; @@ -24491,7 +24639,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -24504,7 +24652,7 @@ go-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "go-snippets"; - version = "20151122.157"; + version = "20151122.757"; src = fetchFromGitHub { owner = "toumorokoshi"; repo = "go-snippets"; @@ -24512,7 +24660,7 @@ sha256 = "0di6xwpl6pi0430q208gliz8dgrzwqnmp997q7xcczbkk8zfwn0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-snippets"; sha256 = "1wcbnfzxailv18spxyv4a0nwlqh9l7yf5vxg0qcjcp5ajd2w12kn"; name = "go-snippets"; }; @@ -24525,7 +24673,7 @@ go-stacktracer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "go-stacktracer"; - version = "20150430.1742"; + version = "20150430.2342"; src = fetchFromGitHub { owner = "samertm"; repo = "go-stacktracer.el"; @@ -24533,7 +24681,7 @@ sha256 = "0n5nsyfwx2pdlwx6bl35wrfyady5dwraimv92f58mhc344ajd70y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-stacktracer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-stacktracer"; sha256 = "1laz2ggqydnyr7b36ggb7sphlib79dhp7nszw42wssmv212v94cy"; name = "go-stacktracer"; }; @@ -24546,7 +24694,7 @@ god-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "god-mode"; - version = "20151005.1225"; + version = "20151005.1825"; src = fetchFromGitHub { owner = "chrisdone"; repo = "god-mode"; @@ -24554,7 +24702,7 @@ sha256 = "1am415k4xxcva6y3vbvyvknzc6bma49pq3p85zmpjsdmsp18qdix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/god-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/god-mode"; sha256 = "01xx2byjh6vlckaxamm2x2qzicd9qc8h6amyjg0bxz3932a4llaa"; name = "god-mode"; }; @@ -24567,7 +24715,7 @@ gold-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "gold-mode"; - version = "20140606.2206"; + version = "20140607.406"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "gold-mode-el"; @@ -24575,7 +24723,7 @@ sha256 = "1k4i9z9h4m0h0y92mncr96jir63q5h1bix5bpnlfxhxl5w8pvk1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gold-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gold-mode"; sha256 = "1b67hd1fp6xcj65xxp5jcpdjspxsbzxy26v6lqg5kiy8knls57kf"; name = "gold-mode"; }; @@ -24588,7 +24736,7 @@ golden-ratio = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golden-ratio"; - version = "20150819.720"; + version = "20150819.1320"; src = fetchFromGitHub { owner = "roman"; repo = "golden-ratio.el"; @@ -24596,7 +24744,7 @@ sha256 = "0wdw89n7ngxpcdigv8c01h4i84hsdh0y7xq6jdj1i6mnajl8gk92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -24609,7 +24757,7 @@ golden-ratio-scroll-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golden-ratio-scroll-screen"; - version = "20151211.530"; + version = "20151211.1130"; src = fetchFromGitHub { owner = "jixiuf"; repo = "golden-ratio-scroll-screen"; @@ -24617,7 +24765,7 @@ sha256 = "18a7dv8yshspyq4bi30j0l4ap9qp696syfc29mgvly4xyqh9x4qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio-scroll-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio-scroll-screen"; sha256 = "1ygh104vr65s7frlkzyhrfi6shrbvp2b2j3ynj5dip253v85xki5"; name = "golden-ratio-scroll-screen"; }; @@ -24630,7 +24778,7 @@ golint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "golint"; - version = "20150414.2030"; + version = "20150415.230"; src = fetchFromGitHub { owner = "golang"; repo = "lint"; @@ -24638,7 +24786,7 @@ sha256 = "024dllcmpg8lx78cqgq551i6f9w6qlykfcx8l7yazak9kjwhpwjg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golint"; sha256 = "1q4y6mgll8wyp0c7zx810nzsm0k4wvz0wkly1fbja9z63sjzzxwb"; name = "golint"; }; @@ -24651,7 +24799,7 @@ gom-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gom-mode"; - version = "20131007.2253"; + version = "20131008.453"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-gom-mode"; @@ -24659,7 +24807,7 @@ sha256 = "1anjzlg53kjdqfjcdahbxy8zk9hdha075c1f9nzrnnbbqvmirbbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gom-mode"; sha256 = "07zr38gzqb3ds9mpf94c1vhl1rqd0cjh4g4j2bz86q16c0rnmp7m"; name = "gom-mode"; }; @@ -24672,7 +24820,7 @@ google = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google"; - version = "20140416.1348"; + version = "20140416.1948"; src = fetchFromGitHub { owner = "hober"; repo = "google-el"; @@ -24680,7 +24828,7 @@ sha256 = "06p1dpnmg7lhdff1g7c04qq8f9srgkmnm42jlqy85k87j3p5ys2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google"; sha256 = "11a521cq5bj7afl7bqiilg0c81dy00lnhak7h3d9c9kwg7kfljiq"; name = "google"; }; @@ -24693,7 +24841,7 @@ google-c-style = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-c-style"; - version = "20140929.1418"; + version = "20140929.2018"; src = fetchFromGitHub { owner = "google"; repo = "styleguide"; @@ -24701,7 +24849,7 @@ sha256 = "1ardfwbdxxs2v1rip4vm4hjs2cjxrz8zxch98vv83pbir7561lhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-c-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-c-style"; sha256 = "10gsbg880jbvxs4291vi2ww30ird2f313lbgcb11lswivmhrmd1r"; name = "google-c-style"; }; @@ -24714,7 +24862,7 @@ google-contacts = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2 }: melpaBuild { pname = "google-contacts"; - version = "20160111.511"; + version = "20160111.1111"; src = fetchFromGitHub { owner = "jd"; repo = "google-contacts.el"; @@ -24722,7 +24870,7 @@ sha256 = "1h7nj570drp2l9x6475gwzcjrp75ms8dkixa7qsgszjdk58qyhnb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-contacts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-contacts"; sha256 = "0wgi244zy2am90alimgzazshk2z756bk1hchphssfa4j15n16jgn"; name = "google-contacts"; }; @@ -24735,7 +24883,7 @@ google-maps = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-maps"; - version = "20130412.530"; + version = "20130412.1130"; src = fetchFromGitHub { owner = "jd"; repo = "google-maps.el"; @@ -24743,7 +24891,7 @@ sha256 = "183igr5lp20zcqi7rc01fk76sfxdhksd74i11v16gdsifdkjimd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-maps"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-maps"; sha256 = "0a0wqs3cnlpar2dzdi6h14isw78vgqr2r6psmrzbdl00s4fcyxwx"; name = "google-maps"; }; @@ -24756,7 +24904,7 @@ google-this = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-this"; - version = "20160513.1312"; + version = "20160513.1912"; src = fetchFromGitHub { owner = "Malabarba"; repo = "emacs-google-this"; @@ -24764,7 +24912,7 @@ sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -24777,7 +24925,7 @@ google-translate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "google-translate"; - version = "20160513.1825"; + version = "20160514.25"; src = fetchFromGitHub { owner = "atykhonov"; repo = "google-translate"; @@ -24785,7 +24933,7 @@ sha256 = "1098cmcd8ihvk67l5y5h6w4yfii5cg79yakjjyjh24zwpj5l0gaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -24798,7 +24946,7 @@ goose-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "goose-theme"; - version = "20160401.133"; + version = "20160401.733"; src = fetchFromGitHub { owner = "thwg"; repo = "goose-theme"; @@ -24806,7 +24954,7 @@ sha256 = "1ms5f6imzw5klxi1mqqjxgb02iflvpam8cfxii3ljcr4fz093m4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goose-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goose-theme"; sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; name = "goose-theme"; }; @@ -24819,7 +24967,7 @@ gore-mode = callPackage ({ fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "gore-mode"; - version = "20151123.1427"; + version = "20151123.2027"; src = fetchFromGitHub { owner = "sergey-pashaev"; repo = "gore-mode"; @@ -24827,7 +24975,7 @@ sha256 = "0l022aqpnb38q6kgdqpbxrc1r7fljwl7xq14yi5jb7qgzw2v43cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gore-mode"; sha256 = "0nljybh2pw8pbbajfsz57r11rs4bvzfxmwpbm5qrdn6dzzv65nq3"; name = "gore-mode"; }; @@ -24840,7 +24988,7 @@ gorepl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gorepl-mode"; - version = "20151121.722"; + version = "20151121.1322"; src = fetchFromGitHub { owner = "manute"; repo = "gorepl-mode"; @@ -24848,7 +24996,7 @@ sha256 = "1abb78xxsggawl43hspl0cr0f7i1b3jd9r6xl1nl5jg97i4byg0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gorepl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gorepl-mode"; sha256 = "12h9r4kf9y2v601myhzzdw2c4jc5cb7s94r5dkzriq578digxphl"; name = "gorepl-mode"; }; @@ -24861,7 +25009,7 @@ gotest = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "gotest"; - version = "20160414.425"; + version = "20160414.1025"; src = fetchFromGitHub { owner = "nlamirault"; repo = "gotest.el"; @@ -24869,7 +25017,7 @@ sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -24882,7 +25030,7 @@ gotham-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gotham-theme"; - version = "20160517.855"; + version = "20160517.1455"; src = fetchFromGitHub { owner = "wasamasa"; repo = "gotham-theme"; @@ -24890,7 +25038,7 @@ sha256 = "1ch1acw23y37igy48wlb97q1l2dyjl1a0vazwwakwlmlcfg15l6d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -24902,13 +25050,13 @@ }) {}; goto-chg = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "goto-chg"; - version = "20131228.959"; + version = "20131228.1559"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/goto-chg.el"; sha256 = "078d6p4br5vips7b9x4v6cy0wxf6m5ij9gpqd4g33bryn22gnpij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-chg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-chg"; sha256 = "0fs0fc1mksbb1266sywasl6pppdn1f9a4q9dwycl9zycr588yjyv"; name = "goto-chg"; }; @@ -24921,7 +25069,7 @@ goto-gem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "goto-gem"; - version = "20140729.1445"; + version = "20140729.2045"; src = fetchFromGitHub { owner = "pidu"; repo = "goto-gem"; @@ -24929,7 +25077,7 @@ sha256 = "0j2hdxqfsifm0d8ilwcw7np6mvn4xm58xglzh42gigj2fxv87g99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -24942,7 +25090,7 @@ goto-last-change = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "goto-last-change"; - version = "20150109.1323"; + version = "20150109.1923"; src = fetchFromGitHub { owner = "camdez"; repo = "goto-last-change.el"; @@ -24950,7 +25098,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -24963,15 +25111,15 @@ govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: melpaBuild { pname = "govc"; - version = "20160201.1246"; + version = "20160201.1846"; src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "9051bd6b44125d9472e0c148b5965692ab283d4a"; - sha256 = "0d8vsm6481746j3r446q5wgppnv2kvq522sd9896xvy32avxsrw3"; + rev = "d39fd6858eeb5a8ac81a103063eaccd50c2b3e17"; + sha256 = "0mqhk6jaayjv5jnkkr0sd3nqk9f7asnk5ib6y488l9gs5nfvazrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; @@ -24984,7 +25132,7 @@ govet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "govet"; - version = "20150428.1459"; + version = "20150428.2059"; src = fetchFromGitHub { owner = "meshelton"; repo = "govet"; @@ -24992,7 +25140,7 @@ sha256 = "1fzf43my7qs4n37yh1jm6fyp76dfgknc5g4zin7x5b5lc63g0wxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govet"; sha256 = "1rpgngixf1xnnqf0l2vvh6y9q3395qyj9ln1rh0xz5lm7d4pq4hy"; name = "govet"; }; @@ -25005,7 +25153,7 @@ gplusify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gplusify"; - version = "20150312.1544"; + version = "20150312.2044"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "gplusify"; @@ -25013,7 +25161,7 @@ sha256 = "1l43h008l7n6waclb2km32dy8aj7m5yavm1pkq38p9ppzayfxqq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gplusify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gplusify"; sha256 = "0fgkcvppkq6pba1giddkfxp9z4c8v2cid9nb8a190b3g85wcwycr"; name = "gplusify"; }; @@ -25026,7 +25174,7 @@ gradle-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "gradle-mode"; - version = "20150313.1505"; + version = "20150313.2005"; src = fetchFromGitHub { owner = "jacobono"; repo = "emacs-gradle-mode"; @@ -25034,7 +25182,7 @@ sha256 = "0xs2278gamzg0710bm1fkhjh1p75m2l1jcl98ldhyjhvaf9d0ysc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -25047,7 +25195,7 @@ grails = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grails"; - version = "20160417.236"; + version = "20160417.836"; src = fetchFromGitHub { owner = "lifeisfoo"; repo = "emacs-grails"; @@ -25055,7 +25203,7 @@ sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails"; sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; name = "grails"; }; @@ -25068,7 +25216,7 @@ grails-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grails-mode"; - version = "20160504.511"; + version = "20160504.1111"; src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; @@ -25076,7 +25224,7 @@ sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-mode"; sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; name = "grails-mode"; }; @@ -25089,7 +25237,7 @@ grails-projectile-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "grails-projectile-mode"; - version = "20160327.924"; + version = "20160327.1524"; src = fetchFromGitHub { owner = "yveszoundi"; repo = "grails-projectile-mode"; @@ -25097,7 +25245,7 @@ sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -25110,7 +25258,7 @@ grandshell-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grandshell-theme"; - version = "20150404.801"; + version = "20150404.1401"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "grandshell-theme"; @@ -25118,7 +25266,7 @@ sha256 = "0803j6r447br0nszzcy6pc65l53j871icyr91dd7x10xi7ygw0lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -25131,7 +25279,7 @@ graphene = callPackage ({ company, dash, exec-path-from-shell, fetchFromGitHub, fetchurl, flycheck, graphene-meta-theme, ido-ubiquitous, lib, melpaBuild, ppd-sr-speedbar, smartparens, smex, sr-speedbar, web-mode }: melpaBuild { pname = "graphene"; - version = "20151109.240"; + version = "20151109.840"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "graphene"; @@ -25139,7 +25287,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -25164,7 +25312,7 @@ graphene-meta-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "graphene-meta-theme"; - version = "20151108.500"; + version = "20151108.1100"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "graphene-meta-theme"; @@ -25172,7 +25320,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -25185,7 +25333,7 @@ graphviz-dot-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "graphviz-dot-mode"; - version = "20151127.921"; + version = "20151127.1521"; src = fetchFromGitHub { owner = "ppareit"; repo = "graphviz-dot-mode"; @@ -25193,7 +25341,7 @@ sha256 = "12r6a3hikzqcdbplmraa4p4w136c006yamylxfjf8580v15xngrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -25206,7 +25354,7 @@ grapnel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grapnel"; - version = "20131001.1134"; + version = "20131001.1734"; src = fetchFromGitHub { owner = "leathekd"; repo = "grapnel"; @@ -25214,7 +25362,7 @@ sha256 = "0nvl8mh7jxailisq31h5bi64s9b74ah1465wiwh18x502swr2s3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -25227,14 +25375,14 @@ grass-mode = callPackage ({ cl-lib ? null, dash, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grass-mode"; - version = "20160317.914"; + version = "20160317.1414"; src = fetchhg { url = "https://bitbucket.com/tws/grass-mode.el"; rev = "25414dff1fc5"; sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -25247,7 +25395,7 @@ green-phosphor-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "green-phosphor-theme"; - version = "20150515.1047"; + version = "20150515.1647"; src = fetchFromGitHub { owner = "aalpern"; repo = "emacs-color-theme-green-phosphor"; @@ -25255,7 +25403,7 @@ sha256 = "0rgv96caigcjffg1983274p4ff1icx1xh5bj7rcd53hai5ag16mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/green-phosphor-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/green-phosphor-theme"; sha256 = "1p4l75lahmbjcx74ca5jcyc04828vlcahk7gzv5lr7z9mhvq6fbh"; name = "green-phosphor-theme"; }; @@ -25268,7 +25416,7 @@ gregorio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gregorio-mode"; - version = "20151026.1020"; + version = "20151026.1520"; src = fetchFromGitHub { owner = "cajetanus"; repo = "gregorio-mode.el"; @@ -25276,7 +25424,7 @@ sha256 = "1670pxgmqflzw5d02mzsmqjf3gp0c4wf25z0crmaamyfmwdz9pag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gregorio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gregorio-mode"; sha256 = "0f226l67bqqc6m8wb97m7lkxvwrfbw74b1riasirca1anzjl8jfx"; name = "gregorio-mode"; }; @@ -25289,7 +25437,7 @@ grep-a-lot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grep-a-lot"; - version = "20131006.947"; + version = "20131006.1547"; src = fetchFromGitHub { owner = "ZungBang"; repo = "emacs-grep-a-lot"; @@ -25297,7 +25445,7 @@ sha256 = "1f8262mrlinzgnn4m49hbj1hm3c1mvzza24py4b37sasn49546lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grep-a-lot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grep-a-lot"; sha256 = "1513vnm5b587r15hcbnplgsfv7kv8g5fd0w4nwb6pq7myzv53ra1"; name = "grep-a-lot"; }; @@ -25309,13 +25457,13 @@ }) {}; grep-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "grep-plus"; - version = "20160212.925"; + version = "20160212.1525"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/grep+.el"; sha256 = "08jl4xhh25znyc6cm7288x4b55pykrpcsyym78fdlrw3xxr77cxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grep+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grep+"; sha256 = "1qj4f6d3l88bdcnq825pylnc76m22x2i15yxdhc2b6rv80df7zsx"; name = "grep-plus"; }; @@ -25328,7 +25476,7 @@ greymatters-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "greymatters-theme"; - version = "20150621.723"; + version = "20150621.1323"; src = fetchFromGitHub { owner = "mswift42"; repo = "greymatters-theme"; @@ -25336,7 +25484,7 @@ sha256 = "14c09m9p6556rrf0qfad4zsv7qxa5flamzg6fa83cxh0qfg7wjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/greymatters-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/greymatters-theme"; sha256 = "10cxajyws5rwk62i4vk26c1ih0dq490kcfx7gijw38q3b5r1l8nr"; name = "greymatters-theme"; }; @@ -25348,14 +25496,14 @@ }) {}; grin = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grin"; - version = "20110806.258"; + version = "20110806.858"; src = fetchhg { url = "https://bitbucket.com/dariusp686/emacs-grin"; rev = "f541aa22da52"; sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -25368,7 +25516,7 @@ grizzl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grizzl"; - version = "20160131.251"; + version = "20160131.851"; src = fetchFromGitHub { owner = "grizzl"; repo = "grizzl"; @@ -25376,7 +25524,7 @@ sha256 = "1d2kwiq3zy8wdg5zig0q9rrdcs4xdv6zsgvgc21b3kv83daq1dsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grizzl"; sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; @@ -25389,7 +25537,7 @@ groovy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "groovy-mode"; - version = "20160504.511"; + version = "20160504.1111"; src = fetchFromGitHub { owner = "Groovy-Emacs-Modes"; repo = "groovy-emacs-modes"; @@ -25397,7 +25545,7 @@ sha256 = "1dwj53z4422ks30cqr5rj6x91qf63sjzbmb06sz4ac5pdr1d66q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/groovy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/groovy-mode"; sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; name = "groovy-mode"; }; @@ -25410,7 +25558,7 @@ gruber-darker-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruber-darker-theme"; - version = "20160417.730"; + version = "20160417.1330"; src = fetchFromGitHub { owner = "rexim"; repo = "gruber-darker-theme"; @@ -25418,7 +25566,7 @@ sha256 = "0dn1iscy0vw2bcnh5s675wjnfk9f20i30b8slyffvpzbbi369pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -25431,7 +25579,7 @@ grunt = callPackage ({ ansi-color ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "grunt"; - version = "20160316.1128"; + version = "20160316.1628"; src = fetchFromGitHub { owner = "gempesaw"; repo = "grunt.el"; @@ -25439,7 +25587,7 @@ sha256 = "1xd6gv9bkqnj7j5mcnwvl1mxjmzvxqhp135hxj0ijc0ybdybacf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -25452,7 +25600,7 @@ gruvbox-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gruvbox-theme"; - version = "20160514.958"; + version = "20160514.1558"; src = fetchFromGitHub { owner = "Greduan"; repo = "emacs-theme-gruvbox"; @@ -25460,7 +25608,7 @@ sha256 = "0xa7pnyp0iggaxsfic7gjnbib2c9175cg9d75bml760s18fvnciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruvbox-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruvbox-theme"; sha256 = "042mnwlmixygk2mf24ygk7rkv1rfavc5a36hs9x8b68jnf3khj32"; name = "gruvbox-theme"; }; @@ -25473,7 +25621,7 @@ gs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gs-mode"; - version = "20151202.506"; + version = "20151202.1106"; src = fetchFromGitHub { owner = "yyr"; repo = "emacs-grads"; @@ -25481,7 +25629,7 @@ sha256 = "1d89gxyzv0z0nk7v1aa4qa0xfms2g2dsrr07cw0d99xsnyxfky31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gs-mode"; sha256 = "02ldd92fv1k28nygl34i8gv0b0i1v5qd7nl1l17cf5f3akdwc6iq"; name = "gs-mode"; }; @@ -25494,15 +25642,15 @@ gscholar-bibtex = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gscholar-bibtex"; - version = "20160505.2322"; + version = "20160526.601"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "gscholar-bibtex"; - rev = "31ed907e90b28477a020bf055af6b7003aa7708e"; - sha256 = "0vfqwiiyvpn5m9mxdrm94pcl7jbpffxrjw1i87m66scrwppjjhdb"; + rev = "3d4dbce38d28abd5b3c2f6be8a60a5d45bff4b01"; + sha256 = "15x7zixm9h69qm26mzx6xza9mcdix968nikhfwsr0q5j4s75nlb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -25515,7 +25663,7 @@ guide-key = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin, s }: melpaBuild { pname = "guide-key"; - version = "20150108.135"; + version = "20150108.735"; src = fetchFromGitHub { owner = "kai2nenobu"; repo = "guide-key"; @@ -25523,7 +25671,7 @@ sha256 = "14sx5m6fpkm2q8ljkicl1yy1sw003k4rzz9hi7lm1nfqr2l4n6q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -25536,7 +25684,7 @@ guide-key-tip = callPackage ({ fetchFromGitHub, fetchurl, guide-key, lib, melpaBuild, pos-tip }: melpaBuild { pname = "guide-key-tip"; - version = "20140406.2120"; + version = "20140407.320"; src = fetchFromGitHub { owner = "aki2o"; repo = "guide-key-tip"; @@ -25544,7 +25692,7 @@ sha256 = "1s6p4ysdbqx5fk68s317ckj5rjmpkwwb0324sbqqa6byhw3j0xyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -25557,7 +25705,7 @@ guru-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "guru-mode"; - version = "20160415.2221"; + version = "20160416.421"; src = fetchFromGitHub { owner = "bbatsov"; repo = "guru-mode"; @@ -25565,7 +25713,7 @@ sha256 = "1jymhjjpn600svd5jbj42m3vnpaza838zby507ynbwc95nja29vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -25578,7 +25726,7 @@ gvpr-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "gvpr-mode"; - version = "20131208.1218"; + version = "20131208.1818"; src = fetchFromGitHub { owner = "rodw"; repo = "gvpr-lib"; @@ -25586,7 +25734,7 @@ sha256 = "0060qw4gr9fv6db20xf3spgl2fwg2iid5ckfjm3vj3ydyv62q13s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gvpr-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gvpr-mode"; sha256 = "19p6f06qdjvh2vmgbabajvkfxpn13j899jrivw9mqyssz0cyvzgw"; name = "gvpr-mode"; }; @@ -25599,7 +25747,7 @@ hackernews = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hackernews"; - version = "20160326.1025"; + version = "20160326.1525"; src = fetchFromGitHub { owner = "clarete"; repo = "hackernews.el"; @@ -25607,7 +25755,7 @@ sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -25620,7 +25768,7 @@ ham-mode = callPackage ({ fetchFromGitHub, fetchurl, html-to-markdown, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "ham-mode"; - version = "20150811.906"; + version = "20150811.1506"; src = fetchFromGitHub { owner = "Malabarba"; repo = "ham-mode"; @@ -25628,7 +25776,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -25641,7 +25789,7 @@ hamburg-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hamburg-theme"; - version = "20160123.240"; + version = "20160123.840"; src = fetchFromGitHub { owner = "mswift42"; repo = "hamburg-theme"; @@ -25649,7 +25797,7 @@ sha256 = "1rnkzl51h263nck1bd0jyb7q58b54d764gcsh7wqxfgzs1jfr4am"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hamburg-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hamburg-theme"; sha256 = "149ln7670kjyhdfj5j9akxch47dlff2hd58amla7j3297z1nhg4k"; name = "hamburg-theme"; }; @@ -25662,7 +25810,7 @@ haml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "haml-mode"; - version = "20150508.2311"; + version = "20150509.511"; src = fetchFromGitHub { owner = "nex3"; repo = "haml-mode"; @@ -25670,7 +25818,7 @@ sha256 = "0fmcm4pcivigz9xhf7z9wsxz9pg1yfx9qv8na2dxj426bibk0a6w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -25683,7 +25831,7 @@ hamlet-mode = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "hamlet-mode"; - version = "20131208.224"; + version = "20131208.824"; src = fetchFromGitHub { owner = "lightquake"; repo = "hamlet-mode"; @@ -25691,7 +25839,7 @@ sha256 = "1njrpb1s2v9skyfbgb28clrxyvyp8i4b8kwa68ynvq3vjb4fnws6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hamlet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hamlet-mode"; sha256 = "0ils4w8ry1inlfj4931ypibj3n60xq6ah74hig62y4vrs4d47gyx"; name = "hamlet-mode"; }; @@ -25704,7 +25852,7 @@ handlebars-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handlebars-mode"; - version = "20150211.1249"; + version = "20150211.1849"; src = fetchFromGitHub { owner = "danielevans"; repo = "handlebars-mode"; @@ -25712,7 +25860,7 @@ sha256 = "0w443knp6kvjm2m79cni5d17plyhbsl0a4kip7yrpv5nmg370q3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handlebars-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handlebars-mode"; sha256 = "11ahrm4n588v7ir2r7sp4dkbypl5nhnr22px849hdxjcrwal24vj"; name = "handlebars-mode"; }; @@ -25725,7 +25873,7 @@ handlebars-sgml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handlebars-sgml-mode"; - version = "20130623.1933"; + version = "20130624.133"; src = fetchFromGitHub { owner = "jacott"; repo = "handlebars-sgml-mode"; @@ -25733,7 +25881,7 @@ sha256 = "1z37di9vk1l35my8kl8jnyqlkr1rnp0iz13hpc0r065mib67v58k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handlebars-sgml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handlebars-sgml-mode"; sha256 = "10sxm7v94yxa92mqbwj3shqjs6f3zbxjvwgbvg9m2fh3b7xj617w"; name = "handlebars-sgml-mode"; }; @@ -25746,7 +25894,7 @@ handoff = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "handoff"; - version = "20150917.200"; + version = "20150917.800"; src = fetchFromGitHub { owner = "rejeep"; repo = "handoff.el"; @@ -25754,7 +25902,7 @@ sha256 = "0whn8rc98dhncgizzrb22nx6b6cm655q1cf2fpn6g3knq1c2471r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/handoff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/handoff"; sha256 = "0iqqvygx50wi2vcbs6bfgqzhcz9a89zrwb7sg0ang9qrkiz5k36w"; name = "handoff"; }; @@ -25767,7 +25915,7 @@ hardcore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hardcore-mode"; - version = "20151114.201"; + version = "20151114.801"; src = fetchFromGitHub { owner = "magnars"; repo = "hardcore-mode.el"; @@ -25775,7 +25923,7 @@ sha256 = "124k803pgxc7fz325yy6jcyam69f5fk9kdwfgmnwwca9ablq4cfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -25788,7 +25936,7 @@ hardhat = callPackage ({ fetchFromGitHub, fetchurl, ignoramus, lib, melpaBuild }: melpaBuild { pname = "hardhat"; - version = "20160414.1013"; + version = "20160414.1613"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hardhat"; @@ -25796,7 +25944,7 @@ sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -25809,15 +25957,15 @@ harvest = callPackage ({ fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, s, swiper }: melpaBuild { pname = "harvest"; - version = "20160405.1243"; + version = "20160405.1843"; src = fetchFromGitHub { owner = "kostajh"; repo = "harvest.el"; - rev = "016d04b63023b083b9d2deb61612fe7336713a17"; - sha256 = "1nswlbw4x461zksjcy2kllgiz8h270iyk44bls3m3l9y2nx82fxm"; + rev = "aff6330812ba7f4572b546690893b7f4ff2551bd"; + sha256 = "0vachg3zqnm47x4gpdy4lb453pkmi7gjps4vpw5mx6c96il3c1xp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/harvest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/harvest"; sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; name = "harvest"; }; @@ -25830,7 +25978,7 @@ haskell-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs"; - version = "20160223.650"; + version = "20160223.1250"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25838,7 +25986,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -25851,7 +25999,7 @@ haskell-emacs-base = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs-base"; - version = "20150714.1159"; + version = "20150714.1759"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25859,7 +26007,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -25872,7 +26020,7 @@ haskell-emacs-text = callPackage ({ fetchFromGitHub, fetchurl, haskell-emacs, lib, melpaBuild }: melpaBuild { pname = "haskell-emacs-text"; - version = "20150713.1016"; + version = "20150713.1616"; src = fetchFromGitHub { owner = "knupfer"; repo = "haskell-emacs"; @@ -25880,7 +26028,7 @@ sha256 = "114qg91mb53ib7alnn1i9wjcr4psqps6ncpyqyklllmbdm0q660n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -25893,15 +26041,15 @@ haskell-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-mode"; - version = "20160520.841"; + version = "20160603.547"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-mode"; - rev = "995d85f0a18a382b3fab3dcb78af0d676c6f7bcc"; - sha256 = "0ml96s3qk40h941i22qihygf6b116k8myadwdr5pzc51vwngh2q7"; + rev = "cd820dcfab6a09bb7cfe88b38d75b8a3a0bcdb9f"; + sha256 = "096hg88ld70zls94nnva038fr8rfw1mksal746hm47c1159nkn2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -25914,7 +26062,7 @@ haskell-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "haskell-snippets"; - version = "20160121.1758"; + version = "20160121.2358"; src = fetchFromGitHub { owner = "haskell"; repo = "haskell-snippets"; @@ -25922,7 +26070,7 @@ sha256 = "1wha5f2zx5hr6y0wvpmkg7jnxcgbzx99gd70h96c3dqqqhqz6d2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -25935,14 +26083,14 @@ haskell-tab-indent = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haskell-tab-indent"; - version = "20151205.1459"; + version = "20151205.2059"; src = fetchgit { url = "https://git.spwhitton.name/haskell-tab-indent"; rev = "150f52176242ba3bc4f58179cd2dbee4d89580f4"; sha256 = "0hfq8wpnyz5sqhkr53smw0k1wi7mb5k215xnvywkh5lhsq8cjhby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -25955,7 +26103,7 @@ haste = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "haste"; - version = "20141030.1634"; + version = "20141030.2134"; src = fetchFromGitHub { owner = "rlister"; repo = "emacs-haste-client"; @@ -25963,7 +26111,7 @@ sha256 = "1gmh455ahd9if11f8mrqbfky24c784bb4fgdl3pj8i0n5sl51i88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haste"; sha256 = "0wz15p58g4mxvwbpy9k60gixs1g4jw7pay5pbxnlggc39x1py8nf"; name = "haste"; }; @@ -25976,14 +26124,14 @@ haxe-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haxe-mode"; - version = "20131004.442"; + version = "20131004.1042"; src = fetchhg { url = "https://bitbucket.com/jpsecher/haxe-mode"; rev = "850f29d9f70e"; sha256 = "106a7kpjj4laxl7x8aqpv75ih54569b3bs2a1b8z4rghmikqc4aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxe-mode"; sha256 = "032h0nxlsrk30bsqb02by842ycrw1qscpfprifjjkaiq08wigh1l"; name = "haxe-mode"; }; @@ -25996,15 +26144,15 @@ haxor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haxor-mode"; - version = "20160111.1500"; + version = "20160529.2029"; src = fetchFromGitHub { owner = "krzysztof-magosa"; repo = "haxor-mode"; - rev = "2c5537bc50d35414b66cc5fad0d8ec90e085be78"; - sha256 = "1si5r86zvnp4wbzvvqyc4zhap14k8pcq5nqigx45mgvpdnwdvzln"; + rev = "c4d0a28bf090966610257ac2ce98d53211de1ecb"; + sha256 = "0905vb0ars2qqml0m3ny88klxsa7jinan4bqxsd06plll2gl7ivw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -26017,7 +26165,7 @@ hayoo = callPackage ({ emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "hayoo"; - version = "20140831.821"; + version = "20140831.1421"; src = fetchFromGitHub { owner = "benma"; repo = "hayoo.el"; @@ -26025,7 +26173,7 @@ sha256 = "0pjxyhh8a02i54a9jsqr8p1mcqfl6k9b8gv9lnzb242gy4518y3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hayoo"; sha256 = "1rqvnv5nxlsyvsa5my1wpfm82sw21s7kfbg80vrjmxh0mwlyv4p9"; name = "hayoo"; }; @@ -26038,7 +26186,7 @@ hc-zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hc-zenburn-theme"; - version = "20150928.1233"; + version = "20150928.1833"; src = fetchFromGitHub { owner = "edran"; repo = "hc-zenburn-emacs"; @@ -26046,7 +26194,7 @@ sha256 = "0rgcj47h7a67qkw6696pcm1a4g4ryx8nrz55s69fw86958fp08hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hc-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hc-zenburn-theme"; sha256 = "0jcddk9ppgcizyyciabj3sgk1pmingl97knf9nmr0mi89h7n2g5y"; name = "hc-zenburn-theme"; }; @@ -26059,7 +26207,7 @@ hcl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hcl-mode"; - version = "20160502.2000"; + version = "20160503.200"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-hcl-mode"; @@ -26067,7 +26215,7 @@ sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; @@ -26079,13 +26227,13 @@ }) {}; header2 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "header2"; - version = "20151231.1626"; + version = "20151231.2226"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/header2.el"; sha256 = "00j74cqdnaf5rl7w4wabm4z88cm20s152y0yxnv73z9pvqbknrmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/header2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/header2"; sha256 = "1dg25krx3wxma2l5vb2ji7rpfp17qbrl62jyjpa52cjfsvyp6v06"; name = "header2"; }; @@ -26098,7 +26246,7 @@ headlong = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "headlong"; - version = "20150417.1126"; + version = "20150417.1726"; src = fetchFromGitHub { owner = "abo-abo"; repo = "headlong"; @@ -26106,7 +26254,7 @@ sha256 = "06hq6p6a4fzprbj4r885vsvzddlvx0wxqk5kik06v5bm7hjmnyrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/headlong"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/headlong"; sha256 = "042ybplkqjb30qf5cpbw5d91j1rdc71b789v277h036bri7hgxz6"; name = "headlong"; }; @@ -26119,15 +26267,15 @@ helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "20160521.1234"; + version = "20160604.730"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "439f538d3c87a37d6a693683a52cf39de3c5bdcf"; - sha256 = "0ivf2imrsxfyh8vc8c36c67c8470f3wzs62rbw7628ms2g7mwzmf"; + rev = "c9cdcc316297c3e34ea214044af0b0f643adf239"; + sha256 = "1lsf5mq37xvfshx6lgzpbvv8378mbsr5rdlq6vrrb498x28nhiv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -26140,7 +26288,7 @@ helm-R = callPackage ({ ess, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-R"; - version = "20120819.2014"; + version = "20120820.214"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-R.el"; @@ -26148,7 +26296,7 @@ sha256 = "0nip0zrmn944wy0x2dc5ryr0m7a948rn2a8cbaajghs7a7zai4cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-R"; sha256 = "0zq9f2xhgap3ihnrlsrsaxaz0nx014k0820bfsq7lckwcnm0mng1"; name = "helm-R"; }; @@ -26161,7 +26309,7 @@ helm-ack = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ack"; - version = "20141030.826"; + version = "20141030.1326"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ack"; @@ -26169,7 +26317,7 @@ sha256 = "04rvbafa77blps7x7cmlsciys8fgmvhfhq4v51pk8z5q3j1lrgc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -26182,7 +26330,7 @@ helm-ad = callPackage ({ dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ad"; - version = "20151209.515"; + version = "20151209.1115"; src = fetchFromGitHub { owner = "tnoda"; repo = "helm-ad"; @@ -26190,7 +26338,7 @@ sha256 = "0hxfgdn56c7qr64r59g9hvxxwa4mw0ad9c9m0z5cj85bsdd7rlx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ad"; sha256 = "0h2zjfj9hy7bkpmmjjs0a4a06asbw0yww8mw9rk2xi1gc2aqq4hi"; name = "helm-ad"; }; @@ -26203,15 +26351,15 @@ helm-ag = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag"; - version = "20160515.943"; + version = "20160527.1654"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ag"; - rev = "3d450c8a33612035736d0eb513afec517245a636"; - sha256 = "0ybxjvhzpsg8k9j1315ls6xa3pqysm5xabn94xla99hc0n98mpw4"; + rev = "a67c887b0128fd00ada27cc5e42cd5df77dc2cde"; + sha256 = "0hajmc2imlp1srx6jj0b9r9fb4ivqv48vxbhx5ddpcpww21ifxj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; @@ -26224,7 +26372,7 @@ helm-ag-r = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ag-r"; - version = "20131123.1031"; + version = "20131123.1631"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "helm-ag-r"; @@ -26232,7 +26380,7 @@ sha256 = "1rifdkhzvf7xd2npban0i8v3rjcji69063dw9rs1d32w4n7fzlfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag-r"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag-r"; sha256 = "0ivh7f021lbmbaj6gs4y8m99s63js57w04q7cwx7v4i32cpas7r9"; name = "helm-ag-r"; }; @@ -26245,7 +26393,7 @@ helm-anything = callPackage ({ anything, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-anything"; - version = "20141126.531"; + version = "20141126.1131"; src = fetchFromGitHub { owner = "rubikitch"; repo = "helm-anything"; @@ -26253,7 +26401,7 @@ sha256 = "153zq1q3s3ihjh15wyci9qdic3pin8f1j1gq2qlzyhmy0njlvgjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-anything"; sha256 = "0yjlwsiahb7n4q3522d68xrdb8caad9gpnglz5php245yqy3n5vx"; name = "helm-anything"; }; @@ -26266,7 +26414,7 @@ helm-aws = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-aws"; - version = "20151124.433"; + version = "20151124.1033"; src = fetchFromGitHub { owner = "istib"; repo = "helm-aws"; @@ -26274,7 +26422,7 @@ sha256 = "1bnypr906gfc1fbyrqfsfilsl6wiacrnhr8flpa0gmdjhvmrw7af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -26287,7 +26435,7 @@ helm-backup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-backup"; - version = "20151213.1347"; + version = "20151213.1947"; src = fetchFromGitHub { owner = "antham"; repo = "helm-backup"; @@ -26295,7 +26443,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -26308,7 +26456,7 @@ helm-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, parsebib, s }: melpaBuild { pname = "helm-bibtex"; - version = "20160422.1900"; + version = "20160423.100"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; @@ -26316,7 +26464,7 @@ sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bibtex"; sha256 = "037pqgyyb2grg88yfxx1r8yp4lrgz2fyzz9fbbp34l8s6vk3cp4z"; name = "helm-bibtex"; }; @@ -26329,7 +26477,7 @@ helm-bibtexkey = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bibtexkey"; - version = "20140214.1004"; + version = "20140214.1604"; src = fetchFromGitHub { owner = "kenbeese"; repo = "helm-bibtexkey"; @@ -26337,7 +26485,7 @@ sha256 = "10k7hjfz9jmfpbmsv20jy9vr6fqxx1yp8v115hprqvw057iifsl9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bibtexkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bibtexkey"; sha256 = "00i7ni4r73mmxavhfcm0fd7jhx6gxvxx7prax1yxmhs46fpz8jwj"; name = "helm-bibtexkey"; }; @@ -26350,7 +26498,7 @@ helm-bind-key = callPackage ({ bind-key, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bind-key"; - version = "20141109.15"; + version = "20141109.615"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-bind-key.el"; @@ -26358,7 +26506,7 @@ sha256 = "1wmcy7q4ys2sf8ya5l4n7a6bq5m9d6m19amjfwkmkh4ajkwl041y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bind-key"; sha256 = "1yfj6mmxc165in1i85ccanssch6bg19ib1fcm7sa4i4hv0mgwaid"; name = "helm-bind-key"; }; @@ -26371,7 +26519,7 @@ helm-bm = callPackage ({ bm, cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-bm"; - version = "20160321.931"; + version = "20160321.1431"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-bm"; @@ -26379,7 +26527,7 @@ sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; @@ -26392,7 +26540,7 @@ helm-bundle-show = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-bundle-show"; - version = "20151221.730"; + version = "20151221.1330"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-bundle-show"; @@ -26400,7 +26548,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -26413,7 +26561,7 @@ helm-c-moccur = callPackage ({ color-moccur, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-c-moccur"; - version = "20151230.424"; + version = "20151230.1024"; src = fetchFromGitHub { owner = "myuhe"; repo = "helm-c-moccur.el"; @@ -26421,7 +26569,7 @@ sha256 = "0w4svbg32y63v049plvk7djc1m2amjzrr1v979d9s6jbnnpzlb5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-moccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-moccur"; sha256 = "1i6a4jqjy9amlhdbj5d26wzagndfgszha09vs5qf4760vjl7kn4b"; name = "helm-c-moccur"; }; @@ -26434,7 +26582,7 @@ helm-c-yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, yasnippet }: melpaBuild { pname = "helm-c-yasnippet"; - version = "20151231.310"; + version = "20151231.910"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-c-yasnippet"; @@ -26442,7 +26590,7 @@ sha256 = "03c4w34r0q7xpz1ny8dya8f96rhjpc9r2c24n7vg9x6x4i2wl204"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -26455,7 +26603,7 @@ helm-chrome = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-chrome"; - version = "20151222.2058"; + version = "20151223.258"; src = fetchFromGitHub { owner = "kawabata"; repo = "helm-chrome"; @@ -26463,7 +26611,7 @@ sha256 = "0wkskm0d1mvh49l65xg6pgwd7yxy02llflkzx59ayqv4wjvsyayb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-chrome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-chrome"; sha256 = "0p3n2pna83mp4ym8x69lk4r3q4apbj5v2blg2mwcsd9zij153nxz"; name = "helm-chrome"; }; @@ -26476,7 +26624,7 @@ helm-chronos = callPackage ({ chronos, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-chronos"; - version = "20150528.1636"; + version = "20150528.2236"; src = fetchFromGitHub { owner = "dxknight"; repo = "helm-chronos"; @@ -26484,7 +26632,7 @@ sha256 = "1dmj4f8pris1i7wvfplp4dbnyfm403l6rplxfrfi0cd9afg7m68i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-chronos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-chronos"; sha256 = "1a65b680741cx4cyyizyl2c3bss36x3j2m9sh9hjc87xrzarg0s3"; name = "helm-chronos"; }; @@ -26497,7 +26645,7 @@ helm-cider-history = callPackage ({ cider, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-cider-history"; - version = "20150719.1720"; + version = "20150719.2320"; src = fetchFromGitHub { owner = "Kungi"; repo = "helm-cider-history"; @@ -26505,7 +26653,7 @@ sha256 = "18j4ikb3q8ygdq74zqzm83wgb39x7w209n3186mm051n8lfmkaif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cider-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cider-history"; sha256 = "12l8jyl743zqk8m2xzcz75y1ybdkbkvcbvfkn1k88k09s31kdq4h"; name = "helm-cider-history"; }; @@ -26518,7 +26666,7 @@ helm-circe = callPackage ({ circe, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-circe"; - version = "20160207.152"; + version = "20160207.752"; src = fetchFromGitHub { owner = "lesharris"; repo = "helm-circe"; @@ -26526,7 +26674,7 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -26539,7 +26687,7 @@ helm-clojuredocs = callPackage ({ edn, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-clojuredocs"; - version = "20160405.323"; + version = "20160405.923"; src = fetchFromGitHub { owner = "mbuczko"; repo = "helm-clojuredocs"; @@ -26547,7 +26695,7 @@ sha256 = "015b8zxh91ljhqvn6z43gy08di54xcw9skw0i7frj3d7gk984qhl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-clojuredocs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-clojuredocs"; sha256 = "0yz0wlyay9286by8i30gs3ispswq8ayqlcnna1s7bgspjvb7scmk"; name = "helm-clojuredocs"; }; @@ -26560,7 +26708,7 @@ helm-cmd-t = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-cmd-t"; - version = "20150823.1457"; + version = "20150823.2057"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-cmd-t"; @@ -26568,7 +26716,7 @@ sha256 = "10cp21v8vwgp8hv2rkdn9x8v2n8wqbphgslb561rlwc2rfpvzqvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cmd-t"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cmd-t"; sha256 = "1w870ldq029wgicgv4cqm31zw2i8vkap3m9hsr9d0i3gv2virnc6"; name = "helm-cmd-t"; }; @@ -26581,7 +26729,7 @@ helm-codesearch = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-codesearch"; - version = "20160123.613"; + version = "20160123.1213"; src = fetchFromGitHub { owner = "youngker"; repo = "helm-codesearch.el"; @@ -26589,7 +26737,7 @@ sha256 = "05nvbwz3inbmfj88am69sz032wsj8jkfpjk5drgfijw98il9blk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-codesearch"; sha256 = "1v21zwcyx73bc1lcfk60v8xim31bwdk4p06g9i4qag3cijdlli9q"; name = "helm-codesearch"; }; @@ -26602,7 +26750,7 @@ helm-commandlinefu = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, json ? null, let-alist, lib, melpaBuild }: melpaBuild { pname = "helm-commandlinefu"; - version = "20150611.145"; + version = "20150611.745"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-commandlinefu"; @@ -26610,7 +26758,7 @@ sha256 = "0fxrmvb64lav4aqs61z3a4d2mcp9s2nw7fvysyjn0r1291pkzk9j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -26623,7 +26771,7 @@ helm-company = callPackage ({ company, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-company"; - version = "20160517.158"; + version = "20160517.758"; src = fetchFromGitHub { owner = "manuel-uberti"; repo = "helm-company"; @@ -26631,7 +26779,7 @@ sha256 = "0kbm8w1hxff0nb8pyjnq2l43ra1m0ywzjvvqs0lncji5zqirvp8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-company"; sha256 = "1pbsg7zrz447siwd8pasw2hz5z21wa1xpqs5nrylhbghsk076ld3"; name = "helm-company"; }; @@ -26644,15 +26792,15 @@ helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "20160522.637"; + version = "20160601.2214"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "439f538d3c87a37d6a693683a52cf39de3c5bdcf"; - sha256 = "0ivf2imrsxfyh8vc8c36c67c8470f3wzs62rbw7628ms2g7mwzmf"; + rev = "c9cdcc316297c3e34ea214044af0b0f643adf239"; + sha256 = "1lsf5mq37xvfshx6lgzpbvv8378mbsr5rdlq6vrrb498x28nhiv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -26665,7 +26813,7 @@ helm-cscope = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, xcscope }: melpaBuild { pname = "helm-cscope"; - version = "20150609.949"; + version = "20150609.1549"; src = fetchFromGitHub { owner = "alpha22jp"; repo = "helm-cscope.el"; @@ -26673,7 +26821,7 @@ sha256 = "0nhi8xhcf7qpsibpyy5v364xx7lqkhskzai7awkg0xcdq8b5090x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -26686,7 +26834,7 @@ helm-css-scss = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-css-scss"; - version = "20140626.2025"; + version = "20140627.225"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "helm-css-scss"; @@ -26694,7 +26842,7 @@ sha256 = "01a3pahpsxb7d15dkfgxypl7gzqb4dy4f36lmid1w77b9rhs6nph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-css-scss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-css-scss"; sha256 = "0iflwl0rijbkx1b7i1s7984dw7sz1wa1cb74fqij0kcn76kal7ak"; name = "helm-css-scss"; }; @@ -26707,7 +26855,7 @@ helm-ctest = callPackage ({ dash, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, s }: melpaBuild { pname = "helm-ctest"; - version = "20150823.708"; + version = "20150823.1308"; src = fetchFromGitHub { owner = "danlamanna"; repo = "helm-ctest"; @@ -26715,7 +26863,7 @@ sha256 = "18d96alik66nw3rkk7k8740b4rx2bnh3pwn27ahpgj5yf51wm0ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ctest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ctest"; sha256 = "1mphc9fsclbw19p5i1xf52qg6ljljbajvbcsl95hisrnvhg89vpm"; name = "helm-ctest"; }; @@ -26728,7 +26876,7 @@ helm-dash = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dash"; - version = "20160416.2008"; + version = "20160417.208"; src = fetchFromGitHub { owner = "areina"; repo = "helm-dash"; @@ -26736,7 +26884,7 @@ sha256 = "03h9p3z6n9mi6hld86i6wj01glx4p058iifygrph0vvzczisixcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -26749,7 +26897,7 @@ helm-descbinds = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-descbinds"; - version = "20160108.2247"; + version = "20160109.447"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-descbinds"; @@ -26757,7 +26905,7 @@ sha256 = "0y0xxs67bzh6j68j3f4zxzrl2ij5g1qvvxqklw7nz305xliis29g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -26770,7 +26918,7 @@ helm-describe-modes = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-describe-modes"; - version = "20160212.18"; + version = "20160212.618"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-describe-modes"; @@ -26778,7 +26926,7 @@ sha256 = "0li9bi1lm5ldwfpvzahxp7hyfd94jr1kl43rprx0myxb016yk2p5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-describe-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-describe-modes"; sha256 = "0ajy9kwspm8rzafl0df57fad5867s86yjqj29shznqb12r91lpqb"; name = "helm-describe-modes"; }; @@ -26791,15 +26939,15 @@ helm-dictionary = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dictionary"; - version = "20160408.1245"; + version = "20160601.1748"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-dictionary"; - rev = "d6839ff60da6e5c6936a1f59e48f0ded13dda0b0"; - sha256 = "0v5n46vkbhzsasz41dsllpmkn71y124zz9ycpdql4wsl3mlkhlcs"; + rev = "956bb84558cbcea52f1ce73866e1c5776d145723"; + sha256 = "1pb7jnpddy00bmsh5lcr1hxlkfmn4xbi3s7vj47m1vn0wf3gcxpa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dictionary"; sha256 = "1pak8qn0qvbzyclhzvr5ka3pl370i4kiykypfkwbfgvqqwczhl3n"; name = "helm-dictionary"; }; @@ -26812,7 +26960,7 @@ helm-dired-recent-dirs = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-dired-recent-dirs"; - version = "20131228.914"; + version = "20131228.1514"; src = fetchFromGitHub { owner = "akisute3"; repo = "helm-dired-recent-dirs"; @@ -26820,7 +26968,7 @@ sha256 = "14sifdrfg8ydvi9mj8qm2bfphbffglxrkb5ky4q5b3j96bn8v110"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dired-recent-dirs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dired-recent-dirs"; sha256 = "0kh0n5674ksswjzi9gji2qmx8v8g0axx8xbi0m3zby9nwcpv4qzs"; name = "helm-dired-recent-dirs"; }; @@ -26833,7 +26981,7 @@ helm-dirset = callPackage ({ cl-lib ? null, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-dirset"; - version = "20151208.1912"; + version = "20151209.112"; src = fetchFromGitHub { owner = "k1LoW"; repo = "helm-dirset"; @@ -26841,7 +26989,7 @@ sha256 = "183vj5yi575aqkak19hl8k4mw38r0ki9p1fnpa8nny2srjyy34yb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dirset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dirset"; sha256 = "0vng52axp7r01s00cqbbclbm5bx1qbhmlrx9h9kj7smx1al4daml"; name = "helm-dirset"; }; @@ -26854,7 +27002,7 @@ helm-emmet = callPackage ({ emmet-mode, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-emmet"; - version = "20131014.229"; + version = "20131014.829"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-emmet"; @@ -26862,7 +27010,7 @@ sha256 = "0c3mn5w98phsv7gsljyp5vxxmr2w6n3nczh5zm4hcpwsra3wh1v9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-emmet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-emmet"; sha256 = "1dkn9qa3dv2im11lm19wfh5jwwwp42sv7jc0p6qg35rhzwdpfg03"; name = "helm-emmet"; }; @@ -26875,7 +27023,7 @@ helm-emms = callPackage ({ cl-lib ? null, emacs, emms, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-emms"; - version = "20151001.1628"; + version = "20151001.2228"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-emms"; @@ -26883,7 +27031,7 @@ sha256 = "0330s07b41nw9q32xhjdl7yw83p8ikj6b2qkir3y0jyx16gk10dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-emms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-emms"; sha256 = "1vq7cxnacmhyczsa4s5h1nnzc08m66harfnxsqxyrdsnggv9hbf5"; name = "helm-emms"; }; @@ -26896,7 +27044,7 @@ helm-filesets = callPackage ({ fetchFromGitHub, fetchurl, filesets-plus, helm, lib, melpaBuild }: melpaBuild { pname = "helm-filesets"; - version = "20140929.1435"; + version = "20140929.2035"; src = fetchFromGitHub { owner = "gcla"; repo = "helm-filesets"; @@ -26904,7 +27052,7 @@ sha256 = "00yhmpv5xjlw1gwbcrznz83gkaby8zlqv74d3p7plca2cwjll1g9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-filesets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-filesets"; sha256 = "1yhhchksi0r4r5c5q1mggz2hykkvk93baq91b5hkaflqi30d1v8f"; name = "helm-filesets"; }; @@ -26917,15 +27065,15 @@ helm-firefox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-firefox"; - version = "20160419.858"; + version = "20160604.952"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-firefox"; - rev = "c6880653face6b6a033558c97ff038168cf991c2"; - sha256 = "04zvpdb6hrkss6mvvl2676b8blvykf6w6ks03ljrfb7sdw9d17ll"; + rev = "f196980c047800ef6650f880e26e0b7c29278a20"; + sha256 = "0xl2nakprgjf65haa0xn0jkh69skmbp3k6q1bamvqijgvra9waa0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -26938,7 +27086,7 @@ helm-flx = callPackage ({ emacs, fetchFromGitHub, fetchurl, flx, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flx"; - version = "20160227.1952"; + version = "20160228.152"; src = fetchFromGitHub { owner = "PythonNut"; repo = "helm-flx"; @@ -26946,7 +27094,7 @@ sha256 = "0mrck7qbqjqz5kpih3zb1yn2chjgv5ghrqc5cp80kmsmxasvk8zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flx"; sha256 = "03vxr5f5m4s6k6rm0976w8h3s4c3b5mrdqgmkd281hmyh9q3cslq"; name = "helm-flx"; }; @@ -26959,7 +27107,7 @@ helm-flycheck = callPackage ({ dash, fetchFromGitHub, fetchurl, flycheck, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flycheck"; - version = "20160319.217"; + version = "20160319.717"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-flycheck"; @@ -26967,7 +27115,7 @@ sha256 = "062s08k8v657fpkqvdspv32awvj7dq929ks27w29k3kbzlqlrihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; @@ -26980,7 +27128,7 @@ helm-flymake = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flymake"; - version = "20130717.144"; + version = "20130717.744"; src = fetchFromGitHub { owner = "tam17aki"; repo = "helm-flymake"; @@ -26988,7 +27136,7 @@ sha256 = "1liaid4l4x8sb133lj944gwwpqngsf8hzibdwyfdmsi4m4abh73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flymake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flymake"; sha256 = "0h87yd56nhxpahrcpk6hin142hzv3sdr5bvz0injbv8a2lwnny3b"; name = "helm-flymake"; }; @@ -27001,7 +27149,7 @@ helm-flyspell = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-flyspell"; - version = "20151026.1212"; + version = "20151026.1712"; src = fetchFromGitHub { owner = "pronobis"; repo = "helm-flyspell"; @@ -27009,7 +27157,7 @@ sha256 = "1k7invgzqrcm11plyvinqwf98yxibr8i4r9yw3csfsicc8b6if59"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flyspell"; sha256 = "1g6xry2y6396pg7rg8hc0l84z5r3j2df7dpd1jgffxa8xa3i661f"; name = "helm-flyspell"; }; @@ -27022,7 +27170,7 @@ helm-fuzzier = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-fuzzier"; - version = "20160220.340"; + version = "20160220.940"; src = fetchFromGitHub { owner = "EphramPerdition"; repo = "helm-fuzzier"; @@ -27030,7 +27178,7 @@ sha256 = "15am2dpva3fzj68sw9n4mpdxkw75l97l1k2j9vlvi2lbqk1h46pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-fuzzier"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-fuzzier"; sha256 = "0qdgf0phs3iz29zj3qjhdgb3i4xvf5r2vi0709pwxx2s6r13pvcc"; name = "helm-fuzzier"; }; @@ -27043,7 +27191,7 @@ helm-fuzzy-find = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-fuzzy-find"; - version = "20150613.649"; + version = "20150613.1249"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-fuzzy-find"; @@ -27051,7 +27199,7 @@ sha256 = "1yxnmxq6ppfgwxrk5ryc5xfn82kjf4j65j14hy077gphr0q61q6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-fuzzy-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-fuzzy-find"; sha256 = "0lczlrpd5jy2vhy9jl3rjcdyiwr136spqm8k2rj8m9s8wpn0v75i"; name = "helm-fuzzy-find"; }; @@ -27064,7 +27212,7 @@ helm-ghc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ghc, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ghc"; - version = "20141105.959"; + version = "20141105.1559"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-ghc"; @@ -27072,7 +27220,7 @@ sha256 = "16p1gisbza48qircsvrwx020n96ss1c6s68d7cgqqfc0bf2467is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -27085,7 +27233,7 @@ helm-ghq = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ghq"; - version = "20160203.1027"; + version = "20160203.1627"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-ghq"; @@ -27093,7 +27241,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -27106,7 +27254,7 @@ helm-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-git"; - version = "20120630.1703"; + version = "20120630.2303"; src = fetchFromGitHub { owner = "maio"; repo = "helm-git"; @@ -27114,7 +27262,7 @@ sha256 = "1yfy4a52hx44r32i0b75bka8gfcn5lp61jl86lzrsi2cr9wg10pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git"; sha256 = "1ib73p7cmkw96csxxpkqwn6m60k1xrd46z6vyp29gj85cs4fpsb8"; name = "helm-git"; }; @@ -27127,7 +27275,7 @@ helm-git-files = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-git-files"; - version = "20141212.817"; + version = "20141212.1417"; src = fetchFromGitHub { owner = "kenbeese"; repo = "helm-git-files"; @@ -27135,7 +27283,7 @@ sha256 = "157b525h0kiaknn12fsw67fg26lzb20apx8sssmvlcicqcd51iaw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-files"; sha256 = "02109r956nc1dmqh4v082vkr9wdixh03xhl7icwkzl7ipr5453s6"; name = "helm-git-files"; }; @@ -27148,15 +27296,15 @@ helm-git-grep = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-git-grep"; - version = "20160408.2252"; + version = "20160529.1323"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-git-grep"; - rev = "f8639362a6b96cbe2c5456d895d8a43ec84ff339"; - sha256 = "1b29g71a2hwr83j6mamlzrczz5sydvds23wf50ja7svy2qvzyvp3"; + rev = "cc032974118f8d633db5a1233657651afc318ba9"; + sha256 = "0c11300hlj62jkcx5j56rx6ppkckr0zlngmi4pf5wxpgj1wfsbfy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; @@ -27169,7 +27317,7 @@ helm-github-stars = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-github-stars"; - version = "20150625.1823"; + version = "20150626.23"; src = fetchFromGitHub { owner = "Sliim"; repo = "helm-github-stars"; @@ -27177,7 +27325,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -27190,7 +27338,7 @@ helm-gitignore = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gitignore-mode, helm, lib, melpaBuild, request }: melpaBuild { pname = "helm-gitignore"; - version = "20150517.2356"; + version = "20150518.556"; src = fetchFromGitHub { owner = "jupl"; repo = "helm-gitignore"; @@ -27198,7 +27346,7 @@ sha256 = "0pd755s5zcg8y1svxj3g8m0znkp6cyx5y6lsj4lxczrk7lynzc3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitignore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitignore"; sha256 = "01l7mx8g1m5qnwz973hzrgds4gywm56jgl4hcdxqvpi1n56md3x6"; name = "helm-gitignore"; }; @@ -27211,7 +27359,7 @@ helm-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-gitlab"; - version = "20160519.603"; + version = "20160519.1203"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-gitlab"; @@ -27219,7 +27367,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -27232,7 +27380,7 @@ helm-go-package = callPackage ({ deferred, fetchFromGitHub, fetchurl, go-mode, helm, lib, melpaBuild }: melpaBuild { pname = "helm-go-package"; - version = "20160321.415"; + version = "20160321.915"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-go-package"; @@ -27240,7 +27388,7 @@ sha256 = "0iyfn58h50xms5915i29b54wfyxh6vi9vy3v3r91g6dwlxrjibka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; @@ -27253,7 +27401,7 @@ helm-google = callPackage ({ fetchFromGitHub, fetchurl, google, helm, lib, melpaBuild }: melpaBuild { pname = "helm-google"; - version = "20160226.1520"; + version = "20160226.2120"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "helm-google"; @@ -27261,7 +27409,7 @@ sha256 = "1addskcm325lb9plcbxfp1f6fsj3dcccb87gzihrp7ahiy7pmvih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-google"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-google"; sha256 = "0d1y7232rm888car3h40fba1m1pna2nh1a3fcvpra74igwarfi32"; name = "helm-google"; }; @@ -27274,7 +27422,7 @@ helm-grepint = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-grepint"; - version = "20160303.1526"; + version = "20160303.2126"; src = fetchFromGitHub { owner = "kopoli"; repo = "helm-grepint"; @@ -27282,7 +27430,7 @@ sha256 = "1f88vd31fc7ksrhlc72i6c0wbbz62lxw9yakxdk0m72pfz345mz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-grepint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-grepint"; sha256 = "00wr3wk41sbpamxbjkqlby49g8y5z9n79p51sg7ginban4qy91gf"; name = "helm-grepint"; }; @@ -27295,7 +27443,7 @@ helm-growthforecast = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-growthforecast"; - version = "20140119.2244"; + version = "20140120.444"; src = fetchFromGitHub { owner = "daic-h"; repo = "helm-growthforecast"; @@ -27303,7 +27451,7 @@ sha256 = "0p0mk44y2z875ra8mzcb6vlf4rbkiq9yank5hdxvg2x2sxsaambk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-growthforecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-growthforecast"; sha256 = "0716rhs5dam6p8ym83vy19svl6jr49lcfgb29mm3cqi9jcch3ckh"; name = "helm-growthforecast"; }; @@ -27316,7 +27464,7 @@ helm-gtags = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-gtags"; - version = "20160417.855"; + version = "20160417.1455"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-gtags"; @@ -27324,7 +27472,7 @@ sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; @@ -27337,15 +27485,15 @@ helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hatena-bookmark"; - version = "20160518.1210"; + version = "20160528.1514"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-hatena-bookmark"; - rev = "8f3e9a55a66f8a48e25bbd49f8e75d5fc1f907f2"; - sha256 = "0s7xrk4wqyqmq4rd2zlx7ysl90rpsnqn9l6vg8y1byqdg9cvrqsx"; + rev = "8350a600d3e03f1ec7dc899cc0b2e323b12518bb"; + sha256 = "0hmvyyhddpf831cad35c9z9fv5mpdq6qg4nzbdghlqs9pf7ik6h2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -27358,7 +27506,7 @@ helm-hayoo = callPackage ({ fetchFromGitHub, fetchurl, haskell-mode, helm, json ? null, lib, melpaBuild }: melpaBuild { pname = "helm-hayoo"; - version = "20151014.251"; + version = "20151014.851"; src = fetchFromGitHub { owner = "markus1189"; repo = "helm-hayoo"; @@ -27366,7 +27514,7 @@ sha256 = "08pfzs030d8g5s7vkpgicz4srp5cr3xpd84lhrr24ncrhbszxar9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -27379,7 +27527,7 @@ helm-helm-commands = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-helm-commands"; - version = "20130902.1348"; + version = "20130902.1948"; src = fetchFromGitHub { owner = "vapniks"; repo = "helm-helm-commands"; @@ -27387,7 +27535,7 @@ sha256 = "05ksfx54ar2j4mypzwh0gfir8r26s4f1i4xw319q5pa1y2100cpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-helm-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-helm-commands"; sha256 = "0dq9p37i5rrp2nb1vhqzzqfmdg11va2xr3yz8hdxpwykm1ldqdcf"; name = "helm-helm-commands"; }; @@ -27400,7 +27548,7 @@ helm-hoogle = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hoogle"; - version = "20150919.332"; + version = "20150919.932"; src = fetchFromGitHub { owner = "jwiegley"; repo = "helm-hoogle"; @@ -27408,7 +27556,7 @@ sha256 = "1l85kip4zd08d38sk7cdafmx0v68dh419cs86g7x0mgi0wn00kfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hoogle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hoogle"; sha256 = "0vhk4vwqfirdm5d0pppplfpqyc2sfj6jybhzp9n1w8xgrh2d1c0x"; name = "helm-hoogle"; }; @@ -27421,7 +27569,7 @@ helm-idris = callPackage ({ fetchFromGitHub, fetchurl, helm, idris-mode, lib, melpaBuild }: melpaBuild { pname = "helm-idris"; - version = "20141202.1257"; + version = "20141202.1857"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-idris"; @@ -27429,7 +27577,7 @@ sha256 = "0128nrhwyzslzl0l7wcjxn3dlx3h1sjmwnbbnp2fj4bjk7chc59q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-idris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-idris"; sha256 = "1y52675j4kcq14jypxjw1rflxrxwaxyn1n3m613klad55wpfaamf"; name = "helm-idris"; }; @@ -27442,7 +27590,7 @@ helm-img = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-img"; - version = "20151224.1821"; + version = "20151225.21"; src = fetchFromGitHub { owner = "l3msh0"; repo = "helm-img"; @@ -27450,7 +27598,7 @@ sha256 = "0py4xs27z2jvg99i6qaf2ccz0mvk6bb9cvdyz8v8ngmnj3rw2vla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-img"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-img"; sha256 = "0sq9l1wgm97ppfc45w3bdcv0qq5m85ygnanv1bdcp8bxbdl4vg0q"; name = "helm-img"; }; @@ -27463,7 +27611,7 @@ helm-img-tiqav = callPackage ({ fetchFromGitHub, fetchurl, helm-img, lib, melpaBuild }: melpaBuild { pname = "helm-img-tiqav"; - version = "20151224.1822"; + version = "20151225.22"; src = fetchFromGitHub { owner = "l3msh0"; repo = "helm-img-tiqav"; @@ -27471,7 +27619,7 @@ sha256 = "04vdin0n3514c8bycdjrwk3l6pkarrwanlklnm75315b91nkkbcp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-img-tiqav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-img-tiqav"; sha256 = "1m083hiih2rpyy8i439745mj4ldqy85fpnvms8qnv3042b8x35y0"; name = "helm-img-tiqav"; }; @@ -27484,7 +27632,7 @@ helm-ispell = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-ispell"; - version = "20151231.353"; + version = "20151231.953"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-ispell"; @@ -27492,7 +27640,7 @@ sha256 = "04ddjdia09y14gq4h6m8g6aiwkqvdxp66yjx3j5dh2xrkyxhlxpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -27505,7 +27653,7 @@ helm-itunes = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-itunes"; - version = "20151013.248"; + version = "20151013.848"; src = fetchFromGitHub { owner = "anschwa"; repo = "helm-itunes"; @@ -27513,7 +27661,7 @@ sha256 = "1czgf5br89x192g3lh3x2n998f79hi1n2f309ll264qnl35kv14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-itunes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-itunes"; sha256 = "0zi4wyraqkjwp954pkng8b23giv1q9618apd9v3dczsvlmaar9hf"; name = "helm-itunes"; }; @@ -27526,7 +27674,7 @@ helm-j-cheatsheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-j-cheatsheet"; - version = "20131228.741"; + version = "20131228.1341"; src = fetchFromGitHub { owner = "abo-abo"; repo = "helm-j-cheatsheet"; @@ -27534,7 +27682,7 @@ sha256 = "0f2psp7p82sa2fip282w152zc1rjd3l0sna1g7rgwi9x29gcsh0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-j-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-j-cheatsheet"; sha256 = "0lppzk60vl3ps9fqnrh020awiy5w46gwlb6d91pr889x24ryphmm"; name = "helm-j-cheatsheet"; }; @@ -27547,7 +27695,7 @@ helm-jstack = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-jstack"; - version = "20150603.22"; + version = "20150603.622"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "helm-jstack"; @@ -27555,7 +27703,7 @@ sha256 = "0vhqpcv8xi6a6q7n6xxahdzijr1x5s40fvk9nc44q55psbyv627g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-jstack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-jstack"; sha256 = "0giix1rv2jrmdxyg990w90ivl8bvgbbvah6nkpj7gb6vbnm15ldz"; name = "helm-jstack"; }; @@ -27568,7 +27716,7 @@ helm-lobsters = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-lobsters"; - version = "20150213.1046"; + version = "20150213.1646"; src = fetchFromGitHub { owner = "julienXX"; repo = "helm-lobste.rs"; @@ -27576,7 +27724,7 @@ sha256 = "0nkmc17ggyfi7iz959mvzh6q7116j44zqwi7ydm9i8z49xfpzafy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -27589,7 +27737,7 @@ helm-ls-git = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-git"; - version = "20160408.40"; + version = "20160408.640"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-ls-git"; @@ -27597,7 +27745,7 @@ sha256 = "0yridy54p53zps33766hl7p2hq5pc4vxm08rb5vzbjw84vwaq07b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -27610,7 +27758,7 @@ helm-ls-hg = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-hg"; - version = "20150909.143"; + version = "20150909.743"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-ls-hg"; @@ -27618,7 +27766,7 @@ sha256 = "1msrsqiwk7bg5gry5cia8a6c7ifymfyn738hk8g2qwzzw4vkxxcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -27631,14 +27779,14 @@ helm-ls-svn = callPackage ({ cl-lib ? null, emacs, fetchsvn, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-ls-svn"; - version = "20150717.339"; + version = "20150717.939"; src = fetchsvn { url = "https://svn.macports.org/repository/macports/users/chunyang/helm-ls-svn.el"; - rev = "148903"; + rev = "149168"; sha256 = "0b7gah21rkfd43mb89lrwaqrrwq646abh7wi4q74sx796gmpz4dz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-svn"; sha256 = "08mwzi340akw4ar20by0q981mzmzvf0wz3mn738q4inn2kqgs60d"; name = "helm-ls-svn"; }; @@ -27651,7 +27799,7 @@ helm-make = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-make"; - version = "20160331.1054"; + version = "20160331.1654"; src = fetchFromGitHub { owner = "abo-abo"; repo = "helm-make"; @@ -27659,7 +27807,7 @@ sha256 = "1zxahr48s17di8mcy2sxvy4006ch9vwbvkbgkxdphijgqz41irqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -27672,7 +27820,7 @@ helm-migemo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, migemo }: melpaBuild { pname = "helm-migemo"; - version = "20151009.2356"; + version = "20151010.556"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-migemo"; @@ -27680,7 +27828,7 @@ sha256 = "0gzlprf5js4y3vzkf7si2xc7ai5j97b5cqrs002hyjj5ij4f2vix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -27693,7 +27841,7 @@ helm-mode-manager = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-mode-manager"; - version = "20151124.438"; + version = "20151124.1038"; src = fetchFromGitHub { owner = "istib"; repo = "helm-mode-manager"; @@ -27701,7 +27849,7 @@ sha256 = "1lbxb4vnnv6s46m90qihkj99qdbdylwncwaijjfd7i2kap2ayawh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -27714,7 +27862,7 @@ helm-mt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi-term }: melpaBuild { pname = "helm-mt"; - version = "20151105.20"; + version = "20151105.620"; src = fetchFromGitHub { owner = "dfdeshom"; repo = "helm-mt"; @@ -27722,7 +27870,7 @@ sha256 = "09rb8aq7fnf661w3liwbkkaczjph3dzvg26slm9cwcnl7pqnvagl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -27735,15 +27883,15 @@ helm-mu = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-mu"; - version = "20160404.1153"; + version = "20160531.1931"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-mu"; - rev = "f5e1cb2cd16798efb7a38c6c25db8890878af2c9"; - sha256 = "1q55x1rygqxriwxyp88azfp3phnibjfz9bwq4dwsvqah1zpzdzma"; + rev = "884ba7484b2635231aa6436800e8b6fb722bcddf"; + sha256 = "1ifws3p0civl60wpri0zs3mi23c6jajrvz1zaimw6am222s2sx3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mu"; sha256 = "0pydp6scj5icaqfp3dp5h0q1y2i7z9mfyw1ll6iphsz9qh3x2bj2"; name = "helm-mu"; }; @@ -27756,7 +27904,7 @@ helm-nixos-options = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, nixos-options }: melpaBuild { pname = "helm-nixos-options"; - version = "20151013.1909"; + version = "20151014.109"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -27764,7 +27912,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -27777,7 +27925,7 @@ helm-notmuch = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, notmuch }: melpaBuild { pname = "helm-notmuch"; - version = "20160412.1506"; + version = "20160412.2106"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-notmuch"; @@ -27785,7 +27933,7 @@ sha256 = "04c6k1rxdi175kwn146sb2nxd13mvx3irr9fbqykcfv81609kqx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-notmuch"; sha256 = "1ixdc1ba4ygxl0lpg6ijk06dgj2hfv5p5k6ivq60ss0axyisnnv0"; name = "helm-notmuch"; }; @@ -27798,7 +27946,7 @@ helm-open-github = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, gh, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-open-github"; - version = "20151226.942"; + version = "20151226.1542"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-open-github"; @@ -27806,7 +27954,7 @@ sha256 = "1wkmbc7247f209krvw4dzja3z0wyny12x5yi1cn3fnfh5nx04851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; @@ -27819,7 +27967,7 @@ helm-org-rifle = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "helm-org-rifle"; - version = "20160420.1118"; + version = "20160420.1718"; src = fetchFromGitHub { owner = "alphapapa"; repo = "helm-org-rifle"; @@ -27827,7 +27975,7 @@ sha256 = "0glrbln15wang9n1h76dk19ykcgmc8hwphg1qcmc4fbbcgmh1a1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-org-rifle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-org-rifle"; sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; name = "helm-org-rifle"; }; @@ -27840,7 +27988,7 @@ helm-orgcard = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-orgcard"; - version = "20151001.1124"; + version = "20151001.1724"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "helm-orgcard"; @@ -27848,7 +27996,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -27861,7 +28009,7 @@ helm-package = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-package"; - version = "20151210.348"; + version = "20151210.948"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-package"; @@ -27869,7 +28017,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -27882,7 +28030,7 @@ helm-pages = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pages"; - version = "20160321.2213"; + version = "20160322.313"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "helm-pages"; @@ -27890,7 +28038,7 @@ sha256 = "1dyi3rs72jl7739knnikv8pawam54k0sxz5a4a33i6s2bg3ghxcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -27903,7 +28051,7 @@ helm-perldoc = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-perldoc"; - version = "20151031.2327"; + version = "20151101.427"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-perldoc"; @@ -27911,7 +28059,7 @@ sha256 = "13wnagmgicl2mi4iksqckrjbaiz05j9ykbmvj26jy8zcbll5imfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; @@ -27924,7 +28072,7 @@ helm-phpunit = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, phpunit }: melpaBuild { pname = "helm-phpunit"; - version = "20160513.453"; + version = "20160513.1053"; src = fetchFromGitHub { owner = "eric-hansen"; repo = "helm-phpunit"; @@ -27932,7 +28080,7 @@ sha256 = "0wirqnzprfxbppdawfx6ah5rdawgyvl8b4zn2r3zm9mnj9jci4dw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-phpunit"; sha256 = "0anbrzlpmashcklifyvnnf2rwv5fk4x0kbls2dp2db1bliw3rdh6"; name = "helm-phpunit"; }; @@ -27945,7 +28093,7 @@ helm-proc = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-proc"; - version = "20160514.1018"; + version = "20160514.1618"; src = fetchFromGitHub { owner = "markus1189"; repo = "helm-proc"; @@ -27953,7 +28101,7 @@ sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -27966,7 +28114,7 @@ helm-project-persist = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, project-persist }: melpaBuild { pname = "helm-project-persist"; - version = "20151210.1043"; + version = "20151210.1643"; src = fetchFromGitHub { owner = "Sliim"; repo = "helm-project-persist"; @@ -27974,7 +28122,7 @@ sha256 = "0j54c1kzsjgr05qx25rg3ylawvyw6n6liypiwaas47vpyfswbxhv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -27987,15 +28135,15 @@ helm-projectile = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, projectile }: melpaBuild { pname = "helm-projectile"; - version = "20160429.2149"; + version = "20160603.611"; src = fetchFromGitHub { owner = "bbatsov"; repo = "helm-projectile"; - rev = "228c57e80569e5aa144b4d81d09c41afb0131bb3"; - sha256 = "0wspzrzxd9qcpn686crxic85grxhx25hmswhkkll3h7lzczixzvh"; + rev = "3db706c9147a54a618bdb6e5de827d931d8ae9a6"; + sha256 = "0b9nd668p5lya214hyc0lv9pbmxjfy4ls1yhljr6j71qsfl0mjva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-projectile"; sha256 = "18y7phrvbpdi3cnghwyhh0v1bwm95nwq1lymzf8lrcbmrwcvh36a"; name = "helm-projectile"; }; @@ -28008,7 +28156,7 @@ helm-prosjekt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, prosjekt }: melpaBuild { pname = "helm-prosjekt"; - version = "20140129.217"; + version = "20140129.817"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -28016,7 +28164,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-prosjekt"; sha256 = "019rya3bf13cnval8iz680wby3sqlmqg4nbn0a13l1pkhlnv9fvm"; name = "helm-prosjekt"; }; @@ -28029,7 +28177,7 @@ helm-pt = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-pt"; - version = "20160214.1842"; + version = "20160215.42"; src = fetchFromGitHub { owner = "ralesi"; repo = "helm-pt"; @@ -28037,7 +28185,7 @@ sha256 = "03ys40rr0pvgp35j5scw9c28j184f1c9m58a3x0c8f0lgyfpssjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -28050,7 +28198,7 @@ helm-purpose = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, window-purpose }: melpaBuild { pname = "helm-purpose"; - version = "20160218.1309"; + version = "20160218.1909"; src = fetchFromGitHub { owner = "bmag"; repo = "helm-purpose"; @@ -28058,7 +28206,7 @@ sha256 = "1lxknzjfhl6irrspynlkc1dp02s0byp94y4qp69gcl9sla9262ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; @@ -28071,7 +28219,7 @@ helm-pydoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-pydoc"; - version = "20151008.1024"; + version = "20151008.1624"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-pydoc"; @@ -28079,7 +28227,7 @@ sha256 = "0admgfy0p13nilb4fi3dq8pm48w1fib8h8avi7h9ybi9k5h6x4ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; @@ -28089,22 +28237,22 @@ license = lib.licenses.free; }; }) {}; - helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + helm-qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-qiita"; - version = "20160522.312"; + version = "20160528.1511"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-qiita"; - rev = "1adb50a144439b536523ae0af24fedb7faee2495"; - sha256 = "12mkdjqg2vh95wwlr7iyv5janpvx7r745qfmxkjdx7c8ph14j5h7"; + rev = "45e38ae7b816da5db38412b2992c6d1c7a6cc30a"; + sha256 = "05394vf125qlgfrhkaqvly3340qp3zy7kldsnisms9gv0l1c60bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-qiita"; sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; name = "helm-qiita"; }; - packageRequires = [ cl-lib helm ]; + packageRequires = [ helm ]; meta = { homepage = "https://melpa.org/#/helm-qiita"; license = lib.licenses.free; @@ -28113,7 +28261,7 @@ helm-rails = callPackage ({ fetchFromGitHub, fetchurl, helm, inflections, lib, melpaBuild }: melpaBuild { pname = "helm-rails"; - version = "20130424.1119"; + version = "20130424.1719"; src = fetchFromGitHub { owner = "asok"; repo = "helm-rails"; @@ -28121,7 +28269,7 @@ sha256 = "1a26r21jvgzk21vh3mf29s1dhvvv70jh860zaq9ihrpfrrl91158"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rails"; sha256 = "1iihfsmnkpfp08pldghf3w5k8v5dlmy5ns0l4niwdwp5w8lyjcd6"; name = "helm-rails"; }; @@ -28134,7 +28282,7 @@ helm-rb = callPackage ({ fetchFromGitHub, fetchurl, helm, helm-ag-r, lib, melpaBuild }: melpaBuild { pname = "helm-rb"; - version = "20131123.1139"; + version = "20131123.1739"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "helm-rb"; @@ -28142,7 +28290,7 @@ sha256 = "1b74jsr28ldz80mrqz3d1bmykpcprdbhf3fzhc0awd5i5xdnfaid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rb"; sha256 = "14pkrj1rpi2ihpb7c1hx6xwzvc1x7l41lwr9znp5vn7z93i034fr"; name = "helm-rb"; }; @@ -28155,15 +28303,15 @@ helm-recoll = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-recoll"; - version = "20160501.1256"; + version = "20160602.41"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-recoll"; - rev = "9dcd056214cb2665113743bb3b1a97973c002316"; - sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2"; + rev = "30d2e26c2dcd5bdd906d659cca37359ad863fd52"; + sha256 = "07jzrra4y0vbm6f62vsl60qbh99s8f76r74l4z1fby1ww6wgbrcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -28176,15 +28324,15 @@ helm-rhythmbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rhythmbox"; - version = "20160310.734"; + version = "20160524.1358"; src = fetchFromGitHub { owner = "mrBliss"; repo = "helm-rhythmbox"; - rev = "068ddb16356d85267d510607313153cb2ecc151b"; - sha256 = "114maxzybs3sn32nv12fgm6aqsdqzn59fjdk6ra5cbbfyjvin16l"; + rev = "c92e1ded34ddd4e62e7e9a558259c232e05193fa"; + sha256 = "1ng73dmligj38xbfdfr8sb69czppks7wfvh5q5xcm2pha828kcwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rhythmbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rhythmbox"; sha256 = "0pnm7yvas0q3b38ch5idm7v4ih2fjyfai8217j74xhkpcc2w4g4a"; name = "helm-rhythmbox"; }; @@ -28197,7 +28345,7 @@ helm-robe = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-robe"; - version = "20151208.2255"; + version = "20151209.455"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-robe"; @@ -28205,7 +28353,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -28218,7 +28366,7 @@ helm-rubygems-local = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rubygems-local"; - version = "20130711.2111"; + version = "20130712.311"; src = fetchFromGitHub { owner = "hadashiA"; repo = "helm-rubygems-local"; @@ -28226,7 +28374,7 @@ sha256 = "0s4hb1fvwr9za5gkz8s5w1kh9qjyygz6g59w7vmrg2d8ds2an03d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-local"; sha256 = "134qyqnh9l05lfj0vizlx35631q8ih6cdblrvka3p8i571300ikh"; name = "helm-rubygems-local"; }; @@ -28239,7 +28387,7 @@ helm-rubygems-org = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-rubygems-org"; - version = "20140826.756"; + version = "20140826.1356"; src = fetchFromGitHub { owner = "neomantic"; repo = "helm-rubygems-org"; @@ -28247,7 +28395,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -28260,7 +28408,7 @@ helm-safari = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-safari"; - version = "20160403.2324"; + version = "20160404.524"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-safari"; @@ -28268,7 +28416,7 @@ sha256 = "1ws5zxanaiaaxpgkcb2914qa8wxp6ml019hfnfcp7amjnajq9pyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-safari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-safari"; sha256 = "0lvwghcl5w67g0lc97r7hfvca7ss0mysy2mxj9axxbpyiq6fmh0y"; name = "helm-safari"; }; @@ -28281,7 +28429,7 @@ helm-sage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, sage-shell-mode }: melpaBuild { pname = "helm-sage"; - version = "20160514.345"; + version = "20160514.945"; src = fetchFromGitHub { owner = "stakemori"; repo = "helm-sage"; @@ -28289,7 +28437,7 @@ sha256 = "0padb6mncgc52wib3dgvdc9r4dp591gf8nblbfnsnxx4zjrcwawb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -28302,7 +28450,7 @@ helm-sheet = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-sheet"; - version = "20130630.839"; + version = "20130630.1439"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-sheet"; @@ -28310,7 +28458,7 @@ sha256 = "00wnqcgpf4hqdnqj5zrizr4s0pffb93xwya8k5c3rp4plncrcdzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sheet"; sha256 = "0lx70l5gq43hckgdfna8s6wx287sw5ms9l1z3n6vg2x8nr9m61kc"; name = "helm-sheet"; }; @@ -28320,10 +28468,31 @@ license = lib.licenses.free; }; }) {}; + helm-smex = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, smex }: + melpaBuild { + pname = "helm-smex"; + version = "20160530.2136"; + src = fetchFromGitHub { + owner = "ptrv"; + repo = "helm-smex"; + rev = "c8f007c75b00be155b62d6b44f1f275a914bf31c"; + sha256 = "0i8qhlyil4p11lnb6f1x9qv7f5131dg0f74anbvnc1wjga0jifzx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-smex"; + sha256 = "02jvq2hyq4wwc9v8gaxr9vkjldc60khdbjf71p8w2iny5w3k0jbj"; + name = "helm-smex"; + }; + packageRequires = [ emacs helm smex ]; + meta = { + homepage = "https://melpa.org/#/helm-smex"; + license = lib.licenses.free; + }; + }) {}; helm-spaces = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, spaces }: melpaBuild { pname = "helm-spaces"; - version = "20160319.1054"; + version = "20160319.1554"; src = fetchFromGitHub { owner = "yasuyk"; repo = "helm-spaces"; @@ -28331,7 +28500,7 @@ sha256 = "0j3b5ypxq8k7mg6zlx3r15jpk3x2f0gx9p9bjr0h78h0sc0f46l7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -28344,7 +28513,7 @@ helm-spotify = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, multi }: melpaBuild { pname = "helm-spotify"; - version = "20131014.1721"; + version = "20131014.2321"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "helm-spotify"; @@ -28352,7 +28521,7 @@ sha256 = "133dcqk42nq5gh5qlcbcmx3lczisfgymcnypnld318jvjgd2ma8a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spotify"; sha256 = "1rzvxnaqh8bm78qp0rhpqs971pc855qrq589r3s8z3gpqzmwlnmf"; name = "helm-spotify"; }; @@ -28365,7 +28534,7 @@ helm-swoop = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-swoop"; - version = "20160417.1757"; + version = "20160417.2357"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "helm-swoop"; @@ -28373,7 +28542,7 @@ sha256 = "1iid2jcnqpd5b2g0jgas76n06i8m20kp3j4lhmalg9jnyvgrlf7s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -28386,7 +28555,7 @@ helm-systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, with-editor }: melpaBuild { pname = "helm-systemd"; - version = "20160518.233"; + version = "20160518.833"; src = fetchFromGitHub { owner = "lompik"; repo = "helm-systemd"; @@ -28394,7 +28563,7 @@ sha256 = "1yqwq8a5pw3iaj69kqvlgn4hr18ssx39lnm4vycbmsg1bi2ygfzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-systemd"; sha256 = "1kcf9218l8aygrcj1h3czyklk1cxc5c73qmv4d3r3bzpxbxgf6ib"; name = "helm-systemd"; }; @@ -28407,7 +28576,7 @@ helm-themes = callPackage ({ fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "helm-themes"; - version = "20151009.221"; + version = "20151009.821"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-helm-themes"; @@ -28415,7 +28584,7 @@ sha256 = "0a9h6rmjc6c6krkvxbgrzv35if260d9ma9a2k47jzm9psnyp9s2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; @@ -28428,7 +28597,7 @@ helm-unicode = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-unicode"; - version = "20150428.1454"; + version = "20150428.2054"; src = fetchFromGitHub { owner = "shosti"; repo = "helm-unicode"; @@ -28436,7 +28605,7 @@ sha256 = "1ypnsbx623gg3q07gxrbkn82jzy38sj4p52hj1wcb54qjqzyznkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -28449,7 +28618,7 @@ helm-w32-launcher = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-w32-launcher"; - version = "20141223.1514"; + version = "20141223.2114"; src = fetchFromGitHub { owner = "Fanael"; repo = "helm-w32-launcher"; @@ -28457,7 +28626,7 @@ sha256 = "0xlz9rxx7y9pkrzvxmv42vgys5iwx75zv9g50k8ihwc08z80dhcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -28470,7 +28639,7 @@ helm-w3m = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, w3m }: melpaBuild { pname = "helm-w3m"; - version = "20150722.1124"; + version = "20150722.1724"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-w3m"; @@ -28478,7 +28647,7 @@ sha256 = "0d47mqib4zkfadq26vpy0ih7j18d6n5v4c21wvr4hhg6hg205iiz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w3m"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w3m"; sha256 = "1rr83ija93iqz74k236hk3v75jk0iwcccwqpqgys7spvrld0b9pz"; name = "helm-w3m"; }; @@ -28491,7 +28660,7 @@ helm-wordnet = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-wordnet"; - version = "20160128.1007"; + version = "20160128.1607"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "helm-wordnet"; @@ -28499,7 +28668,7 @@ sha256 = "03a5hzgqak8wg6i2h2p3fr9ij55lqarcsblml8qrnrj27ghcvzzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-wordnet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-wordnet"; sha256 = "0di8gxsa9r8mzja4akhz0wpgrhlidqyn1s1ix5szplwxklwf2r2f"; name = "helm-wordnet"; }; @@ -28512,7 +28681,7 @@ helm-words = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-words"; - version = "20150413.1618"; + version = "20150413.2218"; src = fetchFromGitHub { owner = "pronobis"; repo = "helm-words"; @@ -28520,7 +28689,7 @@ sha256 = "19l8vysjygscr1nsddjz2yv0fjhbsswfq40rdny8zsmaa6qhpj35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-words"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-words"; sha256 = "0l9mb7g3xzasna1bw2p7vh2wdg1hmjkff40p8kpqvwwzszdm9v76"; name = "helm-words"; }; @@ -28533,7 +28702,7 @@ helm-xcdoc = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-xcdoc"; - version = "20160116.518"; + version = "20160116.1118"; src = fetchFromGitHub { owner = "fujimisakari"; repo = "emacs-helm-xcdoc"; @@ -28541,7 +28710,7 @@ sha256 = "1yqr5z5sw7schvaq9pmwg79anp806gikm28s6xvrayzyn4idz2n6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-xcdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-xcdoc"; sha256 = "1ikphlnj053i4g1l8r2pqaljvdqglj1yk0xx4vygnw98qyzdsx4v"; name = "helm-xcdoc"; }; @@ -28554,7 +28723,7 @@ helm-zhihu-daily = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-zhihu-daily"; - version = "20151006.419"; + version = "20151006.1019"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "helm-zhihu-daily"; @@ -28562,7 +28731,7 @@ sha256 = "11fznbfcv4rac4h50mkax1g66wd2f91f5dw2v4jxjq2f5y4h4w0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -28574,13 +28743,13 @@ }) {}; help-fns-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-fns-plus"; - version = "20151215.937"; + version = "20151215.1537"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help-fns+.el"; sha256 = "00x3ln7x4d6r422x845smf3h0x1z85l5jqyjkrllqcs7qijcrk5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help-fns+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help-fns+"; sha256 = "10vz7w79k3barlcs3ph3pc7914xdhcygagdk2wj3bq0wmwxa1lia"; name = "help-fns-plus"; }; @@ -28592,13 +28761,13 @@ }) {}; help-mode-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-mode-plus"; - version = "20151231.1631"; + version = "20151231.2231"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help-mode+.el"; sha256 = "0qmf81maq6yvs68b8vlbxwkjk72qldamq75znrma9mhvlv8igrgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help-mode+"; sha256 = "1pmb845bxa5kazjpdxm12rm2wcshmv2cmisigs3kyva1pmi1shra"; name = "help-mode-plus"; }; @@ -28610,13 +28779,13 @@ }) {}; help-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "help-plus"; - version = "20151231.1628"; + version = "20151231.2228"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/help+.el"; sha256 = "1r7kf9plnsjx87bhflsdh47wybvhis7gb10izqa1p6w0aqsg178s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/help+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/help+"; sha256 = "1jx0wa4md1mvdsvjyx2yvi4hhm5w061qqcafsrw4axsz7gjpd4yi"; name = "help-plus"; }; @@ -28629,7 +28798,7 @@ hemisu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hemisu-theme"; - version = "20130508.1444"; + version = "20130508.2044"; src = fetchFromGitHub { owner = "andrzejsliwa"; repo = "hemisu-theme"; @@ -28637,7 +28806,7 @@ sha256 = "178dvigiw162m01x7dm8pf61w2n3bq51lvk5q7jzpb9s35pz1697"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hemisu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hemisu-theme"; sha256 = "0byzrz74yvk12m8dl47kkmkziwrrql193q72qx974zbqdj8h2sph"; name = "hemisu-theme"; }; @@ -28650,7 +28819,7 @@ heroku = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "heroku"; - version = "20120629.1413"; + version = "20120629.2013"; src = fetchFromGitHub { owner = "technomancy"; repo = "heroku.el"; @@ -28658,7 +28827,7 @@ sha256 = "0c45pib8qpwgyr271g5ddnsn7hzq68mqflv0yyc8803ni06w9vhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/heroku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/heroku"; sha256 = "1kadmxmqhc60cb5k14943rad1gbril2hlcnqxnsy4h3j2ykmcdyy"; name = "heroku"; }; @@ -28671,7 +28840,7 @@ heroku-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "heroku-theme"; - version = "20150522.2219"; + version = "20150523.419"; src = fetchFromGitHub { owner = "jonathanchu"; repo = "heroku-theme"; @@ -28679,7 +28848,7 @@ sha256 = "15hk0v6ck076mahsz4spq75jcnv587fx4d3w50c7bdh423fl0xvx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/heroku-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/heroku-theme"; sha256 = "0mchh9y3pqwamry6105qrv1bp1qg1g0jmz7rzc5svz9giynypwf9"; name = "heroku-theme"; }; @@ -28692,7 +28861,7 @@ hexo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hexo"; - version = "20160423.1117"; + version = "20160423.1717"; src = fetchFromGitHub { owner = "kuanyui"; repo = "hexo.el"; @@ -28700,7 +28869,7 @@ sha256 = "1ghknn1fd6lwxq035amrawx9ixw3qwjsfarsjyqss7rhs70wrn5a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hexo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hexo"; sha256 = "0fgrxf6gdw0kzs6x6y8qr511cazaaiyk7licgkgznngj4w6g7jyn"; name = "hexo"; }; @@ -28712,13 +28881,13 @@ }) {}; hexrgb = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hexrgb"; - version = "20151231.1632"; + version = "20151231.2232"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hexrgb.el"; sha256 = "0rqjidjxa5j6rjknklfks743lczbq3qsyiranrf2z3ghzi0gf7fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hexrgb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hexrgb"; sha256 = "0mzqslrrf7sc262syj3ja7b7rnbg80dwf2p9bzxdrzx6b8vvsx06"; name = "hexrgb"; }; @@ -28731,15 +28900,15 @@ hfst-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hfst-mode"; - version = "20160402.728"; + version = "20160524.1353"; src = fetchFromGitHub { owner = "unhammer"; repo = "hfst-mode"; - rev = "d145a21e3e175b0fe2b0592981533c9492bd289c"; - sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; + rev = "11a42889a3cac488d3293e011f8ebc189ca71658"; + sha256 = "1yi01qsgbmhmdgxdjfvgi2s9ijnq9x1y3j9yc1jwz89p0pc5dm1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hfst-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hfst-mode"; sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; name = "hfst-mode"; }; @@ -28752,7 +28921,7 @@ hgignore-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hgignore-mode"; - version = "20160430.2007"; + version = "20160501.207"; src = fetchFromGitHub { owner = "omajid"; repo = "hgignore-mode"; @@ -28760,7 +28929,7 @@ sha256 = "0l22sqi9lmy25idh231p0hgq22b3dxwb9wq60yxk8dck9zlkv7rr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hgignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hgignore-mode"; sha256 = "0ja71l3cghhn1c6w2pff80km8h8xgzf0j9gcldfyc72ar6ifhjkj"; name = "hgignore-mode"; }; @@ -28773,7 +28942,7 @@ hgrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hgrc-mode"; - version = "20150409.1643"; + version = "20150409.2243"; src = fetchFromGitHub { owner = "omajid"; repo = "hgrc-mode"; @@ -28781,7 +28950,7 @@ sha256 = "1ky5s7hzqbxgasdz285q3rnvzh3irwsq61rlivjrcxyfdxdjbbvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hgrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hgrc-mode"; sha256 = "18400dhdackdpndkz6shjmd4klfh6b4vlccnnqlzf3a93alw6vqf"; name = "hgrc-mode"; }; @@ -28794,7 +28963,7 @@ hi2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hi2"; - version = "20141005.1531"; + version = "20141005.2131"; src = fetchFromGitHub { owner = "nilcons"; repo = "hi2"; @@ -28802,7 +28971,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -28814,13 +28983,13 @@ }) {}; hide-comnt = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-comnt"; - version = "20151231.1633"; + version = "20151231.2233"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-comnt.el"; sha256 = "1l5jvgjgd0kzv1sn6h467fbnl487hma4h4pkwq4x1dhbc26yvfpz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-comnt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-comnt"; sha256 = "181kns2rg4rc0pyyxw305qc06d10v025ad7v2m037y72vfwb0igx"; name = "hide-comnt"; }; @@ -28832,13 +29001,13 @@ }) {}; hide-lines = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-lines"; - version = "20151127.1340"; + version = "20151127.1940"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-lines.el"; sha256 = "1q87yp1pr62cza3pqimqd09a39yyij4c7pncdww84zz7cii9qrn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-lines"; sha256 = "146sgvd88w20rqvd8y8kc76cb1nqk6dvqsz9rgl4rcrf0xfqvp7q"; name = "hide-lines"; }; @@ -28850,13 +29019,13 @@ }) {}; hide-region = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hide-region"; - version = "20140201.614"; + version = "20140201.1214"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hide-region.el"; sha256 = "1zxrygpf47bzj6p808r3qhj3dfr3m8brp1xgxs33c7f88rinfval"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hide-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hide-region"; sha256 = "0nsc6m3yza658xsxvjz8766vkp71rcm6vwnvcv225r2pr94mq7vm"; name = "hide-region"; }; @@ -28869,7 +29038,7 @@ hideshow-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hideshow-org"; - version = "20120223.1750"; + version = "20120223.2350"; src = fetchFromGitHub { owner = "shanecelis"; repo = "hideshow-org"; @@ -28877,7 +29046,7 @@ sha256 = "1dr06b9njzih8z97k62l9w3x0a801x4bp043zvk7av9qkz8izl2r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hideshow-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hideshow-org"; sha256 = "1bzx5ii06r64nra92zv1dvw5zv3im7la2dd3md801hxyfrpb74gc"; name = "hideshow-org"; }; @@ -28889,13 +29058,13 @@ }) {}; hideshowvis = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hideshowvis"; - version = "20130824.800"; + version = "20130824.1400"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hideshowvis.el"; sha256 = "15ax1j3j7kylyc8a91ja825sp4mhbdgx0j4i5kqxwhvmwvpmyrv6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hideshowvis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hideshowvis"; sha256 = "1ajr71fch3v5g8brb83kwmlakcam5w21i3yr8df00c5j2pnc6v1f"; name = "hideshowvis"; }; @@ -28907,13 +29076,13 @@ }) {}; highlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight"; - version = "20151231.1637"; + version = "20151231.2237"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight.el"; sha256 = "15s4463damlszd5wqi22a6w25i8l0m5rvqdg73k3yp01i65jc29z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight"; sha256 = "0clv4mzy9kllcvc0cgsbx3a9anw68dc2c7vzwbrv13sw5gh9skc0"; name = "highlight"; }; @@ -28926,7 +29095,7 @@ highlight-blocks = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-blocks"; - version = "20151201.1115"; + version = "20151201.1715"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-blocks"; @@ -28934,7 +29103,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -28946,13 +29115,13 @@ }) {}; highlight-chars = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-chars"; - version = "20151231.1635"; + version = "20151231.2235"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-chars.el"; sha256 = "18y6cw43mhizccvwfydv6g2kz8w7vff0n3k9sq5ghwq3rb3z14b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-chars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-chars"; sha256 = "19jawbjvqx1hsjbynx0jgpziap3r64k8s1xfckajrx8aq8m4c6i0"; name = "highlight-chars"; }; @@ -28964,13 +29133,13 @@ }) {}; highlight-cl = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-cl"; - version = "20091012.1330"; + version = "20091012.1930"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-cl.el"; sha256 = "0r3kzs2fsi3kl5gqmsv75dc7lgfl4imrrqhg09ij6kq1ri8gjxjw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-cl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-cl"; sha256 = "164h3c3rzriahb7v5hk2pw4i0gk2vk5ak722bai6x4zx4l1xp20w"; name = "highlight-cl"; }; @@ -28983,13 +29152,13 @@ highlight-current-line = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-current-line"; - version = "20051013.1356"; + version = "20051013.1956"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-current-line.el"; sha256 = "1aki7a7nnj9n7vh19k4fr0v7cqbwkrpc6b3f3yv95vcqj8a4y34c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-current-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-current-line"; sha256 = "01bga6is3frzlzfajpvpgz224vhl0jnc2bl2ipvlygdcmv4h8973"; name = "highlight-current-line"; }; @@ -29002,7 +29171,7 @@ highlight-defined = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-defined"; - version = "20141225.1030"; + version = "20141225.1630"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-defined"; @@ -29010,7 +29179,7 @@ sha256 = "1l10xnjyvcbv1v8xlldaca7z3fk5qav7nsbhfnjxxd0bgh5v9by2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -29023,7 +29192,7 @@ highlight-escape-sequences = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-escape-sequences"; - version = "20151231.712"; + version = "20151231.1312"; src = fetchFromGitHub { owner = "dgutov"; repo = "highlight-escape-sequences"; @@ -29031,7 +29200,7 @@ sha256 = "0rs8zyjz5mh26n8bdxn6fmyw2809nihz1vp7ih59dq11lx3mf9az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-escape-sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-escape-sequences"; sha256 = "0938b29cqapid9v9q4w2jwh8kdb0p70qwzy9xm2nxaairm7436d6"; name = "highlight-escape-sequences"; }; @@ -29044,7 +29213,7 @@ highlight-indent-guides = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-indent-guides"; - version = "20160519.1523"; + version = "20160519.2123"; src = fetchFromGitHub { owner = "DarthFennec"; repo = "highlight-indent-guides"; @@ -29052,7 +29221,7 @@ sha256 = "10rj4sl99kpsggw7009vv8l4p74rmpp2hfz1d4d3gyfq5k3zblb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indent-guides"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indent-guides"; sha256 = "00ghp677qgb5clxhdjarfl8ab3mbp6v7yfsldm9bn0s14lyaq5pm"; name = "highlight-indent-guides"; }; @@ -29065,7 +29234,7 @@ highlight-indentation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-indentation"; - version = "20150307.508"; + version = "20150307.1108"; src = fetchFromGitHub { owner = "antonj"; repo = "Highlight-Indentation-for-Emacs"; @@ -29073,7 +29242,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -29086,7 +29255,7 @@ highlight-leading-spaces = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-leading-spaces"; - version = "20151216.722"; + version = "20151216.1322"; src = fetchFromGitHub { owner = "mrBliss"; repo = "highlight-leading-spaces"; @@ -29094,7 +29263,7 @@ sha256 = "1vy6j63jp83ljdqkrqglpys74yfh7p61sd0lqiwczgr5nqyc60rl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-leading-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-leading-spaces"; sha256 = "0h2ww2vqmarghf4zg0wbwn0wgndmkcjy696mc885rwavck2dav4p"; name = "highlight-leading-spaces"; }; @@ -29107,7 +29276,7 @@ highlight-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }: melpaBuild { pname = "highlight-numbers"; - version = "20160516.559"; + version = "20160516.1159"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-numbers"; @@ -29115,7 +29284,7 @@ sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -29128,14 +29297,14 @@ highlight-operators = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-operators"; - version = "20160517.1649"; + version = "20160517.2249"; src = fetchhg { url = "https://bitbucket.com/jpkotta/highlight-operators"; rev = "c06a29726f3e"; sha256 = "0fqfxwdz1xbc6dwxbjdhryvnvrb5vc38cq7c2yiz294mfzyn3l5s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-operators"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-operators"; sha256 = "00agrwp2i3mkacnp4qhqcnpwn5qlbj9qv97zrw7a7ldqga0vwvhn"; name = "highlight-operators"; }; @@ -29148,7 +29317,7 @@ highlight-parentheses = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-parentheses"; - version = "20151108.216"; + version = "20151108.816"; src = fetchFromGitHub { owner = "tsdh"; repo = "highlight-parentheses.el"; @@ -29156,7 +29325,7 @@ sha256 = "0kzqx1y6rr4ryxi2md9087saad4g4bzysckmp8272k521d46xa1r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-parentheses"; sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; @@ -29169,7 +29338,7 @@ highlight-quoted = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-quoted"; - version = "20140916.1422"; + version = "20140916.2022"; src = fetchFromGitHub { owner = "Fanael"; repo = "highlight-quoted"; @@ -29177,7 +29346,7 @@ sha256 = "1gq8inxfni9zgz2brqm4nlswgr8b0spq15wr532xfrgr456g10ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -29190,7 +29359,7 @@ highlight-stages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-stages"; - version = "20150421.2357"; + version = "20150422.557"; src = fetchFromGitHub { owner = "zk-phi"; repo = "highlight-stages"; @@ -29198,7 +29367,7 @@ sha256 = "0gnr1dqkcmc9gfzqjaixh76g1kq7xp20mg1h6vl3c4na7nk6a3fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-stages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-stages"; sha256 = "0r4kmjmrpi38q3y0q9h5xkxh7x728ha2nbnc152lzw6zfsxnm4x4"; name = "highlight-stages"; }; @@ -29211,7 +29380,7 @@ highlight-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-symbol"; - version = "20160102.1509"; + version = "20160102.2109"; src = fetchFromGitHub { owner = "nschum"; repo = "highlight-symbol.el"; @@ -29219,7 +29388,7 @@ sha256 = "19cgyk0sh8nsmf3jbi92i8qsdx4l4yilfq5jj9zfdbj9p5gvwx96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -29231,13 +29400,13 @@ }) {}; highlight-tail = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-tail"; - version = "20140415.2141"; + version = "20140416.341"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/highlight-tail.el"; sha256 = "1bbiyqddqkrp3c7xsg1m4143611bhg1kkakrwscqjb4cfmx29qqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-tail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-tail"; sha256 = "187kv3n262l38jdapi9bwcafz8fh61pdq2zliwiz7m7xdspp2iws"; name = "highlight-tail"; }; @@ -29250,7 +29419,7 @@ highlight-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-thing"; - version = "20160220.1942"; + version = "20160221.142"; src = fetchFromGitHub { owner = "fgeller"; repo = "highlight-thing.el"; @@ -29258,7 +29427,7 @@ sha256 = "00s2nm0rfdgkpn2v9m36y0l42jyfah5hp5hd3bkwljgs99cp1ihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-thing"; sha256 = "0rvdb1lx9xn9drqw0sw9ih759n10g7k0af39w6n8g0wfr67p96w1"; name = "highlight-thing"; }; @@ -29271,7 +29440,7 @@ highlight-unique-symbol = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "highlight-unique-symbol"; - version = "20130612.142"; + version = "20130612.742"; src = fetchFromGitHub { owner = "hitode909"; repo = "emacs-highlight-unique-symbol"; @@ -29279,7 +29448,7 @@ sha256 = "0hhc2l4pz6q8injpplv6b5l08l8q2lnjdpwabp7gwmhraq54rhjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-unique-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-unique-symbol"; sha256 = "0lwl8pkmq0q4dvyflarggnn8vzpvk5hhcnk508r6xml2if1sg9zx"; name = "highlight-unique-symbol"; }; @@ -29292,7 +29461,7 @@ highlight2clipboard = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "highlight2clipboard"; - version = "20151020.1440"; + version = "20151020.2040"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "highlight2clipboard"; @@ -29300,7 +29469,7 @@ sha256 = "06nnqry36ncqacfzd8yvc4q59bwk3vgf9a14rkpph2hk2rfvq2m6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight2clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight2clipboard"; sha256 = "19r7abbpm31b0azf2v3xn0rjagg9h01i8g72qapp8dhqb4d9n9r0"; name = "highlight2clipboard"; }; @@ -29313,15 +29482,15 @@ hindent = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hindent"; - version = "20151113.324"; + version = "20151113.924"; src = fetchFromGitHub { owner = "chrisdone"; repo = "hindent"; - rev = "fe6a1f209d5e5a341606719c90eddf0c0c4e6df7"; - sha256 = "03pwflw5qrf1vk5c5ks3kimg2hij689kd7amsymrwm9lai51qik6"; + rev = "8158089e71b5fa3792e5349cff70fe9fdeb7a46b"; + sha256 = "1y52fpqc85ihfbwcb2zy91dgg40jrjj8mmrf8h8s693442rj6ip3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -29334,7 +29503,7 @@ hippie-exp-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-exp-ext"; - version = "20160502.1926"; + version = "20160503.126"; src = fetchFromGitHub { owner = "rubikitch"; repo = "hippie-exp-ext"; @@ -29342,7 +29511,7 @@ sha256 = "141ikpyns1gd6kjply8m9jy9gifx5xdw5bn4p29hrxgiw994a78d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-exp-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-exp-ext"; sha256 = "142s7cmgjnqdmac21yps3b071sv18lw068kmxchyxb0zsa067g9l"; name = "hippie-exp-ext"; }; @@ -29355,7 +29524,7 @@ hippie-expand-slime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-expand-slime"; - version = "20130907.432"; + version = "20130907.1032"; src = fetchFromGitHub { owner = "purcell"; repo = "hippie-expand-slime"; @@ -29363,7 +29532,7 @@ sha256 = "1l76r8hzhaapx76f6spm5jmjbrrm5zf79cpd5024xw3hpj1jbkjp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -29376,7 +29545,7 @@ hippie-namespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hippie-namespace"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "hippie-namespace"; @@ -29384,7 +29553,7 @@ sha256 = "0b5wrid428s11afc48d6mdifmd31gmzyrj9zcpd3jwk63ydiihdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -29397,7 +29566,7 @@ hipster-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hipster-theme"; - version = "20141205.2305"; + version = "20141206.505"; src = fetchFromGitHub { owner = "xzerocode"; repo = "hipster-theme"; @@ -29405,7 +29574,7 @@ sha256 = "17dcpwx2y464g8qi3ixlsf3la8dn0bkxax296bhfg4vh73dxccl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hipster-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hipster-theme"; sha256 = "1xrgpqlzp4lhh5h3sv7pg1nqzc9wcv1hs6ybv2h4x6jangicwfl2"; name = "hipster-theme"; }; @@ -29418,7 +29587,7 @@ history = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "history"; - version = "20150409.2034"; + version = "20150410.234"; src = fetchFromGitHub { owner = "boyw165"; repo = "history"; @@ -29426,7 +29595,7 @@ sha256 = "1dmrg39g0faqqkgrpcbybjbb91vcpkwawxsplckkj92y59zanq3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -29439,7 +29608,7 @@ historyf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "historyf"; - version = "20151123.2059"; + version = "20151124.259"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-historyf"; @@ -29447,7 +29616,7 @@ sha256 = "1y275fchhx0n6dv038hsr44a3bjghqdhc8j1dcpm2rvs8chgm8g0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -29460,7 +29629,7 @@ hive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }: melpaBuild { pname = "hive"; - version = "20131217.1012"; + version = "20131217.1612"; src = fetchFromGitHub { owner = "r0man"; repo = "hive-el"; @@ -29468,7 +29637,7 @@ sha256 = "097lrj9lgfa7szww324hlqywwkbi31n1pxfqyg0zbfj45djkp9bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hive"; sha256 = "1marz8gmk824hb0nkhaw48d4qw1xjk1aad27gviya7f5ilypxrya"; name = "hive"; }; @@ -29481,7 +29650,7 @@ hiwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hiwin"; - version = "20150825.427"; + version = "20150825.1027"; src = fetchFromGitHub { owner = "yoshida-mediba"; repo = "hiwin-mode"; @@ -29489,7 +29658,7 @@ sha256 = "177blksgncxpxd1zi9kmbcfjnpd3ll1szjxiyc4am8a6hs1dyyqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hiwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hiwin"; sha256 = "0klhxwxsz7xan2vsknw79r1dj4qhhjbfpddr67mk9qzccp8q0w8g"; name = "hiwin"; }; @@ -29502,7 +29671,7 @@ hl-anything = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-anything"; - version = "20160422.1308"; + version = "20160422.1908"; src = fetchFromGitHub { owner = "hl-anything"; repo = "hl-anything-emacs"; @@ -29510,7 +29679,7 @@ sha256 = "10ps1rb5fqwaw4lz3nz2rbsry4y81asmi5557g229h8xjhp6gpnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-anything"; sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; @@ -29522,13 +29691,13 @@ }) {}; hl-defined = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-defined"; - version = "20151231.1638"; + version = "20151231.2238"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-defined.el"; sha256 = "170sz6hjd85cw1x0y2g81ks3x3niib4f7y2xz6k8x0dpw357ggv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-defined"; sha256 = "1y7vbhvpwxz70kja5hfm4i57mdd1cv43m4y9fr978y3nk265p8xx"; name = "hl-defined"; }; @@ -29541,7 +29710,7 @@ hl-indent = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-indent"; - version = "20141227.1630"; + version = "20141227.2230"; src = fetchFromGitHub { owner = "ikirill"; repo = "hl-indent"; @@ -29549,7 +29718,7 @@ sha256 = "17apqs7yqd89mv5283kmwp7byaaimj7j0vis0z1d89jlmp8i6zbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-indent"; sha256 = "1z42kcwcyinjay65mv042ijh4xfaaiyri368g0sjw0fflsg0ikcr"; name = "hl-indent"; }; @@ -29561,13 +29730,13 @@ }) {}; hl-line-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-line-plus"; - version = "20151231.1639"; + version = "20151231.2239"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-line+.el"; sha256 = "1kxq79pfs83gp12p2g093m6shsf25q88mi29bvhapxx77ahmxpkn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-line+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-line+"; sha256 = "13yv2nmx1wb80z4yifnh6d67rag17wirmp7z8ssq3havjl8lbpix"; name = "hl-line-plus"; }; @@ -29580,7 +29749,7 @@ hl-sentence = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-sentence"; - version = "20140802.1220"; + version = "20140802.1820"; src = fetchFromGitHub { owner = "milkypostman"; repo = "hl-sentence"; @@ -29588,7 +29757,7 @@ sha256 = "0pjfbm8p077frk475bx8xkygn8r4vdsvnx4rcqbjlpjawj0ndgxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -29601,7 +29770,7 @@ hl-sexp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-sexp"; - version = "20101130.743"; + version = "20101130.1343"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "hl-sexp"; @@ -29609,7 +29778,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -29621,13 +29790,13 @@ }) {}; hl-spotlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-spotlight"; - version = "20151231.1640"; + version = "20151231.2240"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/hl-spotlight.el"; sha256 = "0m84d1rdsp9r5ip79jlrp69pf1daw0ch8c378q3kc328606i3p2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-spotlight"; sha256 = "1166g27fp2pj4j3a8904pzvp5idlq4l22i0w6lbk5c9zh5pqyyf3"; name = "hl-spotlight"; }; @@ -29640,7 +29809,7 @@ hl-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hl-todo"; - version = "20160521.1029"; + version = "20160521.1629"; src = fetchFromGitHub { owner = "tarsius"; repo = "hl-todo"; @@ -29648,7 +29817,7 @@ sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -29661,7 +29830,7 @@ hlint-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hlint-refactor"; - version = "20151124.1541"; + version = "20151124.2141"; src = fetchFromGitHub { owner = "mpickering"; repo = "hlint-refactor-mode"; @@ -29669,7 +29838,7 @@ sha256 = "02mkfrs55d32948x739f94v35343gw6a0f7fknbcigbz56mzsvsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hlint-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hlint-refactor"; sha256 = "1311z6y7ycwx0mj67bya7a39j5hiypg72y6yg93dhgpk23wk7frq"; name = "hlint-refactor"; }; @@ -29682,7 +29851,7 @@ hlinum = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hlinum"; - version = "20160522.12"; + version = "20160522.612"; src = fetchFromGitHub { owner = "tom-tan"; repo = "hlinum-mode"; @@ -29690,7 +29859,7 @@ sha256 = "1yfq55gzg6p17qbd9xf0g9cza5bzkvl47rkjq19mf6kjxk0ihkh7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hlinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hlinum"; sha256 = "04b6m0njr7yrbcbpkhqz4hmqpfacmyca3lw75dyw3vpjpsj2g0iv"; name = "hlinum"; }; @@ -29703,14 +29872,14 @@ hoa-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hoa-mode"; - version = "20151203.1150"; + version = "20151203.1750"; src = fetchgit { url = "https://gitlab.lrde.epita.fr/spot/emacs-modes.git"; rev = "3c608e15b655d2375c5f81323ac561c7848dc029"; - sha256 = "19360wx1i7lkr8igddm7zl9yh5hlm3r013rkd512cs18iz1y753x"; + sha256 = "1s3wgsgl1min2zbfr6wacb7wnff95r8kgmfzlma8b02440cmch5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-mode"; sha256 = "06rfqn7sqvmgpvwhfmk17qqs4q0frfzhm597z3p1q7kys2035kiv"; name = "hoa-mode"; }; @@ -29723,7 +29892,7 @@ hoa-pp-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "hoa-pp-mode"; - version = "20151027.336"; + version = "20151027.836"; src = fetchFromGitHub { owner = "hoaproject"; repo = "Contributions-Emacs-Pp"; @@ -29731,7 +29900,7 @@ sha256 = "0g2r4d0ivbadqw1k8jsv0jwv8krpfahsg0qmzyi909p2yfddqk1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -29744,7 +29913,7 @@ homebrew-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "homebrew-mode"; - version = "20160406.1225"; + version = "20160406.1825"; src = fetchFromGitHub { owner = "dunn"; repo = "homebrew-mode"; @@ -29752,7 +29921,7 @@ sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -29765,7 +29934,7 @@ hookify = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "hookify"; - version = "20141216.1709"; + version = "20141216.2309"; src = fetchFromGitHub { owner = "Silex"; repo = "hookify"; @@ -29773,7 +29942,7 @@ sha256 = "1d3dlkrv95xrpv4rv3jgn58mxs71f6vi2lr88bddhxz702vb11d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -29786,7 +29955,7 @@ hound = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, web }: melpaBuild { pname = "hound"; - version = "20150217.1249"; + version = "20150217.1849"; src = fetchFromGitHub { owner = "ryoung786"; repo = "hound.el"; @@ -29794,7 +29963,7 @@ sha256 = "1gm5nczq5lsxqkfb38ajffg65zwxkfqvqhk33bwnnd00rpa1ix6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hound"; sha256 = "0qri6bddd3c4sqvaqvmqw6xg46vwlfi1by3gc9i3izpq4xl1cr1v"; name = "hound"; }; @@ -29807,7 +29976,7 @@ how-many-lines-in-project = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "how-many-lines-in-project"; - version = "20140807.42"; + version = "20140807.642"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "how-many-lines-in-project"; @@ -29815,7 +29984,7 @@ sha256 = "0vygbdjy2dv7n50vrkcnqyswq48sgas0zzjfsac8x5g9vhxjkawj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/how-many-lines-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/how-many-lines-in-project"; sha256 = "1dfh1ydpjbrawqpsj6kydvy8sz3rlwn4ma5cizfw5spd2gcmj1zb"; name = "how-many-lines-in-project"; }; @@ -29828,7 +29997,7 @@ howdoi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "howdoi"; - version = "20150203.1943"; + version = "20150204.143"; src = fetchFromGitHub { owner = "atykhonov"; repo = "emacs-howdoi"; @@ -29836,7 +30005,7 @@ sha256 = "01sj9c8mxqaif8wh6zz9v2czjaq7vcdi66drldyjmifkln6rg2v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/howdoi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/howdoi"; sha256 = "12vgbypawxhhrnjp8dgh0wrcp7pvjccfaxw4yhq7msai7ik3h83b"; name = "howdoi"; }; @@ -29849,14 +30018,14 @@ howm = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "howm"; - version = "20160405.818"; + version = "20160405.1418"; src = fetchgit { url = "git://git.osdn.jp/gitroot/howm/howm.git"; rev = "6d6b4ca60e5c164a3e284ba82156b8ae33e83b7a"; - sha256 = "1ib97y2vm8whd2rqb8kgh0fk54mk3qjmij05bzmz4njz0k9crwgd"; + sha256 = "0q9rjy8i263d6fcyj0s1l95s7vajf15i2fkbkbmhh4rp63nd04g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/howm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/howm"; sha256 = "007r8mjn7m7m1mvsb1gaiqbizlwykh23k72g48nwan8bw556gfcr"; name = "howm"; }; @@ -29869,7 +30038,7 @@ ht = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ht"; - version = "20150830.1415"; + version = "20150830.2015"; src = fetchFromGitHub { owner = "Wilfred"; repo = "ht.el"; @@ -29877,7 +30046,7 @@ sha256 = "17x5w5kzam8cgaphyasnqzm2yhc0hwm38azvmin7ra4h912vlisd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -29890,7 +30059,7 @@ html-check-frag = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-check-frag"; - version = "20160131.35"; + version = "20160131.635"; src = fetchFromGitHub { owner = "TobiasZawada"; repo = "html-check-frag"; @@ -29898,7 +30067,7 @@ sha256 = "10lbxf56gvy26grzrhhx2p710fzs0h866jd2zmmgkisvyb0vaiay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-check-frag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-check-frag"; sha256 = "0drancb9ryifiln44b40l6cal0c7nyp597a6q26288s3v909yk2a"; name = "html-check-frag"; }; @@ -29911,7 +30080,7 @@ html-script-src = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-script-src"; - version = "20120403.1415"; + version = "20120403.2015"; src = fetchFromGitHub { owner = "rejeep"; repo = "html-script-src.el"; @@ -29919,7 +30088,7 @@ sha256 = "0k9ga0qi6h33akip2vrpclfp4zljnbw5ax40lxyxc1813hwkdrmh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-script-src"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-script-src"; sha256 = "0pdyc2a9wxxc9rivjm2kgh4ysdxmdp73wg37nfy2nzka1m7qni7j"; name = "html-script-src"; }; @@ -29932,7 +30101,7 @@ html-to-markdown = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "html-to-markdown"; - version = "20151105.340"; + version = "20151105.940"; src = fetchFromGitHub { owner = "Malabarba"; repo = "html-to-markdown"; @@ -29940,7 +30109,7 @@ sha256 = "09n3zm9ivln8ng80fv5vwwzh9mj355ni685axda3m85xfxgai8gi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -29952,14 +30121,14 @@ }) {}; htmlize = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "htmlize"; - version = "20130207.1502"; + version = "20130207.2102"; src = fetchgit { url = "http://fly.srk.fer.hr/~hniksic/emacs/htmlize.git"; rev = "aa6e2f6dba6fdfa200c7c55efe29ff63380eac8f"; - sha256 = "1vkqxgirc82vc44g7xhhr041arf93yirjin3h144kjyfkgkplnkp"; + sha256 = "0lc2j0zifjwzab2khwmd769i5497ddx28rb96y6zv2k261xziyla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/htmlize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/htmlize"; sha256 = "15pym76iwqb1dqkbmkgc1yar450g2xinfl89fyss2ifyi4am1nxp"; name = "htmlize"; }; @@ -29972,15 +30141,15 @@ http = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "http"; - version = "20160126.2325"; + version = "20160524.217"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "http.el"; - rev = "d563751d46e30ed5b5eda6d87ab2793b9b206c66"; - sha256 = "1i0r677zwnl5xl64cqk47y0gfd87vw49nf6ry5v2imbc95ni56wc"; + rev = "fa252e1acb7e76cbdbadf855cf8d5d4f0e30127b"; + sha256 = "09cq2s496p99c4n9y6awqs65w445if0zjxps2dcyn5s308h7gm9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http"; sha256 = "1176jhm8m7s1pzp0zv1sqawcgn4m5zvxghypmsrjyyb5p7m6dalm"; name = "http"; }; @@ -29992,13 +30161,13 @@ }) {}; http-post-simple = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "http-post-simple"; - version = "20131010.2358"; + version = "20131011.558"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/http-post-simple.el"; sha256 = "1wp2rwc1hgd5c3yr6b96yzzakd1qmy5d95mhc6q4f6lx279nx0my"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http-post-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http-post-simple"; sha256 = "1b2fh0hp5z3712ncgc5ns1f3sww84khkq7zb3k9xclsp1p12a4cf"; name = "http-post-simple"; }; @@ -30011,7 +30180,7 @@ http-twiddle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "http-twiddle"; - version = "20151121.844"; + version = "20151121.1444"; src = fetchFromGitHub { owner = "hassy"; repo = "http-twiddle"; @@ -30019,7 +30188,7 @@ sha256 = "008iq5fhsw4qklw2l457a1cfqq8diadpnf1c1di5p07sc0za5562"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/http-twiddle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/http-twiddle"; sha256 = "153qavpcwvk2g15w5a814xjsnsv54xksx4iz6yjffvvzq14a08ry"; name = "http-twiddle"; }; @@ -30032,7 +30201,7 @@ httpcode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "httpcode"; - version = "20121001.2345"; + version = "20121002.545"; src = fetchFromGitHub { owner = "rspivak"; repo = "httpcode.el"; @@ -30040,7 +30209,7 @@ sha256 = "02jz8qwxl69zhwvpmlqc15znr8x4f30paqszmm7xrrrz5x1c1rn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -30053,7 +30222,7 @@ httprepl = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "httprepl"; - version = "20141101.1334"; + version = "20141101.1834"; src = fetchFromGitHub { owner = "gregsexton"; repo = "httprepl.el"; @@ -30061,7 +30230,7 @@ sha256 = "0wd4wmy99mx677x4sdbp57bxxll1fsnnf8hk97r85xdmmjsmrkld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -30074,7 +30243,7 @@ hungry-delete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hungry-delete"; - version = "20151203.1614"; + version = "20151203.2214"; src = fetchFromGitHub { owner = "nflath"; repo = "hungry-delete"; @@ -30082,7 +30251,7 @@ sha256 = "1vy521ljn16a1lcmpj09mr9y0m15lfjhl6xk04sb7nisps3vljyl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hungry-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hungry-delete"; sha256 = "0hcsm3yndkyfqzb77ibx7df6bjppc34x5yabi6nd389pdscp9rpz"; name = "hungry-delete"; }; @@ -30095,7 +30264,7 @@ hy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hy-mode"; - version = "20151025.843"; + version = "20151025.1343"; src = fetchFromGitHub { owner = "hylang"; repo = "hy-mode"; @@ -30103,7 +30272,7 @@ sha256 = "0wn83n1780bvrzx9p870wln51n9rfdghsxl79dp968dxycyhyxvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hy-mode"; sha256 = "1vxrqla3p82x7s3kn7x4h33vcdfms21srxgxzidr02k37f0vi82m"; name = "hy-mode"; }; @@ -30116,7 +30285,7 @@ hyai = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyai"; - version = "20160319.2135"; + version = "20160320.235"; src = fetchFromGitHub { owner = "iquiw"; repo = "hyai"; @@ -30124,7 +30293,7 @@ sha256 = "0k7r5zddlfipnf6za467lmjx8s6h68dflj7gk05vqr4n4xniwgja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -30137,7 +30306,7 @@ hydandata-light-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hydandata-light-theme"; - version = "20160122.2053"; + version = "20160123.253"; src = fetchFromGitHub { owner = "hydandata"; repo = "hydandata-light-theme"; @@ -30145,7 +30314,7 @@ sha256 = "11vgz64f8vs8vqp4scj9qvrfdshag7bs615ly9zvzzlk68jivdya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydandata-light-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydandata-light-theme"; sha256 = "0jw43m91m10ifqg335y6d52r6ri77hcmxkird8wsyrpsnk3cfb60"; name = "hydandata-light-theme"; }; @@ -30158,7 +30327,7 @@ hyde = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hyde"; - version = "20160507.2308"; + version = "20160508.508"; src = fetchFromGitHub { owner = "nibrahim"; repo = "Hyde"; @@ -30166,7 +30335,7 @@ sha256 = "14sk9gai7sscvwgbl7y3dzz8fdhrqynilscmdimlncpm15w56m6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -30179,7 +30348,7 @@ hydra = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "hydra"; - version = "20160518.1021"; + version = "20160518.1621"; src = fetchFromGitHub { owner = "abo-abo"; repo = "hydra"; @@ -30187,7 +30356,7 @@ sha256 = "05d4h87hshfgr8wnfmdypr4a93sglk3a8z1nfvswlag8cgnvyz63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -30200,7 +30369,7 @@ i2b2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "i2b2-mode"; - version = "20140709.2104"; + version = "20140710.304"; src = fetchFromGitHub { owner = "danlamanna"; repo = "i2b2-mode"; @@ -30208,7 +30377,7 @@ sha256 = "17k41rah17l9kf7bvlm83x71nzz4aizgn7254cl5sb59mdhcm8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/i2b2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/i2b2-mode"; sha256 = "172qnprmfliic3rszzg3g7q015i3dchd23skrbdikg0kxj5c57lf"; name = "i2b2-mode"; }; @@ -30221,7 +30390,7 @@ iasm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iasm-mode"; - version = "20131004.1944"; + version = "20131005.144"; src = fetchFromGitHub { owner = "RAttab"; repo = "iasm-mode"; @@ -30229,7 +30398,7 @@ sha256 = "1gl21li9vqfjvls4ffjw8a4bicas2c7hmaa621k3hpllgpy6qdg5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iasm-mode"; sha256 = "09xh41ayaha07fi5crk3c6pn17gwm3samsf6h71ldkywvz74kipv"; name = "iasm-mode"; }; @@ -30242,7 +30411,7 @@ ibuffer-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-git"; - version = "20110508.331"; + version = "20110508.931"; src = fetchFromGitHub { owner = "jrockway"; repo = "ibuffer-git"; @@ -30250,7 +30419,7 @@ sha256 = "1s5qvlf310b0z7q9k1xhcf4qmyfqd37jpqd67ciahaxk7cp224rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-git"; sha256 = "048888y07bzmi9x5i43fg6bgqbzdqi3nfjfnn6zr29jvlx366r5z"; name = "ibuffer-git"; }; @@ -30263,7 +30432,7 @@ ibuffer-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "ibuffer-projectile"; - version = "20150121.1137"; + version = "20150121.1737"; src = fetchFromGitHub { owner = "purcell"; repo = "ibuffer-projectile"; @@ -30271,7 +30440,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -30284,7 +30453,7 @@ ibuffer-rcirc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-rcirc"; - version = "20150215.1618"; + version = "20150215.2218"; src = fetchFromGitHub { owner = "fgallina"; repo = "ibuffer-rcirc"; @@ -30292,7 +30461,7 @@ sha256 = "15lapyj7qkkw1i1g1aizappm7gxkfnxhvd4fq66lghkzb76clz2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-rcirc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-rcirc"; sha256 = "1y6pyc6g8j42hs103yynjsdkkxvcq0q4xsz4r93rqwsr3za3wcmc"; name = "ibuffer-rcirc"; }; @@ -30305,7 +30474,7 @@ ibuffer-tramp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-tramp"; - version = "20151118.1239"; + version = "20151118.1839"; src = fetchFromGitHub { owner = "svend"; repo = "ibuffer-tramp"; @@ -30313,7 +30482,7 @@ sha256 = "1mfrbr725p27p3s5nxh7xhm81pdr78ysz8l3kwrlp97bb6dmljmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-tramp"; sha256 = "11a9b9g1jk2r3fldi012zka4jzy68kfn4991xp046qm2fbc7la32"; name = "ibuffer-tramp"; }; @@ -30326,7 +30495,7 @@ ibuffer-vc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ibuffer-vc"; - version = "20150714.1620"; + version = "20150714.2220"; src = fetchFromGitHub { owner = "purcell"; repo = "ibuffer-vc"; @@ -30334,7 +30503,7 @@ sha256 = "0fwxhkx5rkyv3w5vs2swhmly9siahlww2ipsmk7v8xmvk4a63bhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -30346,13 +30515,13 @@ }) {}; icicles = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "icicles"; - version = "20160521.1759"; + version = "20160530.146"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/icicles.el"; sha256 = "1ppximw1j433hfp63apnsz9wgq1nj1lh5cd0zfchrkmgfyhymq7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/icicles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/icicles"; sha256 = "15h2511gm38q14avsd86j5mnxhsjvcdmwbnhj66ashj5p5nxhr92"; name = "icicles"; }; @@ -30364,13 +30533,13 @@ }) {}; icomplete-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "icomplete-plus"; - version = "20151231.1700"; + version = "20151231.2300"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/icomplete+.el"; sha256 = "0z7v4pj0m6pwrjzyzz2xmwf6a53kmka9hxlzd1dxcpzx47pyvz3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/icomplete+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/icomplete+"; sha256 = "0gxqkj4bjrxb046qisfz22wvanxx6bzl4hfv91rfwm78q3484slx"; name = "icomplete-plus"; }; @@ -30383,7 +30552,7 @@ id-manager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "id-manager"; - version = "20160425.516"; + version = "20160425.1116"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-id-manager"; @@ -30391,7 +30560,7 @@ sha256 = "0xd0zhbabb9cx4rsapvq6qs40w4q2cav6p16vrka54rmr98544vl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/id-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/id-manager"; sha256 = "13g5fi06hvx0x2wn1d1d8rkfq5n6wbk9g5bhx2b5sar2yw0akmwm"; name = "id-manager"; }; @@ -30404,7 +30573,7 @@ idea-darkula-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idea-darkula-theme"; - version = "20160416.1903"; + version = "20160417.103"; src = fetchFromGitHub { owner = "fourier"; repo = "idea-darkula-theme"; @@ -30412,7 +30581,7 @@ sha256 = "1hknhbm3b5rsba2s84iwspylhzjsm91zdckz22j9gyrq37wjgyrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idea-darkula-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idea-darkula-theme"; sha256 = "0lanhwlhd7pbzjc047vd5sgsmi2bx66gr3inr8y57swgrfw3l8sk"; name = "idea-darkula-theme"; }; @@ -30425,7 +30594,7 @@ identica-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "identica-mode"; - version = "20130204.1753"; + version = "20130204.2353"; src = fetchFromGitHub { owner = "gabrielsaldana"; repo = "Emacs-Identica-mode"; @@ -30433,7 +30602,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -30446,7 +30615,7 @@ idle-highlight-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idle-highlight-mode"; - version = "20120920.1248"; + version = "20120920.1848"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "idle-highlight-mode"; @@ -30454,7 +30623,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -30467,7 +30636,7 @@ idle-require = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idle-require"; - version = "20090715.1803"; + version = "20090716.3"; src = fetchFromGitHub { owner = "nschum"; repo = "idle-require.el"; @@ -30475,7 +30644,7 @@ sha256 = "0f8rxvc3dk2hi4x524l18fx73xrxy0qqwbybdma4ca67ck9n6xam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-require"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-require"; sha256 = "1lr330bqj4rfh2jgn3562sliani4yw5y4j2hr6cq9cfjjp18qgsj"; name = "idle-require"; }; @@ -30488,7 +30657,7 @@ ido-at-point = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-at-point"; - version = "20151021.357"; + version = "20151021.957"; src = fetchFromGitHub { owner = "katspaugh"; repo = "ido-at-point"; @@ -30496,7 +30665,7 @@ sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-at-point"; sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; name = "ido-at-point"; }; @@ -30509,7 +30678,7 @@ ido-clever-match = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-clever-match"; - version = "20151011.1326"; + version = "20151011.1926"; src = fetchFromGitHub { owner = "Bogdanp"; repo = "ido-clever-match"; @@ -30517,7 +30686,7 @@ sha256 = "14nmldahr0pj2x4vkzpnpx0bsxafmiihgjylk5j5linqvy8q6wk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-clever-match"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-clever-match"; sha256 = "081i6cjvqyfpgj0nvzc94zrl2v3l6nv6mhfda4zf7c8qqbvx1m8m"; name = "ido-clever-match"; }; @@ -30530,7 +30699,7 @@ ido-complete-space-or-hyphen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-complete-space-or-hyphen"; - version = "20130228.508"; + version = "20130228.1108"; src = fetchFromGitHub { owner = "doitian"; repo = "ido-complete-space-or-hyphen"; @@ -30538,7 +30707,7 @@ sha256 = "1aih8n10lcrw0bdgvlrkxzhkpxpmphw07cvbp6zd27ia25037fzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -30551,7 +30720,7 @@ ido-completing-read-plus = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-completing-read-plus"; - version = "20160320.238"; + version = "20160320.738"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; @@ -30559,7 +30728,7 @@ sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -30572,7 +30741,7 @@ ido-describe-bindings = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-describe-bindings"; - version = "20160105.353"; + version = "20160105.953"; src = fetchFromGitHub { owner = "danil"; repo = "ido-describe-bindings"; @@ -30580,7 +30749,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -30593,7 +30762,7 @@ ido-exit-target = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-exit-target"; - version = "20150904.1037"; + version = "20150904.1637"; src = fetchFromGitHub { owner = "waymondo"; repo = "ido-exit-target"; @@ -30601,7 +30770,7 @@ sha256 = "1s93q47cadanynvm1y4y08s68yq0l8q8vfasdk7w39vrjsxxsj3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-exit-target"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-exit-target"; sha256 = "17vmg47xwk6yjlbcsswirl8s2q565k291ajzjglnz7qg2fwx6spi"; name = "ido-exit-target"; }; @@ -30614,7 +30783,7 @@ ido-gnus = callPackage ({ fetchFromGitHub, fetchurl, gnus ? null, lib, melpaBuild }: melpaBuild { pname = "ido-gnus"; - version = "20140216.1146"; + version = "20140216.1746"; src = fetchFromGitHub { owner = "vapniks"; repo = "ido-gnus"; @@ -30622,7 +30791,7 @@ sha256 = "0ifdwd5vnjv2iyb5bnz8pij35lc0ymmyx8j8zhpkbgjigz8f05ip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-gnus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-gnus"; sha256 = "14ijb8q4s846984h102h72ij713v5bj3k2vfdvr94gw1f0iya2yg"; name = "ido-gnus"; }; @@ -30635,7 +30804,7 @@ ido-grid-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-grid-mode"; - version = "20160122.639"; + version = "20160122.1239"; src = fetchFromGitHub { owner = "larkery"; repo = "ido-grid-mode.el"; @@ -30643,7 +30812,7 @@ sha256 = "1ip8g0r0aimhc4a1f06m711zmbs0krxn8hmayk99gk5kkz12igkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -30656,7 +30825,7 @@ ido-hacks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-hacks"; - version = "20150331.1509"; + version = "20150331.2109"; src = fetchFromGitHub { owner = "scottjad"; repo = "ido-hacks"; @@ -30664,7 +30833,7 @@ sha256 = "01p4az128k1jvd9i1gshgg87z6048cw9cnm57l8qdlw01c3h6dkx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-hacks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-hacks"; sha256 = "05f9pdkqppnp7wafka2d2yj84gqchjd7vnrl5rcywy1l47gbxiw0"; name = "ido-hacks"; }; @@ -30677,7 +30846,7 @@ ido-load-library = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "ido-load-library"; - version = "20140611.1200"; + version = "20140611.1800"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ido-load-library"; @@ -30685,7 +30854,7 @@ sha256 = "0l69sr3g1n2x61j6sv6hnbiyk8a2qra6y2kh413qp0sfpx4fzchv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -30698,7 +30867,7 @@ ido-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo }: melpaBuild { pname = "ido-migemo"; - version = "20150921.1844"; + version = "20150922.44"; src = fetchFromGitHub { owner = "myuhe"; repo = "ido-migemo.el"; @@ -30706,7 +30875,7 @@ sha256 = "15iajhrgy989pn91ijcd1mq2015bkaacaplm79rmb0ggxhh8vq38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-migemo"; sha256 = "02hbwchwx2bcwdxz7gz555699l7n9wisfikax1j6idn167n4wdpi"; name = "ido-migemo"; }; @@ -30719,7 +30888,7 @@ ido-occasional = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-occasional"; - version = "20150214.748"; + version = "20150214.1348"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ido-occasional"; @@ -30727,7 +30896,7 @@ sha256 = "0zlkq29wxd3a4vg0w6ds2jad5h1pja7ccd3l6ppl0kz1b1517qlr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occasional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occasional"; sha256 = "1vdh5i9qznzd9r148a6jw9v47swf7ykwyciqfzc3ismv5q909bl2"; name = "ido-occasional"; }; @@ -30740,15 +30909,15 @@ ido-occur = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-occur"; - version = "20160114.1413"; + version = "20160527.1309"; src = fetchFromGitHub { owner = "danil"; repo = "ido-occur"; - rev = "7d2e42bf239cacb90e6240b8014e6b20b24e89cf"; - sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; + rev = "10f6acfd01eb61c5b27031be6b26f034667a465d"; + sha256 = "0i1mcpg69rkfjpis7l1106gfqlvf1z48f5j5jkjc9xqcdr5zm09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -30761,7 +30930,7 @@ ido-select-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-select-window"; - version = "20131220.1547"; + version = "20131220.2147"; src = fetchFromGitHub { owner = "pjones"; repo = "ido-select-window"; @@ -30769,7 +30938,7 @@ sha256 = "0qvf3h2ljlbf3z36dhywzza62mfi6mqbrfc0sqfsbyia9bn1df4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-select-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-select-window"; sha256 = "03xqfpnagy2sk67yq7n7s6ma3im37d558zzx8sdzd9pbfxy9ij23"; name = "ido-select-window"; }; @@ -30782,7 +30951,7 @@ ido-skk = callPackage ({ ddskk, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-skk"; - version = "20151111.450"; + version = "20151111.1050"; src = fetchFromGitHub { owner = "tsukimizake"; repo = "ido-skk"; @@ -30790,7 +30959,7 @@ sha256 = "149cznbybwj0gkjyvpnh4kn258kxw449m7cn95n9jbh1r45vljvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-skk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-skk"; sha256 = "1fyzjkw9xp126bzfv1254bvyakh323iw3wdzrkd9gb4ir39k5jzw"; name = "ido-skk"; }; @@ -30803,7 +30972,7 @@ ido-sort-mtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-sort-mtime"; - version = "20131117.830"; + version = "20131117.1430"; src = fetchFromGitHub { owner = "pkkm"; repo = "ido-sort-mtime"; @@ -30811,7 +30980,7 @@ sha256 = "0w3cr2yf8644i0g8w6r147vi9wanibn41sg7dzws51yb9q0y92vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-sort-mtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-sort-mtime"; sha256 = "1dkny9y3x49dv1vjwz78x2qhb6kdq3fa8qh1xkm30jyapvgiwdg2"; name = "ido-sort-mtime"; }; @@ -30824,7 +30993,7 @@ ido-springboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-springboard"; - version = "20150505.1311"; + version = "20150505.1911"; src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; @@ -30832,7 +31001,7 @@ sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-springboard"; sha256 = "04jqnag8jiyfbwvc3vd9ikrsmf6cajld7dz2gz9y0zkj1k4gs7zv"; name = "ido-springboard"; }; @@ -30845,7 +31014,7 @@ ido-ubiquitous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-ubiquitous"; - version = "20160320.238"; + version = "20160320.738"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-ubiquitous"; @@ -30853,7 +31022,7 @@ sha256 = "13mcpc8qlv0mvabd33cah1zqybfa0hrzanp16ikbsc449zyz3889"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; @@ -30866,7 +31035,7 @@ ido-vertical-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-vertical-mode"; - version = "20160429.1337"; + version = "20160429.1937"; src = fetchFromGitHub { owner = "creichert"; repo = "ido-vertical-mode.el"; @@ -30874,7 +31043,7 @@ sha256 = "1h0kwsrg0xaqmk37hij2ssi9vcvxq49bdc4s3amwc45x1i369q7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -30887,7 +31056,7 @@ ido-yes-or-no = callPackage ({ fetchFromGitHub, fetchurl, ido-completing-read-plus, lib, melpaBuild }: melpaBuild { pname = "ido-yes-or-no"; - version = "20160217.1917"; + version = "20160218.117"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "ido-yes-or-no"; @@ -30895,7 +31064,7 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; @@ -30908,7 +31077,7 @@ idomenu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "idomenu"; - version = "20141123.1620"; + version = "20141123.2220"; src = fetchFromGitHub { owner = "birkenfeld"; repo = "idomenu"; @@ -30916,7 +31085,7 @@ sha256 = "1vx2g1xgxpcabr49mkl6ggzrpa3k2zhm479j6262vb64swzx33jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -30929,7 +31098,7 @@ idris-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, prop-menu }: melpaBuild { pname = "idris-mode"; - version = "20160302.935"; + version = "20160302.1535"; src = fetchFromGitHub { owner = "idris-hackers"; repo = "idris-mode"; @@ -30937,7 +31106,7 @@ sha256 = "0ngqsh0ncwcr377ifvnx5j352bf1f7lhcq7qc8avcn5pwlshri4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -30950,7 +31119,7 @@ ids-edit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ids-edit"; - version = "20160324.1822"; + version = "20160324.2322"; src = fetchFromGitHub { owner = "kawabata"; repo = "ids-edit"; @@ -30958,7 +31127,7 @@ sha256 = "18dca47ds5fiihijd1vv7nif44n4b4nv4za2djjfqbhbvizra1fd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ids-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ids-edit"; sha256 = "0jzmcynr6lvsr36nblqzrjwxawyqcdz972zsv4rqkihdydpqfz7m"; name = "ids-edit"; }; @@ -30971,15 +31140,15 @@ iedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iedit"; - version = "20160517.40"; + version = "20160530.355"; src = fetchFromGitHub { owner = "victorhge"; repo = "iedit"; - rev = "4884f61a3b30c98cf9fc080aab4351e16cb6e5f4"; - sha256 = "0wl3k7hl2gvxvzgrljwkyaxhkqqh0hi8n7yni5cl3y5z8cdafbzj"; + rev = "c742ae4fa61b647cd2bce724af50f4aa80d33ff1"; + sha256 = "02n1lmjjabqbdhq94x6xmgh2063rrh6q4k4fxc3r6dvdidx246yc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -30992,7 +31161,7 @@ ietf-docs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ietf-docs"; - version = "20150928.557"; + version = "20150928.1157"; src = fetchFromGitHub { owner = "choppsv1"; repo = "ietf-docs"; @@ -31000,7 +31169,7 @@ sha256 = "0b86x675g95yrlc0alffx0z9fmficlwv3gpy5cy86z1xvvyh3nzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ietf-docs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ietf-docs"; sha256 = "0wnk36z9g7lksmynd04hb2m6rx45wpxnxj1lhrlpjnzsrknhf4k3"; name = "ietf-docs"; }; @@ -31013,7 +31182,7 @@ iflipb = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iflipb"; - version = "20141123.1616"; + version = "20141123.2216"; src = fetchFromGitHub { owner = "jrosdahl"; repo = "iflipb"; @@ -31021,7 +31190,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -31034,7 +31203,7 @@ ignoramus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ignoramus"; - version = "20160414.1009"; + version = "20160414.1609"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ignoramus"; @@ -31042,7 +31211,7 @@ sha256 = "1b4r4h8yrs8zkyr1hnnx2wjrmm39wbqxfhyxpjb5pxi4zk3fh4rj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -31054,13 +31223,13 @@ }) {}; igrep = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "igrep"; - version = "20130824.807"; + version = "20130824.1407"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/igrep.el"; sha256 = "0qiv69v7ig38iizif7zg8aljdmpa1jk8bsfa0iyhqqqrkvsmhc29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/igrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/igrep"; sha256 = "1vyhrziy29q6w8w9vvanb7d29r1n7nfkznbcd62il991n48d08i3"; name = "igrep"; }; @@ -31072,14 +31241,14 @@ }) {}; igv = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "igv"; - version = "20141210.727"; + version = "20141210.1327"; src = fetchgit { url = "https://bitbucket.org/sbarbit/eigv"; rev = "47ac6ceede252f451348a2c696398c0cb5279555"; sha256 = "11pss3hfxkfkyi273zfajdj43shdl6pn739zfv9jbm75v7m9bz6f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/igv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/igv"; sha256 = "01igm3cb0lncmcyy72mjf93byh42k2hvscqhg8r7iljbxm58460z"; name = "igv"; }; @@ -31092,7 +31261,7 @@ image-archive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-archive"; - version = "20150620.2132"; + version = "20150621.332"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-image-archive"; @@ -31100,7 +31269,7 @@ sha256 = "068z3ygq9p139ikm04xqhhqhc994an5isba5c7kpqs009y09xw3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -31113,7 +31282,7 @@ image-dired-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-dired-plus"; - version = "20150430.144"; + version = "20150430.744"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-image-diredx"; @@ -31121,7 +31290,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -31134,7 +31303,7 @@ image-plus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "image-plus"; - version = "20150707.1216"; + version = "20150707.1816"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-imagex"; @@ -31142,7 +31311,7 @@ sha256 = "0v66wk9nh0raih4jhrzmmyi5lbysjnmbv791vm2230ffi2hmwxnd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -31155,7 +31324,7 @@ imakado = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imakado"; - version = "20141024.523"; + version = "20141024.1123"; src = fetchFromGitHub { owner = "imakado"; repo = "emacs-imakado"; @@ -31163,7 +31332,7 @@ sha256 = "0f3xdqhq9nprvl8bnmgrx20h08ddkfak0is29bsqwckkfgn7pmqp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imakado"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imakado"; sha256 = "18mj0vpv3dybfpa8hl9jwlagsivbhgqgz8lwb8cswsq9hwv3jgd3"; name = "imakado"; }; @@ -31176,7 +31345,7 @@ imapfilter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imapfilter"; - version = "20160419.546"; + version = "20160419.1146"; src = fetchFromGitHub { owner = "tarsius"; repo = "imapfilter"; @@ -31184,7 +31353,7 @@ sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imapfilter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imapfilter"; sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; name = "imapfilter"; }; @@ -31197,7 +31366,7 @@ imenu-anywhere = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-anywhere"; - version = "20160520.620"; + version = "20160520.1220"; src = fetchFromGitHub { owner = "vspinu"; repo = "imenu-anywhere"; @@ -31205,7 +31374,7 @@ sha256 = "0md20p0pkk7s9fnh4a6j808iri79lq70sq30hcy97pjrafrqfkky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-anywhere"; sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; @@ -31218,7 +31387,7 @@ imenu-list = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-list"; - version = "20160211.641"; + version = "20160211.1241"; src = fetchFromGitHub { owner = "bmag"; repo = "imenu-list"; @@ -31226,7 +31395,7 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -31238,13 +31407,13 @@ }) {}; imenu-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenu-plus"; - version = "20151231.1701"; + version = "20151231.2301"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/imenu+.el"; sha256 = "00w88d37mg2hdrzpw5cxrgqz5jbf7rylmir95hs8j1cm8fk787bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu+"; sha256 = "1v2h3xs5pnv7z5qphkn2y5pa1p8pivrknkw7xihm5yr4a4dqjv5d"; name = "imenu-plus"; }; @@ -31257,7 +31426,7 @@ imenus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imenus"; - version = "20160220.1632"; + version = "20160220.2232"; src = fetchFromGitHub { owner = "alezost"; repo = "imenus.el"; @@ -31265,7 +31434,7 @@ sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -31278,7 +31447,7 @@ imgix = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, json ? null, lib, melpaBuild, s }: melpaBuild { pname = "imgix"; - version = "20141226.1632"; + version = "20141226.2232"; src = fetchFromGitHub { owner = "imgix"; repo = "imgix-emacs"; @@ -31286,7 +31455,7 @@ sha256 = "1q53r3f3x0hpzryxd1v1w3qgs54p384q0azi7xj2gppi1q49sa42"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -31299,7 +31468,7 @@ imgur = callPackage ({ anything, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "imgur"; - version = "20120307.525"; + version = "20120307.1125"; src = fetchFromGitHub { owner = "myuhe"; repo = "imgur.el"; @@ -31307,7 +31476,7 @@ sha256 = "0nzgfj083im8lc62ifgsh1pmbw0j9wivimjgih7k6ny3jgw834rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgur"; sha256 = "0hr2zz7nq65jig2036g5sa8q2lhb42jv40ijikcz8s4f5v3y14i7"; name = "imgur"; }; @@ -31320,14 +31489,14 @@ immortal-scratch = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "immortal-scratch"; - version = "20160517.1718"; + version = "20160517.2318"; src = fetchhg { url = "https://bitbucket.com/jpkotta/immortal-scratch"; rev = "b354aba33d91"; sha256 = "1mx9f8pwnbrm6q9ngdyv64aqkw1izj83m0mf7zqlpww7yfhv1q9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/immortal-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immortal-scratch"; sha256 = "0rxhaqivvjij59hhv3mh4wwrc0bl0xv144j1i237xhlvhxk6nnn6"; name = "immortal-scratch"; }; @@ -31340,7 +31509,7 @@ immutant-server = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "immutant-server"; - version = "20140311.1808"; + version = "20140311.2308"; src = fetchFromGitHub { owner = "leathekd"; repo = "immutant-server.el"; @@ -31348,7 +31517,7 @@ sha256 = "0rbamm9qvipgswxng8g1d7rbdbcj7sgwrccg7imcfapwwq7xhj4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -31361,7 +31530,7 @@ impatient-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "impatient-mode"; - version = "20150501.547"; + version = "20150501.1147"; src = fetchFromGitHub { owner = "netguy204"; repo = "imp.el"; @@ -31369,7 +31538,7 @@ sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/impatient-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/impatient-mode"; sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg"; name = "impatient-mode"; }; @@ -31382,7 +31551,7 @@ import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "import-js"; - version = "20160505.110"; + version = "20160505.710"; src = fetchFromGitHub { owner = "galooshi"; repo = "emacs-import-js"; @@ -31390,7 +31559,7 @@ sha256 = "1pv29qxiz9yqfp67fjj4mk8bqxs5y4qwcpx4kvznpfzdcwsza53j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-js"; sha256 = "0qzr4vfv3whdly73k7x621dwznca7nlhd3gpppr2w2sg12jym5ha"; name = "import-js"; }; @@ -31403,7 +31572,7 @@ import-popwin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "import-popwin"; - version = "20150716.533"; + version = "20150716.1133"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-import-popwin"; @@ -31411,7 +31580,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -31424,7 +31593,7 @@ indent-guide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indent-guide"; - version = "20151119.1017"; + version = "20151119.1617"; src = fetchFromGitHub { owner = "zk-phi"; repo = "indent-guide"; @@ -31432,7 +31601,7 @@ sha256 = "1p54w9dwkc76nvc4m0q9a0lh4bdxp4ad1wzscadayqy8qbrylf97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indent-guide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indent-guide"; sha256 = "029fj9rr9vfmkysi6lzpwra92j6ppw675qpj3sinfq7fqqlicvp7"; name = "indent-guide"; }; @@ -31445,7 +31614,7 @@ indicators = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indicators"; - version = "20130217.1705"; + version = "20130217.2305"; src = fetchFromGitHub { owner = "Fuco1"; repo = "indicators.el"; @@ -31453,7 +31622,7 @@ sha256 = "1zsw68zzvjjh93cldc0w83k67hzcgi226vz3d0nzqc9sczqk8civ"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indicators"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indicators"; sha256 = "1rhmz8sfi2gnv72sbw6kgyzidk43mnp05wnscw9vjvz9v0vwirss"; name = "indicators"; }; @@ -31466,7 +31635,7 @@ indy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "indy"; - version = "20150610.1306"; + version = "20150610.1906"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "indy"; @@ -31474,7 +31643,7 @@ sha256 = "0kv0aj444i2rzksvcfz8sw0yyig3ca3m05agnhw9jzr01y05yl1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/indy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/indy"; sha256 = "118n3n07h1vx576fdv6v5a94aa004q0gmy9hlsnrswpxa30ahnw7"; name = "indy"; }; @@ -31487,7 +31656,7 @@ inf-clojure = callPackage ({ clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-clojure"; - version = "20160405.38"; + version = "20160405.638"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "inf-clojure"; @@ -31495,7 +31664,7 @@ sha256 = "1632q7zbqqs5nvvxly3b2fj9b9q9mgxwh5sspamj7442s7i0j645"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -31508,7 +31677,7 @@ inf-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-mongo"; - version = "20131216.528"; + version = "20131216.1128"; src = fetchFromGitHub { owner = "tobiassvn"; repo = "inf-mongo"; @@ -31516,7 +31685,7 @@ sha256 = "14kf3zvms1w8cbixhpgw3m2xxc2r87i57gmx00jwh89282i6kgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-mongo"; sha256 = "09hf3jmacsk4hl0rxk35cza8vjl0xfmv19dagb8h8fli97fb65hh"; name = "inf-mongo"; }; @@ -31529,7 +31698,7 @@ inf-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode }: melpaBuild { pname = "inf-php"; - version = "20130414.321"; + version = "20130414.921"; src = fetchFromGitHub { owner = "taksatou"; repo = "inf-php"; @@ -31537,7 +31706,7 @@ sha256 = "1z5ns94xgj2dkv2sc2ckax6bzwdxsm19pkvni24ys2w7d5nhajzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-php"; sha256 = "011sc6f0ka7mmik8z0df8qk24mf6ygq22jy781f2ikhjh94gy83d"; name = "inf-php"; }; @@ -31550,7 +31719,7 @@ inf-ruby = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inf-ruby"; - version = "20160423.1137"; + version = "20160423.1737"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "inf-ruby"; @@ -31558,7 +31727,7 @@ sha256 = "12qjz6bp6p6yh5nxin6w7snil9954mhd4kfnk0wwbijpd1lqw73l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -31571,7 +31740,7 @@ inflections = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inflections"; - version = "20121016.457"; + version = "20121016.1057"; src = fetchFromGitHub { owner = "eschulte"; repo = "jump.el"; @@ -31579,7 +31748,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -31591,13 +31760,13 @@ }) {}; info-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "info-plus"; - version = "20151231.1703"; + version = "20151231.2303"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/info+.el"; sha256 = "068y1p44ynimxfrqgrrhrj4gldf661dr0kbc9p7dqm1mw928hxmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/info+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/info+"; sha256 = "0flpmi8dsaalg14xd86xcr087j51899sm8ghsa150ag4g4acfggr"; name = "info-plus"; }; @@ -31610,7 +31779,7 @@ inform7-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "inform7-mode"; - version = "20131010.254"; + version = "20131010.854"; src = fetchFromGitHub { owner = "fred-o"; repo = "inform7-mode"; @@ -31618,7 +31787,7 @@ sha256 = "19kc6a8jkx22rg9xp862pqfhv0an7q6fs7v7i2kxp3ji55aq001w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inform7-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inform7-mode"; sha256 = "0fpnf9rgizsfz9pn06k87v4s0dr7z1pn0gdxfi6hnnv68qni8hg3"; name = "inform7-mode"; }; @@ -31631,15 +31800,15 @@ init-loader = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "init-loader"; - version = "20141031.233"; + version = "20160528.1515"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "init-loader"; - rev = "1f28a0b801cbb08aa9b47fd15ceab243a2bc064c"; - sha256 = "1zykh80k2sy0as1rn7qaa2hyvkagcvzzmxik4jpb0apw0ha1bf6s"; + rev = "287da99eadfa3dd85492506db43d68324069b593"; + sha256 = "03a655qzcwizv9hvfcp47466axsrq0h049fdd79xk6zmans5s6fj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -31652,15 +31821,15 @@ init-open-recentf = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "init-open-recentf"; - version = "20151106.2323"; + version = "20160602.500"; src = fetchFromGitHub { owner = "zonuexe"; repo = "init-open-recentf.el"; - rev = "f7999730ed8b02a9f4b9f884defd40a90772765b"; - sha256 = "0xk7lyhd9pgahbscqwa2qkh2vgnbs5yz78am3zh930k4ig9lbmjh"; + rev = "002375a6aefc812a3f52ff326e489fa0ffedaea1"; + sha256 = "0vbqmz9kcdxwwsid1fclwakhcq268jhbwqc5hgpywp8w2b83mjs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -31673,7 +31842,7 @@ initsplit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "initsplit"; - version = "20160113.953"; + version = "20160113.1553"; src = fetchFromGitHub { owner = "dabrahams"; repo = "initsplit"; @@ -31681,7 +31850,7 @@ sha256 = "1qvkxpxdv0n9qlzigvi25iw485824pgbpb10lwhh8bs2074dvrgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -31694,7 +31863,7 @@ inkpot-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inkpot-theme"; - version = "20120505.1008"; + version = "20120505.1608"; src = fetchFromGitHub { owner = "siovan"; repo = "emacs24-inkpot"; @@ -31702,7 +31871,7 @@ sha256 = "063v3a783si5fi8jrnysss60qma1c3whvyb48i10qbrrrx750cmv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inkpot-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inkpot-theme"; sha256 = "0w4q74w769n88zb2q7x326cxji42278lf95wnpslgjybnaxycgw7"; name = "inkpot-theme"; }; @@ -31715,7 +31884,7 @@ inline-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inline-crypt"; - version = "20130409.807"; + version = "20130409.1407"; src = fetchFromGitHub { owner = "Sodel-the-Vociferous"; repo = "inline-crypt-el"; @@ -31723,7 +31892,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -31736,7 +31905,7 @@ inlineR = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "inlineR"; - version = "20120520.1032"; + version = "20120520.1632"; src = fetchFromGitHub { owner = "myuhe"; repo = "inlineR.el"; @@ -31744,7 +31913,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -31757,7 +31926,7 @@ insert-shebang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "insert-shebang"; - version = "20160413.1012"; + version = "20160413.1612"; src = fetchFromGitHub { owner = "psachin"; repo = "insert-shebang"; @@ -31765,7 +31934,7 @@ sha256 = "198pgj0xsfyp8s1kkjjp48w7j3i5cf6zsp46vdwiifj64yfmq7yi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -31778,7 +31947,7 @@ insfactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "insfactor"; - version = "20141116.1902"; + version = "20141117.102"; src = fetchFromGitHub { owner = "duelinmarkers"; repo = "insfactor.el"; @@ -31786,7 +31955,7 @@ sha256 = "112s3c0ii8zjc6vlj2im2qd2pl3hb95pq4zibm86gjpw428wd8iy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insfactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insfactor"; sha256 = "0c6q1d864qc78sqk9iadjpd01xc7myipgnf89pqa2z75yprndvyn"; name = "insfactor"; }; @@ -31799,14 +31968,14 @@ instapaper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "instapaper"; - version = "20130104.921"; + version = "20130104.1521"; src = fetchhg { url = "https://bitbucket.com/jfm/emacs-instapaper"; rev = "8daa0058ede7"; sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -31819,7 +31988,7 @@ interaction-log = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interaction-log"; - version = "20160305.801"; + version = "20160305.1401"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "interaction-log.el"; @@ -31827,7 +31996,7 @@ sha256 = "0mvhydb4lfm2kazmb7fab8zh7sd8l9casghn8wl42mqji3v7lfwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interaction-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interaction-log"; sha256 = "1r9qbvgssc2zdwgwmmwv5kapvmg1y3px7268gkiakkfanw3kqk6j"; name = "interaction-log"; }; @@ -31840,7 +32009,7 @@ interleave = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interleave"; - version = "20160517.1248"; + version = "20160517.1848"; src = fetchFromGitHub { owner = "rudolfochrist"; repo = "interleave"; @@ -31848,7 +32017,7 @@ sha256 = "06x47lfpad24arc2zyvdcdg222pyndxsc66m376rgj23s7wlr5hd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -31858,10 +32027,31 @@ license = lib.licenses.free; }; }) {}; + intero = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: + melpaBuild { + pname = "intero"; + version = "20160604.947"; + src = fetchFromGitHub { + owner = "commercialhaskell"; + repo = "intero"; + rev = "0d5cd31556a24190860449426105f3466f22cb6c"; + sha256 = "0wm6hk6plmvn31wkh58n7wnjpxibw6x2rj5npda5lckliaican8p"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; + sha256 = "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99"; + name = "intero"; + }; + packageRequires = [ company emacs flycheck haskell-mode ]; + meta = { + homepage = "https://melpa.org/#/intero"; + license = lib.licenses.free; + }; + }) {}; interval-list = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interval-list"; - version = "20150327.1318"; + version = "20150327.1818"; src = fetchFromGitHub { owner = "Fuco1"; repo = "interval-list"; @@ -31869,7 +32059,7 @@ sha256 = "1zv6m24ryls9hvla3hf8wzp6r7fzbxa1lzr1mb0wz0s292l38wjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interval-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interval-list"; sha256 = "0926z3lxkmpxalpq7hj355cjzbgpdiw7z4s8xdrpa1pi818d35zf"; name = "interval-list"; }; @@ -31882,7 +32072,7 @@ interval-tree = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "interval-tree"; - version = "20130325.1007"; + version = "20130325.1507"; src = fetchFromGitHub { owner = "Fuco1"; repo = "interval-tree"; @@ -31890,7 +32080,7 @@ sha256 = "0fqnn9xhrc9hkaiziafjgg288l6m05416z9kz8l5845fnqsb7pb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interval-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interval-tree"; sha256 = "13zynac3h50x68f1ja72kqdrapjks2zmgqd4g7qwscq92mmh60i9"; name = "interval-tree"; }; @@ -31903,7 +32093,7 @@ io-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "io-mode"; - version = "20140814.621"; + version = "20140814.1221"; src = fetchFromGitHub { owner = "superbobry"; repo = "io-mode"; @@ -31911,7 +32101,7 @@ sha256 = "10xpxmbzhmi0lmby2rpmxrbr3qf1vlbif2inmfsvkj85wyh8a7rp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/io-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/io-mode"; sha256 = "1fpiml7lvbl4s2xw4wk2y10iifvfza24kd9j8qvi1bgd85qkx42q"; name = "io-mode"; }; @@ -31924,7 +32114,7 @@ io-mode-inf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "io-mode-inf"; - version = "20140128.1434"; + version = "20140128.2034"; src = fetchFromGitHub { owner = "slackorama"; repo = "io-emacs"; @@ -31932,7 +32122,7 @@ sha256 = "1ard88kc13c57y9zdkyr012w8rdrwahz8a3fb5v6hwqymg16m20s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/io-mode-inf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/io-mode-inf"; sha256 = "0hwhvf1qwkmzzlzdda1flw6p1jjh9rzxsfwm2sc4795ac2xm6dhc"; name = "io-mode-inf"; }; @@ -31945,7 +32135,7 @@ ioccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ioccur"; - version = "20130822.148"; + version = "20130822.748"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "ioccur"; @@ -31953,7 +32143,7 @@ sha256 = "1rz5wf19lg1lnm0h73ynhb0vl3c99k7vpipay2f8jls24pv60bra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ioccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ioccur"; sha256 = "1a9iy6x4lkm4wgkcb0pv86c2kvpq8ymrc4ssp109r67kwqw7lrr6"; name = "ioccur"; }; @@ -31966,7 +32156,7 @@ iodine-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iodine-theme"; - version = "20151031.1239"; + version = "20151031.1739"; src = fetchFromGitHub { owner = "srdja"; repo = "iodine-theme"; @@ -31974,7 +32164,7 @@ sha256 = "14zfxa8fc7h4rkz1hyplwf4q2lga3l5dd7a2xq5kk0kvf2fs4mk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iodine-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iodine-theme"; sha256 = "05mnq0bgcla0pxsgywpvcdgd4sk2xr7bjlp87l0dx8j121vqripj"; name = "iodine-theme"; }; @@ -31987,7 +32177,7 @@ iplayer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iplayer"; - version = "20150101.555"; + version = "20150101.1155"; src = fetchFromGitHub { owner = "csrhodes"; repo = "iplayer-el"; @@ -31995,7 +32185,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -32008,7 +32198,7 @@ ipretty = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ipretty"; - version = "20140407.120"; + version = "20140407.720"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "ipretty"; @@ -32016,7 +32206,7 @@ sha256 = "0skyd9c7pz68v17aj3h47ralszbmc4gqg552q8jpimcjd1lacc7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ipretty"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ipretty"; sha256 = "1zysip6cb8s4nzsxiwk052gq6higz2xnd376r9wxmgj7w8him2c4"; name = "ipretty"; }; @@ -32029,7 +32219,7 @@ ir-black-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ir-black-theme"; - version = "20130303.255"; + version = "20130303.855"; src = fetchFromGitHub { owner = "jmdeldin"; repo = "ir-black-theme.el"; @@ -32037,7 +32227,7 @@ sha256 = "1cy9xwhswj9vahg8zr16r2crm2mm3vczqs73gc580iidasb1q1i2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -32050,7 +32240,7 @@ iregister = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iregister"; - version = "20150515.1707"; + version = "20150515.2307"; src = fetchFromGitHub { owner = "atykhonov"; repo = "iregister.el"; @@ -32058,7 +32248,7 @@ sha256 = "1ch610b3d0x3nxglp749305syliivamc108rgv9if4ihb67gp8b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iregister"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iregister"; sha256 = "0iq1nlj5czi4nblrszfv3grkl1fni7blh8bhcfccidms8v9r3mdm"; name = "iregister"; }; @@ -32070,13 +32260,13 @@ }) {}; irfc = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "irfc"; - version = "20130824.807"; + version = "20130824.1407"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/irfc.el"; sha256 = "197ybqwbj8qjh2p9pkf5mvqnrkpcgmv8c5s2gvl6msyrabk0mnca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irfc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irfc"; sha256 = "0186l6zk5l427vjvmjvi0xhwk8a4fjhsvw9kd0yw88q3ggpdl25i"; name = "irfc"; }; @@ -32089,15 +32279,15 @@ irony = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "irony"; - version = "20160511.1008"; + version = "20160531.2118"; src = fetchFromGitHub { owner = "Sarcasm"; repo = "irony-mode"; - rev = "bbb3d4ac7d551d392619ca8a528c49bb29f1c98f"; - sha256 = "0i9f22njz02y7p4869sxkz1bsxvcf37y00gc3bkvkvyc5p4wzdyg"; + rev = "6636e2ef4816d0cfa8771259a68f7385d056000c"; + sha256 = "0lchahb15j77maabav729ins3dxw7991zq4p8an1yx7dh86r32wp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -32110,7 +32300,7 @@ irony-eldoc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, irony, lib, melpaBuild }: melpaBuild { pname = "irony-eldoc"; - version = "20141227.119"; + version = "20141227.719"; src = fetchFromGitHub { owner = "ikirill"; repo = "irony-eldoc"; @@ -32118,7 +32308,7 @@ sha256 = "01fjpfixfcca01a5fnnpd2wga4j30p0kwhbai25prvib4qcp1kqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony-eldoc"; sha256 = "03m0h13jd37vfvn4mavaq3vbzx4x0lklbs0mbc29zaz8pwqlcwz6"; name = "irony-eldoc"; }; @@ -32131,7 +32321,7 @@ isearch-dabbrev = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-dabbrev"; - version = "20141224.122"; + version = "20141224.722"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "isearch-dabbrev"; @@ -32139,7 +32329,7 @@ sha256 = "17d0816awadvsw1qc7r0p6ira75jmgxaj9hsk9ypayxsaf6ynyrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-dabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-dabbrev"; sha256 = "1hl7zl5vjcsk3z452874g4nfcnmna8m2242dc9cgpl5jddzwqa7x"; name = "isearch-dabbrev"; }; @@ -32151,13 +32341,13 @@ }) {}; isearch-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-plus"; - version = "20160227.1717"; + version = "20160227.2317"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/isearch+.el"; sha256 = "00m4kh2j4a2rqlagz4b5wdhnrk266whbncwkjbxx0rlxzvsi5skh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch+"; sha256 = "1rzlsf08nmc3p3vhpwbiy8cgnnl2c10xrnsr2rlpv0g2kxkrd69r"; name = "isearch-plus"; }; @@ -32169,13 +32359,13 @@ }) {}; isearch-prop = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-prop"; - version = "20151231.1707"; + version = "20151231.2307"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/isearch-prop.el"; sha256 = "1i1ypganr2ivwgi0vgjihgk1s4yglwj8nbqnqjiiwdywf8g5hcmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-prop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-prop"; sha256 = "1z9y88b23m4ffil8p3wcq61q1fiyqjxphyd3wacs5fnc53mdzad9"; name = "isearch-prop"; }; @@ -32188,7 +32378,7 @@ isearch-symbol-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isearch-symbol-at-point"; - version = "20130728.1821"; + version = "20130729.21"; src = fetchFromGitHub { owner = "re5et"; repo = "isearch-symbol-at-point"; @@ -32196,7 +32386,7 @@ sha256 = "09z49850c32x0rchxg203cxg504xi2b6cjgnd0i4axcs5fmq7gv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isearch-symbol-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isearch-symbol-at-point"; sha256 = "0j5fr7qdvpd5b096h5a83fz8sh9wybdnsgix6v94gv8lkzdsqkr8"; name = "isearch-symbol-at-point"; }; @@ -32209,7 +32399,7 @@ isend-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isend-mode"; - version = "20130419.558"; + version = "20130419.1158"; src = fetchFromGitHub { owner = "ffevotte"; repo = "isend-mode.el"; @@ -32217,7 +32407,7 @@ sha256 = "022j39r2vvppnh3p5rp9i4cgc3lg24ksjcmcjmbmna1vf624izn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isend-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isend-mode"; sha256 = "0sk80a08ny9vqw94klqfgii297qm633000wlcldha76ip8viikdv"; name = "isend-mode"; }; @@ -32230,7 +32420,7 @@ isgd = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "isgd"; - version = "20150414.536"; + version = "20150414.1136"; src = fetchFromGitHub { owner = "chmouel"; repo = "isgd.el"; @@ -32238,7 +32428,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -32251,7 +32441,7 @@ iss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iss-mode"; - version = "20141001.1513"; + version = "20141001.2113"; src = fetchFromGitHub { owner = "rasmus-toftdahl-olesen"; repo = "iss-mode"; @@ -32259,7 +32449,7 @@ sha256 = "0992lzgar0kz9i1sk5vz17q9qzfgl8fkyxa1q0hmhgnpjf503cnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iss-mode"; sha256 = "1my4vi1x07hg0dva97i685lx6m6fcbfk16j1zy93zriyd7z5plkc"; name = "iss-mode"; }; @@ -32272,7 +32462,7 @@ itail = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "itail"; - version = "20151113.1135"; + version = "20151113.1735"; src = fetchFromGitHub { owner = "re5et"; repo = "itail"; @@ -32280,7 +32470,7 @@ sha256 = "1az986mk8j8hyvr1mi9hirixwcd73jcqkjsw4xy34vjbwxi122r9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/itail"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/itail"; sha256 = "0mcyly88a3c15hl3wll56agpdsyvd26r501h0v64lasfr4k634m7"; name = "itail"; }; @@ -32293,7 +32483,7 @@ itasca = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "itasca"; - version = "20160406.842"; + version = "20160406.1442"; src = fetchFromGitHub { owner = "jkfurtney"; repo = "itasca-emacs"; @@ -32301,7 +32491,7 @@ sha256 = "1174f75p3rkq812gl2rs1x51nqbz4fqxwsbrd7djh1vkd2zii3aw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/itasca"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/itasca"; sha256 = "01075ad0sb5q7aql6j5wmjdk2qhdgbbm5xb0ikrnl7rzc1afvv6j"; name = "itasca"; }; @@ -32314,7 +32504,7 @@ iterator = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iterator"; - version = "20160406.1506"; + version = "20160406.2106"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "iterator"; @@ -32322,7 +32512,7 @@ sha256 = "006lw8zjxz0702wlrs0nb0ijwh5air3yc3cam7dbkyy7mh632vhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iterator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iterator"; sha256 = "17q10fw6y0icsv6vv9n968bwmbjlihrpkkyw62d1kfxhs9yw659z"; name = "iterator"; }; @@ -32335,7 +32525,7 @@ ivariants = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivs-edit, lib, melpaBuild }: melpaBuild { pname = "ivariants"; - version = "20140721.27"; + version = "20140721.627"; src = fetchFromGitHub { owner = "kawabata"; repo = "emacs-ivariants"; @@ -32343,7 +32533,7 @@ sha256 = "12nqpzcmz724wpk8p16lc3z26rxma3wp6pf6dvrsqagnlixrs9si"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivariants"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivariants"; sha256 = "00fgcm62g4fw4306lw9ld2k7w0c358fcbkxn969k5p009g7pk5bw"; name = "ivariants"; }; @@ -32356,7 +32546,7 @@ ivs-edit = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ivs-edit"; - version = "20140720.646"; + version = "20140720.1246"; src = fetchFromGitHub { owner = "kawabata"; repo = "ivs-edit"; @@ -32364,7 +32554,7 @@ sha256 = "1926pyfsbr6j7cn3diq8ibs0db94rgsf0aifvbqrqp4grs85pkva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivs-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivs-edit"; sha256 = "0gzhvzrfk17j2vwlg82f5ifk4dcfc1yv7barcij38ckran8cqmb2"; name = "ivs-edit"; }; @@ -32377,15 +32567,15 @@ ivy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ivy"; - version = "20160522.306"; + version = "20160603.1710"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04"; - sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5"; + rev = "c960de51ce4e868daedb91e523ff6267a3113c3a"; + sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy"; sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci"; name = "ivy"; }; @@ -32398,7 +32588,7 @@ ivy-bibtex = callPackage ({ biblio, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, parsebib, s, swiper }: melpaBuild { pname = "ivy-bibtex"; - version = "20160422.1900"; + version = "20160423.100"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "helm-bibtex"; @@ -32406,7 +32596,7 @@ sha256 = "1zrs1gk95mna1kipgrq8mfhk0gqimvsb4b583f900fh86019nn1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-bibtex"; sha256 = "0qni48s09lgzqr98r49dhrzpfqp9yfwga11h7vhqclscjvlalpc2"; name = "ivy-bibtex"; }; @@ -32416,10 +32606,31 @@ license = lib.licenses.free; }; }) {}; + ivy-erlang-complete = callPackage ({ dash, emacs, erlang, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild, s }: + melpaBuild { + pname = "ivy-erlang-complete"; + version = "20160603.821"; + src = fetchFromGitHub { + owner = "s-kostyaev"; + repo = "ivy-erlang-complete"; + rev = "39bff0acdbf2de779879cca860973a86d192a864"; + sha256 = "07qwa1rz1q1kvvhsbkr3jr3jfchg46av9nw9m2x6j19d8y5m8jxh"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-erlang-complete"; + sha256 = "10r1497jp0k4hasdmih1d7qv4w4435af5rib2wl6x4jx98s5vzvh"; + name = "ivy-erlang-complete"; + }; + packageRequires = [ dash emacs erlang ivy s ]; + meta = { + homepage = "https://melpa.org/#/ivy-erlang-complete"; + license = lib.licenses.free; + }; + }) {}; ivy-gitlab = callPackage ({ dash, fetchFromGitHub, fetchurl, gitlab, ivy, lib, melpaBuild, s }: melpaBuild { pname = "ivy-gitlab"; - version = "20160519.612"; + version = "20160519.1212"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-gitlab"; @@ -32427,7 +32638,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-gitlab"; sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y"; name = "ivy-gitlab"; }; @@ -32440,15 +32651,15 @@ ivy-hydra = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, ivy, lib, melpaBuild }: melpaBuild { pname = "ivy-hydra"; - version = "20160517.1649"; + version = "20160517.2249"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04"; - sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5"; + rev = "c960de51ce4e868daedb91e523ff6267a3113c3a"; + sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-hydra"; sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx"; name = "ivy-hydra"; }; @@ -32461,7 +32672,7 @@ ix = callPackage ({ fetchFromGitHub, fetchurl, grapnel, lib, melpaBuild }: melpaBuild { pname = "ix"; - version = "20131027.1229"; + version = "20131027.1729"; src = fetchFromGitHub { owner = "theanalyst"; repo = "ix.el"; @@ -32469,7 +32680,7 @@ sha256 = "069alh9vs6is3hvbwxbwr9g8qq9md5c92wg5bfswi99yciqdvc4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -32482,7 +32693,7 @@ iy-go-to-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iy-go-to-char"; - version = "20141029.1146"; + version = "20141029.1646"; src = fetchFromGitHub { owner = "doitian"; repo = "iy-go-to-char"; @@ -32490,7 +32701,7 @@ sha256 = "0bcm3y3qvsrk7gd23xfzz5bgcnm3h4l63w9hv8cr9n86sm8475m1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iy-go-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iy-go-to-char"; sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; name = "iy-go-to-char"; }; @@ -32503,7 +32714,7 @@ j-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "j-mode"; - version = "20140702.1109"; + version = "20140702.1709"; src = fetchFromGitHub { owner = "zellio"; repo = "j-mode"; @@ -32511,7 +32722,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -32524,14 +32735,14 @@ jabber = callPackage ({ fetchgit, fetchurl, fsm, lib, melpaBuild }: melpaBuild { pname = "jabber"; - version = "20160124.852"; + version = "20160124.1452"; src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "98dc8e429ba6f79065f1c9fc3878d92314d4b510"; sha256 = "138mj06dd057nw617n5lanzg3q8y0iyq4c7cc3378a3sj4nmqkcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -32544,7 +32755,7 @@ jabber-otr = callPackage ({ emacs, fetchFromGitHub, fetchurl, jabber, lib, melpaBuild }: melpaBuild { pname = "jabber-otr"; - version = "20150918.744"; + version = "20150918.1344"; src = fetchFromGitHub { owner = "legoscia"; repo = "emacs-jabber-otr"; @@ -32552,7 +32763,7 @@ sha256 = "0yv86nadp6dfzl05vhk8c1kahg2pcrhfmd3mnfjrngp7ksac5lyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber-otr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber-otr"; sha256 = "114z5bwhkza03yvfa4nmicaih2jdq83lh6micxjimpddsc8fjgi0"; name = "jabber-otr"; }; @@ -32565,14 +32776,14 @@ jack-connect = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jack-connect"; - version = "20141207.707"; + version = "20141207.1307"; src = fetchgit { url = "https://bitbucket.org/sbarbit/jack-connect"; rev = "b00658dfe3d5d67431c18ffa693d5a3705067ba0"; sha256 = "1a33z07m9rh42pbcjv7sd640gf6jjzs4yn6idx52g8i5vzns0dkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jack-connect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jack-connect"; sha256 = "1ssl126wihaf8m2f6ms0l5ai6pz5wn348a09k6l0h3jfww032g1q"; name = "jack-connect"; }; @@ -32585,15 +32796,15 @@ jade-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jade-mode"; - version = "20160520.935"; + version = "20160525.1641"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; - rev = "fd48e74686679633d8eba4d1029092b667be498e"; - sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh"; + rev = "4dbde92542fc7ad61df38776980905a4721d642e"; + sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -32606,7 +32817,7 @@ jammer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jammer"; - version = "20160310.359"; + version = "20160310.959"; src = fetchFromGitHub { owner = "wasamasa"; repo = "jammer"; @@ -32614,7 +32825,7 @@ sha256 = "1gnj8vmpxds2wdkz49swiby5vq2hvbf64q5hhvwymfdvwlk54v55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -32627,7 +32838,7 @@ japanese-holidays = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "japanese-holidays"; - version = "20150208.2037"; + version = "20150209.237"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "japanese-holidays"; @@ -32635,7 +32846,7 @@ sha256 = "1mwm9wpnxqq3nw7fl0jf40a92ha51yd95vvr58zllhbxdpy3q9pv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanese-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanese-holidays"; sha256 = "0pxpkikkn2ys0kgf3lbrdxv8iym50h5ik2xzza0qk7cw1v93jza9"; name = "japanese-holidays"; }; @@ -32648,7 +32859,7 @@ japanlaw = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "japanlaw"; - version = "20160129.320"; + version = "20160129.920"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "japanlaw.el"; @@ -32656,7 +32867,7 @@ sha256 = "1lrsm282lhp7pf0gwr3aad2228lvpqnqs1qdv2xk0zljqnqc0bhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -32669,7 +32880,7 @@ jape-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jape-mode"; - version = "20140903.1106"; + version = "20140903.1706"; src = fetchFromGitHub { owner = "tanzoniteblack"; repo = "jape-mode"; @@ -32677,7 +32888,7 @@ sha256 = "0xmv7gw5xms6nhjcl51cw33yvjgw0c6bpnlyca3195x7g34sg1zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jape-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jape-mode"; sha256 = "1gd685r86h0kr36msw81gfgwv7d35hihz6h0jkc6vd22wf6qc3ly"; name = "jape-mode"; }; @@ -32690,7 +32901,7 @@ jar-manifest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jar-manifest-mode"; - version = "20160430.2026"; + version = "20160501.226"; src = fetchFromGitHub { owner = "omajid"; repo = "jar-manifest-mode"; @@ -32698,7 +32909,7 @@ sha256 = "1p7w3hq2cyn1245q0zn8m7hpjs8nbp7kqfmd2gzi2k209czipy21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jar-manifest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jar-manifest-mode"; sha256 = "0kx358m3p23r8m7z45454i62ijmdlf4mljlbqc20jkihfanr6wqd"; name = "jar-manifest-mode"; }; @@ -32711,7 +32922,7 @@ jasminejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jasminejs-mode"; - version = "20150526.2005"; + version = "20150527.205"; src = fetchFromGitHub { owner = "stoltene2"; repo = "jasminejs-mode"; @@ -32719,7 +32930,7 @@ sha256 = "1zcrxijcwqfs6r1cd6w4jq8g3ly0a69nf0cbx93w5v86x2kjpz0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jasminejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jasminejs-mode"; sha256 = "1a70j3aglrwmaw9g8m99sxad2vs53y4swxh97gqjsgx1rrx03g52"; name = "jasminejs-mode"; }; @@ -32732,7 +32943,7 @@ jaunte = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jaunte"; - version = "20130413.519"; + version = "20130413.1119"; src = fetchFromGitHub { owner = "kawaguchi"; repo = "jaunte.el"; @@ -32740,7 +32951,7 @@ sha256 = "1bv0al89wlwdv3bhasxnwhsv84phgnixclgrh4l52385rjn8v53f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jaunte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jaunte"; sha256 = "0chqiai7fv1idga71gc5dw4rdv1rblg5rrbdijh3glyi8yfr4snf"; name = "jaunte"; }; @@ -32753,7 +32964,7 @@ java-imports = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "java-imports"; - version = "20160311.1815"; + version = "20160312.15"; src = fetchFromGitHub { owner = "dakrone"; repo = "emacs-java-imports"; @@ -32761,7 +32972,7 @@ sha256 = "1wk9i43b147bjcvhq27vcqxi6y1yl6w3n4i2sw3krk4vxcm1mwnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -32774,7 +32985,7 @@ java-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "java-snippets"; - version = "20160328.2310"; + version = "20160329.510"; src = fetchFromGitHub { owner = "nekop"; repo = "yasnippet-java-mode"; @@ -32782,7 +32993,7 @@ sha256 = "0w67vjpazbrgd9j5xzsrj3m45iw6lyqkgxx1ap5afvgyn5hqhkih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-snippets"; sha256 = "0bsmp6sc3khdadkmwqy8khz8kzqijcsv70gimm2cs1kwnbyj6pfp"; name = "java-snippets"; }; @@ -32795,7 +33006,7 @@ javadoc-lookup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javadoc-lookup"; - version = "20160213.1931"; + version = "20160214.131"; src = fetchFromGitHub { owner = "skeeto"; repo = "javadoc-lookup"; @@ -32803,7 +33014,7 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -32816,7 +33027,7 @@ javap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "javap-mode"; - version = "20120223.1708"; + version = "20120223.2308"; src = fetchFromGitHub { owner = "hiredman"; repo = "javap-mode"; @@ -32824,7 +33035,7 @@ sha256 = "070r4mg4v937n4h2bmzdbn3vsmmq7ijz69nankqs761jxv5gcwlg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javap-mode"; sha256 = "19p39l4nwgxm52yimy4j6l43845cpk8g5qdrldlwfxd7dvay09ay"; name = "javap-mode"; }; @@ -32837,7 +33048,7 @@ jaword = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tinysegmenter }: melpaBuild { pname = "jaword"; - version = "20150325.1018"; + version = "20150325.1518"; src = fetchFromGitHub { owner = "zk-phi"; repo = "jaword"; @@ -32845,7 +33056,7 @@ sha256 = "1430xwd86fdlv1gzkdlp9a0x3w4blbplw24z0m7y8b0j9rhl4fka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jaword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jaword"; sha256 = "05pzh99zfl8n3p6lxdd9abr52m24hqcb105458i1cy0ra840bf4d"; name = "jaword"; }; @@ -32858,7 +33069,7 @@ jazz-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jazz-theme"; - version = "20160412.1336"; + version = "20160412.1936"; src = fetchFromGitHub { owner = "donderom"; repo = "jazz-theme"; @@ -32866,7 +33077,7 @@ sha256 = "0dikmd1w6jh152hvawgvzlpv87xqnf669a8x427rbshnbj2bly64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jazz-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jazz-theme"; sha256 = "0ad8kvrmd3gyb8wfghcl4r3kwzplk5gxlw3p23wsbx6c2xq6xr7g"; name = "jazz-theme"; }; @@ -32879,7 +33090,7 @@ jbeans-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jbeans-theme"; - version = "20160406.1557"; + version = "20160406.2157"; src = fetchFromGitHub { owner = "synic"; repo = "jbeans-emacs"; @@ -32887,7 +33098,7 @@ sha256 = "1gns0y05kyxl2fcyiawgdx2hi0vslz97kvirbckg19id50cv9ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jbeans-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jbeans-theme"; sha256 = "0y7ccycfnpykgzr88968w7dl45qazf8b9zlf7ydw3ghkl4f6lbwl"; name = "jbeans-theme"; }; @@ -32900,7 +33111,7 @@ jdee = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jdee"; - version = "20160304.836"; + version = "20160304.1436"; src = fetchFromGitHub { owner = "jdee-emacs"; repo = "jdee"; @@ -32908,7 +33119,7 @@ sha256 = "01dcxf47qlp089sf3b23kzaad7zrxzgcxf4s2awcj69ips8zkbik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jdee"; sha256 = "1yn8vszj0hs2jwwd4x55f11hs2wrxjjvxpngsj7lkcwax04kkvq3"; name = "jdee"; }; @@ -32921,7 +33132,7 @@ jedi = callPackage ({ auto-complete, emacs, fetchFromGitHub, fetchurl, jedi-core, lib, melpaBuild }: melpaBuild { pname = "jedi"; - version = "20160426.56"; + version = "20160426.656"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; @@ -32929,7 +33140,7 @@ sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -32942,7 +33153,7 @@ jedi-core = callPackage ({ cl-lib ? null, emacs, epc, fetchFromGitHub, fetchurl, lib, melpaBuild, python-environment }: melpaBuild { pname = "jedi-core"; - version = "20160501.2343"; + version = "20160502.543"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi"; @@ -32950,7 +33161,7 @@ sha256 = "1xkzf7p3ws5s5i8aymz60c4vhifchj68595878nc3yrk5zzlhyjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -32963,7 +33174,7 @@ jedi-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, jedi, lib, melpaBuild }: melpaBuild { pname = "jedi-direx"; - version = "20140310.536"; + version = "20140310.1036"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-jedi-direx"; @@ -32971,7 +33182,7 @@ sha256 = "1pgi5vnwz5agrpvy7nwg3gv2nfbbmimhk8dxkg81k6yf1iiqxcap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-direx"; sha256 = "1y4n4c2imnm3f1q129bvbi4gzk0iazd8qq959gvq9j9fl1aziiz1"; name = "jedi-direx"; }; @@ -32984,7 +33195,7 @@ jekyll-modes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, polymode }: melpaBuild { pname = "jekyll-modes"; - version = "20141117.814"; + version = "20141117.1414"; src = fetchFromGitHub { owner = "fred-o"; repo = "jekyll-modes"; @@ -32992,7 +33203,7 @@ sha256 = "0rx72rid7922mhw21j85kxmx0fhpkmkv9jvxmj9izy01xnjbk00c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jekyll-modes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jekyll-modes"; sha256 = "1305f1yg1mamyw3bkzrk5q3q58ihs8f5k9vjknsww5xvrzz3r1si"; name = "jekyll-modes"; }; @@ -33005,7 +33216,7 @@ jenkins = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "jenkins"; - version = "20151114.2208"; + version = "20151115.408"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "jenkins.el"; @@ -33013,7 +33224,7 @@ sha256 = "08ywfmsjv3vjqy95hx095kasy8knh3asl7mrlkgmv9wjwnxw45zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jenkins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jenkins"; sha256 = "0ji42r7p3f3hh643839xf74gb231vr7anycr2xhkga8qy2vwa53s"; name = "jenkins"; }; @@ -33026,7 +33237,7 @@ jenkins-watch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jenkins-watch"; - version = "20121004.1926"; + version = "20121005.126"; src = fetchFromGitHub { owner = "ataylor284"; repo = "jenkins-watch"; @@ -33034,7 +33245,7 @@ sha256 = "0jayhv8j7b527dimhvcs0d7ax25x7v50dk0k6apisqc23psvkq66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jenkins-watch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jenkins-watch"; sha256 = "0brgjgbw804x0gf2vq01yv6bd0ilp3x9kvr1nnsqxb9c03ffmb2m"; name = "jenkins-watch"; }; @@ -33047,7 +33258,7 @@ jg-quicknav = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jg-quicknav"; - version = "20160216.2335"; + version = "20160217.535"; src = fetchFromGitHub { owner = "jeffgran"; repo = "jg-quicknav"; @@ -33055,7 +33266,7 @@ sha256 = "164wm83av3p2c9dkhpmqrb7plq9ngmnsa5aly3a1xam1cds22hp4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jg-quicknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jg-quicknav"; sha256 = "1pxyv1nbnqb0s177kczy6b6q4l8d2r52xqhx2rdb0wxdmp6m5x9c"; name = "jg-quicknav"; }; @@ -33068,7 +33279,7 @@ jinja2-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jinja2-mode"; - version = "20141128.507"; + version = "20141128.1107"; src = fetchFromGitHub { owner = "paradoxxxzero"; repo = "jinja2-mode"; @@ -33076,7 +33287,7 @@ sha256 = "0l26wcy496k6xk7q5sf905xir0p73ziy6c44is77854lv3y0z381"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jinja2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jinja2-mode"; sha256 = "0480fh719r4v7xdwyf4jlg1k36y54i5zrv7gxlhfm66pil75zafx"; name = "jinja2-mode"; }; @@ -33088,13 +33299,13 @@ }) {}; jira = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "jira"; - version = "20131210.1322"; + version = "20131210.1922"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/jira.el"; sha256 = "18b6hdqk59gnqh4ibq8lj59kbsg5gbyfb7vfcvpgmxjikpl3cgkz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jira"; sha256 = "0cf5zgkxagvka5v6scgyxqx4mz1n7lxbynn3gl2a4s9s64jycsy6"; name = "jira"; }; @@ -33107,7 +33318,7 @@ jira-markup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jira-markup-mode"; - version = "20150601.1709"; + version = "20150601.2309"; src = fetchFromGitHub { owner = "mnuessler"; repo = "jira-markup-mode"; @@ -33115,7 +33326,7 @@ sha256 = "1ack7dmapva3wc2gm22prd5wd3cmq19sl4xl9f04a3nk2msr6ksx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jira-markup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jira-markup-mode"; sha256 = "0f3sw41b4wl0aajq0ap66942rb2015d9iks0ss016jgzashw7zsp"; name = "jira-markup-mode"; }; @@ -33128,7 +33339,7 @@ jist = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, let-alist, lib, magit, melpaBuild, pkg-info, request }: melpaBuild { pname = "jist"; - version = "20151228.1850"; + version = "20151229.50"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "jist.el"; @@ -33136,7 +33347,7 @@ sha256 = "0mh7990zqrprsa1g9jzpqm666pynlqd2nh9z236zyzykf8d8il8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jist"; sha256 = "11m9li1016cfkm4931h69d7g1dc59lwjl83wy3yipswdg3zlw0ar"; name = "jist"; }; @@ -33149,7 +33360,7 @@ jknav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jknav"; - version = "20121006.1625"; + version = "20121006.2225"; src = fetchFromGitHub { owner = "aculich"; repo = "jknav.el"; @@ -33157,7 +33368,7 @@ sha256 = "1idby2rjkslw85593qd4zy6an9zz71yzwqc6rck57r54xyfs8mij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jknav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jknav"; sha256 = "0c0a8plqrlsw8lhmyj9c1lfkj2b48cjkbw9pna8qcizvwgym9089"; name = "jknav"; }; @@ -33170,7 +33381,7 @@ jonprl-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "jonprl-mode"; - version = "20151203.442"; + version = "20151203.1042"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "jonprl-mode"; @@ -33178,7 +33389,7 @@ sha256 = "1a0091r1xs3fpvg1wynh53xibdsiaf2khz1gp6s8dc45z8r0bclx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jonprl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jonprl-mode"; sha256 = "0763ad65dmpl2l5lw91mlppfdvrjg6ym45brhi8sdwwri1xnyv9z"; name = "jonprl-mode"; }; @@ -33191,7 +33402,7 @@ jq-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jq-mode"; - version = "20160222.740"; + version = "20160222.1340"; src = fetchFromGitHub { owner = "ljos"; repo = "jq-mode"; @@ -33199,7 +33410,7 @@ sha256 = "08wffbljnaxz2sh72vsqpq1lc47mnh4d47fl71dvw4pqs50zp8v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; @@ -33212,7 +33423,7 @@ jquery-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jquery-doc"; - version = "20150812.358"; + version = "20150812.958"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "jquery-doc.el"; @@ -33220,7 +33431,7 @@ sha256 = "0gh2bgmsbi9lby89ssvl49kpz07jqrfnyg47g6b9xmf5rw42s1z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jquery-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jquery-doc"; sha256 = "0pyg90izdrb9mvpbz9nx21mp8m3svqjnz1jr8i7wqgfjxsxdklxj"; name = "jquery-doc"; }; @@ -33233,7 +33444,7 @@ js-comint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nvm }: melpaBuild { pname = "js-comint"; - version = "20160220.650"; + version = "20160220.1250"; src = fetchFromGitHub { owner = "redguardtoo"; repo = "js-comint"; @@ -33241,7 +33452,7 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -33254,7 +33465,7 @@ js-doc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js-doc"; - version = "20160208.2007"; + version = "20160209.207"; src = fetchFromGitHub { owner = "mooz"; repo = "js-doc"; @@ -33262,7 +33473,7 @@ sha256 = "12kwjkhw5x6jb79m49gbypb6br482bpi73788h71lgl5i3g95s5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-doc"; sha256 = "0nafqgb4kf8jgrb7ijfcvigq8kf043ki89h61izda4hccm3c42pk"; name = "js-doc"; }; @@ -33275,15 +33486,15 @@ js2-closure = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "js2-closure"; - version = "20141027.1850"; + version = "20160527.1800"; src = fetchFromGitHub { owner = "jart"; repo = "js2-closure"; - rev = "8e81e90ee0b923b9d053c339e4b328ecc7693998"; - sha256 = "0105vx7bc681q9v2x6wj2r63pwp7g0cjjgpg7k4r852zmndfbzsc"; + rev = "c0115ab7a4a5dca71e2c637727c97d1ed1db17ab"; + sha256 = "0p4iqbjzja0lfgcjhqa4z2kld0j5l4n9rbqfyfpj5g4bb1l3lzy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -33296,7 +33507,7 @@ js2-highlight-vars = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "js2-highlight-vars"; - version = "20150914.408"; + version = "20150914.1008"; src = fetchFromGitHub { owner = "unhammer"; repo = "js2-highlight-vars.el"; @@ -33304,7 +33515,7 @@ sha256 = "1gad5a18m3jfhnklsj0ka3p2wbihh1yvpcn7mwlmm7cjjxcaly9g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -33317,15 +33528,15 @@ js2-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js2-mode"; - version = "20160510.1937"; + version = "20160529.206"; src = fetchFromGitHub { owner = "mooz"; repo = "js2-mode"; - rev = "ae3ed936b7ae72a6e726a3701107edb7fe67b8ce"; - sha256 = "1gh18j5492mgnq77c5zzhwa8i8qnh6q2x7p5775x3z2hwaq6c31b"; + rev = "bc46db59d4966ce98fecbf0d466bdc9e1d90d167"; + sha256 = "0m5a4dqp7cy1322zv2ir27zpg16s7sd25z3j39338nq5hpfrqk0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -33338,15 +33549,15 @@ js2-refactor = callPackage ({ dash, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, multiple-cursors, s, yasnippet }: melpaBuild { pname = "js2-refactor"; - version = "20160506.912"; + version = "20160525.1013"; src = fetchFromGitHub { owner = "magnars"; repo = "js2-refactor.el"; - rev = "303f8fba4b5e42b7b5f9a8f37c1d641e529db1ff"; - sha256 = "0lksky7b2qfd4lvgpbanhcpr6i2prm9nd6gc3rja0axv51p03y9a"; + rev = "987ed3be5f78d412fb73906cc0d077ddfc15f02d"; + sha256 = "0yzlcnana3ildshzmv60vfgfjkmxki42r7waxsmphjz2hcknbmfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -33359,7 +33570,7 @@ js3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "js3-mode"; - version = "20160515.1150"; + version = "20160515.1750"; src = fetchFromGitHub { owner = "thomblake"; repo = "js3-mode"; @@ -33367,7 +33578,7 @@ sha256 = "18c0s3i21b77pi5y86zi7jg9pwxc0h5dzznjiyrig0jab0cksln5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -33380,7 +33591,7 @@ jscs = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jscs"; - version = "20151015.1349"; + version = "20151015.1949"; src = fetchFromGitHub { owner = "papaeye"; repo = "emacs-jscs"; @@ -33388,7 +33599,7 @@ sha256 = "1bqsv2drhcs8ia7nxss33f80p2mhcl4mr1nalphzw6s1f4mq2sgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jscs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jscs"; sha256 = "1yw251f6vpj2bikjw79arywprk8qnmmfcki99mvwnqhsqlv1a8iv"; name = "jscs"; }; @@ -33401,7 +33612,7 @@ jsfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jsfmt"; - version = "20150727.1825"; + version = "20150728.25"; src = fetchFromGitHub { owner = "brettlangdon"; repo = "jsfmt.el"; @@ -33409,7 +33620,7 @@ sha256 = "0h9gx5cl3lashk0n8pv9yzb0mm8dyziddfbwfqfm70638p93ylhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -33422,15 +33633,15 @@ json-mode = callPackage ({ fetchFromGitHub, fetchurl, json-reformat, json-snatcher, lib, melpaBuild }: melpaBuild { pname = "json-mode"; - version = "20151116.2300"; + version = "20160601.1256"; src = fetchFromGitHub { owner = "joshwnj"; repo = "json-mode"; - rev = "ce275e004dc7265047a80dec68b24eb058b200f0"; - sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; + rev = "250c622922d301bc1435ffe26e429fe2297f2681"; + sha256 = "10wx67lap7zhyzk9xd2cs8kcm0didyc9gccdi1q6sw1axs25i98i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -33443,7 +33654,7 @@ json-reformat = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-reformat"; - version = "20160212.353"; + version = "20160212.953"; src = fetchFromGitHub { owner = "gongo"; repo = "json-reformat"; @@ -33451,7 +33662,7 @@ sha256 = "05bjyw0hkpiyfadsx3giawykbj4qinfr1ilzd0xvx8akzq2ipq0y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -33464,7 +33675,7 @@ json-rpc = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-rpc"; - version = "20160427.1107"; + version = "20160427.1707"; src = fetchFromGitHub { owner = "skeeto"; repo = "elisp-json-rpc"; @@ -33472,7 +33683,7 @@ sha256 = "0cbqhijv2zv9mhnjxadr2kbz5b6jcvciwmza22jkwds0nkn2snmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-rpc"; sha256 = "1v1pfmm9g18p6kgn27q1m1bjgwbzvwfm0jbsxp8gdsssaygky71k"; name = "json-rpc"; }; @@ -33485,7 +33696,7 @@ json-snatcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "json-snatcher"; - version = "20150511.2347"; + version = "20150512.547"; src = fetchFromGitHub { owner = "Sterlingg"; repo = "json-snatcher"; @@ -33493,7 +33704,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -33506,7 +33717,7 @@ jss = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, websocket }: melpaBuild { pname = "jss"; - version = "20130508.1023"; + version = "20130508.1623"; src = fetchFromGitHub { owner = "segv"; repo = "jss"; @@ -33514,7 +33725,7 @@ sha256 = "07yd7sxb5f2mbm2nva7b2nwyxxkmsi2rdd5qig0bq1b2mf3g5l83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jss"; sha256 = "050hskqcjz5kc8nni255vj3hc9m936w1rybvg5kqyz4p4lpzj00k"; name = "jss"; }; @@ -33527,7 +33738,7 @@ jst = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pcache, s }: melpaBuild { pname = "jst"; - version = "20150604.738"; + version = "20150604.1338"; src = fetchFromGitHub { owner = "cheunghy"; repo = "jst-mode"; @@ -33535,7 +33746,7 @@ sha256 = "16jgmabcqrjb3v9c6q711jqn9dna88bmzm4880mdry69ixwcydxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jst"; sha256 = "0hp1f7p6m1gfv1a3plavzkzn87dllb5g2xrgg3mch4qsgdbqx65i"; name = "jst"; }; @@ -33548,7 +33759,7 @@ jsx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jsx-mode"; - version = "20130908.1324"; + version = "20130908.1924"; src = fetchFromGitHub { owner = "jsx"; repo = "jsx-mode.el"; @@ -33556,7 +33767,7 @@ sha256 = "1g648r0wrd8m5ggl5jrplmj7jmr68bh2ykyii5wv30zfba97r1sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -33568,14 +33779,14 @@ }) {}; jtags = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jtags"; - version = "20160211.1529"; + version = "20160211.2129"; src = fetchgit { url = "git://git.code.sf.net/p/jtags/code"; rev = "b50daa48510f71e74ce0ec2eb85030896a79cf96"; sha256 = "03w5y9c1109kpsn6xnxdaz3maiwbvxywqshc1l5wngfc85jwiv8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jtags"; sha256 = "0in5ybgwmghlpa5d7wz0477ba6n14f1mwp5dxcl4y11f1lsq041r"; name = "jtags"; }; @@ -33588,15 +33799,15 @@ judge-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "judge-indent"; - version = "20160520.734"; + version = "20160603.1321"; src = fetchFromGitHub { owner = "yascentur"; repo = "judge-indent-el"; - rev = "1a95ea5cdc8d1ae55f06f822be34fac365d68e5d"; - sha256 = "1p32w1xbhbs7cfs3fdkik0437pmja8h8skl1hd4qsrq2bbf2pff9"; + rev = "74ec1c752496c5fa98ebc5773bcdb9e986e4983a"; + sha256 = "039qc8klb7ysvyl10zqk50ji44yn44cfw7f5l90nrd5mr2pihnvr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/judge-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/judge-indent"; sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh"; name = "judge-indent"; }; @@ -33609,7 +33820,7 @@ julia-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "julia-mode"; - version = "20160517.1343"; + version = "20160517.1943"; src = fetchFromGitHub { owner = "JuliaLang"; repo = "julia-emacs"; @@ -33617,7 +33828,7 @@ sha256 = "1394z087h07zw86xzi4kr87j0yn3v3r7pzjbnf3hgivjmz2w48bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/julia-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/julia-mode"; sha256 = "0m49v67fs5yq0q3lwkcfmrzsjdzi1qrkfjyvjcdwnfmp29w14kq6"; name = "julia-mode"; }; @@ -33630,7 +33841,7 @@ julia-shell = callPackage ({ fetchFromGitHub, fetchurl, julia-mode, lib, melpaBuild }: melpaBuild { pname = "julia-shell"; - version = "20160514.1028"; + version = "20160514.1628"; src = fetchFromGitHub { owner = "dennisog"; repo = "julia-shell-mode"; @@ -33638,7 +33849,7 @@ sha256 = "056pyq31fq86fskwhqny8n6jzavgcjv979kkg9hwbz7h90zvf9q4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/julia-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/julia-shell"; sha256 = "0182irlvk6nn71zk4j8xjgcqp4bxi7a2dbj44frrssy6018cd410"; name = "julia-shell"; }; @@ -33651,7 +33862,7 @@ jumblr = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "jumblr"; - version = "20140908.1652"; + version = "20140908.2252"; src = fetchFromGitHub { owner = "mkmcc"; repo = "jumblr"; @@ -33659,7 +33870,7 @@ sha256 = "1f0kai4cz3r25fqlnryyvnyf80cf57xa655dvv1rx8si3xd20x4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jumblr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jumblr"; sha256 = "1wnawz1m6x95iyzac453p55h7hlr5q0ry5437aqqx0bw7gdwg3dp"; name = "jumblr"; }; @@ -33672,7 +33883,7 @@ jump = callPackage ({ fetchFromGitHub, fetchurl, findr, inflections, lib, melpaBuild }: melpaBuild { pname = "jump"; - version = "20151009.429"; + version = "20151009.1029"; src = fetchFromGitHub { owner = "eschulte"; repo = "jump.el"; @@ -33680,7 +33891,7 @@ sha256 = "0061hcmj63g13bvacwkmcb5iggwnk27dvb04fz4hihqis6jg01c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -33693,7 +33904,7 @@ jump-char = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jump-char"; - version = "20160505.1151"; + version = "20160505.1751"; src = fetchFromGitHub { owner = "lewang"; repo = "jump-char"; @@ -33701,7 +33912,7 @@ sha256 = "1dgghswf6s7h6h04mhfnsh2m0ld8qqk70l0dq3cxhdjzqx16vnms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-char"; sha256 = "0l8zvfwpngkgcxl1a36jwwxdh23hi390mikz7xrq63w5zwm0007n"; name = "jump-char"; }; @@ -33714,7 +33925,7 @@ jump-to-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jump-to-line"; - version = "20130122.1153"; + version = "20130122.1753"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "jump-to-line"; @@ -33722,7 +33933,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -33735,7 +33946,7 @@ jumplist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jumplist"; - version = "20151119.2245"; + version = "20151120.445"; src = fetchFromGitHub { owner = "ganmacs"; repo = "jumplist"; @@ -33743,7 +33954,7 @@ sha256 = "0ykzvy8034mchq6ffyi7vqnwyrj6gnqqgn39ki81pv97qh8hh8yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jumplist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jumplist"; sha256 = "06xjg1q8b2fwfhfmdkb76bw2id8pgqc61fmwlgri5746jgdmd7nf"; name = "jumplist"; }; @@ -33756,7 +33967,7 @@ jvm-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "jvm-mode"; - version = "20150422.308"; + version = "20150422.908"; src = fetchFromGitHub { owner = "martintrojer"; repo = "jvm-mode.el"; @@ -33764,7 +33975,7 @@ sha256 = "0k91cdjlpil8npc4d3zsgx2gk41crl7qgm9r85khcgxs59kmkniw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -33777,7 +33988,7 @@ kaesar = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kaesar"; - version = "20160128.508"; + version = "20160128.1108"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33785,7 +33996,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -33798,7 +34009,7 @@ kaesar-file = callPackage ({ fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }: melpaBuild { pname = "kaesar-file"; - version = "20160128.508"; + version = "20160128.1108"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33806,7 +34017,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -33819,7 +34030,7 @@ kaesar-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, kaesar, lib, melpaBuild }: melpaBuild { pname = "kaesar-mode"; - version = "20160128.508"; + version = "20160128.1108"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-kaesar"; @@ -33827,7 +34038,7 @@ sha256 = "1pl0514rj99b1j3y33x2bnhjbdbv9bfxgqn9498bf4ns8zayc6y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -33840,7 +34051,7 @@ kakapo-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kakapo-mode"; - version = "20150907.52"; + version = "20150907.652"; src = fetchFromGitHub { owner = "listx"; repo = "kakapo-mode"; @@ -33848,7 +34059,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -33860,14 +34071,14 @@ }) {}; kanban = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kanban"; - version = "20150930.1217"; + version = "20150930.1817"; src = fetchhg { url = "https://bitbucket.com/ArneBab/kanban.el"; rev = "54d855426372"; sha256 = "14g0f51jig8b1y6zfaw7b1cp692lddqzkc0ngf4y89sw9gbmsh3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kanban"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kanban"; sha256 = "1sif2ayb8fq5vjz9lpkaq40aw9wiciz84yipab2qczszlgw1l1hb"; name = "kanban"; }; @@ -33880,7 +34091,7 @@ kanji-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kanji-mode"; - version = "20150202.325"; + version = "20150202.925"; src = fetchFromGitHub { owner = "wsgac"; repo = "kanji-mode"; @@ -33888,7 +34099,7 @@ sha256 = "0rxf44kszxazkpjmccz3wnks7si3g8vsfi2lamwynmksk8sw5d7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kanji-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kanji-mode"; sha256 = "0nnkv7lp7ks9qhkbhz15ixm53grc2q0xfspzykxi9c4b59kypcq5"; name = "kanji-mode"; }; @@ -33901,7 +34112,7 @@ kaomoji = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild }: melpaBuild { pname = "kaomoji"; - version = "20160218.320"; + version = "20160218.920"; src = fetchFromGitHub { owner = "kuanyui"; repo = "kaomoji.el"; @@ -33909,7 +34120,7 @@ sha256 = "0vqjbv3pqlbyibqylfsqqjzkvjhdg01hlxszfblpg72fziyzcci5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaomoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaomoji"; sha256 = "1p61pbqf2lnwr6ryxxc4jkd5bmlgknrc27lg89h3b4pw7k39cqy1"; name = "kaomoji"; }; @@ -33922,7 +34133,7 @@ karma = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "karma"; - version = "20160220.745"; + version = "20160220.1345"; src = fetchFromGitHub { owner = "tonini"; repo = "karma.el"; @@ -33930,7 +34141,7 @@ sha256 = "12v242kfcx849j8w95v2g7djh9xqbx8n033iaxyavfxnz0pp7zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -33943,7 +34154,7 @@ kerl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kerl"; - version = "20150424.1605"; + version = "20150424.2205"; src = fetchFromGitHub { owner = "correl"; repo = "kerl.el"; @@ -33951,7 +34162,7 @@ sha256 = "1kkzs7nrcr74qn1m456vaj52a9j3ah4biakimz06hls415l56yk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kerl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kerl"; sha256 = "0f8n7cm5c432pwj28bcpv2jj5z3br3k164xj6nwfis3dvijwsgss"; name = "kerl"; }; @@ -33963,13 +34174,13 @@ }) {}; key-chord = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-chord"; - version = "20160227.738"; + version = "20160227.1338"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/key-chord.el"; sha256 = "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-chord"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-chord"; sha256 = "0cr9lx1pvr0qc762nn5pbh8w93dx1hh1zzf806cag2b9pgk6d4an"; name = "key-chord"; }; @@ -33982,7 +34193,7 @@ key-combo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-combo"; - version = "20150324.1039"; + version = "20150324.1539"; src = fetchFromGitHub { owner = "uk-ar"; repo = "key-combo"; @@ -33990,7 +34201,7 @@ sha256 = "1is7s50lgn77lxxwgakiaywx6jqdfg8045d18m4zn3ilxg6k8ljf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -34003,7 +34214,7 @@ key-intercept = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-intercept"; - version = "20140211.249"; + version = "20140211.849"; src = fetchFromGitHub { owner = "tarao"; repo = "key-intercept-el"; @@ -34011,7 +34222,7 @@ sha256 = "143nfs8pgi5yy3mjq7nirffplk4vb8kik4q7zypynh2pddip30a4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-intercept"; sha256 = "1z776jbpjks5bir6bd0748mlrmz05nf0jy9l4hlmwgyn72dcbx16"; name = "key-intercept"; }; @@ -34024,7 +34235,7 @@ key-leap = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "key-leap"; - version = "20160109.1537"; + version = "20160109.2137"; src = fetchFromGitHub { owner = "MartinRykfors"; repo = "key-leap"; @@ -34032,7 +34243,7 @@ sha256 = "14xk0crl25alcckkcg0wx7gwb65hmicfn01db1zip8swk249g9w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-leap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-leap"; sha256 = "0z1fhpf8g0c4rh3bf8dfmdgyhj5w686kavjr214czaga0x7mwlwj"; name = "key-leap"; }; @@ -34045,7 +34256,7 @@ key-seq = callPackage ({ fetchFromGitHub, fetchurl, key-chord, lib, melpaBuild }: melpaBuild { pname = "key-seq"; - version = "20150907.356"; + version = "20150907.956"; src = fetchFromGitHub { owner = "vlevit"; repo = "key-seq.el"; @@ -34053,7 +34264,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -34066,7 +34277,7 @@ keychain-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keychain-environment"; - version = "20160424.746"; + version = "20160424.1346"; src = fetchFromGitHub { owner = "tarsius"; repo = "keychain-environment"; @@ -34074,7 +34285,7 @@ sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -34087,7 +34298,7 @@ keydef = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keydef"; - version = "20090428.1531"; + version = "20090428.2131"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "keydef"; @@ -34095,7 +34306,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -34108,7 +34319,7 @@ keyfreq = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyfreq"; - version = "20160516.1016"; + version = "20160516.1616"; src = fetchFromGitHub { owner = "dacap"; repo = "keyfreq"; @@ -34116,7 +34327,7 @@ sha256 = "1dhdk4f6q340n0r9n8jld2n2fykp7m40x23n7sw4wpm8g151gxin"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -34129,15 +34340,15 @@ keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "20160212.1829"; + version = "20160523.1445"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; - rev = "dbb5ec9fa28ff3c0fbb9efcc9f75329a5aca3798"; - sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; + rev = "34e28d4c88ad9c71aee3dd226817c6eb6927b2c7"; + sha256 = "17bfxn1bl2by3vnp24hnk6qjxx6av1fayrsw9hlldwhgp4ayhy48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -34150,7 +34361,7 @@ keyset = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyset"; - version = "20150220.30"; + version = "20150220.630"; src = fetchFromGitHub { owner = "HKey"; repo = "keyset"; @@ -34158,7 +34369,7 @@ sha256 = "0cm6naqlwk65xy9lwnn5r7m6nc1l7ims2ckydmyzny5ak8y5jbws"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -34171,15 +34382,15 @@ keyword-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keyword-search"; - version = "20160519.455"; + version = "20160526.923"; src = fetchFromGitHub { owner = "keyword-search"; repo = "keyword-search"; - rev = "616ae4bdb1a22114127bc2c0b155657c3d1b01ed"; - sha256 = "0qvjiqgfylqi92y2yxa8cswmjqbak90jr4s0wblam6bi119yhq5r"; + rev = "5a84e5ae765eca54e6dc479e099fb3082007529b"; + sha256 = "0qysz45vvk87n0pc21qfcfj3mbj2ibnz8m0ywj3dhr1damb89g4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyword-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyword-search"; sha256 = "0wvci1v8pblfbdslfzpi46c149y8pi49kza9jf33jzhj357lp5qa"; name = "keyword-search"; }; @@ -34192,7 +34403,7 @@ kfg = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kfg"; - version = "20140909.138"; + version = "20140909.738"; src = fetchFromGitHub { owner = "abingham"; repo = "kfg"; @@ -34200,7 +34411,7 @@ sha256 = "0xq835xzywks4b4kaz5i0pp759i23kibs5gkvvxasw0dncqh7j5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kfg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kfg"; sha256 = "0vvvxl6a4ac27igwmsgzpf0whf9h2pjl9d89fd9fizad6gi8x1fs"; name = "kfg"; }; @@ -34213,7 +34424,7 @@ kibit-helper = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "kibit-helper"; - version = "20150508.1133"; + version = "20150508.1733"; src = fetchFromGitHub { owner = "brunchboy"; repo = "kibit-helper"; @@ -34221,7 +34432,7 @@ sha256 = "0s2hb2lvfmcvm3n1fg4biaafc1p7j7w990d7w15gicaw6rr2j4nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -34234,15 +34445,15 @@ kill-or-bury-alive = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kill-or-bury-alive"; - version = "20160128.409"; + version = "20160531.1808"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "kill-or-bury-alive"; - rev = "63753e74a6136a1a196dc436adb8bef894489c58"; - sha256 = "0a2jmk4wryngs56rqh6sxiyk5yh25l2qvping86yipic2wia17n8"; + rev = "62557d5d45a27773cc4f079549e98ca8aad203d0"; + sha256 = "1d1kygn2l675rigz29hjmqkh0x7061ax0a60v5mjn9q87y4jd760"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -34255,7 +34466,7 @@ kill-ring-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kill-ring-search"; - version = "20140422.1155"; + version = "20140422.1755"; src = fetchFromGitHub { owner = "nschum"; repo = "kill-ring-search.el"; @@ -34263,7 +34474,7 @@ sha256 = "0yrc09k64rv5is4wvss938mkj2pkvbr98lr3ahsi7p0aqn7s444v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -34276,7 +34487,7 @@ killer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "killer"; - version = "20120808.722"; + version = "20120808.1322"; src = fetchFromGitHub { owner = "tarsius"; repo = "killer"; @@ -34284,7 +34495,7 @@ sha256 = "05rbh5hkj3jsn9pw0qa4d5a5pi6367vdqkijcn9k14fdfbmyd30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -34297,7 +34508,7 @@ kite = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, websocket }: melpaBuild { pname = "kite"; - version = "20130201.1438"; + version = "20130201.2038"; src = fetchFromGitHub { owner = "jscheid"; repo = "kite"; @@ -34305,7 +34516,7 @@ sha256 = "1cr4i66lws6yhyxmyx5jw6d5x7i75435mafkkych4nfa0mv4vicd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kite"; sha256 = "04x92qcvx428l2cvm2nk9px7r8i159k0ra0haq2sjncjr1ajhg9m"; name = "kite"; }; @@ -34318,7 +34529,7 @@ kite-mini = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, websocket }: melpaBuild { pname = "kite-mini"; - version = "20160508.706"; + version = "20160508.1306"; src = fetchFromGitHub { owner = "tungd"; repo = "kite-mini.el"; @@ -34326,7 +34537,7 @@ sha256 = "0ralsdjzj09g6nsa04jvyyzr6cgsi0d7gi1ji77f52m31dl0b8cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kite-mini"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kite-mini"; sha256 = "1g644406zm3db0fjyv704aa8dbd20v1apmysb3mmh2vldbch4iyh"; name = "kite-mini"; }; @@ -34339,15 +34550,15 @@ kivy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kivy-mode"; - version = "20140524.857"; + version = "20140524.1457"; src = fetchFromGitHub { owner = "kivy"; repo = "kivy"; - rev = "206cc763de49e2be5cf8113da1b5f7f4f36930f8"; - sha256 = "17kvn611aiiqlqz5lym8npms4j3j0pqz1d8lmqxz2qsdsismagq3"; + rev = "04f9ae82a2da3a1ff8a63bb336bc8bc7f0d1031b"; + sha256 = "1r88zrd0wgavw55fxx7y0pi0a61izw4hm86n027vc4m4cpxrar17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -34360,7 +34571,7 @@ kixtart-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kixtart-mode"; - version = "20150611.1204"; + version = "20150611.1804"; src = fetchFromGitHub { owner = "ryrun"; repo = "kixtart-mode"; @@ -34368,7 +34579,7 @@ sha256 = "1ld3ccg8q7hmjrj60rxvmmfy4dpm2lvlshjqdf9ifgjzp221g4vb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kixtart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kixtart-mode"; sha256 = "079bw4lgxbmk65rrfyy8givs8j5wsyhpcjjw915ifkg577gj87qp"; name = "kixtart-mode"; }; @@ -34381,7 +34592,7 @@ know-your-http-well = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "know-your-http-well"; - version = "20160208.1804"; + version = "20160209.4"; src = fetchFromGitHub { owner = "for-GET"; repo = "know-your-http-well"; @@ -34389,7 +34600,7 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -34402,7 +34613,7 @@ kolon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kolon-mode"; - version = "20140122.634"; + version = "20140122.1234"; src = fetchFromGitHub { owner = "samvtran"; repo = "kolon-mode"; @@ -34410,7 +34621,7 @@ sha256 = "0yr4yxwxgxp5pm9f8gaqlikxp26inv01inq0ya42dzam5yphkafw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kolon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kolon-mode"; sha256 = "0wcg8ph3mk4zcmzqpvl2w6rfgvrfvhmgwb14y8agh9b7v5d9xwj3"; name = "kolon-mode"; }; @@ -34423,7 +34634,7 @@ kooten-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kooten-theme"; - version = "20160214.751"; + version = "20160214.1351"; src = fetchFromGitHub { owner = "kootenpv"; repo = "emacs-kooten-theme"; @@ -34431,7 +34642,7 @@ sha256 = "1bh2zpprh2zwhfgdw131lm0j7zm0hmnb0zqcahps104xna9s5x60"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kooten-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kooten-theme"; sha256 = "1kkk8nl1xykc4c487icmjrc2xsv8i4s2r5h5gbcpyrk2myqi4179"; name = "kooten-theme"; }; @@ -34444,7 +34655,7 @@ kpm-list = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kpm-list"; - version = "20160310.1350"; + version = "20160310.1950"; src = fetchFromGitHub { owner = "KMahoney"; repo = "kpm-list"; @@ -34452,7 +34663,7 @@ sha256 = "0hbzr5x9ykzrbwzfsf6rc4pbiw9m59ny3cgcx26nbi6ijbjl2fxj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kpm-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kpm-list"; sha256 = "0022bhy1mzngjmjydyqnmlgnhww05v4dxsfav034r8nyyc7677z0"; name = "kpm-list"; }; @@ -34465,7 +34676,7 @@ kroman = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kroman"; - version = "20150827.1940"; + version = "20150828.140"; src = fetchFromGitHub { owner = "cheunghy"; repo = "kroman-el"; @@ -34473,7 +34684,7 @@ sha256 = "11axxmhdpwgrcyjz200pf5bqzjw9wz4085r8p1n2vr5gx98374fr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kroman"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kroman"; sha256 = "0y9ji3c8kndrz605n7b4w5xq0qp093d61hxwhblm3qrh3370mws7"; name = "kroman"; }; @@ -34486,7 +34697,7 @@ ksp-cfg-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ksp-cfg-mode"; - version = "20160521.1633"; + version = "20160521.2233"; src = fetchFromGitHub { owner = "lashtear"; repo = "ksp-cfg-mode"; @@ -34494,7 +34705,7 @@ sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ksp-cfg-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ksp-cfg-mode"; sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; name = "ksp-cfg-mode"; }; @@ -34507,7 +34718,7 @@ kurecolor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "kurecolor"; - version = "20150424.22"; + version = "20150424.622"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "kurecolor"; @@ -34515,7 +34726,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -34528,7 +34739,7 @@ kv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kv"; - version = "20140108.1034"; + version = "20140108.1634"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-kv"; @@ -34536,7 +34747,7 @@ sha256 = "0r0lz2s6gvy04fwnafai668jsf4546h4k6zd6isx5wpk0n33pj5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kv"; sha256 = "1vzifi6zpkmsh1a3c2njrw7mpfdgyjvpbz3bj42j8cg3vwjnjznb"; name = "kv"; }; @@ -34549,7 +34760,7 @@ kwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "kwin"; - version = "20150308.1412"; + version = "20150308.1912"; src = fetchFromGitHub { owner = "reactormonk"; repo = "kwin-minor-mode"; @@ -34557,7 +34768,7 @@ sha256 = "0irbfgip493hyh45msnb7climgfwr8f05nvc97bzaqggnay88scy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kwin"; sha256 = "1pxnyj81py3ygadmyfrqndb0jkk6xlbf0rg3857hsy3ccblzm7ki"; name = "kwin"; }; @@ -34570,7 +34781,7 @@ labburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "labburn-theme"; - version = "20160519.436"; + version = "20160519.1036"; src = fetchFromGitHub { owner = "ksjogo"; repo = "labburn-theme"; @@ -34578,7 +34789,7 @@ sha256 = "14v7w85mkbdymz8nsl1phdpn3agpr47f2qang1wp7syzsbsfcjd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/labburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/labburn-theme"; sha256 = "09qqb62hfga88zka0pc27rc8i43cxi84cv1x8wj0vvzx6mvic1lm"; name = "labburn-theme"; }; @@ -34590,13 +34801,13 @@ }) {}; lacarte = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lacarte"; - version = "20151231.1709"; + version = "20151231.2309"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lacarte.el"; sha256 = "01vs0v17l76zwyrblf9c6x0xg5fagd4qv8pr1fwfw7kl64hb9aa2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lacarte"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lacarte"; sha256 = "0a0n1lqakgsbz0scn6617rkkkvzwranzlvkzw9q4zapiz1s9xqp9"; name = "lacarte"; }; @@ -34609,7 +34820,7 @@ lang-refactor-perl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lang-refactor-perl"; - version = "20131122.1627"; + version = "20131122.2227"; src = fetchFromGitHub { owner = "jplindstrom"; repo = "emacs-lang-refactor-perl"; @@ -34617,7 +34828,7 @@ sha256 = "135k7inkvdz51j7al3nndaamrkyn989vlv1mxcp8lwx8cgq0rqfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lang-refactor-perl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lang-refactor-perl"; sha256 = "02fv25d76rvxqzxs48j4lkrifdhqayyb1in05ryyz2pk9x5hbax9"; name = "lang-refactor-perl"; }; @@ -34630,7 +34841,7 @@ langdoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "langdoc"; - version = "20150218.145"; + version = "20150218.745"; src = fetchFromGitHub { owner = "tom-tan"; repo = "langdoc"; @@ -34638,7 +34849,7 @@ sha256 = "0svci7xs4iysv8ysf93g382arip0xpgi0fllw8xx2vrd70sz7lff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langdoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langdoc"; sha256 = "19i6ys58wswl5ckf33swl6lsfzg4znx850br4icik15yrry65yj7"; name = "langdoc"; }; @@ -34651,7 +34862,7 @@ langtool = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "langtool"; - version = "20160116.1954"; + version = "20160117.154"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-langtool"; @@ -34659,7 +34870,7 @@ sha256 = "1rj0j4vxfwss0w6bwh591w5mbyzjg5rkbwyjaphyi6p7wq5w6np1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -34672,7 +34883,7 @@ latest-clojure-libraries = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latest-clojure-libraries"; - version = "20140314.917"; + version = "20140314.1417"; src = fetchFromGitHub { owner = "AdamClements"; repo = "latest-clojure-libraries"; @@ -34680,7 +34891,7 @@ sha256 = "1cqbdgk3sd0xbw76qrhlild9dvgds3vgldq0rcl200kh7y8l6g4k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latest-clojure-libraries"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latest-clojure-libraries"; sha256 = "1vnm9piq71nx7q1843izm4vydfjq1564ax4ffwmqmlpisqzd6wq5"; name = "latest-clojure-libraries"; }; @@ -34693,7 +34904,7 @@ latex-extra = callPackage ({ auctex, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-extra"; - version = "20160328.2021"; + version = "20160329.221"; src = fetchFromGitHub { owner = "Malabarba"; repo = "latex-extra"; @@ -34701,7 +34912,7 @@ sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -34714,7 +34925,7 @@ latex-math-preview = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-math-preview"; - version = "20160322.59"; + version = "20160322.559"; src = fetchFromGitLab { owner = "latex-math-preview"; repo = "latex-math-preview"; @@ -34722,7 +34933,7 @@ sha256 = "0cxmvadkiqhvhmvmx3vvwxasw7wll8abhviss7wgizwqf4i2p3v4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -34735,14 +34946,14 @@ latex-pretty-symbols = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-pretty-symbols"; - version = "20151112.544"; + version = "20151112.1144"; src = fetchhg { url = "https://bitbucket.com/mortiferus/latex-pretty-symbols.el"; rev = "ef4ea64c09ea"; sha256 = "0h9hncf2ghfkd3i3342ajj1niykhfr0aais3j6sjg1vkm16xbr3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-pretty-symbols"; sha256 = "1f2s2f64bmsx89a3crm4skhdi4pq9w18z9skxw3i3ydaj15s8jgl"; name = "latex-pretty-symbols"; }; @@ -34755,7 +34966,7 @@ latex-preview-pane = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-preview-pane"; - version = "20151023.1603"; + version = "20151023.2203"; src = fetchFromGitHub { owner = "jsinglet"; repo = "latex-preview-pane"; @@ -34763,7 +34974,7 @@ sha256 = "1bvhrh9xfl7p474b8jcczw255d2pjmrz5b60wis0lmmxdljplrfa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-preview-pane"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-preview-pane"; sha256 = "1id1l473azmc9hm5vq5wba8gad9np7sv38x94qd2zkf8b78pzkbw"; name = "latex-preview-pane"; }; @@ -34776,7 +34987,7 @@ latex-unicode-math-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "latex-unicode-math-mode"; - version = "20160411.830"; + version = "20160411.1430"; src = fetchFromGitHub { owner = "Christoph-D"; repo = "latex-unicode-math-mode"; @@ -34784,7 +34995,7 @@ sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; @@ -34797,7 +35008,7 @@ launch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "launch"; - version = "20130619.1804"; + version = "20130620.4"; src = fetchFromGitHub { owner = "sfllaw"; repo = "emacs-launch"; @@ -34805,7 +35016,7 @@ sha256 = "0ciycsqzyj6ld60c7sfqjq59ln3jvk3w9vy606kqzpcvj01ihmv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/launch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/launch"; sha256 = "043gwz583pa1wv84fl634p1v86lcsldsw7qkjbm6y678q5mms0m6"; name = "launch"; }; @@ -34818,7 +35029,7 @@ launchctl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "launchctl"; - version = "20150518.909"; + version = "20150518.1509"; src = fetchFromGitHub { owner = "pekingduck"; repo = "launchctl-el"; @@ -34826,7 +35037,7 @@ sha256 = "154z7bhb7qagvl3dlgrlsxdg4chz2863ijglg47xs3yhjp5ypanj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/launchctl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/launchctl"; sha256 = "07fq445cjpv4ndi7hnjmsrmskm2rlp6ghq0k3bcbjxl21smd9vs9"; name = "launchctl"; }; @@ -34839,7 +35050,7 @@ lavender-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lavender-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-lavender-theme"; @@ -34847,7 +35058,7 @@ sha256 = "1mg923rs2dk104bcr461dif3mg42r081ii8ipnnr588w7il0xh7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lavender-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lavender-theme"; sha256 = "1x7mk3dpk44fkzll6xmh2dw270cgb3a9qs3h8bmiq2dw0wrcwcd1"; name = "lavender-theme"; }; @@ -34860,7 +35071,7 @@ ldap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ldap-mode"; - version = "20091203.1315"; + version = "20091203.1915"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "ldap-mode"; @@ -34868,7 +35079,7 @@ sha256 = "03mv2r6k9syr7bk4vmdafmpa8kz19hv5h68ahj2bmdcmwlvwhkf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ldap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ldap-mode"; sha256 = "0lkfpbzsry9jigrx5zp14bkrvqnavnk4y3s0whnbigc4fgpf94rq"; name = "ldap-mode"; }; @@ -34881,7 +35092,7 @@ ledger-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ledger-mode"; - version = "20160504.2143"; + version = "20160505.343"; src = fetchFromGitHub { owner = "ledger"; repo = "ledger"; @@ -34889,7 +35100,7 @@ sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -34902,7 +35113,7 @@ leerzeichen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leerzeichen"; - version = "20151106.128"; + version = "20151106.728"; src = fetchFromGitHub { owner = "fgeller"; repo = "leerzeichen.el"; @@ -34910,7 +35121,7 @@ sha256 = "0yrrlwmxg1wy65bqyacjpzd5ksljgp41x4zyizl7h0zx9rmqcdvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/leerzeichen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/leerzeichen"; sha256 = "0h7zpskcgkswr110vckfdbxggz5b3g9grk1j1cbd98pmrpgfqrvp"; name = "leerzeichen"; }; @@ -34923,7 +35134,7 @@ legalese = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "legalese"; - version = "20150820.1324"; + version = "20150820.1924"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "legalese"; @@ -34931,7 +35142,7 @@ sha256 = "05zpc8b2pyjz76fvmgr7zkl56g6nf6hi4nmxdg6gkw8fx6p8i19f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/legalese"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/legalese"; sha256 = "18rkvfknaqwkmhsjpgrf2hknrb2zj61aw8rb4907gsbs9rciqpdd"; name = "legalese"; }; @@ -34944,7 +35155,7 @@ lemon-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lemon-mode"; - version = "20130216.804"; + version = "20130216.1404"; src = fetchFromGitHub { owner = "mooz"; repo = "lemon-mode"; @@ -34952,7 +35163,7 @@ sha256 = "0n6jrm5ilm5wzfrh7yjxn3sr5m10hwdm55b179ild32lh4795zj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lemon-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lemon-mode"; sha256 = "0jdf3556kmv55jh85ljqh2gdx0jl2b8zgvpz9a4kf53xifk3lqz5"; name = "lemon-mode"; }; @@ -34965,7 +35176,7 @@ lenlen-theme = callPackage ({ color-theme-solarized, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lenlen-theme"; - version = "20150307.311"; + version = "20150307.911"; src = fetchFromGitHub { owner = "zk-phi"; repo = "lenlen-theme"; @@ -34973,7 +35184,7 @@ sha256 = "0ab84qiqaz3swiraks8lx0y1kzwylpy9wz2104xgnpwnc5169z65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lenlen-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lenlen-theme"; sha256 = "1bddkcl9kzj3v071qpzmxzjwywqfj5j6cldz240qgp5mx685r0a9"; name = "lenlen-theme"; }; @@ -34986,15 +35197,15 @@ lentic = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, m-buffer, melpaBuild, s }: melpaBuild { pname = "lentic"; - version = "20160110.1205"; + version = "20160526.2222"; src = fetchFromGitHub { owner = "phillord"; repo = "lentic"; - rev = "8655ecd51e189bbdd6a4d8405dc3ea2e689c709a"; - sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; + rev = "6b4737219e788c936e12b526c367e339f938b7b2"; + sha256 = "0kj3nxbn55skkwg88ijw0fr2yfv0n94487z9j7vysqhlg9ra3bl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -35007,7 +35218,7 @@ lentic-server = callPackage ({ fetchFromGitHub, fetchurl, lentic, lib, melpaBuild, web-server }: melpaBuild { pname = "lentic-server"; - version = "20150320.926"; + version = "20150320.1426"; src = fetchFromGitHub { owner = "phillord"; repo = "lentic-server"; @@ -35015,7 +35226,7 @@ sha256 = "0c6wkfz6sdcs4aglvx6h3slhma2vbj7idckwzvp8ji6s7p1mavlv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic-server"; sha256 = "1y9idhf9qcsw3dbdj7rwa7bdrn1q0m3bg3r2jzwdnvkq8aas1w56"; name = "lentic-server"; }; @@ -35028,7 +35239,7 @@ less-css-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "less-css-mode"; - version = "20150511.619"; + version = "20150511.1219"; src = fetchFromGitHub { owner = "purcell"; repo = "less-css-mode"; @@ -35036,7 +35247,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -35049,7 +35260,7 @@ letcheck = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "letcheck"; - version = "20160202.1448"; + version = "20160202.2048"; src = fetchFromGitHub { owner = "Fuco1"; repo = "letcheck"; @@ -35057,7 +35268,7 @@ sha256 = "06hggcbz98qhfbvp0fxn89j98d0mmki4wc4k8kfzp5fhg071chbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -35070,15 +35281,15 @@ leuven-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "leuven-theme"; - version = "20160514.1914"; + version = "20160601.2126"; src = fetchFromGitHub { owner = "fniessen"; repo = "emacs-leuven-theme"; - rev = "b054c4877ecb4049a6d00da24132d93fd568e1da"; - sha256 = "03racy7vni8xnylsqd0bapm1hm14drn08v22by741rrzn8kkq7fi"; + rev = "03295c1e088ac4b2f321468b22d44233aafc20b2"; + sha256 = "1am3888833r5ab4fphi17d4pk9gpvdd28rcxv9zz7jjxbhfrnyn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/leuven-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/leuven-theme"; sha256 = "0pm5majr9cmj6g4zr7vb55ypk9fmfbvxx78mgmgignknbasq9g9a"; name = "leuven-theme"; }; @@ -35090,13 +35301,13 @@ }) {}; levenshtein = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "levenshtein"; - version = "20051013.1356"; + version = "20051013.1956"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/levenshtein.el"; sha256 = "0m94z18i1428bispxi285flvjf22kjm33s4sm0ad11m0w0jizir6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/levenshtein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/levenshtein"; sha256 = "1iypnz0bw3baqxa9gldz8cikxvdhw60pvqp00kq5p3v4x3xcy4z2"; name = "levenshtein"; }; @@ -35109,7 +35320,7 @@ lexbind-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lexbind-mode"; - version = "20141027.1029"; + version = "20141027.1529"; src = fetchFromGitHub { owner = "spacebat"; repo = "lexbind-mode"; @@ -35117,7 +35328,7 @@ sha256 = "167ayfl1k8dnajw173hh67nbwbk4frmjc4fzc515q67m9d7m5932"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lexbind-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lexbind-mode"; sha256 = "1hs9wg45mwp3fwi827rc4g0gjx4fk87zlibq3id9fcqic8q7nrnl"; name = "lexbind-mode"; }; @@ -35130,15 +35341,15 @@ lfe-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lfe-mode"; - version = "20160422.1506"; + version = "20160422.2106"; src = fetchFromGitHub { owner = "rvirding"; repo = "lfe"; - rev = "b8961c2155ad44582d99397b0a760abeb0bb8382"; - sha256 = "1sa96ww2zc96svsa979n8wnwspd35xvccqngz7h1v30rgx2l2wf6"; + rev = "5193331a06b3e76a184722a199845b1d5ae58669"; + sha256 = "0czsp57z2yxnx43fb3qp4qj0iib3715dlqkhb936c3v63m1fx76a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lfe-mode"; sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; @@ -35150,13 +35361,13 @@ }) {}; lib-requires = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lib-requires"; - version = "20151231.1710"; + version = "20151231.2310"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lib-requires.el"; sha256 = "077cy2clllrvabw44wb1pzcqz97r3y92j7cb9lnhd9pix0wpcq6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lib-requires"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lib-requires"; sha256 = "1g22jh56z8rnq0h80wj10gs38yig1rk9xmk3kmhmm5mm6b14iwdx"; name = "lib-requires"; }; @@ -35169,7 +35380,7 @@ libmpdee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "libmpdee"; - version = "20160117.1801"; + version = "20160118.1"; src = fetchFromGitHub { owner = "andyetitmoves"; repo = "libmpdee"; @@ -35177,7 +35388,7 @@ sha256 = "039awlam3nrgkxrarcapfyc2myvc77aw7whrkcsjjybzylpzv0pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/libmpdee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/libmpdee"; sha256 = "0z4d8y8jlsjw20b31akkaikh5xl0c05lj77d2i1xbgzam4iixma0"; name = "libmpdee"; }; @@ -35190,7 +35401,7 @@ lice = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lice"; - version = "20151225.1322"; + version = "20151225.1922"; src = fetchFromGitHub { owner = "buzztaiki"; repo = "lice-el"; @@ -35198,7 +35409,7 @@ sha256 = "11c3vmxyddx7zm8fpxmzhq2xygyijbszinfiwllgb4l738bxwljb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -35211,7 +35422,7 @@ light-soap-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "light-soap-theme"; - version = "20150607.1045"; + version = "20150607.1645"; src = fetchFromGitHub { owner = "mswift42"; repo = "light-soap-theme"; @@ -35219,7 +35430,7 @@ sha256 = "04dik8z2mg6qr4d3fkd26kg29b4c5crvbnc1lfsrzyrik7ipvsi8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/light-soap-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/light-soap-theme"; sha256 = "09p4w51d5szhi81a6a3l0r4zd4ixkrkzxldr938bcmj0qmj62iyk"; name = "light-soap-theme"; }; @@ -35232,7 +35443,7 @@ lingr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lingr"; - version = "20100807.1331"; + version = "20100807.1931"; src = fetchFromGitHub { owner = "lugecy"; repo = "lingr-el"; @@ -35240,7 +35451,7 @@ sha256 = "0rkx0hk3y79rwhjqs3wvgxhg1rj83mxbqkhhm3jfawp8c1av4f40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -35253,7 +35464,7 @@ link = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "link"; - version = "20140717.2329"; + version = "20140718.529"; src = fetchFromGitHub { owner = "myrkr"; repo = "dictionary-el"; @@ -35261,7 +35472,7 @@ sha256 = "0gz03hji6mcrzvxd74qim63g159sc8ggb6hq3x42x5l01g980fbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -35274,7 +35485,7 @@ link-hint = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "link-hint"; - version = "20160413.118"; + version = "20160413.718"; src = fetchFromGitHub { owner = "noctuid"; repo = "link-hint.el"; @@ -35282,7 +35493,7 @@ sha256 = "0w6n6m766vr7d2i5jw30dkq9326r1mx02n222vm8z1mxydkw1n3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -35295,7 +35506,7 @@ linphone = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linphone"; - version = "20130524.709"; + version = "20130524.1309"; src = fetchFromGitHub { owner = "zabbal"; repo = "emacs-linphone"; @@ -35303,7 +35514,7 @@ sha256 = "01yv6239z90hvncwmm9g5nh4xvyxv2ig3h4hsmxdn4kacfxvc84n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linphone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linphone"; sha256 = "0q7mw1npxq24szhwswc93qz5h6magcxw63ymba7hwhif6my65zx7"; name = "linphone"; }; @@ -35316,7 +35527,7 @@ linum-off = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linum-off"; - version = "20160217.1637"; + version = "20160217.2237"; src = fetchFromGitHub { owner = "mattfidler"; repo = "linum-off"; @@ -35324,7 +35535,7 @@ sha256 = "1pvgp76n2qnm01l5f9mkb9yqwfxag9x23wwqbsna66rmvsag69w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-off"; sha256 = "1yilsdsyxlzmh64dpzirzga9c7lhp1phps9cdgp2898zpnzaclay"; name = "linum-off"; }; @@ -35337,7 +35548,7 @@ linum-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "linum-relative"; - version = "20160510.418"; + version = "20160510.1018"; src = fetchFromGitHub { owner = "coldnew"; repo = "linum-relative"; @@ -35345,7 +35556,7 @@ sha256 = "11bjnqqwvr9zrvz5dlm8a0yw4zg9ysh3jdiq5a6iw09d3f0h1v2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -35358,7 +35569,7 @@ liso-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "liso-theme"; - version = "20160410.1629"; + version = "20160410.2229"; src = fetchFromGitHub { owner = "caisah"; repo = "liso-theme"; @@ -35366,7 +35577,7 @@ sha256 = "01ycjy3amzbplp3zf0x5fahsja92gyg2252xhzcyiazmhaz7gkrd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/liso-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/liso-theme"; sha256 = "014a71dnhnr0dr36sl2h8ffp6il9nasij31ahqz0bjgn4r16s5gy"; name = "liso-theme"; }; @@ -35379,7 +35590,7 @@ lisp-extra-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lisp-extra-font-lock"; - version = "20160507.1802"; + version = "20160508.2"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "lisp-extra-font-lock"; @@ -35387,7 +35598,7 @@ sha256 = "0ah4nnjgjw7z7j9wz76zyq88rdmina9aw5adhn9b9pwr9s5frfkz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lisp-extra-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lisp-extra-font-lock"; sha256 = "1xchqwhav9x7b02787ghka567fihdc14aamx92jg549c6d14qpwk"; name = "lisp-extra-font-lock"; }; @@ -35399,13 +35610,13 @@ }) {}; lispxmp = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "lispxmp"; - version = "20130824.807"; + version = "20130824.1407"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/lispxmp.el"; sha256 = "1m07gb3v1a7al0h4nj3914y8lqrwzi8fwb1ih66nxzn6kb0qj3mf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispxmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispxmp"; sha256 = "02gfbyng3dh2445jfkasxzjc9dlk02dafbfkjm40iwmb8h0fzji4"; name = "lispxmp"; }; @@ -35418,15 +35629,15 @@ lispy = callPackage ({ ace-window, emacs, fetchFromGitHub, fetchurl, hydra, iedit, lib, melpaBuild, swiper }: melpaBuild { pname = "lispy"; - version = "20160516.613"; + version = "20160529.1515"; src = fetchFromGitHub { owner = "abo-abo"; repo = "lispy"; - rev = "e409298214ce88ed29bcf348177c39ba4ed3a61d"; - sha256 = "177ymxd6znrshyxa730688wvv47j0hw9jd13qcv587akp1jnj980"; + rev = "2f52a009ace570d2f365138442a66572adfc5c7d"; + sha256 = "1zy0vgzi31lkb393ciw0zp3sjddl84j211fx0xmv7p307m5354s9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -35439,7 +35650,7 @@ lispyscript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lispyscript-mode"; - version = "20130828.1019"; + version = "20130828.1619"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "lispyscript-mode"; @@ -35447,7 +35658,7 @@ sha256 = "0n0mk01h9c3f24gzpws5xf6syrdwkq4kzs9mgwl74x9l0x904rgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -35460,7 +35671,7 @@ list-environment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-environment"; - version = "20151226.2156"; + version = "20151227.356"; src = fetchFromGitHub { owner = "dgtized"; repo = "list-environment.el"; @@ -35468,7 +35679,7 @@ sha256 = "1szbs16jlxfj71986dbg0d3j5raaxcwz0xq5ar352731r5mdcqw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-environment"; sha256 = "1zdhrlp8vk8knjwh56pws6dyn003r6avjzvhghlkgnw9nfrdk57h"; name = "list-environment"; }; @@ -35481,7 +35692,7 @@ list-packages-ext = callPackage ({ fetchFromGitHub, fetchurl, ht, lib, melpaBuild, persistent-soft, s }: melpaBuild { pname = "list-packages-ext"; - version = "20151115.1216"; + version = "20151115.1816"; src = fetchFromGitHub { owner = "laynor"; repo = "list-packages-ext"; @@ -35489,7 +35700,7 @@ sha256 = "02l7q5376ydz6a8i9x74bsx5bbxz8xkasmv1lzvf79d3jbg28l1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -35502,13 +35713,13 @@ list-processes-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-processes-plus"; - version = "20131117.1435"; + version = "20131117.2035"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/list-processes+.el"; sha256 = "1bssvyjgk1h1wiaxxdi2m5gjy6a790a9rwvi0r22hin7iskg300a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-processes+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-processes+"; sha256 = "10x7hkba2bmryyl68w769fggw65dl4f3a9g0gqdzmkdj80rcipky"; name = "list-processes-plus"; }; @@ -35521,7 +35732,7 @@ list-register = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-register"; - version = "20091203.1315"; + version = "20091203.1915"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "list-register"; @@ -35529,7 +35740,7 @@ sha256 = "1pr7vmjmyildg44n7psg0zmj8a3kfsw5xmgh600fhs95wqxn3sag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-register"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-register"; sha256 = "0kza9xfhmxc8qia5yixx5z2y9j4wb1530rcvgxn545b903fs55kv"; name = "list-register"; }; @@ -35542,7 +35753,7 @@ list-unicode-display = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-unicode-display"; - version = "20150219.401"; + version = "20150219.1001"; src = fetchFromGitHub { owner = "purcell"; repo = "list-unicode-display"; @@ -35550,7 +35761,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -35563,7 +35774,7 @@ list-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "list-utils"; - version = "20160414.1002"; + version = "20160414.1602"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "list-utils"; @@ -35571,7 +35782,7 @@ sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -35584,7 +35795,7 @@ lit-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lit-mode"; - version = "20141123.1236"; + version = "20141123.1836"; src = fetchFromGitHub { owner = "HectorAE"; repo = "lit-mode"; @@ -35592,7 +35803,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -35605,7 +35816,7 @@ litable = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "litable"; - version = "20150908.1009"; + version = "20150908.1609"; src = fetchFromGitHub { owner = "Fuco1"; repo = "litable"; @@ -35613,7 +35824,7 @@ sha256 = "1nbz119ldwjvkm3xd9m0dx820lc177frz5mn585fsd7kqdbkam99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/litable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/litable"; sha256 = "073yw3ivkl093xxppn5vqyh69jhfc97al505mnyn34fwdj5v8fji"; name = "litable"; }; @@ -35626,15 +35837,15 @@ litecoin-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "litecoin-ticker"; - version = "20160514.805"; + version = "20160604.1225"; src = fetchFromGitHub { owner = "llcc"; repo = "btcbox-ticker"; - rev = "b31e18ea1c99b2a5eaea64e690b2bd6172140fc0"; - sha256 = "1lb26csih1i8jyjy7mh25zqpq7a4rb9db4y2mbygcz5psbaazvfb"; + rev = "e3338f8badd1a6959f6082ed5aae100189c2b96e"; + sha256 = "17c0kyhw5aasckb7ghb7s6fnz3sz5pl2s1jqk2mn9h9b8rflbayc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/litecoin-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/litecoin-ticker"; sha256 = "14gak0av8wljmyq9lcf44dc2bvlfjb86filanqh0wkf2swpbdw85"; name = "litecoin-ticker"; }; @@ -35647,7 +35858,7 @@ literate-coffee-mode = callPackage ({ coffee-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "literate-coffee-mode"; - version = "20160114.734"; + version = "20160114.1334"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-literate-coffee-mode"; @@ -35655,7 +35866,7 @@ sha256 = "1wxysnsigjw40ykdwngg0gqfaag0dx6zg029i2zx25kl3gr1lflc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -35668,7 +35879,7 @@ literate-starter-kit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "literate-starter-kit"; - version = "20150730.1454"; + version = "20150730.2054"; src = fetchFromGitHub { owner = "eschulte"; repo = "emacs24-starter-kit"; @@ -35676,7 +35887,7 @@ sha256 = "1v37bii372w2g3pl09n5dcrk6y7glhpg8qiv17zsk9jy3ps2xm1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-starter-kit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-starter-kit"; sha256 = "1n2njf007fmrmsb8zrgxbz1cpxmr5nsp8w41yxa934iqc7qygkjy"; name = "literate-starter-kit"; }; @@ -35689,7 +35900,7 @@ live-code-talks = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, narrowed-page-navigation }: melpaBuild { pname = "live-code-talks"; - version = "20150115.1723"; + version = "20150115.2323"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "live-code-talks"; @@ -35697,7 +35908,7 @@ sha256 = "1j0qa96vlsqybhp0082a466qb1hd2b0621306brl9pfl5srf5jsj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -35710,15 +35921,15 @@ live-py-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "live-py-mode"; - version = "20160521.1430"; + version = "20160521.2030"; src = fetchFromGitHub { owner = "donkirkby"; repo = "live-py-plugin"; - rev = "8f782f58aa2fa2c805b6f488ade9e1c33fed6edb"; - sha256 = "0vmkqlgiahcc6aa0ky4jjdc5nxnn2i7qwfl6wkgy5rmq051nk4k0"; + rev = "060f9e2f948d72ac14a2d92bc4599b937683aae2"; + sha256 = "147k3d8hj6wgjmdfv3cnnpwsz0bs7j167zdv74qpx6nq03qrwpv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; @@ -35731,7 +35942,7 @@ lively = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lively"; - version = "20160208.1335"; + version = "20160208.1935"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "lively"; @@ -35739,7 +35950,7 @@ sha256 = "1qxw7i23z6c4yimrzpaqna8j39rashgbswdv4m0x4qg4sqc7szdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lively"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lively"; sha256 = "0qnyqlhqmmfq2f47zmy29hn6wqrx5yvsax8kn63nmxw380gw1z18"; name = "lively"; }; @@ -35752,7 +35963,7 @@ livescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "livescript-mode"; - version = "20140613.21"; + version = "20140613.621"; src = fetchFromGitHub { owner = "yhisamatsu"; repo = "livescript-mode"; @@ -35760,7 +35971,7 @@ sha256 = "0kqjz0i0zapyhh8z57cvc8ifiizngix3ca01mjnvyq3zxg1bqrsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/livescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/livescript-mode"; sha256 = "1fdfhp39zr2mhy5rd6mwqv5fwd8xaypdqig7v3ksv77m5zq7cmmj"; name = "livescript-mode"; }; @@ -35773,7 +35984,7 @@ livid-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s, skewer-mode }: melpaBuild { pname = "livid-mode"; - version = "20131116.844"; + version = "20131116.1444"; src = fetchFromGitHub { owner = "pandeiro"; repo = "livid-mode"; @@ -35781,7 +35992,7 @@ sha256 = "178ldzpk8a9m9abn8xlplxn5jgcca71dpkp82bs5g7bsccp3rx6p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/livid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/livid-mode"; sha256 = "0jy16m6injqznx4gmxzvhys480pclw9g07z4qll2dna37177ww9d"; name = "livid-mode"; }; @@ -35794,14 +36005,14 @@ llvm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "llvm-mode"; - version = "20150910.944"; + version = "20150910.1544"; src = fetchgit { url = "http://llvm.org/git/llvm"; - rev = "5afdcbe0c7cd2abeff450f66487800052a2df423"; - sha256 = "0xah53a68ikdq38racgsp5cp4fz5v32l4rj9s0risyy7fdyp01b1"; + rev = "f5adc997c205056d78b48785a2b486b0442e712a"; + sha256 = "11kcgck57p73igvjhm3sx5jwqh89y0hxxm6v4b31512z0kh2ipg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/llvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/llvm-mode"; sha256 = "0j3zsd0shd7kbi65a2ha7kmr0zy3my05378swx6m5m9x7miyr4y7"; name = "llvm-mode"; }; @@ -35814,7 +36025,7 @@ load-relative = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "load-relative"; - version = "20160505.319"; + version = "20160505.919"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-load-relative"; @@ -35822,7 +36033,7 @@ sha256 = "0izrli7f20iq1pz1r1l0kshzpz7vl4p1gyn2n5mdjv5lbpq7cykb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-relative"; sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; name = "load-relative"; }; @@ -35835,7 +36046,7 @@ load-theme-buffer-local = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "load-theme-buffer-local"; - version = "20120702.1636"; + version = "20120702.2236"; src = fetchFromGitHub { owner = "vic"; repo = "color-theme-buffer-local"; @@ -35843,7 +36054,7 @@ sha256 = "0gvc9jy34a8wvzwjpmqhshbx2kpk6ckmdrdj5v00iya7c4afnckx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-theme-buffer-local"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-theme-buffer-local"; sha256 = "13829yrh36qac7gpxanizlk4n7av99ngvv06y6mmi5rq06a4hjx4"; name = "load-theme-buffer-local"; }; @@ -35856,7 +36067,7 @@ loc-changes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loc-changes"; - version = "20150302.1148"; + version = "20150302.1748"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-loc-changes"; @@ -35864,7 +36075,7 @@ sha256 = "0i0ainawjvfl3qix329hx01x7rxyfin2xgpjk7y5dgmh4p3xhv94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -35877,7 +36088,7 @@ loccur = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loccur"; - version = "20160129.1522"; + version = "20160129.2122"; src = fetchFromGitHub { owner = "fourier"; repo = "loccur"; @@ -35885,7 +36096,7 @@ sha256 = "1npz90zf91wqf35bqd3zmkh0b538i69w8ygc78x5w2x5005aqr0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loccur"; sha256 = "06pv2i05yzjzal4q21krbnp9rp4bsainxcwvpc98020vsmms0z8h"; name = "loccur"; }; @@ -35898,7 +36109,7 @@ lodgeit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lodgeit"; - version = "20150312.949"; + version = "20150312.1449"; src = fetchFromGitHub { owner = "ionrock"; repo = "lodgeit-el"; @@ -35906,7 +36117,7 @@ sha256 = "1cdnm270kzixa0kpis0xw2ybkw8lqh7kykc7blxkxjrr9yjvbawl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lodgeit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lodgeit"; sha256 = "1ax2w5yxscycjz90g4jdbhd64g9sipzxpfjs7gq3na77s5dcjzsq"; name = "lodgeit"; }; @@ -35919,7 +36130,7 @@ log4e = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "log4e"; - version = "20150105.805"; + version = "20150105.1405"; src = fetchFromGitHub { owner = "aki2o"; repo = "log4e"; @@ -35927,7 +36138,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -35940,14 +36151,14 @@ log4j-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "log4j-mode"; - version = "20160108.1418"; + version = "20160108.2018"; src = fetchgit { url = "git://git.code.sf.net/p/log4j-mode/code"; rev = "26171b1e723502055e085393b0ecdcb6db406010"; sha256 = "15x6368pk4bbvhbd6cqnazcxfdz0b3f70029x0884a5797janln5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4j-mode"; sha256 = "06lam4iqxlbl9ib2n2db2nj6jbjzrw2ak8r99n6w4s3fny1q3yxx"; name = "log4j-mode"; }; @@ -35960,7 +36171,7 @@ logalimacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, popwin, stem }: melpaBuild { pname = "logalimacs"; - version = "20131021.1429"; + version = "20131021.2029"; src = fetchFromGitHub { owner = "logaling"; repo = "logalimacs"; @@ -35968,7 +36179,7 @@ sha256 = "0lj3i9i3mg17xws13gzx8myc6d7djgsj47yx4kaq5hycgkni1p7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -35981,7 +36192,7 @@ logito = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logito"; - version = "20120225.1555"; + version = "20120225.2155"; src = fetchFromGitHub { owner = "sigma"; repo = "logito"; @@ -35989,7 +36200,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -36002,7 +36213,7 @@ logstash-conf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logstash-conf"; - version = "20150308.818"; + version = "20150308.1318"; src = fetchFromGitHub { owner = "Wilfred"; repo = "logstash-conf.el"; @@ -36010,7 +36221,7 @@ sha256 = "05px3zc3is7k2jmh7mal0al5zx5cqvn1bzmhgqq02pp6lwsx5xqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logstash-conf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logstash-conf"; sha256 = "03i2ilphf3fdjag7m9z5gi23n6ik36qn42mzc22432m4y3c7iksh"; name = "logstash-conf"; }; @@ -36023,7 +36234,7 @@ logview = callPackage ({ datetime, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "logview"; - version = "20160520.1641"; + version = "20160520.2241"; src = fetchFromGitHub { owner = "doublep"; repo = "logview"; @@ -36031,7 +36242,7 @@ sha256 = "0xjfm39pk1z2wj6rr9v9jzsxy5p2vdi4rinzfpl719lcknpvzkw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -36044,7 +36255,7 @@ lolcode-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lolcode-mode"; - version = "20111002.447"; + version = "20111002.1047"; src = fetchFromGitHub { owner = "bodil"; repo = "lolcode-mode"; @@ -36052,7 +36263,7 @@ sha256 = "0pyfgywmmnlz1arvdxwyw96gr6xcg2sp3bqjli8xfcl8i0nww4kb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lolcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lolcode-mode"; sha256 = "0dxdqr3z5bw0vcfxhhhc1499vrfk1xqwxshr0kvlhdalpf59rqiw"; name = "lolcode-mode"; }; @@ -36065,15 +36276,15 @@ look-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, look-mode, melpaBuild }: melpaBuild { pname = "look-dired"; - version = "20151115.2056"; + version = "20160529.2301"; src = fetchFromGitHub { owner = "vapniks"; repo = "look-dired"; - rev = "5b2afe910a904d13674103f5264c6bcdbb9f9fb2"; - sha256 = "0w9pbjcp4d2w3qb3nnyzq2d0d9f0pgz5lyzapidxa9z1xcj51ccj"; + rev = "6b26f5c3f73b7a987c0a4eea99ae76c3aafea00d"; + sha256 = "0767s606d2iv9k1ffc4bmmkxammbysf9z7306cycbd3jrqdsakrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/look-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/look-dired"; sha256 = "0dddx5nxr519wqdgrbglh0pqjl3alg4ddmank42g4llzycy61wsd"; name = "look-dired"; }; @@ -36085,13 +36296,13 @@ }) {}; look-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "look-mode"; - version = "20151211.1326"; + version = "20151211.1926"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/look-mode.el"; sha256 = "0sl6hqggi6qn2qp9khw11qp5hamngwxrrwx98k3pwpj9kgicdpgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/look-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/look-mode"; sha256 = "0y3wjfjx0g5jclmv9m3vimv7zd18pk5im7smr41qk09hswi63yqj"; name = "look-mode"; }; @@ -36104,7 +36315,7 @@ loop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "loop"; - version = "20151228.621"; + version = "20151228.1221"; src = fetchFromGitHub { owner = "Wilfred"; repo = "loop.el"; @@ -36112,7 +36323,7 @@ sha256 = "1wmd7s3dk9krgmhs4f92mig18vx6y551n45ai7cvj92f4fbrsd08"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -36125,7 +36336,7 @@ lorem-ipsum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lorem-ipsum"; - version = "20140911.1708"; + version = "20140911.2308"; src = fetchFromGitHub { owner = "jschaf"; repo = "emacs-lorem-ipsum"; @@ -36133,7 +36344,7 @@ sha256 = "0grzl4kqpc1x6569yfh9xdzzbgmhcskxwk6f7scjpl32acr88cmx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lorem-ipsum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lorem-ipsum"; sha256 = "0p62yifbrknjn8z0613wy2aaknj44liyrgbknhpa0qn0d4fcrp4h"; name = "lorem-ipsum"; }; @@ -36146,7 +36357,7 @@ love-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "love-minor-mode"; - version = "20130429.1759"; + version = "20130429.2359"; src = fetchFromGitHub { owner = "ejmr"; repo = "love-minor-mode"; @@ -36154,7 +36365,7 @@ sha256 = "179r4pz3hlb5p6bjfhdikkx1zvh09ln5dbw3c3rmlyww1q7v26yl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -36167,7 +36378,7 @@ lua-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lua-mode"; - version = "20160502.1441"; + version = "20160502.2041"; src = fetchFromGitHub { owner = "immerrr"; repo = "lua-mode"; @@ -36175,7 +36386,7 @@ sha256 = "03k7nqk6vz8949pj77lsmw2rrzip7xnfp5nyy18y5d8rvifrcdgw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -36188,7 +36399,7 @@ lush-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lush-theme"; - version = "20141107.1106"; + version = "20141107.1706"; src = fetchFromGitHub { owner = "andre-richter"; repo = "emacs-lush-theme"; @@ -36196,7 +36407,7 @@ sha256 = "0mv73s89n59m44szc37086wq55py5sx0lc0jxncfybawhsqyd0ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lush-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lush-theme"; sha256 = "03kqws8dzm0ay5k86f4v7g2g2ygwk4fzmz2vyzhzhbsj8hrniq9p"; name = "lush-theme"; }; @@ -36209,7 +36420,7 @@ lusty-explorer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lusty-explorer"; - version = "20150508.1857"; + version = "20150509.57"; src = fetchFromGitHub { owner = "sjbach"; repo = "lusty-emacs"; @@ -36217,7 +36428,7 @@ sha256 = "1r1xfn0dyc4m49064g9n6hpwn4r763kpbg3dgprsv30i5ska61qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lusty-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lusty-explorer"; sha256 = "0xqanmmkyvzcg2g4zvascq5j004bqz7vmz1a19c25g9cs3rdh0ps"; name = "lusty-explorer"; }; @@ -36230,7 +36441,7 @@ lxc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "lxc"; - version = "20140410.1622"; + version = "20140410.2222"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-lxc"; @@ -36238,7 +36449,7 @@ sha256 = "090gk0il4yyypzjbh2qrjdaldwf90fi30impmh4zcfl73bic5q9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lxc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lxc"; sha256 = "1rv1ybmbjx7n3cavx21nzmvckw63q3jmjsfdr2pcgavrr2ck6lka"; name = "lxc"; }; @@ -36251,7 +36462,7 @@ m-buffer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "m-buffer"; - version = "20160125.1603"; + version = "20160125.2203"; src = fetchFromGitHub { owner = "phillord"; repo = "m-buffer-el"; @@ -36259,7 +36470,7 @@ sha256 = "1rrfvshl6zbsrswg5hrvq1p0rd9vacqwbr4s44kln7vg4ybcgr24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -36272,7 +36483,7 @@ macro-math = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "macro-math"; - version = "20130328.1204"; + version = "20130328.1704"; src = fetchFromGitHub { owner = "nschum"; repo = "macro-math.el"; @@ -36280,7 +36491,7 @@ sha256 = "119c77s3qp1vqc5m2yf7m4s81aphkhsvsnwqmpq6xl08r3592zxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -36292,13 +36503,13 @@ }) {}; macros-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "macros-plus"; - version = "20151231.1719"; + version = "20151231.2319"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/macros+.el"; sha256 = "07iw9iarz6z9n6vnhqqljfjpvq6vb97ca2hwj9v0k5k8mafdqg7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macros+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macros+"; sha256 = "0aihszxsjnc93pbbkmkr1iwzvii3jw8yh1f6dpnjykgvb328pvqi"; name = "macros-plus"; }; @@ -36311,7 +36522,7 @@ macrostep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "macrostep"; - version = "20151213.445"; + version = "20151213.1045"; src = fetchFromGitHub { owner = "joddie"; repo = "macrostep"; @@ -36319,7 +36530,7 @@ sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -36332,7 +36543,7 @@ mag-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, splitter }: melpaBuild { pname = "mag-menu"; - version = "20150505.1450"; + version = "20150505.2050"; src = fetchFromGitHub { owner = "chumpage"; repo = "mag-menu"; @@ -36340,7 +36551,7 @@ sha256 = "1flamyk7z3r723cczqra0f4yabc6kmgwjaw2bvs3kisppqmmz72g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mag-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mag-menu"; sha256 = "1r1yisjnqxl9llpf91rwqp4q47jc4qp32xnkl8wzsgr0r2qf5yk2"; name = "mag-menu"; }; @@ -36353,7 +36564,7 @@ magic-filetype = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magic-filetype"; - version = "20160522.1029"; + version = "20160522.1629"; src = fetchFromGitHub { owner = "zonuexe"; repo = "magic-filetype.el"; @@ -36361,7 +36572,7 @@ sha256 = "109j4czb71qg9jlnflzph0qmbxyfajddmg0yqwhl368pa29alvrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -36374,7 +36585,7 @@ magic-latex-buffer = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magic-latex-buffer"; - version = "20160212.903"; + version = "20160212.1503"; src = fetchFromGitHub { owner = "zk-phi"; repo = "magic-latex-buffer"; @@ -36382,7 +36593,7 @@ sha256 = "1gmhb8g1pl4qqk1d32hlvmhx2jqfsn3hkc4lkzhgk1n3qzfrq4hf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-latex-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-latex-buffer"; sha256 = "0xm4vk4aggyfw96cgya5cp97jzx5ha0xwpf2yfh7c3m8d9cca4y8"; name = "magic-latex-buffer"; }; @@ -36395,15 +36606,15 @@ magit = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, git-commit, lib, magit-popup, melpaBuild, with-editor }: melpaBuild { pname = "magit"; - version = "20160521.1808"; + version = "20160602.1848"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "826f72e72784315d3eceb96144bdfc9e225af6bf"; - sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il"; + rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2"; + sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -36423,7 +36634,7 @@ magit-annex = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-annex"; - version = "20160514.1905"; + version = "20160515.105"; src = fetchFromGitHub { owner = "magit"; repo = "magit-annex"; @@ -36431,7 +36642,7 @@ sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -36444,7 +36655,7 @@ magit-filenotify = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-filenotify"; - version = "20151116.1840"; + version = "20151117.40"; src = fetchFromGitHub { owner = "magit"; repo = "magit-filenotify"; @@ -36452,7 +36663,7 @@ sha256 = "0nkxxhxkhy314jv1l3hza84vigl8q7fc8hjjvrx58gfgsfgifx6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -36465,7 +36676,7 @@ magit-find-file = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-find-file"; - version = "20150702.430"; + version = "20150702.1030"; src = fetchFromGitHub { owner = "bradwright"; repo = "magit-find-file.el"; @@ -36473,7 +36684,7 @@ sha256 = "1j3jsrp0qpaa2xd98d1g9z0zc4b93knwajrlnlsc7l6g0vlfsddb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-find-file"; sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; @@ -36486,7 +36697,7 @@ magit-gerrit = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-gerrit"; - version = "20160226.430"; + version = "20160226.1030"; src = fetchFromGitHub { owner = "terranpro"; repo = "magit-gerrit"; @@ -36494,7 +36705,7 @@ sha256 = "0mms0gxv9a3ns8lk5k2wjibm3088y1cmpr3axjdh6ppv7r5wdvii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -36507,7 +36718,7 @@ magit-gh-pulls = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, magit, melpaBuild, pcache, s }: melpaBuild { pname = "magit-gh-pulls"; - version = "20160513.610"; + version = "20160513.1210"; src = fetchFromGitHub { owner = "sigma"; repo = "magit-gh-pulls"; @@ -36515,7 +36726,7 @@ sha256 = "1cnvfvf8c2f1jvxxl4qggzwhk082q0hfljhfm1znhc5qxh1vyc4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -36528,15 +36739,15 @@ magit-gitflow = callPackage ({ fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild }: melpaBuild { pname = "magit-gitflow"; - version = "20160428.530"; + version = "20160529.1300"; src = fetchFromGitHub { owner = "jtatarik"; repo = "magit-gitflow"; - rev = "26b64ec4f0953645c3e8afa806d873778cc61bb6"; - sha256 = "0ibb0fs21hwmhxrm43d0zb9wlnzr9mlbl5nxg2k6rd4x5xd1869d"; + rev = "c4c221d2c7474ce32e7cd56518aa82fb93607f8c"; + sha256 = "0bx5j0zskpyfz76px8lr74d4x0gcqwd0ghvbvyj957g2n1bqxr2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; @@ -36549,7 +36760,7 @@ magit-p4 = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, magit, magit-popup, melpaBuild, p4 }: melpaBuild { pname = "magit-p4"; - version = "20160311.1209"; + version = "20160311.1809"; src = fetchFromGitHub { owner = "qoocku"; repo = "magit-p4"; @@ -36557,7 +36768,7 @@ sha256 = "01ifl1bg3sd5d4b5ms9kyw074as8bkzqpwhxppp79ml46vp1np2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-p4"; sha256 = "19p7h3a21jjr2h52ika14lyczdv6z36gl7hk1v17bffffac8q069"; name = "magit-p4"; }; @@ -36570,15 +36781,15 @@ magit-popup = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magit-popup"; - version = "20160521.1521"; + version = "20160530.545"; src = fetchFromGitHub { owner = "magit"; repo = "magit"; - rev = "826f72e72784315d3eceb96144bdfc9e225af6bf"; - sha256 = "1q12hya4zj9f3k8r992fv1c8yx542w452z9cm808n0fagsz6y2il"; + rev = "7ceca0af16ab4a7c16298b11640fc331f17b29f2"; + sha256 = "0sdg30lcisrc1y2n6hjra3c7v6s7xjfbp8ay6mj3x7ynjqp7a65c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -36591,7 +36802,7 @@ magit-rockstar = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-rockstar"; - version = "20160517.951"; + version = "20160517.1551"; src = fetchFromGitHub { owner = "tarsius"; repo = "magit-rockstar"; @@ -36599,7 +36810,7 @@ sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -36612,7 +36823,7 @@ magit-stgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-stgit"; - version = "20160224.1003"; + version = "20160224.1603"; src = fetchFromGitHub { owner = "magit"; repo = "magit-stgit"; @@ -36620,7 +36831,7 @@ sha256 = "163a1rddl54jgxm5dygnbp1pz1as4hhjszan1rcabvzcfnfdpakj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -36633,7 +36844,7 @@ magit-svn = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-svn"; - version = "20151219.847"; + version = "20151219.1447"; src = fetchFromGitHub { owner = "magit"; repo = "magit-svn"; @@ -36641,7 +36852,7 @@ sha256 = "0r3nkrisyjawjwbm74yi6fqiwcqzlfkypsdscfhii0q50ky8plph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -36654,7 +36865,7 @@ magit-topgit = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild }: melpaBuild { pname = "magit-topgit"; - version = "20160313.1554"; + version = "20160313.2054"; src = fetchFromGitHub { owner = "magit"; repo = "magit-topgit"; @@ -36662,7 +36873,7 @@ sha256 = "06fbjv3zd92lvg4xjsp9l4jkxx2glhng3ys3s9jmvy5y49pymwb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -36675,7 +36886,7 @@ magma-mode = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "magma-mode"; - version = "20160304.708"; + version = "20160304.1308"; src = fetchFromGitHub { owner = "ThibautVerron"; repo = "magma-mode"; @@ -36683,7 +36894,7 @@ sha256 = "1pq6ckxp3dcb2f6xfsd4jwd43r9d0920m30ammp39glgc39p9lsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magma-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magma-mode"; sha256 = "1gq6yi51h1h7ivrm1xr6nfrpabx8ylbk0waaw04gnw3bb54dmmvc"; name = "magma-mode"; }; @@ -36696,7 +36907,7 @@ magnatune = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "magnatune"; - version = "20151030.1535"; + version = "20151030.2035"; src = fetchFromGitHub { owner = "eikek"; repo = "magnatune.el"; @@ -36704,7 +36915,7 @@ sha256 = "1hqz26zm4bdz5wavna4j9yia3ns4z19dnszl7k0lcpgbgmb0wh8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magnatune"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magnatune"; sha256 = "0fmxlrq5ls6fpbk5fv67aan8gg1c61i1chfw5lhf496pwqzq901d"; name = "magnatune"; }; @@ -36717,7 +36928,7 @@ main-line = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "main-line"; - version = "20151120.2106"; + version = "20151121.306"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mainline"; @@ -36725,7 +36936,7 @@ sha256 = "06sjwl0bk648wnnrmyh6qgnlqmxypjmy0gkfl6kpv01r8vh7x2q5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/main-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/main-line"; sha256 = "06rihx9h2h8ayrirbx74d9qdf26laz9yxffvxyldzm9hymlbzadd"; name = "main-line"; }; @@ -36738,7 +36949,7 @@ majapahit-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "majapahit-theme"; - version = "20160412.732"; + version = "20160412.1332"; src = fetchFromGitLab { owner = "franksn"; repo = "majapahit-theme"; @@ -36746,7 +36957,7 @@ sha256 = "1s4sm59wz03yz4srqzav7myq6p0gmijw5zj2kbpvxfanlr8b2rb1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/majapahit-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/majapahit-theme"; sha256 = "04k2smrya27rrjlzvnl3a6llg8vj8x4mm9qyk4kwrmckhd6jd68s"; name = "majapahit-theme"; }; @@ -36759,7 +36970,7 @@ make-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "make-color"; - version = "20140625.750"; + version = "20140625.1350"; src = fetchFromGitHub { owner = "alezost"; repo = "make-color.el"; @@ -36767,7 +36978,7 @@ sha256 = "1ky3scyjb69wi76xg6a8qx4ja6lr6mk530bv5gmhj7fxbq8b3x5c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -36780,7 +36991,7 @@ make-it-so = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "make-it-so"; - version = "20150319.1507"; + version = "20150319.2007"; src = fetchFromGitHub { owner = "abo-abo"; repo = "make-it-so"; @@ -36788,7 +36999,7 @@ sha256 = "00j5n9pil1qik4mrzvam4rp6213w8jm4qw7c4z8sxpq57xa0b679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-it-so"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-it-so"; sha256 = "0a8abz54mb60mfr0bl9ry8yawq99vx9hjl4fm2sivns58qjgfy73"; name = "make-it-so"; }; @@ -36801,7 +37012,7 @@ maker-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "maker-mode"; - version = "20150116.654"; + version = "20150116.1254"; src = fetchFromGitHub { owner = "fommil"; repo = "maker-mode"; @@ -36809,7 +37020,7 @@ sha256 = "0w3kar52yf8clf9801c4jzfrixi10clc8fs8ni2d4pzhdwwca2zw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maker-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maker-mode"; sha256 = "03q09jxmhwqy7g09navj08z9ir0rbh7w26c1av7hwhmq4i6xwg8a"; name = "maker-mode"; }; @@ -36822,7 +37033,7 @@ makey = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "makey"; - version = "20131231.930"; + version = "20131231.1530"; src = fetchFromGitHub { owner = "mickeynp"; repo = "makey"; @@ -36830,7 +37041,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -36843,7 +37054,7 @@ malabar-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, groovy-mode, lib, melpaBuild }: melpaBuild { pname = "malabar-mode"; - version = "20150720.1355"; + version = "20150720.1955"; src = fetchFromGitHub { owner = "m0smith"; repo = "malabar-mode"; @@ -36851,7 +37062,7 @@ sha256 = "0hlxs9gi2vml2id9q0r1r0xdm0zshjzc1w3phjf2ab0aa3hl5k6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -36864,7 +37075,7 @@ malinka = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, rtags, s }: melpaBuild { pname = "malinka"; - version = "20160402.429"; + version = "20160402.1029"; src = fetchFromGitHub { owner = "LefterisJP"; repo = "malinka"; @@ -36872,7 +37083,7 @@ sha256 = "04j7x7kkilfrk4i76aizkdhmghi9a5hc63mj6mhm8x0v1c4f15lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -36885,7 +37096,7 @@ mallard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mallard-mode"; - version = "20131203.2325"; + version = "20131204.525"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-mallard-mode"; @@ -36893,7 +37104,7 @@ sha256 = "18x3cssfn81k8hg4frj7dhzphg784321z51wbbvn3bjhq7s6j3a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -36906,7 +37117,7 @@ mallard-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, mallard-mode, melpaBuild, yasnippet }: melpaBuild { pname = "mallard-snippets"; - version = "20131023.1451"; + version = "20131023.2051"; src = fetchFromGitHub { owner = "jhradilek"; repo = "emacs-mallard-snippets"; @@ -36914,7 +37125,7 @@ sha256 = "0qk7i47nmyp4llwp6x0i1i5dk82ck26iyz1sjvvlihaw8a5akny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-snippets"; sha256 = "0437qd7q9i32pmhxaz3vi2dnfpj4nddmzgnqpwsgl28slhjw2hv8"; name = "mallard-snippets"; }; @@ -36927,7 +37138,7 @@ man-commands = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "man-commands"; - version = "20151221.1721"; + version = "20151221.2321"; src = fetchFromGitHub { owner = "nflath"; repo = "man-commands"; @@ -36935,7 +37146,7 @@ sha256 = "1lfq4hsq2n33l58ja5kzy6bwk9jxbcdsg6y8gqlk71lcslzqldrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/man-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/man-commands"; sha256 = "1yl7y0k24gydldfs406v1n523q46m9x6in6pgljgjnjravc67wnq"; name = "man-commands"; }; @@ -36948,7 +37159,7 @@ manage-minor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "manage-minor-mode"; - version = "20140310.1200"; + version = "20140310.1700"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "manage-minor-mode"; @@ -36956,7 +37167,7 @@ sha256 = "10wl7kc76dyijrmdlcl5cx821jg7clsj35r22955mbbgh7zl1x07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/manage-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/manage-minor-mode"; sha256 = "11jdj8kd401q0y8bbyyn72f27f51bckqid10dnh64z8w7hv59cw6"; name = "manage-minor-mode"; }; @@ -36969,15 +37180,15 @@ mandoku = callPackage ({ fetchFromGitHub, fetchurl, git, github-clone, lib, magit, melpaBuild, org }: melpaBuild { pname = "mandoku"; - version = "20160504.1312"; + version = "20160523.1008"; src = fetchFromGitHub { owner = "mandoku"; repo = "mandoku"; - rev = "f9b419c0069145f596aea12149e66ffef173ced4"; - sha256 = "0g2rxq0xy3kgd9v100nanisyg045gl93jqvgwbib6qzaf9bfvh60"; + rev = "f39a0d203bab05d0924bc99ad2416f587e187953"; + sha256 = "0ycivlbv2jxb06cpbnffdhnbisnm9vd6ysg7zynyr2pbzhf6vc37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mandoku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mandoku"; sha256 = "1pg7ir3y6yk92kfs5agbxapcxf7gy60m353rjv8g3kfkx5zyh3mv"; name = "mandoku"; }; @@ -36990,7 +37201,7 @@ map-progress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "map-progress"; - version = "20140310.1732"; + version = "20140310.2232"; src = fetchFromGitHub { owner = "tarsius"; repo = "map-progress"; @@ -36998,7 +37209,7 @@ sha256 = "0pd6bh7wrrh59blp86a2jl2vi4qkzx49z0hy7dkc71ccg0wjsgz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -37011,7 +37222,7 @@ map-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "map-regexp"; - version = "20130522.1703"; + version = "20130522.2303"; src = fetchFromGitHub { owner = "tarsius"; repo = "map-regexp"; @@ -37019,7 +37230,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -37032,7 +37243,7 @@ marcopolo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "marcopolo"; - version = "20160421.604"; + version = "20160421.1204"; src = fetchFromGitHub { owner = "nlamirault"; repo = "marcopolo"; @@ -37040,7 +37251,7 @@ sha256 = "1qf724y1zq3z6fzm23qhwjl2knhs49nbz0vizwf8g9s51bk6bny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -37053,7 +37264,7 @@ mark-multiple = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mark-multiple"; - version = "20121118.1054"; + version = "20121118.1654"; src = fetchFromGitHub { owner = "magnars"; repo = "mark-multiple.el"; @@ -37061,7 +37272,7 @@ sha256 = "1x3anvy3hlmydxyfzr1rhaiy502yi1yz3v54sg8wc1w7jrvwaj29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-multiple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-multiple"; sha256 = "179wd9g0smm76k92n7j2vgg8gz5wn9lczrns5ggq2yhbc77j0gn4"; name = "mark-multiple"; }; @@ -37074,7 +37285,7 @@ mark-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mark-tools"; - version = "20130614.625"; + version = "20130614.1225"; src = fetchFromGitHub { owner = "stsquad"; repo = "emacs-mark-tools"; @@ -37082,7 +37293,7 @@ sha256 = "0k4zvbs09mkr8vdffv18s55rn9cyxldzav9vw04lm7v296k94ivz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -37095,7 +37306,7 @@ markdown-mac-link = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mac-link"; - version = "20160520.521"; + version = "20160520.1121"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "markdown-mac-link"; @@ -37103,7 +37314,7 @@ sha256 = "0lqxl8myshmk99hnj94ivz8xrpbgsf8dmjivkf35x58k06drbn4f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mac-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mac-link"; sha256 = "075hmv3mchxbawyxzm9r2hjdy4xislh8590bn077w5rscha8d713"; name = "markdown-mac-link"; }; @@ -37116,15 +37327,15 @@ markdown-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-mode"; - version = "20160513.918"; + version = "20160527.1135"; src = fetchFromGitHub { owner = "jrblevin"; repo = "markdown-mode"; - rev = "c560ddd51b6066aeea47c9f1cd2f54474745ed10"; - sha256 = "0cy9qmvy7xm1hl8dcfqcfd8rcn0pg2zarjbxf1mafvpzp5w30jsb"; + rev = "437713de8b6ce18485fdc9733d38cf125c56fee9"; + sha256 = "16bw1pzxy28540r3lrgkd0nk1dcfbg3cj9rh8y6qj56ybx48d6kr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; @@ -37137,7 +37348,7 @@ markdown-mode-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "markdown-mode-plus"; - version = "20120829.810"; + version = "20120829.1410"; src = fetchFromGitHub { owner = "milkypostman"; repo = "markdown-mode-plus"; @@ -37145,7 +37356,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -37158,7 +37369,7 @@ markdown-preview-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markdown-preview-eww"; - version = "20160111.1002"; + version = "20160111.1602"; src = fetchFromGitHub { owner = "niku"; repo = "markdown-preview-eww"; @@ -37166,7 +37377,7 @@ sha256 = "1i5gr3j9dq41p2zl4bfyvzv6i5z7hgrxzrycmbdc3s7nja36k9z4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-eww"; sha256 = "0j6924f84is41dspib68y5lnz1f8nm7pqyhv47alxra50cjrpxnx"; name = "markdown-preview-eww"; }; @@ -37179,7 +37390,7 @@ markdown-preview-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, websocket }: melpaBuild { pname = "markdown-preview-mode"; - version = "20160215.1149"; + version = "20160215.1749"; src = fetchFromGitHub { owner = "ancane"; repo = "markdown-preview-mode"; @@ -37187,7 +37398,7 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -37200,7 +37411,7 @@ markdown-toc = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild, s }: melpaBuild { pname = "markdown-toc"; - version = "20160227.608"; + version = "20160227.1208"; src = fetchFromGitHub { owner = "ardumont"; repo = "markdown-toc"; @@ -37208,7 +37419,7 @@ sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -37221,7 +37432,7 @@ markup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markup"; - version = "20130207.1609"; + version = "20130207.2209"; src = fetchFromGitHub { owner = "leoc"; repo = "markup.el"; @@ -37229,7 +37440,7 @@ sha256 = "1i95b15mvkkki2iq8hysdr7jr1d5nix9jjkh7jz0alvaybqlsnqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup"; sha256 = "0yw4b42nc2n7nanqvj596hwjf0p4qc7x6g2d9g5cwi7975iak8pf"; name = "markup"; }; @@ -37242,7 +37453,7 @@ markup-faces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "markup-faces"; - version = "20141110.317"; + version = "20141110.917"; src = fetchFromGitHub { owner = "sensorflo"; repo = "markup-faces"; @@ -37250,7 +37461,7 @@ sha256 = "1w6i1m7xdr9cijnmdj35cl99r12vl83qws0qlfhrgvisilshnr27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -37263,7 +37474,7 @@ marmalade = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }: melpaBuild { pname = "marmalade"; - version = "20110602.1922"; + version = "20110603.122"; src = fetchFromGitHub { owner = "nex3"; repo = "marmalade"; @@ -37271,7 +37482,7 @@ sha256 = "1ygznmqb3fqy94p8qi71i223m7cpw3f596pkls2ybjlbpb4psjcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -37284,7 +37495,7 @@ marmalade-client = callPackage ({ fetchFromGitHub, fetchurl, gh, kv, lib, melpaBuild, web }: melpaBuild { pname = "marmalade-client"; - version = "20141231.1507"; + version = "20141231.2107"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-marmalade-upload"; @@ -37292,7 +37503,7 @@ sha256 = "017k109nfif5mzkj547py8pdnzlr4sxb74yqqsl944znflq67blr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade-client"; sha256 = "0llwqwwxrf7qdkpdb03ij0iinll0vc9qr557zyr3bn5zb4fad1sq"; name = "marmalade-client"; }; @@ -37305,7 +37516,7 @@ marshal = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "marshal"; - version = "20150916.2157"; + version = "20150917.357"; src = fetchFromGitHub { owner = "sigma"; repo = "marshal.el"; @@ -37313,7 +37524,7 @@ sha256 = "0fwhhzfd6vgpaf5mrw90hvm35j2kzhk9h3gbrwd7y7q08nrmsx9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -37326,7 +37537,7 @@ material-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "material-theme"; - version = "20160516.1144"; + version = "20160516.1744"; src = fetchFromGitHub { owner = "cpaulik"; repo = "emacs-material-theme"; @@ -37334,7 +37545,7 @@ sha256 = "1j1282bvsjj71nhswpz0nr11gc7nzxvr113ara49ya58vqhm42gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/material-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/material-theme"; sha256 = "1d259avldc5fq121xrqv53h8s4f4bp6b89nz2rvjhygz7f8hargq"; name = "material-theme"; }; @@ -37347,7 +37558,7 @@ math-symbol-lists = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "math-symbol-lists"; - version = "20160302.1731"; + version = "20160302.2331"; src = fetchFromGitHub { owner = "vspinu"; repo = "math-symbol-lists"; @@ -37355,7 +37566,7 @@ sha256 = "0k1ayv0a9g778b50jni3hh70pg6axmq34wl8x3zgphadgms1w9dd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; @@ -37368,7 +37579,7 @@ math-symbols = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "math-symbols"; - version = "20151121.1942"; + version = "20151122.142"; src = fetchFromGitHub { owner = "kawabata"; repo = "math-symbols"; @@ -37376,7 +37587,7 @@ sha256 = "1chyxi096krjbi9zgbrnrkvwgmn4wygnia9m57m0jh4arlbm28la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbols"; sha256 = "0sx9cgyk56npjd6z78y9cldbvjl5ipl7k1nc1sylg1iggkbwxnqx"; name = "math-symbols"; }; @@ -37389,14 +37600,14 @@ matlab-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "matlab-mode"; - version = "20160416.334"; + version = "20160527.2252"; src = fetchgit { url = "git://git.code.sf.net/p/matlab-emacs/src"; - rev = "4e052dea36a6bbdf81c8ada5be5eca3297f54bd6"; - sha256 = "0pwbq6hpvd4n9aw94dfpzynli6xc8r21q6kjpiwpfmyvag0lvyg9"; + rev = "64f2a5635fb3c690ed22d40779ea930ed5130b5c"; + sha256 = "1yfh1j85lnjn58dhrb54wz4ggkbl5gw6wnbx8abknryjyg6c483a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matlab-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matlab-mode"; sha256 = "1bybc5xv5hbjh8afmh03qda5g3m2wcgsk6lgj6jkyyxzdfxqkrck"; name = "matlab-mode"; }; @@ -37409,14 +37620,14 @@ matrix-client = callPackage ({ fetchgit, fetchurl, json ? null, lib, melpaBuild, request }: melpaBuild { pname = "matrix-client"; - version = "20160425.59"; + version = "20160425.659"; src = fetchgit { url = "git://fort.kickass.systems/personal/rrix/pub/matrix.el"; rev = "087e5520a3a1f9a8fcaa1ce61b4c06bc55a63605"; sha256 = "0z79l8md683vvc51fz0nmbazb6i7hklkm0asglflr96pldil50l8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -37429,7 +37640,7 @@ maude-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "maude-mode"; - version = "20160222.1107"; + version = "20160222.1707"; src = fetchFromGitHub { owner = "rudi"; repo = "maude-mode"; @@ -37437,7 +37648,7 @@ sha256 = "1sn9bdaq3mf2vss5gzmxhnp9fz43cakxh36qjdgqrvx302nlnv52"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maude-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maude-mode"; sha256 = "1w5v3r905xkwchkm2gzvzpswba5p2m7hqpyg9fzq2ldlr8kk7ah3"; name = "maude-mode"; }; @@ -37450,7 +37661,7 @@ maven-test-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "maven-test-mode"; - version = "20141220.57"; + version = "20141220.657"; src = fetchFromGitHub { owner = "rranelli"; repo = "maven-test-mode"; @@ -37458,7 +37669,7 @@ sha256 = "1xn2yyr8mr90cynbxgv0h5v180pzf0ydnjr9spg34mrdicqlki6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -37471,7 +37682,7 @@ maxframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "maxframe"; - version = "20140916.1054"; + version = "20140916.1654"; src = fetchFromGitHub { owner = "rmm5t"; repo = "maxframe.el"; @@ -37479,7 +37690,7 @@ sha256 = "0g9kpsg6623nmxnshj49q8k952xybrkmqqy6m892m8wnm22pjdz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -37491,13 +37702,13 @@ }) {}; mb-depth-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-depth-plus"; - version = "20151231.1721"; + version = "20151231.2321"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mb-depth+.el"; sha256 = "0w8clp96jblsc9v87404zpc280ms0d644in34jdgjc5r33f4i0g3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-depth+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-depth+"; sha256 = "031hh227rh7l818p3di4h34i4698yynw5g9a5sl2hj47c0734q6w"; name = "mb-depth-plus"; }; @@ -37510,15 +37721,15 @@ mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-url"; - version = "20160508.931"; + version = "20160602.1302"; src = fetchFromGitHub { owner = "dochang"; repo = "mb-url"; - rev = "35d5ce5888b7a49cfb642535039560b7b52512d5"; - sha256 = "1pbs7hb7bhbsnwrs7fc4max2k471bzkjigc2w123szmwmsvz84k6"; + rev = "85d4847d1d71e636ee264c537073973b1dcbe0b9"; + sha256 = "1pi5yi76781pckvqgqabmkvq081npzkzl3r97f1wbcndvpfvv8jx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -37531,7 +37742,7 @@ mbe = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mbe"; - version = "20151126.634"; + version = "20151126.1234"; src = fetchFromGitHub { owner = "ijp"; repo = "mbe.el"; @@ -37539,7 +37750,7 @@ sha256 = "1zywygdgnp2zr8fxqhl0cbrgbl43931k936b9imhqi96p6622pb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -37552,7 +37763,7 @@ mbo70s-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mbo70s-theme"; - version = "20141122.942"; + version = "20141122.1542"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mbo70s-theme"; @@ -37560,7 +37771,7 @@ sha256 = "1vr85fdlb4zwgid1v00ndppla9fqqk25g2x2f5alm69pfqssr75z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbo70s-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbo70s-theme"; sha256 = "1abx2rw09xxp122ff7i9sry5djd4l6vn4lfzxs92rknjzkyc40pb"; name = "mbo70s-theme"; }; @@ -37573,7 +37784,7 @@ mc-extras = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "mc-extras"; - version = "20150218.534"; + version = "20150218.1134"; src = fetchFromGitHub { owner = "knu"; repo = "mc-extras.el"; @@ -37581,7 +37792,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -37594,7 +37805,7 @@ md-readme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "md-readme"; - version = "20150506.259"; + version = "20150506.859"; src = fetchFromGitHub { owner = "thomas11"; repo = "md-readme"; @@ -37602,7 +37813,7 @@ sha256 = "1j8gp3byanf1mq8sc4hv838rgcywlv35d8q1vjwzsjaznvz8hvc3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/md-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/md-readme"; sha256 = "1krq0f79jjrlihr2aqq87pxdqixv2zdjw4hm732sz79g996yxyw3"; name = "md-readme"; }; @@ -37615,7 +37826,7 @@ meacupla-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "meacupla-theme"; - version = "20151027.1817"; + version = "20151027.2317"; src = fetchFromGitLab { owner = "jtecca"; repo = "meacupla-theme"; @@ -37623,7 +37834,7 @@ sha256 = "136lh39hakwx46rd1gsmsfhsj78mrpamid766v2vjx9rkkprk0zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/meacupla-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/meacupla-theme"; sha256 = "09q88q2xghj5vn5y3mjrcparfwdzavkgjyg2ay55h7wf5f2zpw2d"; name = "meacupla-theme"; }; @@ -37636,7 +37847,7 @@ mediawiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mediawiki"; - version = "20160425.1002"; + version = "20160425.1602"; src = fetchFromGitHub { owner = "hexmode"; repo = "mediawiki-el"; @@ -37644,7 +37855,7 @@ sha256 = "0kzmvsbzqrkrlnr5sf1xwazm9zyzbrflb4d1jrkp206q9yk439cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -37657,7 +37868,7 @@ mellow-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mellow-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mellow-theme"; @@ -37665,7 +37876,7 @@ sha256 = "0bilwhvprzk634sk5hnxilrvrl0yv593swzznch0p38hqxl585ld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mellow-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mellow-theme"; sha256 = "0kl1psykx7akxwabszk4amszh3zil8ia4bfbjjvr6h9phgx66pb0"; name = "mellow-theme"; }; @@ -37678,7 +37889,7 @@ melpa-upstream-visit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "melpa-upstream-visit"; - version = "20130720.633"; + version = "20130720.1233"; src = fetchFromGitHub { owner = "laynor"; repo = "melpa-upstream-visit"; @@ -37686,7 +37897,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -37699,7 +37910,7 @@ memento = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "memento"; - version = "20150823.639"; + version = "20150823.1239"; src = fetchFromGitHub { owner = "ehartc"; repo = "memento"; @@ -37707,7 +37918,7 @@ sha256 = "0pjqax3pi6pb650yb8iwa4brwwl6cdka7jym3cfkpppyy782dm0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memento"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memento"; sha256 = "0f8ajhj677r2kxszmad6h1j1b827ja0vaz2my1vx145y3gf160b8"; name = "memento"; }; @@ -37720,7 +37931,7 @@ memoize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "memoize"; - version = "20130421.1534"; + version = "20130421.2134"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacs-memoize"; @@ -37728,7 +37939,7 @@ sha256 = "0fjwlrdm270qcrqffvarw5yhijk656q4lam79ybhaznzj0dq3xpw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memoize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memoize"; sha256 = "0mzz3hghnbkmxf9wgjqv3sbyxyqqzvvscazq9ybb0b41qrzm73s6"; name = "memoize"; }; @@ -37741,7 +37952,7 @@ memolist = callPackage ({ ag, fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "memolist"; - version = "20150804.1321"; + version = "20150804.1921"; src = fetchFromGitHub { owner = "mikanfactory"; repo = "memolist.el"; @@ -37749,7 +37960,7 @@ sha256 = "1jd4rjv812iv7kp4wyxdz8sk7j0442m8x2ypk6hiqis0braxnspm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/memolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/memolist"; sha256 = "1whajbwmz1v01dirv795bhvs27vq9dh0qmj10dk2xia7vhn42mgh"; name = "memolist"; }; @@ -37762,7 +37973,7 @@ mentor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "mentor"; - version = "20140904.2010"; + version = "20140905.210"; src = fetchFromGitHub { owner = "skangas"; repo = "mentor"; @@ -37770,7 +37981,7 @@ sha256 = "11hyydc13jdai6lkxx8nqf8xljh0gx7fcmywhik4f1hf3pdv7i2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -37782,13 +37993,13 @@ }) {}; menu-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "menu-bar-plus"; - version = "20160512.2014"; + version = "20160513.214"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/menu-bar+.el"; sha256 = "0v3n0227fmdk6hshnc1x1sxqci0pi3954nqy5ym4k9bmvw3cyxlg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/menu-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/menu-bar+"; sha256 = "181jxjnzdckmvpsdknhm21xwimvsp0qxn8azfn58dz41gl4xcg90"; name = "menu-bar-plus"; }; @@ -37801,7 +38012,7 @@ merlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "merlin"; - version = "20160229.928"; + version = "20160229.1528"; src = fetchFromGitHub { owner = "the-lambda-church"; repo = "merlin"; @@ -37809,7 +38020,7 @@ sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; @@ -37821,13 +38032,13 @@ }) {}; message-x = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "message-x"; - version = "20151029.1018"; + version = "20151029.1518"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/message-x.el"; sha256 = "05ic97plsysh4nqwdrsl5m9f24m11w24bahj8bxzfdawfima2bkf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/message-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/message-x"; sha256 = "0z12alizwrqp5f9wq3qllym9k5xljh904c9qhlfhp9biazj6yqwj"; name = "message-x"; }; @@ -37840,7 +38051,7 @@ meta-presenter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "meta-presenter"; - version = "20150501.710"; + version = "20150501.1310"; src = fetchFromGitHub { owner = "myTerminal"; repo = "meta-presenter"; @@ -37848,7 +38059,7 @@ sha256 = "1x425ah3ymjyp3pxvyzyp4gd8zrjx8lgdzprml8qvf1yk82iv45l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/meta-presenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/meta-presenter"; sha256 = "0f70cfa91wavchlx8d9hdlgq90cmnylhbg2dbw603rzjkyvslp5d"; name = "meta-presenter"; }; @@ -37861,7 +38072,7 @@ metafmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metafmt"; - version = "20160221.1155"; + version = "20160221.1755"; src = fetchFromGitHub { owner = "lvillani"; repo = "metafmt"; @@ -37869,7 +38080,7 @@ sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metafmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metafmt"; sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; @@ -37882,7 +38093,7 @@ metascript-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "metascript-mode"; - version = "20150708.2057"; + version = "20150709.257"; src = fetchFromGitHub { owner = "metascript"; repo = "metascript-mode"; @@ -37890,7 +38101,7 @@ sha256 = "1rascpmv17dksyn9y0llmjb8r4484x5ax54w6r83k1x7ha1iacx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metascript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metascript-mode"; sha256 = "1kgs4ki0s6bxx2ri6zxmsy2b2w56gnr9hjkr6302wcmp3qy7clwn"; name = "metascript-mode"; }; @@ -37903,7 +38114,7 @@ metaweblog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "metaweblog"; - version = "20141130.905"; + version = "20141130.1505"; src = fetchFromGitHub { owner = "punchagan"; repo = "metaweblog"; @@ -37911,7 +38122,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metaweblog"; sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; @@ -37924,7 +38135,7 @@ mew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mew"; - version = "20150814.254"; + version = "20150814.854"; src = fetchFromGitHub { owner = "kazu-yamamoto"; repo = "Mew"; @@ -37932,7 +38143,7 @@ sha256 = "1rkipcv53p7zra3gbjc77ywyxn8d1kx2gniyfqq16d2p2jw0lbzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -37945,7 +38156,7 @@ mexican-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mexican-holidays"; - version = "20160109.1642"; + version = "20160109.2242"; src = fetchFromGitHub { owner = "shopClerk"; repo = "mexican-holidays"; @@ -37953,7 +38164,7 @@ sha256 = "0bhllmyk1r9y63jw5gx10v09791w33lc54qs31gcxbnss094l6py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mexican-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mexican-holidays"; sha256 = "0awf4vv6mbp1xr92nsgdn513g4adqhp21k12q4fbm85b2l3jlspb"; name = "mexican-holidays"; }; @@ -37966,15 +38177,15 @@ mhc = callPackage ({ calfw, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mhc"; - version = "20160210.2337"; + version = "20160520.441"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "mhc"; - rev = "f520c1f8c46e635c8131754b79b9b071612e295d"; - sha256 = "0ahbf4cd9q65xrvsc1clym3swdwwsl8llccrl5l1qgxqx5xg61hv"; + rev = "32d17a332cdfbe63654d47456efaa19a51a2f03f"; + sha256 = "1n3rx9hx7v6zbzb443r2c8292sfbcgvm3a4477awxizxnikyxdbq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -37987,7 +38198,7 @@ mic-paren = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mic-paren"; - version = "20150110.2116"; + version = "20150111.316"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mic-paren"; @@ -37995,7 +38206,7 @@ sha256 = "0l7xfana2cb894w5qi6wwx7w9k89c3i8k40fpsd93sm3hgi5ryii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mic-paren"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mic-paren"; sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; name = "mic-paren"; }; @@ -38008,7 +38219,7 @@ micgoline = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "micgoline"; - version = "20160414.2326"; + version = "20160415.526"; src = fetchFromGitHub { owner = "yzprofile"; repo = "micgoline"; @@ -38016,7 +38227,7 @@ sha256 = "0r6l6iqn5z9wp4w58flnls7kk6300qlxyy04fw0np00nvwsy4qvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/micgoline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/micgoline"; sha256 = "0xixcy006my2s0wn0isiag0b4rm38kswa5m0xnhg5n30qjjfzf4i"; name = "micgoline"; }; @@ -38029,7 +38240,7 @@ midje-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "midje-mode"; - version = "20150921.2050"; + version = "20150922.250"; src = fetchFromGitHub { owner = "dnaumov"; repo = "midje-mode"; @@ -38037,7 +38248,7 @@ sha256 = "1cigsr0hkbi1860w38k2j8fw6j4w43pgv2bpkmdsifbqy6l8grpg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/midje-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/midje-mode"; sha256 = "0069hwy5cyrsv5b1yvjhmjasywbmc8x3daq9hkzidy3a2fmqgqv3"; name = "midje-mode"; }; @@ -38050,7 +38261,7 @@ migemo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "migemo"; - version = "20150412.1041"; + version = "20150412.1641"; src = fetchFromGitHub { owner = "emacs-jp"; repo = "migemo"; @@ -38058,7 +38269,7 @@ sha256 = "1az4mnmanhz9ga0g46jf33w8axcw8lnrb9lmszajwv7y5j9nk7yr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -38071,7 +38282,7 @@ milkode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "milkode"; - version = "20140927.129"; + version = "20140927.729"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "emacs-milkode"; @@ -38079,7 +38290,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -38092,14 +38303,14 @@ minesweeper = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minesweeper"; - version = "20150414.122"; + version = "20150414.722"; src = fetchhg { url = "https://bitbucket.com/zck/minesweeper.el"; rev = "d29af12fc611"; sha256 = "1b2kn4c90hl07lzdg10wamd4lq8f24wmaj4zvr728pwyga99b2av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minesweeper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minesweeper"; sha256 = "1n6r3a3rl09pv4jvb7ald1gaipqylfchggza973qv9rgh5g90nag"; name = "minesweeper"; }; @@ -38112,7 +38323,7 @@ mingus = callPackage ({ fetchFromGitHub, fetchurl, lib, libmpdee, melpaBuild }: melpaBuild { pname = "mingus"; - version = "20160321.1217"; + version = "20160321.1717"; src = fetchFromGitHub { owner = "pft"; repo = "mingus"; @@ -38120,7 +38331,7 @@ sha256 = "14dqa37z96nhmrhiczri0cyrzmjc3larw8sszvdal9prj47363sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mingus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mingus"; sha256 = "0vw09qk56l792706vvp465f40shf678mcmdh7iw8wsjix4401bzi"; name = "mingus"; }; @@ -38133,7 +38344,7 @@ minibuf-isearch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuf-isearch"; - version = "20151226.1443"; + version = "20151226.2043"; src = fetchFromGitHub { owner = "knagano"; repo = "minibuf-isearch"; @@ -38141,7 +38352,7 @@ sha256 = "1n4b039448826w2jcsv4r2iw3v2vlrsxw8dbci8wcfigmkbfc879"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuf-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuf-isearch"; sha256 = "0n36d152lc53zj9jy38b0c7hlww0z6hx94y3x2njy6cmh3p5g8nh"; name = "minibuf-isearch"; }; @@ -38154,7 +38365,7 @@ minibuffer-complete-cycle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuffer-complete-cycle"; - version = "20130813.1245"; + version = "20130813.1845"; src = fetchFromGitHub { owner = "knu"; repo = "minibuffer-complete-cycle"; @@ -38162,7 +38373,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -38175,7 +38386,7 @@ minibuffer-cua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minibuffer-cua"; - version = "20130906.734"; + version = "20130906.1334"; src = fetchFromGitHub { owner = "knu"; repo = "minibuffer-cua.el"; @@ -38183,7 +38394,7 @@ sha256 = "011kg76zr4hfhi2gngnc7jlmp0l0nvhmlgyc0y9bir2jbjf4yyvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -38196,7 +38407,7 @@ miniedit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "miniedit"; - version = "20100419.1345"; + version = "20100419.1945"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "miniedit"; @@ -38204,7 +38415,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -38217,7 +38428,7 @@ minimal-session-saver = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minimal-session-saver"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "minimal-session-saver"; @@ -38225,7 +38436,7 @@ sha256 = "1sj5sq932w079y3vy55q5b6wybwrzz30y092iq1mpfg5xvl42sbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -38238,7 +38449,7 @@ minimal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minimal-theme"; - version = "20140409.1901"; + version = "20140410.101"; src = fetchFromGitHub { owner = "ikame"; repo = "minimal-theme"; @@ -38246,7 +38457,7 @@ sha256 = "1iy1z2kwnbzxhz5r4gsy4zm0l3xbwy314dqxliprbl8n2m9w0lmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-theme"; sha256 = "0l4xj5q06h5fk634d6v3idm0zniq8grz4rjm6qzi7b4jr9sc60gm"; name = "minimal-theme"; }; @@ -38259,7 +38470,7 @@ minitest = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minitest"; - version = "20160428.1350"; + version = "20160428.1950"; src = fetchFromGitHub { owner = "arthurnn"; repo = "minitest-emacs"; @@ -38267,7 +38478,7 @@ sha256 = "0m37gjrcsjsvprq8w19qw5ivd4l1xb12609ixvbv1k21b15s1x38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -38280,7 +38491,7 @@ minizinc-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "minizinc-mode"; - version = "20151214.858"; + version = "20151214.1458"; src = fetchFromGitHub { owner = "m00nlight"; repo = "minizinc-mode"; @@ -38288,7 +38499,7 @@ sha256 = "0808cl5ixvmhd8pa6fc8rn7wbxzvqjgz43mz1pambj89vbkzmw1c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minizinc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minizinc-mode"; sha256 = "1blb6mbyqvmdvwp477p1ggs3n6rzi9sdfvi0v1wfzmd7k749b10c"; name = "minizinc-mode"; }; @@ -38300,13 +38511,13 @@ }) {}; minor-mode-hack = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "minor-mode-hack"; - version = "20141226.1520"; + version = "20141226.2120"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/minor-mode-hack.el"; sha256 = "0vwvvhzqiad82qvfwygb2arq1mdvh1lj6q2as0a92fg1vc95qcb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minor-mode-hack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minor-mode-hack"; sha256 = "1f2wy25iphk3hzjy39ls5j04173g7gaq2rdp2grkawfhwx0ld4pj"; name = "minor-mode-hack"; }; @@ -38319,7 +38530,7 @@ mip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mip-mode"; - version = "20151127.117"; + version = "20151127.717"; src = fetchFromGitHub { owner = "gaudecker"; repo = "mip-mode"; @@ -38327,7 +38538,7 @@ sha256 = "12k9ii4090dn03xvgqisl4zl4qi33054zxyfkqzzpa9wv72h4knc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mip-mode"; sha256 = "1wx5zg4kimd29vqipbzm4vjphn0mldri12g6b18kc290nhgj22ar"; name = "mip-mode"; }; @@ -38339,13 +38550,13 @@ }) {}; misc-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "misc-cmds"; - version = "20151231.1723"; + version = "20151231.2323"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/misc-cmds.el"; sha256 = "0sc4l0prwmakxmdq22xd5mj8ddwhzrs034zmx2swi2k3s07x15id"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/misc-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/misc-cmds"; sha256 = "0bylb84icddgznmim18fwq1mhh3qz8yh8ch6lpadf9p3h420qgcl"; name = "misc-cmds"; }; @@ -38357,13 +38568,13 @@ }) {}; misc-fns = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "misc-fns"; - version = "20151231.1808"; + version = "20160529.2352"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/misc-fns.el"; - sha256 = "1mksmxy741sv7d5lr9wlj4klb0sg06bg5z1zpd5hj0bd4b3mx7x0"; + sha256 = "1549qcz5c4l6zjl09j1573i00qdgdl41nvnl5hhqg39gi4nz4c9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/misc-fns"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/misc-fns"; sha256 = "1spjbkcac33lyfsgkd6z186a3432x9nw3akmx194gaap2863xcam"; name = "misc-fns"; }; @@ -38376,7 +38587,7 @@ mkdown = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "mkdown"; - version = "20140517.1018"; + version = "20140517.1618"; src = fetchFromGitHub { owner = "ajtulloch"; repo = "mkdown.el"; @@ -38384,7 +38595,7 @@ sha256 = "1d08i2cfn1q446nyyji0hi9vlw7bzkpxhn6653jz2k77vd2y0wmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mkdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mkdown"; sha256 = "1b2vi8q6jhq1xv7yr5f3aiyp1w8j59w19vxys0pv6bqr2gra07i1"; name = "mkdown"; }; @@ -38397,7 +38608,7 @@ mmm-jinja2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "mmm-jinja2"; - version = "20150904.1434"; + version = "20150904.2034"; src = fetchFromGitHub { owner = "beardedprojamz"; repo = "mmm-jinja2"; @@ -38405,7 +38616,7 @@ sha256 = "1lcc2p9qz70kpykgx82isv0qiqlsajp4vvcj6bvag92d7h9yk9bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-jinja2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-jinja2"; sha256 = "0579sv77dyzishhcw4xxi444inwy4jgh9vmxwd856nd05j3cyc7z"; name = "mmm-jinja2"; }; @@ -38418,14 +38629,14 @@ mmm-mako = callPackage ({ fetchhg, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "mmm-mako"; - version = "20121020.251"; + version = "20121020.851"; src = fetchhg { url = "https://bitbucket.com/pjenvey/mmm-mako"; rev = "5c9ff92137b5"; sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -38438,7 +38649,7 @@ mmm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mmm-mode"; - version = "20150828.2016"; + version = "20150829.216"; src = fetchFromGitHub { owner = "purcell"; repo = "mmm-mode"; @@ -38446,7 +38657,7 @@ sha256 = "04rapmqblfjvmdccm9kqi8gn0him1x2q7hjwsyb8mg4lwxcd7qp9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -38459,15 +38670,15 @@ mmt = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mmt"; - version = "20150906.1259"; + version = "20150906.1859"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "mmt"; - rev = "e77b809e39b9ab437b662ee759e990163bc89377"; - sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; + rev = "3420eb014f86327ac68638e841ab7860aead5087"; + sha256 = "0l5lpyiygikm9rwgk6jgx23wmc26hvhnqn9964d60l5a4b9fam74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -38480,7 +38691,7 @@ mo-git-blame = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mo-git-blame"; - version = "20160129.1259"; + version = "20160129.1859"; src = fetchFromGitHub { owner = "mbunkus"; repo = "mo-git-blame"; @@ -38488,7 +38699,7 @@ sha256 = "1dh92hzpicfvrlg6swrw4igwb771xbsmsf7hxp1a4iry4w8dk398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mo-git-blame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mo-git-blame"; sha256 = "1dp9pxhggappb70m5hyp8sxlnh06y996adabq7x6qvm745mk6f0x"; name = "mo-git-blame"; }; @@ -38501,7 +38712,7 @@ mo-vi-ment-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mo-vi-ment-mode"; - version = "20131029.233"; + version = "20131029.733"; src = fetchFromGitHub { owner = "AjayMT"; repo = "mo-vi-ment"; @@ -38509,7 +38720,7 @@ sha256 = "0k0scl9z35d8x4ikxm2db1frpbx151p2m181fa1armxbd9lbfvnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mo-vi-ment-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mo-vi-ment-mode"; sha256 = "1pg889mgpv0waccm135mlvag7q13gzfkzchv2532jngwrn6amqc7"; name = "mo-vi-ment-mode"; }; @@ -38522,7 +38733,7 @@ mobdebug-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, lua-mode, melpaBuild }: melpaBuild { pname = "mobdebug-mode"; - version = "20140109.2246"; + version = "20140110.446"; src = fetchFromGitHub { owner = "deftsp"; repo = "mobdebug-mode"; @@ -38530,7 +38741,7 @@ sha256 = "04hbd7mv29v3fv4ld0b3skrir0wp9dix2n5nbqp63fj6n5i4cyyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mobdebug-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mobdebug-mode"; sha256 = "19k0c7igqsqvib6hx0nssig4l5f959dlr4wijd1hp5h1hmcb5vv8"; name = "mobdebug-mode"; }; @@ -38540,22 +38751,22 @@ license = lib.licenses.free; }; }) {}; - mocha = callPackage ({ fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: + mocha = callPackage ({ f, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "mocha"; - version = "20160223.2355"; + version = "20160524.1623"; src = fetchFromGitHub { owner = "scottaj"; repo = "mocha.el"; - rev = "d80ff60e2063029fdda4fa6486352ac8487bdebf"; - sha256 = "0wddbk510k2c8gnz0b1l1v4bw1vxk8y0fk1ln7kb67h5kvhyr9h3"; + rev = "1f1828e834ac24201823db108ecb02f27a28d4de"; + sha256 = "12i4na064z9cxhxgs9mh056j5r1rxpmmis9jfllcpsx4nhs9i9hp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; - packageRequires = [ js2-mode ]; + packageRequires = [ f js2-mode ]; meta = { homepage = "https://melpa.org/#/mocha"; license = lib.licenses.free; @@ -38564,7 +38775,7 @@ mocha-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "mocha-snippets"; - version = "20160211.1132"; + version = "20160211.1732"; src = fetchFromGitHub { owner = "cowboyd"; repo = "mocha-snippets.el"; @@ -38572,7 +38783,7 @@ sha256 = "1f8h5c9vvwynq92b1ii5hdpqmf52l5j443ir5hdbiigq30wkwlhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha-snippets"; sha256 = "0dbsdk4jpzxv2sxx0nia9zhd0a0wmkz1qcqmbd15m1909ccdwxds"; name = "mocha-snippets"; }; @@ -38585,7 +38796,7 @@ mocker = callPackage ({ eieio ? null, el-x, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mocker"; - version = "20150916.2154"; + version = "20150917.354"; src = fetchFromGitHub { owner = "sigma"; repo = "mocker.el"; @@ -38593,7 +38804,7 @@ sha256 = "0dngznaraphpc5amn9n120la7ga3rj7h67pnnal6qwflh5rqcmss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -38606,15 +38817,15 @@ modalka = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modalka"; - version = "20160122.733"; + version = "20160531.1812"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "modalka"; - rev = "5a1e914bb76dfde539df26f3108793bba98bd4f9"; - sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; + rev = "95627e660768c7ab7af4d8ad35c2bc0c4fa7195b"; + sha256 = "0yf5lwd95j55dkrkplsgnynq37ww0g97vw517j9q7spn7dqnq5f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -38627,15 +38838,15 @@ mode-icons = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-icons"; - version = "20160509.1007"; + version = "20160601.208"; src = fetchFromGitHub { owner = "ryuslash"; repo = "mode-icons"; - rev = "878dee0dae1d12e469c4cba22547a5eb16d352e6"; - sha256 = "0npv2njvmn07cscz4zll6jdg584wsc0hw4v343vlknl097ixxfi5"; + rev = "53ac2b364fed1797d083e4db1c9dcd5b75c4a8a0"; + sha256 = "1xpskmmmc8xgz0n35fdq7k8ms21pjwd3m9zk9gshf2gyzcsb4mx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-icons"; sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; @@ -38648,7 +38859,7 @@ mode-line-debug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mode-line-debug"; - version = "20150307.812"; + version = "20150307.1412"; src = fetchFromGitHub { owner = "tarsius"; repo = "mode-line-debug"; @@ -38656,7 +38867,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -38668,13 +38879,13 @@ }) {}; modeline-char = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "modeline-char"; - version = "20151231.1819"; + version = "20160524.20"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/modeline-char.el"; - sha256 = "1dlprk1jlfw7b7vnxi0d0mf85737wkjc5fkvycx8nawngb2fqhbw"; + sha256 = "0qikw44mj209xycchxqifbn9vwyd4zd2d25w8m134cnkhbbjmf5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modeline-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modeline-char"; sha256 = "1cb6pm69db0jbksmc4mkawf643i74is9v7ka34pv3mb21nj095qp"; name = "modeline-char"; }; @@ -38686,13 +38897,13 @@ }) {}; modeline-posn = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "modeline-posn"; - version = "20160112.949"; + version = "20160112.1549"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/modeline-posn.el"; sha256 = "1r4zq355h570hk7qq0ik121bwsr4hjnhacal4d4h119d11gq2p8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modeline-posn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modeline-posn"; sha256 = "0dngfcbcdh22fl6nd47dhg9z9iivj67six67zjr9j1cbngp10dwk"; name = "modeline-posn"; }; @@ -38705,15 +38916,15 @@ modern-cpp-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modern-cpp-font-lock"; - version = "20160520.528"; + version = "20160601.2150"; src = fetchFromGitHub { owner = "ludwigpacifici"; repo = "modern-cpp-font-lock"; - rev = "6b19fb50bc03b7cf5bb77ca98e0f1eccbf3df56e"; - sha256 = "1p0wnfzb4dq8q9mnzx403bip90lwa0j8rcd9h2z2399is6fghd53"; + rev = "d9b625482b82de118ab23a6acd1dbdec87c425c7"; + sha256 = "1514zz5lgvxw688k8iidw7jwf3dk3ml02q8277369dnqq514p9bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modern-cpp-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modern-cpp-font-lock"; sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj"; name = "modern-cpp-font-lock"; }; @@ -38726,7 +38937,7 @@ modtime-skip-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modtime-skip-mode"; - version = "20140128.1701"; + version = "20140128.2301"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "modtime-skip-mode"; @@ -38734,7 +38945,7 @@ sha256 = "0ri841cwx2mx8ri50lhvifmxnysdc022421mlmklql0252kn775l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modtime-skip-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modtime-skip-mode"; sha256 = "1drafwf4kqp83jp47j2ddl2n4a92zf1589fnp6c72hmjqcxv3l28"; name = "modtime-skip-mode"; }; @@ -38747,7 +38958,7 @@ moe-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moe-theme"; - version = "20160322.415"; + version = "20160322.915"; src = fetchFromGitHub { owner = "kuanyui"; repo = "moe-theme.el"; @@ -38755,7 +38966,7 @@ sha256 = "1567k0zacdf9zlmypb8fywz49n37hm8p60vrq2jqql8n8nq325gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moe-theme"; sha256 = "1nqvj8spvffgjvqlf25rcm3dc6w1axb6qlwwsjhq401a6xhw67f6"; name = "moe-theme"; }; @@ -38768,7 +38979,7 @@ molokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "molokai-theme"; - version = "20151016.1145"; + version = "20151016.1745"; src = fetchFromGitHub { owner = "alloy-d"; repo = "color-theme-molokai"; @@ -38776,7 +38987,7 @@ sha256 = "1hqa59pdrnwfykyl58lr8pfbh2f13sygvmrh707hbwc2aii0jjv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/molokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/molokai-theme"; sha256 = "0srdh3yx7j6xs7rgpzmsyzz6ds00kq887rs2sfa0nvk0j0ga6baf"; name = "molokai-theme"; }; @@ -38789,7 +39000,7 @@ mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mongo"; - version = "20150315.819"; + version = "20150315.1319"; src = fetchFromGitHub { owner = "m2ym"; repo = "mongo-el"; @@ -38797,7 +39008,7 @@ sha256 = "0z8mcfhj425hb91fkj1pyg3apw1kf4mgy8lx6n1sc8zmib38py0x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mongo"; sha256 = "103zkslqdihjyl81688fvkq96rzk3an1vf3gz8rlmmz5anbql8ai"; name = "mongo"; }; @@ -38810,7 +39021,7 @@ monky = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monky"; - version = "20160315.2351"; + version = "20160316.451"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "monky"; @@ -38818,7 +39029,7 @@ sha256 = "1p9p0yp68wb7f1qf0c02fk7ayb7dw6gv57368ksa6nw76w58hhfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monky"; sha256 = "1m7hy3ijwgxqjk3vjvqkxqj8b5bqnd201bmf302k45n0dpjmhshz"; name = "monky"; }; @@ -38831,7 +39042,7 @@ monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monochrome-theme"; - version = "20140326.650"; + version = "20140326.1150"; src = fetchFromGitHub { owner = "fxn"; repo = "monochrome-theme.el"; @@ -38839,7 +39050,7 @@ sha256 = "1sxhpvxapzgrwvzibkg7zd3ppmfcz5rhrbvg73b8rggjg4m5snyf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monochrome-theme"; sha256 = "191ikqns1sxcz6ca6xp6mb2vyfj19x19cmcf17snrf46kmx60qk9"; name = "monochrome-theme"; }; @@ -38852,7 +39063,7 @@ monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monokai-theme"; - version = "20160515.1704"; + version = "20160515.2304"; src = fetchFromGitHub { owner = "oneKelvinSmith"; repo = "monokai-emacs"; @@ -38860,7 +39071,7 @@ sha256 = "02fyhijyn9awa5ag57kyk637vy9pfdica58zhdv24vqd4m81yby3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -38873,7 +39084,7 @@ monroe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monroe"; - version = "20160421.740"; + version = "20160421.1340"; src = fetchFromGitHub { owner = "sanel"; repo = "monroe"; @@ -38881,7 +39092,7 @@ sha256 = "0jac2i5hwdi65rrif0xq86wsimxlpwcfbzsv7fjhc5f16bs6dmnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -38894,7 +39105,7 @@ moonscript = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moonscript"; - version = "20160503.931"; + version = "20160503.1531"; src = fetchFromGitHub { owner = "k2052"; repo = "moonscript-mode"; @@ -38902,7 +39113,7 @@ sha256 = "0bz35m0drjl12f9y42a79nnzxz5ahf5m7c2l2nfz8fyif270ph1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moonscript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moonscript"; sha256 = "1fi4hg5gk5zpfkrk0hqghghkzbbi33v48piq2i085i4nc6m3imp0"; name = "moonscript"; }; @@ -38915,7 +39126,7 @@ morlock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "morlock"; - version = "20160521.1030"; + version = "20160521.1630"; src = fetchFromGitHub { owner = "tarsius"; repo = "morlock"; @@ -38923,7 +39134,7 @@ sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -38936,7 +39147,7 @@ mote-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "mote-mode"; - version = "20160122.1929"; + version = "20160123.129"; src = fetchFromGitHub { owner = "inkel"; repo = "mote-mode"; @@ -38944,7 +39155,7 @@ sha256 = "10mf96r75558scn71pri71aa8nhp6hmnb5rwjxlh5dlf80r5dfd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mote-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mote-mode"; sha256 = "1lg5z5d0d35sh21maiwmgzvc31iki9yg6x0awy5xrfsains7ykn9"; name = "mote-mode"; }; @@ -38957,7 +39168,7 @@ motion-mode = callPackage ({ fetchFromGitHub, fetchurl, flymake-cursor, flymake-easy, lib, melpaBuild }: melpaBuild { pname = "motion-mode"; - version = "20140919.2156"; + version = "20140920.356"; src = fetchFromGitHub { owner = "ainame"; repo = "motion-mode"; @@ -38965,7 +39176,7 @@ sha256 = "17570labnwdnwca2cg4ga0mrrm00n0h3wlxry823k5yn3k93rnj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/motion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/motion-mode"; sha256 = "1lfsc8ayiz2v3dfn8c0mmfch8vpzqyddxw8kscan2lzl2lcj50h0"; name = "motion-mode"; }; @@ -38977,13 +39188,13 @@ }) {}; mouse-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse-plus"; - version = "20151231.1825"; + version = "20160101.25"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mouse+.el"; sha256 = "0rakxcpqdx175hic3ykwbd5if53dvvf0sxhq0gplpsybpqvkimyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse+"; sha256 = "1fv7jnqzskx9iv92dm2pf0mqy2accl0svjl2kkb6v273n1day3f8"; name = "mouse-plus"; }; @@ -38996,7 +39207,7 @@ mouse-slider-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse-slider-mode"; - version = "20150910.1700"; + version = "20150910.2300"; src = fetchFromGitHub { owner = "skeeto"; repo = "mouse-slider-mode"; @@ -39004,7 +39215,7 @@ sha256 = "05pzplb3gmlnlvn2azbxdlf4vrkvk8fc9dkgi2nq4shysnh4c9v7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse-slider-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse-slider-mode"; sha256 = "0aqxjm78k7i8c59w6mw9wsfw3rail1pg40ac1dbcjkm62fjbh5hy"; name = "mouse-slider-mode"; }; @@ -39016,13 +39227,13 @@ }) {}; mouse3 = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "mouse3"; - version = "20151231.1826"; + version = "20160101.26"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/mouse3.el"; sha256 = "1831jpi06hi5v2jdjgs83jma7fp8xiqdmvvwxfyp2zpbfwi1lkb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mouse3"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mouse3"; sha256 = "1rppn55axjpqwqm2lq4dvwi3z7xkd5jkyqi1x8jqgcsfc9w6m777"; name = "mouse3"; }; @@ -39035,7 +39246,7 @@ move-dup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "move-dup"; - version = "20140925.1108"; + version = "20140925.1708"; src = fetchFromGitHub { owner = "wyuenho"; repo = "move-dup"; @@ -39043,7 +39254,7 @@ sha256 = "0baynb6gq04rxh10l6rn0myrhg7c7fwqaryiiyddp4jy7llf83c8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -39056,7 +39267,7 @@ move-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "move-text"; - version = "20160430.2030"; + version = "20160501.230"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "move-text"; @@ -39064,7 +39275,7 @@ sha256 = "1i8nbxmxi9yblik7ma3wm19sajk1pgpw83mj990vhj1yl1k7m136"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-text"; sha256 = "04bfrkanafmbrdyw06ciw9kiyn7h3kpikxk3clx2gc04jl67hzgy"; name = "move-text"; }; @@ -39077,7 +39288,7 @@ mowedline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mowedline"; - version = "20150601.1309"; + version = "20150601.1909"; src = fetchFromGitHub { owner = "retroj"; repo = "mowedline"; @@ -39085,7 +39296,7 @@ sha256 = "179mc70x3dvj0cz6yyhs00ndh0xvk71gmiscln9y0f1ngxr5h338"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -39098,7 +39309,7 @@ moz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "moz"; - version = "20150805.1306"; + version = "20150805.1906"; src = fetchFromGitHub { owner = "bard"; repo = "mozrepl"; @@ -39106,7 +39317,7 @@ sha256 = "1g06i3d8xv8ja6nfww4k60l3467xr1s9xsk7i6dbicq0lf8559h9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -39119,7 +39330,7 @@ moz-controller = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, moz }: melpaBuild { pname = "moz-controller"; - version = "20151208.2106"; + version = "20151209.306"; src = fetchFromGitHub { owner = "RenWenshan"; repo = "emacs-moz-controller"; @@ -39127,7 +39338,7 @@ sha256 = "0fssn33ld6xhjlwg1dbrjg8sa0pjmglq0dw792yrmvm4fj0zjph8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -39140,7 +39351,7 @@ mozc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mozc"; - version = "20160102.1806"; + version = "20160103.6"; src = fetchFromGitHub { owner = "google"; repo = "mozc"; @@ -39148,7 +39359,7 @@ sha256 = "1l1qds7mzn7cx0ijdwcdihqbmidwh16a96v4la9ris07k5fxqiph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc"; sha256 = "0nslh4xyqpvzdxcgrd1bzaqcdz77bghizh6n2w6wk46cflir8xba"; name = "mozc"; }; @@ -39161,7 +39372,7 @@ mozc-im = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "mozc-im"; - version = "20160411.2022"; + version = "20160412.222"; src = fetchFromGitHub { owner = "d5884"; repo = "mozc-im"; @@ -39169,7 +39380,7 @@ sha256 = "0cpcldizgyr125j7lzkl8l6jw1hc3fb12cwgkpjrl6pjpr80vb15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-im"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-im"; sha256 = "1gqzmm712npj36qfi506zgl0ycd6k7l5m46c7zz2z2lb6jpssw10"; name = "mozc-im"; }; @@ -39182,7 +39393,7 @@ mozc-popup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mozc, popup }: melpaBuild { pname = "mozc-popup"; - version = "20150223.1934"; + version = "20150224.134"; src = fetchFromGitHub { owner = "d5884"; repo = "mozc-popup"; @@ -39190,7 +39401,7 @@ sha256 = "1mbpkjc6sk7qqmgsmr5a5l2ycwnqp8bkwgikdavgs6hnal10bkmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-popup"; sha256 = "1n43lwflxzzyskxgzg19rg3hiqqkf5l7vfgaydryf4sk8480x687"; name = "mozc-popup"; }; @@ -39203,7 +39414,7 @@ mozc-temp = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, mozc }: melpaBuild { pname = "mozc-temp"; - version = "20160228.340"; + version = "20160228.940"; src = fetchFromGitHub { owner = "HKey"; repo = "mozc-temp"; @@ -39211,7 +39422,7 @@ sha256 = "1vwciy6hcbcyid41bykibx6ii1y9ln7kdxn7cjwfjrgd3kl9wg19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-temp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-temp"; sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; name = "mozc-temp"; }; @@ -39224,7 +39435,7 @@ mpages = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mpages"; - version = "20150710.1004"; + version = "20150710.1604"; src = fetchFromGitHub { owner = "slevin"; repo = "mpages"; @@ -39232,7 +39443,7 @@ sha256 = "11c8pr3s77aq34ic32lnsialwh8bw3m78kj838xl2aab2pgrlny2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpages"; sha256 = "11scjjwwrpgaz6i4jq9y7m864nfak46vnbfb0w15625znz926jcs"; name = "mpages"; }; @@ -39245,7 +39456,7 @@ mpg123 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mpg123"; - version = "20151214.1450"; + version = "20151214.2050"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mpg123"; @@ -39253,7 +39464,7 @@ sha256 = "09731mwm23b6ic53366lnxy2p7dfd245yh75gaf6ijfa22jks7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpg123"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpg123"; sha256 = "184ip9pvv4zkfxnrzxbfajjadc9f4dz4psn33f9x3sfh7s1y4nw8"; name = "mpg123"; }; @@ -39266,7 +39477,7 @@ mpv = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, names, org }: melpaBuild { pname = "mpv"; - version = "20150218.418"; + version = "20150218.1018"; src = fetchFromGitHub { owner = "kljohann"; repo = "mpv.el"; @@ -39274,7 +39485,7 @@ sha256 = "193j90sgn1zgl00mji86wll4djj57vk5arhwbmhhf5b1qx3wpbhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -39287,7 +39498,7 @@ msvc = callPackage ({ ac-clang, cedet ? null, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "msvc"; - version = "20150530.451"; + version = "20150530.1051"; src = fetchFromGitHub { owner = "yaruopooner"; repo = "msvc"; @@ -39295,7 +39506,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -39308,7 +39519,7 @@ mu-cite = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "mu-cite"; - version = "20160130.600"; + version = "20160130.1200"; src = fetchFromGitHub { owner = "ksato9700"; repo = "mu-cite"; @@ -39316,7 +39527,7 @@ sha256 = "1gxspy50gh7j4sysvr17fvvp8p417ww39ii5dy0fxncfwczdsa19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu-cite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu-cite"; sha256 = "0ap21sw4r2x774q2np6rhrxh2m2rf3f6ak3k71iar159chx32y6q"; name = "mu-cite"; }; @@ -39329,15 +39540,15 @@ mu4e-alert = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "mu4e-alert"; - version = "20160215.509"; + version = "20160601.713"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "mu4e-alert"; - rev = "6a724e8457fc9e4d2a9464f06316253e04048bd4"; - sha256 = "0klnpbb47l3s8cdv1ikldiqw83mggxcbnhlvs3g13a36vx6cxxp4"; + rev = "c03577d95b3b5e9e5db113d7ee38838c54472c83"; + sha256 = "0ndxf39w1ndqys455ydhy1f1d12pfza62wrqja8xxh5s7s2x67h9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -39350,15 +39561,15 @@ mu4e-maildirs-extension = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mu4e-maildirs-extension"; - version = "20160126.339"; + version = "20160604.1143"; src = fetchFromGitHub { owner = "agpchil"; repo = "mu4e-maildirs-extension"; - rev = "f759dff954e09ab2952decac4d39bb7e5b7e399d"; - sha256 = "1cvpzs65fjmhdza1vi2lpk68vkvivb0igrpgm42andi42gc6k50b"; + rev = "04872b79273ec81670e0ea19ed2c90ba74467c57"; + sha256 = "00ylq8ay7j21winii1g3c3hcaihcnq209mngs7g1cgykh1fpbblg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -39371,7 +39582,7 @@ multi = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi"; - version = "20131013.1144"; + version = "20131013.1744"; src = fetchFromGitHub { owner = "kurisuwhyte"; repo = "emacs-multi"; @@ -39379,7 +39590,7 @@ sha256 = "0f5hc6mgq0hg1wwnvqd4fp7ck58lcavvgqjggz9zlhrjgkmynjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -39392,7 +39603,7 @@ multi-compile = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-compile"; - version = "20160306.1723"; + version = "20160306.2323"; src = fetchFromGitHub { owner = "ReanGD"; repo = "emacs-multi-compile"; @@ -39400,7 +39611,7 @@ sha256 = "1aswpv1m02n26620hgkcfd38f06bzmmijlr9rs5krv6snq5gdb8g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-compile"; sha256 = "16fv0hpwcjw1771zlbgznph0fix9fbm6yqj2rcz1f9l26iih6apz"; name = "multi-compile"; }; @@ -39412,13 +39623,13 @@ }) {}; multi-eshell = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-eshell"; - version = "20120608.1435"; + version = "20120608.2035"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/multi-eshell.el"; sha256 = "1w1jwfznpl214a1xx46zlgqbx9c5yjzpyqqrkn3xqjgnj485yhkl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-eshell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-eshell"; sha256 = "1i0mvgqxsc99dwp9qcdrijqxsxflrbxw846rgw89p1jfs8mp4l7d"; name = "multi-eshell"; }; @@ -39428,22 +39639,22 @@ license = lib.licenses.free; }; }) {}; - multi-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + multi-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "multi-line"; - version = "20160520.1810"; + version = "20160601.2345"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "multi-line"; - rev = "9e40a0e345f29b8a5e47e9bd4b02ceb57161928e"; - sha256 = "0j0wb4a9hbaahhzc2xbmqg80jbsi2kyw9ngzrxgs36rgj7zh2s5s"; + rev = "6f6039748de47ff9400775696554dd8e6617c7ef"; + sha256 = "08zyplahyfr6wa145fsggqyn5nh8x4nx98znz82g38pyh8yn2i1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-line"; sha256 = "1aadmijnjr029s1qq4gk8xyl9m8xb5x5774b8i3jyfixyjqvhvwp"; name = "multi-line"; }; - packageRequires = [ emacs ]; + packageRequires = [ emacs s ]; meta = { homepage = "https://melpa.org/#/multi-line"; license = lib.licenses.free; @@ -39452,14 +39663,14 @@ multi-project = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-project"; - version = "20150314.1044"; + version = "20150314.1544"; src = fetchhg { url = "https://bitbucket.com/ellisvelo/multi-project"; rev = "f7fd0ae6819e"; sha256 = "0lcx73vzm7zwvzzc53pfb5y16bhvq9cm9fdy63d3242s8v834z3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-project"; sha256 = "19dy2wl5ad1xldiznlw2vjvr9ja8h9wiv6igcggixq56fhngp40x"; name = "multi-project"; }; @@ -39471,13 +39682,13 @@ }) {}; multi-term = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-term"; - version = "20150220.820"; + version = "20150220.1420"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/multi-term.el"; sha256 = "062c52xd469jdmsq4fvdhsmgfjrlanv0bb1w5vglz7bsn68d2bim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-term"; sha256 = "1va4ihngwv5qvwps3m9jj0150gbrmq3zllnyq1hbx5ap8hjrhvdx"; name = "multi-term"; }; @@ -39490,7 +39701,7 @@ multi-web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multi-web-mode"; - version = "20130823.2354"; + version = "20130824.554"; src = fetchFromGitHub { owner = "fgallina"; repo = "multi-web-mode"; @@ -39498,7 +39709,7 @@ sha256 = "0mc4kkgwnwfk27wwc21nw5ly7qcsl7y5bd8wf2y8r6pxhvwran4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -39511,7 +39722,7 @@ multicolumn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multicolumn"; - version = "20150202.1751"; + version = "20150202.2351"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "multicolumn"; @@ -39519,7 +39730,7 @@ sha256 = "1ispa0wxpkydm0cyj4scyyacfrbilrip5v8bsrcqfc6qs597z8rf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multicolumn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multicolumn"; sha256 = "1ylnc3s4ixvnqn7g2p6nzz8x29ggqc703waci430f1rp1lsd3q09"; name = "multicolumn"; }; @@ -39532,7 +39743,7 @@ multifiles = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multifiles"; - version = "20130615.1733"; + version = "20130615.2333"; src = fetchFromGitHub { owner = "magnars"; repo = "multifiles.el"; @@ -39540,7 +39751,7 @@ sha256 = "065l04ylplng1vgykkbn2vnkcs3sn1k2cikx1ha2q8wmgx6bkvai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multifiles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multifiles"; sha256 = "0m0pi2qjis9p6z9cd8hlxm1r88ynwmd2ks8wg65sffffwsdbg4kz"; name = "multifiles"; }; @@ -39553,15 +39764,15 @@ multiple-cursors = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "multiple-cursors"; - version = "20160520.851"; + version = "20160523.2143"; src = fetchFromGitHub { owner = "magnars"; repo = "multiple-cursors.el"; - rev = "a508978cd9213fc8c9f065ad5aa933462b86f215"; - sha256 = "173ljscxgzsfznlc9b6mhy63769g8jh57z1vqdryykg63l7zkbd5"; + rev = "be149f9121840561b7a2df17a7a3b1838a1b1f4c"; + sha256 = "0h91jg8mhzxk5ir67a9bl4bl74w3m24xdjgqsjac6ffaf6vc3jhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; @@ -39574,7 +39785,7 @@ mustache = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "mustache"; - version = "20131117.1707"; + version = "20131117.2307"; src = fetchFromGitHub { owner = "Wilfred"; repo = "mustache.el"; @@ -39582,7 +39793,7 @@ sha256 = "1n2ymd92qpvsby6ms0l3kjhdzzc47rri2aiscc6bs07hm4mjpr9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache"; sha256 = "1pjr00xx77mlfw1myxaz6i3y2gbivhbiq5hyjxxbjlfrkm1vxc8g"; name = "mustache"; }; @@ -39595,7 +39806,7 @@ mustache-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustache-mode"; - version = "20141024.1032"; + version = "20141024.1632"; src = fetchFromGitHub { owner = "mustache"; repo = "emacs"; @@ -39603,7 +39814,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -39616,7 +39827,7 @@ mustang-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustang-theme"; - version = "20141017.1923"; + version = "20141018.123"; src = fetchFromGitHub { owner = "mswift42"; repo = "mustang-theme"; @@ -39624,7 +39835,7 @@ sha256 = "19qd34dcfspv621p4y07zhq2pr8pwss3lcssm9sfhr6w2vmvgcr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustang-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustang-theme"; sha256 = "0771l3x6109ki914nwpfz3fj7pbvpcg9vf485mrccq2wlxymr5dr"; name = "mustang-theme"; }; @@ -39637,7 +39848,7 @@ mustard-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mustard-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-mustard-theme"; @@ -39645,7 +39856,7 @@ sha256 = "170qhbbvcv9dg6jzfd9r95in5m8z1k647mn0gaqflfj0hvq5hwgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustard-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustard-theme"; sha256 = "0izxhivhmv49dja4wy9n0ipd41xdzdza2ql7pfa7ny35ji5hskik"; name = "mustard-theme"; }; @@ -39658,7 +39869,7 @@ mutant = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mutant"; - version = "20160124.853"; + version = "20160124.1453"; src = fetchFromGitHub { owner = "p-lambert"; repo = "mutant.el"; @@ -39666,7 +39877,7 @@ sha256 = "0w9blrm3596hmip8jg2hlz9sl31ci89b90jglmg4ipldgrgj3ly6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mutant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mutant"; sha256 = "0m5l5r37zb0ig96757ldyl9hbb01lknzqf08ap6dsmdwr1zayvp1"; name = "mutant"; }; @@ -39678,13 +39889,13 @@ }) {}; muttrc-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "muttrc-mode"; - version = "20090804.1852"; + version = "20090805.52"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/muttrc-mode.el"; sha256 = "1xihp3zdqs9054j3bfrd9wnahsvvxjk1ags1iy50ncv5850ppjis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/muttrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/muttrc-mode"; sha256 = "0ym6rfrhrmpnlqhkxv9ck5893qm0yhswslvgc9vb4nl9hyc1b5jn"; name = "muttrc-mode"; }; @@ -39697,7 +39908,7 @@ mvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mvn"; - version = "20160211.1043"; + version = "20160211.1643"; src = fetchFromGitHub { owner = "apg"; repo = "mvn-el"; @@ -39705,7 +39916,7 @@ sha256 = "1jg3xrk44lspxli0zr02jcsl8phj0ns7ly3dkd7rx2wgsk69ari3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mvn"; sha256 = "0bpg9zpyfdyn9xvrbmq4gb10hd701mc49np8arlmnilphb3fdgzs"; name = "mvn"; }; @@ -39718,7 +39929,7 @@ mwe-log-commands = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mwe-log-commands"; - version = "20100703.841"; + version = "20100703.1441"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "mwe-log-commands"; @@ -39726,7 +39937,7 @@ sha256 = "0qdlbyq47gr65yq5ri8s9lxw4wp9fmyqc2prkh560d4hkvw60aw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwe-log-commands"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwe-log-commands"; sha256 = "05z2ax9mgyxldd3ds44xnh9f5w5q4ziy4rxmnfiqjykan2f5hnkn"; name = "mwe-log-commands"; }; @@ -39739,7 +39950,7 @@ mwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mwim"; - version = "20150822.1536"; + version = "20150822.2136"; src = fetchFromGitHub { owner = "alezost"; repo = "mwim.el"; @@ -39747,7 +39958,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -39760,7 +39971,7 @@ myanmar-input-methods = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "myanmar-input-methods"; - version = "20160106.1037"; + version = "20160106.1637"; src = fetchFromGitHub { owner = "yelinkyaw"; repo = "emacs-myanmar-input-methods"; @@ -39768,7 +39979,7 @@ sha256 = "0cf0c9g9k2lk1ifi2dlw7c601sh1ycxf3fgl2hy5wliyd6l9rf86"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/myanmar-input-methods"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/myanmar-input-methods"; sha256 = "1yg8zy2z18pbyr507ms2b162c0819rna1ilwyp6hb3iv2zjw45sd"; name = "myanmar-input-methods"; }; @@ -39781,7 +39992,7 @@ mykie = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mykie"; - version = "20150808.1805"; + version = "20150809.5"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "mykie-el"; @@ -39789,7 +40000,7 @@ sha256 = "0a9a6hmv8vjmp6h9mnzin9vc0sncg79v5z72pasvbrplfxijzan0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -39802,7 +40013,7 @@ mynt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, virtualenvwrapper }: melpaBuild { pname = "mynt-mode"; - version = "20150512.1649"; + version = "20150512.2249"; src = fetchFromGitHub { owner = "crshd"; repo = "mynt-mode"; @@ -39810,7 +40021,7 @@ sha256 = "18ml0qz3iipm9w36zvwz77cbbrg885jgvzk6z4a33xcfp524xhma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mynt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mynt-mode"; sha256 = "17s0wdwgh2dcpww6h3qszc9dcs7ki00xkyisvsfn4xqajrmmp75b"; name = "mynt-mode"; }; @@ -39823,7 +40034,7 @@ mysql2sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mysql2sqlite"; - version = "20151123.1639"; + version = "20151123.2239"; src = fetchFromGitHub { owner = "echosa"; repo = "emacs-mysql2sqlite"; @@ -39831,7 +40042,7 @@ sha256 = "0q5809hq22hyzxx5xr2hwwf3jh3qlpf3mkbl3fxqq93gm16plh1i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mysql2sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mysql2sqlite"; sha256 = "1jblrbw4rq2jwpb8d1dyna0fiv52b9va3sj881cb17rqx200y3nd"; name = "mysql2sqlite"; }; @@ -39844,7 +40055,7 @@ myterminal-controls = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "myterminal-controls"; - version = "20160119.2330"; + version = "20160120.530"; src = fetchFromGitHub { owner = "myTerminal"; repo = "myterminal-controls"; @@ -39852,7 +40063,7 @@ sha256 = "18wqgjn38jxzsbivmf2fkcq3r1y4lffh3dbpv1jj7s9qn91pyp6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/myterminal-controls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/myterminal-controls"; sha256 = "0ipk5s2whf3l68q0dydm1j6rcb6jhk61hgjwxygdphifvih7c5y2"; name = "myterminal-controls"; }; @@ -39865,7 +40076,7 @@ n3-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "n3-mode"; - version = "20141027.1357"; + version = "20141027.1857"; src = fetchFromGitHub { owner = "doriantaylor"; repo = "n3-mode-for-emacs"; @@ -39873,7 +40084,7 @@ sha256 = "1lp1bx9110vqzjww94va8pdks39qvqzl8rf0p8na1q0qn06rnk9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/n3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/n3-mode"; sha256 = "0hasxq39phgyc259dgxskhqxjsp0yi98vx1bs8ynvwa26la4ddzh"; name = "n3-mode"; }; @@ -39886,7 +40097,7 @@ n4js = callPackage ({ cypher-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "n4js"; - version = "20150713.2231"; + version = "20150714.431"; src = fetchFromGitHub { owner = "tmtxt"; repo = "n4js.el"; @@ -39894,7 +40105,7 @@ sha256 = "1pd6c0jc1zxx3i3nk4qdx7gdf1qn8sc9jgqd72pkkpzvdwv998cp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/n4js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/n4js"; sha256 = "0x7smxs91ffriyxx2df61fh1abpl39gqy4m62k77h7xb6fg7af6m"; name = "n4js"; }; @@ -39906,13 +40117,13 @@ }) {}; naked = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "naked"; - version = "20151231.1827"; + version = "20160101.27"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/naked.el"; sha256 = "0zq13qjqfpxjba1bhdqqxkvgxq1dxyb7hd1bpnk6cbhsxr6mr50i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/naked"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/naked"; sha256 = "06p6dzhn34dva3677mrvwq2a2x3bhw7f486y654hszla7i75pilq"; name = "naked"; }; @@ -39925,7 +40136,7 @@ name-this-color = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "name-this-color"; - version = "20151014.1630"; + version = "20151014.2230"; src = fetchFromGitHub { owner = "knl"; repo = "name-this-color.el"; @@ -39933,7 +40144,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -39946,7 +40157,7 @@ nameframe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nameframe"; - version = "20151018.19"; + version = "20151018.619"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39954,7 +40165,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe"; sha256 = "0iq8cfii39ha8sxn9w7kyfvys8kwyax8g4l0pkl05q0a0s95padp"; name = "nameframe"; }; @@ -39967,7 +40178,7 @@ nameframe-perspective = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, perspective }: melpaBuild { pname = "nameframe-perspective"; - version = "20151018.507"; + version = "20151018.1107"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39975,7 +40186,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe-perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe-perspective"; sha256 = "0wgr90m2pazc514slgdl1lin4mr3xxizasc82k7qinvdvdja515x"; name = "nameframe-perspective"; }; @@ -39988,7 +40199,7 @@ nameframe-projectile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, nameframe, projectile }: melpaBuild { pname = "nameframe-projectile"; - version = "20151018.507"; + version = "20151018.1107"; src = fetchFromGitHub { owner = "john2x"; repo = "nameframe"; @@ -39996,7 +40207,7 @@ sha256 = "07zgwyrss23yb8plnhhwmh0khdvfp539891sj1z1vs50jcllcpw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameframe-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameframe-projectile"; sha256 = "11z64wy8mnnrjmgfs2sjbv3mh136aki8r5f89myx861nfx18hc3k"; name = "nameframe-projectile"; }; @@ -40009,7 +40220,7 @@ nameless = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nameless"; - version = "20160403.1413"; + version = "20160403.2013"; src = fetchFromGitHub { owner = "Malabarba"; repo = "Nameless"; @@ -40017,7 +40228,7 @@ sha256 = "1g8852c68ca4b4wf781aiyhbgk2a3g39jw1mijzpp0lmmnsbmmwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nameless"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nameless"; sha256 = "14agx54h2vqfb0656n12z761ywyxsdskd6xa1ccar70l9vwj85vq"; name = "nameless"; }; @@ -40030,7 +40241,7 @@ names = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "names"; - version = "20151201.704"; + version = "20151201.1304"; src = fetchFromGitHub { owner = "Malabarba"; repo = "names"; @@ -40038,7 +40249,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -40051,7 +40262,7 @@ namespaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "namespaces"; - version = "20130326.1850"; + version = "20130326.2350"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "elisp-namespaces"; @@ -40059,7 +40270,7 @@ sha256 = "157hhb253m6a9l5wy6x8w5ar3x0qz1326l7a0npxif6pma0dd140"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/namespaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/namespaces"; sha256 = "02pb7762khxpah4q6xg8r7dmlv1kwyzinffi7pcaps6ycj29q2fr"; name = "namespaces"; }; @@ -40072,7 +40283,7 @@ nand2tetris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "nand2tetris"; - version = "20151027.1751"; + version = "20151027.2251"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -40080,7 +40291,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nand2tetris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nand2tetris"; sha256 = "1zg9xx7mj8334m2v2zqqfkr5vkj4dzqbj8y13qk6xhzb7qkppyqd"; name = "nand2tetris"; }; @@ -40093,7 +40304,7 @@ nand2tetris-assembler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, names, nand2tetris }: melpaBuild { pname = "nand2tetris-assembler"; - version = "20151027.1736"; + version = "20151027.2236"; src = fetchFromGitHub { owner = "CestDiego"; repo = "nand2tetris.el"; @@ -40101,7 +40312,7 @@ sha256 = "003zgkpzz9q0bkkw6psks0vbfikzikfm42myqk14xn7330vgcxz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nand2tetris-assembler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nand2tetris-assembler"; sha256 = "1761kgrflipxba8894cnx90ks7f3ba4nj6ci515zzxcx9s45mfyy"; name = "nand2tetris-assembler"; }; @@ -40114,14 +40325,14 @@ nanowrimo = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nanowrimo"; - version = "20151104.2128"; + version = "20151105.328"; src = fetchhg { url = "https://bitbucket.com/gvol/nanowrimo.el"; rev = "25e2ca20ed34"; sha256 = "1nzkamy53kl1g4y1jm7j5zgpkdsyg5ykp8zp1f0bg5mhy8mmf75w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nanowrimo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nanowrimo"; sha256 = "1nhyj38qyn1x6a5rbrwhcxwfwzyqqjm3dvksdnmam6vfwn3s2r31"; name = "nanowrimo"; }; @@ -40134,7 +40345,7 @@ naquadah-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "naquadah-theme"; - version = "20150923.441"; + version = "20150923.1041"; src = fetchFromGitHub { owner = "jd"; repo = "naquadah-theme"; @@ -40142,7 +40353,7 @@ sha256 = "0mxf61ky1dd7r2qd4j7k6bdppmkilkq5l9gv257a12539wkw5yq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/naquadah-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/naquadah-theme"; sha256 = "1aml1f2lgn530i86218nrc1pk3zw5n3qd2gw4gylwi7g75i0cqn1"; name = "naquadah-theme"; }; @@ -40154,13 +40365,13 @@ }) {}; narrow-indirect = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrow-indirect"; - version = "20151231.1839"; + version = "20160101.39"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/narrow-indirect.el"; sha256 = "1lyszm94pd3jxs73v7k0aaazm0sd2rpz2pphcdag7lk7k6vppd9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-indirect"; sha256 = "10aq4gssayh3adw8yz2lza1xbypyffi8r03lsc0kiis6gd9ibiyj"; name = "narrow-indirect"; }; @@ -40173,7 +40384,7 @@ narrow-reindent = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrow-reindent"; - version = "20150722.1506"; + version = "20150722.2106"; src = fetchFromGitHub { owner = "emallson"; repo = "narrow-reindent.el"; @@ -40181,7 +40392,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -40194,7 +40405,7 @@ narrowed-page-navigation = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "narrowed-page-navigation"; - version = "20150109.19"; + version = "20150109.619"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "narrowed-page-navigation"; @@ -40202,7 +40413,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -40215,15 +40426,15 @@ nasm-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nasm-mode"; - version = "20160427.1512"; + version = "20160526.326"; src = fetchFromGitHub { owner = "skeeto"; repo = "nasm-mode"; - rev = "4de4e5634b5a7db8ce6ac5e62df5638b3636d153"; - sha256 = "1vkvv8v26ln8ngxf33h9cg31py2nlaf9wgc17i6v9i3s6am9gmkr"; + rev = "c3f5475c2f4bd930411b6d716765d094b36ce219"; + sha256 = "0d8bfz41ry5bvkz2894dqkk3244n7xcjk3pf58fcsagvmmkkln7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -40236,7 +40447,7 @@ nav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nav"; - version = "20120507.307"; + version = "20120507.907"; src = fetchFromGitHub { owner = "ijt"; repo = "emacs-nav"; @@ -40244,7 +40455,7 @@ sha256 = "0kfqpji6z3ra8sc951vmm1bzyhkws7vb5q6djvl45wlf1wrgkc4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav"; sha256 = "0ly1fk4ak1p8gkz3qmmxyslcjgicnfm8bpqqgndvwcznp8pvpjml"; name = "nav"; }; @@ -40257,7 +40468,7 @@ nav-flash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nav-flash"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "nav-flash"; @@ -40265,7 +40476,7 @@ sha256 = "07wjicbvzg7cz983hv0p2qw1qlln07djigkmbqfpwvg3fk50fdyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -40278,7 +40489,7 @@ navi-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, outorg, outshine }: melpaBuild { pname = "navi-mode"; - version = "20160327.434"; + version = "20160327.1034"; src = fetchFromGitHub { owner = "tj64"; repo = "navi"; @@ -40286,7 +40497,7 @@ sha256 = "0vmrh8y8q7zch48iz9lk4n0b3s1b8zp3wki3906s709b5ajfvk7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -40299,7 +40510,7 @@ navi2ch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "navi2ch"; - version = "20150329.2216"; + version = "20150330.416"; src = fetchFromGitHub { owner = "naota"; repo = "navi2ch"; @@ -40307,7 +40518,7 @@ sha256 = "15l2zmm8bp4ip8m1hfxkvswfwa29pg72kisfya2n5v900r184a4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi2ch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi2ch"; sha256 = "13xwvyy27dz1abjkkazm3s1p6cw32l2klr1bnln02w0azkbdy7x3"; name = "navi2ch"; }; @@ -40320,7 +40531,7 @@ navorski = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, multi-term, s }: melpaBuild { pname = "navorski"; - version = "20141203.1324"; + version = "20141203.1924"; src = fetchFromGitHub { owner = "roman"; repo = "navorski.el"; @@ -40328,7 +40539,7 @@ sha256 = "0g7rmvfm0ldv0d2x7f8k761mgmi47siyspfi1ns40ijhkpc15x8l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -40341,7 +40552,7 @@ ncl-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ncl-mode"; - version = "20150525.1229"; + version = "20150525.1829"; src = fetchFromGitHub { owner = "yyr"; repo = "ncl-mode"; @@ -40349,7 +40560,7 @@ sha256 = "0gbv5fv401z58ycbqlivqamf5kp3x6krhi36q7q0m4gvy448xz0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -40362,7 +40573,7 @@ nclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nclip"; - version = "20130617.1615"; + version = "20130617.2215"; src = fetchFromGitHub { owner = "maio"; repo = "nclip.el"; @@ -40370,7 +40581,7 @@ sha256 = "178gjv7kq97p9i4naxql7xabvmchw5x8idkpyjqqky3b24v5wkis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nclip"; sha256 = "016jp1rqrf1baxlxbi3476m88a0l3r405dh6pmly519wm2k8pipw"; name = "nclip"; }; @@ -40383,7 +40594,7 @@ nemerle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nemerle"; - version = "20130328.1046"; + version = "20130328.1546"; src = fetchFromGitHub { owner = "rsdn"; repo = "nemerle"; @@ -40391,7 +40602,7 @@ sha256 = "0xij6gqa6xmjz041vmi4k1xfp7bsp51vk4x6mdy4rv7556sznrrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; @@ -40404,7 +40615,7 @@ neotree = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "neotree"; - version = "20160306.1030"; + version = "20160306.1630"; src = fetchFromGitHub { owner = "jaypei"; repo = "emacs-neotree"; @@ -40412,7 +40623,7 @@ sha256 = "1sf8yw1vg01r4969jk1x1k4nad4q7bf1fd8vnranxvhz9md34262"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -40425,7 +40636,7 @@ netherlands-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "netherlands-holidays"; - version = "20150202.1117"; + version = "20150202.1717"; src = fetchFromGitHub { owner = "abo-abo"; repo = "netherlands-holidays"; @@ -40433,7 +40644,7 @@ sha256 = "1kkflj2qnrn6kzh1l6bjl5n5507qilb22pqj3h0f2m6hfyn0sw5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/netherlands-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/netherlands-holidays"; sha256 = "181linsbg5wrx1z7zbj3in2d3d4zd2v7drspkj0b6l0c5yfxwayf"; name = "netherlands-holidays"; }; @@ -40446,7 +40657,7 @@ never-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "never-comment"; - version = "20140104.1707"; + version = "20140104.2307"; src = fetchFromGitHub { owner = "To1ne"; repo = "never-comment"; @@ -40454,7 +40665,7 @@ sha256 = "0p00mmid04pfsna4ify3cy0b9lx431q1r5h772hihsg4f1rs2ppy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/never-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/never-comment"; sha256 = "0sn8y57895bfpgiynnj4m9b3x3dbb9v5fwkcwmf9jr39dbf98v6s"; name = "never-comment"; }; @@ -40467,7 +40678,7 @@ newlisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "newlisp-mode"; - version = "20160226.1045"; + version = "20160226.1645"; src = fetchFromGitHub { owner = "kosh04"; repo = "newlisp-mode"; @@ -40475,7 +40686,7 @@ sha256 = "1zzsfyqwj1k4zh30gl491ipavr9pp9djwjq3zz2q3xh7jys68w8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/newlisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/newlisp-mode"; sha256 = "0i2d2gyzzvpr5qm2cqzbn9my21lfb66315hg9fj86ac5pkc25zrd"; name = "newlisp-mode"; }; @@ -40488,7 +40699,7 @@ nexus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nexus"; - version = "20140114.805"; + version = "20140114.1405"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "emacs-nexus"; @@ -40496,7 +40707,7 @@ sha256 = "1xnx6v49i6abzbhq4fl4bp9d0pp9gby40splpcj211xsb8yiry27"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nexus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nexus"; sha256 = "1mdphgsqg6n4hryr53rk42z58vfv0g5wkar5ipanr4h4iclkf5vd"; name = "nexus"; }; @@ -40509,7 +40720,7 @@ nginx-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nginx-mode"; - version = "20150824.1711"; + version = "20150824.2311"; src = fetchFromGitHub { owner = "ajc"; repo = "nginx-mode"; @@ -40517,7 +40728,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -40530,7 +40741,7 @@ niceify-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "niceify-info"; - version = "20160416.844"; + version = "20160416.1444"; src = fetchFromGitHub { owner = "aaron-em"; repo = "niceify-info.el"; @@ -40538,7 +40749,7 @@ sha256 = "0hgrf628ris94pmvmgibkq6zmwrqkv9q70c5a2gsbdpqmfikj8m1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niceify-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niceify-info"; sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; name = "niceify-info"; }; @@ -40551,7 +40762,7 @@ niflheim-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "niflheim-theme"; - version = "20150630.1121"; + version = "20150630.1721"; src = fetchFromGitHub { owner = "niflheim-theme"; repo = "emacs"; @@ -40559,7 +40770,7 @@ sha256 = "147vw3qlsply5h8cjmjzqr5dv9jzf9xlmhjnmcpyb1r7krh1l8xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niflheim-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niflheim-theme"; sha256 = "1dipxwaar7rghmz7s733v035vrbijcg1dla9f7cld1gkgiq9iq36"; name = "niflheim-theme"; }; @@ -40572,7 +40783,7 @@ nim-mode = callPackage ({ commenter, company, emacs, epc, fetchFromGitHub, fetchurl, flycheck, let-alist, lib, melpaBuild }: melpaBuild { pname = "nim-mode"; - version = "20160510.2255"; + version = "20160511.455"; src = fetchFromGitHub { owner = "nim-lang"; repo = "nim-mode"; @@ -40580,7 +40791,7 @@ sha256 = "04f5ff7s9ma6wrb5hyjcy7qnr6pmb013kan4f0is31n6nmsidzqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nim-mode"; sha256 = "1kzn3kkkj7jzs7fqhvib196sl3vp7kbhb4icqzmvvmv366lkaib6"; name = "nim-mode"; }; @@ -40593,15 +40804,15 @@ ninja-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ninja-mode"; - version = "20141204.59"; + version = "20141204.659"; src = fetchFromGitHub { owner = "martine"; repo = "ninja"; - rev = "63a8584b069a32b871237fc80dcb4c397b863ef7"; - sha256 = "14iwzyxm0g45315n1761a5q6h28q54cy2yh5hb5070s6fcbkqp09"; + rev = "8d65002fd5e6f2102447ab15f636cc84db3384ec"; + sha256 = "1b63yqcn4j99r2hv10hk1qj9ls328qdxaxhiq5hvfqswkzig9ys7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -40614,15 +40825,15 @@ nix-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nix-mode"; - version = "20160502.937"; + version = "20160502.1537"; src = fetchFromGitHub { owner = "NixOS"; repo = "nix"; - rev = "75d2492f20dc513337de3ef2d45e1d5c68c7dff8"; - sha256 = "08nzcsn33hchm1bg814karc8f7amma5zvj4mrrzmhmxh0541w07w"; + rev = "a8dfdc52b83eb12f174366aae173c37da66943b6"; + sha256 = "0m9557dddn81da1l8ymcxls5id6rhbs6mc7xpzsjjk76m2kggl32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -40635,7 +40846,7 @@ nix-sandbox = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "nix-sandbox"; - version = "20160223.853"; + version = "20160223.1453"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -40643,7 +40854,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-sandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-sandbox"; sha256 = "13zr0jbc6if2wvyiplay2gkd5548imfm38x1qy1dw6m2vhbzwp0k"; name = "nix-sandbox"; }; @@ -40656,7 +40867,7 @@ nixos-options = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nixos-options"; - version = "20160209.1341"; + version = "20160209.1941"; src = fetchFromGitHub { owner = "travisbhartwell"; repo = "nix-emacs"; @@ -40664,7 +40875,7 @@ sha256 = "1r2qbd19kkqf70gq04jfpsrap75qcy359k3ian9rhapi8cj0n23w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -40677,15 +40888,15 @@ nlinum-relative = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, nlinum }: melpaBuild { pname = "nlinum-relative"; - version = "20160520.903"; + version = "20160526.908"; src = fetchFromGitHub { owner = "CodeFalling"; repo = "nlinum-relative"; - rev = "52f81737b5b888bd0d4389b1d7e9af6302527931"; - sha256 = "090qgpi46m2ypgi23lkb34vji6m13xydp90y367585p43sh4qw55"; + rev = "5b9950c97ba79a6f0683e38b13da23f39e01031c"; + sha256 = "0h00ghr5sipayfxz7ykzy7bg1p1vkbwxl5xch3x0h8j2cp1dqc3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nlinum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nlinum-relative"; sha256 = "15ifh5bfsarkifx6m7d5rhx6hqlnm231plkf623885kar7i85ia4"; name = "nlinum-relative"; }; @@ -40698,7 +40909,7 @@ nm = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch, peg }: melpaBuild { pname = "nm"; - version = "20151110.1410"; + version = "20151110.2010"; src = fetchFromGitHub { owner = "tjim"; repo = "nevermore"; @@ -40706,7 +40917,7 @@ sha256 = "1skbjmyikzyiic470sngskggs05r35m8vzm69wbmrjapczginnak"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nm"; sha256 = "004rjbrkc7jalbd8ih170sy97w2g16k3whqrqwywh09pzrzb05kw"; name = "nm"; }; @@ -40719,7 +40930,7 @@ nnir-est = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nnir-est"; - version = "20140301.902"; + version = "20140301.1502"; src = fetchFromGitHub { owner = "kawabata"; repo = "nnir-est"; @@ -40727,7 +40938,7 @@ sha256 = "0gzxcq0gki89dz9ad26683zhq1nif3wdz185cdplwy68z9szbdx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nnir-est"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nnir-est"; sha256 = "04ih47pipph8sl84nv6ka4xlpd8vhnpwhs5cchgk5k1zv3l5scxv"; name = "nnir-est"; }; @@ -40740,7 +40951,7 @@ noccur = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noccur"; - version = "20150514.1720"; + version = "20150514.2320"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "noccur.el"; @@ -40748,7 +40959,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -40761,7 +40972,7 @@ noctilux-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noctilux-theme"; - version = "20150723.1047"; + version = "20150723.1647"; src = fetchFromGitHub { owner = "sjrmanning"; repo = "noctilux-theme"; @@ -40769,7 +40980,7 @@ sha256 = "1a1pp3sd5g4wkhywb5jfchcdpjsjb0iyhk2sxvd0gpc4kk4zh6xs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noctilux-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noctilux-theme"; sha256 = "15ymyv3rq0n31d8h0ry0l4w4r5a8as0q63ajm9wb6yrxxjl1imfp"; name = "noctilux-theme"; }; @@ -40782,7 +40993,7 @@ node-resolver = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "node-resolver"; - version = "20140930.1323"; + version = "20140930.1923"; src = fetchFromGitHub { owner = "meandavejustice"; repo = "node-resolver.el"; @@ -40790,7 +41001,7 @@ sha256 = "1cgmq00ackabwcl4h0n2bb8y08wz0ir5rzca2q3sk4asly6d02m7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/node-resolver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/node-resolver"; sha256 = "1ng4rgm8f745fajqnbjhi2rshvn6icwdpbh5dzpzhim1w9kb3bhh"; name = "node-resolver"; }; @@ -40803,7 +41014,7 @@ nodejs-repl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nodejs-repl"; - version = "20151229.903"; + version = "20151229.1503"; src = fetchFromGitHub { owner = "abicky"; repo = "nodejs-repl.el"; @@ -40811,7 +41022,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -40824,7 +41035,7 @@ noflet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noflet"; - version = "20141102.954"; + version = "20141102.1554"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-noflet"; @@ -40832,7 +41043,7 @@ sha256 = "0g70gnmfi8n24jzfci9nrj0n9bn1qig7b8f9f325rin8h7x32ypf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noflet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noflet"; sha256 = "0vzamqb52n330mi6rydrd4ls8nbwh5s42fc2gs5y15zakp6mvhr3"; name = "noflet"; }; @@ -40844,14 +41055,14 @@ }) {}; nose = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nose"; - version = "20140520.1248"; + version = "20140520.1848"; src = fetchhg { url = "https://bitbucket.com/durin42/nosemacs"; rev = "194d7789bf79"; sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -40863,14 +41074,14 @@ }) {}; notmuch = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "notmuch"; - version = "20160519.653"; + version = "20160519.1253"; src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; - rev = "7e6e23c36e290d4b22b0449766a6ef2107f1ef6c"; - sha256 = "0w2s1abnjm61gxaanjx6d1hhzn07m3kbksp5739pvqjjwnixf9mi"; + rev = "b9bf3f44eacd42ce53885c79f9dad8d82c76f13d"; + sha256 = "0zqfr98227lxmhgfhcspn27qigbifhf52dl3lxl9gb5id8wmr316"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch"; sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; @@ -40883,7 +41094,7 @@ notmuch-labeler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, notmuch }: melpaBuild { pname = "notmuch-labeler"; - version = "20131230.1219"; + version = "20131230.1819"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "notmuch-labeler"; @@ -40891,7 +41102,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -40903,13 +41114,13 @@ }) {}; novice-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "novice-plus"; - version = "20151231.1840"; + version = "20160101.40"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/novice+.el"; sha256 = "0mmdf3z9299hbs3wr8hqgpmg74sb2xm0rxyh38sjcqmk8f310rqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/novice+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/novice+"; sha256 = "0r4w4c6y4fny8k0kipzqjsn7idwbi9jq6x9yw51d41ra3pkpvfzf"; name = "novice-plus"; }; @@ -40922,7 +41133,7 @@ noxml-fold = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "noxml-fold"; - version = "20151216.1121"; + version = "20151216.1721"; src = fetchFromGitHub { owner = "paddymcall"; repo = "noXML-fold"; @@ -40930,7 +41141,7 @@ sha256 = "0jahr1380919p272srym1pp16ifdz69fn1m45ppglm54q4a741d8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noxml-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noxml-fold"; sha256 = "11dninxxwhflf2qrmvwmrryspd9j6m95kdlmyx59ykqvw8j0siqc"; name = "noxml-fold"; }; @@ -40943,7 +41154,7 @@ nrepl-eval-sexp-fu = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, smartparens, thingatpt ? null }: melpaBuild { pname = "nrepl-eval-sexp-fu"; - version = "20140311.641"; + version = "20140311.1141"; src = fetchFromGitHub { owner = "samaaron"; repo = "nrepl-eval-sexp-fu"; @@ -40951,7 +41162,7 @@ sha256 = "1nwj1ax2qmmlab4lik0b7japhqd424d0rb995dfv89p99gp8vmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-eval-sexp-fu"; sha256 = "17g4nih9kz2483ylp651lwfxkvmaj7wpinpgnifwbciyrplfvx2j"; name = "nrepl-eval-sexp-fu"; }; @@ -40964,7 +41175,7 @@ nrepl-sync = callPackage ({ cider, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nrepl-sync"; - version = "20140807.1154"; + version = "20140807.1754"; src = fetchFromGitHub { owner = "phillord"; repo = "lein-sync"; @@ -40972,7 +41183,7 @@ sha256 = "1129r3rzmfbl8nxjz71xnlyaszhhldawj467zbl36brdadp014n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -40985,7 +41196,7 @@ nsis-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nsis-mode"; - version = "20150914.846"; + version = "20150914.1446"; src = fetchFromGitHub { owner = "mattfidler"; repo = "nsis-mode"; @@ -40993,7 +41204,7 @@ sha256 = "1w80mbwlvmpd5ff7vy84z61b27klzh9z4wa6m2g7cy674fw4r1xp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -41006,7 +41217,7 @@ nu-mode = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, transpose-frame, undo-tree }: melpaBuild { pname = "nu-mode"; - version = "20160520.914"; + version = "20160520.1514"; src = fetchFromGitHub { owner = "pyluyten"; repo = "emacs-nu"; @@ -41014,7 +41225,7 @@ sha256 = "17nj8bkqw34hsbb8b51rl6221hlpxw265h2cwxqf64cswm22y313"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nu-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nu-mode"; sha256 = "0nzv3p62k8yyyww6idlxyi94q4d07nis7ydypar8d01jfqlrybkn"; name = "nu-mode"; }; @@ -41027,7 +41238,7 @@ number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "number"; - version = "20141127.1304"; + version = "20141127.1904"; src = fetchFromGitHub { owner = "chrisdone"; repo = "number"; @@ -41035,7 +41246,7 @@ sha256 = "045m83rdqryjpqh6y9s6x0yf9fw9xrwmxbm4qgg8ka164x9szv0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/number"; sha256 = "1nwcdv5ibirxx3sqadh6mnpj40ni3wna7wnjh343mx38dk2dzncf"; name = "number"; }; @@ -41048,7 +41259,7 @@ nummm-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nummm-mode"; - version = "20131117.514"; + version = "20131117.1114"; src = fetchFromGitHub { owner = "agpchil"; repo = "nummm-mode"; @@ -41056,7 +41267,7 @@ sha256 = "1i0yymsx8kin28bkrgwkk9ngsmjh0gh5j4hb0k03bq4fy799f2xx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nummm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nummm-mode"; sha256 = "10khhc6q0zjzrhsv4fgfdbs7qcwi1bgkwq4yqzidqcdndsailyh0"; name = "nummm-mode"; }; @@ -41069,7 +41280,7 @@ nvm = callPackage ({ dash, dash-functional, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "nvm"; - version = "20151113.355"; + version = "20151113.955"; src = fetchFromGitHub { owner = "rejeep"; repo = "nvm.el"; @@ -41077,7 +41288,7 @@ sha256 = "0prag0ks511ifa5mdpqmizp5n8190dxp4vdr81ld9w9xv7migpd7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -41090,7 +41301,7 @@ nyan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-mode"; - version = "20160429.1623"; + version = "20160429.2223"; src = fetchFromGitHub { owner = "TeMPOraL"; repo = "nyan-mode"; @@ -41098,7 +41309,7 @@ sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -41111,7 +41322,7 @@ nyan-prompt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nyan-prompt"; - version = "20140810.108"; + version = "20140810.708"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "nyan-prompt"; @@ -41119,7 +41330,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -41132,7 +41343,7 @@ o-blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "o-blog"; - version = "20151202.1839"; + version = "20151203.39"; src = fetchFromGitHub { owner = "renard"; repo = "o-blog"; @@ -41140,7 +41351,7 @@ sha256 = "0xs6787a4v7djgd2zz2v1pk14x27mg2ganz30j9f0gdiai7da6ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -41153,7 +41364,7 @@ oauth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oauth"; - version = "20130127.2051"; + version = "20130128.251"; src = fetchFromGitHub { owner = "psanford"; repo = "emacs-oauth"; @@ -41161,7 +41372,7 @@ sha256 = "058dyk1c3iw0ip8n8rfpskvqiriqilpclkzc18x73msp5svrh3lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oauth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oauth"; sha256 = "18z3i5brxm60z373cwx2sa3hx7v38a5s62gbs9b0lxb20ah4p9rz"; name = "oauth"; }; @@ -41174,14 +41385,14 @@ ob-axiom = callPackage ({ axiom-environment, emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-axiom"; - version = "20160310.1653"; + version = "20160310.2253"; src = fetchhg { url = "https://bitbucket.com/pdo/axiom-environment"; rev = "bc294e47f51c"; sha256 = "0z15n7cpprbhiamq26240g5bqsiw5mgyzdisi7j6hpybyk2zyl9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-axiom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-axiom"; sha256 = "12cmzhgzk8314y6nvzdjwidalccz6h440lil83c1h4lz4ddlwmf6"; name = "ob-axiom"; }; @@ -41194,7 +41405,7 @@ ob-browser = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-browser"; - version = "20150101.1010"; + version = "20150101.1610"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-browser"; @@ -41202,7 +41413,7 @@ sha256 = "1nzli8wk3nd05j2z2fw511857qbawirhg8mfw21wqclkz8zqn813"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-browser"; sha256 = "1yqbzmmazamgf8fi8ipq14ffm8h1pp5d2lkflbxjsagdq61hirxm"; name = "ob-browser"; }; @@ -41215,7 +41426,7 @@ ob-coffee = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-coffee"; - version = "20160415.2336"; + version = "20160416.536"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-coffee"; @@ -41223,7 +41434,7 @@ sha256 = "01l8zvnfpc1vihnpqj75xlvjkk2hkvxpb1872jdzv2k1na2ajfxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-coffee"; sha256 = "16k8r9rqz4mayxl85pjdfsrz43k2hwcf8k7aff8wnic0ldzp6ivf"; name = "ob-coffee"; }; @@ -41236,7 +41447,7 @@ ob-cypher = callPackage ({ cypher-mode, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-cypher"; - version = "20150224.2137"; + version = "20150225.337"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-cypher"; @@ -41244,7 +41455,7 @@ sha256 = "1xbczyqfqdig5w6jvx2kg57mk16sbiz5ysv445v83wqk0sz6nc9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-cypher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-cypher"; sha256 = "1ygmx0rjvxjl8hifkkwrkk9gpsmdsk6ndb6pg7y78p8hfp5jpyq3"; name = "ob-cypher"; }; @@ -41257,7 +41468,7 @@ ob-diagrams = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-diagrams"; - version = "20160407.837"; + version = "20160407.1437"; src = fetchFromGitHub { owner = "bergey"; repo = "org-babel-diagrams"; @@ -41265,7 +41476,7 @@ sha256 = "0kx95lvkvg6h6lhs9knlp8rwi05y8y0i8w8vs7mwm378syls0qk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-diagrams"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-diagrams"; sha256 = "1r1p9l61az1jb5m4k2dwnkp9j8xlcb588gq4mcg796vnbdscfcy2"; name = "ob-diagrams"; }; @@ -41278,7 +41489,7 @@ ob-elixir = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-elixir"; - version = "20151021.747"; + version = "20151021.1347"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-elixir"; @@ -41286,7 +41497,7 @@ sha256 = "0qknm1h2ijnzs1km51hqwpnv5083m9ngi3nbxd90r7d6vva5fhhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-elixir"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-elixir"; sha256 = "1l5b9hww2vmqnjlsd6lbjpz9walck82ngang1amfnk4xn6d0gdhi"; name = "ob-elixir"; }; @@ -41299,7 +41510,7 @@ ob-go = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-go"; - version = "20160318.1552"; + version = "20160318.2052"; src = fetchFromGitHub { owner = "pope"; repo = "ob-go"; @@ -41307,7 +41518,7 @@ sha256 = "1pa7zclci87rd4fx731z37pdbdjabmknbr0xmdk1g92g0hjhk2rb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-go"; sha256 = "09d8jrzijf8gr08615rdmf366zgip43dxvyihy0yzhk7j0p3iahj"; name = "ob-go"; }; @@ -41320,7 +41531,7 @@ ob-http = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-http"; - version = "20160416.32"; + version = "20160416.632"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-http"; @@ -41328,7 +41539,7 @@ sha256 = "00mnpnlsd774z87ziqmaq9h4rbxmf197cm2kk4v6s15rs3np617m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -41341,7 +41552,7 @@ ob-ipython = callPackage ({ dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ob-ipython"; - version = "20160424.1605"; + version = "20160424.2205"; src = fetchFromGitHub { owner = "gregsexton"; repo = "ob-ipython"; @@ -41349,7 +41560,7 @@ sha256 = "071ma803l6ixg12brbc8p2bxnvl2skmr8r913pz07qh0n8k83zqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-ipython"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-ipython"; sha256 = "06llf365k8m81ljmlajqvxlh84qg6h0flp3m6gb0zx71xilvw186"; name = "ob-ipython"; }; @@ -41362,7 +41573,7 @@ ob-kotlin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-kotlin"; - version = "20150312.914"; + version = "20150312.1414"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-kotlin"; @@ -41370,7 +41581,7 @@ sha256 = "01cjwg27m0iqndkwwl0v5w8vvk270xvi81za3y5hyrmb7dq6bfy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-kotlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-kotlin"; sha256 = "19g4s9dnipg9aa360mp0affmnslm6h7byg595rnaz6rz25a3qdpx"; name = "ob-kotlin"; }; @@ -41383,7 +41594,7 @@ ob-lfe = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-lfe"; - version = "20150701.955"; + version = "20150701.1555"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-lfe"; @@ -41391,7 +41602,7 @@ sha256 = "1mk7qcf4svf4yk4mimcyhbw5imq3zps2vh2zzq9gwjcn17jnplhn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-lfe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-lfe"; sha256 = "11cpaxk9wb27b9zhyns75dqpds4gh3cbjcvia4p2bnvmbm8lz4y8"; name = "ob-lfe"; }; @@ -41404,7 +41615,7 @@ ob-lua = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-lua"; - version = "20160411.2324"; + version = "20160412.524"; src = fetchFromGitHub { owner = "stardiviner"; repo = "ob-lua"; @@ -41412,7 +41623,7 @@ sha256 = "11cdf5nfmn5cc1i4kqxq0hks8d19sf5rwavpfmz39xysbnr65s68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-lua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-lua"; sha256 = "13ailb285bs9sm9qmjrpq0wjk7sp3w019p94pzrwmzqf52y1dapg"; name = "ob-lua"; }; @@ -41425,7 +41636,7 @@ ob-ml-marklogic = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-ml-marklogic"; - version = "20160508.1232"; + version = "20160508.1832"; src = fetchFromGitHub { owner = "ndw"; repo = "ob-ml-marklogic"; @@ -41433,7 +41644,7 @@ sha256 = "15mzra45jcihgvddv69yxpml34hy15yz2hxcxz6a4la8vk6mw3ky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-ml-marklogic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-ml-marklogic"; sha256 = "1y5cgba7gzlmhdrs0k7clgrxixdl4najj5271x1m023jch7bz7xl"; name = "ob-ml-marklogic"; }; @@ -41446,7 +41657,7 @@ ob-mongo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-mongo"; - version = "20130718.1032"; + version = "20130718.1632"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-mongo"; @@ -41454,7 +41665,7 @@ sha256 = "0qibnn908a59jyfslsnpjanbm85f8xw9zywsqsh37nv27ncbx0hr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-mongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-mongo"; sha256 = "1cgmqsl5dzi8xy3sh5xsfkczl555fpd4q6kgsh9xkn74sz227907"; name = "ob-mongo"; }; @@ -41467,7 +41678,7 @@ ob-php = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-php"; - version = "20160505.519"; + version = "20160505.1119"; src = fetchFromGitHub { owner = "stardiviner"; repo = "ob-php"; @@ -41475,7 +41686,7 @@ sha256 = "02vmy3nnk4yyjbp3r7zzv9sb3frv7kbj4a2a855iqa0isp8nhyfi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-php"; sha256 = "0n6m6rpd0rsk6idhxs9qf5pb6p9ch2immczj5br7h5xf1bc7x2fp"; name = "ob-php"; }; @@ -41488,7 +41699,7 @@ ob-prolog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ob-prolog"; - version = "20150530.1237"; + version = "20150530.1837"; src = fetchFromGitHub { owner = "ljos"; repo = "ob-prolog"; @@ -41496,7 +41707,7 @@ sha256 = "14scbds1rlmii52i0zr3s0r1wmga7qysj63c2dpinhagxa36d51n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-prolog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-prolog"; sha256 = "0ki8yd20yk5xwn0zpk06zjxzgrsf8paydif9n98svb9s2l9wrh1s"; name = "ob-prolog"; }; @@ -41509,7 +41720,7 @@ ob-redis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-redis"; - version = "20160411.2313"; + version = "20160412.513"; src = fetchFromGitHub { owner = "stardiviner"; repo = "ob-redis"; @@ -41517,7 +41728,7 @@ sha256 = "1f8qz5bwz5yd3clvjc0zw3yf9m9fh5vn2gil69ay1a2n00qwkq78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-redis"; sha256 = "1xsz4cc8cqx03ckpcwi7dc3l6v4c5mdbby37a9i0n5q6wd4r92mm"; name = "ob-redis"; }; @@ -41530,7 +41741,7 @@ ob-restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }: melpaBuild { pname = "ob-restclient"; - version = "20160324.205"; + version = "20160324.705"; src = fetchFromGitHub { owner = "alf"; repo = "ob-restclient.el"; @@ -41538,7 +41749,7 @@ sha256 = "09zxf158sspwv7j0kjjxzlymxi9ax7xpk5d5fry2jljskgn17csv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-restclient"; sha256 = "0nv2wsqmpschym6ch8fr4a79hlnpz31jc8y2flsygaqj0annjkfk"; name = "ob-restclient"; }; @@ -41551,7 +41762,7 @@ ob-sagemath = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, sage-shell-mode }: melpaBuild { pname = "ob-sagemath"; - version = "20160517.2028"; + version = "20160518.228"; src = fetchFromGitHub { owner = "stakemori"; repo = "ob-sagemath"; @@ -41559,7 +41770,7 @@ sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sagemath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sagemath"; sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; name = "ob-sagemath"; }; @@ -41572,7 +41783,7 @@ ob-sml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sml-mode }: melpaBuild { pname = "ob-sml"; - version = "20130829.1443"; + version = "20130829.2043"; src = fetchFromGitHub { owner = "swannodette"; repo = "ob-sml"; @@ -41580,7 +41791,7 @@ sha256 = "0gymna48igcixrapjmg842pnlsshhw8zplxwyyn0x2yrma9fjyyg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -41593,7 +41804,7 @@ ob-swift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-swift"; - version = "20151205.211"; + version = "20151205.811"; src = fetchFromGitHub { owner = "zweifisch"; repo = "ob-swift"; @@ -41601,7 +41812,7 @@ sha256 = "071rl0bvhwh5vqbl7n84shvzgqgwg2f5l9vb8wfs4y24hsqfgxmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-swift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-swift"; sha256 = "19mcjfmijbajldm3jz8ij1x2p7d164mbq2ln6yb6iihxmdqnn2q4"; name = "ob-swift"; }; @@ -41614,7 +41825,7 @@ ob-translate = callPackage ({ fetchFromGitHub, fetchurl, google-translate, lib, melpaBuild, org }: melpaBuild { pname = "ob-translate"; - version = "20160411.424"; + version = "20160411.1024"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "ob-translate"; @@ -41622,7 +41833,7 @@ sha256 = "086z3smcfn5g599967vmxj3akppyqk9d64acm8zzj76zj29xfk1k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -41635,7 +41846,7 @@ ob-typescript = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ob-typescript"; - version = "20150804.830"; + version = "20150804.1430"; src = fetchFromGitHub { owner = "lurdan"; repo = "ob-typescript"; @@ -41643,7 +41854,7 @@ sha256 = "1ycqdjqn5361pcnc95hxhjqd3y96cjjnaylrnzwhmacl38jm3vai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-typescript"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-typescript"; sha256 = "1wpy928ndvc076jzi14f6k5fsw8had0pz7f1yjdqql4icszhqa0p"; name = "ob-typescript"; }; @@ -41656,7 +41867,7 @@ oberon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oberon"; - version = "20120715.509"; + version = "20120715.1109"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "oberon"; @@ -41664,7 +41875,7 @@ sha256 = "16462cgq91jg7i97h440zss5vw2qkxgdy7gm148ns4djr2fchnf6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oberon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oberon"; sha256 = "1wna7ld670r6ljdg5yx0ga0grbq1ma8q92gkari0d5czr7s9lggv"; name = "oberon"; }; @@ -41677,7 +41888,7 @@ objc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "objc-font-lock"; - version = "20141021.1422"; + version = "20141021.2022"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "objc-font-lock"; @@ -41685,7 +41896,7 @@ sha256 = "138c1nm579vr37dqprqsakfkhs2awm3klzyyd6bv9rhkrysrpbqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/objc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/objc-font-lock"; sha256 = "0njslpgdcph3p3gamrbd6pc04szks07yv4ij3p1l7p5dc2p06rs6"; name = "objc-font-lock"; }; @@ -41698,7 +41909,7 @@ obsidian-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "obsidian-theme"; - version = "20140420.1243"; + version = "20140420.1843"; src = fetchFromGitHub { owner = "mswift42"; repo = "obsidian-theme"; @@ -41706,7 +41917,7 @@ sha256 = "00v21iw9wwxap8jhg9035cp47fm5v2djmldq6nprv860m01xlwh1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/obsidian-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/obsidian-theme"; sha256 = "17ckshimdma6fqiis4kxczxkbrsfpm2a0b41m5f3qz3qlhcw2xgr"; name = "obsidian-theme"; }; @@ -41719,7 +41930,7 @@ occidental-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occidental-theme"; - version = "20130312.1558"; + version = "20130312.2058"; src = fetchFromGitHub { owner = "olcai"; repo = "occidental-theme"; @@ -41727,7 +41938,7 @@ sha256 = "0pnliw02crqw8hbg088klz54z6s1ih8q2lcn9mq5f12xi752hxm8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occidental-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occidental-theme"; sha256 = "1ra5p8k96wvb04v69xm87jl4jlgi57v4jw2xxzkwbwxbydncnv0b"; name = "occidental-theme"; }; @@ -41740,7 +41951,7 @@ occur-context-resize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occur-context-resize"; - version = "20151227.2302"; + version = "20151228.502"; src = fetchFromGitHub { owner = "dgtized"; repo = "occur-context-resize.el"; @@ -41748,7 +41959,7 @@ sha256 = "1v1c2481v2xgnw8kgbbqhqkdd41lzvki9hm3iypbf3n0jxz8nnzy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occur-context-resize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occur-context-resize"; sha256 = "0sp5v4rwqgqdj26gdkrmjvkmbp4g6jq4lrn2c3zm8s2gq0s3l6ri"; name = "occur-context-resize"; }; @@ -41761,7 +41972,7 @@ occur-x = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "occur-x"; - version = "20130610.943"; + version = "20130610.1543"; src = fetchFromGitHub { owner = "juan-leon"; repo = "occur-x"; @@ -41769,7 +41980,7 @@ sha256 = "1zj0xhvl5qx42injv0av4lyzd3jsjls1m368dqd2qnswhfw8wfn6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/occur-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/occur-x"; sha256 = "1xq1k9rq7k1zw90shbgiidwvcn0ys1d53q03b5mpvvfqhj4n0i1g"; name = "occur-x"; }; @@ -41782,7 +41993,7 @@ ocodo-svg-modelines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, svg-mode-line-themes }: melpaBuild { pname = "ocodo-svg-modelines"; - version = "20150516.1019"; + version = "20150516.1619"; src = fetchFromGitHub { owner = "ocodo"; repo = "ocodo-svg-modelines"; @@ -41790,7 +42001,7 @@ sha256 = "155gmls6cz3zf4lcj89kzb96y7k0glx0f659jg5z0skgxq79hf48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -41803,15 +42014,15 @@ ocp-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ocp-indent"; - version = "20160429.234"; + version = "20160429.834"; src = fetchFromGitHub { owner = "OCamlPro"; repo = "ocp-indent"; - rev = "46e914b3511e4bb93b3428ef773d2208d684355b"; - sha256 = "0kjx68hk1svix237842maf91rhx7l4002yzq5hj33n4nfggqm09c"; + rev = "1c63a0780cf463c17206ca6338e1638abd27284f"; + sha256 = "0mp53z2myf0hij3sk3ickbmc9n4n99xv4ilaz7ng4y7vmlczlyqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -41824,7 +42035,7 @@ octicons = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "octicons"; - version = "20151031.2340"; + version = "20151101.440"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-octicons"; @@ -41832,7 +42043,7 @@ sha256 = "0dp7dhmgrq078rjhpm1cr993qjqz7qgy2z4sn73qw6j55va7d9kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -41845,7 +42056,7 @@ octopress = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "octopress"; - version = "20160123.1706"; + version = "20160123.2306"; src = fetchFromGitHub { owner = "aaronbieber"; repo = "octopress.el"; @@ -41853,7 +42064,7 @@ sha256 = "0p9ph62vnw1r9dbvrjyw356a9bjnzh0hglssi97dr0qd6cs8whf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octopress"; sha256 = "0zsir6chjvn5i1irmf5aj6mmb401c553r5wykq796sz7jnjhrjg0"; name = "octopress"; }; @@ -41866,7 +42077,7 @@ offlineimap = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "offlineimap"; - version = "20150916.758"; + version = "20150916.1358"; src = fetchFromGitHub { owner = "jd"; repo = "offlineimap.el"; @@ -41874,7 +42085,7 @@ sha256 = "1bjrgj8klg7ly63vx90jpaih9virn02bhqi16p6z0mw36q1q7ysq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -41887,7 +42098,7 @@ oldlace-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "oldlace-theme"; - version = "20150705.900"; + version = "20150705.1500"; src = fetchFromGitHub { owner = "mswift42"; repo = "oldlace-theme"; @@ -41895,7 +42106,7 @@ sha256 = "0y9fxrsxp1158fyjp4f69r7g2s7b6nbxlsmsb8clwqc8pmmg2z82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oldlace-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oldlace-theme"; sha256 = "1pxiqqh5x4wsayqgwplzvsbalbj44zvby7x0pijdvwcnsh74znj8"; name = "oldlace-theme"; }; @@ -41908,7 +42119,7 @@ olivetti = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "olivetti"; - version = "20160413.22"; + version = "20160413.622"; src = fetchFromGitHub { owner = "rnkn"; repo = "olivetti"; @@ -41916,7 +42127,7 @@ sha256 = "0mlklcgakcb2nafs25hpy31jwjd9rrrxc494b5kfcw3g5b3z8q40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -41929,7 +42140,7 @@ om-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "om-mode"; - version = "20140915.1710"; + version = "20140915.2310"; src = fetchFromGitHub { owner = "danielsz"; repo = "om-mode"; @@ -41937,7 +42148,7 @@ sha256 = "03szb2i2xk3nq578cz1drsddsbld03ryvykdfzmfvwcmlpaknvzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/om-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/om-mode"; sha256 = "1q2h9wjnyg7wlk913px4vj1cxqynd6xfh9ind7kjyra436yw3l4j"; name = "om-mode"; }; @@ -41950,7 +42161,7 @@ omni-kill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omni-kill"; - version = "20150527.249"; + version = "20150527.849"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-kill.el"; @@ -41958,7 +42169,7 @@ sha256 = "1925mh47n4x9v780qp5l6cksl64v9mpyb87znsg93x6sxr0cvv4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -41971,7 +42182,7 @@ omni-log = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, s }: melpaBuild { pname = "omni-log"; - version = "20150604.1338"; + version = "20150604.1938"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-log.el"; @@ -41979,7 +42190,7 @@ sha256 = "1nvgh9wvgswcs3r958b579rsx540xrhlnafc6cmcd63z6yck19w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -41992,7 +42203,7 @@ omni-quotes = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, omni-log }: melpaBuild { pname = "omni-quotes"; - version = "20150604.1357"; + version = "20150604.1957"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-quotes.el"; @@ -42000,7 +42211,7 @@ sha256 = "1x8af8jv4n83sl4rgj0d2rpmw9g78rknm1h523f3b1a5x4kdvsz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-quotes"; sha256 = "0dqki0ibabs9cpcjvnh8lc2114x46i1xmnyjc6qqblfxa3ggdygs"; name = "omni-quotes"; }; @@ -42013,7 +42224,7 @@ omni-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omni-scratch"; - version = "20151211.1159"; + version = "20151211.1759"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-scratch.el"; @@ -42021,7 +42232,7 @@ sha256 = "1icdk19vwihc8mn04yxl2brql2gssn3gxd5bv7ljdd6mn5hkw500"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -42034,7 +42245,7 @@ omni-tags = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el }: melpaBuild { pname = "omni-tags"; - version = "20150513.1353"; + version = "20150513.1953"; src = fetchFromGitHub { owner = "AdrieanKhisbe"; repo = "omni-tags.el"; @@ -42042,7 +42253,7 @@ sha256 = "1lvnkdrav7h15p8d5ayhfsjynllwp4br1vqxmw0ppxnlyq7337n5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -42055,7 +42266,7 @@ omniref = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omniref"; - version = "20160225.1724"; + version = "20160225.2324"; src = fetchFromGitHub { owner = "dotemacs"; repo = "omniref.el"; @@ -42063,7 +42274,7 @@ sha256 = "0d6kjggi2p937ydpvw3fr2cxy5vj46dmfqbkb7a9jdhnzxadnwh5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omniref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omniref"; sha256 = "0lgw1knqppdg046zqx4m7nbzvsasr89wa9i4594hf46w1094dabj"; name = "omniref"; }; @@ -42076,7 +42287,7 @@ omnisharp = callPackage ({ auto-complete, cl-lib ? null, csharp-mode, dash, fetchFromGitHub, fetchurl, flycheck, json ? null, lib, melpaBuild, popup, s }: melpaBuild { pname = "omnisharp"; - version = "20151210.1414"; + version = "20151210.2014"; src = fetchFromGitHub { owner = "OmniSharp"; repo = "omnisharp-emacs"; @@ -42084,7 +42295,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -42106,7 +42317,7 @@ omtose-phellack-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "omtose-phellack-theme"; - version = "20160412.728"; + version = "20160412.1328"; src = fetchFromGitHub { owner = "franksn"; repo = "omtose-phellack-theme"; @@ -42114,7 +42325,7 @@ sha256 = "01cssk6dxinfy1h431cx1yq5nbk0pc5j0h3iir2anzz1kfzbzilz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omtose-phellack-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omtose-phellack-theme"; sha256 = "09nyc7sdhzy4vmngzdj6r7cv2nbbwqlcyyi2mcg5a8lml4f6fj5i"; name = "omtose-phellack-theme"; }; @@ -42127,7 +42338,7 @@ on-parens = callPackage ({ dash, emacs, evil, fetchFromGitHub, fetchurl, lib, melpaBuild, smartparens }: melpaBuild { pname = "on-parens"; - version = "20150702.1806"; + version = "20150703.6"; src = fetchFromGitHub { owner = "willghatch"; repo = "emacs-on-parens"; @@ -42135,7 +42346,7 @@ sha256 = "1616bdvrf1bawcqgj7balbxaw26waw81gxiw7yspnvpyb009j66y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/on-parens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/on-parens"; sha256 = "19kyzpkgfl0ipbcgnl8fbfbapnfdxr8w9i7prfkm6rjp6amxyqab"; name = "on-parens"; }; @@ -42148,7 +42359,7 @@ on-screen = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "on-screen"; - version = "20160302.450"; + version = "20160302.1050"; src = fetchFromGitHub { owner = "michael-heerdegen"; repo = "on-screen.el"; @@ -42156,7 +42367,7 @@ sha256 = "1rrby3mbh24qd43nsb3ymcrjxh1cz6iasf1gv0a8fmivmb4f7dyz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/on-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/on-screen"; sha256 = "104jisc2bckzrajxlvj1cfx1drnjj7jhqjblvm89ry32xdnjxmqb"; name = "on-screen"; }; @@ -42169,7 +42380,7 @@ one-time-pad-encrypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "one-time-pad-encrypt"; - version = "20160329.1113"; + version = "20160329.1713"; src = fetchFromGitHub { owner = "garvinguan"; repo = "emacs-one-time-pad"; @@ -42177,7 +42388,7 @@ sha256 = "0g2hvpnmgyy1k393prv97nqwlqc58nqf71hkrmaijw0cyy9q03nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/one-time-pad-encrypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/one-time-pad-encrypt"; sha256 = "0aa7qcii7yf4527nhlwwp0hbhamhyp2xg0fsscnq2m28l5d5kmn6"; name = "one-time-pad-encrypt"; }; @@ -42189,13 +42400,13 @@ }) {}; oneonone = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "oneonone"; - version = "20151231.1841"; + version = "20160101.41"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/oneonone.el"; sha256 = "05njigqi9061d34530d76kwsdzqgk9qxnwhn9xis64w59f5nzf1h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/oneonone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/oneonone"; sha256 = "0v4nvhzgq97zbi18jd3ds57yh1fpv57b2a1cd7r8jbxwaaz3gpg9"; name = "oneonone"; }; @@ -42208,7 +42419,7 @@ opam = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "opam"; - version = "20150719.820"; + version = "20150719.1420"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "opam.el"; @@ -42216,7 +42427,7 @@ sha256 = "1yqrp9icci5snp1485wb6y8mr2hjp9006ahch58lvmnq98bn7j45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -42229,7 +42440,7 @@ open-junk-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "open-junk-file"; - version = "20160514.1825"; + version = "20160515.25"; src = fetchFromGitHub { owner = "rubikitch"; repo = "open-junk-file"; @@ -42237,7 +42448,7 @@ sha256 = "0r5rsghqgy99jwjf3dqkw1q10smsvs242aafmz142l4ipsqr3gi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/open-junk-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/open-junk-file"; sha256 = "0r1v9m8a5blv70fzq5miv5i57jx0bm1p0jxh0lwklam0m99znmcj"; name = "open-junk-file"; }; @@ -42250,7 +42461,7 @@ opencl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "opencl-mode"; - version = "20160220.1209"; + version = "20160220.1809"; src = fetchFromGitHub { owner = "salmanebah"; repo = "opencl-mode"; @@ -42258,7 +42469,7 @@ sha256 = "094r6fx1s76m8anqqg2qrddidn1dp08kmv8p8md27yy9mm49d91n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; @@ -42271,7 +42482,7 @@ openstack-cgit-browse-file = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "openstack-cgit-browse-file"; - version = "20130819.527"; + version = "20130819.1127"; src = fetchFromGitHub { owner = "chmouel"; repo = "openstack-cgit-browse-file"; @@ -42279,7 +42490,7 @@ sha256 = "0086pfk4pq6xmknk7a42fihcjgzkcplqqc1rk9fhwmn9j7djbq70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/openstack-cgit-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/openstack-cgit-browse-file"; sha256 = "05dl28a4npnnzzipypfcqb21sdww715lwji2xnsabx3fb1h1w5jl"; name = "openstack-cgit-browse-file"; }; @@ -42291,14 +42502,14 @@ }) {}; openwith = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "openwith"; - version = "20120531.1736"; + version = "20120531.2336"; src = fetchhg { url = "https://bitbucket.com/jpkotta/openwith"; rev = "aeb78782ec87"; sha256 = "1wl6gnxsyhaad4cl9bxjc0qbc5jzvlwbwjbajs0n1s6qr07d6r01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/openwith"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/openwith"; sha256 = "05lkx3yfv2445fp07bhqv2aqz5hgf3dxp39lmz3nfxn4c9v8nkqi"; name = "openwith"; }; @@ -42311,7 +42522,7 @@ operate-on-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "operate-on-number"; - version = "20150707.223"; + version = "20150707.823"; src = fetchFromGitHub { owner = "knu"; repo = "operate-on-number.el"; @@ -42319,7 +42530,7 @@ sha256 = "0iw3c8sn702ziki59mvd5gxm484i7f0bwsy8fz95y08s9gknjjf9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -42332,7 +42543,7 @@ org-ac = callPackage ({ auto-complete-pcmp, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "org-ac"; - version = "20140302.713"; + version = "20140302.1313"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-ac"; @@ -42340,7 +42551,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -42353,7 +42564,7 @@ org-agenda-property = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-agenda-property"; - version = "20140626.1716"; + version = "20140626.2316"; src = fetchFromGitHub { owner = "Malabarba"; repo = "org-agenda-property"; @@ -42361,7 +42572,7 @@ sha256 = "15xgkm5p30qfghyhkjivh5n4770794qf4pza462vb0xl5v6kffbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -42374,7 +42585,7 @@ org-alert = callPackage ({ alert, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org-alert"; - version = "20151007.637"; + version = "20151007.1237"; src = fetchFromGitHub { owner = "groksteve"; repo = "org-alert"; @@ -42382,7 +42593,7 @@ sha256 = "0yzvir2gmyv9k43q3sf37lc9xcmfyaj5wh825xax7305j3b2hhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-alert"; sha256 = "0n5a24iv8cj395xr0gfgi0hs237dd98zm2fws05k47vy3ygni152"; name = "org-alert"; }; @@ -42395,15 +42606,15 @@ org-attach-screenshot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-attach-screenshot"; - version = "20160125.1632"; + version = "20160529.1637"; src = fetchFromGitHub { owner = "dfeich"; repo = "org-screenshot"; - rev = "628e82cc0e78ff2d3b08685d72aefe3568947b38"; - sha256 = "0f4ja4m1r6bbgachipswb2001ryg8cqcxjvwmnab951mw0cbg7v4"; + rev = "e1b1eaadf3cdcac04d41156bbfb82b6622ce76e0"; + sha256 = "19axpybfdsnaj04h0mxpahzqa5r5yl5mmczd3mx5r6mnr6dgrwn9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-attach-screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-attach-screenshot"; sha256 = "0108kahyd499q87wzvirv5d6p7jrb7ckz8r96pwqzgflj3njbnmn"; name = "org-attach-screenshot"; }; @@ -42416,7 +42627,7 @@ org-autolist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-autolist"; - version = "20150922.1005"; + version = "20150922.1605"; src = fetchFromGitHub { owner = "calvinwyoung"; repo = "org-autolist"; @@ -42424,7 +42635,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -42437,7 +42648,7 @@ org-beautify-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-beautify-theme"; - version = "20150106.1256"; + version = "20150106.1856"; src = fetchFromGitHub { owner = "jonnay"; repo = "emagicians-starter-kit"; @@ -42445,7 +42656,7 @@ sha256 = "00iklf97mszrsdv20q55qhml1dscvmmalpfnlkwi9mabklyq3i6z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-beautify-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-beautify-theme"; sha256 = "1j2gi3f72kvavdcj6xs7zng0dcnivrhc7pjzm2g4mjm5ad5s1flq"; name = "org-beautify-theme"; }; @@ -42458,7 +42669,7 @@ org-bookmark-heading = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-bookmark-heading"; - version = "20160326.259"; + version = "20160326.759"; src = fetchFromGitHub { owner = "alphapapa"; repo = "org-bookmark-heading"; @@ -42466,7 +42677,7 @@ sha256 = "084ij85pw53pzr220ql97544zkh23xb8gr81397asfdhc5wrzkqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bookmark-heading"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bookmark-heading"; sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; name = "org-bookmark-heading"; }; @@ -42479,7 +42690,7 @@ org-bullets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-bullets"; - version = "20140918.1437"; + version = "20140918.2037"; src = fetchFromGitHub { owner = "sabof"; repo = "org-bullets"; @@ -42487,7 +42698,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -42500,7 +42711,7 @@ org-caldav = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-caldav"; - version = "20160306.937"; + version = "20160306.1537"; src = fetchFromGitHub { owner = "dengste"; repo = "org-caldav"; @@ -42508,7 +42719,7 @@ sha256 = "0fq9d1q16fs0i3x9gs8k1n98nvh971r6g5bk2bswpfbpvndgwbi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-caldav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-caldav"; sha256 = "0166y04gxrwnynm4jshm2kqk5jbvl5g5078dxvw18nicrgq3y4r8"; name = "org-caldav"; }; @@ -42521,7 +42732,7 @@ org-capture-pop-frame = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-capture-pop-frame"; - version = "20160518.608"; + version = "20160518.1208"; src = fetchFromGitHub { owner = "tumashu"; repo = "org-capture-pop-frame"; @@ -42529,7 +42740,7 @@ sha256 = "01ffkk79wz2qkh9h9cjl59j34wvbiqzzxbbc9a06lh2rc946wgis"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-capture-pop-frame"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-capture-pop-frame"; sha256 = "0g0b3vifwg39rb0fmad7y955dcqccnm01c6m27cv2x4xfib8ik3w"; name = "org-capture-pop-frame"; }; @@ -42542,7 +42753,7 @@ org-chinese-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-chinese-utils"; - version = "20160510.1009"; + version = "20160510.1609"; src = fetchFromGitHub { owner = "tumashu"; repo = "org-chinese-utils"; @@ -42550,7 +42761,7 @@ sha256 = "1m6bsjc2l4vx1z2cb0siqs8m1wjvi8fs67aqqx879q5rwlxbhzs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-chinese-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-chinese-utils"; sha256 = "1dycsv0p2xzm2dg6fi5f5dkb48qnqq0qhrmvi0cdjq34j67s27ix"; name = "org-chinese-utils"; }; @@ -42563,7 +42774,7 @@ org-cliplink = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-cliplink"; - version = "20160319.800"; + version = "20160319.1300"; src = fetchFromGitHub { owner = "rexim"; repo = "org-cliplink"; @@ -42571,7 +42782,7 @@ sha256 = "048mcjgls405wwvn2r90cxkyw9z2nf97gif86k0gxk7yrbbkiy2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-cliplink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-cliplink"; sha256 = "19l3k9w9csgvdr7n824bzg7jja0f28dmz6caldxh43vankpmlg3p"; name = "org-cliplink"; }; @@ -42584,15 +42795,15 @@ org-clock-convenience = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-clock-convenience"; - version = "20160217.406"; + version = "20160529.1623"; src = fetchFromGitHub { owner = "dfeich"; repo = "org-clock-convenience"; - rev = "49450ede58660f0bd51337a0770aebef46ea58b8"; - sha256 = "0l0r44brs3fcgpjjirfrbf5cgxmsc0siqakv5mlvmr64xd1vi2lw"; + rev = "40b86b6950e9118c660e2234dab2f413f36f5692"; + sha256 = "1imy615qvkw6qfd6ngvillhkqbrnb5mxiqbfy4sm7wq5q76qwkm5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-clock-convenience"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-clock-convenience"; sha256 = "1zis0fp7q253qfxypm7a69zb3w8jb4cbrbj2rk34d1jisvnn4irw"; name = "org-clock-convenience"; }; @@ -42605,7 +42816,7 @@ org-context = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-context"; - version = "20160108.514"; + version = "20160108.1114"; src = fetchFromGitHub { owner = "thisirs"; repo = "org-context"; @@ -42613,7 +42824,7 @@ sha256 = "0q4v216ihhwv8rlb9xc8xy7nj1p058xabfflglhgcd7mfjrsyayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-context"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-context"; sha256 = "19y8aln7wix9p506ajvfkl641147c5mdmjm98jnq68cx2r4wp6zz"; name = "org-context"; }; @@ -42626,7 +42837,7 @@ org-cua-dwim = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-cua-dwim"; - version = "20120203.34"; + version = "20120203.634"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-cua-dwim.el"; @@ -42634,7 +42845,7 @@ sha256 = "0nrfvmqb70phnq0k4wbdj6z666wq6xvabg4pgv8qn62rbrw4yyhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-cua-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-cua-dwim"; sha256 = "0ib3m41b4lh0p0xxhsmfv42qs00xm2cfwwl2cgfdjjp1s57p19xy"; name = "org-cua-dwim"; }; @@ -42647,7 +42858,7 @@ org-dashboard = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-dashboard"; - version = "20150812.602"; + version = "20150812.1202"; src = fetchFromGitHub { owner = "bard"; repo = "org-dashboard"; @@ -42655,7 +42866,7 @@ sha256 = "1nqfi139cag3ll8wxk8rh59hay97vi8i0mlgnams4jla285zydj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dashboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dashboard"; sha256 = "1hvhhbmyx12wsf2n1hd0hg5cy05zyspd82xxcdh04g4s9r3ikqj5"; name = "org-dashboard"; }; @@ -42668,7 +42879,7 @@ org-doing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-doing"; - version = "20150824.1001"; + version = "20150824.1601"; src = fetchFromGitHub { owner = "omouse"; repo = "org-doing"; @@ -42676,7 +42887,7 @@ sha256 = "1wrgqdrfdxc1vrcr6dsa8dcxrwj6zgjr9h1fzilwnxlzfvdilnsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-doing"; sha256 = "17w49z78fvbz182sxv9mnryj124gm9jbdmbybppjqz4rk6wvnm2j"; name = "org-doing"; }; @@ -42689,7 +42900,7 @@ org-dotemacs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-dotemacs"; - version = "20151119.1322"; + version = "20151119.1922"; src = fetchFromGitHub { owner = "vapniks"; repo = "org-dotemacs"; @@ -42697,7 +42908,7 @@ sha256 = "15zrnd168n4pwa1bj5fz79hcrgw61braf0b095rsfhjh5w2sasy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dotemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dotemacs"; sha256 = "1vc391fdkdqd4g0piq66zhrlgqx5s2ijv7qd1rc3a235sjb9i2n4"; name = "org-dotemacs"; }; @@ -42710,7 +42921,7 @@ org-download = callPackage ({ async, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-download"; - version = "20160411.1010"; + version = "20160411.1610"; src = fetchFromGitHub { owner = "abo-abo"; repo = "org-download"; @@ -42718,7 +42929,7 @@ sha256 = "02344qyhz4bjz0rg4lmmqpn43lf03ag5v384ppczqks61rq7zpq9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-download"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-download"; sha256 = "19yjx0qqpmrdwagp3d6lwwv7dcb745m9ccq3m29sin74f5p4svsi"; name = "org-download"; }; @@ -42731,7 +42942,7 @@ org-dp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-dp"; - version = "20160326.903"; + version = "20160326.1403"; src = fetchFromGitHub { owner = "tj64"; repo = "org-dp"; @@ -42739,7 +42950,7 @@ sha256 = "0misv6g1cql7qc3xhy56cn79pzvn811fvhvivvq0bdx4g0hpp2fg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; @@ -42752,7 +42963,7 @@ org-drill-table = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org-plus-contrib, s }: melpaBuild { pname = "org-drill-table"; - version = "20140117.437"; + version = "20140117.1037"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "org-drill-table"; @@ -42760,7 +42971,7 @@ sha256 = "0m5c9x0vazciq6czpg5y9nr5yzjf6nl0qp5cfajv49cw2h0cwqyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-drill-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-drill-table"; sha256 = "1gb5b4hj4xr8nv8bxfar145i38zcic6c34gk98wpshvwzvb43r69"; name = "org-drill-table"; }; @@ -42773,7 +42984,7 @@ org-dropbox = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names }: melpaBuild { pname = "org-dropbox"; - version = "20150114.9"; + version = "20150114.609"; src = fetchFromGitHub { owner = "heikkil"; repo = "org-dropbox"; @@ -42781,7 +42992,7 @@ sha256 = "0jjdsng7fm4wbhvd9naqzdfsmkvj1sf1d9rikprg1pd58azv6idx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dropbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dropbox"; sha256 = "0qfvdz13ncqn7qaz03lwabzsnk62z6wqzlxlvdqv5xyllcy9m6ln"; name = "org-dropbox"; }; @@ -42794,7 +43005,7 @@ org-ehtml = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }: melpaBuild { pname = "org-ehtml"; - version = "20150506.1958"; + version = "20150507.158"; src = fetchFromGitHub { owner = "eschulte"; repo = "org-ehtml"; @@ -42802,7 +43013,7 @@ sha256 = "0kqvwqmwnwg2h7r38fpjg6qlkcj9v8011df8nmsgs1w1mfdvnjsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ehtml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ehtml"; sha256 = "0n82fbd7aircqg2c9m138qfv8csrv0amhya3xlwswdkqn51vn3gw"; name = "org-ehtml"; }; @@ -42815,7 +43026,7 @@ org-elisp-help = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-elisp-help"; - version = "20130423.1845"; + version = "20130424.45"; src = fetchFromGitHub { owner = "tarsius"; repo = "org-elisp-help"; @@ -42823,7 +43034,7 @@ sha256 = "0va8wm319vvw7w0j102mx656icy3fi4mz3b6bxira6z6xl9b92s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -42836,7 +43047,7 @@ org-eww = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-eww"; - version = "20160521.1758"; + version = "20160521.2358"; src = fetchFromGitHub { owner = "lujun9972"; repo = "org-eww"; @@ -42844,7 +43055,7 @@ sha256 = "0aa7hzn8ss6b7p24qxgwvz8w3kd2lcr98wj315c0c5zhwdrcw2rj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-eww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-eww"; sha256 = "132asshgfpphjckd5vz1vcs18lj55mrqs1l4ggfa89rc6aj8xrca"; name = "org-eww"; }; @@ -42857,14 +43068,14 @@ org-fstree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-fstree"; - version = "20090723.1119"; + version = "20090723.1719"; src = fetchgit { url = "http://repo.or.cz/r/org-fstree.git"; rev = "24e305c6443be9f45198185772eecfddc390a9ce"; sha256 = "0ydsmjjc64r50qilgazmv5gzdv67vszlid67wskc2zii5ss0y01m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-fstree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-fstree"; sha256 = "11ddkfddmsy26mmhgw24757f753ssh056v9vxn89pxp4qypxidfz"; name = "org-fstree"; }; @@ -42877,7 +43088,7 @@ org-gcal = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred }: melpaBuild { pname = "org-gcal"; - version = "20160307.1506"; + version = "20160307.2106"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-gcal.el"; @@ -42885,7 +43096,7 @@ sha256 = "1di32pvkqbd90f4j4d07gdbba6d0fzyhw5lsynz7cl6yrh5y9cpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -42898,7 +43109,7 @@ org-gnome = callPackage ({ alert, fetchFromGitHub, fetchurl, gnome-calendar, lib, melpaBuild, telepathy }: melpaBuild { pname = "org-gnome"; - version = "20150614.1057"; + version = "20150614.1657"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "org-gnome.el"; @@ -42906,7 +43117,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -42919,7 +43130,7 @@ org-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-grep"; - version = "20151202.729"; + version = "20151202.1329"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "org-grep"; @@ -42927,7 +43138,7 @@ sha256 = "10jwqzs431mnwz717qdmcn0v8raklw41sbxbnkb36yrgznk8c09c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-grep"; sha256 = "0kpgizy0zxnlmyh0prwdll62ri2c1l4sb0yrkl7yw17cr4gxmkkz"; name = "org-grep"; }; @@ -42940,7 +43151,7 @@ org-if = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-if"; - version = "20150920.1113"; + version = "20150920.1713"; src = fetchFromGitLab { owner = "elzair"; repo = "org-if"; @@ -42948,7 +43159,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -42961,15 +43172,15 @@ org-iv = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, impatient-mode, lib, melpaBuild, org }: melpaBuild { pname = "org-iv"; - version = "20151213.1014"; + version = "20160602.852"; src = fetchFromGitHub { owner = "kuangdash"; repo = "org-iv"; - rev = "c45e5ab30183f7b1934f636758750ee2f8a05346"; - sha256 = "1n7l70pl9x6mh7dyyiihg4zi1advzlaq2x7vivhas1i2120884i6"; + rev = "719e3ce1ccc71b91327916c218d89ec8509bf235"; + sha256 = "152b2syl9fs7ziw6i7p76h6s6w6idrcxfcj2pcmil8gwd0bqlq2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-iv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-iv"; sha256 = "1akhabp6mdw1h7zms6ahlfvwizl07fwsizwxpdzi4viggfccsfwx"; name = "org-iv"; }; @@ -42982,7 +43193,7 @@ org-jekyll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-jekyll"; - version = "20130508.539"; + version = "20130508.1139"; src = fetchFromGitHub { owner = "juanre"; repo = "org-jekyll"; @@ -42990,7 +43201,7 @@ sha256 = "0whv8nsla93194jjpxrhlr6g230spdxbac8ibmzmyad075vx97z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-jekyll"; sha256 = "0jh3rla8s8prprvhnlg0psdrj7swz7v6vf2xy1m6ff66p9saiv8i"; name = "org-jekyll"; }; @@ -43003,7 +43214,7 @@ org-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-jira"; - version = "20150911.858"; + version = "20150911.1458"; src = fetchFromGitHub { owner = "baohaojun"; repo = "org-jira"; @@ -43011,7 +43222,7 @@ sha256 = "0b5f8qkyzh4jwj3kvbaj3m4dpjbvh1fql7v1nb9bi5n7iwkv3lxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-jira"; sha256 = "11h7kbkf38p2xycw8hvabpaacp72xdgy8c7kzcgjb2a8qlbs5ifm"; name = "org-jira"; }; @@ -43024,7 +43235,7 @@ org-journal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-journal"; - version = "20160427.918"; + version = "20160427.1518"; src = fetchFromGitHub { owner = "bastibe"; repo = "org-journal"; @@ -43032,7 +43243,7 @@ sha256 = "0rsirs9rfgrsi667vjmag0h6m704j35mv9rg5q50p9jsa38xy78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-journal"; sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; @@ -43045,7 +43256,7 @@ org-link-travis = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-link-travis"; - version = "20140405.1927"; + version = "20140406.127"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-link-travis"; @@ -43053,7 +43264,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -43066,7 +43277,7 @@ org-linkany = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "org-linkany"; - version = "20160206.2311"; + version = "20160207.511"; src = fetchFromGitHub { owner = "aki2o"; repo = "org-linkany"; @@ -43074,7 +43285,7 @@ sha256 = "0lqxzmjxs80z3z90f66f3zfrdajiamdcwpvfv5j2w40js9xz4x37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -43087,14 +43298,14 @@ org-mac-iCal = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-mac-iCal"; - version = "20140107.819"; + version = "20140107.1419"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855"; - sha256 = "1m0d0xknl18vg7hnryahll3izhcspp8wzk7j0yrh2piwhbipp0l8"; + rev = "3fd361eb77f8c760ccfc7224d3e79d54823923d0"; + sha256 = "15srx8cxh0qa4g7bx0fkfz49f1fkb4hjryl8ygvl800v98kcy32f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -43107,14 +43318,14 @@ org-mac-link = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-mac-link"; - version = "20160109.1743"; + version = "20160109.2343"; src = fetchgit { url = "git://orgmode.org/org-mode.git"; - rev = "9a7bf6d6496a4415ca33b92941e4dbc2c4676855"; - sha256 = "1m0d0xknl18vg7hnryahll3izhcspp8wzk7j0yrh2piwhbipp0l8"; + rev = "3fd361eb77f8c760ccfc7224d3e79d54823923d0"; + sha256 = "15srx8cxh0qa4g7bx0fkfz49f1fkb4hjryl8ygvl800v98kcy32f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-link"; sha256 = "02rmhrwikppppw8adnzvwj43kp9wsyk60csj5pygg7cd7wah7khw"; name = "org-mac-link"; }; @@ -43127,7 +43338,7 @@ org-mobile-sync = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-mobile-sync"; - version = "20131118.1416"; + version = "20131118.2016"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "org-mobile-sync"; @@ -43135,7 +43346,7 @@ sha256 = "0d22q57mizw70qxbvwi4yz15jg86icqq1z963rliwss3wgpirndh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mobile-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mobile-sync"; sha256 = "1cj0pxcjngiipmyl0w1p0g4wrxgm2y98a8862x1lcbali9lqbrwj"; name = "org-mobile-sync"; }; @@ -43148,7 +43359,7 @@ org-multiple-keymap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-multiple-keymap"; - version = "20150328.2106"; + version = "20150329.306"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-multiple-keymap.el"; @@ -43156,7 +43367,7 @@ sha256 = "0zbpzm9lni6z180s7n52x8s5by5zkq2nlhx82l2h9i7in9y4r6c3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -43169,7 +43380,7 @@ org-octopress = callPackage ({ ctable, fetchFromGitHub, fetchurl, lib, melpaBuild, org, orglue }: melpaBuild { pname = "org-octopress"; - version = "20150826.716"; + version = "20150826.1316"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "org-octopress"; @@ -43177,7 +43388,7 @@ sha256 = "132jv1zvp3yp4pa4ysl0n3a81d39cdi3nqfziz1ha1pl10qbn6wr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-octopress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-octopress"; sha256 = "0r6ms9j4xxsrik4206g7gz4wz41wr4ylpal6yfqs4hhz88yhxrhw"; name = "org-octopress"; }; @@ -43190,7 +43401,7 @@ org-outlook = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-outlook"; - version = "20150914.847"; + version = "20150914.1447"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-outlook.el"; @@ -43198,7 +43409,7 @@ sha256 = "10dddbs9jppqqzwwv5y6pj2szdkw3223gvzzd4pzn9biv5d9kzsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -43211,7 +43422,7 @@ org-page = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, git, ht, htmlize, lib, melpaBuild, mustache, org, simple-httpd }: melpaBuild { pname = "org-page"; - version = "20160413.629"; + version = "20160413.1229"; src = fetchFromGitHub { owner = "kelvinh"; repo = "org-page"; @@ -43219,7 +43430,7 @@ sha256 = "1w853v4fsrvgczl2rvmy3dv9shyhv8f4bc0gqnk4r5ihmgf46a1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -43241,7 +43452,7 @@ org-pandoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-pandoc"; - version = "20130729.2150"; + version = "20130730.350"; src = fetchFromGitHub { owner = "robtillotson"; repo = "org-pandoc"; @@ -43249,7 +43460,7 @@ sha256 = "022qqas919aziq4scs5j1wdbvd0qyw8kkirn2vzfb5k2fjl8z7iq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pandoc"; sha256 = "1r6j6rkwfv7fv7kp73gh1bdz3y5ffwk5f2wyv4mpxs885cfbsm8v"; name = "org-pandoc"; }; @@ -43262,14 +43473,14 @@ org-password-manager = callPackage ({ fetchgit, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "org-password-manager"; - version = "20160430.2151"; + version = "20160501.351"; src = fetchgit { url = "https://git.leafac.com/leafac/org-password-manager"; rev = "5dffcd5f7d7f1852fdd31a193bea5c70ea130082"; sha256 = "023xsyvppq771yvxd9kqhn9lffhr83sfb0h9g405ayfjys94m2xd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-password-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-password-manager"; sha256 = "021yhp417b9c8cjh8ynmz2fqyplpr2qvc0djxf74kd8lhn4pl397"; name = "org-password-manager"; }; @@ -43282,7 +43493,7 @@ org-pdfview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org, pdf-tools }: melpaBuild { pname = "org-pdfview"; - version = "20160125.1554"; + version = "20160125.2154"; src = fetchFromGitHub { owner = "markus1189"; repo = "org-pdfview"; @@ -43290,7 +43501,7 @@ sha256 = "16z44kdsg8w1p27fsi72k8wqr35xbb0777rq7h7swv6j2jn1b6hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -43303,7 +43514,7 @@ org-pomodoro = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-pomodoro"; - version = "20151217.853"; + version = "20151217.1453"; src = fetchFromGitHub { owner = "lolownia"; repo = "org-pomodoro"; @@ -43311,7 +43522,7 @@ sha256 = "015idpk66835jdg1sbvpksyr07xk4vn17z8cng2qw87fss688ihb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -43324,7 +43535,7 @@ org-present = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-present"; - version = "20141109.2056"; + version = "20141110.256"; src = fetchFromGitHub { owner = "rlister"; repo = "org-present"; @@ -43332,7 +43543,7 @@ sha256 = "1n9magg7r7xnw16d43fh6nzjf42s70l3mxq6ph727zi4lz5ngmfm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-present"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-present"; sha256 = "09h0cjqjwhqychyrdv1hmiyak677vgf1b94392sdsq3ns70zyjk7"; name = "org-present"; }; @@ -43345,7 +43556,7 @@ org-projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "org-projectile"; - version = "20160520.1814"; + version = "20160521.14"; src = fetchFromGitHub { owner = "IvanMalison"; repo = "org-projectile"; @@ -43353,7 +43564,7 @@ sha256 = "03f82pnaifx79v05irzdn5vhhzsv8b068dawva9w5i7x8na01k6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -43366,7 +43577,7 @@ org-protocol-jekyll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-protocol-jekyll"; - version = "20151119.1138"; + version = "20151119.1738"; src = fetchFromGitHub { owner = "vonavi"; repo = "org-protocol-jekyll"; @@ -43374,7 +43585,7 @@ sha256 = "1jzp65sf1am6pz533kg1z666h4jlynvjyx1mf24gyksiiwdhypsy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -43387,7 +43598,7 @@ org-random-todo = callPackage ({ alert, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-random-todo"; - version = "20160208.726"; + version = "20160208.1326"; src = fetchFromGitHub { owner = "unhammer"; repo = "org-random-todo"; @@ -43395,7 +43606,7 @@ sha256 = "06apaa8pjrw14g2gyjpxjd6bjv1w0md4vl5jx78krcyr0bcc08mx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; @@ -43408,7 +43619,7 @@ org-readme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, header2, http-post-simple, lib, lib-requires, melpaBuild, yaoddmuse }: melpaBuild { pname = "org-readme"; - version = "20151204.717"; + version = "20151204.1317"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-readme"; @@ -43416,7 +43627,7 @@ sha256 = "1q3s12s0ll7jhrnd3adkaxv7ff69ppprv0pyl5f6gy8y51y63k8d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -43435,7 +43646,7 @@ org-redmine = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-redmine"; - version = "20160205.644"; + version = "20160205.1244"; src = fetchFromGitHub { owner = "gongo"; repo = "org-redmine"; @@ -43443,7 +43654,7 @@ sha256 = "0q26knckq213r885i5947970qagjmb7ybs4ag0ignls4dzbqlbmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-redmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-redmine"; sha256 = "0y2pm18nnyzm9wjc0j15v46nf3xi7a0wvspfzi360qv08i54skqv"; name = "org-redmine"; }; @@ -43456,15 +43667,15 @@ org-ref = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, hydra, key-chord, lib, melpaBuild, parsebib, s }: melpaBuild { pname = "org-ref"; - version = "20160519.837"; + version = "20160527.2031"; src = fetchFromGitHub { owner = "jkitchin"; repo = "org-ref"; - rev = "2452c7c5084a767b8ab085b77e11d4687b005158"; - sha256 = "0ids7gc4qdnssvv7fnvnpf4a0blid2g5kx5wsgc74hv9raz25g8w"; + rev = "839606e8d6248a4c719828a703a32be3edcdfb64"; + sha256 = "0psyrdi1kd1gykvcf962fzb3240s31zg9rh4yn5kvazhk2dc1qqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; @@ -43477,7 +43688,7 @@ org-repo-todo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-repo-todo"; - version = "20160307.1329"; + version = "20160307.1929"; src = fetchFromGitHub { owner = "waymondo"; repo = "org-repo-todo"; @@ -43485,7 +43696,7 @@ sha256 = "0as82hf81czks9fcmhy9wjwl8d4mbylrm13c02y8abp0am41r28f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -43498,7 +43709,7 @@ org-rtm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "org-rtm"; - version = "20160214.736"; + version = "20160214.1336"; src = fetchFromGitHub { owner = "pmiddend"; repo = "org-rtm"; @@ -43506,7 +43717,7 @@ sha256 = "1hn8y9933x5x6lxpijcqx97p3hln69ahabqdsl2bmzda3mxm4bn2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-rtm"; sha256 = "1paiy5zmdlxb3a1cjk9d30mqbl60bkairw6xkix2qw36p07jwlj5"; name = "org-rtm"; }; @@ -43519,7 +43730,7 @@ org-sync = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-sync"; - version = "20150817.1054"; + version = "20150817.1654"; src = fetchFromGitHub { owner = "arbox"; repo = "org-sync"; @@ -43527,7 +43738,7 @@ sha256 = "14zn0b8qs740ls1069kg2lwm0b9yc4qv525fg8km0hgi0yp8qw7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -43540,7 +43751,7 @@ org-table-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-table-comment"; - version = "20120209.1351"; + version = "20120209.1951"; src = fetchFromGitHub { owner = "mattfidler"; repo = "org-table-comment.el"; @@ -43548,7 +43759,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -43561,7 +43772,7 @@ org-tfl = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "org-tfl"; - version = "20160407.1740"; + version = "20160407.2340"; src = fetchFromGitHub { owner = "storax"; repo = "org-tfl"; @@ -43569,7 +43780,7 @@ sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -43582,7 +43793,7 @@ org-themis = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-themis"; - version = "20160121.2304"; + version = "20160122.504"; src = fetchFromGitHub { owner = "zellio"; repo = "org-themis"; @@ -43590,7 +43801,7 @@ sha256 = "1apd5yyr12skagma7xpzrh22rhplmhhv0pma4zf5b0i6nkxy06j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -43603,7 +43814,7 @@ org-time-budgets = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-time-budgets"; - version = "20151111.301"; + version = "20151111.901"; src = fetchFromGitHub { owner = "leoc"; repo = "org-time-budgets"; @@ -43611,7 +43822,7 @@ sha256 = "04adkz950vvwyzy3da468nnqsknpr5kw5369w2yqhnph16cwwfxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -43624,7 +43835,7 @@ org-toodledo = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "org-toodledo"; - version = "20150301.613"; + version = "20150301.1213"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-toodledo"; @@ -43632,7 +43843,7 @@ sha256 = "014337wimvzy0rxh2p2c647ly215zcyhgym2hcljkdriv15cafna"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -43645,7 +43856,7 @@ org-tracktable = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tracktable"; - version = "20160420.945"; + version = "20160420.1545"; src = fetchFromGitHub { owner = "tty-tourist"; repo = "org-tracktable"; @@ -43653,7 +43864,7 @@ sha256 = "0jh9i41zqs9rvghfjhp5nl2ycav1pj1yv2hsr6skwqdpkwggvvmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -43666,7 +43877,7 @@ org-transform-tree-table = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "org-transform-tree-table"; - version = "20150110.933"; + version = "20150110.1533"; src = fetchFromGitHub { owner = "jplindstrom"; repo = "emacs-org-transform-tree-table"; @@ -43674,7 +43885,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -43687,7 +43898,7 @@ org-tree-slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-tree-slide"; - version = "20160514.225"; + version = "20160514.825"; src = fetchFromGitHub { owner = "takaxp"; repo = "org-tree-slide"; @@ -43695,7 +43906,7 @@ sha256 = "0b97jqskn5c2cbah3qj9bi5was31sijrp01dca36g5y53lpz7n79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -43708,15 +43919,15 @@ org-trello = callPackage ({ dash, dash-functional, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred, s }: melpaBuild { pname = "org-trello"; - version = "20160301.1241"; + version = "20160604.1125"; src = fetchFromGitHub { owner = "org-trello"; repo = "org-trello"; - rev = "321a74585bceafdd82f96433e014f13b4f3fa674"; - sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; + rev = "49b65ea4e4dcf3c4321fd19468822591cc46122d"; + sha256 = "1149ikd134yl6jcxswnb65xfg7axyj9kjckimnvgl9hp4q6b1vb0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -43736,7 +43947,7 @@ org-vcard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-vcard"; - version = "20151214.122"; + version = "20151214.722"; src = fetchFromGitHub { owner = "flexibeast"; repo = "org-vcard"; @@ -43744,7 +43955,7 @@ sha256 = "1m2xdp6wfg11wi7s4i675c3m5qancm8bpizcf380r6vmkcdfkrdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -43757,7 +43968,7 @@ org-wc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "org-wc"; - version = "20160204.2015"; + version = "20160205.215"; src = fetchFromGitHub { owner = "dato"; repo = "org-wc"; @@ -43765,7 +43976,7 @@ sha256 = "08yww77697kck1ld9xcrcx8amqdh28rdc4fsavp5d3my78qk7rac"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-wc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-wc"; sha256 = "1sa9fcy0bnn06swwq2gfrgmppd6dsbmw2mq0v73mizg3l6has1zb"; name = "org-wc"; }; @@ -43778,7 +43989,7 @@ org-webpage = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, ht, htmlize, lib, melpaBuild, mustache, org, web-server }: melpaBuild { pname = "org-webpage"; - version = "20160307.326"; + version = "20160307.926"; src = fetchFromGitHub { owner = "tumashu"; repo = "org-webpage"; @@ -43786,7 +43997,7 @@ sha256 = "18idnl2hx1s5hv1xm5akd35favnjnj2pxw6h00956lrapg01d1fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-webpage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-webpage"; sha256 = "0vwv8cv38gx8rnfskbmnaf8y8sffjqy1408655bwhjz6dp69qmah"; name = "org-webpage"; }; @@ -43799,7 +44010,7 @@ org-wunderlist = callPackage ({ alert, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, request-deferred, s }: melpaBuild { pname = "org-wunderlist"; - version = "20150817.2213"; + version = "20150818.413"; src = fetchFromGitHub { owner = "myuhe"; repo = "org-wunderlist.el"; @@ -43807,7 +44018,7 @@ sha256 = "1cagmwl3acanwc2nky7m61cawi0i0x703sjc6zlw968lacyw86wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-wunderlist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-wunderlist"; sha256 = "08zg3wgr80rp89c53ffqzz22ws9bp62a1m74xvxa74x6nq9i4xl0"; name = "org-wunderlist"; }; @@ -43820,7 +44031,7 @@ org2blog = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, metaweblog, org, xml-rpc }: melpaBuild { pname = "org2blog"; - version = "20160502.2121"; + version = "20160503.321"; src = fetchFromGitHub { owner = "punchagan"; repo = "org2blog"; @@ -43828,7 +44039,7 @@ sha256 = "1bqiq27ln1pl40b9dms05nla4kf72s80g9ilvrgqflxgl36gxws7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -43841,7 +44052,7 @@ org2issue = callPackage ({ emacs, fetchFromGitHub, fetchurl, gh, lib, melpaBuild, org, ox-gfm, s }: melpaBuild { pname = "org2issue"; - version = "20160426.2118"; + version = "20160427.318"; src = fetchFromGitHub { owner = "lujun9972"; repo = "org2issue"; @@ -43849,7 +44060,7 @@ sha256 = "1lvwkvzqgy9nlz7zmqfl9j8cairjfv3vknpzcqp6rzp6hkq04zk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2issue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2issue"; sha256 = "1qd5l9ga26smgp1gkc8r9ja2n974kq1jf2z876s5v0489ipa59bz"; name = "org2issue"; }; @@ -43862,7 +44073,7 @@ org2jekyll = callPackage ({ dash-functional, deferred, fetchFromGitHub, fetchurl, kv, lib, melpaBuild, s }: melpaBuild { pname = "org2jekyll"; - version = "20160519.1304"; + version = "20160519.1904"; src = fetchFromGitHub { owner = "ardumont"; repo = "org2jekyll"; @@ -43870,7 +44081,7 @@ sha256 = "1gdv1dwmwhmpcpcvf8fmsjg3mli3l27inlql13m98h7vpv7rzqvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -43883,15 +44094,15 @@ organic-green-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "organic-green-theme"; - version = "20160512.552"; + version = "20160531.1218"; src = fetchFromGitHub { owner = "kostafey"; repo = "organic-green-theme"; - rev = "3ec40de7e5cfd9e33864a5714e452c8b37268361"; - sha256 = "18lsr0wf5wbgj7xws4wk10lyczwh74lifhp80f0sj50y9rv68crv"; + rev = "a3cb1839044749fccc6c7c797594db6792f507c6"; + sha256 = "1fd4qnfga4rjzdnjc3h91x3wbab1d2gd3dm3vg1xwy3c6wqlyhgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/organic-green-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/organic-green-theme"; sha256 = "1fdj3dpcdqx0db5q8dlxag6pr2qn4yiz1hmg3c7dkmh51n85ssw2"; name = "organic-green-theme"; }; @@ -43904,7 +44115,7 @@ orgbox = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orgbox"; - version = "20140528.2126"; + version = "20140529.326"; src = fetchFromGitHub { owner = "yasuhito"; repo = "orgbox"; @@ -43912,7 +44123,7 @@ sha256 = "0hwmr67nky9xp5xlrkp54nw6b72d29lmna28dnbgqs2i5rccbk55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -43925,7 +44136,7 @@ orgit = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit, melpaBuild, org }: melpaBuild { pname = "orgit"; - version = "20160119.1724"; + version = "20160119.2324"; src = fetchFromGitHub { owner = "magit"; repo = "orgit"; @@ -43933,7 +44144,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -43946,7 +44157,7 @@ orglink = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "orglink"; - version = "20160521.1030"; + version = "20160521.1630"; src = fetchFromGitHub { owner = "tarsius"; repo = "orglink"; @@ -43954,7 +44165,7 @@ sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -43967,7 +44178,7 @@ orglue = callPackage ({ epic, fetchFromGitHub, fetchurl, lib, melpaBuild, org, org-mac-link }: melpaBuild { pname = "orglue"; - version = "20150430.813"; + version = "20150430.1413"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "orglue"; @@ -43975,7 +44186,7 @@ sha256 = "1w0hadpslxcjn29yxl9i37sja4qf4kp7ffjpwij5hs73r518c2z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglue"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglue"; sha256 = "14g4q2k9zjzipzrp5mg72s40b0rwiaixgq3rvi15wh4vvcw5xajn"; name = "orglue"; }; @@ -43988,7 +44199,7 @@ orgtbl-aggregate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-aggregate"; - version = "20160421.1026"; + version = "20160421.1626"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgaggregate"; @@ -43996,7 +44207,7 @@ sha256 = "0zh8n8jb479ilmz88kj0q5wx8a9zqkfqds0rr8jbk2rqmj6j72v3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-aggregate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-aggregate"; sha256 = "0gnyjwn6jshs8bzdssm2xppg2s9p2x3rrhp523q39aydskc6ggc9"; name = "orgtbl-aggregate"; }; @@ -44009,7 +44220,7 @@ orgtbl-ascii-plot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-ascii-plot"; - version = "20151215.1651"; + version = "20151215.2251"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgtblasciiplot"; @@ -44017,7 +44228,7 @@ sha256 = "1vbnp37xz0nrpyi0hah345928zsb1xw915mdb0wybq1fzn93mp1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-ascii-plot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-ascii-plot"; sha256 = "1ssjbdprbn34nsfx1xjc382l2195rbh8mybpn31d4kcjx6fqf78h"; name = "orgtbl-ascii-plot"; }; @@ -44030,7 +44241,7 @@ orgtbl-join = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-join"; - version = "20150121.1746"; + version = "20150121.2346"; src = fetchFromGitHub { owner = "tbanel"; repo = "orgtbljoin"; @@ -44038,7 +44249,7 @@ sha256 = "06nc82wiha11i79izqil53dkd95fl55nb5m739gyyzvx3sksb0dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-join"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-join"; sha256 = "1kq2h0lb521z8q2xb9bsi37xzzdsa0hw4mm3qkzidi5j9fi3apf1"; name = "orgtbl-join"; }; @@ -44051,7 +44262,7 @@ orgtbl-show-header = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "orgtbl-show-header"; - version = "20141023.437"; + version = "20141023.1037"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "orgtbl-show-header"; @@ -44059,7 +44270,7 @@ sha256 = "161bsmgrbdhb73k36gqb5b96mf0y0sl8q9sjg81vx86bs9sbkddw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-show-header"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-show-header"; sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; name = "orgtbl-show-header"; }; @@ -44072,7 +44283,7 @@ origami = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "origami"; - version = "20160313.1713"; + version = "20160313.2213"; src = fetchFromGitHub { owner = "gregsexton"; repo = "origami.el"; @@ -44080,7 +44291,7 @@ sha256 = "18f5b6902zqayhhcchhsvszw1kryvhkhpc5vv0s187dkj38agsv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/origami"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/origami"; sha256 = "0rkb55zcvsgxzp190vrnbzdfbcjd8zi6vhbhwpqxi0qmyq6a08pr"; name = "origami"; }; @@ -44093,7 +44304,7 @@ osx-browse = callPackage ({ browse-url-dwim, fetchFromGitHub, fetchurl, lib, melpaBuild, string-utils }: melpaBuild { pname = "osx-browse"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "osx-browse"; @@ -44101,7 +44312,7 @@ sha256 = "1iybrhp607a5rb3ynlaf8w2x9wdgdbril702z44dgcg3wxih2zy1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -44114,7 +44325,7 @@ osx-clipboard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-clipboard"; - version = "20141012.317"; + version = "20141012.917"; src = fetchFromGitHub { owner = "joddie"; repo = "osx-clipboard-mode"; @@ -44122,7 +44333,7 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; @@ -44135,7 +44346,7 @@ osx-dictionary = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-dictionary"; - version = "20160215.1026"; + version = "20160215.1626"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "osx-dictionary.el"; @@ -44143,7 +44354,7 @@ sha256 = "04fh4i8mydmvq58hd60lf0dglpcjqgzpwk93wqss72kpifwh68vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -44156,7 +44367,7 @@ osx-lib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-lib"; - version = "20160402.236"; + version = "20160402.836"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "osx-lib"; @@ -44164,7 +44375,7 @@ sha256 = "1wbmqxx1qzjc5kxzkwx7c2wvq71iic1f5f29lj6ckpjn743dnb0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-lib"; sha256 = "12wvki8jhzqsanxv5yqzjmfx6ifwz9ab9zh6r8nss86bk8864ix4"; name = "osx-lib"; }; @@ -44177,7 +44388,7 @@ osx-location = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-location"; - version = "20150613.517"; + version = "20150613.1117"; src = fetchFromGitHub { owner = "purcell"; repo = "osx-location"; @@ -44185,7 +44396,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -44198,7 +44409,7 @@ osx-org-clock-menubar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-org-clock-menubar"; - version = "20150205.1611"; + version = "20150205.2211"; src = fetchFromGitHub { owner = "jordonbiondo"; repo = "osx-org-clock-menubar"; @@ -44206,7 +44417,7 @@ sha256 = "1rgykby1ysbapq53lnk9yy04r9q4qirnzs2abgvz7g2qjq5fyzag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-org-clock-menubar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-org-clock-menubar"; sha256 = "1y5qxslxl0d93f387nyj8zngz5nh1p4rzdfx0lnbvya6shfaxaf6"; name = "osx-org-clock-menubar"; }; @@ -44219,7 +44430,7 @@ osx-plist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-plist"; - version = "20101130.748"; + version = "20101130.1348"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "osx-plist"; @@ -44227,7 +44438,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -44240,7 +44451,7 @@ osx-pseudo-daemon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-pseudo-daemon"; - version = "20131026.2030"; + version = "20131027.230"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "osx-pseudo-daemon"; @@ -44248,7 +44459,7 @@ sha256 = "1j601gzizxjsvkw6bvih4a49iq05yfkw0ni77xbc5klc7x7s80hk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-pseudo-daemon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-pseudo-daemon"; sha256 = "150fxj2phj5axnh5i8ws5fv2qzzmpyisch452wgxb604p56j7vy8"; name = "osx-pseudo-daemon"; }; @@ -44261,7 +44472,7 @@ osx-trash = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "osx-trash"; - version = "20160520.900"; + version = "20160520.1500"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "osx-trash.el"; @@ -44269,7 +44480,7 @@ sha256 = "0f4md49175iyrgzv4pijf7qbxyddcm2yscrrlh91pg410la7fysk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -44282,7 +44493,7 @@ otama = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "otama"; - version = "20160404.632"; + version = "20160404.1232"; src = fetchFromGitHub { owner = "yoshinari-nomura"; repo = "otama"; @@ -44290,7 +44501,7 @@ sha256 = "1jzyfvc25ls0l4kpxg6857ccynl1pzgxfif7bppz2nfmf99z4534"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/otama"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/otama"; sha256 = "04ffyscldb2sn2n26ixrnc07ybvl7iclv2hi1kmhr5hdgxwpyjq9"; name = "otama"; }; @@ -44303,7 +44514,7 @@ outline-magic = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outline-magic"; - version = "20150209.1726"; + version = "20150209.2326"; src = fetchFromGitHub { owner = "tj64"; repo = "outline-magic"; @@ -44311,7 +44522,7 @@ sha256 = "116cwlhn7s47rhivz6113lh8lvaz3bjb3ynjlbx9hyf7gq3nfnxn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outline-magic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outline-magic"; sha256 = "085yayzph3y7fh6pd5sdjdkhdcvwfzcyqd6y3xlbz7wni5ac6b5f"; name = "outline-magic"; }; @@ -44324,7 +44535,7 @@ outlined-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outlined-elisp-mode"; - version = "20131108.627"; + version = "20131108.1227"; src = fetchFromGitHub { owner = "zk-phi"; repo = "outlined-elisp-mode"; @@ -44332,7 +44543,7 @@ sha256 = "0d9hfr4kb6rkhwacdn70bkfchgam26gj92zfyaqw77a2sgwcmwwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outlined-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outlined-elisp-mode"; sha256 = "165sivmv5h4nvh08ampq95x6b0bkzxgrdjbxjxlq6rv00vaidn7v"; name = "outlined-elisp-mode"; }; @@ -44345,7 +44556,7 @@ outorg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "outorg"; - version = "20160327.432"; + version = "20160327.1032"; src = fetchFromGitHub { owner = "tj64"; repo = "outorg"; @@ -44353,7 +44564,7 @@ sha256 = "0szvynvw16vr7br95pssqkil0xnfdh46x8lgan4z9v6impdav0nf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -44366,7 +44577,7 @@ outshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, outorg }: melpaBuild { pname = "outshine"; - version = "20160416.1146"; + version = "20160416.1746"; src = fetchFromGitHub { owner = "tj64"; repo = "outshine"; @@ -44374,7 +44585,7 @@ sha256 = "1smfdfw0swvfbqlxi7nkrgbmfqhs0x47ky6xhgf38la1s6ivh29n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outshine"; sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; @@ -44387,7 +44598,7 @@ ov = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ov"; - version = "20150312.128"; + version = "20150312.628"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "ov.el"; @@ -44395,7 +44606,7 @@ sha256 = "1rk5pzm5wmdq68d99hhhbq8pq37bnph0dip5j2jnfj6zsw70whr2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -44408,7 +44619,7 @@ overseer = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "overseer"; - version = "20160518.243"; + version = "20160518.843"; src = fetchFromGitHub { owner = "tonini"; repo = "overseer.el"; @@ -44416,7 +44627,7 @@ sha256 = "0pzrsag2hxg4kys57w2ragk6kfrpilaamwrzw0czi53r6vmddfdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -44429,7 +44640,7 @@ owdriver = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, smartrep, yaxception }: melpaBuild { pname = "owdriver"; - version = "20141011.1038"; + version = "20141011.1638"; src = fetchFromGitHub { owner = "aki2o"; repo = "owdriver"; @@ -44437,7 +44648,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -44450,7 +44661,7 @@ ox-asciidoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-asciidoc"; - version = "20160120.823"; + version = "20160120.1423"; src = fetchFromGitHub { owner = "yashi"; repo = "org-asciidoc"; @@ -44458,7 +44669,7 @@ sha256 = "03ivnvqxc5xdcik4skk32fhr686yv2y5mj8w7v27dhyc0vdpfhvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-asciidoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-asciidoc"; sha256 = "07b549dqyh1gk226d7zbls1mw6q4mas7kbfwkansmyykax0r2zyr"; name = "ox-asciidoc"; }; @@ -44471,7 +44682,7 @@ ox-bibtex-chinese = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-bibtex-chinese"; - version = "20160510.806"; + version = "20160510.1406"; src = fetchFromGitHub { owner = "tumashu"; repo = "ox-bibtex-chinese"; @@ -44479,7 +44690,7 @@ sha256 = "1d463d7mdlr65yrq7x16nk9124fw1iphf5g238mlh4abbl6kz241"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-bibtex-chinese"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-bibtex-chinese"; sha256 = "0h02jlzk97rd3jmdni5mggbkij61d7zn1n1ibz1jg6zb0000cj7a"; name = "ox-bibtex-chinese"; }; @@ -44492,7 +44703,7 @@ ox-gfm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-gfm"; - version = "20160520.1742"; + version = "20160520.2342"; src = fetchFromGitHub { owner = "larstvei"; repo = "ox-gfm"; @@ -44500,7 +44711,7 @@ sha256 = "1fr5kp9cya9mzrl18flp117dy0qlp6f684qvmyilzaqm6q8w0nia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-gfm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-gfm"; sha256 = "065ngmzfd3g2h8n903hc4d363hz4z5rrdgizh2xpz03kf3plca6q"; name = "ox-gfm"; }; @@ -44513,7 +44724,7 @@ ox-html5slide = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-html5slide"; - version = "20131228.106"; + version = "20131228.706"; src = fetchFromGitHub { owner = "coldnew"; repo = "org-html5slide"; @@ -44521,7 +44732,7 @@ sha256 = "19h3w3fcas60jv02v7hxjmh05804sb7bif70jssq3qwisj0j09xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-html5slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-html5slide"; sha256 = "0nqk6chg0ky98ap2higa74786prj7dbwx2a3l67m0llmdajw76qn"; name = "ox-html5slide"; }; @@ -44534,7 +44745,7 @@ ox-impress-js = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-impress-js"; - version = "20150412.1316"; + version = "20150412.1916"; src = fetchFromGitHub { owner = "kinjo"; repo = "org-impress-js.el"; @@ -44542,7 +44753,7 @@ sha256 = "1kf2si2lyy0xc971bx5zd2j9mnz1smc9s8l0dwc6iksh2v9q8cy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-impress-js"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-impress-js"; sha256 = "0p0cc51lmxgl0xv951ybdg5n8gbzv8qf0chfgigijizzjypxc21l"; name = "ox-impress-js"; }; @@ -44555,7 +44766,7 @@ ox-ioslide = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, makey, melpaBuild, org }: melpaBuild { pname = "ox-ioslide"; - version = "20160120.1105"; + version = "20160120.1705"; src = fetchFromGitHub { owner = "coldnew"; repo = "org-ioslide"; @@ -44563,7 +44774,7 @@ sha256 = "0p03xzldz5v8lx3ip2pgll0da00ldfxmhr6r3jahwp6692kxpr6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -44576,7 +44787,7 @@ ox-jira = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-jira"; - version = "20160426.853"; + version = "20160426.1453"; src = fetchFromGitHub { owner = "stig"; repo = "ox-jira.el"; @@ -44584,7 +44795,7 @@ sha256 = "0csl9fcfwnpl6x3ld7xrlvgz6gwmgcd15a4zdc570w8vp26ra5k9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-jira"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-jira"; sha256 = "0bm7i1ambd71xmy1y9jcdh52irgcsziwwb9d3y3rq0pnsqv5cpvp"; name = "ox-jira"; }; @@ -44597,7 +44808,7 @@ ox-latex-chinese = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-latex-chinese"; - version = "20160513.2028"; + version = "20160514.228"; src = fetchFromGitHub { owner = "tumashu"; repo = "ox-latex-chinese"; @@ -44605,7 +44816,7 @@ sha256 = "1g42aq4iaq40aivncxw663hnsb2768lzc08dmsmk4lq5q9kzcjhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-latex-chinese"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-latex-chinese"; sha256 = "138yprik36jxhm6dnj42gaynqd84w7ya3s0kbnxhbizrfl4n4ck7"; name = "ox-latex-chinese"; }; @@ -44618,7 +44829,7 @@ ox-mediawiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "ox-mediawiki"; - version = "20150923.1202"; + version = "20150923.1802"; src = fetchFromGitHub { owner = "tomalexander"; repo = "orgmode-mediawiki"; @@ -44626,7 +44837,7 @@ sha256 = "0c2m02g6csg5fqizj3zqcm88q7w17kgvgi7swcx4fzz6rixnpsji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-mediawiki"; sha256 = "0lijj2n4saw0xd3jaghbvx9v6a4ldl5gd8wy7s7hfcm30wb75cdb"; name = "ox-mediawiki"; }; @@ -44639,7 +44850,7 @@ ox-nikola = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org, ox-rst }: melpaBuild { pname = "ox-nikola"; - version = "20151114.616"; + version = "20151114.1216"; src = fetchFromGitHub { owner = "masayuko"; repo = "ox-nikola"; @@ -44647,7 +44858,7 @@ sha256 = "0cc14p6c3d4djfmrkac0abb2jq128vlmayv2a8cyvnyjffyvjbk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-nikola"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-nikola"; sha256 = "1amplnazs9igfd382djq23d8j7r0knr0hwlpasd01aypc25c82a4"; name = "ox-nikola"; }; @@ -44660,7 +44871,7 @@ ox-pandoc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, org }: melpaBuild { pname = "ox-pandoc"; - version = "20151222.1853"; + version = "20151223.53"; src = fetchFromGitHub { owner = "kawabata"; repo = "ox-pandoc"; @@ -44668,7 +44879,7 @@ sha256 = "0bawigwc6v5420642xlkyxdd0i82gicx69wqlnjf6lvhfvs990is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -44681,7 +44892,7 @@ ox-pukiwiki = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-pukiwiki"; - version = "20150124.1216"; + version = "20150124.1816"; src = fetchFromGitHub { owner = "yashi"; repo = "org-pukiwiki"; @@ -44689,7 +44900,7 @@ sha256 = "0adj6gm39qw4ivb7csfh21qqqipcnw1sgm1xdqvrk86kbs9k1b2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pukiwiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pukiwiki"; sha256 = "10sfbri5hv5hyx9jc1bzlk4qmzfmpfgfy8wkjkpv7lv2x0axqd8a"; name = "ox-pukiwiki"; }; @@ -44702,7 +44913,7 @@ ox-reveal = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-reveal"; - version = "20160504.2308"; + version = "20160505.508"; src = fetchFromGitHub { owner = "yjwen"; repo = "org-reveal"; @@ -44710,7 +44921,7 @@ sha256 = "0pmshd58945h843c5hgzcz169kfzrwmkdzh7rv1cci783z3cxxdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-reveal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-reveal"; sha256 = "092swxkkisvj2y18ynal8dn7wcfi7h4y6n0dlzqq28bfflarbwik"; name = "ox-reveal"; }; @@ -44723,7 +44934,7 @@ ox-rst = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-rst"; - version = "20151115.243"; + version = "20151115.843"; src = fetchFromGitHub { owner = "masayuko"; repo = "ox-rst"; @@ -44731,7 +44942,7 @@ sha256 = "1js4n8iwimc86fp2adzhbhy4ixss1yqngjd8gq7pxgpgmnhd66x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-rst"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-rst"; sha256 = "1vyj6frrl7328n2x7vc3qwv3ssdhi8bp6ja5h2q4bqalc6bl1pq0"; name = "ox-rst"; }; @@ -44744,7 +44955,7 @@ ox-textile = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-textile"; - version = "20151114.2325"; + version = "20151115.525"; src = fetchFromGitHub { owner = "yashi"; repo = "org-textile"; @@ -44752,7 +44963,7 @@ sha256 = "1r9c4s9f7cvxxzf9h07rg75bil0295zq1inh5i4r6za5jabkr4dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-textile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-textile"; sha256 = "01kri7vh16xhy8x5qd6s5z08xr0q964rk6xrligdb3i6x78wfvi4"; name = "ox-textile"; }; @@ -44765,7 +44976,7 @@ ox-tiddly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-tiddly"; - version = "20151206.540"; + version = "20151206.1140"; src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; @@ -44773,7 +44984,7 @@ sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-tiddly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-tiddly"; sha256 = "196i8lzxv2smpj5yhmiqwazn4pvc14yqyzasrgimhv3vi2xnxlfb"; name = "ox-tiddly"; }; @@ -44786,7 +44997,7 @@ ox-trac = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-trac"; - version = "20151102.1255"; + version = "20151102.1855"; src = fetchFromGitHub { owner = "JalapenoGremlin"; repo = "ox-trac"; @@ -44794,7 +45005,7 @@ sha256 = "0w6963jvz1sk732nh18735dxivd6nl59jd4m26ps6l4wqhqby0db"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-trac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-trac"; sha256 = "0f8b3i83vzxzfa91p4ahlqz6njql18xy5nk265sjxpy9zr898rsa"; name = "ox-trac"; }; @@ -44807,7 +45018,7 @@ ox-twbs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ox-twbs"; - version = "20160307.158"; + version = "20160307.758"; src = fetchFromGitHub { owner = "marsmining"; repo = "ox-twbs"; @@ -44815,7 +45026,7 @@ sha256 = "0yrac13xiyfxipy5qyq56jg7151wjs3xv4gpsarx4hkrxi96apbi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -44828,7 +45039,7 @@ ox-twiki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "ox-twiki"; - version = "20160306.1215"; + version = "20160306.1815"; src = fetchFromGitHub { owner = "dfeich"; repo = "org8-wikiexporters"; @@ -44836,7 +45047,7 @@ sha256 = "05rlfykwvfir177bvqa7nvwmzn1amhpaizfmyjzi73d78h062vcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twiki"; sha256 = "1p1k0yg5fxcjgwpq2ix9ckh2kn69m7d5rnz76h14hw9p72cb54r0"; name = "ox-twiki"; }; @@ -44849,7 +45060,7 @@ p4 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "p4"; - version = "20150721.1537"; + version = "20150721.2137"; src = fetchFromGitHub { owner = "gareth-rees"; repo = "p4.el"; @@ -44857,7 +45068,7 @@ sha256 = "12jsnfppif4l548wymvakx0f2zlm63xs6kfrb49hicmk668cq4ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/p4"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/p4"; sha256 = "0215li17gn35wmvd84gnp4hkwa2jd81wz4frb1cba2b5j33rlprc"; name = "p4"; }; @@ -44870,7 +45081,7 @@ pabbrev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pabbrev"; - version = "20160320.1701"; + version = "20160320.2201"; src = fetchFromGitHub { owner = "phillord"; repo = "pabbrev"; @@ -44878,7 +45089,7 @@ sha256 = "09bn19ydyz1hncmvyyh87gczp3lmlczpm352p0107z1gw6xmpjil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -44891,15 +45102,15 @@ package-build = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-build"; - version = "20160430.2001"; + version = "20160530.828"; src = fetchFromGitHub { owner = "melpa"; repo = "melpa"; - rev = "50e8d089f4e163eb459fc602cb90440b110b489f"; - sha256 = "0mr3m7km7ml1n6sa7sa6ad87ksi6x6yf0yzy90bii91r90b5fka2"; + rev = "1b56ca344ad944e03b669a9974e9b734b5b445bb"; + sha256 = "07ni5wvds27sikcbz49bbyzssa199hvav62fd3a6v8zfz586ji73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-build"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-build"; sha256 = "0618z43j6628jjj448hcigvsfwcs7p0n4bbcmqscrb6p59b7n4wx"; name = "package-build"; }; @@ -44912,7 +45123,7 @@ package-filter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-filter"; - version = "20140105.1726"; + version = "20140105.2326"; src = fetchFromGitHub { owner = "milkypostman"; repo = "package-filter"; @@ -44920,7 +45131,7 @@ sha256 = "0i7f8ambcrhyqq15xwlk31jjdcii2hr37y45va8m5w6n9mkpz8c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-filter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-filter"; sha256 = "0am73zch2fy1hfjwzk8kg0j3lgbcz3hzxjrdf0j0a9w0myp0mmjm"; name = "package-filter"; }; @@ -44933,7 +45144,7 @@ package-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-plus"; - version = "20150319.1755"; + version = "20150319.2255"; src = fetchFromGitHub { owner = "zenspider"; repo = "package"; @@ -44941,7 +45152,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -44954,7 +45165,7 @@ package-safe-delete = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-safe-delete"; - version = "20150116.1107"; + version = "20150116.1707"; src = fetchFromGitHub { owner = "Fanael"; repo = "package-safe-delete"; @@ -44962,7 +45173,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -44975,7 +45186,7 @@ package-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "package-utils"; - version = "20160307.420"; + version = "20160307.1020"; src = fetchFromGitHub { owner = "Silex"; repo = "package-utils"; @@ -44983,7 +45194,7 @@ sha256 = "1pcpr8ls0sqph098lrb6n8fbsm8rq8imglfx3m8zzyw78q9hwcjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -44996,15 +45207,15 @@ packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "20160409.1251"; + version = "20160523.1500"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "4b278931c3694c467e5aaa0246956227806065a0"; - sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; + rev = "765cd52712f0daf40c45d169cc062b6bc94aa807"; + sha256 = "1kjcb6z08bj5ysxrykgz3x6bz2122yycpjhbv875ppc5ihls88xl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; @@ -45017,7 +45228,7 @@ pacmacs = callPackage ({ cl-lib ? null, dash, dash-functional, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pacmacs"; - version = "20160131.332"; + version = "20160131.932"; src = fetchFromGitHub { owner = "codingteam"; repo = "pacmacs.el"; @@ -45025,7 +45236,7 @@ sha256 = "0zx72qbqy2n1r6mjylw67zb6nnchp2b49vsdyl0k5bdaq2xyqv6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pacmacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pacmacs"; sha256 = "0w0r6z365jrglpbifb94w6c22wqi9x93qgkss9pn820hrndqbqxy"; name = "pacmacs"; }; @@ -45038,15 +45249,15 @@ paganini-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paganini-theme"; - version = "20160516.658"; + version = "20160529.1222"; src = fetchFromGitHub { owner = "onurtemizkan"; repo = "paganini"; - rev = "d0ae9cd3ea5ee65103ab05130984733f41fe8ece"; - sha256 = "01y627gip66ff6a9mik3j5jdr5kki9b5078x48dp3jk76i5vlhk2"; + rev = "cbe0f88ddb613b8067f1e14f358964bc1ece9fbb"; + sha256 = "1a3vj3wf64w5gw9a7jh36abw046yp3njms3rw8y52n6vf9gdcdci"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paganini-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paganini-theme"; sha256 = "1kypkf52hjlfj75pcmjf2a60m6iwj0y1dspjwqynzz3l48i6ippm"; name = "paganini-theme"; }; @@ -45059,7 +45270,7 @@ page-break-lines = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "page-break-lines"; - version = "20160109.2113"; + version = "20160110.313"; src = fetchFromGitHub { owner = "purcell"; repo = "page-break-lines"; @@ -45067,7 +45278,7 @@ sha256 = "0mqd18w98p6z0i08xx7jga10ljh9360x6sqfyvfq6bjfi2jvxdbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -45080,7 +45291,7 @@ pager = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pager"; - version = "20100330.1431"; + version = "20100330.2031"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "pager"; @@ -45088,7 +45299,7 @@ sha256 = "1dq5ibz7rx9a7gm9zq2pz4c1sxgrm59yibyq92bvmi68lvf2q851"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pager"; sha256 = "0s5zwimkbsivbwlyd7g8dpnjyzqcfc5plg53ij4sljiipgjh5brl"; name = "pager"; }; @@ -45101,7 +45312,7 @@ pager-default-keybindings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pager }: melpaBuild { pname = "pager-default-keybindings"; - version = "20130719.1657"; + version = "20130719.2257"; src = fetchFromGitHub { owner = "nflath"; repo = "pager-default-keybindings"; @@ -45109,7 +45320,7 @@ sha256 = "11msqs8v9wn8sj45dw1fl0ldi3sw33v0xclynbxgmawyabfq3bqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pager-default-keybindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pager-default-keybindings"; sha256 = "0vqb3s1fxkl1fxxspq89344s55sfcplz26z0pbh347l1681h3pci"; name = "pager-default-keybindings"; }; @@ -45121,13 +45332,13 @@ }) {}; palette = callPackage ({ fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "palette"; - version = "20151231.1845"; + version = "20160101.45"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/palette.el"; sha256 = "1qnv84y0s437xcsjxh0gs9rb36pydba3qfrihvz5pqs9g9w7m94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/palette"; sha256 = "1v6dsph18rqfbvda2c25mqgdwap2a4zrg6qqq57n205zprpcwxc0"; name = "palette"; }; @@ -45140,7 +45351,7 @@ palimpsest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "palimpsest"; - version = "20130731.1121"; + version = "20130731.1721"; src = fetchFromGitHub { owner = "danielsz"; repo = "Palimpsest"; @@ -45148,7 +45359,7 @@ sha256 = "1kbja107smdjqv82p84jx13jk1410c9vms89p1iy1jvn7s8g9fiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/palimpsest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/palimpsest"; sha256 = "18kklfdlcg982pdrslh0xqa42h28f91bdm7q2zn890d6dcivp6bk"; name = "palimpsest"; }; @@ -45161,7 +45372,7 @@ pallet = callPackage ({ cask, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pallet"; - version = "20150512.302"; + version = "20150512.902"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "pallet"; @@ -45169,7 +45380,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -45182,7 +45393,7 @@ pandoc-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild }: melpaBuild { pname = "pandoc-mode"; - version = "20160519.1153"; + version = "20160519.1753"; src = fetchFromGitHub { owner = "joostkremers"; repo = "pandoc-mode"; @@ -45190,7 +45401,7 @@ sha256 = "1aldnaas57saa2rdg6j3hczmf008m34dw47qzxjmn1jh6xibk357"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -45203,7 +45414,7 @@ pangu-spacing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pangu-spacing"; - version = "20150927.324"; + version = "20150927.924"; src = fetchFromGitHub { owner = "coldnew"; repo = "pangu-spacing"; @@ -45211,7 +45422,7 @@ sha256 = "0bcqc4r0v02v99llphk8s0mj38gxk87a3jqcp8v4sb9040dkm8gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -45224,7 +45435,7 @@ paper-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, hexrgb, lib, melpaBuild }: melpaBuild { pname = "paper-theme"; - version = "20151231.1232"; + version = "20151231.1832"; src = fetchFromGitHub { owner = "cadadr"; repo = "paper-theme"; @@ -45232,7 +45443,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -45245,15 +45456,15 @@ paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: melpaBuild { pname = "paradox"; - version = "20160323.1510"; + version = "20160525.1636"; src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; - rev = "494608fc9032bb4fc6eb7feac641066a8c4ae174"; - sha256 = "0bbpmrprc1bzil8xh2grnivxlfbjs252717rn7rq0nccdflp4akz"; + rev = "9086bd2241f86488e816682af0ef9897569ab31b"; + sha256 = "1vq3xjllgvzwp18mv2y1qydbbl6j1nk58vw7sm99zsf3wdpls465"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -45265,14 +45476,14 @@ }) {}; paredit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paredit"; - version = "20160324.1515"; + version = "20160324.2015"; src = fetchgit { url = "http://mumble.net/~campbell/git/paredit.git"; rev = "2f6f67283c6c41af5a74271fc025c2e837f3d2a2"; sha256 = "14k1xakdr58647cnq8ky73sh5j94jc6vls05jdxkbv681krdvqvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; @@ -45285,7 +45496,7 @@ paredit-everywhere = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paredit-everywhere"; - version = "20150822.44"; + version = "20150822.644"; src = fetchFromGitHub { owner = "purcell"; repo = "paredit-everywhere"; @@ -45293,7 +45504,7 @@ sha256 = "1jkpb67h96sm3fnga9hrg3kwhlp3czdv66v49a9szq174zpsnrgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -45306,7 +45517,7 @@ paredit-menu = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paredit-menu"; - version = "20160128.1233"; + version = "20160128.1833"; src = fetchFromGitHub { owner = "phillord"; repo = "paredit-menu"; @@ -45314,7 +45525,7 @@ sha256 = "15xkanrwxh3qqay3vkfqvhzs88g7nnfv9bqk509qflyhqnvc9sxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-menu"; sha256 = "05jp4cc548x5f07k096dgizhivdpaajxq38hin831sm0p9cibm4p"; name = "paredit-menu"; }; @@ -45327,7 +45538,7 @@ paren-completer = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-completer"; - version = "20160501.652"; + version = "20160501.1252"; src = fetchFromGitHub { owner = "MatthewBregg"; repo = "paren-completer"; @@ -45335,7 +45546,7 @@ sha256 = "1il0gbyjnlxhk04z3lgxmvlmlhgc94rmxdf8nl5sk3gblqmr8v3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-completer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-completer"; sha256 = "0xh17h8vmsgbrq6yf5sfy3kpia4za68f43gwgkvi2m430g15fr0x"; name = "paren-completer"; }; @@ -45348,7 +45559,7 @@ paren-face = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "paren-face"; - version = "20160521.1055"; + version = "20160521.1655"; src = fetchFromGitHub { owner = "tarsius"; repo = "paren-face"; @@ -45356,7 +45567,7 @@ sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -45369,7 +45580,7 @@ parent-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parent-mode"; - version = "20150824.1900"; + version = "20150825.100"; src = fetchFromGitHub { owner = "Fanael"; repo = "parent-mode"; @@ -45377,7 +45588,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -45390,7 +45601,7 @@ parse-csv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parse-csv"; - version = "20160512.1323"; + version = "20160512.1923"; src = fetchFromGitHub { owner = "mrc"; repo = "el-csv"; @@ -45398,7 +45609,7 @@ sha256 = "06xg6f74697zmn042wg259qlik2l21k4al08a06xz4gv9a83nsx6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parse-csv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parse-csv"; sha256 = "0khpfxbarw0plx8kka357d8wl1vvdih5797xlld9adc0g3cng0zz"; name = "parse-csv"; }; @@ -45411,7 +45622,7 @@ parsebib = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "parsebib"; - version = "20151006.532"; + version = "20151006.1132"; src = fetchFromGitHub { owner = "joostkremers"; repo = "parsebib"; @@ -45419,7 +45630,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -45432,7 +45643,7 @@ pass = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, password-store }: melpaBuild { pname = "pass"; - version = "20160214.535"; + version = "20160214.1135"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "pass"; @@ -45440,7 +45651,7 @@ sha256 = "0npm5kv00fcnb5ajj76jp1dc84zxp7fgrkn472yxdq4hppvx0ixv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -45453,7 +45664,7 @@ passthword = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "passthword"; - version = "20141201.423"; + version = "20141201.1023"; src = fetchFromGitHub { owner = "pidu"; repo = "passthword"; @@ -45461,7 +45672,7 @@ sha256 = "0yckh61v9a798gpyk8x2z9990h3b61lwsw0kish571pygfyqhjkq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -45474,7 +45685,7 @@ password-generator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "password-generator"; - version = "20150222.1540"; + version = "20150222.2140"; src = fetchFromGitHub { owner = "zargener"; repo = "emacs-password-genarator"; @@ -45482,7 +45693,7 @@ sha256 = "1pw401ar114wpayibphv3n6m0gz68zjmiwz60r4lbar45bmxvihx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-generator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-generator"; sha256 = "0aahpplmiwmp6a06y6hl4zvv8lvzkmakmaazlckl5r3rqbsf24cb"; name = "password-generator"; }; @@ -45495,14 +45706,14 @@ password-store = callPackage ({ f, fetchgit, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "password-store"; - version = "20151027.1749"; + version = "20151027.2249"; src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "0b2f803fe61992af02b8820c400984b1f615a299"; sha256 = "11cq7wz57zc649zww720cdfa9rqyjl9gf9h0m96wfapm4mhczd1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -45515,7 +45726,7 @@ password-vault = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "password-vault"; - version = "20160126.1320"; + version = "20160126.1920"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "password-vault"; @@ -45523,7 +45734,7 @@ sha256 = "0921xwg3d3345hiqz4c1iyqwvfyg8rv0wggcnig7xh9qivspag4c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-vault"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-vault"; sha256 = "17i556xwq6yaxv9v18l1abcpbaz6hygsa4vf4b68fc98vcy7396a"; name = "password-vault"; }; @@ -45536,7 +45747,7 @@ pastebin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastebin"; - version = "20101125.1502"; + version = "20101125.2102"; src = fetchFromGitHub { owner = "nicferrier"; repo = "elpastebin"; @@ -45544,7 +45755,7 @@ sha256 = "1hjzpza8zmzb83sacmqcnh9a52m4x5d8xbwvcqvld1ajglv4y124"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastebin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastebin"; sha256 = "0ff01vzslgdmsj1jp1m2lvnan6immd4l7vz466g1glb5nkb7qfcr"; name = "pastebin"; }; @@ -45557,7 +45768,7 @@ pastehub = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastehub"; - version = "20140615.220"; + version = "20140615.820"; src = fetchFromGitHub { owner = "kiyoka"; repo = "pastehub"; @@ -45565,7 +45776,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -45578,7 +45789,7 @@ pastelmac-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastelmac-theme"; - version = "20151030.2236"; + version = "20151031.336"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "pastelmac-theme-el"; @@ -45586,7 +45797,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -45599,14 +45810,14 @@ pastels-on-dark-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pastels-on-dark-theme"; - version = "20120304.1322"; + version = "20120304.1922"; src = fetchgit { url = "https://gist.github.com/1974259.git"; rev = "854839a0b4bf8c3f6a7d947926bf41d690547002"; sha256 = "1ar6rf2ykd252y8ahx0lca7xsgfs6ff287q9iij79gs9fhn4yfy5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastels-on-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastels-on-dark-theme"; sha256 = "0zdr29793gg229r47yjb3plagxc9pszqyy4sx81ffp3rpdf0nlbh"; name = "pastels-on-dark-theme"; }; @@ -45619,7 +45830,7 @@ path-headerline-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "path-headerline-mode"; - version = "20140423.932"; + version = "20140423.1532"; src = fetchFromGitHub { owner = "7696122"; repo = "path-headerline-mode"; @@ -45627,7 +45838,7 @@ sha256 = "1ffnkw8djs8kvfjd1crnaqram1vl4w3g1zhsqp74ds0mccsd6830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/path-headerline-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/path-headerline-mode"; sha256 = "0dwr8iyq62ad5xkh7r4kpywpypdq1wljsdzwqbq9zdr79yfqx337"; name = "path-headerline-mode"; }; @@ -45640,7 +45851,7 @@ pathify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pathify"; - version = "20160423.446"; + version = "20160423.1046"; src = fetchFromGitHub { owner = "alezost"; repo = "pathify.el"; @@ -45648,7 +45859,7 @@ sha256 = "0wsq11qffw1lx9x79law7jrz0sxm6km83gh891ic9ak2y6j5shxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pathify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pathify"; sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; name = "pathify"; }; @@ -45661,7 +45872,7 @@ paxedit = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "paxedit"; - version = "20160102.2121"; + version = "20160103.321"; src = fetchFromGitHub { owner = "promethial"; repo = "paxedit"; @@ -45669,7 +45880,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -45682,7 +45893,7 @@ pbcopy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pbcopy"; - version = "20150224.2359"; + version = "20150225.559"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "pbcopy.el"; @@ -45690,7 +45901,7 @@ sha256 = "138w0dlp3msjmr2x09kfcnxwhdldbz9xjfy7l6lig1x9ima0z5w6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pbcopy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pbcopy"; sha256 = "1989pkhaha6s2rmgyswnzps92x9hhzymjz4ng4a5jda1b9snp60q"; name = "pbcopy"; }; @@ -45703,7 +45914,7 @@ pc-bufsw = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pc-bufsw"; - version = "20150923.313"; + version = "20150923.913"; src = fetchFromGitHub { owner = "ibukanov"; repo = "pc-bufsw"; @@ -45711,7 +45922,7 @@ sha256 = "1jj5h92qakrn9d5d88dvl43b7ppw96rm11hqg3791i6k48nx1d1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pc-bufsw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pc-bufsw"; sha256 = "01d7735ininlsjkql7dy57irgwgk4k9br8bl18wq51vgkg90i5k5"; name = "pc-bufsw"; }; @@ -45724,7 +45935,7 @@ pcache = callPackage ({ eieio ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcache"; - version = "20151109.939"; + version = "20151109.1539"; src = fetchFromGitHub { owner = "sigma"; repo = "pcache"; @@ -45732,7 +45943,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -45745,7 +45956,7 @@ pcmpl-args = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-args"; - version = "20120912.124"; + version = "20120912.724"; src = fetchFromGitHub { owner = "JonWaltman"; repo = "pcmpl-args.el"; @@ -45753,7 +45964,7 @@ sha256 = "0pwx1nbgciy28rivvrgka46zihmag9ljrs40bvscgd9rkragm4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-args"; sha256 = "0sry4zvr8xmzyygf2m5dms52srkd1apj3i7a3aj23qa8jvndx8vr"; name = "pcmpl-args"; }; @@ -45766,7 +45977,7 @@ pcmpl-git = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-git"; - version = "20160111.155"; + version = "20160111.755"; src = fetchFromGitHub { owner = "leoliu"; repo = "pcmpl-git-el"; @@ -45774,7 +45985,7 @@ sha256 = "0pspxgicc0mkypp94r0jydmkjr3ngv8y4w1xpj93kp79hnvyls0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-git"; sha256 = "12y9pg1g4i1ghnjvgfdpa6p84h4bcqrr23y9bazwl9n6aj20cmxk"; name = "pcmpl-git"; }; @@ -45787,7 +45998,7 @@ pcmpl-homebrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-homebrew"; - version = "20150506.2152"; + version = "20150507.352"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "pcmpl-homebrew"; @@ -45795,7 +46006,7 @@ sha256 = "17i5j5005dhzgwzds5jj1a7d31xvbshjc139vawwz2xip5aynji4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-homebrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-homebrew"; sha256 = "11yd18s79iszp8gas97hqpa0b0whgh7dvlyci3nd4z28467p83v8"; name = "pcmpl-homebrew"; }; @@ -45808,7 +46019,7 @@ pcmpl-pip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcmpl-pip"; - version = "20141024.448"; + version = "20141024.1048"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "pcmpl-pip"; @@ -45816,7 +46027,7 @@ sha256 = "14pz15by9gp0307bcdv9h90mcr35ya89wbn3y13n7k0z5r45gn58"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcmpl-pip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcmpl-pip"; sha256 = "19a3np5swpqvrx133yvziqnr2pvj8zi0b725j8kxhp2bj1g1c6hr"; name = "pcmpl-pip"; }; @@ -45829,7 +46040,7 @@ pcomplete-extension = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcomplete-extension"; - version = "20140604.1247"; + version = "20140604.1847"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "pcomplete-extension"; @@ -45837,7 +46048,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -45850,7 +46061,7 @@ pcre2el = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcre2el"; - version = "20151213.534"; + version = "20151213.1134"; src = fetchFromGitHub { owner = "joddie"; repo = "pcre2el"; @@ -45858,7 +46069,7 @@ sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; @@ -45871,7 +46082,7 @@ pcsv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pcsv"; - version = "20150220.631"; + version = "20150220.1231"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-pcsv"; @@ -45879,7 +46090,7 @@ sha256 = "0aaprjczjf3al5vcypw1fsnz5a0xnnlhmvy0lc83i9aqbsa2y8af"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -45892,7 +46103,7 @@ pdb-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pdb-mode"; - version = "20150128.1251"; + version = "20150128.1851"; src = fetchFromGitHub { owner = "sixpi"; repo = "pdb-mode"; @@ -45900,7 +46111,7 @@ sha256 = "1xkkyz7y08jr71rzdacb9v7gk95qsxlsshkdsxq8jp70irq51099"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdb-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdb-mode"; sha256 = "1ihkxd15kx5m5xb9yxwz8wqbmyk9iaskry9szzdz1j4gjlczb6hy"; name = "pdb-mode"; }; @@ -45913,15 +46124,15 @@ pdf-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, tablist }: melpaBuild { pname = "pdf-tools"; - version = "20160410.514"; + version = "20160525.1820"; src = fetchFromGitHub { owner = "politza"; repo = "pdf-tools"; - rev = "786fad7f95db74c06a7a569aad33acba978aad7b"; - sha256 = "00h35j1rhqqnfj7y6z3fblcq2kijnhl51h44424x0xjhydkk3kxv"; + rev = "87690b7b568ae6145dfa4ffc9fc085b80ed039fa"; + sha256 = "14h8vybd0lns92mxv045mfcllhq8fj509bvf7i9vr190mxgnxv3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -45934,7 +46145,7 @@ peacock-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peacock-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-peacock-theme"; @@ -45942,7 +46153,7 @@ sha256 = "1clvrmvijwpffigh5f29vnwcvffqk0nrvlz26158hip1z9x7nah3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peacock-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peacock-theme"; sha256 = "0jpdq090r37d07bm52yx3x9y3gsip6fyxxq1ax1k5k0r0js45kq9"; name = "peacock-theme"; }; @@ -45955,7 +46166,7 @@ peek-mode = callPackage ({ elnode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peek-mode"; - version = "20130620.1546"; + version = "20130620.2146"; src = fetchFromGitHub { owner = "erikriverson"; repo = "peek-mode"; @@ -45963,7 +46174,7 @@ sha256 = "11nv6pll0zj9dkgzlzgav39a6x3sfi7kvfhwm96fa3iy4v8bixrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peek-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peek-mode"; sha256 = "07wcnh3jmp2gi9xhd3d8i2n0pr2g9kav497nnz94i85awhzf8fi4"; name = "peek-mode"; }; @@ -45976,7 +46187,7 @@ peep-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peep-dired"; - version = "20160321.1837"; + version = "20160321.2337"; src = fetchFromGitHub { owner = "asok"; repo = "peep-dired"; @@ -45984,7 +46195,7 @@ sha256 = "1wy5qpnfri1gha2cnl6q20qar8dbl2mimpb43bnhmm2g3wgjyad6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peep-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peep-dired"; sha256 = "16k5y3h2ip96k071vhx83avg4r4nplnd973b1271vvxbx2bly735"; name = "peep-dired"; }; @@ -45997,7 +46208,7 @@ peg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "peg"; - version = "20150708.241"; + version = "20150708.841"; src = fetchFromGitHub { owner = "ellerh"; repo = "peg.el"; @@ -46005,7 +46216,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -46018,14 +46229,14 @@ per-buffer-theme = callPackage ({ cl-lib ? null, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "per-buffer-theme"; - version = "20160318.1801"; + version = "20160318.2301"; src = fetchhg { url = "https://bitbucket.com/inigoserna/per-buffer-theme.el"; rev = "9e6200da91b3"; sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -46038,7 +46249,7 @@ perl-completion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perl-completion"; - version = "20090528.236"; + version = "20090528.836"; src = fetchFromGitHub { owner = "imakado"; repo = "perl-completion"; @@ -46046,7 +46257,7 @@ sha256 = "0fzypcxxd5zlkcybz0xppf09l0vf4vsfisr2y3ijsmxhg7yrwzj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perl-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perl-completion"; sha256 = "01p17mlkwjm60f14arda3ly8ng0r98nn3rly94ghn6jr7r7fv14b"; name = "perl-completion"; }; @@ -46059,7 +46270,7 @@ perl6-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "perl6-mode"; - version = "20160117.1409"; + version = "20160117.2009"; src = fetchFromGitHub { owner = "hinrik"; repo = "perl6-mode"; @@ -46067,7 +46278,7 @@ sha256 = "11fs78b7ssz18wr35vxf6h4zpfj4l4vsikfzayq6hyqjnchv7b45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perl6-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perl6-mode"; sha256 = "0af1djypd8n0n1fq10sl8mrdg27354kg9g87d6xz4q5phvi48cqv"; name = "perl6-mode"; }; @@ -46080,7 +46291,7 @@ perlbrew = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perlbrew"; - version = "20130127.624"; + version = "20130127.1224"; src = fetchFromGitHub { owner = "kentaro"; repo = "perlbrew.el"; @@ -46088,7 +46299,7 @@ sha256 = "0wg0cpqxzfgln6xdngzspsbfirn9a5jxpgk66m0fpi33215z9q26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perlbrew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perlbrew"; sha256 = "1qadwkcic2qckqy8hgrnj08ajhxayknhpyxkc6ir15vfqjk5crr8"; name = "perlbrew"; }; @@ -46101,7 +46312,7 @@ persistent-overlays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-overlays"; - version = "20160426.1521"; + version = "20160426.2121"; src = fetchFromGitHub { owner = "mneilly"; repo = "Emacs-Persistent-Overlays"; @@ -46109,7 +46320,7 @@ sha256 = "0iw9qsqy1aszwfzfslyxz31zav4xq8pbrx0mwxqix5lvy7768ppp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-overlays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-overlays"; sha256 = "136acbxqykvsw8a5il1zgpxr7llxmc3347847vf0jnmbzb1b472a"; name = "persistent-overlays"; }; @@ -46122,7 +46333,7 @@ persistent-scratch = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persistent-scratch"; - version = "20160404.1215"; + version = "20160404.1815"; src = fetchFromGitHub { owner = "Fanael"; repo = "persistent-scratch"; @@ -46130,7 +46341,7 @@ sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -46143,7 +46354,7 @@ persistent-soft = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache }: melpaBuild { pname = "persistent-soft"; - version = "20150223.1353"; + version = "20150223.1953"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "persistent-soft"; @@ -46151,7 +46362,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -46164,15 +46375,15 @@ persp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "persp-mode"; - version = "20160521.1242"; + version = "20160528.1838"; src = fetchFromGitHub { owner = "Bad-ptr"; repo = "persp-mode.el"; - rev = "5ecbc550e8df12a777ae52322a0bc9b48cde60f9"; - sha256 = "1nsgmvvdx9hrnainzx7a93wj3v0d2k31bf4fjq4zk7ldfwkfmh9k"; + rev = "5e5c2b3306653e8d9a9ca67e6f7b77cf86e74ddb"; + sha256 = "1rvsbyx3838va9vx3g8a3vj9pp3fin4vqkngi0dl7asddcl9mp58"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -46185,7 +46396,7 @@ persp-projectile = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, perspective, projectile }: melpaBuild { pname = "persp-projectile"; - version = "20151220.730"; + version = "20151220.1330"; src = fetchFromGitHub { owner = "bbatsov"; repo = "persp-projectile"; @@ -46193,7 +46404,7 @@ sha256 = "0b9hz253m6d58dwsjsk9d1fw0ql33m9wfvyx10ncsqbr0j0s98k5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-projectile"; sha256 = "10l2kqjyigg98qbbpf3qf4d5bm63kkk4vp7ip8fibgj1p9gqmnxm"; name = "persp-projectile"; }; @@ -46206,7 +46417,7 @@ perspective = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "perspective"; - version = "20160219.1922"; + version = "20160220.122"; src = fetchFromGitHub { owner = "nex3"; repo = "perspective-el"; @@ -46214,7 +46425,7 @@ sha256 = "11slq43p6gjvmi4pqwh76a26c2v6l1dmnihgaskn4g0s65qw3kqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -46227,7 +46438,7 @@ pg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pg"; - version = "20130731.1742"; + version = "20130731.2342"; src = fetchFromGitHub { owner = "cbbrowne"; repo = "pg.el"; @@ -46235,7 +46446,7 @@ sha256 = "1zh7v4nnpzvbi8yj1ynlqlawk5bmlxi6s80b5f2y7hkdqb5q26k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pg"; sha256 = "0n0187ndvwza1nis9a12h584qdqkwqfzhdw21kz5d1i6c43g7gji"; name = "pg"; }; @@ -46248,7 +46459,7 @@ pgdevenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pgdevenv"; - version = "20150105.1736"; + version = "20150105.2336"; src = fetchFromGitHub { owner = "dimitri"; repo = "pgdevenv-el"; @@ -46256,7 +46467,7 @@ sha256 = "0c9d4c24ic67y07y74bv5b7vc56b6l0lbh2fbzm870r1dl5zbzcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pgdevenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pgdevenv"; sha256 = "0za35sdwwav81wpk4jjqh56icaswwxxyg3bqqp0qiz24llb5ln1w"; name = "pgdevenv"; }; @@ -46269,7 +46480,7 @@ ph = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ph"; - version = "20130312.1437"; + version = "20130312.1937"; src = fetchFromGitHub { owner = "gromnitsky"; repo = "ph"; @@ -46277,7 +46488,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -46290,7 +46501,7 @@ phabricator = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "phabricator"; - version = "20160510.1025"; + version = "20160510.1625"; src = fetchFromGitHub { owner = "ajtulloch"; repo = "phabricator.el"; @@ -46298,7 +46509,7 @@ sha256 = "0cmfb5ns335nq27iw94qxvrldpwjga0hw40da9kpdcfg0in4ya0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phabricator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phabricator"; sha256 = "07988f2xyp76xjs25b3rdblhmijs2piriz4p0q92jw69bdvkl14c"; name = "phabricator"; }; @@ -46311,7 +46522,7 @@ phi-autopair = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, paredit }: melpaBuild { pname = "phi-autopair"; - version = "20150527.523"; + version = "20150527.1123"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-autopair"; @@ -46319,7 +46530,7 @@ sha256 = "14g06ndxrqz80kdyhil6ajcqqxkfa77r1gr7vwqa9sq6jgm8dpx5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-autopair"; sha256 = "1ya1bvh28qgz1zg9kdh2lzbsf0w0lx4xr42mdrjwaz3bbfa9asg4"; name = "phi-autopair"; }; @@ -46332,7 +46543,7 @@ phi-grep = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-grep"; - version = "20150212.1024"; + version = "20150212.1624"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-grep"; @@ -46340,7 +46551,7 @@ sha256 = "1rchxhp4kji5kbg8kzkzdbfy8sdbgbqd5g59cch7ia9agh5jvwyx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-grep"; sha256 = "1y5lq6lq9qdydbypb1pjnxryh94a295nnqqh2x27whiwdiysirjj"; name = "phi-grep"; }; @@ -46353,7 +46564,7 @@ phi-rectangle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-rectangle"; - version = "20151208.154"; + version = "20151208.754"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-rectangle"; @@ -46361,7 +46572,7 @@ sha256 = "0d2c579rg8wdfmn94nzaix9332jch4wlr939jszls330s38d0iv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-rectangle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-rectangle"; sha256 = "08yw04wmbgbbr60i638m0rspfwn3cp47ky5ssgjcgcmmdgg9yfvy"; name = "phi-rectangle"; }; @@ -46374,7 +46585,7 @@ phi-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phi-search"; - version = "20150807.412"; + version = "20150807.1012"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search"; @@ -46382,7 +46593,7 @@ sha256 = "10kyq3lkhmbmj1hl9awzc0w8073dn9mbjd5skh660ljg5mmi6x62"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search"; sha256 = "0nj06ixl76dd80zg83q4bi8k224mcwb612mr4gd1xppj5k8xl03g"; name = "phi-search"; }; @@ -46395,7 +46606,7 @@ phi-search-dired = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, phi-search }: melpaBuild { pname = "phi-search-dired"; - version = "20150405.314"; + version = "20150405.914"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search-dired"; @@ -46403,7 +46614,7 @@ sha256 = "1b44947hncw4q42fxxrz6fm21habzp4pyp0569xdwysrx2rca2fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-dired"; sha256 = "1gf3vs3vrp5kbq4ixnj7adazmnqixi63qswgc2512p10gf7inf8p"; name = "phi-search-dired"; }; @@ -46416,7 +46627,7 @@ phi-search-mc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors, phi-search }: melpaBuild { pname = "phi-search-mc"; - version = "20160324.1103"; + version = "20160324.1603"; src = fetchFromGitHub { owner = "knu"; repo = "phi-search-mc.el"; @@ -46424,7 +46635,7 @@ sha256 = "0wr86ad0yl52im6b9z0b9pzmhcn39qg5m9878yfv1nbxliw40lcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -46437,7 +46648,7 @@ phi-search-migemo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, migemo, phi-search }: melpaBuild { pname = "phi-search-migemo"; - version = "20150116.806"; + version = "20150116.1406"; src = fetchFromGitHub { owner = "zk-phi"; repo = "phi-search-migemo"; @@ -46445,7 +46656,7 @@ sha256 = "1k8hjnkinzdxy9qxldsyvj6npa2sv48m905d1cvxr8lyzpc5hikh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-migemo"; sha256 = "0qk73s09sasm438w29j5z2bmlb60p1mgbv2ch43rgq8c6kjzg6h6"; name = "phi-search-migemo"; }; @@ -46458,7 +46669,7 @@ phoenix-dark-mono-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phoenix-dark-mono-theme"; - version = "20130306.1515"; + version = "20130306.2115"; src = fetchFromGitHub { owner = "j0ni"; repo = "phoenix-dark-mono"; @@ -46466,7 +46677,7 @@ sha256 = "1fg63g1cm9mp50sf3ldcb0pr4bvlfxx010arisxdkj102pmib2ri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phoenix-dark-mono-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phoenix-dark-mono-theme"; sha256 = "15in299j170n0wxmkg3cx1zzx1n7r1ifraqqzfqhcnk8i8lmc939"; name = "phoenix-dark-mono-theme"; }; @@ -46479,7 +46690,7 @@ phoenix-dark-pink-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "phoenix-dark-pink-theme"; - version = "20150406.2302"; + version = "20150407.502"; src = fetchFromGitHub { owner = "j0ni"; repo = "phoenix-dark-pink"; @@ -46487,7 +46698,7 @@ sha256 = "042yw44d5pwykl177sdh209drc5f17yzhq0mxrf7qhycbjs4h8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phoenix-dark-pink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phoenix-dark-pink-theme"; sha256 = "0bz6iw73d85bi12qqx6fdw3paqknrxvn0asbwjmgdcrlqrfczjlr"; name = "phoenix-dark-pink-theme"; }; @@ -46500,7 +46711,7 @@ php-auto-yasnippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, php-mode, yasnippet }: melpaBuild { pname = "php-auto-yasnippets"; - version = "20141128.1711"; + version = "20141128.2311"; src = fetchFromGitHub { owner = "ejmr"; repo = "php-auto-yasnippets"; @@ -46508,7 +46719,7 @@ sha256 = "1l64rka9wrnwdgfgwv8xh7mq9f1937z2v3r82qcfi6il3anw4zm0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -46521,7 +46732,7 @@ php-boris = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-boris"; - version = "20130527.421"; + version = "20130527.1021"; src = fetchFromGitHub { owner = "tomterl"; repo = "php-boris"; @@ -46529,7 +46740,7 @@ sha256 = "07lcibr55pk3sab9bbq2r4phadl5p28n63wkq5rkhkkjc7s9rayc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-boris"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-boris"; sha256 = "19yfbrlfqikix2lnnlbpzm6yakjhl84ix0zra2ycpvgg2pl88r0g"; name = "php-boris"; }; @@ -46542,7 +46753,7 @@ php-boris-minor-mode = callPackage ({ fetchFromGitHub, fetchurl, highlight, lib, melpaBuild, php-boris }: melpaBuild { pname = "php-boris-minor-mode"; - version = "20140209.1335"; + version = "20140209.1935"; src = fetchFromGitHub { owner = "steckerhalter"; repo = "php-boris-minor-mode"; @@ -46550,7 +46761,7 @@ sha256 = "1wk7vq80v97psxfg0pwy4mc6kdc61gm6h1vgl9p71ii6g6zvzcqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-boris-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-boris-minor-mode"; sha256 = "1cmpd303chldss7kylpinv8qc3c78srz02a9cp9x79c8arq7apwl"; name = "php-boris-minor-mode"; }; @@ -46563,7 +46774,7 @@ php-eldoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-eldoc"; - version = "20140202.1441"; + version = "20140202.2041"; src = fetchFromGitHub { owner = "sabof"; repo = "php-eldoc"; @@ -46571,7 +46782,7 @@ sha256 = "0hm6myvf91f4d2yfc7fs2xky9m8hfnimx1gkfzmn9f5pcc2l2p0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-eldoc"; sha256 = "1q5fkl8crqrgxik2mxbkqv10qnqhqrazd66rgfw797s3jcchv58j"; name = "php-eldoc"; }; @@ -46584,15 +46795,15 @@ php-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-mode"; - version = "20160413.328"; + version = "20160526.1325"; src = fetchFromGitHub { owner = "ejmr"; repo = "php-mode"; - rev = "9083f3ac3f61f2cbf30f034151518860b992c782"; - sha256 = "1ybx2kb719xm4ld24kki7x5x6pygcxvnbp9dr49s8xh60g5h4b47"; + rev = "c9fc19039648dd2a209209fa70da95435c338ee6"; + sha256 = "082yfmwvdff808kmhd1ks3h7ysxm6mzqb0lzbh6fy5idlhgnbkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -46605,7 +46816,7 @@ php-plus--mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-plus--mode"; - version = "20121129.1552"; + version = "20121129.2152"; src = fetchFromGitHub { owner = "echosa"; repo = "phpplus-mode"; @@ -46613,7 +46824,7 @@ sha256 = "0f1n0jcla157ngqshq5n8iws216ar63ynjd6743cbdrzj0v030wg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php+-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php+-mode"; sha256 = "1ibcsky6la3l7gawpgx814w1acjf73b68i6wbb4p6saxhwg6adik"; name = "php-plus--mode"; }; @@ -46626,7 +46837,7 @@ php-refactor-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "php-refactor-mode"; - version = "20160417.1746"; + version = "20160417.2346"; src = fetchFromGitHub { owner = "keelerm84"; repo = "php-refactor-mode.el"; @@ -46634,7 +46845,7 @@ sha256 = "01i552ch8r8i6nzw8prwxcafzrq6xnzyc4cn36w3my1xq0k2ljvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-refactor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-refactor-mode"; sha256 = "0gj0nv6ii7pya0hcxs8haz5pahj0sa12c2ls53c3j85in645zb3s"; name = "php-refactor-mode"; }; @@ -46647,7 +46858,7 @@ phpcbf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "phpcbf"; - version = "20150302.828"; + version = "20150302.1428"; src = fetchFromGitHub { owner = "nishimaki10"; repo = "emacs-phpcbf"; @@ -46655,7 +46866,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -46665,22 +46876,22 @@ license = lib.licenses.free; }; }) {}; - phpunit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: + phpunit = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "phpunit"; - version = "20160512.1030"; + version = "20160531.1627"; src = fetchFromGitHub { owner = "nlamirault"; repo = "phpunit.el"; - rev = "443981bfc51890b83a0c58ccf78f3e44ea303a10"; - sha256 = "1pr5lrw1h6nibyyzb4rj7a72nsrnfczps3ll94wlsh19nqlmlqaj"; + rev = "7b2a811d80fd9781ec78692bc4f66c1641eb386a"; + sha256 = "1pmds2g7y1pcs3ivsd68zg30ih34janib0ydz4wr0mci3q52cjpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; - packageRequires = [ emacs f pkg-info s ]; + packageRequires = [ cl-lib emacs f pkg-info s ]; meta = { homepage = "https://melpa.org/#/phpunit"; license = lib.licenses.free; @@ -46689,7 +46900,7 @@ pianobar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pianobar"; - version = "20120128.1601"; + version = "20120128.2201"; src = fetchFromGitHub { owner = "agrif"; repo = "pianobar.el"; @@ -46697,7 +46908,7 @@ sha256 = "053jqzl0sp3dnl4919vi30xqrdcpi9jsqx5hndj1bprf7926w11d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pianobar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pianobar"; sha256 = "16vsf2cig9qjbh9s58zb5byjmyghxbsxpzpm5hyyrv251jap1jjn"; name = "pianobar"; }; @@ -46710,7 +46921,7 @@ picolisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "picolisp-mode"; - version = "20150516.455"; + version = "20150516.1055"; src = fetchFromGitHub { owner = "flexibeast"; repo = "picolisp-mode"; @@ -46718,7 +46929,7 @@ sha256 = "0p91ysyjksbravnw3l78mshay6swgb5k1zi5bbppppk8zkmdp115"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/picolisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/picolisp-mode"; sha256 = "1n56knbapyfs8n23arzlz27y0q4846r64krwlwh8agfqkcdw9dp5"; name = "picolisp-mode"; }; @@ -46731,7 +46942,7 @@ pig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pig-mode"; - version = "20140617.1358"; + version = "20140617.1958"; src = fetchFromGitHub { owner = "motus"; repo = "pig-mode"; @@ -46739,7 +46950,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pig-mode"; sha256 = "0gmvc4rrqkn0cx8fk1sxk6phfbpf8dcba3k6i24k3idcx8rxsw3x"; name = "pig-mode"; }; @@ -46752,7 +46963,7 @@ pig-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pig-snippets"; - version = "20130913.224"; + version = "20130913.824"; src = fetchFromGitHub { owner = "motus"; repo = "pig-mode"; @@ -46760,7 +46971,7 @@ sha256 = "1yg9n265ljdjlh6a3jrjwyvj3f76wp68x25bl0p8dxrrsyr9kvfx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pig-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pig-snippets"; sha256 = "1sqi0a2dsqgmabkrncxiyrhibyryyy25d11b15ybhlngd05wqbx2"; name = "pig-snippets"; }; @@ -46773,7 +46984,7 @@ pillar = callPackage ({ fetchFromGitHub, fetchurl, lib, makey, melpaBuild }: melpaBuild { pname = "pillar"; - version = "20141112.1311"; + version = "20141112.1911"; src = fetchFromGitHub { owner = "pillar-markup"; repo = "pillar-mode"; @@ -46781,7 +46992,7 @@ sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pillar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pillar"; sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; name = "pillar"; }; @@ -46794,7 +47005,7 @@ pinboard-api = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinboard-api"; - version = "20140324.748"; + version = "20140324.1248"; src = fetchFromGitHub { owner = "danieroux"; repo = "pinboard-api-el"; @@ -46802,7 +47013,7 @@ sha256 = "0wy9c37g6m5khchlp8qvfnjgkwq4r38659adcm5prvzjgzqhlfja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinboard-api"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinboard-api"; sha256 = "0yzvgnpkj2fhl01id36nc5pj8vyb05bllraiz3lwwcc66y98h9n0"; name = "pinboard-api"; }; @@ -46815,7 +47026,7 @@ pinot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinot"; - version = "20140211.1526"; + version = "20140211.2126"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-pinot-search"; @@ -46823,7 +47034,7 @@ sha256 = "1wc31r5fpcia4n4vbpg7vv3rzrnjzh18yygi3kp4wvl2wzx2azqh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinot"; sha256 = "1kjzq02pddnkia637xz2mnjjyglyh6qzragnf7nnxbw9ayiim58i"; name = "pinot"; }; @@ -46836,7 +47047,7 @@ pinyin-search = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pinyinlib }: melpaBuild { pname = "pinyin-search"; - version = "20160514.2358"; + version = "20160515.558"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "pinyin-search.el"; @@ -46844,7 +47055,7 @@ sha256 = "0bp4raxqv34jyg3yvdcsh9lav28x376gngm9nn8vjgmq9wggzf3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -46857,7 +47068,7 @@ pinyinlib = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pinyinlib"; - version = "20160505.1548"; + version = "20160505.2148"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "pinyinlib.el"; @@ -46865,7 +47076,7 @@ sha256 = "0wbdhd3wqha3ahyakdjj4ki3998l0fafi86l26gkir1bq2qpkmcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyinlib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyinlib"; sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; name = "pinyinlib"; }; @@ -46878,7 +47089,7 @@ pip-requirements = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pip-requirements"; - version = "20160131.1226"; + version = "20160131.1826"; src = fetchFromGitHub { owner = "Wilfred"; repo = "pip-requirements.el"; @@ -46886,7 +47097,7 @@ sha256 = "0j4h6q1s2s9dw1pp22xsajchwg8nh3x4x5qxbzf19i1xbpcghw7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -46899,7 +47110,7 @@ pivotal-tracker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pivotal-tracker"; - version = "20151203.1450"; + version = "20151203.2050"; src = fetchFromGitHub { owner = "jxa"; repo = "pivotal-tracker"; @@ -46907,7 +47118,7 @@ sha256 = "1sbwqrk9nciqwm53sfbq3nr9f9zzpz79dmxs8yp005dk7accdlls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pivotal-tracker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pivotal-tracker"; sha256 = "195wcfn434yp0p93zqih1snkkg1v7nxgb4gn0klajahmyrrjq2a2"; name = "pivotal-tracker"; }; @@ -46920,7 +47131,7 @@ pixie-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, inf-clojure, lib, melpaBuild }: melpaBuild { pname = "pixie-mode"; - version = "20150122.24"; + version = "20150122.624"; src = fetchFromGitHub { owner = "johnwalker"; repo = "pixie-mode"; @@ -46928,7 +47139,7 @@ sha256 = "0nnvf2p593gn8sbyrvczyll030xgnkxn900a2hy7ia7xh0wmvddp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixie-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixie-mode"; sha256 = "16z15yh78837k548xk5widdmy6fv03vym6q54i40knmgf5cllsl8"; name = "pixie-mode"; }; @@ -46941,7 +47152,7 @@ pixiv-novel-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pixiv-novel-mode"; - version = "20160220.921"; + version = "20160220.1521"; src = fetchFromGitHub { owner = "zonuexe"; repo = "pixiv-novel-mode.el"; @@ -46949,7 +47160,7 @@ sha256 = "18rvnvm097ca4yc1nfswdv7dfqg36insnif5kfj19aa60m9qxl09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -46962,7 +47173,7 @@ pkg-info = callPackage ({ epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pkg-info"; - version = "20150517.743"; + version = "20150517.1343"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "pkg-info.el"; @@ -46970,7 +47181,7 @@ sha256 = "1xkdbyhz9mgdz5zmjm4hh050klsl12w5lkckw2l77ihcxv0vjnf2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -46983,7 +47194,7 @@ pkgbuild-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pkgbuild-mode"; - version = "20151010.1036"; + version = "20151010.1636"; src = fetchFromGitHub { owner = "juergenhoetzel"; repo = "pkgbuild-mode"; @@ -46991,7 +47202,7 @@ sha256 = "077vp3fxwxj7b98ydw6iyi391w3acp73qwk6615yqdylpp66m750"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -47004,7 +47215,7 @@ plan9-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plan9-theme"; - version = "20160111.2223"; + version = "20160112.423"; src = fetchFromGitHub { owner = "john2x"; repo = "plan9-theme.el"; @@ -47012,7 +47223,7 @@ sha256 = "0rpiyp95k14fsc5hdbnj4hs3snh0vm8a2skcplsdwkmb5j9547w1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plan9-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plan9-theme"; sha256 = "0bvr877mc79s1shr82b33ipspz09jzc3809c6pkbw0jqpfid44cc"; name = "plan9-theme"; }; @@ -47025,7 +47236,7 @@ planet-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "planet-theme"; - version = "20160425.2358"; + version = "20160426.558"; src = fetchFromGitHub { owner = "cmack"; repo = "emacs-planet-theme"; @@ -47033,7 +47244,7 @@ sha256 = "1aahyxmjsz9i5d22654bnmis8isbf5fydh0yy03sbiybm2hlyimi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/planet-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/planet-theme"; sha256 = "1mhbydvk7brmkgmij5gpp6l9ixcyh1g3r4fw3kpq8nvgbwknsqc9"; name = "planet-theme"; }; @@ -47046,7 +47257,7 @@ plantuml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plantuml-mode"; - version = "20150601.231"; + version = "20150601.831"; src = fetchFromGitHub { owner = "zwz"; repo = "plantuml-mode"; @@ -47054,7 +47265,7 @@ sha256 = "03nw4af1lgfppsbfq945c9pcz6ynhvpzlfdx3az83zi24b10az8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plantuml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plantuml-mode"; sha256 = "14imiqfgc2j9kjr3aqwzlw8xr1w5hb8i7d4ch709qky036i3lsci"; name = "plantuml-mode"; }; @@ -47067,7 +47278,7 @@ platformio-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "platformio-mode"; - version = "20160327.2120"; + version = "20160328.320"; src = fetchFromGitHub { owner = "ZachMassia"; repo = "PlatformIO-Mode"; @@ -47075,7 +47286,7 @@ sha256 = "04xnk9s5mjr55y36y07k4vnsf841pg70c9wr6vcj5s16h3fhx9nw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/platformio-mode"; sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; @@ -47088,7 +47299,7 @@ play-routes-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "play-routes-mode"; - version = "20160322.1300"; + version = "20160322.1800"; src = fetchFromGitHub { owner = "brocode"; repo = "play-routes-mode"; @@ -47096,7 +47307,7 @@ sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/play-routes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/play-routes-mode"; sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; name = "play-routes-mode"; }; @@ -47109,7 +47320,7 @@ plenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plenv"; - version = "20130707.216"; + version = "20130707.816"; src = fetchFromGitHub { owner = "karupanerura"; repo = "plenv.el"; @@ -47117,7 +47328,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -47130,7 +47341,7 @@ plim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plim-mode"; - version = "20140812.2013"; + version = "20140813.213"; src = fetchFromGitHub { owner = "dongweiming"; repo = "plim-mode"; @@ -47138,7 +47349,7 @@ sha256 = "07hspp4bkb3f5dm0l1arm0w1m04cq4glg81x4a9kf7bl601wzki2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plim-mode"; sha256 = "0247fpvxki5jhxw6swv7pcw0qwxrqnp75acnfss2lf984vggzhxi"; name = "plim-mode"; }; @@ -47151,7 +47362,7 @@ plsense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "plsense"; - version = "20151104.945"; + version = "20151104.1545"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-plsense"; @@ -47159,7 +47370,7 @@ sha256 = "1r2yxa7gqr0z9fwhx38siwjpg73a93rdmnhr4h6nm6lr32vviyxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -47172,7 +47383,7 @@ plsense-direx = callPackage ({ direx, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, plsense, yaxception }: melpaBuild { pname = "plsense-direx"; - version = "20140520.1608"; + version = "20140520.2208"; src = fetchFromGitHub { owner = "aki2o"; repo = "plsense-direx"; @@ -47180,7 +47391,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -47192,13 +47403,13 @@ }) {}; plsql = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "plsql"; - version = "20121115.543"; + version = "20121115.1143"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/plsql.el"; sha256 = "1v0wvy9fd1qq3aq83x5jv3953n0n51x7y2r2ql11j0h8xasy42p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsql"; sha256 = "1jvppmfdll34b8dav5dvbabfxiapv92p7lciblj59a707bbdb7l1"; name = "plsql"; }; @@ -47211,7 +47422,7 @@ plur = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "plur"; - version = "20160504.524"; + version = "20160504.1124"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "plur"; @@ -47219,7 +47430,7 @@ sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plur"; sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; name = "plur"; }; @@ -47231,14 +47442,14 @@ }) {}; pmdm = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pmdm"; - version = "20151109.1336"; + version = "20151109.1936"; src = fetchhg { url = "https://bitbucket.com/inigoserna/pmdm.el"; rev = "f50a54774156"; sha256 = "0x3s9fj41n6a21la762qm1si9ysv3zj5bbp6ykfskr73sxq6s9ff"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pmdm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pmdm"; sha256 = "1zmy6cbnqhsbwc5vx30mx45xn88d2186hgrl75ws7vvbl197j03b"; name = "pmdm"; }; @@ -47248,10 +47459,31 @@ license = lib.licenses.free; }; }) {}; + pocket-api = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: + melpaBuild { + pname = "pocket-api"; + version = "20160530.1638"; + src = fetchFromGitHub { + owner = "lujun9972"; + repo = "pocket-api.el"; + rev = "355424350e9367c67aa8b4e430568390e3960b67"; + sha256 = "1m3rczp5jyh83gfmv4rq11ya5vqly5zf7h4h6za3s5s3n38lldyc"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pocket-api"; + sha256 = "1f5j491wbqgbx6zlb0zdajca5il0628vr9a38y0n3x0h69wm0cx5"; + name = "pocket-api"; + }; + packageRequires = [ emacs request ]; + meta = { + homepage = "https://melpa.org/#/pocket-api"; + license = lib.licenses.free; + }; + }) {}; point-stack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "point-stack"; - version = "20141226.10"; + version = "20141226.610"; src = fetchFromGitHub { owner = "dgutov"; repo = "point-stack"; @@ -47259,7 +47491,7 @@ sha256 = "0nqv63yy0qpxhblzmkyvla90p9a7729fqxvhkfld9jxfqpgv1xyp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/point-stack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/point-stack"; sha256 = "0201gka1izqgxyivan60jbg9x1mmsw5dscxacasg97ffsciwbfr9"; name = "point-stack"; }; @@ -47271,13 +47503,13 @@ }) {}; point-undo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "point-undo"; - version = "20100504.429"; + version = "20100504.1029"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/point-undo.el"; sha256 = "13c1iw77ccvrfrv4lyljg8fpm7xqhnv29yzvig8wr8b5j2vsd8bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/point-undo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/point-undo"; sha256 = "0by7ifj1lf0w9pp7v1j9liqjs40k8kk9yjnznxchq172816zbg3k"; name = "point-undo"; }; @@ -47290,7 +47522,7 @@ pointback = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pointback"; - version = "20100210.1052"; + version = "20100210.1652"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "pointback"; @@ -47298,7 +47530,7 @@ sha256 = "016cjy5pnnqccjqb0njqc9jq6kf6p165nlki83b8c0sj75yxghav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pointback"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pointback"; sha256 = "198q511hixvzc13b3ih89xs9g47rdvbiixn5baqakpmpx3a12hz4"; name = "pointback"; }; @@ -47311,7 +47543,7 @@ polymode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "polymode"; - version = "20160520.2129"; + version = "20160521.329"; src = fetchFromGitHub { owner = "vspinu"; repo = "polymode"; @@ -47319,7 +47551,7 @@ sha256 = "0q1n4nm21vjqcmdmm19yynzn3z97q83wk9g7kkrdx0mln9vzm13p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/polymode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/polymode"; sha256 = "0md02l7vhghvzplxa04sphimhphmksvmz079zykxajcvpm2rgwc8"; name = "polymode"; }; @@ -47332,7 +47564,7 @@ pomodoro = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pomodoro"; - version = "20150716.1346"; + version = "20150716.1946"; src = fetchFromGitHub { owner = "baudtack"; repo = "pomodoro.el"; @@ -47340,7 +47572,7 @@ sha256 = "1dlk0ypw8316vgvb7z2p7fvaiz1wcy1l8crixypaya1zdsnh9v1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pomodoro"; sha256 = "075sbypas8xlhsw8wg3mgi3fn5yf7xb3klyjgyy8wfkgdz0269f8"; name = "pomodoro"; }; @@ -47353,7 +47585,7 @@ pony-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pony-mode"; - version = "20151028.602"; + version = "20151028.1102"; src = fetchFromGitHub { owner = "davidmiller"; repo = "pony-mode"; @@ -47361,7 +47593,7 @@ sha256 = "1g1yw0ykwswl9dnicyi7kxskqqry40wjykshgrqhs4k09j3jnacr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-mode"; sha256 = "1hgiryhpxv30bjlgv9pywzqn2ypimwzdhx03znqvn56zrwn1frnl"; name = "pony-mode"; }; @@ -47374,7 +47606,7 @@ pony-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "pony-snippets"; - version = "20160204.2311"; + version = "20160205.511"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "pony-snippets"; @@ -47382,7 +47614,7 @@ sha256 = "002jhj47b9aqrfjy8b31ccbqhah5sn9wn7dmrhm1wbbgj9rfyw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-snippets"; sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; @@ -47395,15 +47627,15 @@ ponylang-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ponylang-mode"; - version = "20160519.1830"; + version = "20160527.1441"; src = fetchFromGitHub { owner = "SeanTAllen"; repo = "ponylang-mode"; - rev = "25dfb3e8f34513ee857e1cae37aef1c4ccd4115d"; - sha256 = "02jg77ji2fmy6mk0xh4l141clafjwfg9c10hwhwskgxn4bw7p8gf"; + rev = "ed7ccf6d62a06e07eeec7020a931c0af62d8ae4d"; + sha256 = "0ks1g381sx8if93hg6ndsc1lnv1msrd8f7zf8ykk1jrsfy9mn48h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -47416,7 +47648,7 @@ pophint = callPackage ({ fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, popup, yaxception }: melpaBuild { pname = "pophint"; - version = "20150930.1334"; + version = "20150930.1934"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-pophint"; @@ -47424,7 +47656,7 @@ sha256 = "0n1w1adglbavqgrv16rzhym72c3q083mh0c8yl5lj7adn4nr4gr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -47437,7 +47669,7 @@ poporg = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "poporg"; - version = "20150603.2147"; + version = "20150604.347"; src = fetchFromGitHub { owner = "QBobWatson"; repo = "poporg"; @@ -47445,7 +47677,7 @@ sha256 = "0ja1kq4pl62zxlzwv2m8zzb55lg2fl366bi9pzvxl38frvbqg8qx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/poporg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/poporg"; sha256 = "08s42689kd78h2fmw230ja5dd3c3b4lx5mzadncwq0lj91y86kd8"; name = "poporg"; }; @@ -47458,15 +47690,15 @@ popup = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "popup"; - version = "20160410.33"; + version = "20160531.1325"; src = fetchFromGitHub { owner = "auto-complete"; repo = "popup-el"; - rev = "8eee9c57288d12073d331a9eb4c172358d268455"; - sha256 = "0a85ih4r8scxadfrj18kvd8k7p9s4wpi780w0rp5iby0fyh94bwl"; + rev = "441ee40515038de3680768930157fce667ba872a"; + sha256 = "1h1l0wh3i1ih30455l5b73w8d3pvd0p1ib0mn5i671iwk2hyxc12"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -47479,7 +47711,7 @@ popup-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "popup-complete"; - version = "20141108.2208"; + version = "20141109.408"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-popup-complete"; @@ -47487,7 +47719,7 @@ sha256 = "1q9zajv6g7mi6k98kzq3498nhmdkp1z9d2b8vgzbk7745d39gm9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -47500,7 +47732,7 @@ popup-imenu = callPackage ({ dash, fetchFromGitHub, fetchurl, flx-ido, lib, melpaBuild, popup }: melpaBuild { pname = "popup-imenu"; - version = "20160409.810"; + version = "20160409.1410"; src = fetchFromGitHub { owner = "ancane"; repo = "popup-imenu"; @@ -47508,7 +47740,7 @@ sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -47521,7 +47753,7 @@ popup-kill-ring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup, pos-tip }: melpaBuild { pname = "popup-kill-ring"; - version = "20131020.1454"; + version = "20131020.2054"; src = fetchFromGitHub { owner = "waymondo"; repo = "popup-kill-ring"; @@ -47529,7 +47761,7 @@ sha256 = "1zdwlmk3vr0mq0dxrnkqjncalnbmvpxc0lma2sv3a4czl8yv0inn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-kill-ring"; sha256 = "1jfw669xi2983jj3hiw5lyhc0rc0318qrmqx03f7m4ylg70dgxip"; name = "popup-kill-ring"; }; @@ -47542,7 +47774,7 @@ popup-switcher = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "popup-switcher"; - version = "20160518.639"; + version = "20160518.1239"; src = fetchFromGitHub { owner = "kostafey"; repo = "popup-switcher"; @@ -47550,7 +47782,7 @@ sha256 = "15vp1iqc1k9hlvam3vcw7hd2dr8wzdwrcls2zvw76jhlbybl0rbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-switcher"; sha256 = "1888xiqhrn7fcpjnr3smchmmqwfayfbbyvdkdb79c6drzjcvidp1"; name = "popup-switcher"; }; @@ -47563,7 +47795,7 @@ popwin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "popwin"; - version = "20150315.900"; + version = "20150315.1400"; src = fetchFromGitHub { owner = "m2ym"; repo = "popwin-el"; @@ -47571,7 +47803,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -47584,7 +47816,7 @@ portage-navi = callPackage ({ concurrent, ctable, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "portage-navi"; - version = "20141208.855"; + version = "20141208.1455"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-portage-navi"; @@ -47592,7 +47824,7 @@ sha256 = "1pm4x74pw67m2izr9dir201dn5g9icgk6h2j8rqvasgx8v8krv3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/portage-navi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/portage-navi"; sha256 = "1wjkh8xj5120v9fz1nrpkd6x4f22ni8h2lfkd82df7kjz6bzdfwg"; name = "portage-navi"; }; @@ -47605,7 +47837,7 @@ pos-tip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pos-tip"; - version = "20150318.1113"; + version = "20150318.1613"; src = fetchFromGitHub { owner = "pitkali"; repo = "pos-tip"; @@ -47613,7 +47845,7 @@ sha256 = "168hl76rhj6f5ncmrij4rd3z55228h6kb23384h2phsjw0avgf23"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -47626,7 +47858,7 @@ pov-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pov-mode"; - version = "20120825.1016"; + version = "20120825.1616"; src = fetchFromGitHub { owner = "melmothx"; repo = "pov-mode"; @@ -47634,7 +47866,7 @@ sha256 = "14silfng5rbdc8hnzswjmqk705pncjlk8iphjcxcm799h44pnlcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pov-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pov-mode"; sha256 = "1xzdmlfi5ixdh08v0ca80zkh9n3gfn4ql5pnl3jh745wbj9azxp9"; name = "pov-mode"; }; @@ -47647,7 +47879,7 @@ pow = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pow"; - version = "20140420.406"; + version = "20140420.1006"; src = fetchFromGitHub { owner = "yukihr"; repo = "emacs-pow"; @@ -47655,7 +47887,7 @@ sha256 = "1jzqav2lchr0ggckjq9rwlxwryi7m7xnmn8471zgiamd1h04ddqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pow"; sha256 = "05wc4ylp0xjqbzrm046lcsv4aw2a6s2rfv1ra38bfr0dai6qrsrn"; name = "pow"; }; @@ -47668,15 +47900,15 @@ powerline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powerline"; - version = "20160505.255"; + version = "20160601.1624"; src = fetchFromGitHub { owner = "milkypostman"; repo = "powerline"; - rev = "cafd957b33dbe8dc318b423082830a1f910da333"; - sha256 = "03828l2c8gxj4c9i6b16ynwkdr48gccwkpa1i0wk798f93kv8brw"; + rev = "9c46ad31bf1cea66a7b06f55d0c32c374f39eff2"; + sha256 = "07pbhqhzkvdnrggc5fc430gm0qdfmx8fhr2s0xx2g0a3hjiwbss2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -47689,7 +47921,7 @@ powerline-evil = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline }: melpaBuild { pname = "powerline-evil"; - version = "20151112.1010"; + version = "20151112.1610"; src = fetchFromGitHub { owner = "raugturi"; repo = "powerline-evil"; @@ -47697,7 +47929,7 @@ sha256 = "1c8y4r7zdr6764kzs5bc64idv2pfjvi78lg2f1d2hp1595ia8y5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline-evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline-evil"; sha256 = "0cdnmq9f06lzkj0hs948a7j5sgg6fl5f36bfnyaxgss23akbfjhr"; name = "powerline-evil"; }; @@ -47710,7 +47942,7 @@ powershell = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "powershell"; - version = "20160210.2158"; + version = "20160211.358"; src = fetchFromGitHub { owner = "jschaf"; repo = "powershell.el"; @@ -47718,7 +47950,7 @@ sha256 = "1ym373mjyk3vfbw2c918zgaf9m35j8bkrpcj9d8m9drf4h7a8d3b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -47730,13 +47962,13 @@ }) {}; pp-c-l = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pp-c-l"; - version = "20151231.1847"; + version = "20160101.47"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pp-c-l.el"; sha256 = "10gsdjdr8qngimqh57qxcljjnypbf38asxqb3zlfwc2ls52fc19q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pp-c-l"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pp-c-l"; sha256 = "0gbqxlrsh9lcdkrj8bqh1mpxyhdlwbaxz4ndp5s90inmisaqb83v"; name = "pp-c-l"; }; @@ -47748,13 +47980,13 @@ }) {}; pp-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pp-plus"; - version = "20160521.2240"; + version = "20160523.2339"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pp+.el"; - sha256 = "1z4y3ahl22h7z7ssfcfmrwvsjrx12zdb92bfqibzkdj7g4a1r8gg"; + sha256 = "0yvls8sw5rvka20xlqazl46crpkw91cy9qmj6p6y53sps1rj5wzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pp+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pp+"; sha256 = "1ng5x7dp85y6yqj6q43h08qdnapg2j1ab8rmc47w4w79d1pryniq"; name = "pp-plus"; }; @@ -47767,7 +47999,7 @@ ppd-sr-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist-drawer, sr-speedbar }: melpaBuild { pname = "ppd-sr-speedbar"; - version = "20151108.724"; + version = "20151108.1324"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "ppd-sr-speedbar"; @@ -47775,7 +48007,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -47788,7 +48020,7 @@ preproc-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "preproc-font-lock"; - version = "20151107.1518"; + version = "20151107.2118"; src = fetchFromGitHub { owner = "Lindydancer"; repo = "preproc-font-lock"; @@ -47796,7 +48028,7 @@ sha256 = "0yrfd9qaz16nqcvjyjm9qci526qgkv6k51q5752h3iyqkxnss1pd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/preproc-font-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/preproc-font-lock"; sha256 = "1ra0lgjv6713zym2h8pblf2ryf0f658l1khbxbwnxl023gkyj9v4"; name = "preproc-font-lock"; }; @@ -47809,7 +48041,7 @@ preseed-generic-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "preseed-generic-mode"; - version = "20150119.1541"; + version = "20150119.2141"; src = fetchFromGitHub { owner = "suntong"; repo = "preseed-generic-mode"; @@ -47817,7 +48049,7 @@ sha256 = "1dyi9nc2q43jf87xiz9xw42irrbla2vyixifdiibh6nm9misnfj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/preseed-generic-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/preseed-generic-mode"; sha256 = "14vbx6y7h4vqc5kkgj4mbr9zj6gqf6ib3hh2917m203s8y87lsfl"; name = "preseed-generic-mode"; }; @@ -47827,15 +48059,36 @@ license = lib.licenses.free; }; }) {}; + prettify-greek = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "prettify-greek"; + version = "20160603.1108"; + src = fetchFromGitLab { + owner = "fommil"; + repo = "emacs-prettify-greek"; + rev = "698d07a6ffe85f6fb53f3bfec4f49380c25cfd90"; + sha256 = "0g2bxa7mwfkc8navbi2w28rd4f4zqphxi13kwmd2p83g3wavd99v"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prettify-greek"; + sha256 = "1izl6r6i3zbhd7r7lz2k42yyz6qcng11wfmb7lx4883dj00flsl7"; + name = "prettify-greek"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/prettify-greek"; + license = lib.licenses.free; + }; + }) {}; pretty-lambdada = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-lambdada"; - version = "20151231.1848"; + version = "20160101.48"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/pretty-lambdada.el"; sha256 = "1fn24399wsn12453py0hw2vbbkrkakiwi06cjvjzsdk7g3326ma4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-lambdada"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-lambdada"; sha256 = "16v5fgifz672c37xyzv557mm6za4rldvdrb26vdymxqg4fy62fd6"; name = "pretty-lambdada"; }; @@ -47848,7 +48101,7 @@ pretty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-mode"; - version = "20160416.1034"; + version = "20160416.1634"; src = fetchFromGitHub { owner = "akatov"; repo = "pretty-mode"; @@ -47856,7 +48109,7 @@ sha256 = "0lrxd87p62s16bcp9r7hj1dnn67mgy2akslq4m9vb0xc7qckwr7y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -47869,7 +48122,7 @@ pretty-sha-path = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-sha-path"; - version = "20141105.1326"; + version = "20141105.1926"; src = fetchFromGitHub { owner = "alezost"; repo = "pretty-sha-path.el"; @@ -47877,7 +48130,7 @@ sha256 = "1n0594msgy53ia58gjfkm3z3cnmq52wrq5992fm28s4jgazbgdfd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-sha-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-sha-path"; sha256 = "0qqsg383391dnsk46xm8plq7xmdmnis3iv7h7dmchpzd99bkm9lq"; name = "pretty-sha-path"; }; @@ -47890,7 +48143,7 @@ pretty-symbols = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pretty-symbols"; - version = "20140814.559"; + version = "20140814.1159"; src = fetchFromGitHub { owner = "drothlis"; repo = "pretty-symbols"; @@ -47898,7 +48151,7 @@ sha256 = "1f00l9f6an1mh8yhf629mw0p37m4jcpl8giz47xbdyw1k6bqn830"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-symbols"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-symbols"; sha256 = "0d1ad2x4md0n3fad3s2355wm8hl311qdhih1gkdqwdaj4i1d6gvb"; name = "pretty-symbols"; }; @@ -47911,7 +48164,7 @@ private = callPackage ({ aes, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "private"; - version = "20150121.2057"; + version = "20150122.257"; src = fetchFromGitHub { owner = "cheunghy"; repo = "private"; @@ -47919,7 +48172,7 @@ sha256 = "0zng64f5vwnpkf9fk59yv1ndc646q608a6awr1y9qk0mhzbfzhqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/private"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/private"; sha256 = "1glpcwcyndyn683q9mg99hr0h3l8pz7rrhbnfak01v826d5cnk9g"; name = "private"; }; @@ -47932,7 +48185,7 @@ private-diary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "private-diary"; - version = "20151216.1157"; + version = "20151216.1757"; src = fetchFromGitHub { owner = "cacology"; repo = "private-diary"; @@ -47940,7 +48193,7 @@ sha256 = "1pxr5a9ik09k0f58lawhxiv179n5j8q24zhrs9vjk93yskl1ydwn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/private-diary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/private-diary"; sha256 = "0dgnf375c00nlkp66kbkzsf469063l03b9miiplbhd63zshlv1i1"; name = "private-diary"; }; @@ -47953,7 +48206,7 @@ proc-net = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "proc-net"; - version = "20130321.2012"; + version = "20130322.112"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-proc-net"; @@ -47961,7 +48214,7 @@ sha256 = "0nly5h0d6w8dc08ifb2fiqcn4cqcn9crkh2wn0jzlz4zd2x75qrb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/proc-net"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/proc-net"; sha256 = "0562x2s3kk9vlaavak4lya1nlmn4mwlzlc7nw1l3687q023z4hmv"; name = "proc-net"; }; @@ -47974,7 +48227,7 @@ processing-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "processing-mode"; - version = "20150217.732"; + version = "20150217.1332"; src = fetchFromGitHub { owner = "ptrv"; repo = "processing2-emacs"; @@ -47982,7 +48235,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -47995,7 +48248,7 @@ processing-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "processing-snippets"; - version = "20140426.1028"; + version = "20140426.1628"; src = fetchFromGitHub { owner = "ptrv"; repo = "processing2-emacs"; @@ -48003,7 +48256,7 @@ sha256 = "1smw786dcjvdn2j6bwqn2rfzhw039rrhxiv7vlrgzm0fyy2v1q6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -48016,7 +48269,7 @@ prodigy = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "prodigy"; - version = "20160429.254"; + version = "20160429.854"; src = fetchFromGitHub { owner = "rejeep"; repo = "prodigy.el"; @@ -48024,7 +48277,7 @@ sha256 = "0yy4ximahmj3kbxn6bhag853vyy56g1n007qnd8hjsl1xawlin5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -48037,7 +48290,7 @@ professional-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "professional-theme"; - version = "20150315.700"; + version = "20150315.1200"; src = fetchFromGitHub { owner = "juanjux"; repo = "emacs-professional-theme"; @@ -48045,7 +48298,7 @@ sha256 = "0hx7rxa3smdippcpj4j63k0r5l4wflllb0vpnwwknc9j93r7042b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/professional-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/professional-theme"; sha256 = "1l8nisn2c124cpylyahr76hfpdim2125zrns2897p466l5wcxcx5"; name = "professional-theme"; }; @@ -48058,7 +48311,7 @@ prognth = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prognth"; - version = "20130920.1359"; + version = "20130920.1959"; src = fetchFromGitHub { owner = "Fuco1"; repo = "prognth"; @@ -48066,7 +48319,7 @@ sha256 = "1szxsbk470fg3jp70r20va9hnnf4jj0mb7kxdkn6rd7ky6w34lwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prognth"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prognth"; sha256 = "0hr5a3s0ij4hvn424v885z7pcs62yqm9mamw5b096hgjxgjf6ylm"; name = "prognth"; }; @@ -48079,7 +48332,7 @@ programmer-dvorak = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "programmer-dvorak"; - version = "20150426.2137"; + version = "20150427.337"; src = fetchFromGitHub { owner = "yangchenyun"; repo = "programmer-dvorak"; @@ -48087,7 +48340,7 @@ sha256 = "1yklm43d0ppyf4simhqab6m892z4mmxs2145lzw6kpizixavcv00"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/programmer-dvorak"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/programmer-dvorak"; sha256 = "1w8r35hkl6qy9a89l0m74x9q2vcc4h2hvmi3r2hqcy2ypkn5l5bv"; name = "programmer-dvorak"; }; @@ -48100,7 +48353,7 @@ project-explorer = callPackage ({ cl-lib ? null, emacs, es-lib, es-windows, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-explorer"; - version = "20150503.2014"; + version = "20150504.214"; src = fetchFromGitHub { owner = "sabof"; repo = "project-explorer"; @@ -48108,7 +48361,7 @@ sha256 = "04l4m3kxbwvyw9xy6cwakrdxxdswrrs7sya8zn6m738aawbr1mcd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -48121,13 +48374,13 @@ project-local-variables = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-local-variables"; - version = "20080502.1252"; + version = "20080502.1852"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/project-local-variables.el"; sha256 = "1bb5b6hxg3gvwf0sqwkd97nnipsmr60py0rnsfhgvizn4cj3khhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-local-variables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-local-variables"; sha256 = "0mrf7p420rmjm8ydwc5blpxr6299pdg3sy3jwz2zz0420gkp0ihl"; name = "project-local-variables"; }; @@ -48140,7 +48393,7 @@ project-persist = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-persist"; - version = "20150519.1624"; + version = "20150519.2224"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "project-persist"; @@ -48148,7 +48401,7 @@ sha256 = "1fvjap0bsyw5q92q50wk8c81yv4g8nqb6jdlnarf80glwk50avrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -48161,7 +48414,7 @@ project-persist-drawer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, project-persist }: melpaBuild { pname = "project-persist-drawer"; - version = "20151108.722"; + version = "20151108.1322"; src = fetchFromGitHub { owner = "rdallasgray"; repo = "project-persist-drawer"; @@ -48169,7 +48422,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -48182,14 +48435,14 @@ project-root = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "project-root"; - version = "20110206.1530"; + version = "20110206.2130"; src = fetchhg { url = "https://bitbucket.com/piranha/project-root"; rev = "fcd9df2eadca"; sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -48202,15 +48455,15 @@ projectile = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "projectile"; - version = "20160522.1219"; + version = "20160526.1732"; src = fetchFromGitHub { owner = "bbatsov"; repo = "projectile"; - rev = "4f3282ddb176c7fbb9b6051e12aead119b519035"; - sha256 = "0pzyiwdvv3d0zh2dyrm7084jcd4pz29hmjfd3x6vcdc01h7dw16m"; + rev = "80826374506a94fd3c4316c49ba89b822fe22701"; + sha256 = "1364d941qs2m4193xk8x5v77bzk75qywm9jl2h2hw5wxgjdqii5m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -48223,7 +48476,7 @@ projectile-codesearch = callPackage ({ codesearch, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projectile-codesearch"; - version = "20151228.320"; + version = "20151228.920"; src = fetchFromGitHub { owner = "abingham"; repo = "codesearch.el"; @@ -48231,7 +48484,7 @@ sha256 = "0ch3naqp3ji0q4blpjfr1xbzgzxhw10h08y2akik96kk1pnkwism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-codesearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-codesearch"; sha256 = "0jgvs9is59q45wh2a7k5sb6vj179ixqgj5dlndj9r6fh59qgrzdk"; name = "projectile-codesearch"; }; @@ -48244,7 +48497,7 @@ projectile-direnv = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, s }: melpaBuild { pname = "projectile-direnv"; - version = "20160305.2038"; + version = "20160306.238"; src = fetchFromGitHub { owner = "christianromney"; repo = "projectile-direnv"; @@ -48252,7 +48505,7 @@ sha256 = "09zyzfqy1i3i8knvh1ajr5jcidjx3jpsyx8qarxfr5kv16pwyfvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-direnv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-direnv"; sha256 = "1s5dapdcblcbcqyv8df26v8wxl8bhrs9ybl5h5qbzz49gigd8nqh"; name = "projectile-direnv"; }; @@ -48265,7 +48518,7 @@ projectile-hanami = callPackage ({ emacs, fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-hanami"; - version = "20160505.911"; + version = "20160505.1511"; src = fetchFromGitHub { owner = "avdgaag"; repo = "projectile-hanami"; @@ -48273,7 +48526,7 @@ sha256 = "1pqmyfz0vil30x739r18zpw9n76297ckisimq2g0xl1irhynsvbk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-hanami"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-hanami"; sha256 = "0qi9i4wdggrmihf1j42fqrf38psmb33rlafg3y6da5r7lpn03j1a"; name = "projectile-hanami"; }; @@ -48286,7 +48539,7 @@ projectile-rails = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, inf-ruby, inflections, lib, melpaBuild, projectile, rake }: melpaBuild { pname = "projectile-rails"; - version = "20160519.339"; + version = "20160519.939"; src = fetchFromGitHub { owner = "asok"; repo = "projectile-rails"; @@ -48294,7 +48547,7 @@ sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -48307,7 +48560,7 @@ projectile-sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile, sift }: melpaBuild { pname = "projectile-sift"; - version = "20160107.515"; + version = "20160107.1115"; src = fetchFromGitHub { owner = "nlamirault"; repo = "sift.el"; @@ -48315,7 +48568,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -48328,7 +48581,7 @@ projectile-speedbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projectile-speedbar"; - version = "20150629.1453"; + version = "20150629.2053"; src = fetchFromGitHub { owner = "anshulverma"; repo = "projectile-speedbar"; @@ -48336,7 +48589,7 @@ sha256 = "0lr3vx1byf0i9jdzbyrvvzyzi1nfddvw5r9f9wm7gpfp5l8772la"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-speedbar"; sha256 = "0dli4gzsiycivh8dwa00lfpbimyg42qygfachzrhi8qy5413pwlp"; name = "projectile-speedbar"; }; @@ -48349,7 +48602,7 @@ projector = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, projectile }: melpaBuild { pname = "projector"; - version = "20151201.1541"; + version = "20151201.2141"; src = fetchFromGitHub { owner = "waymondo"; repo = "projector.el"; @@ -48357,7 +48610,7 @@ sha256 = "0y8zbywin99nhcrs5nzx4d179r84rdy39admajpi0j76v0b9pwl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projector"; sha256 = "0hrinplk607wcc2ibn05pl8ghikv9f3zvymncp6nz95jw9brdapf"; name = "projector"; }; @@ -48370,7 +48623,7 @@ projekt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "projekt"; - version = "20150324.448"; + version = "20150324.948"; src = fetchFromGitHub { owner = "tekai"; repo = "projekt"; @@ -48378,7 +48631,7 @@ sha256 = "0hvvlh24157qjxz82sbg22d4cbrf95xyx202cybp0n1vyxsmjcmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -48391,7 +48644,7 @@ projmake-mode = callPackage ({ dash, fetchFromGitHub, fetchurl, indicators, lib, melpaBuild }: melpaBuild { pname = "projmake-mode"; - version = "20150619.1720"; + version = "20150619.2320"; src = fetchFromGitHub { owner = "ericbmerritt"; repo = "projmake-mode"; @@ -48399,7 +48652,7 @@ sha256 = "1sxxy0s96sgm6i743qwjs0qjpsdr03gqc1cddvvpxbryh42vw9jn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projmake-mode"; sha256 = "192gvmhcz1anl80hpmcjwwd08dljyrap9sk6qj0y85mcnaafm882"; name = "projmake-mode"; }; @@ -48412,7 +48665,7 @@ prompt-text = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prompt-text"; - version = "20160106.909"; + version = "20160106.1509"; src = fetchFromGitHub { owner = "10sr"; repo = "prompt-text-el"; @@ -48420,7 +48673,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -48433,7 +48686,7 @@ prop-menu = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prop-menu"; - version = "20150728.718"; + version = "20150728.1318"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "prop-menu-el"; @@ -48441,7 +48694,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -48454,7 +48707,7 @@ propfont-mixed = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "propfont-mixed"; - version = "20150113.1711"; + version = "20150113.2311"; src = fetchFromGitHub { owner = "ikirill"; repo = "propfont-mixed"; @@ -48462,7 +48715,7 @@ sha256 = "0lch20njy248w7bnvgs7jz0zqasskf5dakmykxwpb48llm6kx95v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/propfont-mixed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/propfont-mixed"; sha256 = "19k0ydpkiviznsngwcqwn4k30r6j8w34pchgpjlsfwq1bndaai9y"; name = "propfont-mixed"; }; @@ -48475,7 +48728,7 @@ prosjekt = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "prosjekt"; - version = "20151127.916"; + version = "20151127.1516"; src = fetchFromGitHub { owner = "abingham"; repo = "prosjekt"; @@ -48483,7 +48736,7 @@ sha256 = "1m8zvrv5aws7b0dffk8y6b5mncdk2c4k90mx69jys10fs0gc5hb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prosjekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prosjekt"; sha256 = "1fn7ii1bq7bjkz27hihclpvx0aabgwy3kv47r9qibjl2jin97rck"; name = "prosjekt"; }; @@ -48496,15 +48749,15 @@ protobuf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "protobuf-mode"; - version = "20150521.2311"; + version = "20150522.511"; src = fetchFromGitHub { owner = "google"; repo = "protobuf"; - rev = "594ce567ab8a0fd77604ae4a1748cc4f88a24cdf"; - sha256 = "0xif4q9082f957l3gdy0n55fnnf369f5wb6048177x3xi26i25g2"; + rev = "20b532544fde1dff34429b52db95c3a96409b73c"; + sha256 = "10rvcpg931cw3aq9bian05yjrwm8361zi9kd8c95bvb53ni572ki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -48514,22 +48767,22 @@ license = lib.licenses.free; }; }) {}; - psc-ide = callPackage ({ cl-lib ? null, company, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: + psc-ide = callPackage ({ cl-lib ? null, company, dash, dash-functional, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "psc-ide"; - version = "20160506.705"; + version = "20160525.1137"; src = fetchFromGitHub { owner = "epost"; repo = "psc-ide-emacs"; - rev = "ab386e64dc67176ae5430d295cc700d2314fc799"; - sha256 = "0qzvv1v0rkhr2rj260niy3gf58631fbhqy07fl71aspmf6dw3j55"; + rev = "f2c76c163e3ea66e2266006e09e999e0a12ebe79"; + sha256 = "0cq6j1q96zdl2afa6sm66ac6rb378mwfw01dba9hg96zqqxf20dl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psc-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psc-ide"; sha256 = "1f8bphrbksz7si9flyhz54brb7w1lcz19pmn92hjwx7kd4nl18i9"; name = "psc-ide"; }; - packageRequires = [ cl-lib company dash s ]; + packageRequires = [ cl-lib company dash dash-functional s ]; meta = { homepage = "https://melpa.org/#/psc-ide"; license = lib.licenses.free; @@ -48538,7 +48791,7 @@ psci = callPackage ({ dash, deferred, f, fetchFromGitHub, fetchurl, lib, melpaBuild, purescript-mode, s }: melpaBuild { pname = "psci"; - version = "20150328.1501"; + version = "20150328.2001"; src = fetchFromGitHub { owner = "ardumont"; repo = "emacs-psci"; @@ -48546,7 +48799,7 @@ sha256 = "08j31bg5vwgirv5n5fsw7w6gncrkpwpjlj2m00dhj8wbvhp503sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -48559,7 +48812,7 @@ psession = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psession"; - version = "20160515.259"; + version = "20160515.859"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "psession"; @@ -48567,7 +48820,7 @@ sha256 = "1fpcb4qpd11mbv733iklnbjg7g4ka05mf5wpa2k6kr3fbvndkx37"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -48580,7 +48833,7 @@ psvn = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psvn"; - version = "20151103.1342"; + version = "20151103.1942"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "psvn"; @@ -48588,7 +48841,7 @@ sha256 = "1jz1g0igpnsjn2r144205bffj10iyp8izm8678mzkhnricxkn0d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psvn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psvn"; sha256 = "1wdww25pjla7c8zf04mvgia1ws8cal9rb7z8g3vn2s3gp68py12n"; name = "psvn"; }; @@ -48601,7 +48854,7 @@ psysh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "psysh"; - version = "20160509.1008"; + version = "20160509.1608"; src = fetchFromGitHub { owner = "zonuexe"; repo = "psysh.el"; @@ -48609,7 +48862,7 @@ sha256 = "0ng0nkr5azbz90jix5y9m9ri8l5jyps3jmgz3wvzd9k99grrik76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psysh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psysh"; sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5"; name = "psysh"; }; @@ -48622,7 +48875,7 @@ pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pt"; - version = "20160119.1117"; + version = "20160119.1717"; src = fetchFromGitHub { owner = "bling"; repo = "pt.el"; @@ -48630,7 +48883,7 @@ sha256 = "0ca8j7xlqxbidqfz2iarwn7qq4v12pwvsq6vzj2473n2g1c09xzj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -48640,10 +48893,31 @@ license = lib.licenses.free; }; }) {}; + pug-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pug-mode"; + version = "20160531.1038"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "emacs-pug-mode"; + rev = "b6208b75237083e728b20815c63ab8f9c4a167fb"; + sha256 = "0yr04yj72dkj520wzzj4a1mk0w653bb8alz15v92mlj5lc8kdjm8"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pug-mode"; + sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85"; + name = "pug-mode"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/pug-mode"; + license = lib.licenses.free; + }; + }) {}; puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "puml-mode"; - version = "20160324.1825"; + version = "20160324.2325"; src = fetchFromGitHub { owner = "skuro"; repo = "puml-mode"; @@ -48651,7 +48925,7 @@ sha256 = "1qszv1xc0h5hj13znxxbqk362m8ada59p0gxss78r2c9k61r5ql4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -48664,7 +48938,7 @@ punctuality-logger = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "punctuality-logger"; - version = "20141120.1531"; + version = "20141120.2131"; src = fetchFromGitLab { owner = "elzair"; repo = "punctuality-logger"; @@ -48672,7 +48946,7 @@ sha256 = "1bkkgs2agy00wivilljkj3a9fsb2ba935icjmhbk46zjc6yf3y6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -48685,7 +48959,7 @@ pungi = callPackage ({ fetchFromGitHub, fetchurl, jedi, lib, melpaBuild, pyvenv }: melpaBuild { pname = "pungi"; - version = "20150222.746"; + version = "20150222.1346"; src = fetchFromGitHub { owner = "mgrbyte"; repo = "pungi"; @@ -48693,7 +48967,7 @@ sha256 = "1viw95y6fha782n1jw7snr7xc00iyf94r4whsm1a2q11vm2d1h21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -48706,15 +48980,15 @@ punpun-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "punpun-theme"; - version = "20160324.1345"; + version = "20160527.1130"; src = fetchFromGitHub { owner = "wasamasa"; repo = "punpun-theme"; - rev = "00eac7d50f4fc4702a375ca6ed39df395cb140e8"; - sha256 = "1qqfv5qn336p6yk5fydphqpnp0p1ar6185ph2la32vy26k44nahd"; + rev = "48ae2f9d9092b65cf3b4816cdaa6bd52efbd8d45"; + sha256 = "131si1wqv0wvdgwbw58y8w90v6z3nd5rf293144brv9d8853icpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punpun-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punpun-theme"; sha256 = "1l7nphh8v7w5w790cwmnp6nw5rciwhgzkvynkrvpiv9chhacx0xg"; name = "punpun-theme"; }; @@ -48727,7 +49001,7 @@ puppet-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info }: melpaBuild { pname = "puppet-mode"; - version = "20160416.1236"; + version = "20160416.1836"; src = fetchFromGitHub { owner = "lunaryorn"; repo = "puppet-mode"; @@ -48735,7 +49009,7 @@ sha256 = "1ly7gkxlkfgx3nzw35f7rwx7x9w6jrhql15jgsrh9slcw3q2rksl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -48748,7 +49022,7 @@ purescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purescript-mode"; - version = "20150316.2128"; + version = "20150317.228"; src = fetchFromGitHub { owner = "dysinger"; repo = "purescript-mode"; @@ -48756,7 +49030,7 @@ sha256 = "0k2plyvd6842yryzrfadbf4h7a9hrjvkcvixclbca2bkvfik3864"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -48769,7 +49043,7 @@ purple-haze-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purple-haze-theme"; - version = "20141014.2229"; + version = "20141015.429"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-purple-haze-theme"; @@ -48777,7 +49051,7 @@ sha256 = "15myw5rkbnnpgzpiipm5xl4cyzymv8hh66x9al4aalb5nf52dckc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purple-haze-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purple-haze-theme"; sha256 = "0ld8k53823786y6f0dqcp0hlqlnmy323vdkanjfs5wg5ib60az1m"; name = "purple-haze-theme"; }; @@ -48790,7 +49064,7 @@ purty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "purty-mode"; - version = "20131004.1859"; + version = "20131005.59"; src = fetchFromGitHub { owner = "jcatw"; repo = "purty-mode"; @@ -48798,7 +49072,7 @@ sha256 = "0qm2xv762cz196aqs445crqrmsks8hpwzpaykzn0chlvdk0m5cv1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purty-mode"; sha256 = "0gbbwl5kg74jf1i1zsr40zg3gw43qmz1l87k0r578v1xvyqmhm1i"; name = "purty-mode"; }; @@ -48811,7 +49085,7 @@ pushbullet = callPackage ({ fetchFromGitHub, fetchurl, grapnel, json ? null, lib, melpaBuild }: melpaBuild { pname = "pushbullet"; - version = "20140809.832"; + version = "20140809.1432"; src = fetchFromGitHub { owner = "theanalyst"; repo = "revolver"; @@ -48819,7 +49093,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -48832,7 +49106,7 @@ px = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "px"; - version = "20141006.848"; + version = "20141006.1448"; src = fetchFromGitHub { owner = "aaptel"; repo = "preview-latex"; @@ -48840,7 +49114,7 @@ sha256 = "10g4imxgpv7a0j40qkx7xf2qnyz80ypd0mv0lf47n9dwln5byln3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/px"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/px"; sha256 = "0xjmz18m2dslh6yq5z32r43zq3svfxn8mhrfbmihglyv2mkwxw44"; name = "px"; }; @@ -48853,7 +49127,7 @@ py-autopep8 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-autopep8"; - version = "20151231.914"; + version = "20151231.1514"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-autopep8.el"; @@ -48861,7 +49135,7 @@ sha256 = "1iw94m1bvsmadlj16f8ymwx0q6f9lqysy7by76hkpiwqqhd2i8rv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -48874,7 +49148,7 @@ py-gnitset = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-gnitset"; - version = "20140224.2310"; + version = "20140225.510"; src = fetchFromGitHub { owner = "quodlibetor"; repo = "py-gnitset"; @@ -48882,7 +49156,7 @@ sha256 = "05803wi7rj73sy9ihkilr6pcn72szfsvgf2dgbdpnqra508rxyb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-gnitset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-gnitset"; sha256 = "0f6ivq4ignb4gfxw2q8qvigvv3fbvvyr87x25wcaz6yipg1lr18r"; name = "py-gnitset"; }; @@ -48895,7 +49169,7 @@ py-import-check = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-import-check"; - version = "20130802.711"; + version = "20130802.1311"; src = fetchFromGitHub { owner = "psibi"; repo = "emacs-py-import-check"; @@ -48903,7 +49177,7 @@ sha256 = "1416hbc64gwn9c8g9lxfx58w60ysi0x8rbps6mfxalavdhbs20sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-import-check"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-import-check"; sha256 = "1261dki0q44sw9h0g1305i2fj1dg9xgwzry50jbn2idcrqg4xf7k"; name = "py-import-check"; }; @@ -48916,7 +49190,7 @@ py-isort = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-isort"; - version = "20150422.1139"; + version = "20150422.1739"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-isort.el"; @@ -48924,7 +49198,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -48937,15 +49211,15 @@ py-smart-operator = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "py-smart-operator"; - version = "20150824.2210"; + version = "20150825.410"; src = fetchFromGitHub { owner = "rmuslimov"; repo = "py-smart-operator"; - rev = "be4e32572d4128143f46e1874eaa6f3da94fdffe"; - sha256 = "05gi17n488r2n6x33nj4a23ci89c9smsbanmap4i302dy0mnmwgd"; + rev = "5e3222e4fc285c48a77c8e4c0e1cbc985a9713c8"; + sha256 = "14gppb354wzbbqv0zp1675p84n07rll9n4i6lncd9bvv1flqsxy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-smart-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-smart-operator"; sha256 = "1n0bdr9z2s1ikhmfz642k94gjzb88anwlb61mh27ay8wqdgm74c4"; name = "py-smart-operator"; }; @@ -48958,7 +49232,7 @@ py-test = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-test"; - version = "20151117.122"; + version = "20151117.722"; src = fetchFromGitHub { owner = "Bogdanp"; repo = "py-test.el"; @@ -48966,7 +49240,7 @@ sha256 = "1s39407z3rxz10r5sshv2vj7s23ylkhg59ixasgnpjk82gl4igpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-test"; sha256 = "1mbwbzg606winf5af7qkg6a1hg79lc7k2miq4d3mwih496l5sinb"; name = "py-test"; }; @@ -48979,7 +49253,7 @@ py-yapf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "py-yapf"; - version = "20160101.712"; + version = "20160101.1312"; src = fetchFromGitHub { owner = "paetzke"; repo = "py-yapf.el"; @@ -48987,7 +49261,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -49000,7 +49274,7 @@ pycarddavel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "pycarddavel"; - version = "20150831.816"; + version = "20150831.1416"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "pycarddavel"; @@ -49008,7 +49282,7 @@ sha256 = "09glwrb9q65qdm4yd0mbi5hwdy2434zm8699ywhs6hqpjacadlmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -49021,7 +49295,7 @@ pycoverage = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pycoverage"; - version = "20160324.2112"; + version = "20160325.212"; src = fetchFromGitHub { owner = "mattharrison"; repo = "pycoverage.el"; @@ -49029,7 +49303,7 @@ sha256 = "0qap6iz865l43mixga7541c2z9kdx8zkkdcgdlgn6n8pyv8iz7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycoverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycoverage"; sha256 = "1jaanmpnawk0r6zfzx18crqml7lv412l2l0iabp345xvfvsh8h1m"; name = "pycoverage"; }; @@ -49042,15 +49316,15 @@ pydoc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pydoc"; - version = "20160403.2033"; + version = "20160530.139"; src = fetchFromGitHub { owner = "statmobile"; repo = "pydoc"; - rev = "6fa87463b6eb4e951c4b8d53f7093fb072b0afd7"; - sha256 = "0vg06snvy3rq5jgnb2xj3sp71mjmpsp1d9cn2vqvahpgpa05c968"; + rev = "5392248e33d83ef05d3b2809b0c6b207786b2644"; + sha256 = "1m0jb5pk1a1ww5jx2y5nz21by4dh7nlnhdn6bigz53ra449rrxii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pydoc"; sha256 = "0sf52cb80yiridsl1pffdr3wpbgxrn2l8vnq03l70djckild477n"; name = "pydoc"; }; @@ -49063,14 +49337,14 @@ pydoc-info = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pydoc-info"; - version = "20110301.334"; + version = "20110301.934"; src = fetchhg { url = "https://bitbucket.com/jonwaltman/pydoc-info"; rev = "151d877c8fb8"; sha256 = "1mzyr6yznkyv99x9q8zx2f270ngjh8s94zvnhcbhidi57inpd1nh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pydoc-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pydoc-info"; sha256 = "0l80g0rzkk3a1wrw2riiywz9wdyxwr5i64jb2h5r8alp9qq1k7mf"; name = "pydoc-info"; }; @@ -49083,7 +49357,7 @@ pyenv-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic }: melpaBuild { pname = "pyenv-mode"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "pyenv-mode"; @@ -49091,7 +49365,7 @@ sha256 = "049wgwygdaa0p8p4pl37wkc06nam9ph17i9gzcg7w0hfwghjrc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -49104,7 +49378,7 @@ pyenv-mode-auto = callPackage ({ f, fetchFromGitHub, fetchurl, lib, melpaBuild, pyenv-mode, s }: melpaBuild { pname = "pyenv-mode-auto"; - version = "20160123.241"; + version = "20160123.841"; src = fetchFromGitHub { owner = "ssbb"; repo = "pyenv-mode-auto"; @@ -49112,7 +49386,7 @@ sha256 = "1sclhzv3w9fg54dg4qhlfbc0p1z5clyr8phrckhypvlwfgbar4b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode-auto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode-auto"; sha256 = "1l7h4fas1vshkh4skxzpw7v2a11s1hwnb20n6a81yh701pbikqnd"; name = "pyenv-mode-auto"; }; @@ -49125,7 +49399,7 @@ pyfmt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyfmt"; - version = "20150521.1656"; + version = "20150521.2256"; src = fetchFromGitHub { owner = "aheaume"; repo = "pyfmt.el"; @@ -49133,7 +49407,7 @@ sha256 = "1rp8zchvclh29rl9a1i82pcqghnhpaqnppaydxc2qx23y9pdgz9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyfmt"; sha256 = "112kjsp763c2plhqlhydpngrabhc58ya7cszvi4119xqw2s699g6"; name = "pyfmt"; }; @@ -49146,7 +49420,7 @@ pyimpsort = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyimpsort"; - version = "20160129.2353"; + version = "20160130.553"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "pyimpsort.el"; @@ -49154,7 +49428,7 @@ sha256 = "05qx1p19dw3nr264shihfn33k579hd0wf4cxki5cqrxi7xzpjgrc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyimpsort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyimpsort"; sha256 = "0kdk3bmryfzvwf8vshfszbih8mwncf4xlb0n0n0yjn0p1n98q99k"; name = "pyimpsort"; }; @@ -49167,15 +49441,15 @@ pylint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pylint"; - version = "20160505.544"; + version = "20160505.1144"; src = fetchFromGitHub { owner = "PyCQA"; repo = "pylint"; - rev = "05eb7fd20e279b5616bea237d0effcbd598a9583"; - sha256 = "0i0bf9rrmk60lqpdpwrmn60is5dzrn0xcwqw15bhqh1rcr4k7yah"; + rev = "b3eda4369f5b217840bc8911fdf2725e8f1408c8"; + sha256 = "1l2xic1b66vbp23zpwks6gb4iz50v3c68hvvcdnvl8w19fl080ig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pylint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pylint"; sha256 = "1138a8dn9y4ypbphs1zfvr8gr4vdjcy0adsl4xfbgsls4kcdwpxx"; name = "pylint"; }; @@ -49188,7 +49462,7 @@ pytest = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pytest"; - version = "20160330.947"; + version = "20160330.1547"; src = fetchFromGitHub { owner = "ionrock"; repo = "pytest-el"; @@ -49196,7 +49470,7 @@ sha256 = "0bg8pqqia9l39ac3s9xrnlyrg1pj2w00vc742qpjdk5349lazdl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pytest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pytest"; sha256 = "0ssib65wa20h8r6156f392l481vns5fcax6w70hcawmn84nficdh"; name = "pytest"; }; @@ -49209,7 +49483,7 @@ python-cell = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-cell"; - version = "20131029.1916"; + version = "20131030.16"; src = fetchFromGitHub { owner = "thisch"; repo = "python-cell.el"; @@ -49217,7 +49491,7 @@ sha256 = "1cnjdgw3x6yb5k06z57xifywlg0kdx9ai4f1ajc0wx9aax8r5gav"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-cell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-cell"; sha256 = "07i3vyci52jvslq28djwkgx1r157wvxd99rvqlxnmmsl5yj4k1jf"; name = "python-cell"; }; @@ -49230,7 +49504,7 @@ python-django = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-django"; - version = "20150822.4"; + version = "20150822.604"; src = fetchFromGitHub { owner = "fgallina"; repo = "python-django.el"; @@ -49238,7 +49512,7 @@ sha256 = "1qckn5bi1ib54hgqbym5qqwzvbv70ria1w3c2x543xlr0l7zga6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-django"; sha256 = "02whx8g8r02mzng7d7bnbkz5n7gyzp5hcnmvd6a3lq106c0h7w9k"; name = "python-django"; }; @@ -49251,7 +49525,7 @@ python-docstring = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-docstring"; - version = "20160509.615"; + version = "20160509.1215"; src = fetchFromGitHub { owner = "glyph"; repo = "python-docstring-mode"; @@ -49259,7 +49533,7 @@ sha256 = "0nlhfxiirs90g8sx3zwf36idnj1nbasrdm0qhpdqs6k6vkndfbgk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-docstring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-docstring"; sha256 = "1vi30y71vflsbprp5j4phbp7x1j24vxn9d6sifaddari0g0zxpfw"; name = "python-docstring"; }; @@ -49272,7 +49546,7 @@ python-environment = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-environment"; - version = "20150310.453"; + version = "20150310.953"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-python-environment"; @@ -49280,7 +49554,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -49293,7 +49567,7 @@ python-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-info"; - version = "20151228.1352"; + version = "20151228.1952"; src = fetchFromGitHub { owner = "Wilfred"; repo = "python-info"; @@ -49301,7 +49575,7 @@ sha256 = "0zk6014dzfrb3y3nhs890x082xf044w0a8nmy6rlrj375lvhfn99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-info"; sha256 = "0kvpz1r2si94rs1iajn1ffmx7a5bgyjnzri36ajdgd5gcgh41dhy"; name = "python-info"; }; @@ -49314,7 +49588,7 @@ python-mode = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "python-mode"; - version = "20160521.310"; + version = "20160521.910"; src = fetchFromGitLab { owner = "python-mode-devs"; repo = "python-mode"; @@ -49322,7 +49596,7 @@ sha256 = "0rk3p1crxxbajvx5d3a38p5ma2zi17pf86xp27y9pyg0bfh2cp14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-mode"; sha256 = "1m7c6c97xpr5mrbyzhcl2cy7ykdz5yjj90mrakd4lknnsbcq205k"; name = "python-mode"; }; @@ -49335,7 +49609,7 @@ python-x = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, folding, lib, melpaBuild, python ? null }: melpaBuild { pname = "python-x"; - version = "20160313.936"; + version = "20160313.1436"; src = fetchFromGitHub { owner = "wavexx"; repo = "python-x.el"; @@ -49343,7 +49617,7 @@ sha256 = "1shz8qha2cqv89hz27aazwd6qbf4qnz17h6hh8in5qxgfsndi7pp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -49353,31 +49627,10 @@ license = lib.licenses.free; }; }) {}; - python3-info = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: - melpaBuild { - pname = "python3-info"; - version = "20151117.131"; - src = fetchFromGitHub { - owner = "dvhansen"; - repo = "python3-info"; - rev = "4530e180ded2ad64774e51742eece3e5ea00c5f5"; - sha256 = "1w29l4zyvcchjdywz2py95qq7bszhldpga2ng75g7p07pq7f2w1p"; - }; - recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python3-info"; - sha256 = "1hma8sphxk95m25s56adgyk7d4blsc02gq5a7vw1pawwvxm2qlz3"; - name = "python3-info"; - }; - packageRequires = []; - meta = { - homepage = "https://melpa.org/#/python3-info"; - license = lib.licenses.free; - }; - }) {}; pythonic = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "pythonic"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "pythonic"; @@ -49385,7 +49638,7 @@ sha256 = "16sp3mg5jzx89lgr3kr61fqw1p9gc5zxq2mi9rpgqi5hkkcpnpgj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -49398,15 +49651,15 @@ pyvenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "pyvenv"; - version = "20160413.356"; + version = "20160527.1342"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "pyvenv"; - rev = "d8121a1c31cbae6fe39a44378629d8905deaa14e"; - sha256 = "19q0hlhnjz77akax01cwbib7b71f8magd3k0nqdlg2p3xm8g07l8"; + rev = "726940c59d584a7e3a6647e149c20e426c3d883d"; + sha256 = "1fqp3khz8rl0frg6kaqj53p0w07ricbnl2xw57c4w776jnmc0npa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -49419,7 +49672,7 @@ qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "qiita"; - version = "20140118.344"; + version = "20140118.944"; src = fetchFromGitHub { owner = "gongo"; repo = "qiita-el"; @@ -49427,7 +49680,7 @@ sha256 = "0ggivlaj29rbbhkjpf3bf7vr96xjzffas0sf5m54qh6nyz6nnha5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -49440,7 +49693,7 @@ qml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "qml-mode"; - version = "20160108.1004"; + version = "20160108.1604"; src = fetchFromGitHub { owner = "coldnew"; repo = "qml-mode"; @@ -49448,7 +49701,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -49461,7 +49714,7 @@ quack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quack"; - version = "20160410.507"; + version = "20160410.1107"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "quack"; @@ -49469,7 +49722,7 @@ sha256 = "0vhzwr2adkprjibi3x4lnsvjxishysma7fhpwzgg28l21qjqc0nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quack"; sha256 = "1l7jw8sx2llbzp3sg5755qdhhyq8jdaggxzzn7icjxxrmj1ji6ii"; name = "quack"; }; @@ -49482,7 +49735,7 @@ quasi-monochrome-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quasi-monochrome-theme"; - version = "20150801.1625"; + version = "20150801.2225"; src = fetchFromGitHub { owner = "lbolla"; repo = "emacs-quasi-monochrome"; @@ -49490,7 +49743,7 @@ sha256 = "0y7mdizx6km3000cqjrirlgwzkq56asnzl8n1bl56pk5d9grfx9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -49503,15 +49756,15 @@ quelpa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, package-build }: melpaBuild { pname = "quelpa"; - version = "20160325.929"; + version = "20160325.1429"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa"; - rev = "867c5c1ba65ef977fe69760d6baf17379a894d40"; - sha256 = "0l9wrx93pf6638fny1qa6a25hs15dpb0mklxcaz2l9bd7r7sx8ri"; + rev = "7ec5c129ec28649701eac2988230e40d26be3f42"; + sha256 = "1kkzy7p0y9iakcl2nciby9x6jll53h56h3kimqc3q9riswihyncq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quelpa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quelpa"; sha256 = "1g53fcy837hpyn9lnmmri0h4c5va61vszhblz4caadqq265hknvs"; name = "quelpa"; }; @@ -49524,7 +49777,7 @@ quelpa-use-package = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, quelpa, use-package }: melpaBuild { pname = "quelpa-use-package"; - version = "20150805.628"; + version = "20150805.1228"; src = fetchFromGitHub { owner = "quelpa"; repo = "quelpa-use-package"; @@ -49532,7 +49785,7 @@ sha256 = "00wnvyw2daiwwd1jyq1ag5jsws8k8jxs3lsj73dagbvqnlywmkm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quelpa-use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quelpa-use-package"; sha256 = "0p09w419kldgl913hgqfzyv2pck27vqq2i1xsx7g29biwgnp9hl9"; name = "quelpa-use-package"; }; @@ -49545,7 +49798,7 @@ quick-buffer-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quick-buffer-switch"; - version = "20151007.1808"; + version = "20151008.8"; src = fetchFromGitHub { owner = "renard"; repo = "quick-buffer-switch"; @@ -49553,7 +49806,7 @@ sha256 = "0kh63nzdzwxksn2ar2i1ds7n96jga2dhhc9gg27p1g2ca66fs6h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quick-buffer-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quick-buffer-switch"; sha256 = "1fsnha3x3pgq582libb3dmxb93aagv1avnc0rigpfd7hv6bagj40"; name = "quick-buffer-switch"; }; @@ -49566,7 +49819,7 @@ quick-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quick-preview"; - version = "20150829.39"; + version = "20150829.639"; src = fetchFromGitHub { owner = "myuhe"; repo = "quick-preview.el"; @@ -49574,7 +49827,7 @@ sha256 = "1cp3z05qjy7qvjjv105ws1j9qykx8sl4s13xff0ijwvjza6ga44c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quick-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quick-preview"; sha256 = "18janbmhbwb6a46fgc1sxl9ww591v60y3wgh2wqh62vdy4ix3bd9"; name = "quick-preview"; }; @@ -49587,7 +49840,7 @@ quickref = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "quickref"; - version = "20160326.1236"; + version = "20160326.1736"; src = fetchFromGitHub { owner = "pd"; repo = "quickref.el"; @@ -49595,7 +49848,7 @@ sha256 = "13svdvww8dbv75lg66xhca6xi08k7k44rsx2ckdf82j9i52y5lw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickref"; sha256 = "0jahi84ra9g7h0cvz3c02zkbkknrzgv48zq32n72lkxl958swqn1"; name = "quickref"; }; @@ -49608,7 +49861,7 @@ quickrun = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quickrun"; - version = "20160307.618"; + version = "20160307.1218"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-quickrun"; @@ -49616,7 +49869,7 @@ sha256 = "0czmv7bdsayckg854jfpmaqs4qj9pdhhn0gsqkfa510d7qz032bj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; @@ -49629,7 +49882,7 @@ quiet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "quiet"; - version = "20160508.856"; + version = "20160508.1456"; src = fetchFromGitHub { owner = "zzkt"; repo = "quiet"; @@ -49637,7 +49890,7 @@ sha256 = "14q7x341gqcxn3bq72wmfxipqmj2dh35kxcrwjkyghbsbd43rv8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quiet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quiet"; sha256 = "1jq65jpx0rlkc0dzy55gs37ybpjzvcv06ahwiw1lk2n92g4pi96a"; name = "quiet"; }; @@ -49650,7 +49903,7 @@ r-autoyas = callPackage ({ ess, fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "r-autoyas"; - version = "20140101.1010"; + version = "20140101.1610"; src = fetchFromGitHub { owner = "mattfidler"; repo = "r-autoyas.el"; @@ -49658,7 +49911,7 @@ sha256 = "0dhljmdlg4p832w9s7rp8vznkpjkwpg8k9hj95cn2h76c0afwz3j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -49671,7 +49924,7 @@ racer = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rust-mode, s }: melpaBuild { pname = "racer"; - version = "20160419.1725"; + version = "20160419.2325"; src = fetchFromGitHub { owner = "racer-rust"; repo = "emacs-racer"; @@ -49679,7 +49932,7 @@ sha256 = "1d128mamvwpjnk2dazhcxvfjw3lf0ix56l85gwsb377v05pn3wzf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -49692,15 +49945,15 @@ racket-mode = callPackage ({ emacs, faceup, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "racket-mode"; - version = "20160213.1204"; + version = "20160603.2248"; src = fetchFromGitHub { owner = "greghendershott"; repo = "racket-mode"; - rev = "dbdffd0bdd3d2deec3a6ea213e7f19be23d84112"; - sha256 = "1clpwjnph2ygmkn4r98wv3nxkvw4hg6nc01xph517lc7n15a3vri"; + rev = "392f30640a922147f97a481d9a9df2f69221913b"; + sha256 = "1l04p8rql7z5x26ndagvfc1zayz9hyaa06n80x3x6d8gh2kikk8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racket-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racket-mode"; sha256 = "04sr55zrgwyi48sj4ssm4rmm327yxs7hvjhxclnkhaaigrmrv7jb"; name = "racket-mode"; }; @@ -49713,7 +49966,7 @@ railgun = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "railgun"; - version = "20121017.157"; + version = "20121017.757"; src = fetchFromGitHub { owner = "mbriggs"; repo = "railgun.el"; @@ -49721,7 +49974,7 @@ sha256 = "00x09vjd3jz5f73qkf5v1y402zn8vl8dsyfwlq9z646p18ba7gyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/railgun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/railgun"; sha256 = "1a3fplfipk1nv3py1sy0p2adf3w1h4api01h2j5rjlq2jw06kyr0"; name = "railgun"; }; @@ -49734,7 +49987,7 @@ rails-log-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rails-log-mode"; - version = "20140408.25"; + version = "20140408.625"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "rails-log-mode"; @@ -49742,7 +49995,7 @@ sha256 = "1fh8wsb0pa2isr1kgh3v9zmmxq1nlmqwqk4z34dw5wpaiyihmk84"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rails-log-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rails-log-mode"; sha256 = "0h7gfg0c5pwfh18qzg1mx7an9p958ygdfqb54s85mbkv8x3rh1a0"; name = "rails-log-mode"; }; @@ -49755,7 +50008,7 @@ rails-new = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rails-new"; - version = "20141221.349"; + version = "20141221.949"; src = fetchFromGitHub { owner = "cheunghy"; repo = "rails-new"; @@ -49763,7 +50016,7 @@ sha256 = "0cqp2vns7gq377bm6q9n5q0ra1d5yy2x2aiw9q1hswk82xpibj9l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rails-new"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rails-new"; sha256 = "0wgbm6qxqkpsbzj9wccicsphajaii07dl27b8x2vidsyw6ambj5h"; name = "rails-new"; }; @@ -49776,7 +50029,7 @@ railscasts-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "railscasts-theme"; - version = "20150219.1025"; + version = "20150219.1625"; src = fetchFromGitHub { owner = "mikenichols"; repo = "railscasts-theme"; @@ -49784,7 +50037,7 @@ sha256 = "021x1l5kzsbm0qj5a3bngxa7ickm4lbwsdz81a2ks9pi1ivmw205"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/railscasts-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/railscasts-theme"; sha256 = "1z5m8ccx2k18gbzqvg0051mp2myy2qncf4xvv47k80f83pk2hw6r"; name = "railscasts-theme"; }; @@ -49797,7 +50050,7 @@ rainbow-blocks = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-blocks"; - version = "20140306.1333"; + version = "20140306.1933"; src = fetchFromGitHub { owner = "istib"; repo = "rainbow-blocks"; @@ -49805,7 +50058,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -49818,7 +50071,7 @@ rainbow-delimiters = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-delimiters"; - version = "20160501.258"; + version = "20160501.858"; src = fetchFromGitHub { owner = "Fanael"; repo = "rainbow-delimiters"; @@ -49826,7 +50079,7 @@ sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -49839,7 +50092,7 @@ rainbow-identifiers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rainbow-identifiers"; - version = "20141102.1026"; + version = "20141102.1626"; src = fetchFromGitHub { owner = "Fanael"; repo = "rainbow-identifiers"; @@ -49847,7 +50100,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -49860,7 +50113,7 @@ rake = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rake"; - version = "20150831.458"; + version = "20150831.1058"; src = fetchFromGitHub { owner = "asok"; repo = "rake"; @@ -49868,7 +50121,7 @@ sha256 = "1wcs8j8rdls0n3v8zdpk2n5riwzz2yvjf6b70a5bj7p20gyafhj2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -49881,7 +50134,7 @@ rally-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "rally-mode"; - version = "20160326.1202"; + version = "20160326.1702"; src = fetchFromGitHub { owner = "seanleblanc"; repo = "rally-mode"; @@ -49889,7 +50142,7 @@ sha256 = "13pkp80cv1v3pjff1588cgyx18a31i668lwywll5dk4fxl4zdjvb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rally-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rally-mode"; sha256 = "1vzsh5855bzln3p3235yccl2azpndpc4rh95zrx6p1k62h2kv0y1"; name = "rally-mode"; }; @@ -49902,7 +50155,7 @@ rand-theme = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rand-theme"; - version = "20151219.1835"; + version = "20151220.35"; src = fetchFromGitHub { owner = "gopar"; repo = "rand-theme"; @@ -49910,7 +50163,7 @@ sha256 = "0fmajgqf9j21qn7h35sky5di8cnma432g0ki9d5m41byxp9y1bdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rand-theme"; sha256 = "0h0n1lsxnl12mjrjpra62vblrg8kbp1hk7w1v6makj074d037j2h"; name = "rand-theme"; }; @@ -49923,7 +50176,7 @@ random-splash-image = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "random-splash-image"; - version = "20151002.2130"; + version = "20151003.330"; src = fetchFromGitHub { owner = "kakakaya"; repo = "random-splash-image"; @@ -49931,7 +50184,7 @@ sha256 = "1z25xmz8pl3rsfahw6ay8wx5wbnlxabnzr2dq20m0i5jyci8lqll"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/random-splash-image"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/random-splash-image"; sha256 = "1j454jy4ia2wrgi3fxzjfdqi3z8x13hq8kh62lnb84whs7a1nhik"; name = "random-splash-image"; }; @@ -49944,15 +50197,15 @@ ranger = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ranger"; - version = "20160518.1000"; + version = "20160531.939"; src = fetchFromGitHub { owner = "ralesi"; repo = "ranger.el"; - rev = "5a92c4ab9ac09e4d1cb9a9760c8fb61a9586cccc"; - sha256 = "0qrzy64s24zaaldl9kyby29y6752cpdapdaa3khsx7s931war1zy"; + rev = "5273155e2596b0e7e9021012abf97e2431de6105"; + sha256 = "1k7kw97wavf9wk8qvsz1h65b7fa9h7k90l0ys9am1n3hn9g86n4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -49965,7 +50218,7 @@ rase = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rase"; - version = "20120928.1645"; + version = "20120928.2245"; src = fetchFromGitHub { owner = "m00natic"; repo = "rase"; @@ -49973,7 +50226,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -49986,7 +50239,7 @@ rats = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild, s }: melpaBuild { pname = "rats"; - version = "20160315.1445"; + version = "20160315.1945"; src = fetchFromGitHub { owner = "ane"; repo = "rats.el"; @@ -49994,7 +50247,7 @@ sha256 = "0dd9yhxwwk16xkwld9c3hpf9bw8zzc1lyvisp0vn6vcd240j02w0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rats"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rats"; sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; name = "rats"; }; @@ -50007,7 +50260,7 @@ rbenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rbenv"; - version = "20141120.249"; + version = "20141120.849"; src = fetchFromGitHub { owner = "senny"; repo = "rbenv.el"; @@ -50015,7 +50268,7 @@ sha256 = "0yd0rs6fnc6lsfi7pivw5sivh698055r8ifj9vrxb82dcx2y6v2h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -50028,7 +50281,7 @@ rbt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rbt"; - version = "20160129.1351"; + version = "20160129.1951"; src = fetchFromGitHub { owner = "joeheyming"; repo = "rbt.el"; @@ -50036,7 +50289,7 @@ sha256 = "0q5giixk6pv82cf34a0mxmnzh2gdiyq6dzv4ypkkdpz6wsm2ffhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbt"; sha256 = "1mrb6v8zybvhh242vvq0kdvg6cvws7gabfhcydrw5g2njhyqkygm"; name = "rbt"; }; @@ -50049,7 +50302,7 @@ rcirc-alert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-alert"; - version = "20141127.547"; + version = "20141127.1147"; src = fetchFromGitHub { owner = "csantosb"; repo = "rcirc-alert"; @@ -50057,7 +50310,7 @@ sha256 = "0xdyrp0zs2v2glpfwlajmj97wygwi0y492zbp6rp3caa5bj3j4z2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-alert"; sha256 = "0lyd3gz1sflp93xb7xbvk1gh69w468ync1p144avyh2pybl40q4a"; name = "rcirc-alert"; }; @@ -50070,7 +50323,7 @@ rcirc-alertify = callPackage ({ alert, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-alertify"; - version = "20140406.2119"; + version = "20140407.319"; src = fetchFromGitHub { owner = "fgallina"; repo = "rcirc-alertify"; @@ -50078,7 +50331,7 @@ sha256 = "1mpk5rzsil298q3ppv5v9jrn274v71jffyz0jihrksh1wbjzwhlx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-alertify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-alertify"; sha256 = "13448bykmy0jqcajhn2gjiar3m8cingyr8394vxybp2m1zvv0pws"; name = "rcirc-alertify"; }; @@ -50091,7 +50344,7 @@ rcirc-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-color"; - version = "20151130.1058"; + version = "20151130.1658"; src = fetchFromGitHub { owner = "kensanata"; repo = "rcirc-color"; @@ -50099,7 +50352,7 @@ sha256 = "173lhi48dwfp9k7jmgivhcc9f38snz5xlciyjhrafpadq1pir497"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-color"; sha256 = "1a8qqwdc0gw6m1xsnwrj3xldp05p7pabyj6l4bccpg3vf5wbgkn5"; name = "rcirc-color"; }; @@ -50112,7 +50365,7 @@ rcirc-groups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-groups"; - version = "20160115.731"; + version = "20160115.1331"; src = fetchFromGitHub { owner = "dimitri"; repo = "rcirc-groups"; @@ -50120,7 +50373,7 @@ sha256 = "0d99x7dfw5xrn62knvs65lvn6xyy7399xwqyy47bs4n81v25aqbh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-groups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-groups"; sha256 = "1iws3f8vkwrflcj6ni8nmf1wcw1jrlnssm76kzzhag77ry3iswgx"; name = "rcirc-groups"; }; @@ -50133,7 +50386,7 @@ rcirc-notify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-notify"; - version = "20150219.1704"; + version = "20150219.2304"; src = fetchFromGitHub { owner = "nicferrier"; repo = "rcirc-notify"; @@ -50141,7 +50394,7 @@ sha256 = "1k4knsrca626pikgaalqbqwy7im4wz1vrmzzhdrdb4lhdz6sq3q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-notify"; sha256 = "0mwhzkbzhpq4jws05p7qp0kbay8kcblb9xikznm0i8drpdyc617v"; name = "rcirc-notify"; }; @@ -50154,7 +50407,7 @@ rcirc-styles = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rcirc-styles"; - version = "20160206.2150"; + version = "20160207.350"; src = fetchFromGitHub { owner = "aaron-em"; repo = "rcirc-styles.el"; @@ -50162,7 +50415,7 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -50175,7 +50428,7 @@ rdf-prefix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdf-prefix"; - version = "20160517.1423"; + version = "20160517.2023"; src = fetchFromGitHub { owner = "simenheg"; repo = "rdf-prefix"; @@ -50183,7 +50436,7 @@ sha256 = "1ss0y7lwd9bi8nzmhvpfn24vl4xsjk2xclhvfz602c9k18k18qza"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -50196,7 +50449,7 @@ rdp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rdp"; - version = "20120928.2154"; + version = "20120929.354"; src = fetchFromGitHub { owner = "skeeto"; repo = "rdp"; @@ -50204,7 +50457,7 @@ sha256 = "08l96bhghmnckar4i6afj9csqglasmpmby1r7j38ic9bp37z2yqd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdp"; sha256 = "0lj3idwv4fxz8pi8mnxkbhwhzaa1gs6ib4nzly3fc6yiix9ampkz"; name = "rdp"; }; @@ -50217,7 +50470,7 @@ react-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "react-snippets"; - version = "20151104.1840"; + version = "20151105.40"; src = fetchFromGitHub { owner = "johnmastro"; repo = "react-snippets.el"; @@ -50225,7 +50478,7 @@ sha256 = "00j0iqa37yzd7xrgd8xcgpgmjcarhn0yx4zpbnr7z7kzmg24ywa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/react-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/react-snippets"; sha256 = "0chs0h41nb2fdz02hdsaynz7ma8fg66a8m1q1np0464skrsdaj73"; name = "react-snippets"; }; @@ -50238,7 +50491,7 @@ readability = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth, ov }: melpaBuild { pname = "readability"; - version = "20140715.2027"; + version = "20140716.227"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "emacs-readability"; @@ -50246,7 +50499,7 @@ sha256 = "0kg18ybgwcxhv5fiya5d3wn5w9si4914q946gjannk67d6jcq08g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/readability"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/readability"; sha256 = "0kg91ma9k3p5ps467jjz2lw13rv1l8ivwc3zpg6c1rl474ds0qqv"; name = "readability"; }; @@ -50259,7 +50512,7 @@ readline-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "readline-complete"; - version = "20150708.1037"; + version = "20150708.1637"; src = fetchFromGitHub { owner = "monsanto"; repo = "readline-complete.el"; @@ -50267,7 +50520,7 @@ sha256 = "1j5b5xapflwzh8a297gva0l12ralwa9vl5z3bb75c9ksjkhi4nm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/readline-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/readline-complete"; sha256 = "1qymk5ypv6ljk8x49z4jcifz7c2dqcg5181f4hqh67g1byvj2277"; name = "readline-complete"; }; @@ -50280,7 +50533,7 @@ real-auto-save = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "real-auto-save"; - version = "20150701.1115"; + version = "20150701.1715"; src = fetchFromGitHub { owner = "chillaranand"; repo = "real-auto-save"; @@ -50288,7 +50541,7 @@ sha256 = "1kghhps8mqys5l59qwzv3fgy1fvb15cnyaxmk29v818a6khjc5l2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -50301,15 +50554,15 @@ realgud = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, load-relative, loc-changes, melpaBuild, test-simple }: melpaBuild { pname = "realgud"; - version = "20160305.457"; + version = "20160604.643"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-dbgr"; - rev = "cfe2be3d8851de6937da2a9f771e13280ecd60ce"; - sha256 = "0qzwg3g8cqms1xx1yw8h7xck8ym8gb6avnnqx737r078yaa9l8hj"; + rev = "ef21fa276799f7fbcd2a3d473646a24b0ecf08b4"; + sha256 = "0gpv0abbn8ymqa6xr79h3q1m3c6hjfd08vixx6yx2mhs62w425b6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud"; sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; @@ -50322,7 +50575,7 @@ realgud-byebug = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-byebug"; - version = "20160303.740"; + version = "20160303.1340"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-byebug"; @@ -50330,7 +50583,7 @@ sha256 = "01wa8jwwlx5qmn5w83r3ak74hjp89zyhsx13c4ijqfns7d92xjd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-byebug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-byebug"; sha256 = "1m4pqnvnnfzq7b9bv5fkz70pifklddwqrwbwnrfyiawx9vdgrpz9"; name = "realgud-byebug"; }; @@ -50343,7 +50596,7 @@ realgud-old-debuggers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-old-debuggers"; - version = "20160303.354"; + version = "20160303.954"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-old-debuggers"; @@ -50351,7 +50604,7 @@ sha256 = "0jxi5a6mlgwjj14gfajs951180m8r8m4vqx09xz1yyc9qq8ywfk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-old-debuggers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-old-debuggers"; sha256 = "0iwi1byfwcpviaizdw9wzdcjlbk35ql4wfzj0ynh331g0hmibhs9"; name = "realgud-old-debuggers"; }; @@ -50364,7 +50617,7 @@ realgud-pry = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-pry"; - version = "20160303.354"; + version = "20160303.954"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-pry"; @@ -50372,7 +50625,7 @@ sha256 = "1dgxlmdzp1m6xr94nkvh6whvg23yq2d3v6k95vacx0khfbc16w17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-pry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-pry"; sha256 = "1p5ijig5rczndcykllq0vy6w4askwl0yd8b5fqg7yl5yx45r8xgs"; name = "realgud-pry"; }; @@ -50385,7 +50638,7 @@ realgud-rdb2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, realgud }: melpaBuild { pname = "realgud-rdb2"; - version = "20160303.343"; + version = "20160303.943"; src = fetchFromGitHub { owner = "rocky"; repo = "realgud-ruby-debugger2"; @@ -50393,7 +50646,7 @@ sha256 = "1ip22z48vj6a6xh54s26ss10pxhqrdm5k9h28i1vgv5x75kqgxii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud-rdb2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud-rdb2"; sha256 = "0wqvgb3h2b0ys76sq2z462cjv0fajqc41f7wqvf53wfcs2zw4l9y"; name = "realgud-rdb2"; }; @@ -50406,7 +50659,7 @@ rebox2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rebox2"; - version = "20121113.800"; + version = "20121113.1400"; src = fetchFromGitHub { owner = "lewang"; repo = "rebox2"; @@ -50414,7 +50667,7 @@ sha256 = "1xh9nxqfg9abcl41ni69rnwjfgyfr0pbl55dzyxsbh6sb36r3h8z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rebox2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rebox2"; sha256 = "06ra50afjqac9ck1s9gaxy0sqxcb612wzd28s4q4imicqpgfxzjw"; name = "rebox2"; }; @@ -50426,13 +50679,13 @@ }) {}; recentf-ext = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "recentf-ext"; - version = "20130130.1650"; + version = "20130130.2250"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/recentf-ext.el"; sha256 = "15kwkphrlxq6nbmqm95sxv4rykl1d35sjm59ncy07ncqm706h33l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recentf-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recentf-ext"; sha256 = "1m54w1n3ci5j7i1jhw6cs7dgzmxrj1hsrrarqlrd1d4iqhixjzbq"; name = "recentf-ext"; }; @@ -50445,7 +50698,7 @@ recompile-on-save = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recompile-on-save"; - version = "20151126.946"; + version = "20151126.1546"; src = fetchFromGitHub { owner = "maio"; repo = "recompile-on-save.el"; @@ -50453,7 +50706,7 @@ sha256 = "0wk28blnfks987iby0p3qpd4nxnz6sqn4fx8g59gyddjhav51lri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recompile-on-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recompile-on-save"; sha256 = "0bg2p7pk4jlpqc7lg48mxd6zkwnx15r0r7lmsxgx9dv1ilfwrmgn"; name = "recompile-on-save"; }; @@ -50466,7 +50719,7 @@ recover-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recover-buffers"; - version = "20150812.305"; + version = "20150812.905"; src = fetchFromGitHub { owner = "tripleee"; repo = "recover-buffers"; @@ -50474,7 +50727,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -50487,7 +50740,7 @@ rect-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rect-plus"; - version = "20150620.2044"; + version = "20150621.244"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-rectplus"; @@ -50495,7 +50748,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -50508,7 +50761,7 @@ rectangle-utils = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rectangle-utils"; - version = "20160427.1324"; + version = "20160427.1924"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "rectangle-utils"; @@ -50516,7 +50769,7 @@ sha256 = "0i336qakdkvxgyhjfq6b957xqlll156i1a8g1f5xap46v35d6gh3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -50529,7 +50782,7 @@ recursive-narrow = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "recursive-narrow"; - version = "20140902.1327"; + version = "20140902.1927"; src = fetchFromGitHub { owner = "nflath"; repo = "recursive-narrow"; @@ -50537,7 +50790,7 @@ sha256 = "1mj7lyadzn3bwig3f9zariq5z4fg6liqnjvfd34yx88xc52nwf33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recursive-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recursive-narrow"; sha256 = "1bx8l8wjxrkv949c73dp93knbn1iwnblcm8iw822mq2mgbgwsa7f"; name = "recursive-narrow"; }; @@ -50550,7 +50803,7 @@ redis = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redis"; - version = "20150531.1548"; + version = "20150531.2148"; src = fetchFromGitHub { owner = "emacs-pe"; repo = "redis.el"; @@ -50558,7 +50811,7 @@ sha256 = "1rjpf23a8rggjmmxvm1997d3xz03kz84xams486b9ky0n2v02d57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redis"; sha256 = "1awnilb8bk0izp6yw0187ybh9slf1hc51014xvvmj90darxby79a"; name = "redis"; }; @@ -50570,13 +50823,13 @@ }) {}; redo-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "redo-plus"; - version = "20131117.651"; + version = "20131117.1251"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/redo+.el"; sha256 = "1jc4n60spzssa57i3jwrqwy20f741hb271vmmx49riycx1ybx3d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redo+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redo+"; sha256 = "1alfs7k5mydgvzsjmdifcizqgrqjrk2kbh3mabai7nlrwi47w9n2"; name = "redo-plus"; }; @@ -50589,7 +50842,7 @@ redpen-paragraph = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "redpen-paragraph"; - version = "20160512.922"; + version = "20160512.1522"; src = fetchFromGitHub { owner = "karronoli"; repo = "redpen-paragraph.el"; @@ -50597,7 +50850,7 @@ sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -50610,14 +50863,14 @@ redshank = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redshank"; - version = "20120510.1530"; + version = "20120510.2130"; src = fetchgit { url = "http://www.foldr.org/~michaelw/projects/redshank.git"; rev = "f98e68f532e622bcd464292ca4a9cf5fbea14ebb"; - sha256 = "1jdkgvd5xy9hl5q611jwah2n05abjp7qcy9sj4k1z11x0ii62b6p"; + sha256 = "14p39gl4bvicqxf6rjzsyixv8ac6ib2vk680zbi7l55a1kdwaism"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redshank"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redshank"; sha256 = "07s4gja1w8piabkajbzrgq77mkdkxr0jy9bmy2qb9w2svfsyns9b"; name = "redshank"; }; @@ -50630,7 +50883,7 @@ redtick = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "redtick"; - version = "20160516.1716"; + version = "20160516.2316"; src = fetchFromGitHub { owner = "ferfebles"; repo = "redtick"; @@ -50638,7 +50891,7 @@ sha256 = "1c9ngm95b8rqg11m5w69031d8lgyvh9xpnr4h5r6yyg7836hdk2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redtick"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redtick"; sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb"; name = "redtick"; }; @@ -50651,7 +50904,7 @@ refheap = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "refheap"; - version = "20140902.1702"; + version = "20140902.2302"; src = fetchFromGitHub { owner = "Raynes"; repo = "refheap.el"; @@ -50659,7 +50912,7 @@ sha256 = "08kzi2jcfqnlanqzvbk5gq1if7k8qc9gmz5bmvd2mvmx6z436398"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/refheap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/refheap"; sha256 = "0pzark1db9k2pavd5sn89a28gd9j5jlkx3wkhwfzln3y5c1wnvdk"; name = "refheap"; }; @@ -50672,7 +50925,7 @@ regex-dsl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "regex-dsl"; - version = "20100124.528"; + version = "20100124.1128"; src = fetchFromGitHub { owner = "alk"; repo = "elisp-regex-dsl"; @@ -50680,7 +50933,7 @@ sha256 = "1d34jd7is979vfgdy56zkd1m15ng3waiabfpak6dv6ak3cdh5fgx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/regex-dsl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/regex-dsl"; sha256 = "129sapsmvcqqqgcr9xlmxwszsxvsb4nj9g2fxsl4y6r383840jbr"; name = "regex-dsl"; }; @@ -50693,7 +50946,7 @@ regex-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "regex-tool"; - version = "20131104.1734"; + version = "20131104.2334"; src = fetchFromGitHub { owner = "jwiegley"; repo = "regex-tool"; @@ -50701,7 +50954,7 @@ sha256 = "1wr12j16hckvc8bxxgxw280frl12h23cp44sxg28lczl16d9693l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/regex-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/regex-tool"; sha256 = "1nd23vjij5h5gk5l7hbd5ks9ljisn054wp138jx2v6i51izxvh2v"; name = "regex-tool"; }; @@ -50714,7 +50967,7 @@ region-bindings-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "region-bindings-mode"; - version = "20140407.1814"; + version = "20140408.14"; src = fetchFromGitHub { owner = "fgallina"; repo = "region-bindings-mode"; @@ -50722,7 +50975,7 @@ sha256 = "02kfi3c6ydnr7xw611ck66kfjyl5w86dr9vfjv3wjl6ad9jya4zy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/region-bindings-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/region-bindings-mode"; sha256 = "141q4x6rilidpnsm9s78qks9i1v6ng0ydhbzqi39xcaccfyyjb69"; name = "region-bindings-mode"; }; @@ -50735,7 +50988,7 @@ region-state = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "region-state"; - version = "20151128.538"; + version = "20151128.1138"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "region-state.el"; @@ -50743,7 +50996,7 @@ sha256 = "0gsh0x1rqxvzrszdyna9d8b8w22mqnd9yqcwzay2prc6rpl26g1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/region-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/region-state"; sha256 = "1iq2x1w8lqjjiwjja7r3qki6drvydnk171k9fj9g6rk7wslknz8x"; name = "region-state"; }; @@ -50756,7 +51009,7 @@ register-channel = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "register-channel"; - version = "20150513.2359"; + version = "20150514.559"; src = fetchFromGitHub { owner = "YangZhao11"; repo = "register-channel"; @@ -50764,7 +51017,7 @@ sha256 = "01k3v4yiilz1k6drv7b2x6zbjx6dlz7cch8rq63mwc7v8kvdnqmi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/register-channel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/register-channel"; sha256 = "037i2fgxxsfb85vd6xk17wyh7ny6fqfixvb0a18lf8m1hib1gyhr"; name = "register-channel"; }; @@ -50774,10 +51027,30 @@ license = lib.licenses.free; }; }) {}; + related = callPackage ({ cl-lib ? null, fetchgit, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "related"; + version = "20160602.754"; + src = fetchgit { + url = "https://bitbucket.org/lyude/related"; + rev = "dbdcbc1f3c8b02debeaec4073ea71e598e3373d9"; + sha256 = "0dl7lnf5318b0a842qgs5mg2s1c0i4vsl9ji6801z6w53mc46cgv"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/related"; + sha256 = "098rd8rvlx9shbh05zdw7lnrawfkbk4cfan1i963h994538sda1w"; + name = "related"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/related"; + license = lib.licenses.free; + }; + }) {}; relative-buffers = callPackage ({ cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "relative-buffers"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "relative-buffers"; @@ -50785,7 +51058,7 @@ sha256 = "0100maanb1v0hl4pj8ykzlqpr3cvs6ldak5japndm5yngzp6m8ks"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-buffers"; sha256 = "131182yb0pr0d6jibqd8aag4w8hywdyi87ldp77b95gw4bqhr96i"; name = "relative-buffers"; }; @@ -50798,7 +51071,7 @@ relative-line-numbers = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "relative-line-numbers"; - version = "20151006.1746"; + version = "20151006.2346"; src = fetchFromGitHub { owner = "Fanael"; repo = "relative-line-numbers"; @@ -50806,7 +51079,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -50819,7 +51092,7 @@ relax = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "relax"; - version = "20131029.1734"; + version = "20131029.2234"; src = fetchFromGitHub { owner = "technomancy"; repo = "relax.el"; @@ -50827,7 +51100,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -50840,7 +51113,7 @@ remark-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "remark-mode"; - version = "20151004.1255"; + version = "20151004.1855"; src = fetchFromGitHub { owner = "torgeir"; repo = "remark-mode.el"; @@ -50848,7 +51121,7 @@ sha256 = "0w40cx58c0hmc0yzs8maq1389hwha0qwfbz76pc6kpcx14v1gkhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/remark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/remark-mode"; sha256 = "1zl8k3h4acbgb3hmjs2b4a14g0s0vl3xamrqxrr742zmqpr1h0w0"; name = "remark-mode"; }; @@ -50861,7 +51134,7 @@ repeatable-motion = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "repeatable-motion"; - version = "20150629.1412"; + version = "20150629.2012"; src = fetchFromGitHub { owner = "willghatch"; repo = "emacs-repeatable-motion"; @@ -50869,7 +51142,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -50882,7 +51155,7 @@ repl-toggle = callPackage ({ fetchFromGitHub, fetchurl, fullframe, lib, melpaBuild }: melpaBuild { pname = "repl-toggle"; - version = "20160119.721"; + version = "20160119.1321"; src = fetchFromGitHub { owner = "tomterl"; repo = "repl-toggle"; @@ -50890,7 +51163,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -50903,7 +51176,7 @@ replace-from-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-from-region"; - version = "20150406.2029"; + version = "20150407.229"; src = fetchFromGitHub { owner = "rubikitch"; repo = "replace-from-region"; @@ -50911,7 +51184,7 @@ sha256 = "0w9ry16crcgc6aiq0xwzf7b301kkw6i44jc0dhfj621bhgmf30aj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-from-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-from-region"; sha256 = "1p77sajghqkjd7k83nma4qpz682la3zg716jdsnpcwcw0qk9ybcb"; name = "replace-from-region"; }; @@ -50924,7 +51197,7 @@ replace-pairs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-pairs"; - version = "20160207.751"; + version = "20160207.1351"; src = fetchFromGitHub { owner = "davidshepherd7"; repo = "replace-pairs"; @@ -50932,7 +51205,7 @@ sha256 = "169p85rmgashm0g26apkxynmypqk9ndh76kvh572db5kqb8ix0c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-pairs"; sha256 = "0l9674rba25wh6fskvfwkhv99lwlszb177hsfzx39s6b4hshvlsb"; name = "replace-pairs"; }; @@ -50944,13 +51217,13 @@ }) {}; replace-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-plus"; - version = "20160508.1143"; + version = "20160508.1743"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/replace+.el"; sha256 = "1a59nqrs62xzdpi7as00byf3jamr1zsz8jmf0w4mqag4bp79cd40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace+"; sha256 = "1imsgr3v8g2p2mnkzp92ga3nvckr758pblmlha8gh8mb80089krn"; name = "replace-plus"; }; @@ -50963,7 +51236,7 @@ replace-symbol = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "replace-symbol"; - version = "20160517.2012"; + version = "20160518.212"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "replace-symbol-el"; @@ -50971,7 +51244,7 @@ sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -50984,7 +51257,7 @@ repo = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "repo"; - version = "20160114.1414"; + version = "20160114.2014"; src = fetchFromGitHub { owner = "canatella"; repo = "repo-el"; @@ -50992,7 +51265,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -51005,15 +51278,15 @@ req-package = callPackage ({ dash, fetchFromGitHub, fetchurl, ht, lib, log4e, melpaBuild, use-package }: melpaBuild { pname = "req-package"; - version = "20160227.1305"; + version = "20160603.1301"; src = fetchFromGitHub { owner = "edvorg"; repo = "req-package"; - rev = "312c17182e63c67c9e8d65eb06e1ae039bee3b83"; - sha256 = "0905525nw78bz7qs1scmqss5dffp2aabvmwvcvgl6b2bz92w9nb2"; + rev = "fea6f96c3b98939c1273ece962b8af5c4bd6f752"; + sha256 = "03yvgb2iiqp90jncrh5ji5l3v5q86rcqb757x1n2x4xkpjjsxa19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -51026,7 +51299,7 @@ request = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "request"; - version = "20160424.2332"; + version = "20160425.532"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; @@ -51034,7 +51307,7 @@ sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request"; sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; @@ -51047,7 +51320,7 @@ request-deferred = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "request-deferred"; - version = "20160419.1905"; + version = "20160420.105"; src = fetchFromGitHub { owner = "tkf"; repo = "emacs-request"; @@ -51055,7 +51328,7 @@ sha256 = "1knhm4hicijviz759834zmafcw2l2b04g4dddqg7j38knn8pzrx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request-deferred"; sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; @@ -51068,7 +51341,7 @@ requirejs = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, popup, s, yasnippet }: melpaBuild { pname = "requirejs"; - version = "20151204.219"; + version = "20151204.819"; src = fetchFromGitHub { owner = "joeheyming"; repo = "requirejs-emacs"; @@ -51076,7 +51349,7 @@ sha256 = "1bfj2zjn3x41jal6c136wnwkgmag27bmrwbfwdylafc7qqk6dflv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -51089,7 +51362,7 @@ requirejs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "requirejs-mode"; - version = "20130215.1604"; + version = "20130215.2204"; src = fetchFromGitHub { owner = "moricard"; repo = "requirejs-mode"; @@ -51097,7 +51370,7 @@ sha256 = "02wva5q8mvc0a5kms2wm1gyaag2x3zd6fkkpl4218nrbb0mbficv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs-mode"; sha256 = "00bl5dz56f77hl9wy3xvjhq81641mv9jbskcd8mcgcz9ycj9g5k2"; name = "requirejs-mode"; }; @@ -51110,7 +51383,7 @@ resize-window = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "resize-window"; - version = "20160511.2305"; + version = "20160512.505"; src = fetchFromGitHub { owner = "dpsutton"; repo = "resize-window"; @@ -51118,7 +51391,7 @@ sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -51131,15 +51404,15 @@ restart-emacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "restart-emacs"; - version = "20151203.1135"; + version = "20160530.1522"; src = fetchFromGitHub { owner = "iqbalansari"; repo = "restart-emacs"; - rev = "f0e8e1ae1bb5f4e50a99d220c39913ef300f44c8"; - sha256 = "0gbm208hmmmpjyj0x3z0cszphawkgvjqzi5idbdca3gikyiqw80n"; + rev = "be789b13ff6358e13a2b7d57224072fb1b108f09"; + sha256 = "1a2myx5isiwr29yhplmv07bisc8rvrabzz9dn239jf4gvr8x89ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -51152,15 +51425,15 @@ restclient = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "restclient"; - version = "20160510.438"; + version = "20160525.1405"; src = fetchFromGitHub { owner = "pashky"; repo = "restclient.el"; - rev = "3ae9ef20c4d7066fad8a0cc16af44b7f8d3107fb"; - sha256 = "1ffav4i21vwvf2szz2s8g1y560fcw2dibcvf8ax1fd2asrj3zv7l"; + rev = "3e44dccaefeef18de24fd882a29bdff3cd40e050"; + sha256 = "0wyrqkrcxlgpby3bvg4wzqkz5bq3v3bga7skasmncpvq51imhwp1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient"; sha256 = "0wzp8i89a4hwm7qyxvdk10frknbqcni0isnp8k63nhq7c30s7md4"; name = "restclient"; }; @@ -51173,15 +51446,15 @@ restclient-helm = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild, restclient }: melpaBuild { pname = "restclient-helm"; - version = "20160407.549"; + version = "20160407.1149"; src = fetchFromGitHub { owner = "pashky"; repo = "restclient.el"; - rev = "3ae9ef20c4d7066fad8a0cc16af44b7f8d3107fb"; - sha256 = "1ffav4i21vwvf2szz2s8g1y560fcw2dibcvf8ax1fd2asrj3zv7l"; + rev = "3e44dccaefeef18de24fd882a29bdff3cd40e050"; + sha256 = "0wyrqkrcxlgpby3bvg4wzqkz5bq3v3bga7skasmncpvq51imhwp1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-helm"; sha256 = "0cpf02ippfr9w6kiw3kng8smabv256ff388322hhn8a8icyjl24j"; name = "restclient-helm"; }; @@ -51194,7 +51467,7 @@ restclient-test = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, restclient }: melpaBuild { pname = "restclient-test"; - version = "20160517.1340"; + version = "20160517.1940"; src = fetchFromGitHub { owner = "simenheg"; repo = "restclient-test.el"; @@ -51202,7 +51475,7 @@ sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-test"; sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39"; name = "restclient-test"; }; @@ -51215,7 +51488,7 @@ reveal-in-osx-finder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reveal-in-osx-finder"; - version = "20150802.1257"; + version = "20150802.1857"; src = fetchFromGitHub { owner = "kaz-yos"; repo = "reveal-in-osx-finder"; @@ -51223,7 +51496,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -51235,13 +51508,13 @@ }) {}; reveal-next = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "reveal-next"; - version = "20151231.1850"; + version = "20160101.50"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/reveal-next.el"; sha256 = "1h27kg2k8f6smbqxandmvg859qk66jydbbbiwwjmk7316k66w8qa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-next"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-next"; sha256 = "0fp6ssd4fad0s2pbxbw75bnx7fcgasig8xvcx7nls8m9p6zbbmh2"; name = "reveal-next"; }; @@ -51254,7 +51527,7 @@ reverse-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reverse-theme"; - version = "20141204.2045"; + version = "20141205.245"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-reverse-theme"; @@ -51262,7 +51535,7 @@ sha256 = "002ywhjms8ybk7cma2p2i11z3fz6kb0w8mlafysm911rvcq2hg5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; @@ -51275,7 +51548,7 @@ review-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "review-mode"; - version = "20150110.912"; + version = "20150110.1512"; src = fetchFromGitHub { owner = "kmuto"; repo = "review-el"; @@ -51283,7 +51556,7 @@ sha256 = "0lzsy68k7sm9d3r8lzhzx9alc1f0cgfclry40pa4x0ilkcr7ysch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/review-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/review-mode"; sha256 = "0wapicggkngpdzi0yxc0b24s526fs819rc2d6miv6ix3gnw11n0n"; name = "review-mode"; }; @@ -51296,7 +51569,7 @@ revive = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "revive"; - version = "20150417.1855"; + version = "20150418.55"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "revive"; @@ -51304,7 +51577,7 @@ sha256 = "037sac5fvz6l2zgzlf8ykk4jf9zhj7ybzyz013jqzjj47a6sn1r1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/revive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/revive"; sha256 = "1l7c6zq3ga2k1488qb0hgxlk08p3vrcf0sx116c1f8z8nf4c8ny5"; name = "revive"; }; @@ -51317,7 +51590,7 @@ reykjavik-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "reykjavik-theme"; - version = "20160109.300"; + version = "20160109.900"; src = fetchFromGitHub { owner = "mswift42"; repo = "reykjavik-theme"; @@ -51325,7 +51598,7 @@ sha256 = "0zmby92mjszh77r5wh8sccqv3a5bb9sfhac8g55nasavw8hfplvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reykjavik-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reykjavik-theme"; sha256 = "1f0q2gfzkmpd374jryrd1lgg8xj6rwdq181jhppj3rfjizgw4l35"; name = "reykjavik-theme"; }; @@ -51337,13 +51610,13 @@ }) {}; rfringe = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "rfringe"; - version = "20110405.1120"; + version = "20110405.1720"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/rfringe.el"; sha256 = "02i5znln0aphvmvaia3sz75bvjhqwyjq1blf5qkcbprnn95lm3yh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rfringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rfringe"; sha256 = "171gzfciz78l6b653acgfailxpwmh8m1dm0dzpg0b1k0ny3aiwf6"; name = "rfringe"; }; @@ -51356,7 +51629,7 @@ rhtml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rhtml-mode"; - version = "20130422.911"; + version = "20130422.1511"; src = fetchFromGitHub { owner = "eschulte"; repo = "rhtml"; @@ -51364,7 +51637,7 @@ sha256 = "1qlpv5lzj4yfyjgdykhm6q9izg6g0z5pf5nmynj42vsx7v8bhy1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rhtml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rhtml-mode"; sha256 = "038j5jkcckmhlq3vz4h07s5y2scljh1fdn9r614hiyxwgk48lc35"; name = "rhtml-mode"; }; @@ -51377,7 +51650,7 @@ rich-minority = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rich-minority"; - version = "20151201.700"; + version = "20151201.1300"; src = fetchFromGitHub { owner = "Malabarba"; repo = "rich-minority"; @@ -51385,7 +51658,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -51398,7 +51671,7 @@ rigid-tabs = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rigid-tabs"; - version = "20150807.1156"; + version = "20150807.1756"; src = fetchFromGitHub { owner = "wavexx"; repo = "rigid-tabs.el"; @@ -51406,7 +51679,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -51419,7 +51692,7 @@ rinari = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, jump, lib, melpaBuild, ruby-compilation, ruby-mode ? null }: melpaBuild { pname = "rinari"; - version = "20150709.240"; + version = "20150709.840"; src = fetchFromGitHub { owner = "eschulte"; repo = "rinari"; @@ -51427,7 +51700,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -51440,15 +51713,15 @@ rings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rings"; - version = "20140102.1836"; + version = "20160531.2227"; src = fetchFromGitHub { owner = "konr"; repo = "rings"; - rev = "1655dbf88ad877f54d67fab49f292945f70708eb"; - sha256 = "0imsc44mcy5abmfin28d13l8mjjvyx6hxcsk81r0i8h12mxlmfkp"; + rev = "3590b222eb80652cbd27866f066bd3571d86edfc"; + sha256 = "01mfiyq4cr2qdmvaxid8a094p20w97n2nsiy9vyng77vcmv36sd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rings"; sha256 = "1ncsb4jip07hbrf1l4j9yzn3l0kb63ylhzzsb4bb2yx6as4a66k7"; name = "rings"; }; @@ -51461,7 +51734,7 @@ rnc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rnc-mode"; - version = "20121227.1802"; + version = "20121228.2"; src = fetchFromGitHub { owner = "TreeRex"; repo = "rnc-mode"; @@ -51469,7 +51742,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -51482,7 +51755,7 @@ robe = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "robe"; - version = "20160518.559"; + version = "20160518.1159"; src = fetchFromGitHub { owner = "dgutov"; repo = "robe"; @@ -51490,7 +51763,7 @@ sha256 = "0fwxn6pplyh5frwwqk46zq38nj5m2sl1idk1va2jqwnj5r407g78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -51503,7 +51776,7 @@ robots-txt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "robots-txt-mode"; - version = "20160312.1051"; + version = "20160312.1651"; src = fetchFromGitHub { owner = "zonuexe"; repo = "robots-txt-mode"; @@ -51511,7 +51784,7 @@ sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robots-txt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robots-txt-mode"; sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; name = "robots-txt-mode"; }; @@ -51524,7 +51797,7 @@ roguel-ike = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "roguel-ike"; - version = "20160119.2202"; + version = "20160120.402"; src = fetchFromGitHub { owner = "stevenremot"; repo = "roguel-ike"; @@ -51532,7 +51805,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -51545,15 +51818,15 @@ rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rope-read-mode"; - version = "20160504.447"; + version = "20160603.909"; src = fetchFromGitHub { owner = "marcowahl"; repo = "rope-read-mode"; - rev = "e690138ef399a60aa2637fdc8721535178fb7002"; - sha256 = "036wip40y055579kf9isdnp3b4cwc7ylwmqsbj88xdpf1hxnx270"; + rev = "7bb3b8b2d250bfd63b988f4469ff62979ebcee8c"; + sha256 = "0f90m47d1qyl16bq7gqz0xxx38jfgjay7s404q8ikwkvjhg3p85y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -51566,7 +51839,7 @@ rotate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rotate"; - version = "20160215.218"; + version = "20160215.818"; src = fetchFromGitHub { owner = "daic-h"; repo = "emacs-rotate"; @@ -51574,7 +51847,7 @@ sha256 = "13xrjd5p2zq0r8ifbqbrgjfm0jj09nyxcbhk262jr6f171rf0y2m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rotate"; sha256 = "0dygdd24flbgqp049sl4p8rymvv8h881hz9lvz8hnfwq687yyclx"; name = "rotate"; }; @@ -51587,7 +51860,7 @@ roy-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "roy-mode"; - version = "20121208.658"; + version = "20121208.1258"; src = fetchFromGitHub { owner = "folone"; repo = "roy-mode"; @@ -51595,7 +51868,7 @@ sha256 = "04jbnm9is2cis75h40znqzjvyjq27ncr2vfank6zglzi4fhxsl0r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roy-mode"; sha256 = "0ch0hamvw4gsqs2pap0h6w4cj6n73jqa75if0ymh73hk5i3acm8g"; name = "roy-mode"; }; @@ -51608,7 +51881,7 @@ rpm-spec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rpm-spec-mode"; - version = "20150411.1155"; + version = "20150411.1755"; src = fetchFromGitHub { owner = "bjorlykke"; repo = "rpm-spec-mode"; @@ -51616,7 +51889,7 @@ sha256 = "01rb6qfsk4f33nkfdzvvjkw96ip1dv0py8i30l8ix9cqbk07svsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rpm-spec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rpm-spec-mode"; sha256 = "01vggdv8sac4p0szwk7xgxcglmd5a1hv5q0ylf8zcp1lsyyh8ypd"; name = "rpm-spec-mode"; }; @@ -51629,7 +51902,7 @@ rpn-calc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "rpn-calc"; - version = "20150302.834"; + version = "20150302.1434"; src = fetchFromGitHub { owner = "zk-phi"; repo = "rpn-calc"; @@ -51637,7 +51910,7 @@ sha256 = "0i5qwbhhdnspgs2y67kkgbk9zq6fx2j509q92mgfzbvjnf54h1r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rpn-calc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rpn-calc"; sha256 = "04dj2r4035k0c3x6iyjydshzmq381d60pmscp2hg5m7sp7bqn5xs"; name = "rpn-calc"; }; @@ -51650,7 +51923,7 @@ rsense = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rsense"; - version = "20100511.5"; + version = "20100511.605"; src = fetchFromGitHub { owner = "m2ym"; repo = "rsense"; @@ -51658,7 +51931,7 @@ sha256 = "0xkr1qn8fm3kv5c11janq5acp1q02abvxc463zijvm2qk735yl4d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -51671,7 +51944,7 @@ rspec-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "rspec-mode"; - version = "20160425.1757"; + version = "20160425.2357"; src = fetchFromGitHub { owner = "pezra"; repo = "rspec-mode"; @@ -51679,7 +51952,7 @@ sha256 = "1mlcr4br831cbxd90z61kynvir704mafv4avas44bzk8m1m188kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -51692,15 +51965,15 @@ rtags = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtags"; - version = "20160522.1309"; + version = "20160602.744"; src = fetchFromGitHub { owner = "Andersbakken"; repo = "rtags"; - rev = "35b21aec65cdab6858efd6aedbbea9b75307a6d1"; - sha256 = "0cjgp73c17yfnmyi1f1xm43nifd6r5giszdw159ipp1bcsk2zxaw"; + rev = "a7fd295e83d61d14416e17c33af9e4d44728d2c3"; + sha256 = "1nwc4dxw2sf6swqf2xmv2yapznlz7s85hpj7ghqh9iacnw77yrjv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -51713,7 +51986,7 @@ rtm = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rtm"; - version = "20160116.1227"; + version = "20160116.1827"; src = fetchFromGitHub { owner = "pmiddend"; repo = "emacs-rtm"; @@ -51721,7 +51994,7 @@ sha256 = "1gqvp0h5zy2023gdzf7pw28rl27lzml87vpbi1zaw4bmj82zgh3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtm"; sha256 = "1ni2610svxziq1gq6s6igkhqyafvgn02gnw7jbm3ir7ks4w2imzf"; name = "rtm"; }; @@ -51734,7 +52007,7 @@ rubocop = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rubocop"; - version = "20151124.37"; + version = "20151124.637"; src = fetchFromGitHub { owner = "bbatsov"; repo = "rubocop-emacs"; @@ -51742,7 +52015,7 @@ sha256 = "1y5z0kr4qwd4fyvhk0rhpbbp6dw2jpzrawx62jid5539wrdjcabk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -51774,13 +52047,13 @@ }) {}; ruby-block = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-block"; - version = "20131210.2231"; + version = "20131211.431"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ruby-block.el"; sha256 = "0c4vy9xsw44g6q9nc8aaav5avgp34h24mvgcnww468afiimivdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-block"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-block"; sha256 = "0jfimjq1xpwxkxya452kp27h0fdiy87aj713w3zsm04k7l6i12hm"; name = "ruby-block"; }; @@ -51793,7 +52066,7 @@ ruby-compilation = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "ruby-compilation"; - version = "20150709.240"; + version = "20150709.840"; src = fetchFromGitHub { owner = "eschulte"; repo = "rinari"; @@ -51801,7 +52074,7 @@ sha256 = "1kg83z10jw4ik0aapv9cjqlvqy31rln2am8vh3f77zh61qha37hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -51814,7 +52087,7 @@ ruby-dev = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-dev"; - version = "20130811.451"; + version = "20130811.1051"; src = fetchFromGitHub { owner = "Mon-Ouie"; repo = "ruby-dev.el"; @@ -51822,7 +52095,7 @@ sha256 = "1cy5zmdfwsjw8jla8mxjm1cmvrv727fwq1kqhjr5nxj0flwsm4x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-dev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-dev"; sha256 = "0mf2ra3p5976qn4ryc2s20vi0nrzwcg3xvsgppsc0bsirjw2l0fh"; name = "ruby-dev"; }; @@ -51835,14 +52108,14 @@ ruby-electric = callPackage ({ fetchsvn, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-electric"; - version = "20150424.1052"; + version = "20150424.1652"; src = fetchsvn { url = "http://svn.ruby-lang.org/repos/ruby/trunk/misc/"; - rev = "55119"; - sha256 = "07j1lclp6jqhyzfw8h4a21kx39nz946h6lgmn959rvckhkijr514"; + rev = "55275"; + sha256 = "1chnrkchfp156f2ri5y55sgrd6v6znb0iz9nmajhrz5i3i3hncdi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-electric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-electric"; sha256 = "04j04dsknzb7xc8v6alawgcbymdfmh27xnpr98yc8b05nzafw056"; name = "ruby-electric"; }; @@ -51855,7 +52128,7 @@ ruby-end = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-end"; - version = "20141215.723"; + version = "20141215.1323"; src = fetchFromGitHub { owner = "rejeep"; repo = "ruby-end.el"; @@ -51863,7 +52136,7 @@ sha256 = "1x4nvrq5nk50c1l3b5wcr4g1n5nmwafcz1zzc12qzsl5sya7si55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-end"; sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; @@ -51876,7 +52149,7 @@ ruby-factory = callPackage ({ fetchFromGitHub, fetchurl, inflections, lib, melpaBuild }: melpaBuild { pname = "ruby-factory"; - version = "20160102.221"; + version = "20160102.821"; src = fetchFromGitHub { owner = "sshaw"; repo = "ruby-factory-mode"; @@ -51884,7 +52157,7 @@ sha256 = "15b2rs6m4d511qqkc2gc8k15mbqzrgv6s3hpypajl8nvqa79xnyd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-factory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-factory"; sha256 = "0v8009pad0l41zh9r1wzcx1h6vpzhr5rgpq6rb002prxz2lcbd37"; name = "ruby-factory"; }; @@ -51897,7 +52170,7 @@ ruby-guard = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-guard"; - version = "20160131.2052"; + version = "20160201.252"; src = fetchFromGitHub { owner = "cheunghy"; repo = "ruby-guard"; @@ -51905,7 +52178,7 @@ sha256 = "080hmrh7pgpaj33w1rkhcqb1yp70w4cap0rq9hsxaaajj0sn47z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-guard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-guard"; sha256 = "0hwxhirdvaysw9hxcgfdf0l12wilr6b9f9w91pk1hfwfi1w0lfwr"; name = "ruby-guard"; }; @@ -51918,7 +52191,7 @@ ruby-hash-syntax = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-hash-syntax"; - version = "20141010.1139"; + version = "20141010.1739"; src = fetchFromGitHub { owner = "purcell"; repo = "ruby-hash-syntax"; @@ -51926,7 +52199,7 @@ sha256 = "0knl8zrd4pplnzk5z19cf9rqdfr3ymzfssrwp6jhndjzjdwvc2bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -51939,7 +52212,7 @@ ruby-interpolation = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-interpolation"; - version = "20131112.1152"; + version = "20131112.1752"; src = fetchFromGitHub { owner = "leoc"; repo = "ruby-interpolation.el"; @@ -51947,7 +52220,7 @@ sha256 = "1r2f5jxi6wnkmr1ssvqgshi97gjvxvf3qqc0njg1s33cy39wpqq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-interpolation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-interpolation"; sha256 = "07idndxw8vgfrk5zfmjjhmixza35mqxwjhsrbjrq5yy72i5ivznp"; name = "ruby-interpolation"; }; @@ -51960,7 +52233,7 @@ ruby-refactor = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, ruby-mode ? null }: melpaBuild { pname = "ruby-refactor"; - version = "20160214.1150"; + version = "20160214.1750"; src = fetchFromGitHub { owner = "ajvargo"; repo = "ruby-refactor"; @@ -51968,7 +52241,7 @@ sha256 = "13008ih4hwa80bn2dbgj551knbvgpriz5sb241rkf7mifmlfzgsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-refactor"; sha256 = "0nwinnnhy72h1ihjlnjl8k8z3yf4nl2z7hfv085gwiacr6nn2rby"; name = "ruby-refactor"; }; @@ -51981,7 +52254,7 @@ ruby-test-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, pcre2el, ruby-mode ? null }: melpaBuild { pname = "ruby-test-mode"; - version = "20160509.1350"; + version = "20160509.1950"; src = fetchFromGitHub { owner = "r0man"; repo = "ruby-test-mode"; @@ -51989,7 +52262,7 @@ sha256 = "0ajqqkf43k7kgsnzi9m8il1l48n2slqd7csya8varnlm8g4p79gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -52002,7 +52275,7 @@ ruby-tools = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ruby-tools"; - version = "20151209.1115"; + version = "20151209.1715"; src = fetchFromGitHub { owner = "rejeep"; repo = "ruby-tools.el"; @@ -52010,7 +52283,7 @@ sha256 = "0jd9acycpbdd90hallrl0k5055rypp502qv4c6i286p7f9is4kvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-tools"; sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; @@ -52023,15 +52296,15 @@ runner = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "runner"; - version = "20151118.516"; + version = "20160524.943"; src = fetchFromGitHub { owner = "thamer"; repo = "runner"; - rev = "f5983931899282cf8b10ad197d61860a61cf070d"; - sha256 = "17dzr5w12ai2q15yv81gchk360yjs71w74vsgs2fyy2yznvclpq9"; + rev = "a211d57ddc600410d07a8b534920ba905b093d87"; + sha256 = "1ddf5jydpc43wgvw4a669wifij71b4r8zfazcqfdpyfh1j4m591b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runner"; sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; name = "runner"; }; @@ -52044,7 +52317,7 @@ runtests = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "runtests"; - version = "20150807.431"; + version = "20150807.1031"; src = fetchFromGitHub { owner = "sunesimonsen"; repo = "emacs-runtests"; @@ -52052,7 +52325,7 @@ sha256 = "18w6gkpxp0g7rzvnrk8vvr267y768dfik447ssq8jpz3jlr5jnq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/runtests"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runtests"; sha256 = "0m9rqjb5c0yqr2wv5dsdiba21knr63b5pxsqgbkbybi15zgxcicb"; name = "runtests"; }; @@ -52065,7 +52338,7 @@ rust-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rust-mode"; - version = "20160517.646"; + version = "20160517.1246"; src = fetchFromGitHub { owner = "rust-lang"; repo = "rust-mode"; @@ -52073,7 +52346,7 @@ sha256 = "1yamcsqshxzniaq8hn6a2hmfp9x84g5k6n04fgpfs3wxmrh8cqx8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rust-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rust-mode"; sha256 = "1i1mw1v99nyikscg2s1m216b0h8svbzmf5kjvjgk9zjiba4cbqzc"; name = "rust-mode"; }; @@ -52086,7 +52359,7 @@ rustfmt = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rustfmt"; - version = "20160217.842"; + version = "20160217.1442"; src = fetchFromGitHub { owner = "fbergroth"; repo = "emacs-rustfmt"; @@ -52094,7 +52367,7 @@ sha256 = "0c22cxa4f6plz67vxmp1zgaylkfrky313cj0zybn9akrbcxpbc34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rustfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rustfmt"; sha256 = "1znav2pbax0rsvdl85mmbgbmxy7gnrm4nx54ij1ff6yd831r5jyl"; name = "rustfmt"; }; @@ -52107,7 +52380,7 @@ rvm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rvm"; - version = "20150402.1042"; + version = "20150402.1642"; src = fetchFromGitHub { owner = "senny"; repo = "rvm.el"; @@ -52115,7 +52388,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -52128,7 +52401,7 @@ s = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "s"; - version = "20160509.257"; + version = "20160509.857"; src = fetchFromGitHub { owner = "magnars"; repo = "s.el"; @@ -52136,7 +52409,7 @@ sha256 = "1bq402bhxqc9ph2da2nmd80s28dzd406gbawxr3kgrv0sll167bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -52149,7 +52422,7 @@ s-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, noflet, s }: melpaBuild { pname = "s-buffer"; - version = "20130605.1724"; + version = "20130605.2324"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-s-buffer"; @@ -52157,7 +52430,7 @@ sha256 = "06ng960fj2ivnwb0hrn0qic5x8hb0sswjzph01zmwhbfnwykhr85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s-buffer"; sha256 = "07kivgzv24psjq1240gwj9wkndq4bhvjh38x552k90m9v6jz8l6m"; name = "s-buffer"; }; @@ -52170,7 +52443,7 @@ sackspace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sackspace"; - version = "20130719.556"; + version = "20130719.1156"; src = fetchFromGitHub { owner = "cofi"; repo = "sackspace.el"; @@ -52178,7 +52451,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -52191,15 +52464,15 @@ sage-shell-mode = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "20160517.137"; + version = "20160527.748"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; - rev = "2e49bb8e21737f5d1dc59cf79fd72bfc6c68267a"; - sha256 = "0hyw05kgj45hrpzfgwpq5zal12lkm6w0v8jj27pw7n29ar3yppj3"; + rev = "26303698cbd807b4cbaa241b0671f7e542a3bbe4"; + sha256 = "1124akipvrcmkd66slklgap2jdvb8iksldd8sjvg9n25kp0wd0vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -52212,7 +52485,7 @@ salt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-jinja2, mmm-mode, yaml-mode }: melpaBuild { pname = "salt-mode"; - version = "20150904.1413"; + version = "20150904.2013"; src = fetchFromGitHub { owner = "beardedprojamz"; repo = "salt-mode"; @@ -52220,7 +52493,7 @@ sha256 = "1hl227bmjch0vq7n47mwydkyxnd6wkbz9klk3c4398qmc2qxm5kn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/salt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/salt-mode"; sha256 = "1r5k7022vxgj3p5l16y839lff85z0m9hpifq59knij61g9hxadsp"; name = "salt-mode"; }; @@ -52233,7 +52506,7 @@ sane-term = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sane-term"; - version = "20150917.1902"; + version = "20150918.102"; src = fetchFromGitHub { owner = "adamrt"; repo = "sane-term"; @@ -52241,7 +52514,7 @@ sha256 = "1r6b6n2bzjznjfimgcm0vnmln4sbyasm4icmdgbpzahdmbkfzq3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sane-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sane-term"; sha256 = "0iz63b62x5jrz7c23i850634k4bk73kg1h4wj1ravx3wlgvzs8y8"; name = "sane-term"; }; @@ -52254,7 +52527,7 @@ sass-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, haml-mode, lib, melpaBuild }: melpaBuild { pname = "sass-mode"; - version = "20160506.2345"; + version = "20160507.545"; src = fetchFromGitHub { owner = "nex3"; repo = "sass-mode"; @@ -52262,7 +52535,7 @@ sha256 = "1zvsv2j3hqrj9vlm4mspfnm9nwah0lhizamyx43xykd7xk0z8hkw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -52275,7 +52548,7 @@ sauron = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sauron"; - version = "20160501.1345"; + version = "20160501.1945"; src = fetchFromGitHub { owner = "djcb"; repo = "sauron"; @@ -52283,7 +52556,7 @@ sha256 = "169mbr83zlawjnn2p9yzx7rrg33bb78gb1i7lklagn73ca2pr0b5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -52296,7 +52569,7 @@ save-load-path = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "save-load-path"; - version = "20140206.714"; + version = "20140206.1314"; src = fetchFromGitHub { owner = "rubikitch"; repo = "save-load-path"; @@ -52304,7 +52577,7 @@ sha256 = "0rxcg60lxaabdx9gjj17sfxnr09694viphlhhk355dcc4v5ngbdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/save-load-path"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/save-load-path"; sha256 = "1cl9kkv996m2irm9i5n7f020zqzvrsv9dyscc16ca9jsn16msww2"; name = "save-load-path"; }; @@ -52317,7 +52590,7 @@ save-visited-files = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "save-visited-files"; - version = "20151021.1343"; + version = "20151021.1943"; src = fetchFromGitHub { owner = "nflath"; repo = "save-visited-files"; @@ -52325,7 +52598,7 @@ sha256 = "00jvl1npc889f3isi7cbdzwvf9x4rq67zgl7br8npxf8jlc2mwhm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/save-visited-files"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/save-visited-files"; sha256 = "1pmjz27dlp5yrihgsy8q1bwbhkkj3sn7d79ccvljvzxg5jn1grkd"; name = "save-visited-files"; }; @@ -52338,7 +52611,7 @@ savekill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "savekill"; - version = "20140417.2229"; + version = "20140418.429"; src = fetchFromGitHub { owner = "rubikitch"; repo = "savekill"; @@ -52346,7 +52619,7 @@ sha256 = "0h8bl28p5xrs9daapcjkslm066a4hqlb764i5nz1db0lwrvr0csm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/savekill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/savekill"; sha256 = "14hfqia7d2v1dn1wdwsphrrkq9hc57721irms9s9vinign0pqx7h"; name = "savekill"; }; @@ -52359,7 +52632,7 @@ say-what-im-doing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "say-what-im-doing"; - version = "20160512.1455"; + version = "20160512.2055"; src = fetchFromGitHub { owner = "benaiah"; repo = "say-what-im-doing"; @@ -52367,7 +52640,7 @@ sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/say-what-im-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/say-what-im-doing"; sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x"; name = "say-what-im-doing"; }; @@ -52380,7 +52653,7 @@ sbt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sbt-mode"; - version = "20160516.1836"; + version = "20160517.36"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-sbt-mode"; @@ -52388,7 +52661,7 @@ sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -52401,15 +52674,15 @@ scad-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scad-mode"; - version = "20160205.1343"; + version = "20160205.1943"; src = fetchFromGitHub { owner = "openscad"; repo = "openscad"; - rev = "7f4a6b1d254d33081466bdccdf26341711608b80"; - sha256 = "0d9phl6vk2iqs99mmsngr5bmr1hrm6292vpjf29s2f2rdxg74sw0"; + rev = "365e399036323207afe1937b9a35c1a532457f66"; + sha256 = "0zpv269ddhcwxqkk4bv7jms8g5n4bbkhcn2529q8x36hmsbwb4dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scad-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scad-mode"; sha256 = "04b4y9jks8sslgmkx54fds8fba9xv54z0cfab52dy99v1301ms3k"; name = "scad-mode"; }; @@ -52422,7 +52695,7 @@ scad-preview = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, scad-mode }: melpaBuild { pname = "scad-preview"; - version = "20160206.836"; + version = "20160206.1436"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scad-preview"; @@ -52430,7 +52703,7 @@ sha256 = "13x00dls59zshz69260pnqmx6ydrjg8p2jdjn1rzgf5dsmwfy3sc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scad-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scad-preview"; sha256 = "0wcd2r60ibbc2mzpq8fvyfc1fy172rf9kzdj51p4jyl51r76i86z"; name = "scad-preview"; }; @@ -52443,7 +52716,7 @@ scala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scala-mode"; - version = "20160519.1031"; + version = "20160519.1631"; src = fetchFromGitHub { owner = "ensime"; repo = "emacs-scala-mode"; @@ -52451,7 +52724,7 @@ sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scala-mode"; sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8"; name = "scala-mode"; }; @@ -52464,7 +52737,7 @@ scf-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scf-mode"; - version = "20151121.2148"; + version = "20151122.348"; src = fetchFromGitHub { owner = "lewang"; repo = "scf-mode"; @@ -52472,7 +52745,7 @@ sha256 = "0m7hanpc2skmsz783m0212xd10y31gkj5n6w8gx9s989l1y4i1b8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scf-mode"; sha256 = "0acbrw94q6cr9b29mz1wcbwi1g90pbm7ly2xbaqb2g8081r5rgg0"; name = "scf-mode"; }; @@ -52485,7 +52758,7 @@ scheme-complete = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scheme-complete"; - version = "20160502.1939"; + version = "20160503.139"; src = fetchFromGitHub { owner = "ashinn"; repo = "scheme-complete"; @@ -52493,7 +52766,7 @@ sha256 = "0kd5g76vpxip5ijddaqvp3w3lxr9hy9vaiphrcvvlqjr3xwignnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scheme-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scheme-complete"; sha256 = "1mp9gssd2fx3ra2bjd7w311hwmflhybr5x574qb12603gjkgrp1h"; name = "scheme-complete"; }; @@ -52506,7 +52779,7 @@ scheme-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scheme-here"; - version = "20141028.318"; + version = "20141028.818"; src = fetchFromGitHub { owner = "hiddenlotus"; repo = "scheme-here"; @@ -52514,7 +52787,7 @@ sha256 = "09cvrphrnbj8avnlqqv6scjz17cn6zm6mzghjn3vxfr4hql66rir"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scheme-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scheme-here"; sha256 = "04lmkf3zc396anlp9s9irdkqavsc0lzlpzprswd4r2kp4xp7kcks"; name = "scheme-here"; }; @@ -52527,7 +52800,7 @@ scion = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scion"; - version = "20130315.855"; + version = "20130315.1355"; src = fetchFromGitHub { owner = "nominolo"; repo = "scion"; @@ -52535,7 +52808,7 @@ sha256 = "0ark720g0nrdqri5bjdpss6kn6k3hz3w3zdvy334wws05mkb17y4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scion"; sha256 = "17qmc7fpvbamqkzyk8jspp2i0nw93iya4iwddvas7vdpjy7mk81d"; name = "scion"; }; @@ -52548,7 +52821,7 @@ sclang-extensions = callPackage ({ auto-complete, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "sclang-extensions"; - version = "20160508.2338"; + version = "20160509.538"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "sclang-extensions"; @@ -52556,7 +52829,7 @@ sha256 = "164dn5615bxvya4n58lly9r739va1xzm00wyfg4shcwgnwm3byqb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sclang-extensions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sclang-extensions"; sha256 = "00nirxawsngvlx7bmf5hqg2wk0l1v5pi09r6phzd0q8gyq3kmbbn"; name = "sclang-extensions"; }; @@ -52569,7 +52842,7 @@ sclang-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "sclang-snippets"; - version = "20130513.351"; + version = "20130513.951"; src = fetchFromGitHub { owner = "ptrv"; repo = "sclang-snippets"; @@ -52577,7 +52850,7 @@ sha256 = "0vbcghgapwdf3jgjnjdla17dhf5mkmwapz4a8fmlr7sw1wqvj857"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sclang-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sclang-snippets"; sha256 = "0q1bh316v737a0hm9afijk1spvg144cgrf45jm0bpd60zhiv7bb2"; name = "sclang-snippets"; }; @@ -52590,7 +52863,7 @@ scpaste = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild }: melpaBuild { pname = "scpaste"; - version = "20151208.2035"; + version = "20151209.235"; src = fetchFromGitHub { owner = "technomancy"; repo = "scpaste"; @@ -52598,7 +52871,7 @@ sha256 = "1jgg116rhhgs5qrngrmqi8ir7yj1h470f57dc7fyijw0ly5mp6ii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -52611,7 +52884,7 @@ scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch"; - version = "20120830.1328"; + version = "20120830.1928"; src = fetchFromGitHub { owner = "ieure"; repo = "scratch-el"; @@ -52619,7 +52892,7 @@ sha256 = "0ykhr24vpx3byn2n346nqqvmwcg34hk22s3lpdx7lpnkrn5z41aq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch"; sha256 = "1c6vxpd9c24d2flzwgvzqz0wr70xzqqs3f59pp897h0f7j91im5d"; name = "scratch"; }; @@ -52632,7 +52905,7 @@ scratch-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-ext"; - version = "20140104.16"; + version = "20140104.616"; src = fetchFromGitHub { owner = "kyanagi"; repo = "scratch-ext-el"; @@ -52640,7 +52913,7 @@ sha256 = "0ng0by647r49mia7vmjqc97gwlwgs8kmaz0lw2y54jdz8m0bbngp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-ext"; sha256 = "031wxz10k1q4bi5hywhcw1vzi41d5pv5hc09x8jk9s5nzyssvc0y"; name = "scratch-ext"; }; @@ -52653,7 +52926,7 @@ scratch-log = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-log"; - version = "20141115.243"; + version = "20141115.843"; src = fetchFromGitHub { owner = "mori-dev"; repo = "scratch-log"; @@ -52661,7 +52934,7 @@ sha256 = "030mcq0cmamizvra8jh2x76f71g5apiavwb10c28j62rl0r5bisk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-log"; sha256 = "1yp3p0dzhmqrd0krqii3x79k4zc3p59148cijhk6my4n1xqnhs69"; name = "scratch-log"; }; @@ -52674,15 +52947,15 @@ scratch-message = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratch-message"; - version = "20160520.1754"; + version = "20160526.1209"; src = fetchFromGitHub { owner = "thisirs"; repo = "scratch-message"; - rev = "d4d8fe49c3a4cad208fe8d40e02c05717112dce6"; - sha256 = "0k2ay6fss81c9sqzj8hjw79qzj07hpccv0afbm5crmzv9hcfq8j5"; + rev = "0d867600ccedeb571e5ba11dcedb8b6f614e0eb0"; + sha256 = "0dq5hqx452vgxi5rsbagm2ckfdzxvc4aw5y1053vhky4i9x6yc72"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-message"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-message"; sha256 = "1dl9d4gvicwnb662ir9azywjmmm7xv4d0sz42z7mmwy8hl9hi91b"; name = "scratch-message"; }; @@ -52695,7 +52968,7 @@ scratch-palette = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "scratch-palette"; - version = "20150225.342"; + version = "20150225.942"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scratch-palette"; @@ -52703,7 +52976,7 @@ sha256 = "00b4r8bqlxc29k18vig0164d5c9fp5bp5q26d28lwr4f0s4a71d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-palette"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-palette"; sha256 = "0m6hc2amwnnii4y189kkridhapl9jipkmadvrmwvspgy3lxhlafs"; name = "scratch-palette"; }; @@ -52716,7 +52989,7 @@ scratch-pop = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, popwin }: melpaBuild { pname = "scratch-pop"; - version = "20150820.439"; + version = "20150820.1039"; src = fetchFromGitHub { owner = "zk-phi"; repo = "scratch-pop"; @@ -52724,7 +52997,7 @@ sha256 = "1yvmfiv1s83r0jcxzbxyrx3b263d73lbap6agansmrhkxp914xr1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratch-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratch-pop"; sha256 = "0s7g1fbnc5hgz8gqmp1lynj5g7vvxisj7scxx5wil9qpn2zyggq1"; name = "scratch-pop"; }; @@ -52737,7 +53010,7 @@ scratches = callPackage ({ dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scratches"; - version = "20151006.16"; + version = "20151006.616"; src = fetchFromGitHub { owner = "cheunghy"; repo = "scratches"; @@ -52745,7 +53018,7 @@ sha256 = "10hmy0p4pkrzvvyisk4rjc6hqqyk2sir1rszqgmkhrdywl010vlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scratches"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scratches"; sha256 = "0409v1wi10q48rrh8iib6dw9icmswfrpjx9x7xcma994z080d2fy"; name = "scratches"; }; @@ -52757,13 +53030,13 @@ }) {}; screenshot = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "screenshot"; - version = "20120509.705"; + version = "20120509.1305"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/screenshot.el"; sha256 = "0q7yxaaa0fic4d2xwr0qk28clkinwz4xvw3wf8dv1g322s0xx2cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/screenshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/screenshot"; sha256 = "0aw2343as38y26r2g7wpn1rq1n6xpw4y5c7ir8qh1crkc1y513hs"; name = "screenshot"; }; @@ -52773,10 +53046,31 @@ license = lib.licenses.free; }; }) {}; + scrooge = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, thrift }: + melpaBuild { + pname = "scrooge"; + version = "20160530.420"; + src = fetchFromGitHub { + owner = "cosmicexplorer"; + repo = "emacs-scrooge"; + rev = "acffc6c9b0044f366eb4c36dff2dc1a97003f561"; + sha256 = "0zv1xjjn7pklkla7g26mxmv3148plx8ilw4yqjmc2ghi4br8p0bk"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scrooge"; + sha256 = "1gisyfzawrgg55jbwrbnri314f6zd38di19iwy0b2dim8in4sjpg"; + name = "scrooge"; + }; + packageRequires = [ emacs thrift ]; + meta = { + homepage = "https://melpa.org/#/scrooge"; + license = lib.licenses.free; + }; + }) {}; scss-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "scss-mode"; - version = "20150107.1700"; + version = "20150107.2300"; src = fetchFromGitHub { owner = "antonj"; repo = "scss-mode"; @@ -52784,7 +53078,7 @@ sha256 = "113pi7nsaksaacy74ngbvrvr6qcl7199xy662nj58bz5307yi9q0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -52797,7 +53091,7 @@ search-web = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "search-web"; - version = "20150312.703"; + version = "20150312.1203"; src = fetchFromGitHub { owner = "tomoya"; repo = "search-web.el"; @@ -52805,7 +53099,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -52818,7 +53112,7 @@ searchq = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "searchq"; - version = "20150829.811"; + version = "20150829.1411"; src = fetchFromGitHub { owner = "boyw165"; repo = "searchq"; @@ -52826,7 +53120,7 @@ sha256 = "0zs08vxmjb3y4dnfq6djnrhmkgyhhwd5zylrjisrd4y7f089fyh4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/searchq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/searchq"; sha256 = "0flsc07v887pm62mslrv7zqnhl62l6348nkm77mizm1592q3kjgr"; name = "searchq"; }; @@ -52839,7 +53133,7 @@ seclusion-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seclusion-mode"; - version = "20121118.1853"; + version = "20121119.53"; src = fetchFromGitHub { owner = "dleslie"; repo = "seclusion-mode"; @@ -52847,7 +53141,7 @@ sha256 = "15cjhwjiwmrfzmr74hbw5s92si2qdb8i97nmkbsgkj3444rxg239"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seclusion-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seclusion-mode"; sha256 = "0ff10x6yr37vpp6ffbk1nb027lgmrydwjrb332fskwlf3xmy6v0m"; name = "seclusion-mode"; }; @@ -52859,13 +53153,13 @@ }) {}; second-sel = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "second-sel"; - version = "20151231.1853"; + version = "20160101.53"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/second-sel.el"; sha256 = "143vg6z3aa0znmsx88r675vv5g2c13giz25dcbzazsp4wcr46wvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/second-sel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/second-sel"; sha256 = "1nzy5ms5qf5big507kg3z5m6d6zgnsv2fswn359r2j59cval3fvr"; name = "second-sel"; }; @@ -52878,15 +53172,15 @@ seeing-is-believing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seeing-is-believing"; - version = "20151010.1329"; + version = "20160602.1618"; src = fetchFromGitHub { owner = "jcinnamond"; repo = "seeing-is-believing"; - rev = "a698443529ea26fba3fd0748fe10439be7721e96"; - sha256 = "19p3zp4cj7ik2gwzc5k6klqc4b8jc2hvm80yhczc5b7k223gp2bv"; + rev = "03e5e2adc08bcfa859fefc0323deef7392b4c747"; + sha256 = "1g8avn0vxsjg3fclbgahbjwi71rb81wxd4j0fwabw70lmaqk6f8v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seeing-is-believing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seeing-is-believing"; sha256 = "05aja5xycb3kpmxyi234l50h98f5m1fil6ll4f2xkpxwv31ba5rb"; name = "seeing-is-believing"; }; @@ -52899,7 +53193,7 @@ seethru = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, shadchen }: melpaBuild { pname = "seethru"; - version = "20150218.1329"; + version = "20150218.1929"; src = fetchFromGitHub { owner = "Benaiah"; repo = "seethru"; @@ -52907,7 +53201,7 @@ sha256 = "0qd462qbqdx53xh3ddf76chiljxf6s43r28v2ix85gsig7nm5pgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seethru"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seethru"; sha256 = "1lcwslkki9s15xr2dmh2iic4ax8ia0j20hjnjmkv612wv04b806v"; name = "seethru"; }; @@ -52920,7 +53214,7 @@ sekka = callPackage ({ cl-lib ? null, concurrent, fetchFromGitHub, fetchurl, lib, melpaBuild, popup }: melpaBuild { pname = "sekka"; - version = "20150708.759"; + version = "20150708.1359"; src = fetchFromGitHub { owner = "kiyoka"; repo = "sekka"; @@ -52928,7 +53222,7 @@ sha256 = "1as3llcs7jgcw9pafz4mbfml1cqd1fw8yl64bb4467nmhq2p18p7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -52941,7 +53235,7 @@ select-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "select-themes"; - version = "20160220.2006"; + version = "20160221.206"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-select-themes"; @@ -52949,7 +53243,7 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; @@ -52962,7 +53256,7 @@ selected = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "selected"; - version = "20160428.337"; + version = "20160428.937"; src = fetchFromGitHub { owner = "Kungsgeten"; repo = "selected.el"; @@ -52970,7 +53264,7 @@ sha256 = "0qc2lyzmvcgld6vnlnp6a01cw0268c4hs2y7lwzaah2c8cps6n6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selected"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selected"; sha256 = "0nvrfymb7wd5lcyfpxzh0rc0l3qcwrvh0l32ag7mgs7jzgvnphnx"; name = "selected"; }; @@ -52983,7 +53277,7 @@ selectric-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "selectric-mode"; - version = "20151201.1018"; + version = "20151201.1618"; src = fetchFromGitHub { owner = "rbanffy"; repo = "selectric-mode"; @@ -52991,7 +53285,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -53004,7 +53298,7 @@ semi = callPackage ({ fetchFromGitHub, fetchurl, flim, lib, melpaBuild }: melpaBuild { pname = "semi"; - version = "20160301.1000"; + version = "20160301.1600"; src = fetchFromGitHub { owner = "wanderlust"; repo = "semi"; @@ -53012,7 +53306,7 @@ sha256 = "0x4n2d7jsadwknscnwj64s5320wbj4pc0zrcm2c8xfwwgr9wl47k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/semi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/semi"; sha256 = "01wk3lgln5lac65hp6v83d292bdk7544z23xa1v6a756nhybwv25"; name = "semi"; }; @@ -53025,7 +53319,7 @@ sendto = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sendto"; - version = "20160425.850"; + version = "20160425.1450"; src = fetchFromGitHub { owner = "lujun9972"; repo = "sendto.el"; @@ -53033,7 +53327,7 @@ sha256 = "13qqprxz87cv3sjlq5hj0jp0qcfm3djfgasga8cc84ykrcc47p9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sendto"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sendto"; sha256 = "00ifasqpmggr4bhdyymzr215840y0ayfnfp0mh7wj99mr6f3zfq0"; name = "sendto"; }; @@ -53046,7 +53340,7 @@ sensitive = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sequences }: melpaBuild { pname = "sensitive"; - version = "20131015.935"; + version = "20131015.1535"; src = fetchFromGitHub { owner = "timvisher"; repo = "sensitive.el"; @@ -53054,7 +53348,7 @@ sha256 = "0g4jfcc5k26yh192bmmxnim9mqv993v2jjd9g9ssvnd42ihpx1n3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sensitive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sensitive"; sha256 = "0v988k0x3mdp7ank2ihghphh8sanvv96s4sg6pnszg5hczak1vr3"; name = "sensitive"; }; @@ -53067,13 +53361,13 @@ sentence-highlight = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sentence-highlight"; - version = "20121026.1050"; + version = "20121026.1650"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sentence-highlight.el"; sha256 = "01qj57zpqpr4rxk9bsx828c7baac1xaa58cz22fncirdx00svn2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sentence-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sentence-highlight"; sha256 = "16kh6567hb9lczh8zpqwbzz5bikg2fsabifhhky8qwxp4dy07v9m"; name = "sentence-highlight"; }; @@ -53086,15 +53380,15 @@ sentence-navigation = callPackage ({ ample-regexps, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sentence-navigation"; - version = "20150915.46"; + version = "20150915.646"; src = fetchFromGitHub { owner = "noctuid"; repo = "emacs-sentence-navigation"; - rev = "8b6bf8af180c95f516bda9285da3fe940a2ab740"; - sha256 = "0ikiv12ahndvk5w9pdayqlmafwj8d1vkcshfnqmgy6ykqbcdpqk6"; + rev = "935f44387bc8f7277e373052817124e628fe6b48"; + sha256 = "1slhm6cn9pp9vkz2i18sn82j5v38315s0wic7qdmk93ss72jhdvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sentence-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sentence-navigation"; sha256 = "1p3ch1ab06v038h130fsxpbq45d1yadl67i2ih4l4fh3xah5997m"; name = "sentence-navigation"; }; @@ -53107,7 +53401,7 @@ seoul256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seoul256-theme"; - version = "20150714.1835"; + version = "20150715.35"; src = fetchFromGitHub { owner = "ChrisDavison"; repo = "seoul256.el"; @@ -53115,7 +53409,7 @@ sha256 = "15vmd1qmj8a6a5mmvdcnbav6mi5rhrp39m85idzv02zm0x9x6lyc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seoul256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seoul256-theme"; sha256 = "0mgyq725x5hmhs3h8v5macv8bfkginjghhwr9kli60vdb4skgjvp"; name = "seoul256-theme"; }; @@ -53128,7 +53422,7 @@ sequences = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sequences"; - version = "20130908.1422"; + version = "20130908.2022"; src = fetchFromGitHub { owner = "timvisher"; repo = "sequences.el"; @@ -53136,7 +53430,7 @@ sha256 = "1np6ip28ksms6fig67scwvwj43zgblny50ccvz8aclbl0z8nxswl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sequences"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sequences"; sha256 = "12wnkywkmxfk2sx40h90k53d5qmc8hiky5vhlyf0ws3n39zvhplh"; name = "sequences"; }; @@ -53149,13 +53443,13 @@ sequential-command = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sequential-command"; - version = "20151207.1703"; + version = "20151207.2303"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sequential-command.el"; sha256 = "0vg8rqzzi29swznhra2mnf45czr2vb77dpcxn3j0fi7gynx3wcwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sequential-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sequential-command"; sha256 = "03qybacgy5fs3lam73x0rds4f68s173mhbah6rr97272nikd50v1"; name = "sequential-command"; }; @@ -53168,7 +53462,7 @@ servant = callPackage ({ ansi, commander, dash, epl, f, fetchFromGitHub, fetchurl, lib, melpaBuild, s, shut-up, web-server }: melpaBuild { pname = "servant"; - version = "20140216.719"; + version = "20140216.1319"; src = fetchFromGitHub { owner = "cask"; repo = "servant"; @@ -53176,7 +53470,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/servant"; sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; @@ -53189,7 +53483,7 @@ serverspec = callPackage ({ dash, f, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, s }: melpaBuild { pname = "serverspec"; - version = "20150623.755"; + version = "20150623.1355"; src = fetchFromGitHub { owner = "k1LoW"; repo = "emacs-serverspec"; @@ -53197,7 +53491,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -53210,7 +53504,7 @@ session = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "session"; - version = "20120510.2000"; + version = "20120511.200"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "session"; @@ -53218,7 +53512,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -53231,7 +53525,7 @@ seti-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "seti-theme"; - version = "20150314.422"; + version = "20150314.922"; src = fetchFromGitHub { owner = "caisah"; repo = "seti-theme"; @@ -53239,7 +53533,7 @@ sha256 = "18igxblmrbxwhd2d68cz1bpj4524djh2dw2rwhxlij76f9v805wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/seti-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/seti-theme"; sha256 = "1mwkx3hynabwr0a2rm1bh91h7xf38a11h1fb6ys8s3mnr68csd9z"; name = "seti-theme"; }; @@ -53252,7 +53546,7 @@ sexp-move = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sexp-move"; - version = "20150915.1330"; + version = "20150915.1930"; src = fetchFromGitLab { owner = "elzair"; repo = "sexp-move"; @@ -53260,7 +53554,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -53273,7 +53567,7 @@ shackle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shackle"; - version = "20160516.719"; + version = "20160516.1319"; src = fetchFromGitHub { owner = "wasamasa"; repo = "shackle"; @@ -53281,7 +53575,7 @@ sha256 = "1xmxms9rhys2k7cl5v0zhqm23my5jv5f0s3541j044hn55rcpig5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -53294,7 +53588,7 @@ shadchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shadchen"; - version = "20141102.1339"; + version = "20141102.1939"; src = fetchFromGitHub { owner = "VincentToups"; repo = "shadchen-el"; @@ -53302,7 +53596,7 @@ sha256 = "0phivbhjdw76gzrx35rp0zybqfb0fdy2hjllf72qf1r0r5gxahl8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shadchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shadchen"; sha256 = "1r1mfmv4cdlc8kzjiqz81kpqdrwbnyciwdgg6n5x0yi4apwpvnl4"; name = "shadchen"; }; @@ -53315,7 +53609,7 @@ shader-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shader-mode"; - version = "20151030.1004"; + version = "20151030.1504"; src = fetchFromGitHub { owner = "midnightSuyama"; repo = "shader-mode"; @@ -53323,7 +53617,7 @@ sha256 = "0l094nrrvan8v6j1xdgb51cbjvwicvxih29b7iyga13adb9dy9j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shader-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shader-mode"; sha256 = "12y84fa1wc82js53rpadaysmbshhqf6wb97889qkksx19n3xmb9g"; name = "shader-mode"; }; @@ -53336,7 +53630,7 @@ shakespeare-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shakespeare-mode"; - version = "20150708.1012"; + version = "20150708.1612"; src = fetchFromGitHub { owner = "CodyReichert"; repo = "shakespeare-mode"; @@ -53344,7 +53638,7 @@ sha256 = "1y9bgpz96zgjw5fvq2ma7q6392i9j1rrj5axp085ccgn7w24mii7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; @@ -53357,7 +53651,7 @@ shampoo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shampoo"; - version = "20131230.519"; + version = "20131230.1119"; src = fetchFromGitHub { owner = "dmatveev"; repo = "shampoo-emacs"; @@ -53365,7 +53659,7 @@ sha256 = "15a8gs4lrqxn0jyfw16rc6vm7z1i10pzzlnp30x6nly9a7xra47x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -53377,13 +53671,13 @@ }) {}; shell-command = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-command"; - version = "20090621.932"; + version = "20090621.1532"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/shell-command.el"; sha256 = "0jr5sbmg4zrx2dfdrajh2didm6dxx9ri5ib9qnwhc1jlppinyi7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-command"; sha256 = "1jxn721i4s1k5x1qldiynnl5khsl22x9k3whm698nzv8m786spxl"; name = "shell-command"; }; @@ -53396,7 +53690,7 @@ shell-current-directory = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-current-directory"; - version = "20140101.1854"; + version = "20140102.54"; src = fetchFromGitHub { owner = "metaperl"; repo = "shell-current-directory"; @@ -53404,7 +53698,7 @@ sha256 = "1w42j5cdddr0riz1xjq3wiz5i9f71i9jdzd1l92ir0mlj05wjyic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-current-directory"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-current-directory"; sha256 = "0bj2gs96ivm5x8l7gwvfckyalr1amh4cb1v2dbl323zmrqddhgkd"; name = "shell-current-directory"; }; @@ -53417,7 +53711,7 @@ shell-here = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-here"; - version = "20150728.1304"; + version = "20150728.1904"; src = fetchFromGitHub { owner = "ieure"; repo = "shell-here"; @@ -53425,7 +53719,7 @@ sha256 = "0z04z07r7p5p05zhaka37s48y82hg2dbk0ynap4inph3frn4yyfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-here"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-here"; sha256 = "0csi70v89bqdpbsizji6c5z0jmkx4x4vk1zfclkpap4dalmxxcsh"; name = "shell-here"; }; @@ -53437,13 +53731,13 @@ }) {}; shell-history = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-history"; - version = "20100504.450"; + version = "20100504.1050"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/shell-history.el"; sha256 = "0biqjm0fpd7c7jilgkcwp6c32car05r5akimbcdii3clllavma7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-history"; sha256 = "1blad7ggv27qzpai2ib1pmr23ljj8asq880g3d7w8fhqv0p1pjs7"; name = "shell-history"; }; @@ -53456,7 +53750,7 @@ shell-pop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-pop"; - version = "20160425.1054"; + version = "20160425.1654"; src = fetchFromGitHub { owner = "kyagi"; repo = "shell-pop-el"; @@ -53464,7 +53758,7 @@ sha256 = "1ddd32f3k1mqk4h88kn0m9c3xd9y6yszkzm4s23fd6d96daw4smc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -53477,7 +53771,7 @@ shell-split-string = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-split-string"; - version = "20151224.508"; + version = "20151224.1108"; src = fetchFromGitHub { owner = "10sr"; repo = "shell-split-string-el"; @@ -53485,7 +53779,7 @@ sha256 = "16srngml5xmpaxb0wzhx91jil0r0dmn673bwai3lzxrkmjnl748l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -53498,7 +53792,7 @@ shell-switcher = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-switcher"; - version = "20160112.235"; + version = "20160112.835"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "shell-switcher"; @@ -53506,7 +53800,7 @@ sha256 = "1bcrxq43a45alv6x0wms4d4nykiqz2mzk04kwk5lmf5pw3dqm900"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -53519,7 +53813,7 @@ shell-toggle = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shell-toggle"; - version = "20150226.911"; + version = "20150226.1511"; src = fetchFromGitHub { owner = "knu"; repo = "shell-toggle.el"; @@ -53527,7 +53821,7 @@ sha256 = "0ssaccdacabpja9nqzhr8x8ggfwmlian7y4p0fa6gvr7qsvjpgr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -53540,7 +53834,7 @@ shelldoc = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "shelldoc"; - version = "20151114.2225"; + version = "20151115.425"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-shelldoc"; @@ -53548,7 +53842,7 @@ sha256 = "1mc7y79h5p9cxqwsl40b1j5la5bm8b70n6fn4rx9wr4bi7rwph5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -53561,7 +53855,7 @@ shelltest-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shelltest-mode"; - version = "20141227.548"; + version = "20141227.1148"; src = fetchFromGitHub { owner = "rtrn"; repo = "shelltest-mode"; @@ -53569,7 +53863,7 @@ sha256 = "0f45q8j9m0ic3l69i7qjhf0l19cprn56fxw61al4xd3wxv4pr9gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -53582,15 +53876,15 @@ shen-elisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shen-elisp"; - version = "20160521.812"; + version = "20160602.1412"; src = fetchFromGitHub { owner = "deech"; repo = "shen-elisp"; - rev = "808782f6ec8a48af92a5fdf141636b3ed59dfb6a"; - sha256 = "16dm3yisd62qxis5r6ajsdw3gbz6ympzavm1ry0689zr44plfj8w"; + rev = "c92b998aa512660c3ff8320eb38daec265e354c1"; + sha256 = "1rimrvl2887nwwkrvk1yw65f8cdmyykw19aqdswxv4cvww7rdbim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shen-elisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shen-elisp"; sha256 = "0i6z2icpndv5g5ydmwqskl7vrmdz9qp30l5bw1l7gqr3dippjiyz"; name = "shen-elisp"; }; @@ -53603,7 +53897,7 @@ shift-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shift-number"; - version = "20160419.1557"; + version = "20160419.2157"; src = fetchFromGitHub { owner = "alezost"; repo = "shift-number.el"; @@ -53611,7 +53905,7 @@ sha256 = "0dlwcifw5mlski0mbvqqgmpb0jgf5i67x04s8yab1sq9rr07is57"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-number"; sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; name = "shift-number"; }; @@ -53624,7 +53918,7 @@ shift-text = callPackage ({ cl-lib ? null, es-lib, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shift-text"; - version = "20130831.1255"; + version = "20130831.1855"; src = fetchFromGitHub { owner = "sabof"; repo = "shift-text"; @@ -53632,7 +53926,7 @@ sha256 = "13zsws8gq9a8nfk4yzlvfsvqjh9zbnanmw68rcna93yc5nc634nr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-text"; sha256 = "1v9zk7ycc8k1qk1cfs2y1knygl686msmlilqy5a7mh0w0z9f3a2i"; name = "shift-text"; }; @@ -53666,15 +53960,15 @@ shm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shm"; - version = "20160211.1454"; + version = "20160529.941"; src = fetchFromGitHub { owner = "chrisdone"; repo = "structured-haskell-mode"; - rev = "587a766bcc66830c7aead59b7463e6ce78ced9ba"; - sha256 = "1gwxrqp95hqbv53hf4ahl2pbgsvhszz73ny4mnp7by24zbp51pzy"; + rev = "bf7a260db4cd385204f408873c5123363eaf1d9f"; + sha256 = "1l6v0zfccms341whl211dh7z6k970simnzfz1909pszrabafmy7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -53687,7 +53981,7 @@ shoulda = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shoulda"; - version = "20140616.1433"; + version = "20140616.2033"; src = fetchFromGitHub { owner = "marcwebbie"; repo = "shoulda.el"; @@ -53695,7 +53989,7 @@ sha256 = "19p47a4hwl6h2w5ay09hjhl4kf7cydwqp8s2iyrx2i0k58az8i8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shoulda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shoulda"; sha256 = "0lmlhx34nwvn636y2wvw3sprhhh6q3mdg7dzgpjj7ybibvhp1lzk"; name = "shoulda"; }; @@ -53708,7 +54002,7 @@ show-css = callPackage ({ doom, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "show-css"; - version = "20160210.908"; + version = "20160210.1508"; src = fetchFromGitHub { owner = "8cylinder"; repo = "showcss-mode"; @@ -53716,7 +54010,7 @@ sha256 = "11kzjm12hbcdzrshq20r20l29k3555np1sva7afqrhgvd239fdq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/show-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/show-css"; sha256 = "0sq15l58macy2affdgbimnchn491fnrqr3bbgn30k3l3xkvkmc7k"; name = "show-css"; }; @@ -53729,7 +54023,7 @@ show-marks = callPackage ({ fetchFromGitHub, fetchurl, fm, lib, melpaBuild }: melpaBuild { pname = "show-marks"; - version = "20130805.1049"; + version = "20130805.1649"; src = fetchFromGitHub { owner = "vapniks"; repo = "show-marks"; @@ -53737,7 +54031,7 @@ sha256 = "15vkk7lnnfwgzkiwpqz1l1qpnz2d10l82m10m0prbw03k1zx22c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/show-marks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/show-marks"; sha256 = "1jgxdclj88ca106vcvf1k8zbf7iwamy80c2ad8b3myz0f4zscjzb"; name = "show-marks"; }; @@ -53749,13 +54043,13 @@ }) {}; showkey = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "showkey"; - version = "20151231.1859"; + version = "20160101.59"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/showkey.el"; sha256 = "0pq88kz5h0hzgfk8fyf3lppxalmadg5czbik824bpykp9l9gnf1m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/showkey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/showkey"; sha256 = "1m280ll07i5c6s4w0s227jygdlpvd87dq45039v0sljyxm4bfrsv"; name = "showkey"; }; @@ -53767,13 +54061,13 @@ }) {}; showtip = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "showtip"; - version = "20080329.2259"; + version = "20080330.459"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/showtip.el"; sha256 = "01ibg36lvmdk7ac1k0f0r6wyds4rq0wb7gzw26nkiwykn14gxaql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/showtip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/showtip"; sha256 = "1fdhdmkvyz1dcy3x0im1iab6yhhh8gqvxmm6ccwr6rl1r1m5zwc8"; name = "showtip"; }; @@ -53786,7 +54080,7 @@ shpec-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shpec-mode"; - version = "20150530.522"; + version = "20150530.1122"; src = fetchFromGitHub { owner = "shpec"; repo = "shpec-mode"; @@ -53794,7 +54088,7 @@ sha256 = "1mizhbwvnsxxjz6m94qziibvhghhp8v8db3wxrq3z9gsaqqkcndn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -53807,7 +54101,7 @@ shrink-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shrink-whitespace"; - version = "20150916.1515"; + version = "20150916.2115"; src = fetchFromGitHub { owner = "jcpetkovich"; repo = "shrink-whitespace.el"; @@ -53815,7 +54109,7 @@ sha256 = "07zzyfibs2c7w4gpvdh9003frznbg7zdnrx0nv8bvn0b68d3yz0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -53828,7 +54122,7 @@ shut-up = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "shut-up"; - version = "20150423.822"; + version = "20150423.1422"; src = fetchFromGitHub { owner = "cask"; repo = "shut-up"; @@ -53836,7 +54130,7 @@ sha256 = "00c11s664hwj1l1hw7qshygy3wb6wbd0hn6qqnyq1xr0r87nnhjs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -53849,7 +54143,7 @@ sibilant-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sibilant-mode"; - version = "20151119.1645"; + version = "20151119.2245"; src = fetchFromGitHub { owner = "jbr"; repo = "sibilant-mode"; @@ -53857,7 +54151,7 @@ sha256 = "0cjqh6qbbmgxd6zgqnikw6bh8wpjydydkkqs5wcmblpi5awqmnb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sibilant-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sibilant-mode"; sha256 = "0jd6dsk93nvwi5yia3623hfc4v6zz4s2n8m1wx9bw8x6kv3h3qbq"; name = "sibilant-mode"; }; @@ -53870,7 +54164,7 @@ sicp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sicp"; - version = "20151130.1057"; + version = "20151130.1657"; src = fetchFromGitHub { owner = "webframp"; repo = "sicp-info"; @@ -53878,7 +54172,7 @@ sha256 = "102ssiz4sp7y816s1iy8i98c314jbn3sy0v87b0qgpgjiq913ffq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sicp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sicp"; sha256 = "1q7pbhjk8qgwvj27ianrdbmj98pwf3xv10gmpchh7bypmbyir4wz"; name = "sicp"; }; @@ -53891,7 +54185,7 @@ sift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sift"; - version = "20160107.515"; + version = "20160107.1115"; src = fetchFromGitHub { owner = "nlamirault"; repo = "sift.el"; @@ -53899,7 +54193,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -53912,7 +54206,7 @@ signal = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "signal"; - version = "20160424.310"; + version = "20160424.910"; src = fetchFromGitHub { owner = "Mola-T"; repo = "signal"; @@ -53920,7 +54214,7 @@ sha256 = "1n6mjfw655a5q0ifq52yf6nyc0zxcahr47dvxg0p8x8v3f4jskvz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/signal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/signal"; sha256 = "0pvl5qxi0rjbxkpa8kk1q9vz11i9yjmph42si3n7gmm9kc28pk61"; name = "signal"; }; @@ -53933,7 +54227,7 @@ signature = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "signature"; - version = "20140730.1549"; + version = "20140730.2149"; src = fetchFromGitHub { owner = "pidu"; repo = "signature"; @@ -53941,7 +54235,7 @@ sha256 = "1g4rr7hpy9r3y4vdpv48xpmy8kqvs4j64kvnhnj2rw2wv1grw78j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/signature"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/signature"; sha256 = "11n3id1iiip99lj8c0iffbrf59s2yvmwlhqbf8xzxkhws7vwdl5q"; name = "signature"; }; @@ -53954,7 +54248,7 @@ silkworm-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "silkworm-theme"; - version = "20160217.809"; + version = "20160217.1409"; src = fetchFromGitHub { owner = "mswift42"; repo = "silkworm-theme"; @@ -53962,7 +54256,7 @@ sha256 = "0vzkgrc54j4a3g90jxc7vxkqwqi3047gnn7gng65pfar0i76lzlb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/silkworm-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/silkworm-theme"; sha256 = "1zbrjqmhf80qs3i910sixirrv42rxkqdrg2z03gnz1g885gpcn13"; name = "silkworm-theme"; }; @@ -53975,7 +54269,7 @@ simp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simp"; - version = "20160315.1224"; + version = "20160315.1724"; src = fetchFromGitHub { owner = "re5et"; repo = "simp"; @@ -53983,7 +54277,7 @@ sha256 = "177bhvynqsdfwwqhhlh1v0pqvscy3xv6hhxi7fb42l5dmsw5b97z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simp"; sha256 = "0x4lssjkj3fk9fw603f0sggvcj25iw0zbzsm5c949lhl4a3wvc9c"; name = "simp"; }; @@ -53996,7 +54290,7 @@ simple-call-tree = callPackage ({ anaphora, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-call-tree"; - version = "20160319.1316"; + version = "20160319.1816"; src = fetchFromGitHub { owner = "vapniks"; repo = "simple-call-tree"; @@ -54004,7 +54298,7 @@ sha256 = "0cj4w62b6glz7sfqj08sdlyfnnhy7z1v1gmjkvy1j0fv9i2n2z48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-call-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-call-tree"; sha256 = "1cbv4frsrwd8d3rg8r4sylwnc1hl3hgh595qwbpx0zd3dp5na2yl"; name = "simple-call-tree"; }; @@ -54017,7 +54311,7 @@ simple-httpd = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-httpd"; - version = "20150430.2055"; + version = "20150501.255"; src = fetchFromGitHub { owner = "skeeto"; repo = "emacs-web-server"; @@ -54025,7 +54319,7 @@ sha256 = "0jn46fk0ljqs40kz6ngp0sk6hg1334835r2rmagx4qm0mdaqy7p8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-httpd"; sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; @@ -54038,15 +54332,15 @@ simple-mpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-mpc"; - version = "20151227.1334"; + version = "20160524.2051"; src = fetchFromGitHub { owner = "jorenvo"; repo = "simple-mpc"; - rev = "7a93c57b3f5d5bb7494a39982db21f25bc4ebbe9"; - sha256 = "1bnc3ykgf727lc0ajxa8qsx616baljdgav78fkz57irm65dqr18q"; + rev = "8669258ecb153ea00853b9c4b975ee85d755ded7"; + sha256 = "0545nnn7mni7755mxkdianmcd4rv9djfmhsdasc1ym7s619zr20i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-mpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-mpc"; sha256 = "05x2xyys5mf6k7ndh0l6ykyiygaznb4f8bx3npbhvihrsz9ilf8r"; name = "simple-mpc"; }; @@ -54059,13 +54353,13 @@ simple-plus = callPackage ({ fetchurl, lib, melpaBuild, strings }: melpaBuild { pname = "simple-plus"; - version = "20151231.1900"; + version = "20160101.100"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/simple+.el"; sha256 = "01fdk790jlpxy95y67yv6944ws4zjh7gs6ymnj1yflf19ccsdsnn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple+"; sha256 = "12fsgjk53fq2316j8nm6wvdckpyg9hq3v65j5c52i0g0cwmx62ra"; name = "simple-plus"; }; @@ -54078,7 +54372,7 @@ simple-rtm = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, rtm }: melpaBuild { pname = "simple-rtm"; - version = "20160222.1034"; + version = "20160222.1634"; src = fetchFromGitHub { owner = "mbunkus"; repo = "simple-rtm"; @@ -54086,7 +54380,7 @@ sha256 = "1kkhnsxr8zrb21k4ckyg69nsndwy4zdkvfw2drk4v1vnbgx8144f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-rtm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-rtm"; sha256 = "1aadzaf73clhyny2qiryg6z84k34yx3ghy6pyl0px9qhqc1ak271"; name = "simple-rtm"; }; @@ -54099,7 +54393,7 @@ simple-screen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simple-screen"; - version = "20141023.1058"; + version = "20141023.1658"; src = fetchFromGitHub { owner = "wachikun"; repo = "simple-screen"; @@ -54107,7 +54401,7 @@ sha256 = "0zf9wgyp0n00i00zl1lxr0d60569zgcjdnmdvgpcibvny5s1fp2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-screen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-screen"; sha256 = "16zvsmqn882w320h26hjjz5lcyl9y0x4amkf2zfps77xxmkmi5n0"; name = "simple-screen"; }; @@ -54120,7 +54414,7 @@ simpleclip = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simpleclip"; - version = "20150804.1310"; + version = "20150804.1910"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "simpleclip"; @@ -54128,7 +54422,7 @@ sha256 = "09286h2q9dqghgfj9a4cniz6djw7867vcy3ixs7cn4wghvhyxm8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -54141,7 +54435,7 @@ simplenote = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "simplenote"; - version = "20141118.940"; + version = "20141118.1540"; src = fetchFromGitHub { owner = "dotemacs"; repo = "simplenote.el"; @@ -54149,7 +54443,7 @@ sha256 = "0xq4vy3ggdjiycd3aa62k94kd43zcpm8bfdgi8grwkb1lpvwq9i9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote"; sha256 = "0rnvm3q2spfj15kx2c8ic1p8hxg7rwiqgf3x2zg34j1xxayn3h2j"; name = "simplenote"; }; @@ -54162,7 +54456,7 @@ simplenote2 = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "simplenote2"; - version = "20160318.903"; + version = "20160318.1403"; src = fetchFromGitHub { owner = "alpha22jp"; repo = "simplenote2.el"; @@ -54170,7 +54464,7 @@ sha256 = "0k16sjbrhxbv3fj5rzjzvs03230nwlzmvw18dhdhzzblk08f28dp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -54183,7 +54477,7 @@ simplezen = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "simplezen"; - version = "20130421.600"; + version = "20130421.1200"; src = fetchFromGitHub { owner = "magnars"; repo = "simplezen.el"; @@ -54191,7 +54485,7 @@ sha256 = "0108q2b5h73rjxg9k2kmc8z6la9kgqdnz9z1x7rn61v3vbxlzqvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -54204,7 +54498,7 @@ skeletor = callPackage ({ cl-lib ? null, dash, emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "skeletor"; - version = "20151220.2354"; + version = "20151221.554"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "skeletor.el"; @@ -54212,7 +54506,7 @@ sha256 = "0kbgxjfdf88h7hfds1kbdxx84wvkvy773r98ym1fzfm54m2kddvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -54225,7 +54519,7 @@ skewer-less = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "skewer-less"; - version = "20131015.922"; + version = "20131015.1522"; src = fetchFromGitHub { owner = "purcell"; repo = "skewer-less"; @@ -54233,7 +54527,7 @@ sha256 = "16757xz5ank3jsh8xglyly7pwdn5xm0yngampy1n1vgcwsp5080a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -54246,7 +54540,7 @@ skewer-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "skewer-mode"; - version = "20150914.1604"; + version = "20150914.2204"; src = fetchFromGitHub { owner = "skeeto"; repo = "skewer-mode"; @@ -54254,7 +54548,7 @@ sha256 = "0dwc3qaqnzjsccvr3gapip4yr17fzgv4w33ydq8hjqn8rs9rqq6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -54267,15 +54561,15 @@ skewer-reload-stylesheets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode }: melpaBuild { pname = "skewer-reload-stylesheets"; - version = "20160520.641"; + version = "20160527.1400"; src = fetchFromGitHub { owner = "NateEag"; repo = "skewer-reload-stylesheets"; - rev = "4316231660002d9035169ed7a845d9bffdee111c"; - sha256 = "19ijy3c8dfp2kdfj6x0cmgc09pwxj6r9fgyayxfg15f8rlyxwkk2"; + rev = "ee18c555a7355d5c90d5405281c0ccb20e407565"; + sha256 = "1p5h1yn0rvfivq68lv92vfxb03vr81qhgzi6ppxaxmmxy83r26v0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-reload-stylesheets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-reload-stylesheets"; sha256 = "1rxn0ha2yhvyc195alg31nk1sjghnbha33xrqwc9z3j71w211frm"; name = "skewer-reload-stylesheets"; }; @@ -54288,7 +54582,7 @@ skype = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "skype"; - version = "20131002.18"; + version = "20131002.618"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-skype"; @@ -54296,7 +54590,7 @@ sha256 = "0gzj7cf42nhp3ac1a2gxcfbmn80z1z46zxsfr2f5xil2gjag39fx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skype"; sha256 = "06p5s5agajbm9vg9xxpzv817xmjw2kmcahiw4iypn5yzwhv1aykl"; name = "skype"; }; @@ -54309,7 +54603,7 @@ slack = callPackage ({ alert, circe, emojify, fetchFromGitHub, fetchurl, lib, melpaBuild, oauth2, request, websocket }: melpaBuild { pname = "slack"; - version = "20160521.1022"; + version = "20160521.1622"; src = fetchFromGitHub { owner = "yuya373"; repo = "emacs-slack"; @@ -54317,7 +54611,7 @@ sha256 = "00cla208vr3rm9v32hpjylrdl2gnkpbh05z8v3nzpvj5l6mrpbcv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slack"; sha256 = "0mybjx08yskk9vi06ayiknl5ddyd8h0mnr8c0a3zr61p1x4s6anp"; name = "slack"; }; @@ -54330,7 +54624,7 @@ slamhound = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slamhound"; - version = "20140506.1918"; + version = "20140507.118"; src = fetchFromGitHub { owner = "technomancy"; repo = "slamhound"; @@ -54338,7 +54632,7 @@ sha256 = "108zcb7hdaaq3sxjfr9nrwzqxx71q6aygzik7l3ab854xknkjfad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -54351,7 +54645,7 @@ slideview = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slideview"; - version = "20150324.1840"; + version = "20150324.2340"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-slideview"; @@ -54359,7 +54653,7 @@ sha256 = "11p1pghx55a4gcn45cadw7c594134b21cdim723k2h99z14f89az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -54372,7 +54666,7 @@ slim-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slim-mode"; - version = "20140611.1250"; + version = "20140611.1850"; src = fetchFromGitHub { owner = "slim-template"; repo = "emacs-slim"; @@ -54380,7 +54674,7 @@ sha256 = "0vgyc2ny9qmn8f5r149y4g398mh4gnwsp4yim85z4vmdikqg8vi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -54393,15 +54687,15 @@ slime = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild }: melpaBuild { pname = "slime"; - version = "20160521.1215"; + version = "20160521.1815"; src = fetchFromGitHub { owner = "slime"; repo = "slime"; - rev = "2da9fef009f2380daf9404022ca69cb87573f509"; - sha256 = "0d1fcjv11my4sa11zim99ylzfsc5q989x4izrrxs3y9ii0nq8kax"; + rev = "330877a6041bc68eb47f1525dea93d3629346bfc"; + sha256 = "1n0m8pvkb2i0alh8mljyd6jj54v185qpqbm3281xnc5y08zjw7v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; @@ -54414,7 +54708,7 @@ slime-annot = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-annot"; - version = "20131230.2208"; + version = "20131231.408"; src = fetchFromGitHub { owner = "arielnetworks"; repo = "cl-annot"; @@ -54422,7 +54716,7 @@ sha256 = "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-annot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-annot"; sha256 = "14x9lzpkgkc96jsbfpahl027qh6y5azwdk0cmk9pbd1xm95kxj6n"; name = "slime-annot"; }; @@ -54435,7 +54729,7 @@ slime-company = callPackage ({ company, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-company"; - version = "20151210.914"; + version = "20151210.1514"; src = fetchFromGitHub { owner = "anwyn"; repo = "slime-company"; @@ -54443,7 +54737,7 @@ sha256 = "0cc8xb2p1j2vs00h4sq6x0mwwrxkidqj4l7kg3n3150bj37v55rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -54456,7 +54750,7 @@ slime-docker = callPackage ({ cl-lib ? null, docker-tramp, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, slime }: melpaBuild { pname = "slime-docker"; - version = "20160506.1708"; + version = "20160506.2308"; src = fetchFromGitHub { owner = "daewok"; repo = "slime-docker"; @@ -54464,7 +54758,7 @@ sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-docker"; sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; name = "slime-docker"; }; @@ -54477,7 +54771,7 @@ slime-ritz = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-ritz"; - version = "20130218.1837"; + version = "20130219.37"; src = fetchFromGitHub { owner = "pallet"; repo = "ritz"; @@ -54485,7 +54779,7 @@ sha256 = "0rsh0bbhyx74yz1gjfqyi0bkqq5n3scpyh5mmc3d6dkpv8wa7bwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -54498,7 +54792,7 @@ slime-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-theme"; - version = "20141116.202"; + version = "20141116.802"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-slime-theme"; @@ -54506,7 +54800,7 @@ sha256 = "13rm9pmshgssmydhpirri38s38z3kvkhqama40qdzqq96dsxlnjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-theme"; sha256 = "1b709cplxip48a6qjdnzcn5qcgsy0jq1m05d7vc8p5ywgr1f9a00"; name = "slime-theme"; }; @@ -54519,7 +54813,7 @@ slime-volleyball = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slime-volleyball"; - version = "20140718.41"; + version = "20140718.641"; src = fetchFromGitHub { owner = "fitzsim"; repo = "slime-volleyball"; @@ -54527,7 +54821,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -54540,7 +54834,7 @@ slirm = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slirm"; - version = "20160201.925"; + version = "20160201.1525"; src = fetchFromGitHub { owner = "fbie"; repo = "slirm"; @@ -54548,7 +54842,7 @@ sha256 = "0srj0zcvzr0sjcs37zz11xz8w0yv94m69av9ny7mx8ssf4qp0pxa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slirm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slirm"; sha256 = "061xjj3vjdkkvd979fhp7bc12g5zkxqxywvcz3z9dlkgdks41ld7"; name = "slirm"; }; @@ -54561,7 +54855,7 @@ slovak-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "slovak-holidays"; - version = "20150418.455"; + version = "20150418.1055"; src = fetchFromGitHub { owner = "Fuco1"; repo = "slovak-holidays"; @@ -54569,7 +54863,7 @@ sha256 = "1y1gay1h91c0690gly4qibx1my0l1zpb6s3x58lks8m21jdwfw28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slovak-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slovak-holidays"; sha256 = "1dcw8pa3r9b7n7dc8fgzijz7ywwxb3nlfg7n0by8dnvpjq2c30bg"; name = "slovak-holidays"; }; @@ -54582,15 +54876,15 @@ sly = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sly"; - version = "20160427.1052"; + version = "20160522.1827"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly"; - rev = "4a0a8268948d3a569bcbb774824b7c4c203350f2"; - sha256 = "0i7x07wgrs2dlhk97lphn7lg6d7q8ibs9hl25lmfgifixl1275k4"; + rev = "2dcaeed7b262f1b0f456807f03e9530915179e42"; + sha256 = "11lc5xg8n2kw5ajsgazw3riq113azmyclm83i2lj0sqm9wyj4rhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -54603,7 +54897,7 @@ sly-company = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-company"; - version = "20160308.857"; + version = "20160308.1457"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-company"; @@ -54611,7 +54905,7 @@ sha256 = "128gb6hsb7zig4czwgwjcm58lgqk6rmj7qi17a9cz5gsnggjcwii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -54624,7 +54918,7 @@ sly-hello-world = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-hello-world"; - version = "20160119.936"; + version = "20160119.1536"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-hello-world"; @@ -54632,7 +54926,7 @@ sha256 = "1fxsv83fcv5l7cndsysd8salvfwsabvd84sm7zli2ksf678774gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-hello-world"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-hello-world"; sha256 = "03ybjgczp6ssk4hmwd486vshlk7ql27k1lyhmvk26gmrf554z90n"; name = "sly-hello-world"; }; @@ -54645,7 +54939,7 @@ sly-macrostep = callPackage ({ fetchFromGitHub, fetchurl, lib, macrostep, melpaBuild, sly }: melpaBuild { pname = "sly-macrostep"; - version = "20160119.734"; + version = "20160119.1334"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-macrostep"; @@ -54653,7 +54947,7 @@ sha256 = "00lw6hkxs71abjyi7nhzi8j6n55jyhzsp81ycn6f2liyp4rmqgi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-macrostep"; sha256 = "1i004mb0bg13j3zhdsjz1795dh0ry8winzvdghr1wardc9np60h7"; name = "sly-macrostep"; }; @@ -54666,7 +54960,7 @@ sly-named-readtables = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-named-readtables"; - version = "20150817.1116"; + version = "20150817.1716"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-named-readtables"; @@ -54674,7 +54968,7 @@ sha256 = "1xi625pn3mg77mjvr94v6a5pjyvgjavpkdbbh1lqjx1halaa2qb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-named-readtables"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-named-readtables"; sha256 = "11ymzbj1ji7avfjqafj9p5zx0m4y1jfjcmyanpjq1frdcz639ir9"; name = "sly-named-readtables"; }; @@ -54687,7 +54981,7 @@ sly-quicklisp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-quicklisp"; - version = "20160204.1115"; + version = "20160204.1715"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "sly-quicklisp"; @@ -54695,7 +54989,7 @@ sha256 = "1mb78cdkmik9rwccvzl8slv4dfy8sdq69dkys7q11jyn8lfm476y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-quicklisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-quicklisp"; sha256 = "1hpcz84g9c6g0x8qal02xgjj02gxqz3bysyz0l59jxiga0m634v8"; name = "sly-quicklisp"; }; @@ -54708,7 +55002,7 @@ sly-repl-ansi-color = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, sly }: melpaBuild { pname = "sly-repl-ansi-color"; - version = "20160214.318"; + version = "20160214.918"; src = fetchFromGitHub { owner = "PuercoPop"; repo = "sly-repl-ansi-color"; @@ -54716,7 +55010,7 @@ sha256 = "194bdibpxpqsag86h583b62ybmfqmq4442a0czbijqwngbgjpj3l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-repl-ansi-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-repl-ansi-color"; sha256 = "0wz24kfjl6rp4qss0iq2ilav0mkg2spy2ziikypy7v0iqbssmssi"; name = "sly-repl-ansi-color"; }; @@ -54729,7 +55023,7 @@ smart-comment = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-comment"; - version = "20160322.1439"; + version = "20160322.1939"; src = fetchFromGitHub { owner = "paldepind"; repo = "smart-comment"; @@ -54737,7 +55031,7 @@ sha256 = "0r181rdnymr96kj74c73212n6157cfiq1d6hk2lfc54yl6h76zf4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-comment"; sha256 = "0lbrasdrkyj7zybz0f3xick8p0bvci5bhb2kg6pqzz9pw2iaxw12"; name = "smart-comment"; }; @@ -54749,13 +55043,13 @@ }) {}; smart-compile = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-compile"; - version = "20150519.1247"; + version = "20150519.1847"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/smart-compile.el"; sha256 = "0sm4nxynwhwypzw008fz56axai9lrphjczwzfdy7da3akan18rbd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-compile"; sha256 = "0vgxqyzl7jw2j96rmjw75b5lmjwrvzajrdvfyabss4xmv96dy2r3"; name = "smart-compile"; }; @@ -54768,7 +55062,7 @@ smart-cursor-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-cursor-color"; - version = "20141124.1219"; + version = "20141124.1819"; src = fetchFromGitHub { owner = "7696122"; repo = "smart-cursor-color"; @@ -54776,7 +55070,7 @@ sha256 = "1xbd42q60pmg0hw4bn2fndjwgrfgj6ggm757fyp8m08jqh0zkarn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-cursor-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-cursor-color"; sha256 = "11875pwlx2rm8d86541na9g3yiq0j472vg63mryqv6pzq3n8q6jx"; name = "smart-cursor-color"; }; @@ -54789,7 +55083,7 @@ smart-forward = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-forward"; - version = "20140430.313"; + version = "20140430.913"; src = fetchFromGitHub { owner = "magnars"; repo = "smart-forward.el"; @@ -54797,7 +55091,7 @@ sha256 = "19l47xqzjhhm9j3izik0imssip5ygg3lnflb9ixsz1js571aaxha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-forward"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-forward"; sha256 = "032yc45c19fl886jmi5q04r6q47xz5rphb040wjvpd4fnb06hr8c"; name = "smart-forward"; }; @@ -54810,7 +55104,7 @@ smart-indent-rigidly = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-indent-rigidly"; - version = "20141205.1915"; + version = "20141206.115"; src = fetchFromGitHub { owner = "re5et"; repo = "smart-indent-rigidly"; @@ -54818,7 +55112,7 @@ sha256 = "0q5hxg265ad9gpclv2kzikg6jvbf3zzb1mrykxn0n7mnvdfdlhsi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-indent-rigidly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-indent-rigidly"; sha256 = "12qggg1m28mlvkdn52dig8bwv58pvipkvn1mlc4r7w569arar44x"; name = "smart-indent-rigidly"; }; @@ -54831,7 +55125,7 @@ smart-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-mark"; - version = "20150911.2210"; + version = "20150912.410"; src = fetchFromGitHub { owner = "cheunghy"; repo = "smart-mark"; @@ -54839,7 +55133,7 @@ sha256 = "0sqvm7iwdjk057fwid4kz6wj71igiqhdarj59s17pzy6xz34afhg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mark"; sha256 = "1vv65sa0pwl407mbxcp653kycgx8jz87n6wshias1dp9lv21pj6v"; name = "smart-mark"; }; @@ -54852,7 +55146,7 @@ smart-mode-line = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, rich-minority }: melpaBuild { pname = "smart-mode-line"; - version = "20160506.1047"; + version = "20160506.1647"; src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; @@ -54860,7 +55154,7 @@ sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -54873,7 +55167,7 @@ smart-mode-line-powerline-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, smart-mode-line }: melpaBuild { pname = "smart-mode-line-powerline-theme"; - version = "20160520.1154"; + version = "20160520.1754"; src = fetchFromGitHub { owner = "Malabarba"; repo = "smart-mode-line"; @@ -54881,7 +55175,7 @@ sha256 = "0cp04lxxg7q5c6w0knznz4pjb5h1k0h3zxhlsf6snpi7j2ay4560"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -54894,7 +55188,7 @@ smart-newline = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-newline"; - version = "20131207.2240"; + version = "20131208.440"; src = fetchFromGitHub { owner = "ainame"; repo = "smart-newline.el"; @@ -54902,7 +55196,7 @@ sha256 = "1q74b0mbhly84g252a0arbyxc720rgs9a3yqf8b8s2fpfkzb95sg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-newline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-newline"; sha256 = "1kyk865vkgh05vzlggs3ii81v86fcbcxybfkv5rkyl3fyqpkza1w"; name = "smart-newline"; }; @@ -54915,7 +55209,7 @@ smart-region = callPackage ({ cl-lib ? null, emacs, expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild, multiple-cursors }: melpaBuild { pname = "smart-region"; - version = "20150903.1003"; + version = "20150903.1603"; src = fetchFromGitHub { owner = "uk-ar"; repo = "smart-region"; @@ -54923,7 +55217,7 @@ sha256 = "0h559cdyln5f4ignx1r86ryi7wizys0gj03dj7lfzaxr7wkd0jaf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-region"; sha256 = "1bcvxf62bfi5lmhprma9rh670kka9p9ygbkgmv6dg6ajjfsplgwc"; name = "smart-region"; }; @@ -54936,7 +55230,7 @@ smart-shift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-shift"; - version = "20150203.225"; + version = "20150203.825"; src = fetchFromGitHub { owner = "hbin"; repo = "smart-shift"; @@ -54944,7 +55238,7 @@ sha256 = "0azhfffm1bkgjx4i3p9f6x2gmw8kc3fafzqj4vxxdibhn0nizqk8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-shift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-shift"; sha256 = "0azahlflnh6sk081k5dcqal6nmwkjnj4dq8pv8ckwf8684zp23d3"; name = "smart-shift"; }; @@ -54957,7 +55251,7 @@ smart-tab = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-tab"; - version = "20150703.1217"; + version = "20150703.1817"; src = fetchFromGitHub { owner = "genehack"; repo = "smart-tab"; @@ -54965,7 +55259,7 @@ sha256 = "0aighpby8khrljb67m533bwkzlsckyvv7d09cnzr1rfwxiil0ml4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tab"; sha256 = "0qi8jph2c9fdsv2mqgxd7wb3q4dax3g5x2hc53kbgkjxylagjvp5"; name = "smart-tab"; }; @@ -54978,7 +55272,7 @@ smart-tabs-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-tabs-mode"; - version = "20140331.1929"; + version = "20140401.129"; src = fetchFromGitHub { owner = "jcsalomon"; repo = "smarttabs"; @@ -54986,7 +55280,7 @@ sha256 = "1s65hr7b8aggvdd1i6gkkpz6j1kqilggfnf46xvjnvdw9awmwk6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -54999,7 +55293,7 @@ smart-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smart-window"; - version = "20130214.1442"; + version = "20130214.2042"; src = fetchFromGitHub { owner = "dryman"; repo = "smart-window.el"; @@ -55007,7 +55301,7 @@ sha256 = "15834lnh7dq9kz31k06ifpnc0vz86rycz0ryildi5qd2nb7s3lw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-window"; sha256 = "1x1ncldl9njil9hhvzj5ac1l5aiyfm0f7j0d7lw8ady7xx2cy26m"; name = "smart-window"; }; @@ -55020,7 +55314,7 @@ smartparens = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartparens"; - version = "20160521.808"; + version = "20160521.1408"; src = fetchFromGitHub { owner = "Fuco1"; repo = "smartparens"; @@ -55028,7 +55322,7 @@ sha256 = "1bznffl17x2n0k8k6jadnqnjk4r90y50wrvqyygyc3ib414k933x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -55041,7 +55335,7 @@ smartrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartrep"; - version = "20150508.2230"; + version = "20150509.430"; src = fetchFromGitHub { owner = "myuhe"; repo = "smartrep.el"; @@ -55049,7 +55343,7 @@ sha256 = "1sjwqi8w83qxihqmcm7z0vwmrz1az0y266qgj2nwfv39bri6y4i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -55062,7 +55356,7 @@ smartscan = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartscan"; - version = "20131230.1039"; + version = "20131230.1639"; src = fetchFromGitHub { owner = "mickeynp"; repo = "smart-scan"; @@ -55070,7 +55364,7 @@ sha256 = "193cxfnh263yw628ipf9gssvyq3j7mffrdmnjhvzzcsnhd1k145p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -55083,7 +55377,7 @@ smartwin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smartwin"; - version = "20160513.356"; + version = "20160513.956"; src = fetchFromGitHub { owner = "jerryxgh"; repo = "smartwin"; @@ -55091,7 +55385,7 @@ sha256 = "1jcaspqrm23viigk0701711bmaqsyc5fbpkszf7bg7nvhkl4pfqy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartwin"; sha256 = "0rg92j0aa8qxhr91hjj2f4w8vj5w9b4d2nmkggng44nxk8zafdif"; name = "smartwin"; }; @@ -55104,7 +55398,7 @@ smarty-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smarty-mode"; - version = "20100703.758"; + version = "20100703.1358"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "smarty-mode"; @@ -55112,7 +55406,7 @@ sha256 = "1vl3nx0y2skb8sibqxvmc3wrmmd6z88hknbry348d0ik3cbr0ijx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smarty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smarty-mode"; sha256 = "06cyr2330asy2dlx81g3h9gq0yhd4pbnmzfvmla7amh4pfnjg14v"; name = "smarty-mode"; }; @@ -55125,7 +55419,7 @@ smblog = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smblog"; - version = "20160317.730"; + version = "20160317.1230"; src = fetchFromGitHub { owner = "aaptel"; repo = "smblog-mode"; @@ -55133,7 +55427,7 @@ sha256 = "1ca8i45dj41vif2hm87ircwm9alxdm98irfi586ybrc72s24036r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smblog"; sha256 = "1byalkpc1bcb6p4j4g1cwc4q2i7irxjcphb0hqh1b2k1zixrw5rr"; name = "smblog"; }; @@ -55146,7 +55440,7 @@ smeargle = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smeargle"; - version = "20151014.142"; + version = "20151014.742"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-smeargle"; @@ -55154,7 +55448,7 @@ sha256 = "1smv91ggvaw37597ilvhra8cnj4p71n6v5pfazii8k85kvs6x460"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -55167,7 +55461,7 @@ smex = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smex"; - version = "20151212.1709"; + version = "20151212.2309"; src = fetchFromGitHub { owner = "nonsequitur"; repo = "smex"; @@ -55175,7 +55469,7 @@ sha256 = "0xrbkpc3w7yadpjih169cpp75gilsnx4y9akgci5vfcggv4ffm26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -55188,14 +55482,14 @@ sml-modeline = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sml-modeline"; - version = "20120110.1540"; + version = "20120110.2140"; src = fetchbzr { url = "lp:~nxhtml/nxhtml/main"; rev = "835"; sha256 = "1p10q1b5bvc8fvgfxynrq2kf1ygr6gad92x40zhaa5r1ksf6ryk4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sml-modeline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sml-modeline"; sha256 = "086hslzznv6fmlhkf28mcl8nh4xk802mv6w0a4zwd5px2wyyaysd"; name = "sml-modeline"; }; @@ -55208,7 +55502,7 @@ smooth-scroll = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scroll"; - version = "20130322.14"; + version = "20130322.514"; src = fetchFromGitHub { owner = "k-talo"; repo = "smooth-scroll.el"; @@ -55216,7 +55510,7 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; @@ -55229,15 +55523,15 @@ smooth-scrolling = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smooth-scrolling"; - version = "20160227.2015"; + version = "20160526.1132"; src = fetchFromGitHub { owner = "aspiers"; repo = "smooth-scrolling"; - rev = "6a1420be510decde0a5eabc56cff229ae554417e"; - sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; + rev = "b53137fb0f6fa43e71844fb327c720acdecf5fac"; + sha256 = "01rgv2qivi06bb56jy6l80923syrrjnn9d1z4wrz9rvyamq1g2j7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -55250,7 +55544,7 @@ smotitah = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smotitah"; - version = "20150218.530"; + version = "20150218.1130"; src = fetchFromGitHub { owner = "laynor"; repo = "smotitah"; @@ -55258,7 +55552,7 @@ sha256 = "1a097f1x9l0m4dizvnb742svlqsm6hlif73rk7qjar081sk1gjxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smotitah"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smotitah"; sha256 = "1m5qjl3r96riljp48il8k4rb6rwys1xf1pl93d4qjhprwvz57mv2"; name = "smotitah"; }; @@ -55271,7 +55565,7 @@ smtpmail-multi = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smtpmail-multi"; - version = "20160218.1849"; + version = "20160219.49"; src = fetchFromGitHub { owner = "vapniks"; repo = "smtpmail-multi"; @@ -55279,7 +55573,7 @@ sha256 = "0zknryfpg4791l7d7xv9hn2fx00rmbqw3737lfm75484hr10lymz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smtpmail-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smtpmail-multi"; sha256 = "0nc3k8ly4nx7fm3b2apga3p4svz5c9sldnlk86pz2lzra5h3b4ss"; name = "smtpmail-multi"; }; @@ -55292,7 +55586,7 @@ smyx-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "smyx-theme"; - version = "20141127.328"; + version = "20141127.928"; src = fetchFromGitHub { owner = "tacit7"; repo = "smyx"; @@ -55300,7 +55594,7 @@ sha256 = "1z2sdnf11wh5hz1rkrbg7fs4ha3zrbj9qnvfzq9005y89d7cs95x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smyx-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smyx-theme"; sha256 = "1r85yxr864df5akqknl3hsrmzikr4085bqr6ijrbdj27nz00vl61"; name = "smyx-theme"; }; @@ -55313,15 +55607,15 @@ snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "20160517.2144"; + version = "20160528.352"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "c64354a4f6b8e65abd8ff0a3713253de5da59e07"; - sha256 = "0iwcfywais3jagx27h666fh6zgml8fncsz1jymjrbyr0w6xi33iz"; + rev = "3f02d1af5548d15a410ee745b9e7ebc09266a1ab"; + sha256 = "12s3ykb2flnbl6kvjn0yy11y0g5nq2k5arpgf7pqwj4wgx0fl8nb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; @@ -55334,7 +55628,7 @@ snapshot-timemachine = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snapshot-timemachine"; - version = "20160222.432"; + version = "20160222.1032"; src = fetchFromGitHub { owner = "mrBliss"; repo = "snapshot-timemachine"; @@ -55342,7 +55636,7 @@ sha256 = "0m5j1v9br7vp9m2km8xccy5vv8gis0mcgwjxfc6qhnv7kbx0sx2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snapshot-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snapshot-timemachine"; sha256 = "0pvh1ilzv0ambc5cridyhjcxs58wq92bxjkisqv42yar3h3z6f8p"; name = "snapshot-timemachine"; }; @@ -55355,7 +55649,7 @@ snippet = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "snippet"; - version = "20130210.1815"; + version = "20130211.15"; src = fetchFromGitHub { owner = "pkazmier"; repo = "snippet.el"; @@ -55363,7 +55657,7 @@ sha256 = "1nyrfbjrg74wrqlh8229rf7ym07k2a0wscjm0kbg3sam9ryc546y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snippet"; sha256 = "1lgpw69k5a82y70j7nximdj0bl5nzr4jhjr5fkx1cvz8hhvgdz6j"; name = "snippet"; }; @@ -55376,7 +55670,7 @@ soft-charcoal-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-charcoal-theme"; - version = "20140420.1243"; + version = "20140420.1843"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-charcoal-theme"; @@ -55384,7 +55678,7 @@ sha256 = "07056pnjgsgw06c67776qp7jci96iqbzlprbavzz2l1j8ywz8cwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-charcoal-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-charcoal-theme"; sha256 = "0i29ais1m2h9v4ghcg41zfbnaj8klgm4509nkyfkxm7wqnjd166a"; name = "soft-charcoal-theme"; }; @@ -55397,7 +55691,7 @@ soft-morning-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-morning-theme"; - version = "20150918.1641"; + version = "20150918.2241"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-morning-theme"; @@ -55405,7 +55699,7 @@ sha256 = "06q82v1hndvznsqg0r6jrxvgxhycg9m65kay4db4yy0gmc66v2xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-morning-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-morning-theme"; sha256 = "0lzg478ax6idzh6m5sf2ds4gbv096y0c0gn15dai19f58bs63xzr"; name = "soft-morning-theme"; }; @@ -55418,7 +55712,7 @@ soft-stone-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soft-stone-theme"; - version = "20140614.435"; + version = "20140614.1035"; src = fetchFromGitHub { owner = "mswift42"; repo = "soft-stone-theme"; @@ -55426,7 +55720,7 @@ sha256 = "030mf8b0sf9mmzwhg85zh0ccvcg768kckwvbm0yzg7vmq1x46hjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soft-stone-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soft-stone-theme"; sha256 = "05jjw9z6hqln9yj8ya2xrmjnylp7psfdj9206n30m3lwnlwx399v"; name = "soft-stone-theme"; }; @@ -55439,7 +55733,7 @@ solarized-theme = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solarized-theme"; - version = "20160515.742"; + version = "20160515.1342"; src = fetchFromGitHub { owner = "bbatsov"; repo = "solarized-emacs"; @@ -55447,7 +55741,7 @@ sha256 = "0xrrx1lr9gc33skcgdi5hjkdgqrhlas3p22zzkrbkmiajsgmyxdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -55460,7 +55754,7 @@ solidity-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "solidity-mode"; - version = "20160505.503"; + version = "20160505.1103"; src = fetchFromGitHub { owner = "ethereum"; repo = "emacs-solidity"; @@ -55468,7 +55762,7 @@ sha256 = "1mlhidfnvs2sph6qavzqz5qng78q2v4n5qc021958s29kx35i603"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solidity-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solidity-mode"; sha256 = "1qdzdivrf5yaa80p61b9r1gryw112v5l2m2jkvkc7glhkhrcvwsx"; name = "solidity-mode"; }; @@ -55481,7 +55775,7 @@ sonic-pi = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, osc }: melpaBuild { pname = "sonic-pi"; - version = "20150919.630"; + version = "20150919.1230"; src = fetchFromGitHub { owner = "repl-electric"; repo = "sonic-pi.el"; @@ -55489,7 +55783,7 @@ sha256 = "1ga35d3rhdf6ffd36q58ay6380gjvkmaiid4vscga3v7ca0dkhl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sonic-pi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sonic-pi"; sha256 = "07qxm1rkw2cbxf4g2vqk3s7xnqldqkdm2zw1qh2kqjscg5gwpkqp"; name = "sonic-pi"; }; @@ -55502,7 +55796,7 @@ soothe-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "soothe-theme"; - version = "20141027.1041"; + version = "20141027.1541"; src = fetchFromGitHub { owner = "jasonm23"; repo = "emacs-soothe-theme"; @@ -55510,7 +55804,7 @@ sha256 = "10gh1hvxq9gm29r6qzlnva7vjidd7n4kih4z2ihyvbvy9za20xqw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soothe-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soothe-theme"; sha256 = "000hikpsmqpbb6v13az2dv319d0f7jjpkkpgi4vzv59z6cdlrlp3"; name = "soothe-theme"; }; @@ -55523,7 +55817,7 @@ sos = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, org }: melpaBuild { pname = "sos"; - version = "20141214.2303"; + version = "20141215.503"; src = fetchFromGitHub { owner = "omouse"; repo = "emacs-sos"; @@ -55531,7 +55825,7 @@ sha256 = "086a66jlnkiv044i4japs4czw8gfs8p0n80p42ck83zm2jnznc49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -55544,7 +55838,7 @@ sotclojure = callPackage ({ cider, clojure-mode, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, sotlisp }: melpaBuild { pname = "sotclojure"; - version = "20160421.2111"; + version = "20160422.311"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-clojure"; @@ -55552,7 +55846,7 @@ sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; @@ -55565,7 +55859,7 @@ sotlisp = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sotlisp"; - version = "20160509.1804"; + version = "20160510.4"; src = fetchFromGitHub { owner = "Malabarba"; repo = "speed-of-thought-lisp"; @@ -55573,7 +55867,7 @@ sha256 = "01n943kycazsw9znk7cj17qjlar91i5r25p3cmxcxh75wnh4h1vj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -55586,7 +55880,7 @@ sound-wav = callPackage ({ cl-lib ? null, deferred, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sound-wav"; - version = "20140303.757"; + version = "20140303.1357"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-sound-wav"; @@ -55594,7 +55888,7 @@ sha256 = "1h6h65gwxb07pscyhhhdn11h3lx3jgyfw8v1kw5m2qfrv5kh6ylq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -55607,7 +55901,7 @@ soundcloud = callPackage ({ deferred, emms, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild, request, request-deferred, string-utils }: melpaBuild { pname = "soundcloud"; - version = "20150501.2326"; + version = "20150502.526"; src = fetchFromGitHub { owner = "thieman"; repo = "soundcloud.el"; @@ -55615,7 +55909,7 @@ sha256 = "1m8wcm6y80gq5rrm4brd3f20kmk54s6ph26j4lz4cmilxk6gj56v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soundcloud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soundcloud"; sha256 = "06cbr1h03k5ixam6lsr82lx3nh2kkp0416mlig0zfkd4b8a9mf8c"; name = "soundcloud"; }; @@ -55635,7 +55929,7 @@ soundklaus = callPackage ({ cl-lib ? null, dash, emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "soundklaus"; - version = "20160314.831"; + version = "20160314.1331"; src = fetchFromGitHub { owner = "r0man"; repo = "soundklaus.el"; @@ -55643,7 +55937,7 @@ sha256 = "0w5ac515ymj43p5j19nhfqk0c3251c7x3i97r550g780niby1nc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/soundklaus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/soundklaus"; sha256 = "0b63sbgwp99ff94dxrqqp2p99j268fjkkzx0g42g726hv80d4fxb"; name = "soundklaus"; }; @@ -55656,7 +55950,7 @@ sourcekit = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcekit"; - version = "20160510.2317"; + version = "20160511.517"; src = fetchFromGitHub { owner = "nathankot"; repo = "company-sourcekit"; @@ -55664,7 +55958,7 @@ sha256 = "0b0qs398kqy6jsq22hahmfrlb6v8v3bcdgi3z2kamczb0a5k0zhf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -55677,7 +55971,7 @@ sourcemap = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sourcemap"; - version = "20160512.37"; + version = "20160512.637"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-sourcemap"; @@ -55685,7 +55979,7 @@ sha256 = "0jbny1vrv3qnam3f69yrwd6n5zngnqirc5fsa3py4bdqvlqsg2rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -55698,7 +55992,7 @@ sourcetalk = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "sourcetalk"; - version = "20140823.1039"; + version = "20140823.1639"; src = fetchFromGitHub { owner = "malroc"; repo = "sourcetalk_emacs"; @@ -55706,7 +56000,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -55719,7 +56013,7 @@ spacegray-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacegray-theme"; - version = "20150719.1531"; + version = "20150719.2131"; src = fetchFromGitHub { owner = "bruce"; repo = "emacs-spacegray-theme"; @@ -55727,7 +56021,7 @@ sha256 = "1a8jp7m9zarvljg5d9c8ydir3qcmwx05c3frs696p9nwvapf6lsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spacegray-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spacegray-theme"; sha256 = "0khiddpsywpv9qvynpfdmybd80lbrhm68j3py6ranxlv7p79j9dx"; name = "spacegray-theme"; }; @@ -55740,15 +56034,15 @@ spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }: melpaBuild { pname = "spaceline"; - version = "20160519.1115"; + version = "20160527.1418"; src = fetchFromGitHub { owner = "TheBB"; repo = "spaceline"; - rev = "d27276e30f506d2d2b75858c8a461544766eec74"; - sha256 = "0n42947xgvdf45h9nz9fmfg4dz5blkk8c883x9ynxv21r0mhvdwk"; + rev = "2d1a7bfb5bdaf24958f50b4bf93182847916af85"; + sha256 = "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -55761,7 +56055,7 @@ spacemacs-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spacemacs-theme"; - version = "20160508.1515"; + version = "20160508.2115"; src = fetchFromGitHub { owner = "nashamri"; repo = "spacemacs-theme"; @@ -55769,7 +56063,7 @@ sha256 = "1giyni1havfvh6d9gm3n0za2f4b5bg3k01pvxmnri6da12m41b9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spacemacs-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spacemacs-theme"; sha256 = "0riiim6qb6x9g5hz0k3qgdymgikynlb9l07mrbfmybkv4919p992"; name = "spacemacs-theme"; }; @@ -55782,7 +56076,7 @@ spaces = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spaces"; - version = "20130610.349"; + version = "20130610.949"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -55790,7 +56084,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaces"; sha256 = "152x7fzjnjjdk9d9h0hbixdp3haqn5vdx3bq1nfqfrkvzychyr06"; name = "spaces"; }; @@ -55803,7 +56097,7 @@ spark = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spark"; - version = "20160414.2201"; + version = "20160415.401"; src = fetchFromGitHub { owner = "alvinfrancis"; repo = "spark"; @@ -55811,7 +56105,7 @@ sha256 = "1ykqr86j17mi95s08d9fp02d7ych1331b04dcqxzxnmpkhwngyj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spark"; sha256 = "0dv7ixv9gw6xxhw5zm4gmv2ll4lja8hmn2pdizlqxaizpm245rkn"; name = "spark"; }; @@ -55824,7 +56118,7 @@ sparkline = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sparkline"; - version = "20150101.819"; + version = "20150101.1419"; src = fetchFromGitHub { owner = "woudshoo"; repo = "sparkline"; @@ -55832,7 +56126,7 @@ sha256 = "1fqd3ycywxxmln2kzqwflc69xmqlvi9gwvmf7frn0rfv73w09cvp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -55845,7 +56139,7 @@ sparql-mode = callPackage ({ async, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sparql-mode"; - version = "20160316.1104"; + version = "20160316.1604"; src = fetchFromGitHub { owner = "ljos"; repo = "sparql-mode"; @@ -55853,7 +56147,7 @@ sha256 = "1bwa7vi97xlgwzyrc9cdz8i8rajlvkp4ajs8nklsqwrvzngly9lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -55865,13 +56159,13 @@ }) {}; speck = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "speck"; - version = "20140901.1435"; + version = "20140901.2035"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/speck.el"; sha256 = "1i2z57aasljia6xd2xn1mryklc2gc9c2q1fad8wn7982sl277d10"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speck"; sha256 = "19h3syk4kjmcy7jy9nlsbq6gyxwl4xsi84dy66a3cpvmknm25kyg"; name = "speck"; }; @@ -55884,7 +56178,7 @@ speech-tagger = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speech-tagger"; - version = "20160224.302"; + version = "20160224.902"; src = fetchFromGitHub { owner = "cosmicexplorer"; repo = "speech-tagger"; @@ -55892,7 +56186,7 @@ sha256 = "0v4v2nr680zgljr9k7rgf7mhy49bv5ixc8ksba3g1bbrz0qv5ny6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -55905,14 +56199,14 @@ speechd-el = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speechd-el"; - version = "20141025.1212"; + version = "20141025.1812"; src = fetchgit { url = "git://git.freebsoft.org/git/speechd-el"; rev = "3d729817296b2ed8ad414a6aa044a8aa762259eb"; - sha256 = "044fmr2053vkd8s7kzd2v9qlz6lr8k88kfnxpiwpcbn7pb198iir"; + sha256 = "0cjw47ziv50b3i95i9y0r8rvgchawzkknv5sqr882aqqb8zgy6rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speechd-el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speechd-el"; sha256 = "07g6jwymmwkx26p3as3r370viz1cqq360cagw9ji6i0hvgrr66a0"; name = "speechd-el"; }; @@ -55925,7 +56219,7 @@ speed-type = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "speed-type"; - version = "20150120.2334"; + version = "20150121.534"; src = fetchFromGitHub { owner = "hagleitn"; repo = "speed-type"; @@ -55933,7 +56227,7 @@ sha256 = "102hjyr9ii2rmq8762irbwansbi023s7dg4a8n6lkadcvzfibmag"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speed-type"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speed-type"; sha256 = "14q423an7v5hhfx1x039fizxcn5hcscqf2jfn9rqifg4jpq8bq5g"; name = "speed-type"; }; @@ -55946,7 +56240,7 @@ sphinx-doc = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "sphinx-doc"; - version = "20160116.617"; + version = "20160116.1217"; src = fetchFromGitHub { owner = "naiquevin"; repo = "sphinx-doc.el"; @@ -55954,7 +56248,7 @@ sha256 = "1wif9wf8hwxk0q09cdnrmyas7zjg8l5b8jd6sjxd40ypn6dmz2ch"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -55967,7 +56261,7 @@ sphinx-frontend = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sphinx-frontend"; - version = "20151122.512"; + version = "20151122.1112"; src = fetchFromGitHub { owner = "kostafey"; repo = "sphinx-frontend"; @@ -55975,7 +56269,7 @@ sha256 = "1mfp4777ppg7zg7zqj755zpfk9lmcq73hxv055ig66pz30m7x5rw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-frontend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-frontend"; sha256 = "0hdn6zjnhzyka0lzdxqfzbj3lrj767ij406zha9zw8ibbkk7cmag"; name = "sphinx-frontend"; }; @@ -55985,10 +56279,31 @@ license = lib.licenses.free; }; }) {}; + spike-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "spike-theme"; + version = "20160530.1633"; + src = fetchFromGitHub { + owner = "m31271n"; + repo = "spike-theme"; + rev = "7a7766be0b6197103840644bb074f864d0d91cd8"; + sha256 = "0ah19a68d6fda3g5zzvqz28cms0yiadykkx7p8hiid4s4mdl41hj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spike-theme"; + sha256 = "06pv0zzw0w12xlafyhakf09cl0hkyzis0g2bh2jn3pv4ac2kmwkp"; + name = "spike-theme"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/spike-theme"; + license = lib.licenses.free; + }; + }) {}; splitjoin = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "splitjoin"; - version = "20150505.1032"; + version = "20150505.1632"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-splitjoin"; @@ -55996,7 +56311,7 @@ sha256 = "1qdy9nc2h7mwxh7zg2p1x7yg96hxkwxqimjp6zb1119jx0s8grjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -56009,7 +56324,7 @@ splitter = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "splitter"; - version = "20130705.350"; + version = "20130705.950"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -56017,7 +56332,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitter"; sha256 = "02vdhvipzwnh6mlj25lirzxkc0shfzqfs1p4gn3smkxqx6g7mdb2"; name = "splitter"; }; @@ -56030,7 +56345,7 @@ spotify = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spotify"; - version = "20160128.406"; + version = "20160128.1006"; src = fetchFromGitHub { owner = "remvee"; repo = "spotify-el"; @@ -56038,7 +56353,7 @@ sha256 = "185zkdghi10yjmzxlfafjk9d9cq760432h2y5z373ksshxc3pdpa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -56051,7 +56366,7 @@ spotlight = callPackage ({ counsel, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, swiper }: melpaBuild { pname = "spotlight"; - version = "20150929.355"; + version = "20150929.955"; src = fetchFromGitHub { owner = "benmaughan"; repo = "spotlight.el"; @@ -56059,7 +56374,7 @@ sha256 = "05knlca2dvpyqp9lw8dc47fl5kh2jb04q57cygkzfjjkzvywdwq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotlight"; sha256 = "0mmr1spr21pi8sfy95dsgqcxn8qfsphdkfjm5w5q97lh7496z65p"; name = "spotlight"; }; @@ -56072,7 +56387,7 @@ spray = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "spray"; - version = "20160304.1720"; + version = "20160304.2320"; src = fetchFromGitHub { owner = "ian-kelling"; repo = "spray"; @@ -56080,7 +56395,7 @@ sha256 = "0anidv7w2vwsjv8rwkvhs3x51av3y8dp435456czy5yfq6i6vfbl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spray"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spray"; sha256 = "11b3wn53309ws60w8sfpfxij7vnibj6kxxsx6w1agglqx9zqngz4"; name = "spray"; }; @@ -56093,7 +56408,7 @@ springboard = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "springboard"; - version = "20160329.1409"; + version = "20160329.2009"; src = fetchFromGitHub { owner = "jwiegley"; repo = "springboard"; @@ -56101,7 +56416,7 @@ sha256 = "0p13q8xax2h3m6rddvmh1p9biw3d1shvwwmqfhg0c93xajlwdfqi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/springboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/springboard"; sha256 = "17rmsidsbb4p08vr07mfn25m17wnpadcwr4nxvp79glp5a0wyyib"; name = "springboard"; }; @@ -56114,7 +56429,7 @@ sprintly-mode = callPackage ({ fetchFromGitHub, fetchurl, furl, lib, melpaBuild }: melpaBuild { pname = "sprintly-mode"; - version = "20121006.134"; + version = "20121006.734"; src = fetchFromGitHub { owner = "sprintly"; repo = "sprintly-mode"; @@ -56122,7 +56437,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -56135,7 +56450,7 @@ sproto-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sproto-mode"; - version = "20151115.1305"; + version = "20151115.1905"; src = fetchFromGitHub { owner = "m2q1n9"; repo = "sproto-mode"; @@ -56143,7 +56458,7 @@ sha256 = "11igl9n2zwwar1xg651g5v0r0w6xl0grm8xns9wg80351ijrci7x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sproto-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sproto-mode"; sha256 = "19l6si3sx2i542r5lyr9axby9hblx76m77f17vnsjf32n3r0qgma"; name = "sproto-mode"; }; @@ -56156,7 +56471,7 @@ sprunge = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "sprunge"; - version = "20160229.2143"; + version = "20160301.343"; src = fetchFromGitHub { owner = "tomjakubowski"; repo = "sprunge.el"; @@ -56164,7 +56479,7 @@ sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprunge"; sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; name = "sprunge"; }; @@ -56177,7 +56492,7 @@ spu = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, signal, timp }: melpaBuild { pname = "spu"; - version = "20160515.457"; + version = "20160515.1057"; src = fetchFromGitHub { owner = "mola-T"; repo = "SPU"; @@ -56185,7 +56500,7 @@ sha256 = "0ng8q1k5kwqk01h4yzqnqgv2q7hb6qvh7rdhlvncwdh68y6bdgbl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spu"; sha256 = "0g7j0rz6ga6x6akiijp4vg5iymvqx5d08d60cz6dccq120fi95v8"; name = "spu"; }; @@ -56198,7 +56513,7 @@ sql-impala = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sql-impala"; - version = "20160427.1958"; + version = "20160428.158"; src = fetchFromGitHub { owner = "jterk"; repo = "sql-impala"; @@ -56206,7 +56521,7 @@ sha256 = "0kxnwmdwx25inyprldw3sjwjxvrmran6wpm80ghai374j3arkabw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-impala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-impala"; sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi"; name = "sql-impala"; }; @@ -56219,7 +56534,7 @@ sql-indent = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sql-indent"; - version = "20150424.2016"; + version = "20150425.216"; src = fetchFromGitHub { owner = "bsvingen"; repo = "sql-indent"; @@ -56227,7 +56542,7 @@ sha256 = "17nbcaqx58fq4rz501xcqqcjhmibdlkaavmmzwcfwra7jv8hqljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-indent"; sha256 = "13s38zdd9j127p6jxbcj4d4va8mkri5dx5zh39g465mnlzx7fp8g"; name = "sql-indent"; }; @@ -56240,7 +56555,7 @@ sql-mssql = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sql-mssql"; - version = "20160512.437"; + version = "20160512.1037"; src = fetchFromGitHub { owner = "tumashu"; repo = "sql-mssql"; @@ -56248,7 +56563,7 @@ sha256 = "02jsz69j1mi082s0xfk99qrm6wskdfz20na3jc7c35f564l493hs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-mssql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-mssql"; sha256 = "15z60d2244mxhigr52g332qzjj5ygqyl1i6c19q6vfv2z2vcvy7x"; name = "sql-mssql"; }; @@ -56261,7 +56576,7 @@ sqlite = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlite"; - version = "20150417.115"; + version = "20150417.715"; src = fetchFromGitHub { owner = "cnngimenez"; repo = "sqlite.el"; @@ -56269,7 +56584,7 @@ sha256 = "0zlrx8sk7gwwr6a23mc22d7iinwf8p9ff16r9krqp86fyzbhnq1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlite"; sha256 = "1j23rqgq00as90nk6csi489ida6b83h1myl3icxivj2iw1iikgj1"; name = "sqlite"; }; @@ -56281,13 +56596,13 @@ }) {}; sqlplus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlplus"; - version = "20141009.1039"; + version = "20141009.1639"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sqlplus.el"; sha256 = "0xixdddcrzx6k0s8w9rp6q7b9qjpdb4l888gmcis42yvawb1i53d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlplus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlplus"; sha256 = "1z9pf36b1581flykis9cjv7pynnp94fm4ijzjy6hvqyj81aikxpz"; name = "sqlplus"; }; @@ -56300,15 +56615,15 @@ sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlup-mode"; - version = "20151121.930"; + version = "20160531.1353"; src = fetchFromGitHub { owner = "Trevoke"; repo = "sqlup-mode.el"; - rev = "9cb9662673b7bed891582cfc1080d91a254048f7"; - sha256 = "0p2g4ss3bf2asxcibrd8l70ll04nm47znr99l5xyzzwhyfzi61w4"; + rev = "dc85c7bbf472b535270e2ca053dbb082a09788b6"; + sha256 = "07xz6s6c24hdgsdv96f9h91ys2v5ya4117djh7qx5lwmrnd6vi90"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlup-mode"; sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; @@ -56320,13 +56635,13 @@ }) {}; sr-speedbar = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sr-speedbar"; - version = "20150804.1251"; + version = "20150804.1851"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sr-speedbar.el"; sha256 = "1ffnm2kfh8cg5rdhrkqmh4krggbxvqg3s6lc1nssv88av1c5cs3i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sr-speedbar"; sha256 = "1zq3ysz1vpc98sz2kpq307v1fp1l4ivwgrfh2kdqkkdjm4fkya23"; name = "sr-speedbar"; }; @@ -56339,7 +56654,7 @@ srefactor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "srefactor"; - version = "20160420.333"; + version = "20160420.933"; src = fetchFromGitHub { owner = "tuhdo"; repo = "semantic-refactor"; @@ -56347,7 +56662,7 @@ sha256 = "02jr9cgar2r71rrrx13rj83nd19bxajmzzgj4awzn0d93i4l5qkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -56360,7 +56675,7 @@ ssh = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh"; - version = "20120904.1642"; + version = "20120904.2242"; src = fetchFromGitHub { owner = "ieure"; repo = "ssh-el"; @@ -56368,7 +56683,7 @@ sha256 = "1rdhdkwdhb727rj53xyxk6i00sjr58a48hfig14m12niy1k739vd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh"; sha256 = "1jywn8wlqzc2mfylp0kbpzxv3kwzak3vxdbjabiawqv1m4bfpk5g"; name = "ssh"; }; @@ -56381,7 +56696,7 @@ ssh-agency = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-agency"; - version = "20160101.1735"; + version = "20160101.2335"; src = fetchFromGitHub { owner = "magit"; repo = "ssh-agency"; @@ -56389,7 +56704,7 @@ sha256 = "0076g1yb8xvn6s8gz5jxiz8mn448fmab574yizgakbxaxd91s1dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-agency"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-agency"; sha256 = "0lci3fhl2p9mwilvq1njzy13dkq5cp5ighymf3zs4gzm3w0ih3h8"; name = "ssh-agency"; }; @@ -56402,7 +56717,7 @@ ssh-config-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-config-mode"; - version = "20160326.852"; + version = "20160326.1352"; src = fetchFromGitHub { owner = "jhgorrell"; repo = "ssh-config-mode-el"; @@ -56410,7 +56725,7 @@ sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; @@ -56423,7 +56738,7 @@ ssh-tunnels = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ssh-tunnels"; - version = "20141219.618"; + version = "20141219.1218"; src = fetchFromGitHub { owner = "death"; repo = "ssh-tunnels"; @@ -56431,7 +56746,7 @@ sha256 = "10a5havjg4yjshpfzkhgjdwbrvl44narg09ddzynczmyzm4f01wh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-tunnels"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-tunnels"; sha256 = "0zlf22wg9adkhycsasv6bfim2h0cknsvihyi1q2l2l4pjdp9ypqj"; name = "ssh-tunnels"; }; @@ -56444,7 +56759,7 @@ stack-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, flycheck, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "stack-mode"; - version = "20150923.1123"; + version = "20150923.1723"; src = fetchFromGitHub { owner = "commercialhaskell"; repo = "stack-ide"; @@ -56452,7 +56767,7 @@ sha256 = "1f2dxlc3dsf9ay417h1l43fxjkrb0a4gg96zd3asx9v2alpzgcim"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stack-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stack-mode"; sha256 = "0s0m2lj40php7bc2i3fy9ikd5rmx4v7zbxfkp9vadmlc5s7w25gf"; name = "stack-mode"; }; @@ -56465,7 +56780,7 @@ stan-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stan-mode"; - version = "20160117.147"; + version = "20160117.747"; src = fetchFromGitHub { owner = "stan-dev"; repo = "stan-mode"; @@ -56473,7 +56788,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stan-mode"; sha256 = "17ph5khwwrcpyl96xnp3rsbmnk7mpwmgskxka3cfgkm190qihfqy"; name = "stan-mode"; }; @@ -56486,7 +56801,7 @@ stan-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, stan-mode, yasnippet }: melpaBuild { pname = "stan-snippets"; - version = "20160117.147"; + version = "20160117.747"; src = fetchFromGitHub { owner = "stan-dev"; repo = "stan-mode"; @@ -56494,7 +56809,7 @@ sha256 = "0nkrpx1rmzg48mi5871mgdizasv80vpald513ycx4nshyln0ymv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stan-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stan-snippets"; sha256 = "021skkvak645483s7haz1hsz98q3zd8hqi9k5zdzaqlabwdjwh85"; name = "stan-snippets"; }; @@ -56507,7 +56822,7 @@ standoff-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "standoff-mode"; - version = "20150628.1942"; + version = "20150629.142"; src = fetchFromGitHub { owner = "lueck"; repo = "standoff-mode"; @@ -56515,7 +56830,7 @@ sha256 = "0jq2hn4gqp71ynk0s2i21wp975in3xv2q18xx1fwd4p0yw8h5dig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/standoff-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/standoff-mode"; sha256 = "127bzpm1cz103f1pb860yqrh7mr0rdaivrm9p6ssd01kchl9nskp"; name = "standoff-mode"; }; @@ -56528,7 +56843,7 @@ start-menu = callPackage ({ cl-lib ? null, config-parser, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "start-menu"; - version = "20160426.825"; + version = "20160426.1425"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-start-menu"; @@ -56536,7 +56851,7 @@ sha256 = "1w3l8ahal9hjisny382bcw9w1nh2swpb1jzf2djww5h0i4r2h36c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/start-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/start-menu"; sha256 = "1k1lc9i9vcl2am9afq0ksrxwsy6kppl4i0v10h0w2fq5z374rdkv"; name = "start-menu"; }; @@ -56549,7 +56864,7 @@ stash = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stash"; - version = "20151117.927"; + version = "20151117.1527"; src = fetchFromGitHub { owner = "vermiculus"; repo = "stash.el"; @@ -56557,7 +56872,7 @@ sha256 = "0cl2y72iagmv87kg72a46a3kap2xigwnrbk2hjgvsbxv2ng5f9cr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -56570,7 +56885,7 @@ state = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "state"; - version = "20160422.850"; + version = "20160422.1450"; src = fetchFromGitHub { owner = "thisirs"; repo = "state"; @@ -56578,7 +56893,7 @@ sha256 = "1rjp1zsbh476njjznbsxr47x4lqs4i887yi9xvwvpcb2wcwfly81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/state"; sha256 = "19y3n8wnbpgbpz4jxy2p7hjqxykg09arjp7s5v22yz7il3gn48l2"; name = "state"; }; @@ -56591,7 +56906,7 @@ status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "status"; - version = "20151230.908"; + version = "20151230.1508"; src = fetchFromGitHub { owner = "tromey"; repo = "emacs-status"; @@ -56599,7 +56914,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -56612,7 +56927,7 @@ steam = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "steam"; - version = "20160427.531"; + version = "20160427.1131"; src = fetchFromGitHub { owner = "Kungsgeten"; repo = "steam.el"; @@ -56620,7 +56935,7 @@ sha256 = "142jamr8mi1nkjvivvkh2qgh5fch89xpg5wwi8q0b6hcqcsy8nqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/steam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/steam"; sha256 = "10k408spgbxi266jk8x57zwav989is16nvwg41dknz91l76v63gw"; name = "steam"; }; @@ -56633,7 +56948,7 @@ stekene-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stekene-theme"; - version = "20141108.1511"; + version = "20141108.2111"; src = fetchFromGitHub { owner = "Fanael"; repo = "stekene-theme"; @@ -56641,7 +56956,7 @@ sha256 = "0w1qb8r6nrxi5hbf8l4247yqq754zfbxz64pqqcnw43cxk0qd4j3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -56654,7 +56969,7 @@ stem = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stem"; - version = "20131102.709"; + version = "20131102.1209"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "stem"; @@ -56662,7 +56977,7 @@ sha256 = "1xc4v8a35c2vpfhza15j4f89x7vyg9bbgm7xnprij7814k8iy7p0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stem"; sha256 = "1625nbi2bmb7vzjz0s7y1cy7dp8lp83dayiib3nr2bfkv76fwkcq"; name = "stem"; }; @@ -56674,14 +56989,14 @@ }) {}; stgit = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stgit"; - version = "20140213.648"; + version = "20140213.1248"; src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "e4e04764009f749665636c4d11e0cafd9c4971e1"; sha256 = "02sh1cwh9rnrpnsg56qrwl1q4ffh9719v2l8wccjqgd39krj9m65"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -56693,13 +57008,13 @@ }) {}; sticky = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "sticky"; - version = "20101129.2152"; + version = "20101130.352"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/sticky.el"; sha256 = "18izyia1j3w2c07qhkp9h6rnvw35m5k1brrrjhm51fpdv2xj65fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sticky"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sticky"; sha256 = "1xjkdwphq3m4jrazsfnzrrcrqikfdxzph3jdzkpbzk3grd4af96w"; name = "sticky"; }; @@ -56712,7 +57027,7 @@ stickyfunc-enhance = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stickyfunc-enhance"; - version = "20150429.1414"; + version = "20150429.2014"; src = fetchFromGitHub { owner = "tuhdo"; repo = "semantic-stickyfunc-enhance"; @@ -56720,7 +57035,7 @@ sha256 = "16dxjsr5nj20blww4xpd4jzgjprzzh1nwvb810ggdmp9paf4iy0g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stickyfunc-enhance"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stickyfunc-enhance"; sha256 = "13dh19c3bljs83l847syqlg07g33hz6sapg6j4s4xv4skix8zfks"; name = "stickyfunc-enhance"; }; @@ -56733,7 +57048,7 @@ stock-ticker = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "stock-ticker"; - version = "20150204.552"; + version = "20150204.1152"; src = fetchFromGitHub { owner = "hagleitn"; repo = "stock-ticker"; @@ -56741,7 +57056,7 @@ sha256 = "191sg32z1iagyxmbn49i1lpfihld9g9741cw2kj830s4vag4kinx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stock-ticker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stock-ticker"; sha256 = "1slcjk2avybr4v9s7gglizmaxbb3yqg6s6gdbg12m3vvj3b72lfi"; name = "stock-ticker"; }; @@ -56754,7 +57069,7 @@ strie = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "strie"; - version = "20160211.1722"; + version = "20160211.2322"; src = fetchFromGitHub { owner = "jcatw"; repo = "strie.el"; @@ -56762,7 +57077,7 @@ sha256 = "1kcbkf0wbmqy9slxfqg7wsyw5n2rsaz832ibrxszb642j0l8s7pr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/strie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/strie"; sha256 = "1ngvpbws7laqxk6mm023r5295msap12h8bh9zrsbr05yxfzhlx83"; name = "strie"; }; @@ -56775,7 +57090,7 @@ string-edit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "string-edit"; - version = "20160411.256"; + version = "20160411.856"; src = fetchFromGitHub { owner = "magnars"; repo = "string-edit.el"; @@ -56783,7 +57098,7 @@ sha256 = "1xm7bb3cp99ahr5jrwi0p0258qcvlbddy98wmbq00kk5pihqbzsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -56796,7 +57111,7 @@ string-inflection = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "string-inflection"; - version = "20150805.556"; + version = "20150805.1156"; src = fetchFromGitHub { owner = "akicho8"; repo = "string-inflection"; @@ -56804,7 +57119,7 @@ sha256 = "06qs8v2pai3pyg0spmarssmrq06xg9q60wjj46s5xxichlw9pgcf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-inflection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-inflection"; sha256 = "1vrjcg1fa5adw16s4v9dq0fid0gfazxk15z9cawz0kmnpyzz3fg2"; name = "string-inflection"; }; @@ -56817,7 +57132,7 @@ string-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }: melpaBuild { pname = "string-utils"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "string-utils"; @@ -56825,7 +57140,7 @@ sha256 = "1frdspm1qgksa8cpx5gkj50xk9mgz8202pgp11lqir6l3yjcj3wq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -56837,13 +57152,13 @@ }) {}; strings = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "strings"; - version = "20151231.1907"; + version = "20160101.107"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/strings.el"; sha256 = "1sa6wd2z2qkcnjprkkm9b945qz8d0l702sv9w15wl0lngbhw84na"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/strings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/strings"; sha256 = "0n3239y7biq3rlg74m7nqimhf654w4snnw2zm7z84isgwzz2dphk"; name = "strings"; }; @@ -56856,7 +57171,7 @@ stripe-buffer = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stripe-buffer"; - version = "20141208.1008"; + version = "20141208.1608"; src = fetchFromGitHub { owner = "sabof"; repo = "stripe-buffer"; @@ -56864,7 +57179,7 @@ sha256 = "0dxajh72wdcwdb9ydbcm19fmp0p1drmh1niq4r69jnbn8sah0zax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -56877,14 +57192,14 @@ stumpwm-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stumpwm-mode"; - version = "20140130.2116"; + version = "20140131.316"; src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "61a7cf27e49e0779a53c018b2342f5f1c5cc70b4"; sha256 = "0wc2zfn0lrric9xbzdi8hj1fl3gfb2ag5fsb044zv52nkrmn2irm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -56897,14 +57212,14 @@ stupid-indent-mode = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "stupid-indent-mode"; - version = "20130816.1654"; + version = "20130816.2254"; src = fetchgit { url = "https://gist.github.com/5487564.git"; rev = "e26ff5a2c4a582c6c1940bbcd204cfeed8e65222"; sha256 = "0sw7r4sbg0vmm7gqisjdp1wansn9k64djz3p83fwmyq3qkj90ar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stupid-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stupid-indent-mode"; sha256 = "12y8qxxs04qzy09m734qg0857g4612qdswx2bh9jk7dp886fpd7p"; name = "stupid-indent-mode"; }; @@ -56917,15 +57232,15 @@ stylus-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sws-mode }: melpaBuild { pname = "stylus-mode"; - version = "20150313.1112"; + version = "20150313.1612"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; - rev = "fd48e74686679633d8eba4d1029092b667be498e"; - sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh"; + rev = "4dbde92542fc7ad61df38776980905a4721d642e"; + sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -56938,7 +57253,7 @@ subatomic-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subatomic-theme"; - version = "20160126.1038"; + version = "20160126.1638"; src = fetchFromGitHub { owner = "cryon"; repo = "subatomic"; @@ -56946,7 +57261,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -56959,7 +57274,7 @@ subatomic256-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subatomic256-theme"; - version = "20130620.2210"; + version = "20130621.410"; src = fetchFromGitHub { owner = "d11wtq"; repo = "subatomic256"; @@ -56967,7 +57282,7 @@ sha256 = "1w7mimyqc25phlww20l49wlafnxp6c7dwibvphg3vwl61g0llpq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic256-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic256-theme"; sha256 = "1whjlkpkkirpnvvjryhlpzwphr1syz5zfyg4pb66i0db03hxwwcy"; name = "subatomic256-theme"; }; @@ -56980,7 +57295,7 @@ subemacs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subemacs"; - version = "20160105.659"; + version = "20160105.1259"; src = fetchFromGitHub { owner = "kbauer"; repo = "subemacs"; @@ -56988,7 +57303,7 @@ sha256 = "10pirwc7g9vii5cyk4vg6m5g5hlap0yg9w4qy257744c67jmaxvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -57001,7 +57316,7 @@ sublime-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sublime-themes"; - version = "20160111.422"; + version = "20160111.1022"; src = fetchFromGitHub { owner = "owainlewis"; repo = "emacs-color-themes"; @@ -57009,7 +57324,7 @@ sha256 = "0q9p974xvswr2sijz1rs858x9sdx0rb00lkhj5cd90abn33lb260"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sublime-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sublime-themes"; sha256 = "1nahcfcy831c7w3c69i2na0r8jsdgprffgfdvh4c41cnk4rkgdqj"; name = "sublime-themes"; }; @@ -57022,7 +57337,7 @@ sublimity = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sublimity"; - version = "20151230.1027"; + version = "20151230.1627"; src = fetchFromGitHub { owner = "zk-phi"; repo = "sublimity"; @@ -57030,7 +57345,7 @@ sha256 = "1kpq7kpmhgq3vjd62rr4qsc824qcyjxm50m49r7invgnmgd78h4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sublimity"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sublimity"; sha256 = "1xwggaalad65cxcfvmy30f141bxhpzc3fgvwziwbzi8fygbdv4nw"; name = "sublimity"; }; @@ -57042,13 +57357,13 @@ }) {}; subr-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "subr-plus"; - version = "20151231.1907"; + version = "20160101.107"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/subr+.el"; sha256 = "1xxf8kgxzcwwjm96isj4zg31vw63ahivr6xch5dw8wsvk0mjks9y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subr+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subr+"; sha256 = "1vrv64768f7rk58mqr4pq1fjyi5n5kfqk90hzrwbvblkkrmilmfs"; name = "subr-plus"; }; @@ -57061,7 +57376,7 @@ subshell-proc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "subshell-proc"; - version = "20130122.1622"; + version = "20130122.2222"; src = fetchFromGitHub { owner = "andrewmains12"; repo = "subshell-proc"; @@ -57069,7 +57384,7 @@ sha256 = "09izm28jrzfaj469v6yd1xgjgvy6pmxarcy0rzn2ihn3c0z7mdg4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -57082,7 +57397,7 @@ sudden-death = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudden-death"; - version = "20140829.838"; + version = "20140829.1438"; src = fetchFromGitHub { owner = "yewton"; repo = "sudden-death.el"; @@ -57090,7 +57405,7 @@ sha256 = "1007xz4x1wgvxilv1qwf0a4y7hd7sqnnzwk2bdr12kfk7vq9cw2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -57103,7 +57418,7 @@ sudo-edit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudo-edit"; - version = "20160304.126"; + version = "20160304.726"; src = fetchFromGitHub { owner = "nflath"; repo = "sudo-edit"; @@ -57111,7 +57426,7 @@ sha256 = "0bscj6nziansx846rmmrpbc4wbsngq1jg70g5ncf0f14b3achaq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudo-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudo-edit"; sha256 = "10vz7q8m0l2dyhiy9r9nj17qlwyv032glshzljzhm1n20w8y1fq4"; name = "sudo-edit"; }; @@ -57124,7 +57439,7 @@ sudo-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sudo-ext"; - version = "20110117.210"; + version = "20110117.810"; src = fetchFromGitHub { owner = "rubikitch"; repo = "sudo-ext"; @@ -57132,7 +57447,7 @@ sha256 = "1ym3j9mxc8k9akk9z1m6i0gqsfcgr8k8xzz5gniw8jfarf7f4isq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudo-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudo-ext"; sha256 = "1zlnz68kzdrc7p90qmzs7fsr9ry4rl259xpyv55jh5icry290z4x"; name = "sudo-ext"; }; @@ -57144,13 +57459,13 @@ }) {}; summarye = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "summarye"; - version = "20130328.627"; + version = "20130328.1127"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/summarye.el"; sha256 = "0q5m8d6p9aqbfx17zgznkqw2jgh027xix4894wrdz91670zxd3py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/summarye"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/summarye"; sha256 = "1znd96ixg1n90yjiny84igb7m8qsbiibn7s6bky8g6n2k7zzmq65"; name = "summarye"; }; @@ -57163,7 +57478,7 @@ sunny-day-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sunny-day-theme"; - version = "20140413.1725"; + version = "20140413.2325"; src = fetchFromGitHub { owner = "mswift42"; repo = "sunny-day-theme"; @@ -57171,7 +57486,7 @@ sha256 = "0mhyhkjjwszwl5wzkys9pgvgx9sps9r46k1s1hpzzf4s3vi015mc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sunny-day-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sunny-day-theme"; sha256 = "1wsfnmmbzzyggzip66vr38yyzy27blxp91wx97bafj7jpg5cyhzw"; name = "sunny-day-theme"; }; @@ -57184,7 +57499,7 @@ sunshine = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sunshine"; - version = "20160410.1617"; + version = "20160410.2217"; src = fetchFromGitHub { owner = "aaronbieber"; repo = "sunshine.el"; @@ -57192,7 +57507,7 @@ sha256 = "0jv1shacpxqbw6pv9rlkk8z84si85alhillhb9a2s6s36kjmybk0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sunshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sunshine"; sha256 = "1lxiqw7k8cpq0v6p5whgxgzqrbx3sd9174r0d4qlkrpn6rcp44vv"; name = "sunshine"; }; @@ -57205,7 +57520,7 @@ suomalainen-kalenteri = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suomalainen-kalenteri"; - version = "20151129.604"; + version = "20151129.1204"; src = fetchFromGitHub { owner = "tlikonen"; repo = "suomalainen-kalenteri"; @@ -57213,7 +57528,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -57226,7 +57541,7 @@ super-save = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "super-save"; - version = "20160426.1029"; + version = "20160426.1629"; src = fetchFromGitHub { owner = "bbatsov"; repo = "super-save"; @@ -57234,7 +57549,7 @@ sha256 = "1frm90kssrp4s6x0g4vq4jkssh8rnrfjbgwa05igsjnsbnnfxxd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; @@ -57247,7 +57562,7 @@ supergenpass = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "supergenpass"; - version = "20130329.148"; + version = "20130329.648"; src = fetchFromGitHub { owner = "ober"; repo = "sgpass"; @@ -57255,7 +57570,7 @@ sha256 = "0m02snzka243adhwwgriml133n4312lhdia3wdqjcq8y2mlp3331"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/supergenpass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/supergenpass"; sha256 = "0ldy6j6l6rf72w0hl195rdnrabml2a5k91200s186k0r5aja4b95"; name = "supergenpass"; }; @@ -57268,15 +57583,15 @@ suscolors-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "suscolors-theme"; - version = "20160319.2043"; + version = "20160603.30"; src = fetchFromGitHub { owner = "TheSuspiciousWombat"; repo = "suscolors-emacs"; - rev = "9eb6708a8f02527b5e7cae75be727d4f2edcbfc1"; - sha256 = "09m2ayx8wf7impns1mkc0phkl1ql91ljgzv3ivk94vrgni7n5f93"; + rev = "f63434bd79dc15c96b387e360cf0cd4e48d0ffad"; + sha256 = "0bbvhxg64mchh3kzryx8ji7vgvm981i95qfbvajzabbdj6cmnfyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suscolors-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suscolors-theme"; sha256 = "08sh20lmhqzpxb55nmqwsfv4xd6sjirh592in7s6vl52r3hl0jkh"; name = "suscolors-theme"; }; @@ -57289,7 +57604,7 @@ svg-mode-line-themes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xmlgen }: melpaBuild { pname = "svg-mode-line-themes"; - version = "20150425.1606"; + version = "20150425.2206"; src = fetchFromGitHub { owner = "sabof"; repo = "svg-mode-line-themes"; @@ -57297,7 +57612,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -57310,7 +57625,7 @@ swap-buffers = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swap-buffers"; - version = "20150506.1739"; + version = "20150506.2339"; src = fetchFromGitHub { owner = "ekazakov"; repo = "swap-buffers"; @@ -57318,7 +57633,7 @@ sha256 = "1kn70570r6x0h1xfs1vr8as27pjfanyhml140yms60gdjb4ssf9r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swap-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swap-buffers"; sha256 = "0ih5dhnqy3c9nlfz9m2zwy4q4jaam09ykbdqhsxx2hnwjk7p35bw"; name = "swap-buffers"; }; @@ -57331,7 +57646,7 @@ swap-regions = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swap-regions"; - version = "20160413.1323"; + version = "20160413.1923"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "swap-regions.el"; @@ -57339,7 +57654,7 @@ sha256 = "1m0apxjcj6xhbic36il1mbbril6pw2h6d9kmsb0jhibyy6mc8r78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swap-regions"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swap-regions"; sha256 = "0gl4vr7wjh5gjskrwbqypaqyfigpgh379bm4l2gvbsbhahsmbj67"; name = "swap-regions"; }; @@ -57351,13 +57666,13 @@ }) {}; swbuff-x = callPackage ({ fetchurl, lib, melpaBuild, swbuff }: melpaBuild { pname = "swbuff-x"; - version = "20130607.614"; + version = "20130607.1214"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/swbuff-x.el"; sha256 = "1fkicyjvanh8yk2y27sq075sarcyqhsdz0r4xhillpnv34ji98r5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swbuff-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swbuff-x"; sha256 = "1wglcxgfr839lynwsl8i7fm70sxxjidy3ib6ibz0kgiwr41rh49y"; name = "swbuff-x"; }; @@ -57370,7 +57685,7 @@ sweetgreen = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, request }: melpaBuild { pname = "sweetgreen"; - version = "20151207.1216"; + version = "20151207.1816"; src = fetchFromGitHub { owner = "CestDiego"; repo = "sweetgreen.el"; @@ -57378,7 +57693,7 @@ sha256 = "10blwlwg1ry9jznf1a6iss5s0z8sj9gc02ayf5qv92mgxvjhrhdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -57391,7 +57706,7 @@ swift-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "swift-mode"; - version = "20160124.536"; + version = "20160124.1136"; src = fetchFromGitHub { owner = "chrisbarrett"; repo = "swift-mode"; @@ -57399,7 +57714,7 @@ sha256 = "08397a8y8hgyzwny4z9f6kgwy8d37h0iypcjps3l6lhnk35mshv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -57412,15 +57727,15 @@ swiper = callPackage ({ emacs, fetchFromGitHub, fetchurl, ivy, lib, melpaBuild }: melpaBuild { pname = "swiper"; - version = "20160511.211"; + version = "20160602.918"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper"; - rev = "12145d74ebd884ce5b674be71df8ac69b59e7d04"; - sha256 = "0xzskxyj9w01w1kjy1y5igcirinhr3y6rqfj32g1f1xkn0f91sg5"; + rev = "c960de51ce4e868daedb91e523ff6267a3113c3a"; + sha256 = "0zlcfyw7wi5djg54bzxnyqnqsf5pa2c3v96bas76n08k9fazk9m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper"; sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; @@ -57433,7 +57748,7 @@ swiper-helm = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, swiper }: melpaBuild { pname = "swiper-helm"; - version = "20151116.630"; + version = "20151116.1230"; src = fetchFromGitHub { owner = "abo-abo"; repo = "swiper-helm"; @@ -57441,7 +57756,7 @@ sha256 = "1fr9vs0574g93mq88d25nmj93hrx4d4s2d0im6wk156k2yb8ha2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -57454,7 +57769,7 @@ switch-window = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "switch-window"; - version = "20160229.634"; + version = "20160229.1234"; src = fetchFromGitHub { owner = "dimitri"; repo = "switch-window"; @@ -57462,7 +57777,7 @@ sha256 = "09ba45zbya2a72prq13pjg9pgbs86c6kayf8q2papvr9f5yv57xa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -57475,7 +57790,7 @@ swoop = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, ht, lib, melpaBuild, pcre2el }: melpaBuild { pname = "swoop"; - version = "20160120.1215"; + version = "20160120.1815"; src = fetchFromGitHub { owner = "ShingoFukuyama"; repo = "emacs-swoop"; @@ -57483,7 +57798,7 @@ sha256 = "10ka6f86n07xlf0z7w35db0mzp2zk4xhr6jd19kjdrn2j0ynlcw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swoop"; sha256 = "0r265rwfbl1iyclnspxpbzf2w1q0w8dnc0wv5mz5g6hhcrr0iv6g"; name = "swoop"; }; @@ -57496,15 +57811,15 @@ sws-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sws-mode"; - version = "20150317.1545"; + version = "20150317.2045"; src = fetchFromGitHub { owner = "brianc"; repo = "jade-mode"; - rev = "fd48e74686679633d8eba4d1029092b667be498e"; - sha256 = "0rif2ln4kif1fg71pb9r6xqb12llrais5qcm7g7bcn5sw1gr3rhh"; + rev = "4dbde92542fc7ad61df38776980905a4721d642e"; + sha256 = "0p6pfxbl98kkwa3lgx82h967w4p0wbd9s96gvs72d74ryan07ij1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -57517,7 +57832,7 @@ sx = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, let-alist, lib, markdown-mode, melpaBuild }: melpaBuild { pname = "sx"; - version = "20160125.1901"; + version = "20160126.101"; src = fetchFromGitHub { owner = "vermiculus"; repo = "sx.el"; @@ -57525,7 +57840,7 @@ sha256 = "0d0c2i8hh0wrz8vnhxpxzwj7vlrjx6lrb3cx56pn4ny9qyqfzmw3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -57538,7 +57853,7 @@ symon = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "symon"; - version = "20160514.2204"; + version = "20160515.404"; src = fetchFromGitHub { owner = "zk-phi"; repo = "symon"; @@ -57546,7 +57861,7 @@ sha256 = "1q7di9s8k710nx98wnqnbkkhdimrn0jf6z4xkm4c78l6s5idjwlz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/symon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/symon"; sha256 = "11llnvngyc3xz8nd6nj86ism0hhs8p54wkscvs4yycbakbyn61lz"; name = "symon"; }; @@ -57559,7 +57874,7 @@ symon-lingr = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, symon }: melpaBuild { pname = "symon-lingr"; - version = "20150719.942"; + version = "20150719.1542"; src = fetchFromGitHub { owner = "zk-phi"; repo = "symon-lingr"; @@ -57567,7 +57882,7 @@ sha256 = "030bglxnvrkf1f9grbhd8n11j4c6sxpabpjdr1ryx522v01fvx8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/symon-lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/symon-lingr"; sha256 = "0kyhmw25cn10b4jv2yx7bvp8zkwcswiidpk4amyaisw25820gkv1"; name = "symon-lingr"; }; @@ -57580,7 +57895,7 @@ sync-recentf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sync-recentf"; - version = "20160326.1601"; + version = "20160326.2101"; src = fetchFromGitHub { owner = "ffevotte"; repo = "sync-recentf"; @@ -57588,7 +57903,7 @@ sha256 = "006siydqxqds0qqds0zxn821dk4pw14wyymyp03n594wgqzw7m8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sync-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sync-recentf"; sha256 = "17aji2vcw6zfd823anzwj8pcgyxamxr87bnni085jvlz0vx6gh9c"; name = "sync-recentf"; }; @@ -57601,15 +57916,15 @@ syndicate = callPackage ({ evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syndicate"; - version = "20160510.2058"; + version = "20160603.1723"; src = fetchFromGitHub { owner = "KNX32542"; repo = "syndicate"; - rev = "b768e8ac3183fd443707bcb1a877e5f42114ed4f"; - sha256 = "1dzk1zh10xwv2ff8z053chnwfj9zwk89zs2z7jbx0sxp1pxr3s94"; + rev = "90cee202a06f5bab48268ebf9f62c43334b69f50"; + sha256 = "1w0na1p9drdmbci7adj20amrabcpny9fb2v4bd967ils4f2wly75"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syndicate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syndicate"; sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; name = "syndicate"; }; @@ -57622,7 +57937,7 @@ synonymous = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request }: melpaBuild { pname = "synonymous"; - version = "20150909.1134"; + version = "20150909.1734"; src = fetchFromGitHub { owner = "toroidal-code"; repo = "synonymous.el"; @@ -57630,7 +57945,7 @@ sha256 = "02xnfkmpvjicckmp9is42fnavy9pd95s99zmf1wylxdji2hhpjxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synonymous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synonymous"; sha256 = "0vawa9qwvv6z1i7vzhkjdl1l9r1yham48yn5y8w8g1xyhxxp6rs5"; name = "synonymous"; }; @@ -57642,13 +57957,13 @@ }) {}; synonyms = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "synonyms"; - version = "20160328.954"; + version = "20160328.1554"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/synonyms.el"; sha256 = "1zkrh1krhjmhb924dlihfnmjf4gigk9lqkai8aal67h90g2q2dsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synonyms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synonyms"; sha256 = "0rnq97jpr047gpkxhw22jj3gw09r45vn6fwkzxnxjzcmsyk492d0"; name = "synonyms"; }; @@ -57661,7 +57976,7 @@ synosaurus = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "synosaurus"; - version = "20151119.1349"; + version = "20151119.1949"; src = fetchFromGitHub { owner = "hpdeifel"; repo = "synosaurus"; @@ -57669,7 +57984,7 @@ sha256 = "1zz9rnwaclr95fpjyabv5rlhk36n2k8f1lzz6yqh964hv8i9562s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synosaurus"; sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; @@ -57682,7 +57997,7 @@ syntactic-sugar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syntactic-sugar"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "syntactic-sugar"; @@ -57690,7 +58005,7 @@ sha256 = "0zi11540wwcl93xcgd2yf6b72zv01zkaqbf1jfbksg82k9038m2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -57703,14 +58018,14 @@ syntax-subword = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "syntax-subword"; - version = "20160519.1505"; + version = "20160519.2105"; src = fetchhg { url = "https://bitbucket.com/jpkotta/syntax-subword"; rev = "ad0db0fcb464"; sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -57723,15 +58038,15 @@ syslog-mode = callPackage ({ fetchFromGitHub, fetchurl, hide-lines, lib, melpaBuild }: melpaBuild { pname = "syslog-mode"; - version = "20160522.1015"; + version = "20160526.414"; src = fetchFromGitHub { owner = "vapniks"; repo = "syslog-mode"; - rev = "018f05fa0e91197724ae950a7c7ad08f2460bc1e"; - sha256 = "0z7zm65g0gqhs8nckyznqipqh2nw4si5bl37v3g92xgx0kyk3f2p"; + rev = "f93b2f4dd59608eaa10ec1d8f32484e6476e7169"; + sha256 = "1k3lh920p62ji5n5bvgxcfr6vc5ljssn9j0n4zydhh6ybk9j5f9n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syslog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syslog-mode"; sha256 = "15kh2v8jsw04vyh2lmh1ndpxli3cwp6yq66hl8mwb1i3g429az19"; name = "syslog-mode"; }; @@ -57744,7 +58059,7 @@ system-specific-settings = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "system-specific-settings"; - version = "20140818.1057"; + version = "20140818.1657"; src = fetchFromGitHub { owner = "DarwinAwardWinner"; repo = "emacs-system-specific-settings"; @@ -57752,7 +58067,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -57765,7 +58080,7 @@ systemd = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "systemd"; - version = "20160514.1015"; + version = "20160514.1615"; src = fetchFromGitHub { owner = "holomorph"; repo = "systemd-mode"; @@ -57773,7 +58088,7 @@ sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemd"; sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; name = "systemd"; }; @@ -57786,7 +58101,7 @@ systemtap-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "systemtap-mode"; - version = "20151122.1440"; + version = "20151122.2040"; src = fetchFromGitHub { owner = "ruediger"; repo = "systemtap-mode"; @@ -57794,7 +58109,7 @@ sha256 = "0343ss3y9i40y3i9rr7p7bb4k9dj950zyvdv44q1abw2xrfd2xwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemtap-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemtap-mode"; sha256 = "1l2jx6mvph0q2pdlhq7p4vwfw72rfl8k1rwi504bbkr5n5xwhhhz"; name = "systemtap-mode"; }; @@ -57807,7 +58122,7 @@ ta = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ta"; - version = "20150604.1324"; + version = "20150604.1924"; src = fetchFromGitHub { owner = "kuanyui"; repo = "ta.el"; @@ -57815,7 +58130,7 @@ sha256 = "054l3imxk9ivq361cr15q1wym07mw3s8xzjkzqlihrfvadsq37ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -57828,7 +58143,7 @@ tab-group = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tab-group"; - version = "20140306.950"; + version = "20140306.1550"; src = fetchFromGitHub { owner = "tarao"; repo = "tab-group-el"; @@ -57836,7 +58151,7 @@ sha256 = "0lfvgbgvsm61kv5mcjnhnfjcnr7fy1015y0hndkf9xvdlw4hahr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tab-group"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tab-group"; sha256 = "1i5lxpf3wmqnqj9mzgcn4gp1gjxp737awrzl1dml5wnarbbj4fs9"; name = "tab-group"; }; @@ -57849,7 +58164,7 @@ tab-jump-out = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tab-jump-out"; - version = "20151005.2130"; + version = "20151006.330"; src = fetchFromGitHub { owner = "cheunghy"; repo = "tab-jump-out"; @@ -57857,7 +58172,7 @@ sha256 = "0h7sfbca1nzcjylwl7zp25yj6wxnlx8g8a50zc6sg6jg4rggi2fm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tab-jump-out"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tab-jump-out"; sha256 = "0nlbyzym8l8g9w2xvykpcl5r449v30gal2k1dnz74rq4y8w4rh7n"; name = "tab-jump-out"; }; @@ -57870,15 +58185,15 @@ tabbar = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tabbar"; - version = "20141109.443"; + version = "20160524.2301"; src = fetchFromGitHub { owner = "dholm"; repo = "tabbar"; - rev = "e2f46ab03cf805c7d72f5146329fa8b45212d1c1"; - sha256 = "1h6pm3mn3qy9g24yli1pil06y9kcm9q5r86bblfqfscfcgx1ny2j"; + rev = "b6c285a7d59dcdb1f17716f0b60787922fa4be82"; + sha256 = "1akvwm4dqq4ihphlsdn8d1mm08q923y2iqh15lvc0cd0hxp3ni0q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar"; sha256 = "1y376nz1xmchwns4fz8dixbb7hbqh4mln78zvsh7y32il98wzvx9"; name = "tabbar"; }; @@ -57891,15 +58206,15 @@ tabbar-ruler = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, mode-icons, powerline, tabbar }: melpaBuild { pname = "tabbar-ruler"; - version = "20160517.2125"; + version = "20160527.648"; src = fetchFromGitHub { owner = "mattfidler"; repo = "tabbar-ruler.el"; - rev = "11366e96334e1fcc26fc5921145d834d12adc671"; - sha256 = "15b382hv5gkjmyv1r8dblhal8jbk6ypd8annnlj3i1qrgz6y4c2a"; + rev = "4663470219f0ee22ad333eeca646a4a8afdc98f6"; + sha256 = "1rf7qahc2h9v5r75cj8y4vn88xqgwxpdqxkh2cd1f6hy5m1p4cam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -57912,7 +58227,7 @@ tablist = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tablist"; - version = "20160424.535"; + version = "20160424.1135"; src = fetchFromGitHub { owner = "politza"; repo = "tablist"; @@ -57920,7 +58235,7 @@ sha256 = "013gkl672vmrji03wd74azcq390lgcr71i5c5qbs0p1v4rcbvqd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -57933,7 +58248,7 @@ tabula-rasa = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tabula-rasa"; - version = "20141216.47"; + version = "20141216.647"; src = fetchFromGitHub { owner = "idomagal"; repo = "Tabula-Rasa"; @@ -57941,7 +58256,7 @@ sha256 = "1dbjfq9a7a5s9c18nrp4kcda64jkg5cp8na31kxw0hjcn98dgqa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabula-rasa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabula-rasa"; sha256 = "14j92inssmm61bn475gyn0dn0rv8kvfnqyl1zq3xliy7a0jn58zz"; name = "tabula-rasa"; }; @@ -57954,7 +58269,7 @@ tagedit = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tagedit"; - version = "20160516.1054"; + version = "20160516.1654"; src = fetchFromGitHub { owner = "magnars"; repo = "tagedit"; @@ -57962,7 +58277,7 @@ sha256 = "104n6dmiis6w2psm2rxah9hg5jwaqzna6973ijr5a5rxyp4rcsz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -57975,7 +58290,7 @@ take-off = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, web-server }: melpaBuild { pname = "take-off"; - version = "20140531.517"; + version = "20140531.1117"; src = fetchFromGitHub { owner = "tburette"; repo = "take-off"; @@ -57983,7 +58298,7 @@ sha256 = "13zwlb5805cpv0pbr7fj5b4crlg7lb0ibslvcpszm0cz6rlifcvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/take-off"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/take-off"; sha256 = "05vlajmirbp62rpbdwa2bimpzyl9xc331gg0lhn2rkivc0hma2ar"; name = "take-off"; }; @@ -57996,14 +58311,14 @@ tango-2-theme = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tango-2-theme"; - version = "20120312.1625"; + version = "20120312.2125"; src = fetchgit { url = "https://gist.github.com/2024464.git"; rev = "64e44c98e41ebbe3b827d54280e3b9615787daaa"; sha256 = "1lqkazis9pfcfdsb2lar4l1n4pd085v60xmnlkdrdllwamqachkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tango-2-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tango-2-theme"; sha256 = "1a9qmz99h99gpd0sxqb71c08wr8pm3bzsg3p4cvf3vcirvav9lq6"; name = "tango-2-theme"; }; @@ -58016,7 +58331,7 @@ tango-plus-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tango-plus-theme"; - version = "20140425.1811"; + version = "20140426.11"; src = fetchFromGitHub { owner = "tmalsburg"; repo = "tango-plus-theme"; @@ -58024,7 +58339,7 @@ sha256 = "1gfn1yyyb9p2fi17wra1yf2j96cfjw0sifgk3c0vl63h3vmiyvjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tango-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tango-plus-theme"; sha256 = "1bx9qcwvybgd0rg8a9rag8xvb5ljrwfnm5nvq793ncvbdvq6vrh5"; name = "tango-plus-theme"; }; @@ -58037,7 +58352,7 @@ tangotango-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tangotango-theme"; - version = "20150702.404"; + version = "20150702.1004"; src = fetchFromGitHub { owner = "juba"; repo = "color-theme-tangotango"; @@ -58045,7 +58360,7 @@ sha256 = "11xb7xpmxvgv7mrjd2vlbjz3h5fa541aydv6bdxngjq6y3qn6wsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tangotango-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tangotango-theme"; sha256 = "05cnvyqmh5h5mqys7qs7d9knzxzmi2x0j1avp77x5l5njzzv59s2"; name = "tangotango-theme"; }; @@ -58058,7 +58373,7 @@ tao-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tao-theme"; - version = "20160330.950"; + version = "20160330.1550"; src = fetchFromGitHub { owner = "11111000000"; repo = "tao-theme-emacs"; @@ -58066,7 +58381,7 @@ sha256 = "0y9dd39wajiafh7kql870wg2da60nvls35pymhmzrvnwnbsw8pys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tao-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tao-theme"; sha256 = "0gl6zzk5ha6vl2xxf5fcnv1k42cw4axdjdcirr1c4r8jwdq3nl3a"; name = "tao-theme"; }; @@ -58079,15 +58394,15 @@ tawny-mode = callPackage ({ cider, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tawny-mode"; - version = "20160504.1346"; + version = "20160504.1946"; src = fetchFromGitHub { owner = "phillord"; repo = "tawny-owl"; - rev = "c07a464157581287b7c2351f7e01aa319f9fbf7a"; - sha256 = "01rqbwfjf3fbqgwdnlw2jz50xfkmrwpxq0y6mqmm9ygwjq7y3wbg"; + rev = "3bfeaeed25c0248579787db47c98c00918914526"; + sha256 = "1cdiw4p0b18zd21vasvs6hayk9rr5mz2rsgr8j0ifsamasl7vmgw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tawny-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tawny-mode"; sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; name = "tawny-mode"; }; @@ -58100,7 +58415,7 @@ tbx2org = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tbx2org"; - version = "20140224.1059"; + version = "20140224.1659"; src = fetchFromGitHub { owner = "istib"; repo = "tbx2org"; @@ -58108,7 +58423,7 @@ sha256 = "1jp80qywcphql1ngd4fr24lqdfwrw0bw6q9hgq5vmzgjwfxwxwd4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tbx2org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tbx2org"; sha256 = "1yvkw65la4w12c4w6l9ai73lzng170wv4b8gry99m2bakw3wr8m8"; name = "tbx2org"; }; @@ -58121,7 +58436,7 @@ tc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tc"; - version = "20150113.2226"; + version = "20150114.426"; src = fetchFromGitHub { owner = "kozo2"; repo = "tc"; @@ -58129,7 +58444,7 @@ sha256 = "1xpkrlfqb0np9zyxk41f3pxfkw98ii4q0xh8whq4llv5bmfxynzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tc"; sha256 = "13qdnfslnik4f97lz9bxayyhgcp1knh5gaqy00ps863j3vpzjb9s"; name = "tc"; }; @@ -58142,7 +58457,7 @@ tco = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tco"; - version = "20140412.912"; + version = "20140412.1512"; src = fetchFromGitHub { owner = "Wilfred"; repo = "tco.el"; @@ -58150,7 +58465,7 @@ sha256 = "1krway6iw62dlr4ak3kj9llqh48xjf3d84nlincap7gkrw886l4q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tco"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tco"; sha256 = "0hfrzwjlgynk3mydrpmic9mckak37r22fdglrfas6zdihgrg152f"; name = "tco"; }; @@ -58163,7 +58478,7 @@ tdd-status-mode-line = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tdd-status-mode-line"; - version = "20131123.1216"; + version = "20131123.1816"; src = fetchFromGitHub { owner = "algernon"; repo = "tdd-status-mode-line"; @@ -58171,7 +58486,7 @@ sha256 = "1jyz6z5bk1gvmknphcnvjvbl329zm8m40yl0a1hfaj8fvhwyzdw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tdd-status-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tdd-status-mode-line"; sha256 = "0z1q1aw14xq72nfx7mmvz7pr2x4960l45z02jva35zxzvb1mvsgq"; name = "tdd-status-mode-line"; }; @@ -58184,7 +58499,7 @@ tea-time = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tea-time"; - version = "20120331.420"; + version = "20120331.1020"; src = fetchFromGitHub { owner = "konzeptual"; repo = "tea-time"; @@ -58192,7 +58507,7 @@ sha256 = "0b4cwkwkc4i8lc4j30xc9d6xskm3gqrc2dij60ya75h92aj0lj40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tea-time"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tea-time"; sha256 = "0qypwf0pgsixq6c5avbwp81i3ayy9dd2fngzdvq14pax913q8pg1"; name = "tea-time"; }; @@ -58205,7 +58520,7 @@ telepathy = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "telepathy"; - version = "20131209.758"; + version = "20131209.1358"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "telepathy.el"; @@ -58213,7 +58528,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -58226,7 +58541,7 @@ telephone-line = callPackage ({ cl-generic, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "telephone-line"; - version = "20160302.1815"; + version = "20160303.15"; src = fetchFromGitHub { owner = "dbordak"; repo = "telephone-line"; @@ -58234,7 +58549,7 @@ sha256 = "1m5224k1chb788mgj7j6cbma2xh5p7avvb1ax0jdafv5lfgikka4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -58247,7 +58562,7 @@ ten-hundred-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ten-hundred-mode"; - version = "20160409.851"; + version = "20160409.1451"; src = fetchFromGitHub { owner = "aaron-em"; repo = "ten-hundred-mode.el"; @@ -58255,7 +58570,7 @@ sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ten-hundred-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ten-hundred-mode"; sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; name = "ten-hundred-mode"; }; @@ -58268,7 +58583,7 @@ term-alert = callPackage ({ alert, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, term-cmd }: melpaBuild { pname = "term-alert"; - version = "20160517.648"; + version = "20160517.1248"; src = fetchFromGitHub { owner = "CallumCameron"; repo = "term-alert"; @@ -58276,7 +58591,7 @@ sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-alert"; sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; name = "term-alert"; }; @@ -58289,7 +58604,7 @@ term-cmd = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-cmd"; - version = "20160517.645"; + version = "20160517.1245"; src = fetchFromGitHub { owner = "CallumCameron"; repo = "term-cmd"; @@ -58297,7 +58612,7 @@ sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-cmd"; sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; name = "term-cmd"; }; @@ -58307,10 +58622,31 @@ license = lib.licenses.free; }; }) {}; + term-manager = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "term-manager"; + version = "20160602.136"; + src = fetchFromGitHub { + owner = "IvanMalison"; + repo = "term-manager"; + rev = "5ee3555c2396a4cfe9089bd7fd5f10ca96b53b3b"; + sha256 = "0j2a20vl8ms657m3v9n4inr1v7l3mm70acqiqbpl6k3xb0fllxg2"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-manager"; + sha256 = "0ab388ki7vr1wpz81bvbl2fskq9zz5bicdf5gqfg01qzv5l75iza"; + name = "term-manager"; + }; + packageRequires = [ dash emacs ]; + meta = { + homepage = "https://melpa.org/#/term-manager"; + license = lib.licenses.free; + }; + }) {}; term-plus = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-plus"; - version = "20160404.655"; + version = "20160404.1255"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-el"; @@ -58318,7 +58654,7 @@ sha256 = "0ca82vj61inn41xzk36a91g73gpg38nya4r9ajc2ldjqa5z1zdj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+"; sha256 = "12lvfspqmyrapmbz3x997vf160927d325y50kxdx3s6p81r7n2n8"; name = "term-plus"; }; @@ -58331,7 +58667,7 @@ term-plus-key-intercept = callPackage ({ fetchFromGitHub, fetchurl, key-intercept, lib, melpaBuild, term-plus }: melpaBuild { pname = "term-plus-key-intercept"; - version = "20140211.250"; + version = "20140211.850"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-ki-el"; @@ -58339,7 +58675,7 @@ sha256 = "1dql2w8xkdw52zlrc2p9x391zn8wv4dj8a6293p4s08if7gg260w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+key-intercept"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+key-intercept"; sha256 = "1564a86950xdwsrwinrs118bjsfmbv8gicq0c2dfr827v5b6zrlb"; name = "term-plus-key-intercept"; }; @@ -58352,7 +58688,7 @@ term-plus-mux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, tab-group, term-plus }: melpaBuild { pname = "term-plus-mux"; - version = "20140211.249"; + version = "20140211.849"; src = fetchFromGitHub { owner = "tarao"; repo = "term-plus-mux-el"; @@ -58360,7 +58696,7 @@ sha256 = "12gfvcf7hl29xhg231cx76q04ll7cvfpvhkb0qs3qn1sqb50fs2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term+mux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term+mux"; sha256 = "129kzjpi5nzagqkjfikx9i7k6489dy7d3pd7ggn59p4cnh3r2rhh"; name = "term-plus-mux"; }; @@ -58373,7 +58709,7 @@ term-run = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "term-run"; - version = "20151228.405"; + version = "20151228.1005"; src = fetchFromGitHub { owner = "10sr"; repo = "term-run-el"; @@ -58381,7 +58717,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -58394,7 +58730,7 @@ termbright-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "termbright-theme"; - version = "20151030.2235"; + version = "20151031.335"; src = fetchFromGitHub { owner = "bmastenbrook"; repo = "termbright-theme-el"; @@ -58402,7 +58738,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -58415,15 +58751,15 @@ tern = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "tern"; - version = "20160425.959"; + version = "20160425.1559"; src = fetchFromGitHub { owner = "ternjs"; repo = "tern"; - rev = "fa172b3e3c010eee46668be266b6173422a93978"; - sha256 = "1h5wb7nbna3alfkyss03hdpmadqqlhcvmcz4d5cdzblp045lh1yc"; + rev = "ead32cf20d976f0490043f1b85e556c499f8c688"; + sha256 = "1f03mrc8gm61vrz8w3rb1g5hvibyj52hjgknj6jrzhb7b84z1z9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern"; sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; @@ -58436,15 +58772,15 @@ tern-auto-complete = callPackage ({ auto-complete, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-auto-complete"; - version = "20151123.953"; + version = "20151123.1553"; src = fetchFromGitHub { owner = "ternjs"; repo = "tern"; - rev = "fa172b3e3c010eee46668be266b6173422a93978"; - sha256 = "1h5wb7nbna3alfkyss03hdpmadqqlhcvmcz4d5cdzblp045lh1yc"; + rev = "ead32cf20d976f0490043f1b85e556c499f8c688"; + sha256 = "1f03mrc8gm61vrz8w3rb1g5hvibyj52hjgknj6jrzhb7b84z1z9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-auto-complete"; sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; @@ -58457,7 +58793,7 @@ tern-django = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, tern }: melpaBuild { pname = "tern-django"; - version = "20160221.1423"; + version = "20160221.2023"; src = fetchFromGitHub { owner = "proofit404"; repo = "tern-django"; @@ -58465,7 +58801,7 @@ sha256 = "00nv6j18s6983raajfcrxfg5rfz68cgf88zrdp7fhf9l0iicim1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -58478,7 +58814,7 @@ terraform-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, hcl-mode, lib, melpaBuild }: melpaBuild { pname = "terraform-mode"; - version = "20160502.2017"; + version = "20160503.217"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-terraform-mode"; @@ -58486,7 +58822,7 @@ sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -58499,7 +58835,7 @@ test-case-mode = callPackage ({ fetchFromGitHub, fetchurl, fringe-helper, lib, melpaBuild }: melpaBuild { pname = "test-case-mode"; - version = "20130525.1034"; + version = "20130525.1634"; src = fetchFromGitHub { owner = "ieure"; repo = "test-case-mode"; @@ -58507,7 +58843,7 @@ sha256 = "1r3fmb8cshgh9pppdvydfcrzlmb9cgz4m04rgv69c5xv8clwcmbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -58520,7 +58856,7 @@ test-kitchen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "test-kitchen"; - version = "20160516.1648"; + version = "20160516.2248"; src = fetchFromGitHub { owner = "jjasghar"; repo = "test-kitchen-el"; @@ -58528,7 +58864,7 @@ sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -58541,7 +58877,7 @@ test-simple = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "test-simple"; - version = "20160303.336"; + version = "20160303.936"; src = fetchFromGitHub { owner = "rocky"; repo = "emacs-test-simple"; @@ -58549,7 +58885,7 @@ sha256 = "0i38pzqi2ih3ckfjz323d3bc3p8y9syfjr96im16wxrs1c77h814"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -58562,7 +58898,7 @@ textile-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textile-mode"; - version = "20151203.353"; + version = "20151203.953"; src = fetchFromGitHub { owner = "juba"; repo = "textile-mode"; @@ -58570,7 +58906,7 @@ sha256 = "1qcd7vdg63q80zwz8ziaznllq1x7micmljm72s6sh3720rb5aiz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textile-mode"; sha256 = "0c1l7ml9b1zipk5fhmhirrh070h0qwwiagdk84i04yvdmmcjw2nf"; name = "textile-mode"; }; @@ -58583,7 +58919,7 @@ textmate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textmate"; - version = "20110816.1746"; + version = "20110816.2346"; src = fetchFromGitHub { owner = "defunkt"; repo = "textmate.el"; @@ -58591,7 +58927,7 @@ sha256 = "1b7xxz1i84azmbz8rqpxdn18avmnqlj87hfrpbngbf6pj5h9jqjh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -58604,7 +58940,7 @@ textmate-to-yas = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "textmate-to-yas"; - version = "20160409.1308"; + version = "20160409.1908"; src = fetchFromGitHub { owner = "mattfidler"; repo = "textmate-to-yas.el"; @@ -58612,7 +58948,7 @@ sha256 = "1bz5ys36wd00clq9w3ahqpras368aj2b9d4bl32qc6dyp8jfknmz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -58624,13 +58960,13 @@ }) {}; tfs = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tfs"; - version = "20120508.1420"; + version = "20120508.2020"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tfs.el"; sha256 = "16byw8ix7bjh5ldr8rymisq2bhc5sh7db6rhpf0x28yd6mmzn73v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tfs"; sha256 = "10szb9mni37s2blvhl1spj96narmkrv8zhrryw9q1251z8laq5v0"; name = "tfs"; }; @@ -58643,7 +58979,7 @@ theme-changer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "theme-changer"; - version = "20130725.2219"; + version = "20130726.419"; src = fetchFromGitHub { owner = "hadronzoo"; repo = "theme-changer"; @@ -58651,7 +58987,7 @@ sha256 = "0njmn5dy773v9kmwclw1m79rh52xnxl8mswcaagni2z3dvlvw4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -58664,7 +59000,7 @@ theme-looper = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "theme-looper"; - version = "20150723.1404"; + version = "20150723.2004"; src = fetchFromGitHub { owner = "myTerminal"; repo = "theme-looper"; @@ -58672,7 +59008,7 @@ sha256 = "1kd4mazrcy5xamkvvrwsmcx63g0gp5w4264kxbk3d25bjqcf8rmj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-looper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-looper"; sha256 = "02hz9k4ybpp4i8ik2av9rg240sjgicbf6w24zn67dmw4nc4lp9c5"; name = "theme-looper"; }; @@ -58685,7 +59021,7 @@ therapy = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "therapy"; - version = "20151113.1453"; + version = "20151113.2053"; src = fetchFromGitHub { owner = "abingham"; repo = "therapy"; @@ -58693,7 +59029,7 @@ sha256 = "12kz4alyf3y2i7lkvi26hcxy55v0blsrxv5srx9fv5jhxkdz1vq1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/therapy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/therapy"; sha256 = "0y040ghb0y6aq0nchqr09vapz6h6112rkwxkqsx0v7xmqrqfjvhh"; name = "therapy"; }; @@ -58705,13 +59041,13 @@ }) {}; thesaurus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "thesaurus"; - version = "20121125.1437"; + version = "20121125.2037"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thesaurus.el"; sha256 = "0zcyasdzb7dvmld8418cy2mg8mpdx01bv44cm0sp5950scrypsaq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thesaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thesaurus"; sha256 = "1nyjk9jr1xvdkil13ylfsgg7q2sx71za05gi8m2v5f45pbmbi50h"; name = "thesaurus"; }; @@ -58724,13 +59060,13 @@ thing-cmds = callPackage ({ fetchurl, hide-comnt, lib, melpaBuild }: melpaBuild { pname = "thing-cmds"; - version = "20151231.1909"; + version = "20160101.109"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thing-cmds.el"; sha256 = "1nclwxb63ffbc4wsga9ngkfcxsw88za0c4663fh9x64rl4db4hn8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thing-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thing-cmds"; sha256 = "133bm2cw9ar6m2amj0rrq4wbj9c3zl61gaprx0vlasxj2cyxs7yw"; name = "thing-cmds"; }; @@ -58742,13 +59078,13 @@ }) {}; thingatpt-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "thingatpt-plus"; - version = "20151231.1910"; + version = "20160101.110"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thingatpt+.el"; sha256 = "0ijz0mj095wycpc3as5fiikrwazljk0c04rh089ch0mzc95g3vqq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thingatpt+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thingatpt+"; sha256 = "0w031lzjl5phvzsmbbxn2fpziwkmdyxsn08h6b9lxbss1prhx7aa"; name = "thingatpt-plus"; }; @@ -58761,7 +59097,7 @@ thingopt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thingopt"; - version = "20160520.1918"; + version = "20160521.118"; src = fetchFromGitHub { owner = "m2ym"; repo = "thingopt-el"; @@ -58769,7 +59105,7 @@ sha256 = "12zpn0sy2yg37jjjx12h3kln56241b3z09bn5zavmjfdwnr9jd0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thingopt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thingopt"; sha256 = "0yvzq1z2nrldr8vhcvxqgzvh4gbrjjwfmprg59p4v5hlxvhxsb1y"; name = "thingopt"; }; @@ -58782,7 +59118,7 @@ thread-dump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thread-dump"; - version = "20130323.1325"; + version = "20130323.1825"; src = fetchFromGitHub { owner = "nd"; repo = "thread-dump.el"; @@ -58790,7 +59126,7 @@ sha256 = "0rjcrvw9v2y10ahycra53bwbccpwqxxwn2c21wjj1kfs0kdwhs9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thread-dump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thread-dump"; sha256 = "0dzr86jyf2j49gq40q6qd6lppa57n65n94xzpdjjbs182hxzavp2"; name = "thread-dump"; }; @@ -58803,15 +59139,15 @@ thrift = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thrift"; - version = "20140312.1648"; + version = "20140312.2148"; src = fetchFromGitHub { owner = "apache"; repo = "thrift"; - rev = "8e2320339fe1c6cc2b5ea75c6a5940bda1e92fc9"; - sha256 = "0bl3iaxiy2ijp82q09hsd6jhhlipv9x3km2qxsyz1x9m4zsl676f"; + rev = "39a09ac5e49481d39dd1bcb6757ffe182e3df20a"; + sha256 = "12cyzzf32k1x8fnj987va0qb9amjwrg205znc6gaz87av7w8riq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -58824,13 +59160,13 @@ thumb-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }: melpaBuild { pname = "thumb-frm"; - version = "20151231.1912"; + version = "20160101.112"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/thumb-frm.el"; sha256 = "0nyp1sp55l3mlhlxw8kyp6hxan3rbgwc4fmfs174n6hlj3zr5vg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thumb-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thumb-frm"; sha256 = "1fjjd80drm8banni909lww9zqazr1kk9m40xwwa1ln2zicaf091c"; name = "thumb-frm"; }; @@ -58843,7 +59179,7 @@ thumb-through = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "thumb-through"; - version = "20120119.34"; + version = "20120119.634"; src = fetchFromGitHub { owner = "apg"; repo = "thumb-through"; @@ -58851,7 +59187,7 @@ sha256 = "0nypcryqwwsdawqxi7hgsv6fp28zqslj9phw7zscqqxzc3svaywn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thumb-through"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thumb-through"; sha256 = "1544xw9lar199idk135z4d6i3n9w0v7g2bq7fnz0rjjw10kxvpcx"; name = "thumb-through"; }; @@ -58864,15 +59200,15 @@ tide = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild, typescript-mode }: melpaBuild { pname = "tide"; - version = "20160511.242"; + version = "20160528.632"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "tide"; - rev = "29f7cded26d277da9af489f067072f2f3ba9a23f"; - sha256 = "1d6pqams8dwx0rhfd6llwjchxb5w9fq5zdaiggkzvcd9k3sw6c4l"; + rev = "0ca8a68619540fbb2fd9ac32f3610d79ab19193b"; + sha256 = "0q09c31ry6l6ksfsw9zrsbg38z3xx3l2ndfvwcdabdahlk8r5y6m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tide"; sha256 = "1z2xr25s23sz6nrzzw2xg1l2j8jvjhxi53qh7nvxmmq6n6jjpwg1"; name = "tide"; }; @@ -58884,13 +59220,13 @@ }) {}; tidy = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tidy"; - version = "20111222.1256"; + version = "20111222.1856"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tidy.el"; sha256 = "0psci55a3angwv45z9i8wz8jw634rxg1xawkrb57m878zcxxddwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tidy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tidy"; sha256 = "09xb2k3k99hp3m725f31s6hlaxgl4fsaa1dylahxvdfddhbh290m"; name = "tidy"; }; @@ -58903,7 +59239,7 @@ time-ext = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "time-ext"; - version = "20100515.2040"; + version = "20100516.240"; src = fetchFromGitHub { owner = "rubikitch"; repo = "time-ext"; @@ -58911,7 +59247,7 @@ sha256 = "1iz3723sirazlrr9d5rpk4v0s1s9ajbx5j4i8jf1p54z8h7asjw5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/time-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/time-ext"; sha256 = "133vd63p8258wam4fvblhfg37w2zqy4a5c5c5nafwx0cy90sngwz"; name = "time-ext"; }; @@ -58924,7 +59260,7 @@ timecop = callPackage ({ cl-lib ? null, datetime-format, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "timecop"; - version = "20160520.652"; + version = "20160520.1252"; src = fetchFromGitHub { owner = "zonuexe"; repo = "emacs-datetime"; @@ -58932,7 +59268,7 @@ sha256 = "0pabb260d3vcr57jqqxqk90vp2qnm63sky37rgvhv508zix2hbva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timecop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timecop"; sha256 = "0kcjx3silk9vwysaawhcvpb7c82dzb2y7ns8x50jznylqg8c4zh5"; name = "timecop"; }; @@ -58945,7 +59281,7 @@ timer-revert = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "timer-revert"; - version = "20150122.1532"; + version = "20150122.2132"; src = fetchFromGitHub { owner = "yyr"; repo = "timer-revert"; @@ -58953,7 +59289,7 @@ sha256 = "1hidvbd1xzz9m0fc55wac1mpv4dpcf8qnw1myh3646bfvivj9c2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -58966,15 +59302,15 @@ timesheet = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "timesheet"; - version = "20151107.904"; + version = "20160530.2345"; src = fetchFromGitHub { owner = "tmarble"; repo = "timesheet.el"; - rev = "6aba2bac0be92b38c245135cebe5bf1f0d8406ab"; - sha256 = "1ghvnmswq6rg17pjnys58mak6crfcvv1vb6q7spagq143y2ar24z"; + rev = "2ed6fea9b508eb7eaff659d9a34a09ba064d4df8"; + sha256 = "028d1sn29idznzsc95w2c1sdz3rpmf3vgk2365li0vvs99s51hi2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -58987,7 +59323,7 @@ timp = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, fifo-class, lib, melpaBuild, signal }: melpaBuild { pname = "timp"; - version = "20160521.453"; + version = "20160521.1053"; src = fetchFromGitHub { owner = "mola-T"; repo = "timp"; @@ -58995,7 +59331,7 @@ sha256 = "0yinzv5v82rx1jx10gdcx93rgqz5q1pz0jyghm9xg5d9j5hv317b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timp"; sha256 = "1vh2wsgd8bclkbzn59zqbzzfzs0xx6x82004l7vnma8z97swvhgs"; name = "timp"; }; @@ -59008,7 +59344,7 @@ tinkerer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "tinkerer"; - version = "20150220.149"; + version = "20150220.749"; src = fetchFromGitHub { owner = "yyr"; repo = "tinkerer.el"; @@ -59016,7 +59352,7 @@ sha256 = "0rf177kr0qfhg8g5xrpi405dhp2va1yk170zm3f8hghi2575ciy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tinkerer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tinkerer"; sha256 = "0qh6pzjn98jlpxcm9zf25ga0y3d3v53275a9zgswyhz33mafd7pd"; name = "tinkerer"; }; @@ -59029,7 +59365,7 @@ tiny = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tiny"; - version = "20151208.505"; + version = "20151208.1105"; src = fetchFromGitHub { owner = "abo-abo"; repo = "tiny"; @@ -59037,7 +59373,7 @@ sha256 = "0mmz8b0fzffybc2jws9fif982zfx0l6kn1l4qxc67mf9nafbdca3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tiny"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tiny"; sha256 = "183qczyb6c8zmdgmsjsj4hddmvnzzq4c7syslm861xcyxia94icy"; name = "tiny"; }; @@ -59047,10 +59383,31 @@ license = lib.licenses.free; }; }) {}; + tiny-menu = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "tiny-menu"; + version = "20160601.32"; + src = fetchFromGitHub { + owner = "aaronbieber"; + repo = "tiny-menu.el"; + rev = "551c695b00926ab269cc651820e8ef6fa9b5134d"; + sha256 = "1c3xxzk1xz43dzrplva4cb5m96vpk9jpgnqvhhrcz2527ba79494"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tiny-menu"; + sha256 = "1nngf6vsqfr9fx82mj8dl8zw0fpwf4kr74sflxxk7qxj4aw1jirk"; + name = "tiny-menu"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/tiny-menu"; + license = lib.licenses.free; + }; + }) {}; tinysegmenter = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tinysegmenter"; - version = "20141124.513"; + version = "20141124.1113"; src = fetchFromGitHub { owner = "myuhe"; repo = "tinysegmenter.el"; @@ -59058,7 +59415,7 @@ sha256 = "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tinysegmenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tinysegmenter"; sha256 = "005yy2f8vghvwdcwakz5sr9n1gzk6cfyglm6d8b74y90d8fng0r6"; name = "tinysegmenter"; }; @@ -59071,7 +59428,7 @@ tj-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild, tern }: melpaBuild { pname = "tj-mode"; - version = "20150826.1151"; + version = "20150826.1751"; src = fetchFromGitHub { owner = "katspaugh"; repo = "tj-mode"; @@ -59079,7 +59436,7 @@ sha256 = "1zvykanmn065rlk9hlv85vary1l6y52bsnaa51fkpckpr6dicmcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tj-mode"; sha256 = "1i7dvxgj00p4n2fh8irgdfsjl2dpvfjjnkkv0cw71441f79p79mf"; name = "tj-mode"; }; @@ -59092,7 +59449,7 @@ tldr = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tldr"; - version = "20160312.908"; + version = "20160312.1508"; src = fetchFromGitHub { owner = "kuanyui"; repo = "tldr.el"; @@ -59100,7 +59457,7 @@ sha256 = "0z94m84q7j35dffpnbz1yh6axd6c787hj358bkq2qk0irsvh5n79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tldr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tldr"; sha256 = "1f1xsmkbf4j1c876qqr9h8fgx3zxjgdfzvzf6capxlx2svhxzvc9"; name = "tldr"; }; @@ -59113,7 +59470,7 @@ tmmofl = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tmmofl"; - version = "20121025.701"; + version = "20121025.1301"; src = fetchFromGitHub { owner = "phillord"; repo = "tmmofl"; @@ -59121,7 +59478,7 @@ sha256 = "1ypbv9jbdnwv3xjsfzq8i3nmqdvziynv2rqsd6fm2r1xw0q06xd6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tmmofl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tmmofl"; sha256 = "1idflc5ky8hwdkps1rihdqy3i6cmhrh83sxz3kgf2kqjh365yr8b"; name = "tmmofl"; }; @@ -59134,7 +59491,7 @@ toc-org = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toc-org"; - version = "20160422.905"; + version = "20160422.1505"; src = fetchFromGitHub { owner = "snosov1"; repo = "toc-org"; @@ -59142,7 +59499,7 @@ sha256 = "084nqdrpzgg1qpbqgvi893iglmz9dk3r0vwqxjkyxa3z3a0f5v17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toc-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toc-org"; sha256 = "06mx2b0zjck82vp3i4bwbqlrzn05i2rkf8080cn34nkizi59wlbs"; name = "toc-org"; }; @@ -59154,13 +59511,13 @@ }) {}; todochiku = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "todochiku"; - version = "20150112.1554"; + version = "20150112.2154"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/todochiku.el"; sha256 = "0fhlyjl0a3fd25as185j6dmch0wsrf1zc59q29lhjximg9lk3hr5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todochiku"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todochiku"; sha256 = "1iq08s5ji6hd8as80qxqkbavnjbx0kcmmjjvhjchmvv93vsn1f96"; name = "todochiku"; }; @@ -59173,7 +59530,7 @@ todotxt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "todotxt"; - version = "20150513.2229"; + version = "20150514.429"; src = fetchFromGitHub { owner = "rpdillon"; repo = "todotxt.el"; @@ -59181,7 +59538,7 @@ sha256 = "0ms4mapjg9mbpmcmpn68r0mhwaibwfr4v25sin74b2281h4q7gal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todotxt"; sha256 = "13jcbkasvcczf7qnrh89ncqp6az6hm1s0ycrv7msva145n5bk1kr"; name = "todotxt"; }; @@ -59194,7 +59551,7 @@ todotxt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "todotxt-mode"; - version = "20150424.1004"; + version = "20150424.1604"; src = fetchFromGitHub { owner = "avillafiorita"; repo = "todotxt-mode"; @@ -59202,7 +59559,7 @@ sha256 = "1k9ywi7cdgb6i600wr04r2l00423l6vr7k93qa7i7svv856nbbc7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/todotxt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/todotxt-mode"; sha256 = "1bs4air13ifx3xkhcfi80z29alsd63r436gnyvjyxlph2ip37v7k"; name = "todotxt-mode"; }; @@ -59215,7 +59572,7 @@ togetherly = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "togetherly"; - version = "20150820.438"; + version = "20150820.1038"; src = fetchFromGitHub { owner = "zk-phi"; repo = "togetherly"; @@ -59223,7 +59580,7 @@ sha256 = "1falf86mm2206szkkwiwa5yk65y12asv84j1pdbcy6n8y6hha796"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/togetherly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/togetherly"; sha256 = "01ks160dfmgh05lx0lmyg020hba8nw49mj51dp1afcsmx4dkis2f"; name = "togetherly"; }; @@ -59236,7 +59593,7 @@ toggle = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle"; - version = "20160331.400"; + version = "20160331.1000"; src = fetchFromGitHub { owner = "zenspider"; repo = "elisp"; @@ -59244,7 +59601,7 @@ sha256 = "184ghdi2m4hagddi71c1pmc408fad1cmw0q2n4k737w6j8537hph"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle"; sha256 = "08lk8h2dk5s8k93j5vmxdlgg453pif8wbcx2w3xkjlh43dw1vdfq"; name = "toggle"; }; @@ -59257,7 +59614,7 @@ toggle-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-quotes"; - version = "20140710.526"; + version = "20140710.1126"; src = fetchFromGitHub { owner = "toctan"; repo = "toggle-quotes.el"; @@ -59265,7 +59622,7 @@ sha256 = "1w1lmqgzn9bp59h9y9plv80y53k6qhjgfmnnlqyyqfl45z3si7kg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-quotes"; sha256 = "16w453v4g7ww93bydim62p785x7w4vssp9l5liy0h3ppfmgvmxhp"; name = "toggle-quotes"; }; @@ -59278,7 +59635,7 @@ toggle-test = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-test"; - version = "20140723.137"; + version = "20140723.737"; src = fetchFromGitHub { owner = "rags"; repo = "toggle-test"; @@ -59286,7 +59643,7 @@ sha256 = "0sgaslqxj806byidh06h5pqmqz8jzjfz9ky8jvkif3cq3a479jby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-test"; sha256 = "0n8m325jcjhz8g75ysb9whsd12gpxw8598y5065j7c7gxjzv45l1"; name = "toggle-test"; }; @@ -59299,7 +59656,7 @@ toggle-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toggle-window"; - version = "20141207.1048"; + version = "20141207.1648"; src = fetchFromGitHub { owner = "deadghost"; repo = "toggle-window"; @@ -59307,7 +59664,7 @@ sha256 = "0f86aij1glmvgpbhmfpi441zy0r37zblb0q3ycgq0dp92x8yny5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toggle-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toggle-window"; sha256 = "1z080jywqj99xiwbvfclr6gjkc6spr3dqjb9kq1g4971vx4w8n9g"; name = "toggle-window"; }; @@ -59320,15 +59677,15 @@ tomatinho = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tomatinho"; - version = "20140120.1840"; + version = "20160531.2228"; src = fetchFromGitHub { owner = "konr"; repo = "tomatinho"; - rev = "7468bbfca79e6ed70ad8fb9517bc05f02fe602c7"; - sha256 = "0a3zvhy3jxs88zk4nhdc7lzybz4qji9baw5gm88sxlgcjgn7ip6n"; + rev = "858c640ceda033f3c2d86d2d523ffce6b47e5024"; + sha256 = "1rp866s1b9ycjiv3h0jzrwr6p5ssfr0l8ry38kzi090c9hk84z0p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tomatinho"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tomatinho"; sha256 = "1ad3kr73v75vjrc09mdvb7a3ws834k5y5xha3v0ldah38cl1pmjz"; name = "tomatinho"; }; @@ -59341,7 +59698,7 @@ toml = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toml"; - version = "20130903.855"; + version = "20130903.1455"; src = fetchFromGitHub { owner = "gongo"; repo = "emacs-toml"; @@ -59349,7 +59706,7 @@ sha256 = "1b3bkla6i5nvanifxchph6ab6ldrskdf240hy4d27dkmmnr3pban"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toml"; sha256 = "0kqv6zkywa7kqh8kg1dzcgkbi91lwx335przdakndm1lfai38i9b"; name = "toml"; }; @@ -59362,7 +59719,7 @@ toml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toml-mode"; - version = "20150818.420"; + version = "20150818.1020"; src = fetchFromGitHub { owner = "dryman"; repo = "toml-mode.el"; @@ -59370,7 +59727,7 @@ sha256 = "1w9vkh6c4g80zykcy77k3r0bdc99mq8yh58bqkyd6gsr7pnp16gj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toml-mode"; sha256 = "0yghf2ixl3dkcaxnkr4qzxfa9k1rrac7w5qpw1jx2bvic0cfs40l"; name = "toml-mode"; }; @@ -59383,7 +59740,7 @@ tommyh-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tommyh-theme"; - version = "20131004.1930"; + version = "20131005.130"; src = fetchFromGitHub { owner = "wglass"; repo = "tommyh-theme"; @@ -59391,7 +59748,7 @@ sha256 = "0pwbd5gzmpr6js20438870w605671930291070nhmhswvxfcdvay"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tommyh-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tommyh-theme"; sha256 = "0nb9r407h08yxxdihxqx0c645bcz6qywbh2l654s3zfzdsqi1aj4"; name = "tommyh-theme"; }; @@ -59403,13 +59760,13 @@ }) {}; tool-bar-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tool-bar-plus"; - version = "20151231.1915"; + version = "20160101.115"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tool-bar+.el"; sha256 = "1sqflxj3hzxdlwn5qmpqm4dwik5vsyp7lypkvshcghdplxymb38a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tool-bar+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tool-bar+"; sha256 = "07nsas600w5kxx7yzg52ax9avry8kq429mqlrs38jg5ycf3b1l6d"; name = "tool-bar-plus"; }; @@ -59421,13 +59778,13 @@ }) {}; top-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "top-mode"; - version = "20130605.1339"; + version = "20130605.1939"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/top-mode.el"; sha256 = "0a5rl1cgznycqwx4r48mh69lgm8ixbnlfzbqdyvclgm8fldbannn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/top-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/top-mode"; sha256 = "0hrjlbiz827v9yf4086wlghw64rhvvlsbzv8lzs6pprdwbpr9pdx"; name = "top-mode"; }; @@ -59440,7 +59797,7 @@ tornado-template-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tornado-template-mode"; - version = "20141128.508"; + version = "20141128.1108"; src = fetchFromGitHub { owner = "paradoxxxzero"; repo = "tornado-template-mode"; @@ -59448,7 +59805,7 @@ sha256 = "0wv49gn1daylnjmnallpqsqy7630ynrp45agpiwi6kwyyqk1kdvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tornado-template-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tornado-template-mode"; sha256 = "1sdv9rlhnabydws2sppsjcgqr0lg6bjapv753ksq5aaq21qsps0h"; name = "tornado-template-mode"; }; @@ -59461,7 +59818,7 @@ totd = callPackage ({ cl-lib ? null, fetchFromGitLab, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "totd"; - version = "20150519.1040"; + version = "20150519.1640"; src = fetchFromGitLab { owner = "egh"; repo = "emacs-totd"; @@ -59469,7 +59826,7 @@ sha256 = "188cdgic25wrb4jdgdcj070a0pxsh3m0rd9d2r6i1s1n1nalrs6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/totd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/totd"; sha256 = "1bp07xl9yh9x6bi6cn8wz11x90jhv1rhxaig540iydjn5b0ny9m0"; name = "totd"; }; @@ -59482,7 +59839,7 @@ tox = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tox"; - version = "20141004.1703"; + version = "20141004.2303"; src = fetchFromGitHub { owner = "chmouel"; repo = "tox.el"; @@ -59490,7 +59847,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -59503,14 +59860,14 @@ toxi-theme = callPackage ({ emacs, fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "toxi-theme"; - version = "20160424.1726"; + version = "20160424.2326"; src = fetchhg { url = "https://bitbucket.com/postspectacular/toxi-theme"; rev = "b322fc7497a5"; sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; @@ -59523,7 +59880,7 @@ traad = callPackage ({ deferred, fetchFromGitHub, fetchurl, lib, melpaBuild, popup, python-environment, request, request-deferred }: melpaBuild { pname = "traad"; - version = "20151226.234"; + version = "20151226.834"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-traad"; @@ -59531,7 +59888,7 @@ sha256 = "1yh9dxf986dl74sgn71qxwxsg67lr0yg1z7b9h2254lmxq0mgni6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/traad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/traad"; sha256 = "08gxh5c01xfbbj9g4992jah494rw3d3bbs8j79r3mpqxllkp2znf"; name = "traad"; }; @@ -59550,15 +59907,15 @@ tracking = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tracking"; - version = "20151129.619"; + version = "20151129.1219"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "ea13b639568a6486aa77bb23e5db8318d9698bb1"; - sha256 = "0xfip9hdvkyx18sxz40jkfrvsw6zrw5yz6d34sg4fg0ni0f3bsqb"; + rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918"; + sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -59571,7 +59928,7 @@ tracwiki-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "tracwiki-mode"; - version = "20150119.1121"; + version = "20150119.1721"; src = fetchFromGitHub { owner = "merickson"; repo = "tracwiki-mode"; @@ -59579,7 +59936,7 @@ sha256 = "1m25l1lyff4h0h4vjrcsziwbf8svqg2llvvgl8i2b4jbh7k7pk5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracwiki-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracwiki-mode"; sha256 = "1k983f0lj42rxr5szpq9l9harykfn8jr13y3y6fav86zzd1fb8j0"; name = "tracwiki-mode"; }; @@ -59592,7 +59949,7 @@ tramp-hdfs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tramp-hdfs"; - version = "20151028.2336"; + version = "20151029.436"; src = fetchFromGitHub { owner = "raghavgautam"; repo = "tramp-hdfs"; @@ -59600,7 +59957,7 @@ sha256 = "0llzfn9y3yyz2wwdbv8whx8vy2lazbnww6hjj0r621gkfxjml7wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tramp-hdfs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tramp-hdfs"; sha256 = "1l7s2z8yk3cbnffig9fds75jkjlkng76qglx5ankzva61dz1kf2b"; name = "tramp-hdfs"; }; @@ -59613,7 +59970,7 @@ tramp-term = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tramp-term"; - version = "20141104.1645"; + version = "20141104.2245"; src = fetchFromGitHub { owner = "randymorris"; repo = "tramp-term.el"; @@ -59621,7 +59978,7 @@ sha256 = "0cgx6h9a49qj7x6bgsnsa20hi1yj5k080x4x0jpn6l9bj5nqiaip"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tramp-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tramp-term"; sha256 = "1vbdwj8q66j6h5ijqzxhyaqf8wf9rbs03x8ppfijxl5qd2bhc1dy"; name = "tramp-term"; }; @@ -59634,15 +59991,15 @@ transmission = callPackage ({ emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "transmission"; - version = "20160517.1015"; + version = "20160528.556"; src = fetchFromGitHub { owner = "holomorph"; repo = "transmission"; - rev = "83f682ff7cd6edae895026d813daf8655a2209be"; - sha256 = "14qsx615xjdg7rhvdvjla4fh4w0gd43wr6hrbfjf8rd1jix68hbd"; + rev = "7467dac2c44c355eed0774abfc6295a066018099"; + sha256 = "0jgdydl7lm8ypymfpk9j3wjf10z77q52gfwhq6k1k2x0y92kh0sh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -59652,10 +60009,28 @@ license = lib.licenses.free; }; }) {}; + transpose-frame = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + pname = "transpose-frame"; + version = "20151126.1526"; + src = fetchurl { + url = "https://www.emacswiki.org/emacs/download/transpose-frame.el"; + sha256 = "1f67yksgw9s6j0033hmqzaxx2a93jm11sd5ys7cc3li5gfh680m4"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transpose-frame"; + sha256 = "0bqip7vckic3kfq3d31ifs1zics1djxwj2jadafj6f1agv02sdz5"; + name = "transpose-frame"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/transpose-frame"; + license = lib.licenses.free; + }; + }) {}; transpose-mark = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "transpose-mark"; - version = "20150405.316"; + version = "20150405.916"; src = fetchFromGitHub { owner = "kwrooijen"; repo = "transpose-mark"; @@ -59663,7 +60038,7 @@ sha256 = "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transpose-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transpose-mark"; sha256 = "1q1icp1szm1bxz9ywwyrfbsm1wmx0h4cvzywrh9q0fj1fq387qvv"; name = "transpose-mark"; }; @@ -59676,7 +60051,7 @@ travis = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, request, s }: melpaBuild { pname = "travis"; - version = "20150825.738"; + version = "20150825.1338"; src = fetchFromGitHub { owner = "nlamirault"; repo = "emacs-travis"; @@ -59684,7 +60059,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -59696,13 +60071,13 @@ }) {}; tree-mode = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "tree-mode"; - version = "20151104.831"; + version = "20151104.1431"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/tree-mode.el"; sha256 = "0hffnzvzbvmzf23z9z7n7y53l5i7kza9hgfl39qqcnw4njg48llx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tree-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tree-mode"; sha256 = "0xwyhlc5lagj46nd70l81rvb43hs08pic96grk62zknig8354c24"; name = "tree-mode"; }; @@ -59715,7 +60090,7 @@ trident-mode = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, skewer-mode, slime }: melpaBuild { pname = "trident-mode"; - version = "20130726.1507"; + version = "20130726.2107"; src = fetchFromGitHub { owner = "johnmastro"; repo = "trident-mode.el"; @@ -59723,7 +60098,7 @@ sha256 = "08484fhc69rk16g52f9bzc1kzpif61ddfchxjbj1qqqammbx11ym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/trident-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trident-mode"; sha256 = "0l81hs7bp46jlk41b9fk1lkvlp17fqc5hcz8k8kkal7rh7ari1fd"; name = "trident-mode"; }; @@ -59736,7 +60111,7 @@ tronesque-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tronesque-theme"; - version = "20150125.541"; + version = "20150125.1141"; src = fetchFromGitHub { owner = "aurelienbottazini"; repo = "tronesque"; @@ -59744,7 +60119,7 @@ sha256 = "06wm3qwxjhzwjn9nnrqm5wwj1z5gfghg9d2qbg8w3zyqzva5dmvm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tronesque-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tronesque-theme"; sha256 = "1bk73zawl1922aq739r3rz30flxd6nq87k8ahzbix139g7gxf19j"; name = "tronesque-theme"; }; @@ -59754,10 +60129,31 @@ license = lib.licenses.free; }; }) {}; + trr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "trr"; + version = "20160602.1823"; + src = fetchFromGitHub { + owner = "kawabata"; + repo = "emacs-trr"; + rev = "a684e599b704f79ea3db2158cfcf46a4e778e994"; + sha256 = "0ypznnpk8a4qh0izbmv0q8ahkdqn16vlqnmicy6hm3j2wfmrvzlx"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trr"; + sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr"; + name = "trr"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/trr"; + license = lib.licenses.free; + }; + }) {}; truthy = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }: melpaBuild { pname = "truthy"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "truthy"; @@ -59765,7 +60161,7 @@ sha256 = "1mm6rrprsmx4hc622qmllm7c81yhwbqmdr0n6020krq92zmilmlm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -59778,7 +60174,7 @@ try = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "try"; - version = "20160226.1030"; + version = "20160226.1630"; src = fetchFromGitHub { owner = "larstvei"; repo = "Try"; @@ -59786,7 +60182,7 @@ sha256 = "0gvwavsq9s4a75qz7xq9wl219fnzz085zjqpnrxxgmaqbi9m8l7a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/try"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/try"; sha256 = "0dv0i77agva215bf1gj1x1k7f7g3pvccyyd7vslapf9z8brccn7n"; name = "try"; }; @@ -59799,7 +60195,7 @@ tss = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, json-mode, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "tss"; - version = "20150913.1008"; + version = "20150913.1608"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-tss"; @@ -59807,7 +60203,7 @@ sha256 = "1bk5v9dffs65qsay0dp336s2ly065nd0cg572zz058ikwxd44zd3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -59820,7 +60216,7 @@ tt-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tt-mode"; - version = "20130804.710"; + version = "20130804.1310"; src = fetchFromGitHub { owner = "davorg"; repo = "tt-mode"; @@ -59828,7 +60224,7 @@ sha256 = "1gvqxk67cf779szyg907815i4m9jzrpmn5cnsmnwd62k3r3z4nxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tt-mode"; sha256 = "02dzyycn5znbibbz50b243bh1kcccp8xwknjqwljk00gpf196vzf"; name = "tt-mode"; }; @@ -59840,14 +60236,14 @@ }) {}; ttl-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ttl-mode"; - version = "20160505.432"; + version = "20160505.1032"; src = fetchhg { url = "https://bitbucket.com/nxg/ttl-mode"; rev = "d790eb85ef4d"; sha256 = "14kfnpp7fcd84ly9ng7hm5hzx2sdpn2x6d8frwbkdxfb0x81kmmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttl-mode"; sha256 = "1nnn2y0n9rj3a8r85y2vp6qja5rm4drcbnj9q793zzqfjl9akqd4"; name = "ttl-mode"; }; @@ -59860,7 +60256,7 @@ ttrss = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ttrss"; - version = "20130409.1349"; + version = "20130409.1949"; src = fetchFromGitHub { owner = "pedros"; repo = "ttrss.el"; @@ -59868,7 +60264,7 @@ sha256 = "0a8f9p1im6k7mnp2bq733rfx2x246gfwpvi5ccym1y5lakx37fil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -59881,7 +60277,7 @@ tuareg = callPackage ({ caml, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tuareg"; - version = "20160408.1431"; + version = "20160408.2031"; src = fetchFromGitHub { owner = "ocaml"; repo = "tuareg"; @@ -59889,7 +60285,7 @@ sha256 = "0hscvsdp25aw7h4x8kq1ws72zx08bs2kw1s6axsi5576cl4d5yvg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -59902,7 +60298,7 @@ tumble = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, http-post-simple, lib, melpaBuild }: melpaBuild { pname = "tumble"; - version = "20160112.229"; + version = "20160112.829"; src = fetchFromGitHub { owner = "febuiles"; repo = "tumble"; @@ -59910,7 +60306,7 @@ sha256 = "1xdkgvr1pnlg3nrjmma4ra80ysr8xbslvczg7cq1x1mqw6gn9xq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -59923,7 +60319,7 @@ tumblesocks = callPackage ({ fetchFromGitHub, fetchurl, htmlize, lib, markdown-mode, melpaBuild, oauth }: melpaBuild { pname = "tumblesocks"; - version = "20140215.1547"; + version = "20140215.2147"; src = fetchFromGitHub { owner = "gcr"; repo = "tumblesocks"; @@ -59931,7 +60327,7 @@ sha256 = "1g7y7czan7mcs5lwc5r6cllgksrj3b9lpn1bj7khwkd1ll391jc2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumblesocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumblesocks"; sha256 = "11ky69icsnxwsinv2j3f4c0764wm6i9g9mlvwsdrd6w1lchq1dg9"; name = "tumblesocks"; }; @@ -59944,7 +60340,7 @@ tup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tup-mode"; - version = "20140410.1214"; + version = "20140410.1814"; src = fetchFromGitHub { owner = "ejmr"; repo = "tup-mode"; @@ -59952,7 +60348,7 @@ sha256 = "0y1b9zvwbw3vp41siyzj04bis939fgz3j27hc5ljjzy92kd39nzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -59965,7 +60361,7 @@ turkish = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "turkish"; - version = "20160324.623"; + version = "20160324.1123"; src = fetchFromGitHub { owner = "emres"; repo = "turkish-mode"; @@ -59973,7 +60369,7 @@ sha256 = "1jb6par116mm5l4z27wk6m2sfh6j9nmgrya352sdagcvjbcpnzcl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/turkish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/turkish"; sha256 = "0pdapxjbpj3lg3hxvwjn9v51jqaiz7a8053z2bmk4485vzs34532"; name = "turkish"; }; @@ -59986,7 +60382,7 @@ turnip = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "turnip"; - version = "20150309.229"; + version = "20150309.729"; src = fetchFromGitHub { owner = "kljohann"; repo = "turnip.el"; @@ -59994,7 +60390,7 @@ sha256 = "0khl4q22x6vdn87xdqqg5f535d4dqpnfbhk6qhlh187p1w7qaiq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/turnip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/turnip"; sha256 = "1vfqv71j47fn53klz3jl8r8hscywd01kkl4w96a308sac3lhbrps"; name = "turnip"; }; @@ -60007,7 +60403,7 @@ twig-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twig-mode"; - version = "20130220.1350"; + version = "20130220.1950"; src = fetchFromGitHub { owner = "moljac024"; repo = "twig-mode"; @@ -60015,7 +60411,7 @@ sha256 = "0wvmih2y3hy7casxx2y1w8csmzfnfgbb5ivpggr94sc86p6bg8sa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twig-mode"; sha256 = "1m3xjgmkqg8aj536wcg2f2hf4y6whscbsh7z7448hl4b5qjwii4n"; name = "twig-mode"; }; @@ -60028,7 +60424,7 @@ twilight-anti-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-anti-bright-theme"; - version = "20140810.334"; + version = "20140810.934"; src = fetchFromGitHub { owner = "jimeh"; repo = "twilight-anti-bright-theme"; @@ -60036,7 +60432,7 @@ sha256 = "1bj2mpiklqcangjzbnz5wz7klsfvp0x397lidvf42awn7s2aax0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -60049,7 +60445,7 @@ twilight-bright-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-bright-theme"; - version = "20130605.443"; + version = "20130605.1043"; src = fetchFromGitHub { owner = "jimeh"; repo = "twilight-bright-theme.el"; @@ -60057,7 +60453,7 @@ sha256 = "1awqc4rvg8693myynb1d4y4dfdaxkd5blnixxs3mdv81l07zyn8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-bright-theme"; sha256 = "074cqs55gwy5jlaay3m9bpdpdfb45nmlijvapz96nibl64pyk83d"; name = "twilight-bright-theme"; }; @@ -60070,7 +60466,7 @@ twilight-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twilight-theme"; - version = "20120412.903"; + version = "20120412.1503"; src = fetchFromGitHub { owner = "developernotes"; repo = "twilight-theme"; @@ -60078,7 +60474,7 @@ sha256 = "0d7vd1h0rwwgrh7f9kmdgy2ni0p20da9c8ylwlg33nsb26345wfs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-theme"; sha256 = "1wkca66q4k94h9njsy15n83wjzn90rcbmv44x0hdwqj92yxjf3y7"; name = "twilight-theme"; }; @@ -60091,7 +60487,7 @@ twittering-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "twittering-mode"; - version = "20160313.1236"; + version = "20160313.1736"; src = fetchFromGitHub { owner = "hayamiz"; repo = "twittering-mode"; @@ -60099,7 +60495,7 @@ sha256 = "1dk2s16p33fjx29la1zg35ax1mmwmrl33ww9qmg88ssxfcdj2jr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -60112,7 +60508,7 @@ typed-clojure-mode = callPackage ({ cider, clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typed-clojure-mode"; - version = "20151003.1422"; + version = "20151003.2022"; src = fetchFromGitHub { owner = "typedclojure"; repo = "typed-clojure-mode"; @@ -60120,7 +60516,7 @@ sha256 = "1i826xq77nh4s7qlj63r2iznbn319l1l3fzpbjb2nj0m00bwvxl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -60133,7 +60529,7 @@ typescript-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typescript-mode"; - version = "20160126.708"; + version = "20160126.1308"; src = fetchFromGitHub { owner = "ananthakumaran"; repo = "typescript.el"; @@ -60141,7 +60537,7 @@ sha256 = "17q7f433x8i484scwdbfsd0vh8lshzkwjlarhqw6ic53mzakgjiq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typescript-mode"; sha256 = "01jyqy44ir59n9c2f6gh4xzwfmzdpnys1lw4lnsy6kirqgbsq9ha"; name = "typescript-mode"; }; @@ -60153,13 +60549,13 @@ }) {}; typing = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "typing"; - version = "20121026.1718"; + version = "20121026.2318"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/typing.el"; sha256 = "0mgvpdp3vlvjy32d163h2mzsf9j2ij2f542sdr3rsy8l80n6nx31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typing"; sha256 = "0b72lbzji105wzvsi58l6pjc08qcwrm5ddf42irdxi956081pzp3"; name = "typing"; }; @@ -60172,7 +60568,7 @@ typing-game = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typing-game"; - version = "20160426.820"; + version = "20160426.1420"; src = fetchFromGitHub { owner = "lujun9972"; repo = "el-typing-game"; @@ -60180,7 +60576,7 @@ sha256 = "0dkrnn9fzqv793wvd3nc7dbslayj37q5na1w1g63g32z2s8aq09j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typing-game"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typing-game"; sha256 = "0k85j9bcqp0gbzdh44q5a9wlkv5mc0g0m42ziq1bzmp6993wkmy2"; name = "typing-game"; }; @@ -60193,15 +60589,15 @@ typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }: melpaBuild { pname = "typit"; - version = "20160510.1258"; + version = "20160531.1831"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "typit"; - rev = "3d68bddd1d6612c2501f28e3eceead34ad3f5151"; - sha256 = "1sh7vv3x7aalbn6jhml36y35bm9b1wnyzf03kwap3ibl2hmfwz1w"; + rev = "0e5b374830e85a32b51a4cc8206df8e494378cb2"; + sha256 = "1jv5qmp3xs37py7d9aln4jn85j65h9pp5vb2dcmd8rlszhplsrng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typit"; sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; name = "typit"; }; @@ -60214,7 +60610,7 @@ typo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "typo"; - version = "20160121.630"; + version = "20160121.1230"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "typoel"; @@ -60222,7 +60618,7 @@ sha256 = "0bn1bvs334wb64bli9h613zf1vzjyi0pz8bgyq1wy12qmbwwmfwk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -60235,7 +60631,7 @@ ubuntu-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ubuntu-theme"; - version = "20150805.1106"; + version = "20150805.1706"; src = fetchFromGitHub { owner = "rocher"; repo = "ubuntu-theme"; @@ -60243,7 +60639,7 @@ sha256 = "1v8d1pc0vjc7wz0prr5w5vp2qb19f3gcyl6jx5130plajbvv23rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -60255,13 +60651,13 @@ }) {}; ucs-cmds = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "ucs-cmds"; - version = "20151231.1916"; + version = "20160101.116"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/ucs-cmds.el"; sha256 = "0qy211rxrmzhwl9qfrcmfnwayysvb5rghjginbvx3wf2s6hrbpya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-cmds"; sha256 = "1n0f0qf8w8ark78fs67aaxnqpk0km97hy59pnxwfyahgjl2qz6d1"; name = "ucs-cmds"; }; @@ -60274,7 +60670,7 @@ ucs-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft }: melpaBuild { pname = "ucs-utils"; - version = "20150826.1014"; + version = "20150826.1614"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "ucs-utils"; @@ -60282,7 +60678,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -60295,7 +60691,7 @@ uimage = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uimage"; - version = "20160426.826"; + version = "20160426.1426"; src = fetchFromGitHub { owner = "lujun9972"; repo = "uimage"; @@ -60303,7 +60699,7 @@ sha256 = "13zznakgqyy3hw385f6w40rz4agxz6fmgaxzgmrz3kjpn19bc2fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uimage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uimage"; sha256 = "0i6qpk6v4pmpk3zswygdy0dd7rxy8kl7qn8a1xanpi4aqg7wlbmd"; name = "uimage"; }; @@ -60316,7 +60712,7 @@ ujelly-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ujelly-theme"; - version = "20160521.1401"; + version = "20160521.2001"; src = fetchFromGitHub { owner = "marktran"; repo = "color-theme-ujelly"; @@ -60324,7 +60720,7 @@ sha256 = "0zwayin4fjswl1xmbsgvkkssnx97c6h230m5a7hl4a7llx9l5c6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ujelly-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ujelly-theme"; sha256 = "0b7zgmpsdn5p3jx4kif7phxz8pb85snmmfr3yz98xf6p7h6w60gw"; name = "ujelly-theme"; }; @@ -60337,7 +60733,7 @@ ukrainian-holidays = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ukrainian-holidays"; - version = "20130720.949"; + version = "20130720.1549"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ukrainian-holidays"; @@ -60345,7 +60741,7 @@ sha256 = "033v4ck979lhkpwblci5clacfc1xnkq03p5d1m566wff8dp5flwz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ukrainian-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ukrainian-holidays"; sha256 = "0kbfj2l1rcv74c88nabkwkcl7k9pkim835l24q61zv3i6wf9sykf"; name = "ukrainian-holidays"; }; @@ -60357,13 +60753,13 @@ }) {}; unbound = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "unbound"; - version = "20160506.255"; + version = "20160506.855"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/unbound.el"; sha256 = "0awmzz9cfr17ggpzsgxqqhz5946l7705vvkfaiz7qx9wg0pbch18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unbound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unbound"; sha256 = "1ys6pgb3lhx4ihhv8i28vrchp1ad37md7lnana40macf5n72d77x"; name = "unbound"; }; @@ -60376,7 +60772,7 @@ uncrustify-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uncrustify-mode"; - version = "20130707.959"; + version = "20130707.1559"; src = fetchFromGitHub { owner = "koko1000ban"; repo = "emacs-uncrustify-mode"; @@ -60384,7 +60780,7 @@ sha256 = "0366h4jfi0c7yda9wcrz4zxgf2qqdd08b8z2dr8c1rkvkdd67iam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uncrustify-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uncrustify-mode"; sha256 = "0amdxdfc8i99zjrw4iqmxzb47h0airs60fwmc32bc8b0ds66c3kd"; name = "uncrustify-mode"; }; @@ -60397,7 +60793,7 @@ undercover = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, shut-up }: melpaBuild { pname = "undercover"; - version = "20160329.1037"; + version = "20160329.1637"; src = fetchFromGitHub { owner = "sviridov"; repo = "undercover.el"; @@ -60405,7 +60801,7 @@ sha256 = "1860hnsbvndaahqs233adk8piz7nyj8v3b0gziv1lrnq864hrq5i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -60418,7 +60814,7 @@ underwater-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "underwater-theme"; - version = "20131117.1902"; + version = "20131118.102"; src = fetchFromGitHub { owner = "jmdeldin"; repo = "underwater-theme.el"; @@ -60426,7 +60822,7 @@ sha256 = "1ypxpv5vw2ls757iwrq3zld6k0s29q3kg3spcsl5ks4aqpnkxpva"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -60439,14 +60835,14 @@ undo-tree = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "undo-tree"; - version = "20140509.822"; + version = "20140509.1422"; src = fetchgit { url = "http://www.dr-qubit.org/git/undo-tree.git"; rev = "a3e81b682053a81e082139300ef0a913a7a610a2"; sha256 = "1qla7njkb7gx5aj87i8x6ni8jfk1k78ivwfiiws3gpbnyiydpx8y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undo-tree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undo-tree"; sha256 = "0vrjxprpk854989wcp4wjb07jhhxqi25p6c758gz264z3xa8g9cr"; name = "undo-tree"; }; @@ -60459,7 +60855,7 @@ undohist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "undohist"; - version = "20150315.842"; + version = "20150315.1342"; src = fetchFromGitHub { owner = "m2ym"; repo = "undohist-el"; @@ -60467,7 +60863,7 @@ sha256 = "1c0daw246ky7b1x5b8h55x79pl1pjqk1k348l487bdd8zdj4w9wx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undohist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undohist"; sha256 = "0zzfzh8sf2dkz8h3kidv7zmwz2c2qq9n9qz2mab2lk0y44njzwhn"; name = "undohist"; }; @@ -60480,7 +60876,7 @@ unfill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unfill"; - version = "20131103.513"; + version = "20131103.1113"; src = fetchFromGitHub { owner = "purcell"; repo = "unfill"; @@ -60488,7 +60884,7 @@ sha256 = "0fd9k5m1yw2274m2w9rkrg7vqagzf0rjbybglqi7d200b3hmjin3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -60501,7 +60897,7 @@ unicode-emoticons = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-emoticons"; - version = "20150204.608"; + version = "20150204.1208"; src = fetchFromGitHub { owner = "hagleitn"; repo = "unicode-emoticons"; @@ -60509,7 +60905,7 @@ sha256 = "015gjf8chd6h9azhyarmskk41cm0cmg981jif7q81hakl9av6rhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-emoticons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-emoticons"; sha256 = "15s6qjhrrqrhm87vmvd6akdclzba19613im85kfkhc24p6nxyhbn"; name = "unicode-emoticons"; }; @@ -60522,7 +60918,7 @@ unicode-enbox = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, string-utils, ucs-utils }: melpaBuild { pname = "unicode-enbox"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-enbox"; @@ -60530,7 +60926,7 @@ sha256 = "0936dqxyp72if9wvn2dcci670yp1gqrmpnll9xq00skp85yq9zs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -60549,7 +60945,7 @@ unicode-fonts = callPackage ({ fetchFromGitHub, fetchurl, font-utils, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-fonts"; - version = "20150826.1832"; + version = "20150827.32"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-fonts"; @@ -60557,7 +60953,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -60576,14 +60972,14 @@ unicode-input = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-input"; - version = "20141219.220"; + version = "20141219.820"; src = fetchhg { url = "https://bitbucket.com/m00nlight/unicode-input"; rev = "e76ccb549e6a"; sha256 = "0kzcg1wxi1z424jdn7pibk9zyfyi85kligav08sl1c2hdldzya4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-input"; sha256 = "17sf3xnl8yyx4ln4mrjlrvfinb8dvabh81l3qyr9pkn5skpgqgj8"; name = "unicode-input"; }; @@ -60596,7 +60992,7 @@ unicode-progress-reporter = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-progress-reporter"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-progress-reporter"; @@ -60604,7 +61000,7 @@ sha256 = "16jgm70ldsngxldiagjkw3ragypalpiidnf82g5hss9ciybkd3j4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -60617,7 +61013,7 @@ unicode-troll-stopper = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unicode-troll-stopper"; - version = "20151023.2131"; + version = "20151024.331"; src = fetchFromGitHub { owner = "camsaul"; repo = "emacs-unicode-troll-stopper"; @@ -60625,7 +61021,7 @@ sha256 = "0ny260mr1h810fvqsfj2hpd3zql4g309m60qj4vk6kmd83p5b60f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-troll-stopper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-troll-stopper"; sha256 = "0a10lq0xsfyp052iw4xjbhsdkbyg25x2gk68gys4k7p6l92la0k5"; name = "unicode-troll-stopper"; }; @@ -60638,7 +61034,7 @@ unicode-whitespace = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild, pcache, persistent-soft, ucs-utils }: melpaBuild { pname = "unicode-whitespace"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "unicode-whitespace"; @@ -60646,7 +61042,7 @@ sha256 = "1ayb15nd5vqr0xaghrnp55kqw7bblrjipmfrag6bqpn7jk9bvbdz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -60659,7 +61055,7 @@ unidecode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unidecode"; - version = "20140318.18"; + version = "20140318.518"; src = fetchFromGitHub { owner = "sindikat"; repo = "unidecode"; @@ -60667,7 +61063,7 @@ sha256 = "1jvr1k8zd40m1rvwmxzidz1dvr4j8cbh78nqgc3vfb410fj619gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unidecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unidecode"; sha256 = "0h058mvb6x53zywpwg85dzhaynlgq577yyqhrn5qqyqjg1n8lhc1"; name = "unidecode"; }; @@ -60680,7 +61076,7 @@ unify-opening = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unify-opening"; - version = "20151116.1948"; + version = "20151117.148"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "unify-opening"; @@ -60688,7 +61084,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -60701,7 +61097,7 @@ unipoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unipoint"; - version = "20140113.1724"; + version = "20140113.2324"; src = fetchFromGitHub { owner = "apg"; repo = "unipoint"; @@ -60709,7 +61105,7 @@ sha256 = "1wl9rzys1zr2c41h5i57y6hxsavix1b26f453l2izmb6r0b1dvh0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unipoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unipoint"; sha256 = "0fm7anwcmga9adyfwlri7x014rpvfl1r6nccyi6lrpx126wy008s"; name = "unipoint"; }; @@ -60722,7 +61118,7 @@ unison-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unison-mode"; - version = "20160513.1101"; + version = "20160513.1701"; src = fetchFromGitHub { owner = "impaktor"; repo = "unison-mode"; @@ -60730,7 +61126,7 @@ sha256 = "1snbvhvx2csw1f314dbdwny8yvfq834plpkzx0vl4k3wddmr3a66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unison-mode"; sha256 = "03kyr1h5pm51vn4bykj13rm4ybln266rpnxh65y2ygw8f8md88gl"; name = "unison-mode"; }; @@ -60743,7 +61139,7 @@ unkillable-scratch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "unkillable-scratch"; - version = "20160504.2203"; + version = "20160505.403"; src = fetchFromGitHub { owner = "EricCrosson"; repo = "unkillable-scratch"; @@ -60751,7 +61147,7 @@ sha256 = "0bhdqpxq6cly4b6v4ya1ksw0yfdb9g2f2ifbjn4gfcq6j4zszbdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -60764,7 +61160,7 @@ url-shortener = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "url-shortener"; - version = "20160404.2259"; + version = "20160405.459"; src = fetchFromGitHub { owner = "yuyang0"; repo = "url-shortener"; @@ -60772,7 +61168,7 @@ sha256 = "179hi6hsp2naczlcym3qxx9wbqx96bkkzvqygf3iffa0rmik4j7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/url-shortener"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/url-shortener"; sha256 = "12r01dyk55bs01jk0ab9f24lfvm63h8kvix223pii5y9890dr6ys"; name = "url-shortener"; }; @@ -60785,7 +61181,7 @@ urlenc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "urlenc"; - version = "20140116.956"; + version = "20140116.1556"; src = fetchFromGitHub { owner = "buzztaiki"; repo = "urlenc-el"; @@ -60793,7 +61189,7 @@ sha256 = "0xwr0v4f64d7hi5ldig4r5yjn8h3f8by49g5820187lsp7ng2nw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/urlenc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/urlenc"; sha256 = "0n6shh95m11162zsnf62zy1ljswdjznjilxx2dbqyqdrn7qr2dgh"; name = "urlenc"; }; @@ -60805,13 +61201,13 @@ }) {}; usage-memo = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "usage-memo"; - version = "20110722.1151"; + version = "20110722.1751"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/usage-memo.el"; sha256 = "00g1zj5fjykdi6gh2wkswpwx132xa6jmwfnrgfg5r96zwb8pib4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/usage-memo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/usage-memo"; sha256 = "05n50adjnavl7ag24wfjwlnbv5x55qlhmplgsm8j57gjig01nd95"; name = "usage-memo"; }; @@ -60824,7 +61220,7 @@ use-package = callPackage ({ bind-key, diminish, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "use-package"; - version = "20160403.1429"; + version = "20160403.2029"; src = fetchFromGitHub { owner = "jwiegley"; repo = "use-package"; @@ -60832,7 +61228,7 @@ sha256 = "19vc1hblbqlns2c28aqwjpmj8k35ih7akqi04wrqv1b6pljfy3jg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -60845,15 +61241,15 @@ use-package-chords = callPackage ({ bind-chord, bind-key, fetchFromGitHub, fetchurl, lib, melpaBuild, use-package }: melpaBuild { pname = "use-package-chords"; - version = "20160407.1207"; + version = "20160530.1942"; src = fetchFromGitHub { owner = "waymondo"; repo = "use-package-chords"; - rev = "b7de6b2a1270d37a1aca3bd8f29f67ec578527d7"; - sha256 = "06jsa0scvf12kznm0ngv76y726rzh93prc7ymw3fvknvg0xivb8v"; + rev = "8dedc76617cbabd605f4c0d486018e3c4d3c8a9b"; + sha256 = "0d69hckz6xbll1x2mll385kcw7mwx8cwxg1wdhphnww0s810isgp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package-chords"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package-chords"; sha256 = "18av8gkz3nzyqigyd88ajvylsz2nswsfywxrk2w8d0ykc3p37ass"; name = "use-package-chords"; }; @@ -60866,7 +61262,7 @@ utop = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "utop"; - version = "20151105.547"; + version = "20151105.1147"; src = fetchFromGitHub { owner = "diml"; repo = "utop"; @@ -60874,7 +61270,7 @@ sha256 = "1vacc4l5jsyxdfcinxja3r1qyc4cskmd9xvxp6zxkjfw4x6nr71c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -60887,7 +61283,7 @@ uuid = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uuid"; - version = "20120910.451"; + version = "20120910.1051"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-uuid"; @@ -60895,7 +61291,7 @@ sha256 = "0r74gw8gcbrr62rvj4anz0c3n6kwi1xpb42d3pkzlh4igblhi5zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uuid"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uuid"; sha256 = "13xjnawir9i83j2abxxkl12gz3wapgbk56cps3qyfgql02bfk2rw"; name = "uuid"; }; @@ -60908,7 +61304,7 @@ uuidgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uuidgen"; - version = "20140918.1901"; + version = "20140919.101"; src = fetchFromGitHub { owner = "kanru"; repo = "uuidgen-el"; @@ -60916,7 +61312,7 @@ sha256 = "19bf6vpc2b9hfjkjanji96fflvk1lbillasnpwcb6zzyq0cs47bw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uuidgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uuidgen"; sha256 = "1qaz7hg0wsdkl0jb7v7vrkjs554i2zgpxl8xq2f8q7m4bs2m5k48"; name = "uuidgen"; }; @@ -60929,7 +61325,7 @@ uzumaki = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "uzumaki"; - version = "20150119.2006"; + version = "20150120.206"; src = fetchFromGitHub { owner = "geyslan"; repo = "uzumaki"; @@ -60937,7 +61333,7 @@ sha256 = "0fx18m688wfflbzwv8h3051439fwql69v1ip5q6xn958rdq4pi3x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -60950,7 +61346,7 @@ vagrant = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant"; - version = "20160505.430"; + version = "20160505.1030"; src = fetchFromGitHub { owner = "ottbot"; repo = "vagrant.el"; @@ -60958,7 +61354,7 @@ sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -60971,7 +61367,7 @@ vagrant-tramp = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vagrant-tramp"; - version = "20160427.1932"; + version = "20160428.132"; src = fetchFromGitHub { owner = "dougm"; repo = "vagrant-tramp"; @@ -60979,7 +61375,7 @@ sha256 = "138gw90wa2qyzyicig3cwhpb1xc5bh9g0vb87y91afjlykhzr6a5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant-tramp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant-tramp"; sha256 = "0ij7k27zj22sl7inx141l4dg0ymywnvyabjvaqzc0xjdj0cky5c5"; name = "vagrant-tramp"; }; @@ -60992,7 +61388,7 @@ vala-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vala-mode"; - version = "20150324.1825"; + version = "20150324.2325"; src = fetchFromGitHub { owner = "emacsorphanage"; repo = "vala-mode"; @@ -61000,7 +61396,7 @@ sha256 = "10vs4d8csww781j1ps3f6dczy5zzza36z7a8zqk40fg4x57ikw44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vala-mode"; sha256 = "164dhlsiflhpdymk3q5x0bv8gpbwfp34lnkhm2x90kdakfzqf91p"; name = "vala-mode"; }; @@ -61013,7 +61409,7 @@ vala-snippets = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "vala-snippets"; - version = "20150428.2352"; + version = "20150429.552"; src = fetchFromGitHub { owner = "gopar"; repo = "vala-snippets"; @@ -61021,7 +61417,7 @@ sha256 = "0iscaz8lm4fk6w13f68ysqk8ppng2wj9fkkkq1rfqz77ws66f8nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vala-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vala-snippets"; sha256 = "14hmmic0px3z38dm2dg0kis6cz1p3p1hj7xaqnqjmv02dkx2mmcy"; name = "vala-snippets"; }; @@ -61034,7 +61430,7 @@ vbasense = callPackage ({ auto-complete, fetchFromGitHub, fetchurl, lib, log4e, melpaBuild, yaxception }: melpaBuild { pname = "vbasense"; - version = "20140221.1853"; + version = "20140222.53"; src = fetchFromGitHub { owner = "aki2o"; repo = "emacs-vbasense"; @@ -61042,7 +61438,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -61055,7 +61451,7 @@ vc-auto-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-auto-commit"; - version = "20160108.515"; + version = "20160108.1115"; src = fetchFromGitHub { owner = "thisirs"; repo = "vc-auto-commit"; @@ -61063,7 +61459,7 @@ sha256 = "09h7yg44hbxv3pyazfypkvk8j3drlwz0zn8x1wj0kbsviksl1wxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-auto-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-auto-commit"; sha256 = "1xpp7vbld3jgcr249m5h7il919kfg7d5ap3zs64i27axzdhv26zk"; name = "vc-auto-commit"; }; @@ -61076,7 +61472,7 @@ vc-check-status = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-check-status"; - version = "20160108.516"; + version = "20160108.1116"; src = fetchFromGitHub { owner = "thisirs"; repo = "vc-check-status"; @@ -61084,7 +61480,7 @@ sha256 = "0icc4kqfpimxlja4jgcy9gjj4myc8y84vbvacyf79lxixygpaxi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-check-status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-check-status"; sha256 = "1kwnxa0ndfj8b211xy5d47sxkwmsay0kk8q7azfm5ag5dkg56zgi"; name = "vc-check-status"; }; @@ -61097,7 +61493,7 @@ vc-darcs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-darcs"; - version = "20151225.1528"; + version = "20151225.2128"; src = fetchFromGitHub { owner = "velkyel"; repo = "vc-darcs"; @@ -61105,7 +61501,7 @@ sha256 = "1zpvinbc3nrnjm931fgzrlkl31xcsg9ikh041s1fkfjkhfq0h82h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-darcs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-darcs"; sha256 = "1xskl9wjxkbdpi0fm769ymbvya70vssi944x5252w2d3layibm6m"; name = "vc-darcs"; }; @@ -61118,7 +61514,7 @@ vc-osc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vc-osc"; - version = "20120910.511"; + version = "20120910.1111"; src = fetchFromGitHub { owner = "aspiers"; repo = "vc-osc"; @@ -61126,7 +61522,7 @@ sha256 = "0whzfzg0m03wbmqsxml8hislnbfvawcniq83hj66lbrnbivxsqj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vc-osc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vc-osc"; sha256 = "0rp33945xk5d986brganqnn55psmlkj6glbimxakhgv9a1r85sxz"; name = "vc-osc"; }; @@ -61139,7 +61535,7 @@ vcl-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vcl-mode"; - version = "20151213.1423"; + version = "20151213.2023"; src = fetchFromGitHub { owner = "ssm"; repo = "vcl-mode"; @@ -61147,7 +61543,7 @@ sha256 = "1jfis26lmghl30ydzq1xdkrrj3d85q7g44ns6kmfg119ccapllbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcl-mode"; sha256 = "1h0a1briinp9ka7ga3ipdhyf7yfinwvf7babv36myi720900wcq5"; name = "vcl-mode"; }; @@ -61160,7 +61556,7 @@ vcomp = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vcomp"; - version = "20140906.1808"; + version = "20140907.8"; src = fetchFromGitHub { owner = "tarsius"; repo = "vcomp"; @@ -61168,7 +61564,7 @@ sha256 = "0fzz26c1pdaz3i58ndhzd2520mhny487daqs21yajxi9x2m00zrl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -61181,7 +61577,7 @@ vdirel = callPackage ({ emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild, org-vcard, seq }: melpaBuild { pname = "vdirel"; - version = "20151216.155"; + version = "20151216.755"; src = fetchFromGitHub { owner = "DamienCassou"; repo = "vdirel"; @@ -61189,7 +61585,7 @@ sha256 = "1lh8nv0ayl9ipl2aqc8npzz84g5q7w6v60l14v61mmk34fc23lnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -61202,7 +61598,7 @@ vector-utils = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vector-utils"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "vector-utils"; @@ -61210,7 +61606,7 @@ sha256 = "1wa03gb98x650q798aqshm43kh6gfxaz1rlyrmvka5dxgf48whmf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -61223,7 +61619,7 @@ verify-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "verify-url"; - version = "20160426.828"; + version = "20160426.1428"; src = fetchFromGitHub { owner = "lujun9972"; repo = "verify-url"; @@ -61231,7 +61627,7 @@ sha256 = "1y6vjw5qzaxr37spg5d4nxffmhiipzsrd7mvh8bs3jcfrsg3080n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/verify-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/verify-url"; sha256 = "1gd83rb1q0kywchd0345p5axqj1sv4f5kadympx5pbp4n5p1dqb2"; name = "verify-url"; }; @@ -61244,7 +61640,7 @@ vertica = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, sql ? null }: melpaBuild { pname = "vertica"; - version = "20131217.1011"; + version = "20131217.1611"; src = fetchFromGitHub { owner = "r0man"; repo = "vertica-el"; @@ -61252,7 +61648,7 @@ sha256 = "1mp71axs3vdrdwlhgywfldvnr6a1g2qbxiywmpfmcv59n5n58p1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertica"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertica"; sha256 = "1ljjk6zrbr2k0s0iaqd9iq3j45cavijcx0rqdidliswnfllav4ng"; name = "vertica"; }; @@ -61265,7 +61661,7 @@ vertigo = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vertigo"; - version = "20160430.5"; + version = "20160430.605"; src = fetchFromGitHub { owner = "noctuid"; repo = "vertigo.el"; @@ -61273,7 +61669,7 @@ sha256 = "044vy6yi9yfk3h2gd3a718w50py02h1b5fr0i7a08rjlq4l3srka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; @@ -61286,7 +61682,7 @@ vhdl-capf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vhdl-capf"; - version = "20160221.1234"; + version = "20160221.1834"; src = fetchFromGitHub { owner = "sh-ow"; repo = "vhdl-capf"; @@ -61294,7 +61690,7 @@ sha256 = "185a7962h94122q783ih7s8r28xifm0bcrqvkd0g4p64mijlbh3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-capf"; sha256 = "06dkw5ra9wnscpgrnx851vyfgr5797xd60qdimsr2v1bqd8si9km"; name = "vhdl-capf"; }; @@ -61307,7 +61703,7 @@ vhdl-tools = callPackage ({ emacs, fetchFromGitHub, fetchurl, ggtags, helm, lib, melpaBuild, outshine, projectile }: melpaBuild { pname = "vhdl-tools"; - version = "20160501.1311"; + version = "20160501.1911"; src = fetchFromGitHub { owner = "csantosb"; repo = "vhdl-tools"; @@ -61315,7 +61711,7 @@ sha256 = "1syfmx7gzphy08h2py3789xwkqwgirfg189h8s6400q9sznzm6fc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -61328,7 +61724,7 @@ vi-tilde-fringe = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vi-tilde-fringe"; - version = "20141027.2242"; + version = "20141028.342"; src = fetchFromGitHub { owner = "syl20bnr"; repo = "vi-tilde-fringe"; @@ -61336,7 +61732,7 @@ sha256 = "0wdm8k49zl6i6wnh7vjkswdh5m9lix56jv37xvc90inipwgs402z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vi-tilde-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vi-tilde-fringe"; sha256 = "0jhwv46gjwjbs1ai65nm6k15y0q4yl9m5mawgp3n4f45dh02cawp"; name = "vi-tilde-fringe"; }; @@ -61349,7 +61745,7 @@ viewer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "viewer"; - version = "20141021.1436"; + version = "20141021.2036"; src = fetchFromGitHub { owner = "rubikitch"; repo = "viewer"; @@ -61357,7 +61753,7 @@ sha256 = "1ch8lr514f9lp3wdhy1z4dqcbnqkbqkgflnchwd82r5ylzbdxy2a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/viewer"; sha256 = "10rw3b8akd2fl8gsqf1m24zi6q4n0z68lvvv1vx9c9b7ghqcqxw1"; name = "viewer"; }; @@ -61370,15 +61766,15 @@ viking-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "viking-mode"; - version = "20160520.739"; + version = "20160529.1237"; src = fetchFromGitHub { owner = "tlinden"; repo = "viking-mode"; - rev = "8a894f92dd4c838b0b46d5ecacb6aaa06a3cd349"; - sha256 = "1ysapz1chja9f1fjppglp11z2kxxjx92idcgva6rk8vkp1x23i33"; + rev = "658198ece26dc9e5d94cad95f749d08a259ac682"; + sha256 = "1fmjcm33hvm7d9ppf8lnbdqcqda8xj332hqdm50pvl0qfj90mp94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/viking-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/viking-mode"; sha256 = "13g6gw8yc4pgi1zjig6nlpnsh52dzmprisq95r6lx6hk0xbzrx16"; name = "viking-mode"; }; @@ -61391,7 +61787,7 @@ vim-empty-lines-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vim-empty-lines-mode"; - version = "20150110.2326"; + version = "20150111.526"; src = fetchFromGitHub { owner = "jmickelin"; repo = "vim-empty-lines-mode"; @@ -61399,7 +61795,7 @@ sha256 = "11qh6fpf6269j9syf06v5wnkgi65wnn7dbyjwb6yz72rvq7ihhcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-empty-lines-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-empty-lines-mode"; sha256 = "17bl1g4ais73ws596mha0l8dgckfqhx9k2v9m9k0gw7kg7dcjhnb"; name = "vim-empty-lines-mode"; }; @@ -61412,7 +61808,7 @@ vim-region = callPackage ({ expand-region, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vim-region"; - version = "20140329.1224"; + version = "20140329.1724"; src = fetchFromGitHub { owner = "ongaeshi"; repo = "emacs-vim-region"; @@ -61420,7 +61816,7 @@ sha256 = "13g2hin100c8h5bd7hzhyqzj02ab9c35giyv963l7y044v7sbwig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -61433,7 +61829,7 @@ vimgolf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimgolf"; - version = "20140814.1748"; + version = "20140814.2348"; src = fetchFromGitHub { owner = "timvisher"; repo = "vimgolf"; @@ -61441,7 +61837,7 @@ sha256 = "1i407ilhmk2qrk66ygbvizq964bdk502x7lvrzs4wxwfr5y8ciyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -61454,15 +61850,15 @@ vimish-fold = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimish-fold"; - version = "20160514.755"; + version = "20160531.1832"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "vimish-fold"; - rev = "5c9ae8018002c10a034de60b527c42f3665f6b67"; - sha256 = "01wxjvbq3i1ji9fpff7fbk20pzmr52z6fycqfi7malgwq05is1bm"; + rev = "a55cd8118ef540b57ea5ae84d34fa245f5c83d27"; + sha256 = "1n8aw5g0a38irx2m93fgqll99n6w59h6nzkrmzb9747bvar4mpsg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -61475,7 +61871,7 @@ vimrc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vimrc-mode"; - version = "20150607.1213"; + version = "20150607.1813"; src = fetchFromGitHub { owner = "mcandre"; repo = "vimrc-mode"; @@ -61483,7 +61879,7 @@ sha256 = "000fs2h5zcv8aq8an16r6zwwf9x1qnfs7xxn39iahiwfzvnljqp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimrc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimrc-mode"; sha256 = "06hisgsn0czvzbq8m4dz86h4q75j54a0gxkg5shnr8s654d450bp"; name = "vimrc-mode"; }; @@ -61496,7 +61892,7 @@ virtualenv = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "virtualenv"; - version = "20140220.1801"; + version = "20140221.1"; src = fetchFromGitHub { owner = "aculich"; repo = "virtualenv.el"; @@ -61504,7 +61900,7 @@ sha256 = "0rd7hyv66278dj32yva5q9z1749y84c6fwl2iqrns512j1l4kl8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/virtualenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/virtualenv"; sha256 = "1djqzzlbwsp9xyjqjbjwdck73wzikbpq19irzamybk90nc98wirl"; name = "virtualenv"; }; @@ -61517,7 +61913,7 @@ virtualenvwrapper = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "virtualenvwrapper"; - version = "20151127.921"; + version = "20151127.1521"; src = fetchFromGitHub { owner = "porterjamesj"; repo = "virtualenvwrapper.el"; @@ -61525,7 +61921,7 @@ sha256 = "05rzjlb04h7xyq7l7z87hqqcsf907p2nsxqnh7r6wm24kddfb0ab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/virtualenvwrapper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/virtualenvwrapper"; sha256 = "0rn5vwncx8z69xp8hspr06nzkf28l9flchpb2936c2nalmhx6m8i"; name = "virtualenvwrapper"; }; @@ -61538,7 +61934,7 @@ visible-mark = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visible-mark"; - version = "20150624.50"; + version = "20150624.650"; src = fetchFromGitLab { owner = "iankelling"; repo = "visible-mark"; @@ -61546,7 +61942,7 @@ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visible-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visible-mark"; sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; name = "visible-mark"; }; @@ -61559,7 +61955,7 @@ visual-ascii-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-ascii-mode"; - version = "20150129.546"; + version = "20150129.1146"; src = fetchFromGitHub { owner = "Dewdrops"; repo = "visual-ascii-mode"; @@ -61567,7 +61963,7 @@ sha256 = "1cv8mf3l92a9p8qmkfiphk3r81f2ihg2gyw2r4jbbd5ppwbxkl0n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-ascii-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-ascii-mode"; sha256 = "1h0143h39dq61afswlzlgpknk0gv574x91ar6klqmnaf1snab59g"; name = "visual-ascii-mode"; }; @@ -61580,7 +61976,7 @@ visual-fill-column = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-fill-column"; - version = "20160411.820"; + version = "20160411.1420"; src = fetchFromGitHub { owner = "joostkremers"; repo = "visual-fill-column"; @@ -61588,7 +61984,7 @@ sha256 = "0r1iylk7r25wmlba4vlrc6k1apbkrbplb9id1h9q91wqhwdnxqal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -61601,7 +61997,7 @@ visual-regexp = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "visual-regexp"; - version = "20160520.700"; + version = "20160520.1300"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp.el"; @@ -61609,7 +62005,7 @@ sha256 = "1l3p7fypl5abwmsks0ms66xxq3zc78dp9gpbvwv5pqzh8b2f4xdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-regexp"; sha256 = "16bdqq2j7pnjq3j6qa4rhxzidqdhyg80c7nazd93smis8rcv5d0z"; name = "visual-regexp"; }; @@ -61622,7 +62018,7 @@ visual-regexp-steroids = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, visual-regexp }: melpaBuild { pname = "visual-regexp-steroids"; - version = "20160516.1538"; + version = "20160516.2138"; src = fetchFromGitHub { owner = "benma"; repo = "visual-regexp-steroids.el"; @@ -61630,7 +62026,7 @@ sha256 = "0bc44z8y1jmw7jlz785bisy36v08jichj53nwhmp2wjyv40xy321"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-regexp-steroids"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-regexp-steroids"; sha256 = "1xkrzyyll8wmb67m75lfm9k8qcm068km8r1k8hcsadpkd01bx1lr"; name = "visual-regexp-steroids"; }; @@ -61643,7 +62039,7 @@ vkill = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vkill"; - version = "20091203.1322"; + version = "20091203.1922"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "vkill"; @@ -61651,7 +62047,7 @@ sha256 = "0hb845pnh2yska6alca8hbbxh65x7g81pr7852h8fddm0qd1agkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vkill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vkill"; sha256 = "09siqsip6d2h3jrxbdbhylkqm42dx3d2dqlkkdw3a81c7ga9lpwm"; name = "vkill"; }; @@ -61664,7 +62060,7 @@ vlf = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "vlf"; - version = "20150101.1018"; + version = "20150101.1618"; src = fetchFromGitHub { owner = "m00natic"; repo = "vlfi"; @@ -61672,7 +62068,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -61684,13 +62080,13 @@ }) {}; vline = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "vline"; - version = "20120108.745"; + version = "20120108.1345"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/vline.el"; sha256 = "1ys6928fgk8mswa4gv10cxggir8acck27g78cw1z3pdz5gakbgnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vline"; sha256 = "0p59xhyrv7fmcn3qi51sp8v9v2y71ray2s756zbhzgzg63h3nbjp"; name = "vline"; }; @@ -61700,10 +62096,31 @@ license = lib.licenses.free; }; }) {}; + vmd-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "vmd-mode"; + version = "20160601.219"; + src = fetchFromGitHub { + owner = "blak3mill3r"; + repo = "vmd-mode"; + rev = "3f650c04dd1b823a4dc3c7e965ea50c1dfc5645c"; + sha256 = "0wjfpgypdii7y2zp2c3yb6pmgpcza11ds2x3dya4syn6ll7zhgz9"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vmd-mode"; + sha256 = "1hd4bqgmrrznixmig5p9c3rl09r8z5d1jmmia2001i0r59wi61wb"; + name = "vmd-mode"; + }; + packageRequires = [ emacs ]; + meta = { + homepage = "https://melpa.org/#/vmd-mode"; + license = lib.licenses.free; + }; + }) {}; voca-builder = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "voca-builder"; - version = "20150625.1433"; + version = "20150625.2033"; src = fetchFromGitHub { owner = "yitang"; repo = "voca-builder"; @@ -61711,7 +62128,7 @@ sha256 = "183pvfp5nnqpgdmfxm84qrnid0lijgk79l5lhwzmnznzkrb7bgxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -61724,7 +62141,7 @@ volatile-highlights = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "volatile-highlights"; - version = "20160520.2306"; + version = "20160521.506"; src = fetchFromGitHub { owner = "k-talo"; repo = "volatile-highlights.el"; @@ -61732,7 +62149,7 @@ sha256 = "0k5n241zf4h9339iwjkngcjmi1qhfgaz73376ry5lvdq48izcgkg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; @@ -61745,7 +62162,7 @@ volume = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "volume"; - version = "20150718.1609"; + version = "20150718.2209"; src = fetchFromGitHub { owner = "dbrock"; repo = "volume-el"; @@ -61753,7 +62170,7 @@ sha256 = "0ymibjq6iwab5ia1fglhz4gm5cnbi792018fmrabcqkisj2zsjb7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volume"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volume"; sha256 = "1r01v453bpyh561j8ja36609hy60gc30arvmz4z3c1cybhv8sk1i"; name = "volume"; }; @@ -61766,7 +62183,7 @@ vue-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, mmm-mode }: melpaBuild { pname = "vue-mode"; - version = "20160411.2354"; + version = "20160412.554"; src = fetchFromGitHub { owner = "CodeFalling"; repo = "vue-mode"; @@ -61774,7 +62191,7 @@ sha256 = "1d9rwgyvizn1zas8v98v86g5kck0m567cprpcakdawwamn155k49"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vue-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vue-mode"; sha256 = "0gy7a5sliaijq0666l55vbkg15anrw7k1828szdn1ppkraw14bn0"; name = "vue-mode"; }; @@ -61786,13 +62203,13 @@ }) {}; w32-browser = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "w32-browser"; - version = "20151231.1920"; + version = "20160101.120"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/w32-browser.el"; sha256 = "0vb5ss30mz0kqq8cscjckw647vqn6xprp2sfjcbpg2fx59z4agma"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w32-browser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/w32-browser"; sha256 = "14vc2cipwlwwc0b5ld4x0zvydkg8nbjmp0z2x6ca0nmxw8sfsnc6"; name = "w32-browser"; }; @@ -61805,13 +62222,13 @@ w32browser-dlgopen = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "w32browser-dlgopen"; - version = "20151231.1921"; + version = "20160101.121"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/w32browser-dlgopen.el"; sha256 = "0nyara81bnd0rvgyljqrrbvjvndkngdc7qzf6scl5iz3vlglfgy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/w32browser-dlgopen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/w32browser-dlgopen"; sha256 = "0dnvsnahnbnvjlhfmb0q6agzikv9d42fbnfrwsz6hni92937gz39"; name = "w32browser-dlgopen"; }; @@ -61845,7 +62262,7 @@ wacspace = callPackage ({ cl-lib ? null, dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wacspace"; - version = "20140827.132"; + version = "20140827.732"; src = fetchFromGitHub { owner = "shosti"; repo = "wacspace.el"; @@ -61853,7 +62270,7 @@ sha256 = "0nvlni3iy2sq76z8d4kj5492m0w7qv96shjqkynvlj0avf528hv4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -61866,7 +62283,7 @@ waher-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "waher-theme"; - version = "20141115.730"; + version = "20141115.1330"; src = fetchFromGitHub { owner = "emacsfodder"; repo = "emacs-waher-theme"; @@ -61874,7 +62291,7 @@ sha256 = "0w59ix8cbbcyhh882c8vkrbh84i8d03h9w7dchr3qy233b8wcxlc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/waher-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/waher-theme"; sha256 = "091kipkb6z6x9ic4chprim9rvnmx4yj4419ijmvpn70w69aspnb5"; name = "waher-theme"; }; @@ -61887,7 +62304,7 @@ wakatime-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wakatime-mode"; - version = "20160417.409"; + version = "20160417.1009"; src = fetchFromGitHub { owner = "wakatime"; repo = "wakatime-mode"; @@ -61895,7 +62312,7 @@ sha256 = "06d6ywc0hq6jn5ahq96qa8v8fnps464f2gjmdhsgvj8b0d0c5jl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wakatime-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wakatime-mode"; sha256 = "1rhy2bwkqlha4bj3zmb0iassiglch7yb2kbas0bbpl3d0hdki2i8"; name = "wakatime-mode"; }; @@ -61908,7 +62325,7 @@ wand = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wand"; - version = "20141104.1945"; + version = "20141105.145"; src = fetchFromGitHub { owner = "cmpitg"; repo = "wand"; @@ -61916,7 +62333,7 @@ sha256 = "09gqsssc2sk0vwfg0h4zxq9a779sdjdgvxsw7p6n2k0g4wk0phri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wand"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wand"; sha256 = "052zq5dp800hynd9fb6c645kjb9rp3bpkz41ifazjnx4h4864r0l"; name = "wand"; }; @@ -61929,7 +62346,7 @@ wandbox = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, request, s }: melpaBuild { pname = "wandbox"; - version = "20160418.1414"; + version = "20160418.2014"; src = fetchFromGitHub { owner = "kosh04"; repo = "emacs-wandbox"; @@ -61937,7 +62354,7 @@ sha256 = "06jqlvy2078fd8py59z5rraf2ymlkv6wizmw91vq63f87vpw71zg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; @@ -61950,7 +62367,7 @@ wanderlust = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, semi }: melpaBuild { pname = "wanderlust"; - version = "20160429.1938"; + version = "20160430.138"; src = fetchFromGitHub { owner = "wanderlust"; repo = "wanderlust"; @@ -61958,7 +62375,7 @@ sha256 = "01zwk4rh18fmgrj75kyhkny1s3r0cmnjjnxa3ljbw1yy6q90acga"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wanderlust"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wanderlust"; sha256 = "0lq7fvqc0isv49lcm7ql6prc3hpcj5cx4kf8f4gcnfv5k8159cq9"; name = "wanderlust"; }; @@ -61971,7 +62388,7 @@ warm-night-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "warm-night-theme"; - version = "20150607.1041"; + version = "20150607.1641"; src = fetchFromGitHub { owner = "mswift42"; repo = "warm-night-theme"; @@ -61979,7 +62396,7 @@ sha256 = "1x472s5qr6wvla7nj5i9mas8z9qhkj4zj5qghfwn5chb9igvfkif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/warm-night-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/warm-night-theme"; sha256 = "1nrjkrr64rry6fjya22b0lcs0f8a2ijvr87192z311y9mw5rvb29"; name = "warm-night-theme"; }; @@ -61992,7 +62409,7 @@ watch-buffer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "watch-buffer"; - version = "20120331.1644"; + version = "20120331.2244"; src = fetchFromGitHub { owner = "mjsteger"; repo = "watch-buffer"; @@ -62000,7 +62417,7 @@ sha256 = "0i84ndnxma8s07kf5ixqyhv5f89mzc4iymgazj5inmxhvbc7s7r2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/watch-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/watch-buffer"; sha256 = "18sxgihmqmkrbgs66qgnrsjqbp90l93531hns31fbnif10bkx2j5"; name = "watch-buffer"; }; @@ -62013,7 +62430,7 @@ wavefront-obj-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wavefront-obj-mode"; - version = "20150501.1416"; + version = "20150501.2016"; src = fetchFromGitHub { owner = "abend"; repo = "wavefront-obj-mode"; @@ -62021,7 +62438,7 @@ sha256 = "0zw8z2r82986likz0b0zy37bywicrvz9dizzw9p52gs1lx0is1fy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wavefront-obj-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wavefront-obj-mode"; sha256 = "0qqismh6g2fvi45q2q52lq0n9nrh95wgamlsy5j4rx4syfgzxbrk"; name = "wavefront-obj-mode"; }; @@ -62034,7 +62451,7 @@ wc-goal-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wc-goal-mode"; - version = "20140829.959"; + version = "20140829.1559"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "wc-goal-mode"; @@ -62042,7 +62459,7 @@ sha256 = "0p7j4hvcxfyjf0na9s3xv29dvmwq82s56lincfasd0ydcpz4fbwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -62055,7 +62472,7 @@ wc-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wc-mode"; - version = "20131121.1126"; + version = "20131121.1726"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "wc-mode"; @@ -62063,7 +62480,7 @@ sha256 = "1j1k3ab0ymr66w23z3r4yd1g6410n5y80jfyg2f9i9rdk7vq18gd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-mode"; sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; name = "wc-mode"; }; @@ -62076,7 +62493,7 @@ wcheck-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wcheck-mode"; - version = "20160208.1436"; + version = "20160208.2036"; src = fetchFromGitHub { owner = "tlikonen"; repo = "wcheck-mode"; @@ -62084,7 +62501,7 @@ sha256 = "0irw76inj3gdmi88hiayplv6fzjjjsvvvmr121ahh3p73mb14cjd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -62097,7 +62514,7 @@ weather-metno = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "weather-metno"; - version = "20150831.2107"; + version = "20150901.307"; src = fetchFromGitHub { owner = "ruediger"; repo = "weather-metno-el"; @@ -62105,7 +62522,7 @@ sha256 = "05gfc67724b0mwg8kvk3dsazx3dld50b9xjq8h1nc6jvdz3zxb9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -62118,7 +62535,7 @@ web = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "web"; - version = "20141231.1501"; + version = "20141231.2101"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-web"; @@ -62126,7 +62543,7 @@ sha256 = "03xcadplw1hg5hxw6bfrhw5xkkxk3i4105f114c6m3d2525jq4y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web"; sha256 = "0ynnmqw0vsf7wyhp9m5a05dfb19vkj8dnj5glhjdzjvg30dhjp3a"; name = "web"; }; @@ -62139,7 +62556,7 @@ web-beautify = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-beautify"; - version = "20160410.1305"; + version = "20160410.1905"; src = fetchFromGitHub { owner = "yasuyk"; repo = "web-beautify"; @@ -62147,7 +62564,7 @@ sha256 = "0j8v8p4w586wz80q9scdby6b80sbxz4lqg9zb5pbr2w8bsps8n4m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; @@ -62160,7 +62577,7 @@ web-completion-data = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-completion-data"; - version = "20160318.448"; + version = "20160318.948"; src = fetchFromGitHub { owner = "osv"; repo = "web-completion-data"; @@ -62168,7 +62585,7 @@ sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -62181,15 +62598,15 @@ web-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-mode"; - version = "20160505.1210"; + version = "20160529.2048"; src = fetchFromGitHub { owner = "fxbois"; repo = "web-mode"; - rev = "9bd7a7ebcbe67ae8f14d585d04b93569fa496ec7"; - sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s"; + rev = "1445f400c154d5f9eff10311c8ac7dd935a0fe26"; + sha256 = "1l0fr7yfb15i1jxmcf4bis6krw31s4vvckffpx3jpnkzjcxnk8is"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -62202,7 +62619,7 @@ web-server = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "web-server"; - version = "20140905.2006"; + version = "20140906.206"; src = fetchFromGitHub { owner = "eschulte"; repo = "emacs-web-server"; @@ -62210,7 +62627,7 @@ sha256 = "0mbhyk7sgisx0l0xiz2xgy4jfbgwazlnxjvajsh4nysyig5rys05"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-server"; sha256 = "1f0iyvwq1kq3zfxx2v596cmah7jfk2a04g2rjllbgxxnzwms29z3"; name = "web-server"; }; @@ -62223,14 +62640,14 @@ weblogger = callPackage ({ fetchbzr, fetchurl, lib, melpaBuild, xml-rpc }: melpaBuild { pname = "weblogger"; - version = "20110926.1218"; + version = "20110926.1818"; src = fetchbzr { url = "lp:weblogger-el"; rev = "38"; sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -62243,7 +62660,7 @@ websocket = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "websocket"; - version = "20160510.2301"; + version = "20160511.501"; src = fetchFromGitHub { owner = "ahyatt"; repo = "emacs-websocket"; @@ -62251,7 +62668,7 @@ sha256 = "0ly12vy93m6jk6r62006ykjcrk966qk0ah0fk0hjxf8fx8shhsig"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/websocket"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/websocket"; sha256 = "1v8jlpahp30lihz7mdznwl6pyrbsdbqznli2wb5gfblnlxil04lg"; name = "websocket"; }; @@ -62264,7 +62681,7 @@ wedge-ws = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wedge-ws"; - version = "20140714.1749"; + version = "20140714.2349"; src = fetchFromGitHub { owner = "aes"; repo = "wedge-ws"; @@ -62272,7 +62689,7 @@ sha256 = "19hgb5knqqc4rb8yl8s604xql8ar6m9r4d379cfakn15jvwqnl98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wedge-ws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wedge-ws"; sha256 = "07i2dr807np4fwq3ryxlw11vbc1sik1iv7x5740q258jyc9zfgll"; name = "wedge-ws"; }; @@ -62285,7 +62702,7 @@ weechat = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s, tracking }: melpaBuild { pname = "weechat"; - version = "20160229.1548"; + version = "20160229.2148"; src = fetchFromGitHub { owner = "the-kenny"; repo = "weechat.el"; @@ -62293,7 +62710,7 @@ sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -62306,7 +62723,7 @@ weechat-alert = callPackage ({ alert, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, weechat }: melpaBuild { pname = "weechat-alert"; - version = "20160416.848"; + version = "20160416.1448"; src = fetchFromGitHub { owner = "Kungi"; repo = "weechat-alert"; @@ -62314,7 +62731,7 @@ sha256 = "1hkhim2jfdywx6ks4qfcizycp5qsx4ms6929kbgmzzb8i7j380x6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat-alert"; sha256 = "026hkddvd4a6wy7s8s0lklw8b99fpjawdgi7amvpcrn79ylwbf22"; name = "weechat-alert"; }; @@ -62327,7 +62744,7 @@ weibo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "weibo"; - version = "20150307.1742"; + version = "20150307.2342"; src = fetchFromGitHub { owner = "austin-----"; repo = "weibo.emacs"; @@ -62335,7 +62752,7 @@ sha256 = "0hc5iyjpcik996ns84akrl28scndmn0gd1zfdf1nnqq6n2m5zvgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -62348,7 +62765,7 @@ wgrep = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wgrep"; - version = "20141016.1956"; + version = "20141017.156"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -62356,7 +62773,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep"; sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; name = "wgrep"; }; @@ -62369,7 +62786,7 @@ wgrep-ack = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-ack"; - version = "20141012.611"; + version = "20141012.1211"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -62377,7 +62794,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ack"; sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; name = "wgrep-ack"; }; @@ -62390,7 +62807,7 @@ wgrep-ag = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-ag"; - version = "20141012.611"; + version = "20141012.1211"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -62398,7 +62815,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ag"; sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; name = "wgrep-ag"; }; @@ -62411,7 +62828,7 @@ wgrep-helm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-helm"; - version = "20140528.1727"; + version = "20140528.2327"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -62419,7 +62836,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-helm"; sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; name = "wgrep-helm"; }; @@ -62432,7 +62849,7 @@ wgrep-pt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, wgrep }: melpaBuild { pname = "wgrep-pt"; - version = "20140510.1831"; + version = "20140511.31"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "Emacs-wgrep"; @@ -62440,7 +62857,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-pt"; sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; name = "wgrep-pt"; }; @@ -62453,7 +62870,7 @@ what-the-commit = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "what-the-commit"; - version = "20150901.916"; + version = "20150901.1516"; src = fetchFromGitHub { owner = "danielbarbarito"; repo = "what-the-commit.el"; @@ -62461,7 +62878,7 @@ sha256 = "04w62davpqqqvympkr52bg54c2i45p09q9bs70p9ff5jvc6i3g76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/what-the-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/what-the-commit"; sha256 = "0nnyb6hq6r21wf1x3q41ab48b3dmcz5lyli771a59dk1gs8qpgak"; name = "what-the-commit"; }; @@ -62474,15 +62891,15 @@ which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "20160516.2106"; + version = "20160527.1535"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "c6ad06c03d5adaa148472d53da47a2ea7749b182"; - sha256 = "1phskycfxksmpmyaf2gr9p0dxm6c7wcghvd34vqb44h8nry0iq6m"; + rev = "13316578c8483740ecfe97f9f069fc364e4f97d9"; + sha256 = "0i25y5j5qwmj3v3cd16v1c81y5bwhgar379bjy4052mfm870b90d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -62495,7 +62912,7 @@ whitaker = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whitaker"; - version = "20150814.722"; + version = "20150814.1322"; src = fetchFromGitHub { owner = "Fuco1"; repo = "whitaker"; @@ -62503,7 +62920,7 @@ sha256 = "1y75cylvqgn54h8yqahz4wi1qj5yhbs66i7x23jmbmah3q0rycab"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -62516,7 +62933,7 @@ white-sand-theme = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "white-sand-theme"; - version = "20151117.1148"; + version = "20151117.1748"; src = fetchFromGitHub { owner = "mswift42"; repo = "white-sand-theme"; @@ -62524,7 +62941,7 @@ sha256 = "0sh92g5vd518f80klvljqkjpw4ji909439dpc3sfaccf5jiwn9xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/white-sand-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/white-sand-theme"; sha256 = "19qsiic6yf7g60ygjmw7kg1i28nqpm3zja8cmdh33ny2bbkwxsz5"; name = "white-sand-theme"; }; @@ -62537,7 +62954,7 @@ whitespace-cleanup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whitespace-cleanup-mode"; - version = "20150603.747"; + version = "20150603.1347"; src = fetchFromGitHub { owner = "purcell"; repo = "whitespace-cleanup-mode"; @@ -62545,7 +62962,7 @@ sha256 = "15yhbyyr0ksd9ziinlylyddny2szlj35x2548awj9ijnqqgjd23r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -62558,7 +62975,7 @@ whole-line-or-region = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "whole-line-or-region"; - version = "20110901.430"; + version = "20110901.1030"; src = fetchFromGitHub { owner = "purcell"; repo = "whole-line-or-region"; @@ -62566,7 +62983,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -62578,13 +62995,13 @@ }) {}; wid-edit-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "wid-edit-plus"; - version = "20151231.1922"; + version = "20160101.122"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/wid-edit+.el"; sha256 = "18bnwwjk8jj4ns08sxhnznj0d8n1bxm2kj43r06nwyibh6ajpl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wid-edit+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wid-edit+"; sha256 = "1wwrsk14hc0wrvy7hm94aw6zg50n2smlqwr6frwpi7yp8y394wiv"; name = "wid-edit-plus"; }; @@ -62597,7 +63014,7 @@ wide-column = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wide-column"; - version = "20120814.412"; + version = "20120814.1012"; src = fetchFromGitHub { owner = "phillord"; repo = "wide-column"; @@ -62605,7 +63022,7 @@ sha256 = "0bq39sfipad16skh5q26gp7z24kk93hgnaxb378dzfq1306kmn8q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wide-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wide-column"; sha256 = "1kyyvq9fgaypvhiy9vbvr99xsac5vhylkbjsxn5fhylyc5n867sb"; name = "wide-column"; }; @@ -62618,7 +63035,7 @@ widget-mvc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "widget-mvc"; - version = "20150101.2306"; + version = "20150102.506"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-widget-mvc"; @@ -62626,7 +63043,7 @@ sha256 = "0036alzp66k7w3z45lj8qzh3plxv9vwcw17wibkz90mlb27vy6yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -62639,7 +63056,7 @@ wiki-nav = callPackage ({ button-lock, fetchFromGitHub, fetchurl, lib, melpaBuild, nav-flash }: melpaBuild { pname = "wiki-nav"; - version = "20150223.854"; + version = "20150223.1454"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "button-lock"; @@ -62647,7 +63064,7 @@ sha256 = "06qjvybf65ffrcnhhbqs333lg51fawaxnva3jvdg7zbrsv4m9acl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -62660,7 +63077,7 @@ wiki-summary = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wiki-summary"; - version = "20150408.1722"; + version = "20150408.2322"; src = fetchFromGitHub { owner = "jozefg"; repo = "wiki-summary.el"; @@ -62668,7 +63085,7 @@ sha256 = "02bczc1mb1cs1aryz5pw6cmpydjmxja2zj91893cz8rnfn1r031i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-summary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-summary"; sha256 = "1hiyi3w6rvins8hfxd96bgpihxarmv192q96sadqcwshcqi14zmw"; name = "wiki-summary"; }; @@ -62681,7 +63098,7 @@ wilt = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "wilt"; - version = "20151105.818"; + version = "20151105.1418"; src = fetchFromGitHub { owner = "sixty-north"; repo = "emacs-wilt"; @@ -62689,7 +63106,7 @@ sha256 = "1n45m8xn65a2lg8ff7m6hbqnp2j49n9sfyr924laljvhjbi37knd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wilt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wilt"; sha256 = "0nw6zr06zq60j72qfjmbqrxyz022fnisb0bsh6xmlnd1k1kqlrz6"; name = "wilt"; }; @@ -62701,13 +63118,13 @@ }) {}; wimpy-del = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "wimpy-del"; - version = "20151231.1923"; + version = "20160101.123"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/wimpy-del.el"; sha256 = "142ql6886h418f73h3wjblhnd16qvbap7mfr4g2yv4xybh88d4x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wimpy-del"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wimpy-del"; sha256 = "10qw5lfq2392fr5sdz5a9bc6rvsg0j4dkrwvdhip1kqvajznw49x"; name = "wimpy-del"; }; @@ -62720,7 +63137,7 @@ win-switch = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "win-switch"; - version = "20150208.2211"; + version = "20150209.411"; src = fetchFromGitHub { owner = "genovese"; repo = "win-switch"; @@ -62728,7 +63145,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -62740,13 +63157,13 @@ }) {}; windata = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "windata"; - version = "20080412.1055"; + version = "20080412.1655"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/windata.el"; sha256 = "0dcbnqcqw7jzwwdn0rxxlixga1zw1x3a2zbpxvd90xp7zig4f0yz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windata"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windata"; sha256 = "0xq51rdanq5as6kfyi97hsqmig5g35w7xv8c96bhzyflranw7jw5"; name = "windata"; }; @@ -62759,7 +63176,7 @@ window-end-visible = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-end-visible"; - version = "20140508.1641"; + version = "20140508.2241"; src = fetchFromGitHub { owner = "rolandwalker"; repo = "window-end-visible"; @@ -62767,7 +63184,7 @@ sha256 = "0g69r64gyz4p3k6n8l0i1837mszycbrp23acnp0iy0y3mg67x3pn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -62780,7 +63197,7 @@ window-jump = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-jump"; - version = "20150213.1536"; + version = "20150213.2136"; src = fetchFromGitHub { owner = "chumpage"; repo = "chumpy-windows"; @@ -62788,7 +63205,7 @@ sha256 = "069aqyqzjp5ljqfzm7lxkh8j8firk7041wc2jwzqha8jn9zpvbxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-jump"; sha256 = "1gmqb7j5fb3q3krgx7arrln5nvyg9vcpph6wlxj6py679wfa3lwr"; name = "window-jump"; }; @@ -62801,7 +63218,7 @@ window-layout = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-layout"; - version = "20150717.107"; + version = "20150717.707"; src = fetchFromGitHub { owner = "kiwanami"; repo = "emacs-window-layout"; @@ -62809,7 +63226,7 @@ sha256 = "08chi9b4bap78n069aavvx3850kabk2jflrgymy4jxv08ybqikdg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -62819,16 +63236,19 @@ license = lib.licenses.free; }; }) {}; - window-number = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { + window-number = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { pname = "window-number"; - version = "20140123.2202"; - src = fetchurl { - url = "https://www.emacswiki.org/emacs/download/window-number.el"; - sha256 = "1as3qbvj6d171qp2s8ycqqi16bgqm47vfk3fbxrl9szjzaxh9nw6"; + version = "20141107.329"; + src = fetchFromGitHub { + owner = "nikolas"; + repo = "window-number"; + rev = "1d222f0b48c8d51bad956c3000ff0635b883a355"; + sha256 = "0n6a4kriwx7c8shvns3fcdp8l1i66bsca5mgd00p7nllnxvldhn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-number"; - sha256 = "1qhlsdhs40cyly87pj3f1n6ckr7z5pmhqndgay5jyxwxxdpknpap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-number"; + sha256 = "1ivd701h6q48i263fxxi44haacaz8cjg562ry8dxd10rbhhsjsq0"; name = "window-number"; }; packageRequires = []; @@ -62840,7 +63260,7 @@ window-numbering = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-numbering"; - version = "20150228.1547"; + version = "20150228.2147"; src = fetchFromGitHub { owner = "nschum"; repo = "window-numbering.el"; @@ -62848,7 +63268,7 @@ sha256 = "1f4c6q4larifm745fr8f3w8sxs1sbs77vna29rw120jz8rnlz0jy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -62860,13 +63280,13 @@ }) {}; window-plus = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "window-plus"; - version = "20151231.1924"; + version = "20160101.124"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/window+.el"; sha256 = "0mqdcgk6mdxgl9if7jzgg16zqdwnsp8icrdhnygphw5m9h2dqcnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window+"; sha256 = "0fhzb0ay9g9qgcaxpb2qaw15dh0lfmv3x4akyipi3zx11446d06j"; name = "window-plus"; }; @@ -62879,7 +63299,7 @@ window-purpose = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, imenu-list, let-alist, lib, melpaBuild }: melpaBuild { pname = "window-purpose"; - version = "20160310.728"; + version = "20160310.1328"; src = fetchFromGitHub { owner = "bmag"; repo = "emacs-purpose"; @@ -62887,7 +63307,7 @@ sha256 = "16471dng4iknh5wa3931iz9mm8bgd6lsrnhrjkd5ava2bv484gz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -62900,7 +63320,7 @@ windsize = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "windsize"; - version = "20151121.840"; + version = "20151121.1440"; src = fetchFromGitHub { owner = "grammati"; repo = "windsize"; @@ -62908,7 +63328,7 @@ sha256 = "0hijf56ahbc5inn7n39nj96d948c4d05n9d5ci3g3vbl5hsyb121"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -62921,7 +63341,7 @@ winpoint = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "winpoint"; - version = "20131023.1313"; + version = "20131023.1913"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "winpoint"; @@ -62929,7 +63349,7 @@ sha256 = "1qrbvidnmgg7jyasb28bc0z1x4a4ayzq5jmv38dsx0qs080s85wy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/winpoint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/winpoint"; sha256 = "10ji7xd9ipmy6c2qxljqdxgqf5sb8h7lwz43mr6ixbn7v1b7pp6w"; name = "winpoint"; }; @@ -62942,7 +63362,7 @@ winring = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "winring"; - version = "20150804.1408"; + version = "20150804.2008"; src = fetchFromGitLab { owner = "warsaw"; repo = "winring"; @@ -62950,7 +63370,7 @@ sha256 = "1igld3zkvm3qbg1k77cn7rlxi8jqy8cvvp7z5mqwx9ifyihiwd0b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/winring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/winring"; sha256 = "1mgr5z4h7mf677xx8md3pqd31k17qs62z9iamfih206fcwgh24k4"; name = "winring"; }; @@ -62963,14 +63383,14 @@ wisp-mode = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wisp-mode"; - version = "20160419.1532"; + version = "20160419.2132"; src = fetchhg { url = "https://bitbucket.com/ArneBab/wisp"; rev = "f23c198f7086"; sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -62983,7 +63403,7 @@ wispjs-mode = callPackage ({ clojure-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wispjs-mode"; - version = "20140103.1732"; + version = "20140103.2332"; src = fetchFromGitHub { owner = "krisajenkins"; repo = "wispjs-mode"; @@ -62991,7 +63411,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -63004,7 +63424,7 @@ with-editor = callPackage ({ async, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "with-editor"; - version = "20160408.501"; + version = "20160408.1101"; src = fetchFromGitHub { owner = "magit"; repo = "with-editor"; @@ -63012,7 +63432,7 @@ sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -63025,7 +63445,7 @@ with-namespace = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, loop, melpaBuild }: melpaBuild { pname = "with-namespace"; - version = "20130407.1422"; + version = "20130407.2022"; src = fetchFromGitHub { owner = "Wilfred"; repo = "with-namespace.el"; @@ -63033,7 +63453,7 @@ sha256 = "1c7g8f3jr7bb0xxprammfg433gd63in5iiiaq8rjmc94h6hdcys3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-namespace"; sha256 = "1199k1xvvv7ald6ywrh2sfpw2v42ckpcsw6mcj617bg3b5m7770i"; name = "with-namespace"; }; @@ -63046,7 +63466,7 @@ wn-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wn-mode"; - version = "20151110.52"; + version = "20151110.652"; src = fetchFromGitHub { owner = "luismbo"; repo = "wn-mode"; @@ -63054,7 +63474,7 @@ sha256 = "12rfpkyjkhikjh0mihhp5h5pzbm4br68nwf8k1ja9djl77vfzv36"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -63067,7 +63487,7 @@ wolfram-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wolfram-mode"; - version = "20140118.1057"; + version = "20140118.1657"; src = fetchFromGitHub { owner = "kawabata"; repo = "wolfram-mode"; @@ -63075,7 +63495,7 @@ sha256 = "1xna0cjgi9m87pws2h0cza67qbpdhjmdi5h4wv6v4g14nr26hi3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wolfram-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wolfram-mode"; sha256 = "1bq95lamzz45macpklnq1kxw9ak4x4f41kx16f472dn650ff0zlf"; name = "wolfram-mode"; }; @@ -63088,7 +63508,7 @@ wonderland = callPackage ({ dash, dash-functional, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, multi }: melpaBuild { pname = "wonderland"; - version = "20130912.2119"; + version = "20130913.319"; src = fetchFromGitHub { owner = "kurisuwhyte"; repo = "emacs-wonderland"; @@ -63096,7 +63516,7 @@ sha256 = "0hacc8ha5w44cgwkipa3nwh1q5gdrcxhjkmw2gnvb1l01crgnack"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -63109,7 +63529,7 @@ wordnut = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wordnut"; - version = "20151002.1757"; + version = "20151002.2357"; src = fetchFromGitHub { owner = "gromnitsky"; repo = "wordnut"; @@ -63117,7 +63537,7 @@ sha256 = "1b9pya342ikyxnlyxp86wx8xk6zcdws7jsqs7a9xk027prwkfngj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordnut"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordnut"; sha256 = "1gqmjb2f9izra0x9ds1jyk7h204qsll6viwkvdnmxczyyc0wx44n"; name = "wordnut"; }; @@ -63130,7 +63550,7 @@ wordsmith-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wordsmith-mode"; - version = "20151117.536"; + version = "20151117.1136"; src = fetchFromGitHub { owner = "istib"; repo = "wordsmith-mode"; @@ -63138,7 +63558,7 @@ sha256 = "0d2byl3si2r0zh5ih6xpsgcd9r114ry0lzg5vcf31rr2gqf0j06h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -63151,7 +63571,7 @@ worf = callPackage ({ ace-link, fetchFromGitHub, fetchurl, hydra, lib, melpaBuild, swiper }: melpaBuild { pname = "worf"; - version = "20160422.1016"; + version = "20160422.1616"; src = fetchFromGitHub { owner = "abo-abo"; repo = "worf"; @@ -63159,7 +63579,7 @@ sha256 = "1ndvwribh0i49rc6v89sfmxv5alr43995ccslviid563xn3yskii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; @@ -63172,7 +63592,7 @@ workgroups = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "workgroups"; - version = "20110726.1241"; + version = "20110726.1841"; src = fetchFromGitHub { owner = "tlh"; repo = "workgroups.el"; @@ -63180,7 +63600,7 @@ sha256 = "0q32z54qafj8ap3ybx82i3fm1msmzwvpxgmkaglzhi8nccgzbn2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/workgroups"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/workgroups"; sha256 = "1v01yr3lk6l0qn80i3r8fq3di0a8bmqjyhwx19hcgiap57xl80h8"; name = "workgroups"; }; @@ -63193,7 +63613,7 @@ workgroups2 = callPackage ({ anaphora, cl-lib ? null, dash, f, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "workgroups2"; - version = "20141102.1422"; + version = "20141102.2022"; src = fetchFromGitHub { owner = "pashinin"; repo = "workgroups2"; @@ -63201,7 +63621,7 @@ sha256 = "0prj2b33h6rya7y9ff91r72bva1y6hg0sv9l11bn1gikmc6lc18n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/workgroups2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/workgroups2"; sha256 = "0vhj6mb3iflli0l3rjlvlbxz5yk6z3ii5r71gx0m4vp4lhxncy3v"; name = "workgroups2"; }; @@ -63214,7 +63634,7 @@ world-time-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "world-time-mode"; - version = "20140627.407"; + version = "20140627.1007"; src = fetchFromGitHub { owner = "nicferrier"; repo = "emacs-world-time-mode"; @@ -63222,7 +63642,7 @@ sha256 = "0i00xm4rynbp2v3gm6h46ajgj8h8nxnsjh6db1659b0hbpnah0ji"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/world-time-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/world-time-mode"; sha256 = "10gdlz4l9iqw1zdlk5i3knysn36iqxdh3xabjq8kq04jkl7i36dl"; name = "world-time-mode"; }; @@ -63235,7 +63655,7 @@ wrap-region = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wrap-region"; - version = "20140117.220"; + version = "20140117.820"; src = fetchFromGitHub { owner = "rejeep"; repo = "wrap-region.el"; @@ -63243,7 +63663,7 @@ sha256 = "09fzbbrdgq19c3gylj4i0c5g070k65w943wz28mzis8b403vzh3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wrap-region"; sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; @@ -63256,7 +63676,7 @@ writegood-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "writegood-mode"; - version = "20150325.1415"; + version = "20150325.1915"; src = fetchFromGitHub { owner = "bnbeckwith"; repo = "writegood-mode"; @@ -63264,7 +63684,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -63277,7 +63697,7 @@ writeroom-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, visual-fill-column }: melpaBuild { pname = "writeroom-mode"; - version = "20160413.1533"; + version = "20160413.2133"; src = fetchFromGitHub { owner = "joostkremers"; repo = "writeroom-mode"; @@ -63285,7 +63705,7 @@ sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -63298,7 +63718,7 @@ ws-butler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ws-butler"; - version = "20150126.1059"; + version = "20150126.1659"; src = fetchFromGitHub { owner = "lewang"; repo = "ws-butler"; @@ -63306,7 +63726,7 @@ sha256 = "1x2ybnv0h52i24vd1n95s4vglc6p79cyxh91a20cwza34svhz152"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -63319,7 +63739,7 @@ wsd-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wsd-mode"; - version = "20160511.151"; + version = "20160511.751"; src = fetchFromGitHub { owner = "josteink"; repo = "wsd-mode"; @@ -63327,7 +63747,7 @@ sha256 = "14f87rgvh8rmdd7gp53iaibi1liiag10si2znbhiy1hf93ssd2pq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -63340,7 +63760,7 @@ wttrin = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, xterm-color }: melpaBuild { pname = "wttrin"; - version = "20160414.1137"; + version = "20160414.1737"; src = fetchFromGitHub { owner = "bcbcarl"; repo = "emacs-wttrin"; @@ -63348,7 +63768,7 @@ sha256 = "1bq552mxlhq9sd2c9p2yir52p0jnfdav6vcdgs3xklcf89b1403m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wttrin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wttrin"; sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; name = "wttrin"; }; @@ -63361,7 +63781,7 @@ wwtime = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "wwtime"; - version = "20151122.1110"; + version = "20151122.1710"; src = fetchFromGitHub { owner = "ndw"; repo = "wwtime"; @@ -63369,7 +63789,7 @@ sha256 = "0ba193ilqmp7l35hhzfym4kvbnj9h57m8mwsxdj6rdj2cwrifx8r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wwtime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wwtime"; sha256 = "0n37k23lkjgaj9wxnr41yk3mwvy62mc9im5l86czqmw5gy4l63ic"; name = "wwtime"; }; @@ -63382,7 +63802,7 @@ x-dict = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "x-dict"; - version = "20091203.1323"; + version = "20091203.1923"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "x-dict"; @@ -63390,7 +63810,7 @@ sha256 = "0i7bgbhk4lvdkdjh6z4xs69mbdi49985j82cjikzyyskjcqd2klq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x-dict"; sha256 = "1w51xhiaxk50wlch262dxs2ybjvjj8qzx01xlgiimvggb8h5arlc"; name = "x-dict"; }; @@ -63403,15 +63823,15 @@ x86-lookup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "x86-lookup"; - version = "20160516.1756"; + version = "20160526.321"; src = fetchFromGitHub { owner = "skeeto"; repo = "x86-lookup"; - rev = "c07dc9f9749164721b0c7ba55c8bf333c4ffe7b1"; - sha256 = "02ylb8xgyl3qkpi0v5b4zbq3ysm7a5yc3h99laabrqb390dkm2hc"; + rev = "7a2f43908985590ab8b904004cd4c41e341216be"; + sha256 = "0fks0bnil7m4m56k267f0awqnyq3vr2ywd81rsmbk1154g3acndc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -63424,7 +63844,7 @@ xah-elisp-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-elisp-mode"; - version = "20160409.627"; + version = "20160409.1227"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-elisp-mode"; @@ -63432,7 +63852,7 @@ sha256 = "1x3h69c2n82db8jkmd66c5i3x4rhmas5difm73msbx198w5i6lm7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-elisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-elisp-mode"; sha256 = "0cl07hw1hd3hj7wrzkh20m8vcs7mqsajxjmnlbnk2yg927yyijij"; name = "xah-elisp-mode"; }; @@ -63445,7 +63865,7 @@ xah-find = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-find"; - version = "20160210.2202"; + version = "20160211.402"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-find"; @@ -63453,7 +63873,7 @@ sha256 = "00ydkpkdgnj9v6dkf4pw9wj5skbq2v5y71xsr37d1fqmdzsb03g7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-find"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-find"; sha256 = "1d3x9yhm7my3yhvgqnjxr2v28g5w1h4ri40sy6dqcx09bjf3jhyq"; name = "xah-find"; }; @@ -63466,15 +63886,15 @@ xah-fly-keys = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-fly-keys"; - version = "20160510.1541"; + version = "20160601.1236"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-fly-keys"; - rev = "6549b29e82f1b64ba9ef05cdd906ba3028433faf"; - sha256 = "01w60sj9ck881i3lb4s4yg0i7s0vpn1gp3zshxsxsvzbc5n6znjg"; + rev = "3338f54458d58e77abbbe563e19b874901371ebf"; + sha256 = "1n20gs4gxgsiavfdg4mrcyn8316d1dryjjj7xgd6nxm6ncwlyxkj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-fly-keys"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-fly-keys"; sha256 = "0bzfz8q7yd1jai0pgngxwjp82nsfx5ivn24cb20vc5r8hhzj17cs"; name = "xah-fly-keys"; }; @@ -63487,7 +63907,7 @@ xah-get-thing = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-get-thing"; - version = "20150712.1730"; + version = "20150712.2330"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-get-thing-or-selection"; @@ -63495,7 +63915,7 @@ sha256 = "0abknznp2si80zq5pc0hqr3w3pca2vrv3msm6jz1s8l8zi2hwx72"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-get-thing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-get-thing"; sha256 = "0m61bmfgqy19h4ivw655mqj547ga8hrpaswcp48hx00hx8mqzcvg"; name = "xah-get-thing"; }; @@ -63508,7 +63928,7 @@ xah-lookup = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-lookup"; - version = "20150602.1446"; + version = "20150602.2046"; src = fetchFromGitHub { owner = "xahlee"; repo = "lookup-word-on-internet"; @@ -63516,7 +63936,7 @@ sha256 = "1adyww9jbjvcn9p3z9ggs3gijdmnab275a81ch8sir1xp59pfm3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-lookup"; sha256 = "0z0h1myw6wmybyd0z2lw4l59vgm6q6kh492q77kf3s0fssc0facc"; name = "xah-lookup"; }; @@ -63529,7 +63949,7 @@ xah-math-input = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-math-input"; - version = "20160127.1708"; + version = "20160127.2308"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-math-input"; @@ -63537,7 +63957,7 @@ sha256 = "1wsdnqpfgk7f1dbz90k6sf13hjh0x3xjjgappfkmhcy36g7sshl7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-math-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-math-input"; sha256 = "1afikjk46sjf97fb5fc8h63h7b9af010wxhsbpnmabsb4j72rx5a"; name = "xah-math-input"; }; @@ -63550,7 +63970,7 @@ xah-replace-pairs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xah-replace-pairs"; - version = "20150522.633"; + version = "20150522.1233"; src = fetchFromGitHub { owner = "xahlee"; repo = "xah-replace-pairs"; @@ -63558,7 +63978,7 @@ sha256 = "18msj947w6msma6zm23slk2v0h92n5ych5j12zbzkzzir49sffql"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xah-replace-pairs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xah-replace-pairs"; sha256 = "0r4aq9davh3ypzcjixr3aw9g659dhiblwbmcyhm8iqhkavcpqr1x"; name = "xah-replace-pairs"; }; @@ -63571,7 +63991,7 @@ xahk-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xahk-mode"; - version = "20150504.1911"; + version = "20150505.111"; src = fetchFromGitHub { owner = "xahlee"; repo = "xahk-mode.el"; @@ -63579,7 +63999,7 @@ sha256 = "0dc74kqwi0hpihdbb9a9lrqb7823w6j96mah47zyd9d4rd3vx850"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xahk-mode"; sha256 = "1bs12z7lnqlhm44hq0l98d0ka1bjgvm2yv97yivaj9akd53znca9"; name = "xahk-mode"; }; @@ -63592,7 +64012,7 @@ xbm-life = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xbm-life"; - version = "20160103.517"; + version = "20160103.1117"; src = fetchFromGitHub { owner = "wasamasa"; repo = "xbm-life"; @@ -63600,7 +64020,7 @@ sha256 = "08hzsqf4gawcr9q2h3rxrf1igvdja84aaa821657k04kdq4dpcbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -63613,7 +64033,7 @@ xcscope = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xcscope"; - version = "20160513.1506"; + version = "20160513.2106"; src = fetchFromGitHub { owner = "dkogan"; repo = "xcscope.el"; @@ -63621,7 +64041,7 @@ sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -63634,7 +64054,7 @@ xkcd = callPackage ({ fetchFromGitHub, fetchurl, json ? null, lib, melpaBuild }: melpaBuild { pname = "xkcd"; - version = "20160419.730"; + version = "20160419.1330"; src = fetchFromGitHub { owner = "vibhavp"; repo = "emacs-xkcd"; @@ -63642,7 +64062,7 @@ sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; @@ -63655,7 +64075,7 @@ xml-plus = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-plus"; - version = "20160210.2242"; + version = "20160211.442"; src = fetchFromGitHub { owner = "bddean"; repo = "xml-plus"; @@ -63663,7 +64083,7 @@ sha256 = "0c30xh7qxg3y2p5jqkbssz5z53rx0yp64qqyy9f87qzgkcd2jd8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml+"; sha256 = "0xgqyfdn6kkp89zj4h54r009a44sbff0nrhh582zw5rlklypwdz1"; name = "xml-plus"; }; @@ -63676,7 +64096,7 @@ xml-quotes = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-quotes"; - version = "20151230.1749"; + version = "20151230.2349"; src = fetchFromGitHub { owner = "ndw"; repo = "xml-quotes"; @@ -63684,7 +64104,7 @@ sha256 = "0z3yd3dzcsd7584jchv9q55fx04ig4yjzp8ay2pa112lykv4jxxd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-quotes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-quotes"; sha256 = "1lmafa695xkhd90k6yiv8a57ch1jx33l1zpm39z0kj546mn6y8aq"; name = "xml-quotes"; }; @@ -63697,7 +64117,7 @@ xml-rpc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xml-rpc"; - version = "20160430.1758"; + version = "20160430.2358"; src = fetchFromGitHub { owner = "hexmode"; repo = "xml-rpc-el"; @@ -63705,7 +64125,7 @@ sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-rpc"; sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; name = "xml-rpc"; }; @@ -63718,7 +64138,7 @@ xmlgen = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xmlgen"; - version = "20130219.519"; + version = "20130219.1119"; src = fetchFromGitHub { owner = "philjackson"; repo = "xmlgen"; @@ -63726,7 +64146,7 @@ sha256 = "1nk50iwb6az01r1s2l9wwdqrz3k4ywr00q0zmd9vvi3y9v4cjah0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xmlgen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xmlgen"; sha256 = "1mvnjqb9zxf9ml605w10v4cbbajwv9if93apr4xrh79l00scj383"; name = "xmlgen"; }; @@ -63739,7 +64159,7 @@ xmlunicode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xmlunicode"; - version = "20160319.1212"; + version = "20160319.1712"; src = fetchFromGitHub { owner = "ndw"; repo = "xmlunicode"; @@ -63747,7 +64167,7 @@ sha256 = "178bdfwiinhf98qm88ivmgy6rd0qjx5gnckkclanybva0r8l6832"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xmlunicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xmlunicode"; sha256 = "1ylpvx2p5l863r9qv9jdsm9rbv989c8xn0zpjl8zkcfxqxix4h4p"; name = "xmlunicode"; }; @@ -63760,7 +64180,7 @@ xo = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xo"; - version = "20160403.246"; + version = "20160403.846"; src = fetchFromGitHub { owner = "j-em"; repo = "xo-emacs"; @@ -63768,7 +64188,7 @@ sha256 = "0761amc73mbgaydp3iyfzgyjxp77yk440s24h69hvk87c5vn1cz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xo"; sha256 = "0kpbnxh8sa2dk8anrvgc7d39qap13pyjxh154gpm8xdb9zhfwl25"; name = "xo"; }; @@ -63781,7 +64201,7 @@ xquery-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xquery-mode"; - version = "20140121.1243"; + version = "20140121.1843"; src = fetchFromGitHub { owner = "mblakele"; repo = "xquery-mode"; @@ -63789,7 +64209,7 @@ sha256 = "09fpxr55b2adqmca8xhpy8z5cify5091fjdjyxjd1jh5wdp1658v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-mode"; sha256 = "0b5k2ihbjm5drv4lf64ap31yj873x1fcq85y6yq1ayahn6s52rql"; name = "xquery-mode"; }; @@ -63802,7 +64222,7 @@ xquery-tool = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xquery-tool"; - version = "20160203.1253"; + version = "20160203.1853"; src = fetchFromGitHub { owner = "paddymcall"; repo = "xquery-tool.el"; @@ -63810,7 +64230,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -63823,7 +64243,7 @@ xref-js2 = callPackage ({ emacs, fetchFromGitHub, fetchurl, js2-mode, lib, melpaBuild }: melpaBuild { pname = "xref-js2"; - version = "20160521.748"; + version = "20160521.1348"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "xref-js2"; @@ -63831,7 +64251,7 @@ sha256 = "0xs7wi29kxy2rjpimrlmigsk5sm03is4cd2snc4gsqfns769bjp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xref-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xref-js2"; sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; name = "xref-js2"; }; @@ -63844,7 +64264,7 @@ xresources-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xresources-theme"; - version = "20160331.1002"; + version = "20160331.1602"; src = fetchFromGitHub { owner = "CQQL"; repo = "xresources-theme"; @@ -63852,7 +64272,7 @@ sha256 = "171vffga2yzxqmgh77vila6x96bz1i6818f1pfaxblw1hz2ga341"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xresources-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xresources-theme"; sha256 = "0spqa3xn3p2lmvlc5hdn7prq4vb70nkyrryx1kavha9igzhlyaga"; name = "xresources-theme"; }; @@ -63865,7 +64285,7 @@ xterm-color = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-color"; - version = "20160401.2325"; + version = "20160402.525"; src = fetchFromGitHub { owner = "atomontage"; repo = "xterm-color"; @@ -63873,7 +64293,7 @@ sha256 = "19l9w373ysh1avakz4pmisn0d2mpym8pdxgz7k0m1bbqqzf2war7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -63886,7 +64306,7 @@ xterm-frobs = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-frobs"; - version = "20091211.1855"; + version = "20091212.55"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "xterm-frobs"; @@ -63894,7 +64314,7 @@ sha256 = "10dsf2lgjjqvjzzyc5kwggfk511v8ypmx173bixry3djcc15dsf3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-frobs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-frobs"; sha256 = "02v8kh2g6a2fpxy911630zsg985hyakvqbd6v2xyfbz0vnd6i1lf"; name = "xterm-frobs"; }; @@ -63907,15 +64327,15 @@ xterm-keybinder = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild }: melpaBuild { pname = "xterm-keybinder"; - version = "20151211.201"; + version = "20160523.256"; src = fetchFromGitHub { owner = "yuutayamada"; repo = "xterm-keybinder-el"; - rev = "08d7c9b4c71db05df092010ba92f87567004b8c7"; - sha256 = "1jwimgglhqgp259wjqmpp1wi9j51qxcl1l356jlhjnfp1zh1ihmg"; + rev = "b29c4f700b0fa0c9f627f6725b36462b8fab06d6"; + sha256 = "0ya7c73acwp29glwjd1hf19h8jij2afwmwq7a3h91qx5zdn09wvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-keybinder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-keybinder"; sha256 = "1n0zp1mc7x7z0671lf7p9r4qxic90bkf5q3zwz4vinpiw2qh88lz"; name = "xterm-keybinder"; }; @@ -63928,7 +64348,7 @@ xterm-title = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xterm-title"; - version = "20091203.1323"; + version = "20091203.1923"; src = fetchFromGitHub { owner = "emacsmirror"; repo = "xterm-title"; @@ -63936,7 +64356,7 @@ sha256 = "06cbr7y3wp7j8lnbys57g6md4fdx9xhlnxl73pj7xpfa5i2x9ifl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-title"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-title"; sha256 = "08z8qg9x6vjpybbhxa8x46qnp3951miz1264fivg776y76cg3ck6"; name = "xterm-title"; }; @@ -63949,7 +64369,7 @@ xtest = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "xtest"; - version = "20141214.1206"; + version = "20141214.1806"; src = fetchFromGitHub { owner = "promethial"; repo = "xtest"; @@ -63957,7 +64377,7 @@ sha256 = "09mn8s7gzzxgs7kskld8l68zjrcgnvml3fqj69wrfq7b1g62hhxy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -63970,7 +64390,7 @@ yabin = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yabin"; - version = "20140205.2251"; + version = "20140206.451"; src = fetchFromGitHub { owner = "d5884"; repo = "yabin"; @@ -63978,7 +64398,7 @@ sha256 = "0f6pvwzhncycw8gnjy24h6q1qglfgvdjfs5dzqx9s43j3yg63lzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yabin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yabin"; sha256 = "1kmpm2rbb43c9cgp44qwd24d90mj48k3gyiir3vb6zf6k3syrc17"; name = "yabin"; }; @@ -63991,7 +64411,7 @@ yafolding = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yafolding"; - version = "20141202.2356"; + version = "20141203.556"; src = fetchFromGitHub { owner = "zenozeng"; repo = "yafolding.el"; @@ -63999,7 +64419,7 @@ sha256 = "0b252m7vb5kg5bjhpgag6nhm32cac8dhlmy4pr0kpa860lh2xlz7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -64012,7 +64432,7 @@ yagist = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yagist"; - version = "20160418.108"; + version = "20160418.708"; src = fetchFromGitHub { owner = "mhayashi1120"; repo = "yagist.el"; @@ -64020,7 +64440,7 @@ sha256 = "0lgy9b893mq4harxh80n0n2zia00s2c6ga8p654q563idrskgz17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -64033,7 +64453,7 @@ yahoo-weather = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yahoo-weather"; - version = "20160426.829"; + version = "20160426.1429"; src = fetchFromGitHub { owner = "lujun9972"; repo = "yahoo-weather-mode"; @@ -64041,7 +64461,7 @@ sha256 = "1r29x9gkj5cfcg2ac4j5vw55n1niainhl2316mfq0zpxjjp2bhwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yahoo-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yahoo-weather"; sha256 = "1kzi6yp186wfcqh5q1v9vw6b1h8x89sba6wlnacfpjbarwapfif0"; name = "yahoo-weather"; }; @@ -64054,7 +64474,7 @@ yalinum = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yalinum"; - version = "20130217.543"; + version = "20130217.1143"; src = fetchFromGitHub { owner = "tm8st"; repo = "emacs-yalinum"; @@ -64062,7 +64482,7 @@ sha256 = "12dd4ahg9f1493982d49g7sxx0n6ss4xcfhxwzyaqxckwzfranp0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yalinum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yalinum"; sha256 = "0jzsvkcvy2mkfmri4bzgrlgw2y0z3hxz44md83s5zmw09mshkahf"; name = "yalinum"; }; @@ -64075,15 +64495,15 @@ yaml-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaml-mode"; - version = "20160426.438"; + version = "20160528.2300"; src = fetchFromGitHub { owner = "yoshiki"; repo = "yaml-mode"; - rev = "e73adcebb1689a4a878dd6d56f3a52cd4ed04c4c"; - sha256 = "03hcm3rv0na79dbivycg78bp08zfxfrgz8rf0i1wdk5sc9hzg105"; + rev = "a4794ea21a2ca8c9be6322fd7964e353d3fed0c1"; + sha256 = "1ql4bjqblij78cgasxdyr19w75xnl8cfxq047qi8r8847zy5w5wg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -64096,7 +64516,7 @@ yaml-tomato = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "yaml-tomato"; - version = "20151123.253"; + version = "20151123.853"; src = fetchFromGitHub { owner = "RadekMolenda"; repo = "yaml-tomato"; @@ -64104,7 +64524,7 @@ sha256 = "1xgqqgg4q3hrhiap8gmr8iifdr1mg4dl0j236b6alhrgmykbhimy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-tomato"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-tomato"; sha256 = "0bja213l6mvh8ap5d04x8dik1z9px5jr52zpw1py7shw5asvp5s2"; name = "yaml-tomato"; }; @@ -64117,7 +64537,7 @@ yandex-weather = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yandex-weather"; - version = "20160311.1537"; + version = "20160311.2137"; src = fetchFromGitHub { owner = "abstractionlayer"; repo = "yandex-weather.el"; @@ -64125,7 +64545,7 @@ sha256 = "0pw44klm8ldsdjphybzkknv8yh23xhzwg76w3d9cqs79jkd0rw8w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yandex-weather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yandex-weather"; sha256 = "11hspadm520cjlv1wk2bdpzg7hg2g0chbh26qijj9jgvca26x0md"; name = "yandex-weather"; }; @@ -64138,7 +64558,7 @@ yankpad = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yankpad"; - version = "20160517.1027"; + version = "20160517.1627"; src = fetchFromGitHub { owner = "Kungsgeten"; repo = "yankpad"; @@ -64146,7 +64566,7 @@ sha256 = "1nm0wad4jblirc8jvaa6kyk2g00a16mmp2q0x6ks6adqhylnlzdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yankpad"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yankpad"; sha256 = "1w5r9zk33cjgsmk45znfg32ym06nyqj5q3knr59jmn1fafx7a3z4"; name = "yankpad"; }; @@ -64158,13 +64578,13 @@ }) {}; yaoddmuse = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaoddmuse"; - version = "20150712.721"; + version = "20150712.1321"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/yaoddmuse.el"; sha256 = "0svy6zp5f22z7mblap4psh7h4i52d1qasi9yk22l39przhsrjar4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaoddmuse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaoddmuse"; sha256 = "07sqcsad3k23agwwws7hxnc46cp9mkc9qinzva7qvjgs8pa9dh54"; name = "yaoddmuse"; }; @@ -64177,7 +64597,7 @@ yard-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yard-mode"; - version = "20160310.1150"; + version = "20160310.1750"; src = fetchFromGitHub { owner = "pd"; repo = "yard-mode.el"; @@ -64185,7 +64605,7 @@ sha256 = "096ay60hrd14b459cyxxcf9g7i1ivsxg6yhc0q162px6kl1x0m2y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yard-mode"; sha256 = "0jmlcba8qapjwaaliz9gzs99if3wglkhmlpjzcdy3icx18sw8kzx"; name = "yard-mode"; }; @@ -64198,7 +64618,7 @@ yari = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yari"; - version = "20151128.239"; + version = "20151128.839"; src = fetchFromGitHub { owner = "hron"; repo = "yari.el"; @@ -64206,7 +64626,7 @@ sha256 = "0w9a6j0ndpfwaz1g974vv5jqgbzxw26l19kq51j3ah73063cavpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yari"; sha256 = "0sch9x899mzwdacg55w5j583k2r4vn71ish7gqpghd7cj13ii66h"; name = "yari"; }; @@ -64219,7 +64639,7 @@ yascroll = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yascroll"; - version = "20150315.905"; + version = "20150315.1405"; src = fetchFromGitHub { owner = "m2ym"; repo = "yascroll-el"; @@ -64227,7 +64647,7 @@ sha256 = "08wa97hsfy1rc8ify3rz2ncfij4z6l16p4s20naygqccjv3ir6z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -64240,15 +64660,15 @@ yasnippet = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yasnippet"; - version = "20160517.1928"; + version = "20160531.221"; src = fetchFromGitHub { owner = "capitaomorte"; repo = "yasnippet"; - rev = "497867cea5395ddfd2d482176bd789de9b1576b8"; - sha256 = "1xmpv8hzlaa0ljg80d9bc74xk9vhirgqnb0klpnxlc408kp7zhhl"; + rev = "e23a053b0041e4f615649b7acf8c1b2ce35fd3fb"; + sha256 = "1lc7jjk31kp4apcf349nrjac10c2nxi4w8ws6g5brhbzxgdhr217"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -64261,15 +64681,15 @@ yatemplate = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, yasnippet }: melpaBuild { pname = "yatemplate"; - version = "20151125.207"; + version = "20160601.2303"; src = fetchFromGitHub { owner = "mineo"; repo = "yatemplate"; - rev = "499e7f2ea245686c09915523657fa95905f70561"; - sha256 = "1gxn302kwjfq6s6rxxvy0jpp37r2vh4ry899giqbdfr0cc1qnw0c"; + rev = "ed53362fb29544b0fd7c0f1dcd70c4e0c581d8ae"; + sha256 = "0hlm31fqn53sqkvzrsah11p738mhq4l2bx4bq4nrnf92hs4xjjv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -64281,14 +64701,14 @@ }) {}; yatex = callPackage ({ fetchhg, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yatex"; - version = "20160107.1819"; + version = "20160108.19"; src = fetchhg { url = "https://www.yatex.org/hgrepos/yatex/"; rev = "e78a87bc2c9e"; sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -64301,7 +64721,7 @@ yaxception = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yaxception"; - version = "20150105.952"; + version = "20150105.1552"; src = fetchFromGitHub { owner = "aki2o"; repo = "yaxception"; @@ -64309,7 +64729,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -64322,7 +64742,7 @@ ycm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ycm"; - version = "20150822.1436"; + version = "20150822.2036"; src = fetchFromGitHub { owner = "neuromage"; repo = "ycm.el"; @@ -64330,7 +64750,7 @@ sha256 = "0znchya89zzk30mwl4qfm0q9sfa5m3jspapb892ydj0mck5n4nyj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycm"; sha256 = "16ahgvi85ddjlrjxld14zm2vvam0m89mwskizjd5clcz0snk51sc"; name = "ycm"; }; @@ -64343,15 +64763,15 @@ ycmd = callPackage ({ cl-lib ? null, dash, deferred, emacs, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, popup, request, request-deferred, s }: melpaBuild { pname = "ycmd"; - version = "20160506.321"; + version = "20160530.942"; src = fetchFromGitHub { owner = "abingham"; repo = "emacs-ycmd"; - rev = "6080cb164fc3a96f2248760fda2b6d46a55d63c0"; - sha256 = "1x138lbjy87sk68sjx07l3in2d9qzcc3pa9vgzvg95aiaacnk8qi"; + rev = "69ef8e615ae64b49e6955adfafd12037df01cd9f"; + sha256 = "18v546yq65sf75a46k7slqh5dz12ifh30linm0m9gv65yrjpv02j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycmd"; sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; name = "ycmd"; }; @@ -64374,7 +64794,7 @@ yesql-ghosts = callPackage ({ cider, dash, fetchFromGitHub, fetchurl, lib, melpaBuild, s }: melpaBuild { pname = "yesql-ghosts"; - version = "20150220.737"; + version = "20150220.1337"; src = fetchFromGitHub { owner = "magnars"; repo = "yesql-ghosts"; @@ -64382,7 +64802,7 @@ sha256 = "1fyvvkx6pa41bcr9cyh4yclwdzc5bs742s9fxr6wb4a5scq3hg9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -64395,7 +64815,7 @@ yoshi-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "yoshi-theme"; - version = "20160304.1818"; + version = "20160305.18"; src = fetchFromGitHub { owner = "ryuslash"; repo = "yoshi-theme"; @@ -64403,7 +64823,7 @@ sha256 = "1a40kpl5b4sar15s7l8vkfm2iyr5ma3c1n6w5r4z37w5kn59bkk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yoshi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yoshi-theme"; sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; name = "yoshi-theme"; }; @@ -64416,7 +64836,7 @@ youdao-dictionary = callPackage ({ chinese-word-at-point, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, names, popup }: melpaBuild { pname = "youdao-dictionary"; - version = "20150914.244"; + version = "20150914.844"; src = fetchFromGitHub { owner = "xuchunyang"; repo = "youdao-dictionary.el"; @@ -64424,7 +64844,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -64437,7 +64857,7 @@ z3-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: melpaBuild { pname = "z3-mode"; - version = "20151120.1755"; + version = "20151120.2355"; src = fetchFromGitHub { owner = "zv"; repo = "z3-mode"; @@ -64445,7 +64865,7 @@ sha256 = "1k7m3xk5ksbr2s3ypz5yqafz9sfav1m0qk2jz1xyi3fdaw2j0w2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/z3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/z3-mode"; sha256 = "183lzhgjj480ca2939za3rlnsbfn24mgi501n66h5wim950v7vgd"; name = "z3-mode"; }; @@ -64458,7 +64878,7 @@ zeal-at-point = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zeal-at-point"; - version = "20151231.348"; + version = "20151231.948"; src = fetchFromGitHub { owner = "jinzhu"; repo = "zeal-at-point"; @@ -64466,7 +64886,7 @@ sha256 = "16k8hha798hrs0qfdwqdr6n7y13ffgm6jj3msrk0zl8117jhaany"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zeal-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zeal-at-point"; sha256 = "1cz53plk5bax5azm13y7xz530qcfh0scm0cgrkrgwja2wwlxirnw"; name = "zeal-at-point"; }; @@ -64479,14 +64899,14 @@ zeitgeist = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zeitgeist"; - version = "20131228.1309"; + version = "20131228.1909"; src = fetchgit { url = "git://anongit.freedesktop.org/zeitgeist/zeitgeist-datasources"; rev = "cdd1c219ed3afa9500403c3c499f49583d599034"; sha256 = "0xg67asvgav5js03i3bqmh7apndrn0jy5vai0bsh22pq8wgvq083"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zeitgeist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zeitgeist"; sha256 = "0m6drp3c6hp70ypbva3ji2dndl9an1jm2zlhnpwmjxsmw47cd732"; name = "zeitgeist"; }; @@ -64499,7 +64919,7 @@ zen-and-art-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zen-and-art-theme"; - version = "20120622.1037"; + version = "20120622.1637"; src = fetchFromGitHub { owner = "developernotes"; repo = "zen-and-art-theme"; @@ -64507,7 +64927,7 @@ sha256 = "0dnaxhsw549k54j0mgydm7qbl4pizgipfyzc15f9afsxa107rpnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zen-and-art-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zen-and-art-theme"; sha256 = "0b2lflji955z90xl9iz2y1vm04yljghbw4948gh5vv5p7mwibgf2"; name = "zen-and-art-theme"; }; @@ -64520,7 +64940,7 @@ zenburn-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenburn-theme"; - version = "20160501.1049"; + version = "20160501.1649"; src = fetchFromGitHub { owner = "bbatsov"; repo = "zenburn-emacs"; @@ -64528,7 +64948,7 @@ sha256 = "1bjjmmplzjl17aqyz89s3z44vxpvik5ibv7004kp5678gf1vv5rs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -64541,7 +64961,7 @@ zencoding-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zencoding-mode"; - version = "20140213.322"; + version = "20140213.922"; src = fetchFromGitHub { owner = "rooney"; repo = "zencoding"; @@ -64549,7 +64969,7 @@ sha256 = "1y3wj15kfbgskl29glmba6lzq43rcm141p4i5s180aqcw7ydp5vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zencoding-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zencoding-mode"; sha256 = "1fclad1dyngyg9ncfkcqfxybvy8482i2bd409cgxi9y4h1wc7ws7"; name = "zencoding-mode"; }; @@ -64562,14 +64982,14 @@ zenity-color-picker = callPackage ({ emacs, fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zenity-color-picker"; - version = "20160302.654"; + version = "20160302.1254"; src = fetchgit { url = "https://bitbucket.org/Soft/zenity-color-picker.el.git"; rev = "4f4f46676a461ebc881487fb70c8c181e323db5e"; - sha256 = "14i2k52qz77dv04w39fyp9hfq983fwa3803anqragk608xgwpf4s"; + sha256 = "1abm0wmfkhbwdnqnvjd9r0pm7ahkcj7ip7jcz6rm49qam815g7rk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenity-color-picker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenity-color-picker"; sha256 = "1v6ks922paacdgpv5v8cpic1g66670x73ixsy2nixs5qdw241wzl"; name = "zenity-color-picker"; }; @@ -64582,7 +65002,7 @@ zerodark-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zerodark-theme"; - version = "20160518.927"; + version = "20160518.1527"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "zerodark-theme"; @@ -64590,7 +65010,7 @@ sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -64603,7 +65023,7 @@ zlc = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zlc"; - version = "20151010.2157"; + version = "20151011.357"; src = fetchFromGitHub { owner = "mooz"; repo = "emacs-zlc"; @@ -64611,7 +65031,7 @@ sha256 = "1gb51bqdf87yibs1zngk6q090p05293cpwlwbwzhnih9sl6wkq8x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zlc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zlc"; sha256 = "0qw0qf14l09mcnw7h0ccbw17psfpra76qfawkc10zpdb5a2167d0"; name = "zlc"; }; @@ -64624,7 +65044,7 @@ znc = callPackage ({ cl-lib ? null, erc ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "znc"; - version = "20140722.1721"; + version = "20140722.2321"; src = fetchFromGitHub { owner = "sshirokov"; repo = "ZNC.el"; @@ -64632,7 +65052,7 @@ sha256 = "1xsxmvbh3xm3zh9yc6q28h48nar6pwyd51xw04b1x7amwkp8qdnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/znc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/znc"; sha256 = "1z2kzbapgh55wwr5jp7v1wz5kpz4l7n3k94mkh3s068xag9xs6zz"; name = "znc"; }; @@ -64645,7 +65065,7 @@ zombie = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zombie"; - version = "20141222.1116"; + version = "20141222.1716"; src = fetchFromGitHub { owner = "zk-phi"; repo = "zombie"; @@ -64653,7 +65073,7 @@ sha256 = "1gm3ly6czbw4vrxcslm50jy6nxf2qsl656cjwbyhw251wppn75cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie"; sha256 = "0ji3nsxwbxmmygd6plpbc1lkw6i5zw4y6x3r5n2ah3ds4vjr7cnv"; name = "zombie"; }; @@ -64666,7 +65086,7 @@ zombie-trellys-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, haskell-mode, lib, melpaBuild }: melpaBuild { pname = "zombie-trellys-mode"; - version = "20150304.948"; + version = "20150304.1548"; src = fetchFromGitHub { owner = "david-christiansen"; repo = "zombie-trellys-mode"; @@ -64674,7 +65094,7 @@ sha256 = "04m53hzk5n9vxh0gxi8jzpdhsdjlxnvz7hmsisr3bs99v603ha01"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -64687,7 +65107,7 @@ zone-nyan = callPackage ({ esxml, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-nyan"; - version = "20160102.1756"; + version = "20160102.2356"; src = fetchFromGitHub { owner = "wasamasa"; repo = "zone-nyan"; @@ -64695,7 +65115,7 @@ sha256 = "0b8m0mdxbskkqsx86i6942235i8x0pk67a7s8lhsp2anahksazla"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -64708,7 +65128,7 @@ zone-rainbow = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-rainbow"; - version = "20160120.834"; + version = "20160120.1434"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-rainbow"; @@ -64716,7 +65136,7 @@ sha256 = "0w550l9im3mhxhja1b7cr9phdcbvx5lprw551lj0d1lv7qvjasz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-rainbow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-rainbow"; sha256 = "0l51fmhvx9vsxbs62cbjgqphb691397f651nqin7cj3dfvchzh4j"; name = "zone-rainbow"; }; @@ -64729,7 +65149,7 @@ zone-select = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-select"; - version = "20160118.919"; + version = "20160118.1519"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-select"; @@ -64737,7 +65157,7 @@ sha256 = "17mrzf85ym0x5ih4l6sjdjlcmviabf8c8rpvpkd90gp9qxd8pyx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-select"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-select"; sha256 = "05kc211invmy4ajwf71vgr2b7bdgn99c4a26m95gcjqgy3sh5xzz"; name = "zone-select"; }; @@ -64750,7 +65170,7 @@ zone-sl = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zone-sl"; - version = "20160201.710"; + version = "20160201.1310"; src = fetchFromGitHub { owner = "kawabata"; repo = "zone-sl"; @@ -64758,7 +65178,7 @@ sha256 = "0m1q45pza61j0fp8cxkgmds5fyjrk0nqpwhg8m91610m3pvyc3ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-sl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-sl"; sha256 = "04rwd6vj3abk3bzhq3swxwcq5da2n9cldrcmvnqgjr975np4cgs3"; name = "zone-sl"; }; @@ -64770,13 +65190,13 @@ }) {}; zones = callPackage ({ fetchurl, lib, melpaBuild }: melpaBuild { pname = "zones"; - version = "20160209.1220"; + version = "20160209.1820"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/zones.el"; sha256 = "1g6dpyihwaz28ppndhkw3jzmph6pmcnfhaff926j0zr1j701sqdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zones"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zones"; sha256 = "08sl7i7cy22nd1jijc5l7lp75k9z83gfr8q41n72l0vxrpdasc9w"; name = "zones"; }; @@ -64789,7 +65209,7 @@ zonokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zonokai-theme"; - version = "20160321.2225"; + version = "20160322.325"; src = fetchFromGitHub { owner = "ZehCnaS34"; repo = "zonokai-emacs"; @@ -64797,7 +65217,7 @@ sha256 = "16ni0va1adpqdnrkiwmpxwrhyanxp5jwbknii2wnbhgq62s7gv43"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zonokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zonokai-theme"; sha256 = "1hrpgh03mp7yynqamgzkw7fa70c5pmyjfmfblkfhspnsif8j4v29"; name = "zonokai-theme"; }; @@ -64810,13 +65230,13 @@ zoom-frm = callPackage ({ fetchurl, frame-cmds, frame-fns, lib, melpaBuild }: melpaBuild { pname = "zoom-frm"; - version = "20151231.1925"; + version = "20160101.125"; src = fetchurl { url = "https://www.emacswiki.org/emacs/download/zoom-frm.el"; sha256 = "1whpd97yjby5zbcr4fcn0nxhqvn6k3jn8k2d15i6ss579kziwdqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-frm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-frm"; sha256 = "111lr29zhj8w8j7dbzl58iisqxjhccxpw4spfxx08zxh4623g5mk"; name = "zoom-frm"; }; @@ -64826,22 +65246,22 @@ license = lib.licenses.free; }; }) {}; - zoom-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + zoom-window = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zoom-window"; - version = "20160520.539"; + version = "20160527.1638"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-zoom-window"; - rev = "07488bf1303b3f98e68ade015ceb4d350f92223d"; - sha256 = "1fy16qiibqgplabd1rxd3r6k91rn4z0gv6jvmdjm0a7nh2424v4b"; + rev = "f0eb12e389d8d2d13b5911907ef872e18230e00e"; + sha256 = "13393bd5lqpbv7m3p6ihg0ghx1w4w6mrnybx4m8hcfvcn17dr3hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "https://melpa.org/#/zoom-window"; license = lib.licenses.free; @@ -64850,7 +65270,7 @@ zop-to-char = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zop-to-char"; - version = "20160212.408"; + version = "20160212.1008"; src = fetchFromGitHub { owner = "thierryvolpiatto"; repo = "zop-to-char"; @@ -64858,7 +65278,7 @@ sha256 = "1hq5ycnj0kwqs25z5rm095d55r768458vc5h5dpjhka5n6c099p1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -64871,7 +65291,7 @@ zossima = callPackage ({ fetchFromGitHub, fetchurl, inf-ruby, lib, melpaBuild }: melpaBuild { pname = "zossima"; - version = "20121123.1935"; + version = "20121124.135"; src = fetchFromGitHub { owner = "technomancy"; repo = "zossima"; @@ -64879,7 +65299,7 @@ sha256 = "0fgwxw7r3zfv0b7xi8bx7kxff2r5hdw9gxf16kwq04fnh18nhi39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zossima"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zossima"; sha256 = "11kmnbqv4s8arindg7cxcdhbvfxsckks332wn7aiyb3bjhcgzwjb"; name = "zossima"; }; @@ -64892,15 +65312,15 @@ zotelo = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zotelo"; - version = "20160118.2345"; + version = "20160602.1149"; src = fetchFromGitHub { owner = "vspinu"; repo = "zotelo"; - rev = "4cabb7342668e146c5565dc5454ece4b4040f1a9"; - sha256 = "1335z1v4889njnm98pz2sjk6n7r3vncsz83bk3z6gj5i0ig7wjap"; + rev = "d9dc089b9adfcc70a63f2a84269a12eb7cb4c748"; + sha256 = "1gff44nwiqhqhppwmsn38njkph4g9bw669p95m8p2avb7x7kiybl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotelo"; sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; @@ -64913,7 +65333,7 @@ zotxt = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild, request-deferred }: melpaBuild { pname = "zotxt"; - version = "20160427.2222"; + version = "20160428.422"; src = fetchFromGitLab { owner = "egh"; repo = "zotxt-emacs"; @@ -64921,7 +65341,7 @@ sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotxt"; sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; name = "zotxt"; }; @@ -64934,7 +65354,7 @@ ztree = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ztree"; - version = "20160127.1842"; + version = "20160128.42"; src = fetchFromGitHub { owner = "fourier"; repo = "ztree"; @@ -64942,7 +65362,7 @@ sha256 = "1sxjpbgi7ydmrlv34l16n40qpg969wfcb6kknndrh3fgjjc3p41b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ztree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ztree"; sha256 = "1fk5xz8qq3azc66f954x5qvym94xnv4fg6wy83ihdfwycsas7j20"; name = "ztree"; }; @@ -64955,7 +65375,7 @@ zygospore = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zygospore"; - version = "20140703.452"; + version = "20140703.1052"; src = fetchFromGitHub { owner = "LouisKottmann"; repo = "zygospore.el"; @@ -64963,7 +65383,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zygospore"; sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; @@ -64976,15 +65396,15 @@ zzz-to-char = callPackage ({ avy, cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zzz-to-char"; - version = "20160122.740"; + version = "20160122.1340"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "zzz-to-char"; - rev = "efbe99c9163602f23408abaea70ffe292632bf26"; - sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; + rev = "25272ccdb8ef5b943037e161bc7d2561f899e23a"; + sha256 = "1wphpxnh7sisqfx7ngil3ixnjkfgwy3j2bvv33bxcwslvfggimi6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; diff --git a/pkgs/applications/editors/emacs-modes/melpa-packages.nix b/pkgs/applications/editors/emacs-modes/melpa-packages.nix index a0482ef28749..026ba7caea37 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-packages.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-packages.nix @@ -37,7 +37,7 @@ self: overrides = { ac-php = super.ac-php.override { - inherit (self.melpaPackages) company popup; + inherit (self.melpaPackages) popup; }; # upstream issue: mismatched filename diff --git a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix index ac78caccd8e9..af480af6e5c2 100644 --- a/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix +++ b/pkgs/applications/editors/emacs-modes/melpa-stable-generated.nix @@ -10,7 +10,7 @@ sha256 = "1xigpz2aswlmpcsc1f7gfakyw7041pbyl9zfd8nz38iq036n5b96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/0blayout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/0blayout"; sha256 = "027k85h34998i8vmbg2hi4q1m4f7jfva5jm38k0g9m1db700gk92"; name = "_0blayout"; }; @@ -31,7 +31,7 @@ sha256 = "13f4l9xzx4xm5m80kkb49zh31w0bn0kw9m5ca28rrx4aysqmwryv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abc-mode"; sha256 = "0qf5lbszyscmagiqhc0d05vzkhdky7ini4w33z1h3j5417sscrcx"; name = "abc-mode"; }; @@ -52,7 +52,7 @@ sha256 = "1yr6cqycd7ljkqzfp4prz9ilcpjq8wxg5yf645m24gy9v4w365ia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/abyss-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/abyss-theme"; sha256 = "0ckrgfd7fjls6g510v8fqpkd0fd18lr0spg3lf5s88gky8ihdg6c"; name = "abyss-theme"; }; @@ -73,7 +73,7 @@ sha256 = "0a8widshsm39cbala17pmnk1sazazhhyqppwalysli170whk49c5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-alchemist"; sha256 = "02ll3hcixgdb8zyszn78714gy1h2q0vkhpbnwap9302mr2racwl0"; name = "ac-alchemist"; }; @@ -94,7 +94,7 @@ sha256 = "0vrd6g9cl02jjxrjxpshq4pd748b5xszhpmakywrw8s08nh8jf44"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-anaconda"; sha256 = "124nvigk6y3iw0lj2r7div88rrx8vz59xwqph1063jsrc29x8rjf"; name = "ac-anaconda"; }; @@ -115,7 +115,7 @@ sha256 = "12z8nq797hjy0bq5vzpcm7z7bdn0ixc3ma4cj3v51xnwmgknzk6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake"; sha256 = "0s2pgf0m98ixgadsnn201vm5gnawanpvxv56sf599f33krqnxzkl"; name = "ac-cake"; }; @@ -136,7 +136,7 @@ sha256 = "0mlmhdl9s28z981y8bnpj8jpfzm6bgfiyl0zmpgvhyqw1wzqywwv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cake2"; sha256 = "0qxilldx23wqf8ilif2nin119bvd0l7b6f6wifixx28a6kl1vsgy"; name = "ac-cake2"; }; @@ -157,7 +157,7 @@ sha256 = "0nyq34yq4jcp3p30ygma3iz1h0q551p33792byj76pa5ps09g1da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-capf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-capf"; sha256 = "1drgk5iz2wp3rxzd39pj0n4cfmm5z8zqlp50jw5z7ffbbg35qxbm"; name = "ac-capf"; }; @@ -170,15 +170,15 @@ ac-cider = callPackage ({ auto-complete, cider, cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ac-cider"; - version = "0.2.1"; + version = "0.2.3"; src = fetchFromGitHub { owner = "clojure-emacs"; repo = "ac-cider"; - rev = "0dcb8e3028f9f658cacbe1ac3e99b02575e2ecd4"; - sha256 = "1vpj0lxbvlxffj2z29l109w70hcphiavyvglsw524agxql3c8yf9"; + rev = "4be034e5f82421b0a836ec7ff45815c67caffcee"; + sha256 = "12s7wy7fyk5z9q287j871gcsrvj90f4c81h39p66d99jw0cl93qj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-cider"; sha256 = "1dszpb706h34miq2bxqyq1ycbran5ax36vcniwp8vvhgcjsw5sz6"; name = "ac-cider"; }; @@ -199,7 +199,7 @@ sha256 = "1sdgpyq5p824dnxv6r7djwvhyhdmnis8k6992klr8iz7anhxzdam"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-clang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-clang"; sha256 = "070s06xhkzaqfc3j8c4i44rks6gn8z66lwd54j17p8d91x3qjpr4"; name = "ac-clang"; }; @@ -220,7 +220,7 @@ sha256 = "0a3s880nswc2s6yh2v5zsmws550q917i7av8nrxc5sp1d03xqwmn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-dcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-dcd"; sha256 = "086jp9c6bilc361n1hscza3pbhgvqlq944z7cil2jm1kicsf8s7r"; name = "ac-dcd"; }; @@ -241,7 +241,7 @@ sha256 = "0cc3jpc4pihbyznyzvf6i3xwc2x78gb5m36ba9gkvxhabsljnlfg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-emoji"; sha256 = "0msh3dh89jzk6hxva34gp9d5pazchgdknxjbi72z26rss9bkp1mw"; name = "ac-emoji"; }; @@ -262,7 +262,7 @@ sha256 = "0ijni3qgd68jhznhirhgcl59cr7hwfvbwgf6z120x56jmp8h01d2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-etags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-etags"; sha256 = "0ag49k9izrs4ikzac9lifvvwhcn5n89lr2vb20pngsvg1czdyhzb"; name = "ac-etags"; }; @@ -283,7 +283,7 @@ sha256 = "02ifz25rq64z0ifxs52aqdz0iz4mi6xvj88hcn3aakkmsj749vvn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-geiser"; sha256 = "0v558qz1mp8b1bgk8kgdk5sx5mpd353mw77n5b0pw4b2ikzpz2mx"; name = "ac-geiser"; }; @@ -304,7 +304,7 @@ sha256 = "0m33v9iy3y37sicfmpx7kvmn8v1a8k6cs7d0v9v5k93p4d5ila41"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-haskell-process"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-haskell-process"; sha256 = "0kv4z850kv03wiax1flnrp6sgqja25j23l719w7rkr7ck110q8rw"; name = "ac-haskell-process"; }; @@ -325,7 +325,7 @@ sha256 = "1gw38phyaslpql7szvlpwgyfngdgd21f6lq406vq0gjwwmxgig34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-helm"; sha256 = "16ajxlhcah5zbvywpc6l4l1arr308gjpgvdx6l1nrv2zvpckhlwq"; name = "ac-helm"; }; @@ -346,7 +346,7 @@ sha256 = "19v9515ixg22m7h7riix8w3vyhzax1m2pbwdirp59v532xn9b0cz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html"; sha256 = "0qf8f75b6dvy844dq8vh8d9c6k599rh1ynjcif9bwvdpf6pxwvqa"; name = "ac-html"; }; @@ -367,7 +367,7 @@ sha256 = "1zmjqnlbfchnb7n2v7ms7q06xma1lmf9ry3v6f4pfnwlmz5lsf3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-bootstrap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-bootstrap"; sha256 = "0z71m6xws0k9smhsswaivpikr64mv0wh6klnmi5cwhwcqas6kdi1"; name = "ac-html-bootstrap"; }; @@ -388,7 +388,7 @@ sha256 = "0p18wxyyc1jmcwx9y5i77s25v4jszv7cmm4bkwm4dzhkxd33kh1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-html-csswatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-html-csswatcher"; sha256 = "0jb9dnm2lxadrxssf0rjqw8yvvskcq4hys8c21shjyj3gkvwbfqn"; name = "ac-html-csswatcher"; }; @@ -409,7 +409,7 @@ sha256 = "1acm13n59sdgvvzicscxzrr5j1x5sa5x4rc4cnkbwb28nw5a5ysm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-inf-ruby"; sha256 = "04jclf0yxz78x1fsaf5sh1p466947nqrcx337kyhqn0nkj3hplqr"; name = "ac-inf-ruby"; }; @@ -430,7 +430,7 @@ sha256 = "16qsj3wni4xhcrjx2rnxdzq6jb7jrl4bngi4an37vgdlrx3w8m6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-ispell"; sha256 = "1vsy2qjh60n5lavivpqhhcpg5pk8zz2r0wy1sb65capn841zdi67"; name = "ac-ispell"; }; @@ -451,7 +451,7 @@ sha256 = "19cb8kq8gmrplkxil22ahvbyq5cng1l2vh2lrfiyqpjsap7zfjz5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-mozc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-mozc"; sha256 = "1v3iiid8cq50i076q98ycks9m827xzncgxqwqs2rqhab0ncy3h0f"; name = "ac-mozc"; }; @@ -472,7 +472,7 @@ sha256 = "16f8hvdz6y8nsfj7094yrvw194ag3w1jvz81h287vcgcvmyb7wdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-octave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-octave"; sha256 = "1g5s4dk1rcgkjn17jfw6g201pw0vfhqcx1nhigmnizpnzy0man9z"; name = "ac-octave"; }; @@ -493,7 +493,7 @@ sha256 = "0ca4viakvc09mvhk7d01pxnc3v3ydra6413asvdjx555njm9ic0f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-php"; sha256 = "1dlz4cv54ynl4ql5l2sa5lazlzq6rrlbz61k20l5lcljjwvj5xja"; name = "ac-php"; }; @@ -525,7 +525,7 @@ sha256 = "0g7xbfsfqpmcay56y8xbmif52ccz430s3rjxf5bgl9ahkk7zgkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-racer"; sha256 = "1vkvh8y3ckvzvqxj4i2k6jqri94121wbfjziybli74qba8dca4yp"; name = "ac-racer"; }; @@ -546,7 +546,7 @@ sha256 = "13yghv7p6c91fn8mrxbwrb6ldk5n3b6nj6a7pwsvks1q73i1pl88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ac-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ac-slime"; sha256 = "0mk3k1lcbqa16xvsbgk28x09vzqyaidqaqpq934xdbrwhdgwgckg"; name = "ac-slime"; }; @@ -567,7 +567,7 @@ sha256 = "1pzh5l8dybrrmglj55nbff6065pxlbx14501p3a1qx1wvf24g1sv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-flyspell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-flyspell"; sha256 = "0f24qrpcvyg7h6ylyggn4zrbydci537iigshac1d8yywsr0j47gd"; name = "ace-flyspell"; }; @@ -588,7 +588,7 @@ sha256 = "0233ai62zhsy5yhv72016clygwp2pcg80y6kr4cjm2k1k2wwy7m9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-isearch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-isearch"; sha256 = "0n8qf08z9n8c2sp5ks29nxcfks5mil1jj6wq348apda8safk36hm"; name = "ace-isearch"; }; @@ -609,7 +609,7 @@ sha256 = "1z82a0lrb61msamqpsy7rxcgs2nfhhckkk4zw0aw49l248p2nrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-buffer"; sha256 = "0hkxa0ps0v1hwmjafqbnyr6rc4s0w95igk8y3w53asl7f5sj5mpi"; name = "ace-jump-buffer"; }; @@ -622,15 +622,15 @@ ace-jump-helm-line = callPackage ({ avy, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "ace-jump-helm-line"; - version = "0.4.0"; + version = "0.5.0"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "ace-jump-helm-line"; - rev = "0f9a440f0d263a5f99c2a978e5b41310bf73d7ea"; - sha256 = "1hsnsncarhvkhl2r6cg1x23vgfqzrwcbmdfkwasfgs7pgnd722m7"; + rev = "8779050e4794279946892b6a156d0086554a9c9e"; + sha256 = "1d4bxxcnjbdr6cjr3jmz2zrnzjv5pwrypbp4xqgqyv9rz02n7ac1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-helm-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-helm-line"; sha256 = "04q8wh6jskvbiq6y2xsp2ir23vgz5zw09rm127sgiqrmn0jc61b9"; name = "ace-jump-helm-line"; }; @@ -651,7 +651,7 @@ sha256 = "1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-mode"; sha256 = "0yk0kppjyblr5wamncrjm3ym3n8jcl0r0g0cbnwni89smvpngij6"; name = "ace-jump-mode"; }; @@ -672,7 +672,7 @@ sha256 = "0yng6qayzqadk4cdviri84ghld4can35q134hm3n3j3vprhpbmca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-jump-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-jump-zap"; sha256 = "07bkmly3lvlbby2m13nj3m1q0gcnwy5sas7d6ws6vr9jh0d36byb"; name = "ace-jump-zap"; }; @@ -682,22 +682,22 @@ license = lib.licenses.free; }; }) {}; - ace-link = callPackage ({ ace-jump-mode, fetchFromGitHub, fetchurl, lib, melpaBuild }: + ace-link = callPackage ({ avy, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ace-link"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "abo-abo"; repo = "ace-link"; - rev = "f88b70fda761c235afe8d3f7735ef14bc82226f5"; - sha256 = "1v127ld04gn16bgismbcz91kfjk71f3g8yf10r4scfp603y41zgz"; + rev = "5bf301e2c74960246427d3e48889a49f9f8ec6ba"; + sha256 = "1mrlwkls80blispg5hdgnif42rck3iqhcm1f3khq14nm09yqwdk9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-link"; sha256 = "1jl805r2s3wa0xyhss1q28rcy6y2fngf0yfcrcd9wf8kamhpajk5"; name = "ace-link"; }; - packageRequires = [ ace-jump-mode ]; + packageRequires = [ avy ]; meta = { homepage = "https://melpa.org/#/ace-link"; license = lib.licenses.free; @@ -714,7 +714,7 @@ sha256 = "1d2g873zwq78ggs47954lccmaky20746wg0gafyj93d1qyc3m8rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-pinyin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-pinyin"; sha256 = "18gmj71zd0i6yx8ifjxsqz2v81jx0j37f5kxllf31w7fj32ymbkc"; name = "ace-pinyin"; }; @@ -735,7 +735,7 @@ sha256 = "1qiiivkwa95bhyym8ly7fnwwglc9dcifkyr314bsq8m4rp1mgry4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-popup-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-popup-menu"; sha256 = "1cq1mpv7v98bqrpsm598krq1741b6rwih71cx3yjifpbagrv4m5s"; name = "ace-popup-menu"; }; @@ -756,7 +756,7 @@ sha256 = "07mcdzjmgrqdvjs94f2n5bkrf5vrq2fwzz256wbm3wzqxqkfy1q6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ace-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ace-window"; sha256 = "1k0x8m1phmvgdxb5aj841iai9q96a5lfq8i4b5vnlbc3w888n3xa"; name = "ace-window"; }; @@ -777,7 +777,7 @@ sha256 = "0hib4a8385q2czi1yqs0hwnva2xi7kw0bdfnrgha1hrl30rilp2f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ack-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ack-menu"; sha256 = "1d2kw04ndxji2qjcm1b65qnxpp08zx8gbia8bl6x6mnjb2isc2d9"; name = "ack-menu"; }; @@ -798,7 +798,7 @@ sha256 = "0zybch8hz3mj63i0pxynb4d76ywqcy7b4fsa4hh71c2kb0bnczb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/actionscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/actionscript-mode"; sha256 = "1dkiay9jmizvslji5kzab4dxm1dq0jm8ps7sjq6710g7a5aqdvwq"; name = "actionscript-mode"; }; @@ -819,7 +819,7 @@ sha256 = "0kp2aafjhqxz3mjr9hkkss85r4n51chws5a2qj1xzb63dh36liwm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/adoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/adoc-mode"; sha256 = "0wgagcsh0fkb51fy17ilrs20z2vzdpmz97vpwijcfy2b9rypxq15"; name = "adoc-mode"; }; @@ -840,7 +840,7 @@ sha256 = "1y9bw2vkl952pha2dsi18swyr94mihgwlcg5m8hg4d5bfg2fzcb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aes"; sha256 = "11vl9x3ldrv7q7rd29xk4xmlvfxs0m6iys84f6mlgf00190l5r5v"; name = "aes"; }; @@ -861,7 +861,7 @@ sha256 = "15kp99vwyi7hb1jkq3lwvqzw3v62ycixsq6y4pd1x0nn2v5p5m5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ag"; sha256 = "1r4ai09vdckkg4h4i7dp781qqmm4kky53p4q8azp3n2c78i1vz6g"; name = "ag"; }; @@ -882,7 +882,7 @@ sha256 = "03mpg4ksvcc5zs540rgnf3gssyx97aiiv60lwdn3934al4125vnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aggressive-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aggressive-indent"; sha256 = "1qi8jbr28gax35siim3hnnkiy8pa2vcrzqzc6axr98wzny46x0i2"; name = "aggressive-indent"; }; @@ -903,7 +903,7 @@ sha256 = "02nkcin0piv7s93c9plhy361dbqr78m0gd19myc7qb7gnm36kzpn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ahk-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ahk-mode"; sha256 = "066l4hsb49wbyv381qgn9k4hn8gxlzi20h3qaim9grngjj5ljbni"; name = "ahk-mode"; }; @@ -924,7 +924,7 @@ sha256 = "0blrpqn8wy9pwzikgzb0v6x4hk7axv93j4byfci62fh1905zfkkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/airline-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/airline-themes"; sha256 = "0jkhb6nigyjmwqny7g59h4ssfy64vl3qnwcw46wnx5k9i73cjyih"; name = "airline-themes"; }; @@ -945,7 +945,7 @@ sha256 = "1y5nmcrlsmniv37x7w6yhihmb335n82d96yz7xclhwg59n652pjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alchemist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alchemist"; sha256 = "18jxw0zb7y34qbm4bcpfpb2656f0h9grmrbfskgp4ra4q5q3n369"; name = "alchemist"; }; @@ -966,7 +966,7 @@ sha256 = "1pk5dgjqrynap85700wdivq41bdqvwd5hkfimgmcd48l5lhj9pbj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alect-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alect-themes"; sha256 = "04fq65qnxlvl5nc2q037c6yb4nf422dfw2913gv6zfh9rdmxsks8"; name = "alect-themes"; }; @@ -987,7 +987,7 @@ sha256 = "1vpc3q40m6dcrslki4bg725j4kv6c6xfxwjjl1ilg7la49fwwf26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/alert"; sha256 = "0x3cvczq09jvshz435jw2fjm69457x2wxdvvbbjq46nfnybhi118"; name = "alert"; }; @@ -997,22 +997,31 @@ license = lib.licenses.free; }; }) {}; - amd-mode = callPackage ({ dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: + amd-mode = callPackage ({ ag, dash, f, fetchFromGitHub, fetchurl, js2-mode, js2-refactor, lib, makey, melpaBuild, projectile, s }: melpaBuild { pname = "amd-mode"; - version = "1.0"; + version = "1.1"; src = fetchFromGitHub { owner = "NicolasPetton"; repo = "amd-mode.el"; - rev = "16500ccc16e98bf28395b576afa83ec7bcb7b101"; - sha256 = "00kfnkr0rclzbir2xxzr9wf2g0hf1alc004v8i9mqf3ab6dgdqiy"; + rev = "1b9e5c3a18722bd65692a2069eea0e88fcddda71"; + sha256 = "1q49gfs98djwjxw2sr8q08jf5glf9d3ks9014gjjwa1dpf98mpy3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/amd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/amd-mode"; sha256 = "17ry6vm5xlmdfs0mykdyn05cik38yswq5axdgn8hxrvvb6f58d06"; name = "amd-mode"; }; - packageRequires = [ dash f js2-mode js2-refactor makey projectile s ]; + packageRequires = [ + ag + dash + f + js2-mode + js2-refactor + makey + projectile + s + ]; meta = { homepage = "https://melpa.org/#/amd-mode"; license = lib.licenses.free; @@ -1021,15 +1030,15 @@ anaconda-mode = callPackage ({ dash, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pythonic, s }: melpaBuild { pname = "anaconda-mode"; - version = "0.1.1"; + version = "0.1.2"; src = fetchFromGitHub { owner = "proofit404"; repo = "anaconda-mode"; - rev = "2ad7c1ee5b786d900154982270e4c68a4fe5b404"; - sha256 = "0sj6cr2bghy80dnwgl7rg61abdlvgfzi0jjc7jrxz7fdzwkcq714"; + rev = "40b389854188e3867ae3d7a757f98c60aa461ef7"; + sha256 = "1mwdlvpyxmnsf3zkqlcjln6ryd88czw5hdssz1acg2yi24k4j44d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaconda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaconda-mode"; sha256 = "0gz16aam4zrm3s9ms13h4qcdflf55506kgkpyncq3bi54cvv8n1r"; name = "anaconda-mode"; }; @@ -1050,7 +1059,7 @@ sha256 = "0fnxxvw81c34zhmiyr5awl92wr5941n4gklvzjc4jphaf2nhkg4w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anaphora"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anaphora"; sha256 = "1wb7fb3pc4gxvpjlm6gjbyx0rbhjiwd93qwc4vfw6p865ikl19y2"; name = "anaphora"; }; @@ -1071,7 +1080,7 @@ sha256 = "0gjynmzqlqz0d57fb4np6xrklqdn11y4vjbm18rlpvmk92bgw740"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/android-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/android-mode"; sha256 = "1nqrvq411yg4b9xb5cvc7ai7lfalwc2rfhclzprvymc4vxh6k4cc"; name = "android-mode"; }; @@ -1092,7 +1101,7 @@ sha256 = "1798nv4djhxzbin68zf6w7dbfm9sc39d0kygky52ii36arg5r1zp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-mode"; sha256 = "1bwfmjldnxki0lqi3ys6r2a3nlhbwm1dibsg2dvzirq8qql02w1i"; name = "angular-mode"; }; @@ -1113,7 +1122,7 @@ sha256 = "0h9i0iimanbvhbqy0cj9na335rs961pvhxjj4k8y53qc73xm102a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/angular-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/angular-snippets"; sha256 = "057phgizn1c6njvdfigb23ljs31knq247gr0rcpqfrdaxsnnzm5c"; name = "angular-snippets"; }; @@ -1134,7 +1143,7 @@ sha256 = "18ninv1z8zdqpqnablbds4zgxgk4c1nmznlfdicj6qs738c5c30s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annotate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annotate"; sha256 = "1ajykgara2m713blj2kfmdz12fzm8jw7klyakkyi6i3c3a9m44jy"; name = "annotate"; }; @@ -1155,7 +1164,7 @@ sha256 = "1ppq3kszzj2fgr7mwj565bjs8bs285ymy384cnnw7paddgcr9z02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/annoying-arrows-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/annoying-arrows-mode"; sha256 = "13bwqv3mv7kgi1gms58f5g03q5g7q98n4vv6n28zqmppxm5z33s7"; name = "annoying-arrows-mode"; }; @@ -1176,7 +1185,7 @@ sha256 = "1hbddxarr40ygvaw4pwaivq2l4f0brszw73w1r50lkjlggb7bl3g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansi"; sha256 = "0b5xnv6z471jm53g37njxin6l8yflsgm80y4wxahfgy8apipcq89"; name = "ansi"; }; @@ -1197,7 +1206,7 @@ sha256 = "03d240jngxw51ybrsjw8kdxygrr0ymdckzwga2jr1bqf26v559j2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible"; sha256 = "1xdc05fdglqfbizra6s1zl6knnvaq526dkxqnw9g7w269j8f4z8g"; name = "ansible"; }; @@ -1218,7 +1227,7 @@ sha256 = "05z379k6a7xq9d2zapf687x3f37jpmh6kfghpgxdd18v0hzca8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ansible-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ansible-doc"; sha256 = "03idvnn79fr9id81aivkm7g7cmlsg0c520wcq4da8g013xvi342w"; name = "ansible-doc"; }; @@ -1239,7 +1248,7 @@ sha256 = "06cn81sksvl88l1g3cfgp1kf8xzfv00b31j2rf58f45zlbl5ckv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anti-zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anti-zenburn-theme"; sha256 = "1sp9p6m2jy4m9fdn1hz25cmasy0mwwgn46qmvm92i56f5x6jlzzk"; name = "anti-zenburn-theme"; }; @@ -1260,7 +1269,7 @@ sha256 = "1z6l72dn98icqsmxb3rrj6l63ijc3xgfa3vdl19yqa2rfy6ya721"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anyins"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anyins"; sha256 = "0ncf3kn8rackcidkgda2zs60km3hx87rwr9daj7ksmbb6am09s7c"; name = "anyins"; }; @@ -1277,10 +1286,10 @@ src = fetchgit { url = "http://repo.or.cz/r/anything-config.git"; rev = "6b9718fba257e6c2912ba70f9895251ab1926928"; - sha256 = "040znq4qv6rqjw05klriasysvsx6s6xn00ssc3acbqdqjgjk8l2a"; + sha256 = "08f7qxwnvykmxwrii3nv1fnai4mqs2ir5419k0llj6mkrik0gfc6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything"; sha256 = "13pmks0bsby57v3vp6jcvvzwb771d4qq62djgvrw4ykxqzkcb8fj"; name = "anything"; }; @@ -1301,7 +1310,7 @@ sha256 = "01lw9159axg5w9bpdy55m4zc902zmsqvk213ky1nmgnln0fvq3rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-exuberant-ctags"; sha256 = "0p0jq2ggdgaxv2gd9m5iza0y3mjjc82xmgp899yr15pfffa4wihk"; name = "anything-exuberant-ctags"; }; @@ -1322,7 +1331,7 @@ sha256 = "1834yj2vgs4dasdfnppc8iw8ll3yif948biq9hj0sbpsa2d8y44k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-replace-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-replace-string"; sha256 = "1fagi6cn88p6sf1yhx1qsi7nw9zpyx9hdfl66iyskqwddfvywp71"; name = "anything-replace-string"; }; @@ -1343,7 +1352,7 @@ sha256 = "1bcvin2694ypqgiw0mqk82riq7gw6ra10vbkzng1yp9jp2qr6wmm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anything-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anything-sage"; sha256 = "1878vj8hzrwfyd2yvxcm0f1vm9m0ndwnj0pcq7j8zm9lxj0w48p3"; name = "anything-sage"; }; @@ -1364,7 +1373,7 @@ sha256 = "1dxaf68przg0hh0p1zhxsq2dysp3ln178yxhbqalxw67bjy8ikny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/anzu"; sha256 = "0i2ia0jisj31vc2pjx9bhv8jccbp24q7c406x3nhh9hxjzs1f41i"; name = "anzu"; }; @@ -1385,7 +1394,7 @@ sha256 = "13j2r4nx2x6j3qx50d5rdnqd8nl5idxdkhizsk7ccz3v2607fbyy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/apples-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/apples-mode"; sha256 = "05ssnxs9ybc26jhr69xl9jpb41bz1688minmlc9msq2nvyfnj97s"; name = "apples-mode"; }; @@ -1406,7 +1415,7 @@ sha256 = "1wyz8jvdy4m0cn75mm3zvxagm2gl10q51479f91gnqv14b4rndfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aproject"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aproject"; sha256 = "0v3gx2mff2s7knm69y253pm1yr4svy8w00pqbn1chrvymb62jhp2"; name = "aproject"; }; @@ -1427,7 +1436,7 @@ sha256 = "133c1n4ra7z3vb6y47400y71a6ac19pyji0bgd4kr9fcbx0flx91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/artbollocks-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/artbollocks-mode"; sha256 = "0dlnxicn6nzyiz44y92pbl4nzr9jxfb9a99wacjrwq2ahdrwhhjp"; name = "artbollocks-mode"; }; @@ -1448,7 +1457,7 @@ sha256 = "1yvirfmvf6v5khl7zhx2ddv9bbxnx1qhwfzi0gy2nmbxlykb6s2j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/arview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/arview"; sha256 = "0d935lj0x3rbar94l7288xrgbcp1wmz6r2l0b7i89r5piczyiy1y"; name = "arview"; }; @@ -1469,7 +1478,7 @@ sha256 = "1s973vzivibaqjb8acn4ylrdasxh17jcfmmvqp4wm05nwhg75597"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/asilea"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/asilea"; sha256 = "1lb8nr6r6yy06m4pxg8w9ja4zv8k5xwhl95v2wv95y1qwhgnwg3j"; name = "asilea"; }; @@ -1490,7 +1499,7 @@ sha256 = "1qfrrw6vgz93xiyy0xiaw0hh97lmv3365gm6a9cr5g0h4012z8pq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/assess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/assess"; sha256 = "0xj3f48plwxmibax00qn15ya7s0h560xzwr8nkwl5r151v1mc9rr"; name = "assess"; }; @@ -1511,7 +1520,7 @@ sha256 = "1dgw075pdzfrb5wjba7iwal8crxpxm642fkfwj8389a5hpsj7v2n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/async"; sha256 = "063ci4f35x1zm9ixy110i5ds0vsrcafpixrz3xkvpnfqdn29si3f"; name = "async"; }; @@ -1532,7 +1541,7 @@ sha256 = "1xyn8qiikng6vf5rbpfqz9ac10c69aip0w6v9l46w0qxsy8svyaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/atom-one-dark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/atom-one-dark-theme"; sha256 = "0wwnkhq7vyysqiqcxc1jsn98155ri4mf4w03k7inl1f8ffpwahvw"; name = "atom-one-dark-theme"; }; @@ -1553,7 +1562,7 @@ sha256 = "0dqr1yrzf7a8655dsbcch4622rc75j9yjbn9zhkyikqjicddnlda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurel"; sha256 = "13zyi55ksv426pcksbm3l9s6bmp102w7j1xbry46bc48al6i2nnl"; name = "aurel"; }; @@ -1574,7 +1583,7 @@ sha256 = "0ns1xhpk1awbj3kv946dv11a99p84dhm54vjk72kslxwx42nia28"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/aurora-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/aurora-config-mode"; sha256 = "1hpjwidqmjxanijsc1imc7ww9abbylmkin1p0846fbz1hz3a603c"; name = "aurora-config-mode"; }; @@ -1595,7 +1604,7 @@ sha256 = "1b6g7qvrxv6gkl4izq1y7k0x0l7izyfnpki10di5vdv3jp6xg9b2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auth-password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auth-password-store"; sha256 = "118ll12dhhxmlsp2mxmy5cd91166a1qsk406yhap5zw1qvyg58w5"; name = "auth-password-store"; }; @@ -1616,7 +1625,7 @@ sha256 = "05crb8cm7s1nggrqq0xcs2xiabjw3vh44fnkdiilq1c5cnajdcrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-compile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-compile"; sha256 = "1cdv41hg71mi5ixxi4kiizyg03xai2gyhk0vz7gw59d9a7482yks"; name = "auto-compile"; }; @@ -1637,7 +1646,7 @@ sha256 = "04i9b11iksg6acn885wl3qgi5xpsm3yszlqmd2x21yhprndlz7gb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete"; sha256 = "1c4ij5bnclg94jdzhkqvq2vxwv6wvs051mbki1ibjm5f2hlacvh3"; name = "auto-complete"; }; @@ -1658,7 +1667,7 @@ sha256 = "1kp2l1cgzlg2g3wllz4gl1ssn4lnx2sn26xqigfrpr8y5rj2bsfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-clang-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-clang-async"; sha256 = "1jj0jn1v3070g7g0j5gvpybv145kki8nsjxqb8fjf9qag8ilfkjh"; name = "auto-complete-clang-async"; }; @@ -1679,7 +1688,7 @@ sha256 = "1fqgyg986fg1dzac5wa97bx82mfddqb6qrfnpr3zksmw3vgykxr0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-exuberant-ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-exuberant-ctags"; sha256 = "1i2s3ycc8jafkzdsz3kbvx1hh95ydi5s6rq6n0wzw1kyy3km35gd"; name = "auto-complete-exuberant-ctags"; }; @@ -1700,7 +1709,7 @@ sha256 = "18bf1kw85mab0zp7rn85cm1nxjxg5c1dmiv0j0mjwzsv8an4px5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-nxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-nxml"; sha256 = "0viscr5k1carn9vhflry16kgihr6fvh6h36b049pgnk6ww085k6a"; name = "auto-complete-nxml"; }; @@ -1721,7 +1730,7 @@ sha256 = "1hf2f903hy9afahrgy2fx9smgn631drs6733188zgqi3nkyizj26"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-pcmp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-pcmp"; sha256 = "1mpgkwj8jwpvxphlm6iaprwjrldmihbgg97jav0fbm1kjnm4azna"; name = "auto-complete-pcmp"; }; @@ -1742,7 +1751,7 @@ sha256 = "0l49ciic7g30vklxq6l1ny3mz87l5p8qc30rmkjvkzvg8r52ksn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-complete-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-complete-sage"; sha256 = "02sxbir3arvmnkvxgndlkln9y05jnlv6i8czd6a0wcxk4nj43lq1"; name = "auto-complete-sage"; }; @@ -1763,7 +1772,7 @@ sha256 = "191294k92qp8gmfypf0q8j8qrym96aqikzvyb9p03wqvbr3r1dsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-dictionary"; sha256 = "1va485a8lxvb3507kr83cr6wpssxnf8y4l42mamn9daa8sjx3q16"; name = "auto-dictionary"; }; @@ -1784,7 +1793,7 @@ sha256 = "1hlsgsdxpx42kmqkjgy9b9ldz5i4dbi879v87pjd2qbkj8iywb6y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-indent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-indent-mode"; sha256 = "1nk78p8lqs8cx90asfs8iaqnwwyy8fi5bafaprm9c0nrxz299ibz"; name = "auto-indent-mode"; }; @@ -1805,7 +1814,7 @@ sha256 = "05llpa6g4nb4qswmcn7j3bs7hnmkrkax7hsk7wvklr0wrljyg9a2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-package-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-package-update"; sha256 = "0fdcniq5mrwbc7yvma4088r0frdfvc2ydfil0s003faz0nrjcp8k"; name = "auto-package-update"; }; @@ -1826,7 +1835,7 @@ sha256 = "1h8zsgw30axprs7a5kkygbhvilillzazxgqz01ng36il65fi28s6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-shell-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-shell-command"; sha256 = "1i78fh72i8yv91rnabf0vs78r43qrjkr36hndmn5ya2xs3b1g41j"; name = "auto-shell-command"; }; @@ -1847,7 +1856,7 @@ sha256 = "0n3r7j83csby2s7284hy5pycynazyrkljxkn6xqn08gvxbbbdpdq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/auto-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/auto-yasnippet"; sha256 = "02281gyy07cy72a29fjsixg9byqq3izb9m1jxv98ni8pcy3bpsqa"; name = "auto-yasnippet"; }; @@ -1868,7 +1877,7 @@ sha256 = "1pf2mwnicj5x2kksxwmrzz2vfxj9y9r6rzgc1fl8028mfrmrmg8s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-java-bytecode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-java-bytecode"; sha256 = "1k19nkbxnysm3qkpdhz4gv2x9nnrp94xl40x84q8n84s6xaan4dc"; name = "autodisass-java-bytecode"; }; @@ -1889,7 +1898,7 @@ sha256 = "1hyp49bidwc53cr25wwwyzcd0cbbqzxkfcpnccimphv24qfsai85"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autodisass-llvm-bitcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autodisass-llvm-bitcode"; sha256 = "0bh73nzll9jp7kiqfnb5dwkipw85p3c3cyq58s0nghig02z63j01"; name = "autodisass-llvm-bitcode"; }; @@ -1910,7 +1919,7 @@ sha256 = "0g6kd1r0wizamw26bhp5jkvpsd98rcybkfchc622b9v5b89a07nq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/autopair"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/autopair"; sha256 = "161qhk8rc1ldj9hpg0k9phka0gflz9vny7gc8rnylk90p6asmr28"; name = "autopair"; }; @@ -1931,7 +1940,7 @@ sha256 = "0rq9ab264565z83cly743nbhrd9m967apmnlhqr1gy8dm4hcy7nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy"; sha256 = "0gjq79f8jagbngp0shkcqmwhisc3hpgwfk34kq30nb929nbnlmag"; name = "avy"; }; @@ -1952,7 +1961,7 @@ sha256 = "1564yv9330vjymw3xnikc2lz20f65n40fbl8m1zs1gp4nlgzkk38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-menu"; sha256 = "1g2bsm0jpig51jwn9f9mx6z5glb0bn4s21194xam768qin0rf4iw"; name = "avy-menu"; }; @@ -1973,7 +1982,7 @@ sha256 = "0s6m44b49jm5cnrx1pvk7rfw3zhwiw5xasdlgmlvv7wws7m5snd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-migemo"; sha256 = "1zvgkhma445gj1zjl8j25prw95bdpjbvfy8yr0r5liay6g2hf296"; name = "avy-migemo"; }; @@ -1994,7 +2003,7 @@ sha256 = "0lmv34pi9qdh76fi3w4lrfyfhzr824nsiif4nyjvpnmrabxgk309"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/avy-zap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/avy-zap"; sha256 = "1zbkf21ggrmg1w0xaw40i3swgc1g4fz0j8p0r9djm9j120d94zkx"; name = "avy-zap"; }; @@ -2015,7 +2024,7 @@ sha256 = "0px1xggk6qyrwkma1p3d7b4z2id2gbrsxkliw3nwc1q4zndg1zr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/babel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/babel"; sha256 = "0sdpp4iym61ni32zv75n48ylj4jib8ca6n9hyqwj1b7nqg76mm1c"; name = "babel"; }; @@ -2036,7 +2045,7 @@ sha256 = "0hmn3jlsqgpc602lbcs9wzw0hgr5qpjdcxi2hjlc1cp27ilyscnf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/back-button"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/back-button"; sha256 = "0vyhvm445d0rs14j5xi419akk5nd88d4hvm4251z62fmnvs50j85"; name = "back-button"; }; @@ -2063,7 +2072,7 @@ sha256 = "1plh7i4zhs5p7qkv7p7lnfrmkszn8b3znwvbxgp7wpxay5safc5j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/badwolf-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/badwolf-theme"; sha256 = "03plkzpmlh0pgfp1c9padsh4w2g23clsznym8x4jabxnk0ynhq41"; name = "badwolf-theme"; }; @@ -2084,7 +2093,7 @@ sha256 = "11rlmrjdpa3vnf0h9vcd75946q9jyf1mpbm7h12hmpj6g2pavgdd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bash-completion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bash-completion"; sha256 = "0l41yj0sb87i27hw6dh35l32hg4qkka6r3bpkckjnfm0xifrd9hj"; name = "bash-completion"; }; @@ -2105,7 +2114,7 @@ sha256 = "1xvxz9sk9l57a4kiiavxxdp0v241mfgiy2lg5ilacq1cd6xrrhky"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbcode-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbcode-mode"; sha256 = "0ixxavmilr6na56yc148prbh3nlhcwir6rxqvh332cr8vr9gmp89"; name = "bbcode-mode"; }; @@ -2126,7 +2135,7 @@ sha256 = "17nbnkg0zn6p89r27mk9hl6qhv6xscwdsq8iyikdw03svpr16lnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-"; sha256 = "1vzbalcchay4pxl9f1sxg0zclgc095f59dlj15pj0bqq61sbl9jf"; name = "bbdb-"; }; @@ -2147,7 +2156,7 @@ sha256 = "0fg72qnb40djyciy4gzj359lqlcbbrq0indbkzd0dj09zipkx0df"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb-vcard"; sha256 = "1kn98b7mh9a28933r4yl8qfl9p92rpix4vkp71sar9cka0m71ilj"; name = "bbdb-vcard"; }; @@ -2168,7 +2177,7 @@ sha256 = "1zkh7dcas80wwjvigl27wj8sp4b5z6lh3qj7zkziinwamwnxbdbs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bbdb2erc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bbdb2erc"; sha256 = "0k1f6mq9xd3568vg01dqqvcdbdshbdsi4ivkjyxis6dqfnqhlfdd"; name = "bbdb2erc"; }; @@ -2189,7 +2198,7 @@ sha256 = "01d10algmi9a4xd7mzf7n3zxfs2qf5as66wx17mff5cd8dahxj1q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beeminder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beeminder"; sha256 = "1cb8xmgsv23b464hpchm9f9i64p3fyf7aillrwk1aa2l1008kyww"; name = "beeminder"; }; @@ -2210,7 +2219,7 @@ sha256 = "1agrci37bni1vfkxg171l53fvsnjdryhf05v54wj07jngnwf3cw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/beginend"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/beginend"; sha256 = "1y81kr9q0zrsr3c3s14rm6l86y5wf1a0kia6d98112fy4fwdm7kq"; name = "beginend"; }; @@ -2231,7 +2240,7 @@ sha256 = "1rxznx2l0cdpiz8mad8s6q17m1fngpgb1cki7ch6yh18r3qz8ysr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/better-defaults"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/better-defaults"; sha256 = "13bqcmx2gagm2ykg921ik3awp8zvw5d4lb69rr6gkpjlqp7nq2cm"; name = "better-defaults"; }; @@ -2252,7 +2261,7 @@ sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio"; sha256 = "0ym7xvcfd7hh3qdpfb8zpa7w8s4lpg0vngh9d0ns3s3lnhz4mi0g"; name = "biblio"; }; @@ -2273,7 +2282,7 @@ sha256 = "0skg8wcgdfzd59ay4fbbbdd258cm8q7v321iml46bdipzk0r5lnw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/biblio-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/biblio-core"; sha256 = "0zpfamrb2gka41h834a05hxdbw4h55777kh6rhjikjfmy765nl97"; name = "biblio-core"; }; @@ -2294,7 +2303,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-key"; sha256 = "1qw2c27016d3yfg0w10is1v72y2jvzhq07ca4h6v17yi94ahj5xm"; name = "bind-key"; }; @@ -2315,7 +2324,7 @@ sha256 = "047qzylycx3r06dd0q9q9f37pvfigmlv59gi3wqvlg6k3gcmdvy0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bind-map"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bind-map"; sha256 = "1jzkp010b4vs1bdhccf5igmymfxab4vxs1pccpk9n5n5a4xaa358"; name = "bind-map"; }; @@ -2336,7 +2345,7 @@ sha256 = "0pmpg54faq0l886f2cmnmwm28d2yfg8adk7gp7623gx0ifggn332"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bing-dict"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bing-dict"; sha256 = "0s5pd08rcnvmgi1hw17xbzvswlv0yni6h2h2gccrjmf6izi8whh1"; name = "bing-dict"; }; @@ -2357,7 +2366,7 @@ sha256 = "1r3f5d67x257g8kvdbdsl4w3y1dvc1d6s9x8bygbkvyahfi5m5hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/birds-of-paradise-plus-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/birds-of-paradise-plus-theme"; sha256 = "0vdv2siy30kf1qhzrc39sygjk17lwm3ix58pcs3shwkg1y5amj3m"; name = "birds-of-paradise-plus-theme"; }; @@ -2378,7 +2387,7 @@ sha256 = "0414kdwgvmz0bmbaaz7zxf83rdjzmzcvvk5b332c679hk0b9kxg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bog"; sha256 = "1ci8xxca7dclmi5v37y5k45qlmzs6a9hi6m7czgiwxii902w5pkl"; name = "bog"; }; @@ -2399,7 +2408,7 @@ sha256 = "1q3ws2vn062dh7ci6jn2k2bcn7szh3ap64sgwkzdd6f1pas37fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bongo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bongo"; sha256 = "07i9gw067r2igp6s2g2iakm1ybvw04q6zznna2cfdf08nax64ghv"; name = "bongo"; }; @@ -2420,7 +2429,7 @@ sha256 = "1apxgj14hgfpz6hjp3384yjf2zrkv4pcncf2zklijs668igvaskq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boon"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boon"; sha256 = "0gryw7x97jd46jgrm93cjagj4p7w93cjc36i2ps9ajf0d8m4gajb"; name = "boon"; }; @@ -2441,7 +2450,7 @@ sha256 = "0235l4f1cxj7nysfnay4fz52mg0c13pzqxbhw65vdpfzz1gl1p73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/boxquote"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/boxquote"; sha256 = "0s6cxb8y1y8w9vxxhj1izs8d0gzk4z2zm0cm9gkw1h7k2kyggx6s"; name = "boxquote"; }; @@ -2462,7 +2471,7 @@ sha256 = "0y9m6cv70pzcm0v2v8nwmyh1xx40831chx72m85h5ic5db03gy7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-kill-ring"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-kill-ring"; sha256 = "1d97ap0vrg5ymp96z7y6si98fspxzy02jh1i4clvw5lggjfibhq4"; name = "browse-kill-ring"; }; @@ -2483,7 +2492,7 @@ sha256 = "08qz9l0gb7fvknzkp67srhldzkk8cylnbn0qwkflxgcs6ndfk95y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/browse-url-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/browse-url-dwim"; sha256 = "13bv2ka5pp9k4kwrxfqfawwxzsqlakvpi9a32gxgx7qfi0dcb1rf"; name = "browse-url-dwim"; }; @@ -2504,7 +2513,7 @@ sha256 = "0s43cvkr1za5sd2cvl55ig34wbp8xyjf85snmf67ps04swyyk92q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-flip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-flip"; sha256 = "0ka9ynj528yp1p31hbhm89627v6dpwspybly806n92vxavxrn098"; name = "buffer-flip"; }; @@ -2525,7 +2534,7 @@ sha256 = "0xdks4jfqyhkh34y48iq3gz8swp0f526kwnaai5mhgvazvs4za8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-move"; sha256 = "0wysywff2bggrha7lpl83c8x6ln7zgdj9gsqmjva6gramqb260fg"; name = "buffer-move"; }; @@ -2546,7 +2555,7 @@ sha256 = "0rp9hiysy13c4in7b420r7yjza2knlmvphj7l01xbxphbilplqk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buffer-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buffer-utils"; sha256 = "0cfipdn4fc4fvz513mwiaihvbdi05mza3z5z1379wlljw6r539z2"; name = "buffer-utils"; }; @@ -2567,7 +2576,7 @@ sha256 = "0x9q4amsmawi8jqj9xxg81khvb3gyyf9hjvb0w6vhrgjwpxiq8sy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bufshow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bufshow"; sha256 = "027cd0jzb8yxm66q1bhyi75f2m9f2pq3aswgav1d18na3ybwg65h"; name = "bufshow"; }; @@ -2588,7 +2597,7 @@ sha256 = "07jzg58a3jxs4mmsgb35f5f8awazlvzak9wrhif6xb60jq1wrp0v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bug-reference-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bug-reference-github"; sha256 = "18yzxwanbrxsab6ba75z1196x0m6dapdhbvy6df5b5x5viz99cf6"; name = "bug-reference-github"; }; @@ -2609,7 +2618,7 @@ sha256 = "18d74nwcpk1i8adxzfwz1lgqqcxsc4wkrb490v64pph79dxsi80h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bundler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bundler"; sha256 = "0i5ybc6i8ackxpaa75kwrg44zdq3jkvy48c42vaaafpddjwjnsy4"; name = "bundler"; }; @@ -2630,7 +2639,7 @@ sha256 = "03hab3iw2jjckal20zwsw7cm38nf7pan0m96d8ab4i75phy6liyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/bury-successful-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/bury-successful-compilation"; sha256 = "1gkq4r1573m6m57fp7x69k7kcpqchpcqfcz3792v0wxr22zhkwr3"; name = "bury-successful-compilation"; }; @@ -2651,7 +2660,7 @@ sha256 = "1pii9dw4skq7nr4na6qxqasl36av8cwjp71bf1fgppqpcd9z8skj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/butler"; sha256 = "1jv74l9jy55qpwf5np9nlj6a1wqsm3xirm7wm89d1h2mbsfcr0mq"; name = "butler"; }; @@ -2672,7 +2681,7 @@ sha256 = "0wkivh8x75gfsks6hy1ps9mlk101hrwsk8hqxx7qhs7f5iv0a082"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/buttercup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/buttercup"; sha256 = "1grrrdk5pl9l1jvnwzl8g0102gipvxb5qn6k2nmv28jpl57v8dkb"; name = "buttercup"; }; @@ -2693,7 +2702,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/button-lock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/button-lock"; sha256 = "1arrdmb3nm570hgs18y9sz3z9v0wlkr3vwa2zgfnc15lmf0y34mp"; name = "button-lock"; }; @@ -2714,7 +2723,7 @@ sha256 = "1k2hmc87ifww95k3m8ksiswkk2z0y8grssba7381g8dnlp6jgprx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cacoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cacoo"; sha256 = "0kri4vi6dpsf0zk24psm16f3aa27cq5b54ga7zygmr02csq24a6z"; name = "cacoo"; }; @@ -2735,7 +2744,7 @@ sha256 = "0bvrwzjx93qyx97qqw0imvnkkx4w91yk99rnhcmk029zj1fy0kzg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake"; sha256 = "06qlqrazz2jr08g44q73hx9vpp6xnjvkpd6ky108g0xc5p9q2hcr"; name = "cake"; }; @@ -2756,7 +2765,7 @@ sha256 = "1w7yq35gzzwyf480d8gc5r6jbnawg09l6663q068ir6zr9pp4far"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake-inflector"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake-inflector"; sha256 = "04mrqcm1igb638skaq2b3nr5yzxnck2vwhln61rnh7lkfxq7wbwf"; name = "cake-inflector"; }; @@ -2777,7 +2786,7 @@ sha256 = "15w21r0gqblbn9wlvb4wlm3706wf01r38mp465snjzi839f6sazb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cake2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cake2"; sha256 = "03q8vqqjlhahgnyy976c46x52splwdjpmb9ngrj5c2z7d8n9145x"; name = "cake2"; }; @@ -2798,7 +2807,7 @@ sha256 = "1rv6slk3a7ca2q16isjlkmgxbxmbqx4lx2ip7z33fvnq10r5h60n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/calfw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/calfw"; sha256 = "1lyb0jzpx19mx50d8xjv9sx201518vkvskxbglykaqpjm9ik2ai8"; name = "calfw"; }; @@ -2819,7 +2828,7 @@ sha256 = "0v927m3l5cf0j0rs0nfk5whwqmmxs941d8qalxi19j1ihspjz8d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/camcorder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/camcorder"; sha256 = "1kbnpz3kn8ycpy8nlp8bsnnd1k1h7m02h7w5f7raw97sk4cnpvbi"; name = "camcorder"; }; @@ -2840,7 +2849,7 @@ sha256 = "0xgnq21fb37y05535ipy0z584pnaglxy5bfqzdppyzsy7lpbb4k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cargo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cargo"; sha256 = "06zq657cxfk5l4867qqsvhskcqc9wswyl030wj27a43idj8n41jx"; name = "cargo"; }; @@ -2861,7 +2870,7 @@ sha256 = "0mg49rpz362ipn5qzqhyfs3d6fpb51rfa73kna3gxdw0wxq2sa7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caseformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caseformat"; sha256 = "1qwyr74jbx4jpfcw8sccg47q1vdg094rr06m111gsz2yaj9m0gfk"; name = "caseformat"; }; @@ -2882,7 +2891,7 @@ sha256 = "1hvm6r6a8rgjwnn2mcamwqrmhz424vlr4mbvbri3wmn0ikbk510l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask"; sha256 = "11nr6my3vlb1xiyai7qwii3nszda2mnkhkjlbh3d0699h0yw7dk5"; name = "cask"; }; @@ -2903,7 +2912,7 @@ sha256 = "09y4cr32i2cw06lnq698lajxmqyzq2ah426f4dm176xfbrim89d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-mode"; sha256 = "0fs9zyihipr3klnh3w22h43qz0wnxplm62x4kx7pm1chq9bc9kz6"; name = "cask-mode"; }; @@ -2924,7 +2933,7 @@ sha256 = "0padb1zfjkmx9kbqnqh744qvpd3ln0khwxifxld9cpcpdp5k04vc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cask-package-toolset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cask-package-toolset"; sha256 = "13ix093c0a58rjqj7zfp3914xj3hvj276gb2d8zhvrx9vvs1345g"; name = "cask-package-toolset"; }; @@ -2945,7 +2954,7 @@ sha256 = "1j1lw5zifp7q1ykm6si0nzxfp7n3z2lzla2njkkxmc2s6m7w4x1a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/caskxy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/caskxy"; sha256 = "0x4s3c8m75zxsvqpgfc5xwll0489zzdnngmnq048z9gkgcd7pd2s"; name = "caskxy"; }; @@ -2966,7 +2975,7 @@ sha256 = "125d5i7ycdn2hgffc1l3jqcfzvk70m1ciywj4h53qakkl15r9m38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cbm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cbm"; sha256 = "02ch0gdw610c8dfxxjxs7ijsc9lzbhklj7hqgwfwksnyc36zcjmn"; name = "cbm"; }; @@ -2987,7 +2996,7 @@ sha256 = "1jj9vmhc4s3ych08bjm1c2xwi81z1p20rj7bvxrgvb5aga2ghi9d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cdlatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cdlatex"; sha256 = "1jsfmzl13fykbg7l4wv9si7z11ai5lzvkndzbxh9cyqlvznq0m64"; name = "cdlatex"; }; @@ -3008,7 +3017,7 @@ sha256 = "07h5g905i1jglsryl0dnqxz8yya5kkyjjggzbk4nl3rcj41lyas7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/celery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/celery"; sha256 = "0m3hmvp6xz2m7z1kbb0ii0j3c95zi19652gfixq5a5x23kz8y59h"; name = "celery"; }; @@ -3029,7 +3038,7 @@ sha256 = "08hqgsjvs62l1cfzshbpj80xd8365qmx2b5r5jq20d5cj68s36wl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cerbere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cerbere"; sha256 = "1g3svmh5dlh5mvyag3hmiy90dfkk6f7ppd9qpwckxqyll9vl7r06"; name = "cerbere"; }; @@ -3050,7 +3059,7 @@ sha256 = "1pkbg1zlcfbzsxl0yhz1g9cn77lgw5p9g8xfvdm4ilsia9zy7d29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cfengine-code-style"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cfengine-code-style"; sha256 = "1ny8xvdnz740qmw9m81xnwd0gh0a516arpvl3nfimglaai5bfc9a"; name = "cfengine-code-style"; }; @@ -3071,7 +3080,7 @@ sha256 = "0n93qz5hzsnrs6c3y5yighfpdpkkmabxyi5i755hfcs5007v199v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chapel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chapel-mode"; sha256 = "0hmnsv8xf85fc4jqkaqz5j3sf56hgib4jp530vvyc2dl2sps6vzz"; name = "chapel-mode"; }; @@ -3092,7 +3101,7 @@ sha256 = "0vb03k10i8vwy5wv65xl15kcsh9zz4y2xhpgndih87ssckdnhhlw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/char-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/char-menu"; sha256 = "11jkwghrmmvpv7piznkpa0wilwjdsps9rix3950pfabhlllw268l"; name = "char-menu"; }; @@ -3113,7 +3122,7 @@ sha256 = "0crnd64cnsnaj5mcy55q0sc1rnamxa1xbpwpmirhyhxz780klww6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/charmap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/charmap"; sha256 = "1j7762d2i17ysn9ys8j7wfv989avmax8iylml2hc26mwbpyfpm84"; name = "charmap"; }; @@ -3134,7 +3143,7 @@ sha256 = "09ypxhfad3v1pz0xhw4xgxvfj7ad2kb3ff9zy1mnw7fzsa7gw6nj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/checkbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/checkbox"; sha256 = "17gw6w1m6bs3sfx8nqa8nzdq26m8w85a0fca5qw3bmd18bcmknqa"; name = "checkbox"; }; @@ -3155,7 +3164,7 @@ sha256 = "1jsy43avingxxccs0zw2qm5ysx8g76xhhh1mnyypxskl9m60qb4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/chinese-word-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/chinese-word-at-point"; sha256 = "0pjs4ckncv84qrdj0pyibrbiy86f1gmjla9n2cgh10xbc7j9y0c4"; name = "chinese-word-at-point"; }; @@ -3176,7 +3185,7 @@ sha256 = "0pbgfm9hkryanb4fly74w417h6bw9mnad5k5raj9ypiwgcz2r0n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider"; sha256 = "1a6hb728a3ir18c2dn9zfd3jn79fi5xjn5gqr7ljy6qb063xd4qx"; name = "cider"; }; @@ -3197,7 +3206,7 @@ sha256 = "1rkd76561h93si4lpisz3qnaj48dx8x01nd59a3lgpqsbbibnccf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cider-eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cider-eval-sexp-fu"; sha256 = "1n4sgv042qd9560pllabysx0c5snly6i22bk126y8f8rn0zj58iq"; name = "cider-eval-sexp-fu"; }; @@ -3218,7 +3227,7 @@ sha256 = "1w0ya0446rqsg1j59fd1mp4wavv2f3h1k3mw9svm5glymdirw4d1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cil-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cil-mode"; sha256 = "1h18r086bqspyn5n252yzw8x2zgyaqzdd8pbcf5gqlh1w8kapq4y"; name = "cil-mode"; }; @@ -3231,15 +3240,15 @@ circe = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "circe"; - version = "2.2"; + version = "2.3"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "13a33ea7b3cc579cbf67db2109802df3366e84d1"; - sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; + rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918"; + sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/circe"; sha256 = "1f54d8490gfx0r0cdvgmcjdxqpni43msy0k2mgqd1qz88a4b5l07"; name = "circe"; }; @@ -3260,7 +3269,7 @@ sha256 = "108s96viral3s62a77jfgvjam08hdk97frfmxjg3xpp2ifccjs7h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-format"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-format"; sha256 = "1259ykj6z6m6gaqhkmj5f3q9vyk7idpvlvlma5likpknxj5f444v"; name = "cl-format"; }; @@ -3281,7 +3290,7 @@ sha256 = "12vgi5dicx3lxzngjcg9g3nflrhfy9wdw6ldm72zarp1h96jy5cw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cl-lib-highlight"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cl-lib-highlight"; sha256 = "13qdrvpxq928p27b1xdcbsscyhqk042rwfa17037gp9h02fd42j8"; name = "cl-lib-highlight"; }; @@ -3302,7 +3311,7 @@ sha256 = "0w34ixzk8vs2nv5xr7l1b3k0crl1lqvbq6gs5r4b8rhsx9b6c1mb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/click-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/click-mode"; sha256 = "1p5dz4a74w5zxdlw17h5z9dglapia4p29880liw3bif2c7dzkg0r"; name = "click-mode"; }; @@ -3323,7 +3332,7 @@ sha256 = "0h856l6rslawf3vg37xhsaw5w56r9qlwzbqapg751qg0v7wf0860"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cliphist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cliphist"; sha256 = "0mg6pznijba3kvp3r57pi54v6mgih2vfwj2kg6qmcy1abrc0xq29"; name = "cliphist"; }; @@ -3344,7 +3353,7 @@ sha256 = "0i6sj5rs4b9v8aqq9l6wr15080qb101hdxspx6innhijhajgmssd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clips-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clips-mode"; sha256 = "083wrhjn04rg8vr6j0ziffdbdhbfn63wzl4q7yzpkf8qckh6mxhf"; name = "clips-mode"; }; @@ -3365,7 +3374,7 @@ sha256 = "0qjj40h8ryrs02rj73hkyhcjxdz926qxgvnjidav3sw2ggn8vdl3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clj-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clj-refactor"; sha256 = "1qvds6dylazvrzz1ji2z2ldw72pa2nxqacb9d04gasmkqc32ipvz"; name = "clj-refactor"; }; @@ -3397,7 +3406,7 @@ sha256 = "18gv8vmmpiyq16cq4nr9nk2bmc5y2rsv21wjl4ji29rc7566shha"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cljr-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cljr-helm"; sha256 = "108a1xgnc6qy088vs41j3npwk25a5vny0xx4r3yh76jsmpdpcgnc"; name = "cljr-helm"; }; @@ -3418,7 +3427,7 @@ sha256 = "0hz6a7gj0zfsdaifkhwf965c96rkjc3kivvqlf50zllsw0ysbnn0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clocker"; sha256 = "0cckrk40k1labiqjh7ghzpx5zi136xz70j3ipp117x52qf24k10k"; name = "clocker"; }; @@ -3439,7 +3448,7 @@ sha256 = "1x1kfycf3023z0r3v7xqci59k8jv5wn2vqc9y0nx7k5qgifmswrx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-cheatsheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-cheatsheet"; sha256 = "05sw3bkdcadslpsk64ds0ciavmdgqk7fr5q3z505vvafmszfnaqv"; name = "clojure-cheatsheet"; }; @@ -3460,7 +3469,7 @@ sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode"; sha256 = "11n0rjhs1mmlzdqy711g432an5ybdka5xj0ipsk8dx6xcyab70np"; name = "clojure-mode"; }; @@ -3481,7 +3490,7 @@ sha256 = "1hz0dna07yw04swzr42fbv1384mq88j5npcgxj9db0ghdbnibq7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-mode-extra-font-locking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-mode-extra-font-locking"; sha256 = "00nff9mkj61i76dj21x87vhz0bbkzgvkx1ypkxcv6yf3pfhq7r8n"; name = "clojure-mode-extra-font-locking"; }; @@ -3502,7 +3511,7 @@ sha256 = "0sw34yjp8934xd2n76lbwyvxkbyz5pxszj6gkflas8lfjvms9z7d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-quick-repls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-quick-repls"; sha256 = "10glzyd4y3918pwp048pc1y7y7fa34fkqckn1nbys841dbssmay0"; name = "clojure-quick-repls"; }; @@ -3523,7 +3532,7 @@ sha256 = "1p0w83m9j4a6va4g68a4gcfbdkp8nic0q8cm28l8nr7czd5s0yl6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/clojure-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/clojure-snippets"; sha256 = "15622mdd6b3fpwp22d32p78yap08pyscs2vc83sv1xz4338i0lij"; name = "clojure-snippets"; }; @@ -3544,7 +3553,7 @@ sha256 = "1p251vyh8fc6xzaf0v7yvf4wkrvcfjdb3qr88ll4xcb61gj3vi3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/closql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/closql"; sha256 = "0a8fqw8n03x9mygvzb95m8mmfqp3j8hynwafvryjsl0np0695b6l"; name = "closql"; }; @@ -3565,7 +3574,7 @@ sha256 = "1rwln3ms71fys3rdv3sx8w706aqn874im3kqcfrkxz86wiazm2d5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cm-mode"; sha256 = "1rgfpxbnp8wiq9j8aywm2n07rxzkhqljigwynrkyvrnsgxlq2a9x"; name = "cm-mode"; }; @@ -3586,7 +3595,7 @@ sha256 = "14z5izpgby7lak6hzjwsph31awg5126hcjzld21ihknhlg09sw7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-ide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-ide"; sha256 = "0xvy7l80zw67jgvk1rkhwzjvsqjqckmd8zj6s67rgbm56z6ypmcg"; name = "cmake-ide"; }; @@ -3599,15 +3608,15 @@ cmake-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cmake-mode"; - version = "3.5.2"; + version = "3.6.0pre1"; src = fetchFromGitHub { owner = "Kitware"; repo = "CMake"; - rev = "80bcbe2d85232d748e31fb4de1016af60788505d"; - sha256 = "10adf81lig0mbm6hdi031p2d7x3yj4fq8vb4pavy6v2xgpj1j5jx"; + rev = "9703b32c1c75b0b343bb5043030a08a1b1345a20"; + sha256 = "17s0ggv8cv7yslpdvfq3rvrj4r7zphv9ldqab9gak0c5c8n73ilp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-mode"; sha256 = "0zbn8syb5lw5xp1qcy3qcl75zfiyik30xvqyl38gdqddm9h7qmz7"; name = "cmake-mode"; }; @@ -3628,7 +3637,7 @@ sha256 = "10xlny2agxjknvnjdnw41cyb3d361yy0wvpc8l1d0xwnmmfh3bxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cmake-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cmake-project"; sha256 = "13n6j9ljvzjzkknbm9zkhxljcn12avl39gxqq95hah44dr11rns3"; name = "cmake-project"; }; @@ -3649,7 +3658,7 @@ sha256 = "14jcxrs3b02pbppvdsabr7c74i3c6d1lmd6l1p9dj8gv413pghsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/codic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/codic"; sha256 = "0fq2qfqhkd6injgl66vcpd61j67shl9xj260aj6cgb2nriq0jxgn"; name = "codic"; }; @@ -3670,7 +3679,7 @@ sha256 = "0yhmg5j051mviqp5laz7y1zjs1w9ykbbxqm7vrgf2py0hpd1kcrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coffee-mode"; sha256 = "1px50hs0x30psa5ljndpcc22c0qwcaxslpjf28cfgxinawnp74g1"; name = "coffee-mode"; }; @@ -3691,7 +3700,7 @@ sha256 = "1zwgyp65jivds9zvbp5k5q3gazffh3w0mvs739ddq93lkf165rwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-identifiers-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-identifiers-mode"; sha256 = "1hxp8lzn7kfckn5ngxic6qiz3nbynilqlxhlq9k1n1llfg216gfq"; name = "color-identifiers-mode"; }; @@ -3712,7 +3721,7 @@ sha256 = "0apvqrva3f7valjrxpslln8460kpr82z4zazj3lg3j82k102zla9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-modern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-modern"; sha256 = "0f662ham430fgxpqw96zcl1whcm28cv710g6wvg4fma60sblaxcm"; name = "color-theme-modern"; }; @@ -3733,7 +3742,7 @@ sha256 = "13jmg05skv409z8pg5m9rzkajj9knyln0ff8a3i1pbpyrnpngmmc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-solarized"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-solarized"; sha256 = "0xg79hgb893f1nqx6q4q6hp4w6rvgp1aah1v2r3scg2jk057qxkf"; name = "color-theme-sanityinc-solarized"; }; @@ -3754,7 +3763,7 @@ sha256 = "0w99ypq048xldl1mrgc7qr4n2770dm48aknhp7q0176l43nvxnqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/color-theme-sanityinc-tomorrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/color-theme-sanityinc-tomorrow"; sha256 = "1k8iwjc7iidq5sxybs47rnswa6c5dwqfdzfw7w0by2h1id2z6nqd"; name = "color-theme-sanityinc-tomorrow"; }; @@ -3775,7 +3784,7 @@ sha256 = "18hzm7yzwlfjlbkx46rgdl31p9xyfqnxlvg8337h2bicpks7kjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/colorsarenice-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/colorsarenice-theme"; sha256 = "09zlglldjbjr97clwyzyz7c0k8hswclnk2zbkm03nnn9n9yyg2qi"; name = "colorsarenice-theme"; }; @@ -3796,7 +3805,7 @@ sha256 = "1j6hhyzww7wfwk6bllbb5mk4hw4qs8hsgfbfdifsam9c6i4spm45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commander"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commander"; sha256 = "17y0hg6a90hflgwn24ww23qmvc1alzivpipca8zvpf0nih4fl393"; name = "commander"; }; @@ -3817,7 +3826,7 @@ sha256 = "0kzlv2my0cc7d3nki2rlm32nmb2nyjb38inmvlf13z0m2kybg2ps"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/comment-dwim-2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/comment-dwim-2"; sha256 = "1w9w2a72ygsj5w47vjqcljajmmbz0mi8dhz5gjnpwxjwsr6fn6lj"; name = "comment-dwim-2"; }; @@ -3838,7 +3847,7 @@ sha256 = "1jwd3whag39qhzhbsfivzdlcr6vj37dv5ychkhmilw8v6dfdnpdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/commenter"; sha256 = "01bm8jbj6xw23nls4fps6zwjkgvcsjhmn3l3ncqd764kwhxdx8q3"; name = "commenter"; }; @@ -3859,7 +3868,7 @@ sha256 = "1cc9ak9193m92g6l4mrfxbkkmvljl3c51d0xzdidwww978q3x6ad"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/common-lisp-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/common-lisp-snippets"; sha256 = "0ig8cz00cbfx0jckqk1xhsvm18ivl2mjvcn65s941nblsywfvxjl"; name = "common-lisp-snippets"; }; @@ -3880,7 +3889,7 @@ sha256 = "08rrjfp2amgya1hswjz3vd5ja6lg2nfmm7454p0h1naz00hlmmw0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company"; sha256 = "0v4x038ly970lkzb0n8fbqssfqwx1p46xldr7nss32jiqvavr4m4"; name = "company"; }; @@ -3901,7 +3910,7 @@ sha256 = "1i6788qfinh47c5crgr57ykgbp6bvk1afcl00c8gywxsf8srvnvy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-anaconda"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-anaconda"; sha256 = "1s7y47ghy7q35qpfqavh4p9wr91i6r579mdbpvv6h5by856yn4gl"; name = "company-anaconda"; }; @@ -3922,7 +3931,7 @@ sha256 = "1dds3fynbd6yb0874aw6g4qk5zmq3pgl3jmcp38md027qalgqmym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ansible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ansible"; sha256 = "084l9dr2hvm00952y4m3jhchzxjhcd61sfn5ywj9b9a1d4sr110d"; name = "company-ansible"; }; @@ -3943,7 +3952,7 @@ sha256 = "1pja44g15d11kl47abzykrp28j782nkbmb0db0ilpc96xf1fjlsw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-cabal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-cabal"; sha256 = "0pbjidj88c9qri6xw8023yqwnczad5ig224cbsz6vsmdla2nlxra"; name = "company-cabal"; }; @@ -3964,7 +3973,7 @@ sha256 = "0s6gzdmxlsl1l0vh52xspxys1wmsq063p6nva6qisg1r622gjzjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-coq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-coq"; sha256 = "1iagm07ckf60kg4i8m4n0gfmv0brqc4dcn7lkcz229r3f4kyqksa"; name = "company-coq"; }; @@ -3974,6 +3983,27 @@ license = lib.licenses.free; }; }) {}; + company-dict = callPackage ({ company, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, parent-mode }: + melpaBuild { + pname = "company-dict"; + version = "1.2.7"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "emacs-company-dict"; + rev = "d51b801fe319e7984cbc202c4745214d84039942"; + sha256 = "16ai8ljp0i75kby1knj7ldysd8s6kd6drmlh9ygyddxbi2i35x61"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-dict"; + sha256 = "1377b40f1j4rmw7lnhy1zsm6r234ds5zsn02v1ajm3bzrpkkmin0"; + name = "company-dict"; + }; + packageRequires = [ company emacs parent-mode ]; + meta = { + homepage = "https://melpa.org/#/company-dict"; + license = lib.licenses.free; + }; + }) {}; company-emoji = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-emoji"; @@ -3985,7 +4015,7 @@ sha256 = "1f8sjjms9kxni153pia6b45p2ih2mhm2r07d0j3fmxmz3q2jdldd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-emoji"; sha256 = "1mflqqw9gnfcqjb6g8ivdfl7s4mdyjg7j0457hamgyvgvpxsh8x3"; name = "company-emoji"; }; @@ -4006,7 +4036,7 @@ sha256 = "0y9i0q37xjbnlnlxq7xjvnpn6ykzbd55g6nbw10z1wg0m2v7f96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ghc"; sha256 = "07adykza4dqs64bk8vjmgryr54khxmcy28hms5z8i1qpsk9vmvnn"; name = "company-ghc"; }; @@ -4027,7 +4057,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-go"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-go"; sha256 = "1ncy5wlg3ywr17zrxb1d1bap4gdvwr35w9a8b0crz5h3l3y4cp29"; name = "company-go"; }; @@ -4048,7 +4078,7 @@ sha256 = "17zi0xx8p2diwy1wgrhl6j8p57alwz24rjpz4apyyrqjk09ippq4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-irony"; sha256 = "15adamk1b9y1i6k06i5ahf1wn70cgwlhgk0x6fk8pl5izg05z1km"; name = "company-irony"; }; @@ -4069,7 +4099,7 @@ sha256 = "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-jedi"; sha256 = "1krrgrjq967c3j02y0i345yx6w4crisnj1k3bhih6j849fvy3fvj"; name = "company-jedi"; }; @@ -4090,7 +4120,7 @@ sha256 = "0k6bx4i3d2x6kmkzififc8r7vid74bxsvgxp19z7bv1fh6m1f3aa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-math"; sha256 = "0chig8k8l65bnd0a6734fiy0ikl20k9v2wlndh3ckz5a8h963g87"; name = "company-math"; }; @@ -4103,15 +4133,15 @@ company-ngram = callPackage ({ cl-lib ? null, company, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "company-ngram"; - version = "0.6.5"; + version = "0.6.6"; src = fetchFromGitHub { owner = "kshramt"; repo = "company-ngram"; - rev = "6c9315933984e7741b9d044f06a8cecc5ddaf788"; - sha256 = "0yxnylpbjrwmqx6px0q3pff4dh00fmfzb09gp4xvn9w9hrxdsx7g"; + rev = "15418f2551e1449ba3c1e74d7bb5260688961028"; + sha256 = "172aah6vnwsij6h8c668l0jrncmd9wszbf55bv3snnw80wnqikmr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ngram"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ngram"; sha256 = "1y9k9s8c248m91xld4f5l75j4swml333rpwq590bsx7mrsq131xx"; name = "company-ngram"; }; @@ -4132,7 +4162,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-nixos-options"; sha256 = "1yrqqdadmf7qfxpqp8wwb325zjnwwjmn2hhnl7i3j0ckg6hqyqf0"; name = "company-nixos-options"; }; @@ -4153,7 +4183,7 @@ sha256 = "1b2v84ss5k43nnbsnvabgvb19ardsacbs1prn2h9i1k2d5mb8icw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-quickhelp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-quickhelp"; sha256 = "042bwv0wd4hksbm528zb7pbllzk83p8qjq5f8z46p84c8mmxfp9g"; name = "company-quickhelp"; }; @@ -4174,7 +4204,7 @@ sha256 = "0i1fh5lvqwlgn3g3fzh0xacxyljx6gkryipn133vfkv4jbns51n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-restclient"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-restclient"; sha256 = "1md0n4k4wmbh9rmbwqh3kg2fj0c34rzqfd56jsq8lcdg14k0kdcb"; name = "company-restclient"; }; @@ -4201,7 +4231,7 @@ sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-sourcekit"; sha256 = "0hr5j1ginf43h4qf3fvsh3z53z0c7w5a9lhrvdwmlzj396qhqmzs"; name = "company-sourcekit"; }; @@ -4222,7 +4252,7 @@ sha256 = "11cinjsyf24d4a682ikniprxd1vkwn6mynsp5dzab6yzq09np78i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-tern"; sha256 = "17pw4jx3f1hymj6sc0ri18jz9ngggj4a41kxx14fnmmm8adqn6wh"; name = "company-tern"; }; @@ -4243,7 +4273,7 @@ sha256 = "0b0k75rg43h48dbcqiid947nspqiqxkiqcmvph9aqpxlfr67bz5r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-web"; sha256 = "0dj0m6wcc8cyvblp9b5b3am95gc18j9y4va44hvljxv1h7l5hhvy"; name = "company-web"; }; @@ -4264,7 +4294,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/company-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/company-ycmd"; sha256 = "0fqmkb0q8ai605jzn2kwd585b2alwxbmnb3yqnn9fgkcvyc9f0pk"; name = "company-ycmd"; }; @@ -4285,7 +4315,7 @@ sha256 = "1mii790r6gaz0nidlaib50wj4vryfvw7ls6b4mg1nw5km7hplpgq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/composable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/composable"; sha256 = "1fs4pczjn9sv12sladf6zbkz0cmzxr0jaqkiwryydal1l5nqqxcy"; name = "composable"; }; @@ -4306,7 +4336,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/concurrent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/concurrent"; sha256 = "09wjw69bqrr3424h0mpb2kr5ixh96syjjsqrcyd7z2lsas5ldpnf"; name = "concurrent"; }; @@ -4327,7 +4357,7 @@ sha256 = "0sz3qx1bn0lwjhka2l6wfl4b5486ji9dklgjs7fdlkg3dgpp1ahx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/conkeror-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/conkeror-minor-mode"; sha256 = "1ch108f20k7xbf79azsp31hh4wmw7iycsxddcszgxkbm7pj11933"; name = "conkeror-minor-mode"; }; @@ -4348,7 +4378,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/connection"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/connection"; sha256 = "1y68d2kay8p5vapailxhrc5dl7b8k8nkvp7pa54md3fsivwp1d0q"; name = "connection"; }; @@ -4369,7 +4399,7 @@ sha256 = "0s4b7dkndhnh8q3plvg2whjx8zd7ffz4hnbn3xh86xd3k7sch7av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/contextual"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/contextual"; sha256 = "0vribs0fa1xf5kwkmvzjwhiawni0p3v56c5l4dkz8d7wn2g6wfdx"; name = "contextual"; }; @@ -4390,7 +4420,7 @@ sha256 = "00055gzv032xxzqm1hffipljy8fzgsm58cbv8dzajh035jvdgpv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/corral"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/corral"; sha256 = "1drccqk4qzkgvkgkzlrrfd1dcgj8ziqriijrjihrzjgjsbpzv6da"; name = "corral"; }; @@ -4411,7 +4441,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/counsel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel"; sha256 = "0y8cb2q4mqvzan5n8ws5pjpm7bkjcghg5q19mzc3gqrq9vrvyzi6"; name = "counsel"; }; @@ -4421,6 +4451,27 @@ license = lib.licenses.free; }; }) {}; + counsel-dash = callPackage ({ counsel, dash, dash-functional, emacs, fetchFromGitHub, fetchurl, helm-dash, lib, melpaBuild }: + melpaBuild { + pname = "counsel-dash"; + version = "0.1.3"; + src = fetchFromGitHub { + owner = "nathankot"; + repo = "counsel-dash"; + rev = "a342340bbd8e50e4d1015e0b91d8ecd8f6cdf9f2"; + sha256 = "1ma67lc4y9y3byrz8v6635w8q2scp6f2cqagq09k723k5nnwisfj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/counsel-dash"; + sha256 = "0pzh8ww1p2jb859gdjr5ypya3rwhiyg3c79xhx8filxrqxgjv5fk"; + name = "counsel-dash"; + }; + packageRequires = [ counsel dash dash-functional emacs helm-dash ]; + meta = { + homepage = "https://melpa.org/#/counsel-dash"; + license = lib.licenses.free; + }; + }) {}; coverage = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, ov }: melpaBuild { pname = "coverage"; @@ -4432,7 +4483,7 @@ sha256 = "01545iy2gaxyd4i8gawgxqi9gbkrjk20djhvc59finnjrblzccn3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverage"; sha256 = "0ja7wsx2sj0h01sk1l3c0aidbs1ld4gj3kiwq6brs7r018sz45pm"; name = "coverage"; }; @@ -4453,7 +4504,7 @@ sha256 = "0ji8n4sv0zqmfn4g7ay927d8ya6wrvqdzvd5sc6vicma9gn27lvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/coverlay"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/coverlay"; sha256 = "0p5k9254r3i247h6ll6kjsgw3naiff5lgfkmb2wkc870lzggq0m4"; name = "coverlay"; }; @@ -4474,7 +4525,7 @@ sha256 = "1rk0bwdvfrp24z69flh7jg3c8vgvwk6vciixmmmldnrlwhpnbh6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cpputils-cmake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cpputils-cmake"; sha256 = "0fswmmmrjv897n51nidmn8gs8yp00595g35vwjafsq6rzfg58j60"; name = "cpputils-cmake"; }; @@ -4495,7 +4546,7 @@ sha256 = "169ai0xkh3988racnhaapxw0v1pbxvcaq470x1qacdzdpka4a7bs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/creds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/creds"; sha256 = "0n11xxaf93bbc9ih25wj09zzw4sj32wb99qig4zcy8bpkl5y3llk"; name = "creds"; }; @@ -4505,6 +4556,27 @@ license = lib.licenses.free; }; }) {}; + cricbuzz = callPackage ({ enlive, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "cricbuzz"; + version = "0.2.2"; + src = fetchFromGitHub { + owner = "lepisma"; + repo = "cricbuzz.el"; + rev = "6f80f90a8916216b4c98d13f3605f50b5f6e64af"; + sha256 = "12qs9z1cnwhmks7x7fhymg21hbpjwgbdfz20pz2jgrl48hm6mmk5"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cricbuzz"; + sha256 = "1ad2afyn3xny3rgb8yy6w87f33idlrmis1vx0b6s8ppafv9z74j0"; + name = "cricbuzz"; + }; + packageRequires = [ enlive ]; + meta = { + homepage = "https://melpa.org/#/cricbuzz"; + license = lib.licenses.free; + }; + }) {}; crm-custom = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "crm-custom"; @@ -4516,7 +4588,7 @@ sha256 = "1kl6blr4dlz40gfc845071nhfms4fm59284ja2177bhghy3wmw6r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crm-custom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crm-custom"; sha256 = "14w15skxr44p9ilhpswlgdbqfw8jghxi69l37yk4m449m7g9694c"; name = "crm-custom"; }; @@ -4526,22 +4598,22 @@ license = lib.licenses.free; }; }) {}; - crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + crux = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild, seq }: melpaBuild { pname = "crux"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "bbatsov"; repo = "crux"; - rev = "1e591c5a1ecfa99fcd67105a58b2e7d782abf969"; - sha256 = "13kkpilijr0q455srgn8yhzqikxask11z8d3rji7cc1yw7kf6y0i"; + rev = "5b3c8155a9e9fe6f189645d175976026a2dc7b8d"; + sha256 = "0809pb8626i6z1dics3i1cs30p4qd8bzqcgr20lx9k3yq2abq2k7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/crux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/crux"; sha256 = "10lim1sngqbdqqwyq6ksqjjqpkm97aj1jk550sgwj28338lnw73c"; name = "crux"; }; - packageRequires = []; + packageRequires = [ seq ]; meta = { homepage = "https://melpa.org/#/crux"; license = lib.licenses.free; @@ -4558,7 +4630,7 @@ sha256 = "00wgbcw09xn9xi52swi4wyi9dj9p9hyin7i431xi6zkhxysw4q7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cryptol-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cryptol-mode"; sha256 = "08iq69gqmps8cckybhj9065b8a2a49p0rpzgx883qxnypsmjfmf2"; name = "cryptol-mode"; }; @@ -4579,7 +4651,7 @@ sha256 = "0dqih7cy57sciqn5vz5fiwynpld96qldyl7jcgn9qpwnzb401ayx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/csharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/csharp-mode"; sha256 = "17j84qrprq492dsn103dji8mvh29mbdlqlpsszbgfdgnpvfr1rv0"; name = "csharp-mode"; }; @@ -4600,7 +4672,7 @@ sha256 = "13zq8kym1y6bzrpxbcdz32323a6azy5px4ridff6xh8bfprwlay3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctable"; sha256 = "040qmlgfvjc1f908n52m5ll2fizbrhjzbd0kgrsw37bvm3029rx1"; name = "ctable"; }; @@ -4619,7 +4691,7 @@ sha256 = "1xgrb4ivgz7gmingfafmclqqflxdvkarmfkqqv1zjk6yrjhlcvwf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags"; sha256 = "11fp8l99rj4fmi0vd3hkffgpfhk1l82ggglzb74jr3qfzv3dcn6y"; name = "ctags"; }; @@ -4640,7 +4712,7 @@ sha256 = "05vhryqcydvcfm18fwby344931kzzh47x4l5ixy95xkcjkzrj8c7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctags-update"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctags-update"; sha256 = "1k43l667mvr2y33nblachdlvdqvn256gysc1iwv5zgv7gj9i65qf"; name = "ctags-update"; }; @@ -4661,7 +4733,7 @@ sha256 = "1jlr2miwqsg06hk2clvsrw9fa98m2n76qfq8qv5svrb8dpil04wb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ctxmenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ctxmenu"; sha256 = "03g9px858mg19wapqszwav3599slljdyam8bvn1ri85fpa5ydvdp"; name = "ctxmenu"; }; @@ -4682,7 +4754,7 @@ sha256 = "1y685qfdkjyl7dwyvivlgc2lwp102vy6hvcb9zynw84c49f726sn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cuda-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cuda-mode"; sha256 = "0ip4vax93x72bjrh6prik6ddmrvszpsmgm0fxfz772rp24smc300"; name = "cuda-mode"; }; @@ -4703,7 +4775,7 @@ sha256 = "1yhizh8j745hv5ancpvijds9dasvsr2scwjscksp2x3krnd26ssp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyberpunk-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyberpunk-theme"; sha256 = "0l2bwb5afkkhrbh99v2gns1vil9s5911hbnlq5w35nmg1wvbmbc9"; name = "cyberpunk-theme"; }; @@ -4716,15 +4788,15 @@ cyphejor = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "cyphejor"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "cyphejor"; - rev = "1025d82a9abaca132f5855e72d56c0c2ccc0eef4"; - sha256 = "1vkwm1n0amf0y0jdyvqskp00b6aijqhd7wclzkzrq7glrvj2z1xw"; + rev = "9e1cdaaaf86f3acae074e40d96de008115d81ef9"; + sha256 = "04add8i0g4x5kzi1yd49i5viq9i2f5r5gzq33k05q6rimsp2ga02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cyphejor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cyphejor"; sha256 = "18l5km4xm5j3vv19k3fxs8i3rg4qnhrvx7b62vmyfcqmpiasrh6g"; name = "cyphejor"; }; @@ -4745,7 +4817,7 @@ sha256 = "11ddx5c535a76pnxqdfahchi839v59iwvpiyswigskyfhzxn5ic1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/cython-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/cython-mode"; sha256 = "0asai1f1pncrfxx296fn6ky09hj1qam5j0dpxxkzhy0a34xz0k2i"; name = "cython-mode"; }; @@ -4766,7 +4838,7 @@ sha256 = "0kbncsaxj93jd79sd6dkap29fz8z100wi1nk0njd568glm8q4k5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/d-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/d-mode"; sha256 = "060k9ndjx0n5vlpzfxlv5zxnizx72d7y9vk7gz7gdvpm6w2ha0a2"; name = "d-mode"; }; @@ -4776,19 +4848,19 @@ license = lib.licenses.free; }; }) {}; - darcula-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + darcula-theme = callPackage ({ fetchFromGitLab, fetchurl, lib, melpaBuild }: melpaBuild { pname = "darcula-theme"; version = "1.0"; - src = fetchFromGitHub { + src = fetchFromGitLab { owner = "fommil"; - repo = "darcula-theme-emacs"; + repo = "emacs-darcula-theme"; rev = "202a5affe59a5e1ac1d33a7e518d1df772bf2100"; sha256 = "1gdh4izwhyly6dyrmh7lfpd12gnb8hpnafj8br51ksijsssrf21f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darcula-theme"; - sha256 = "13d21gwzv66ibn0gs56ff3sn76sa2mkjvjmpd2ncxq3mcgxajnjg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darcula-theme"; + sha256 = "1n9mpkdyf5jpxc5azfs38ccp9p0b5ii87sz4c7z4khs94y0gxqh3"; name = "darcula-theme"; }; packageRequires = []; @@ -4808,7 +4880,7 @@ sha256 = "1p7ih9fmcxnnxkj2mz56xa403m828wyyqvliabf5amklzjlhb3z9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/darktooth-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/darktooth-theme"; sha256 = "1vss0mg1vz4wvsal1r0ya8lid2c18ig11ip5v9nc80b5slbixzvs"; name = "darktooth-theme"; }; @@ -4829,7 +4901,7 @@ sha256 = "1vkn95dyc0pppnflyqlrlx32g9zc7wdcgc9fgf1hgvqp313ydfcs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dart-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dart-mode"; sha256 = "0wxfh8v716dhrmx1klhpnsrlsj66llk8brmwryjg2h7c391sb5ff"; name = "dart-mode"; }; @@ -4850,7 +4922,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash"; sha256 = "0azm47900bk2frpjsgy108fr3p1jk4h9kmp4b5j5pibgsm26azgz"; name = "dash"; }; @@ -4871,7 +4943,7 @@ sha256 = "1njv5adcm96kdch0jb941l8pm51yfdx7mlz83y0pq6jlzjs9mwaa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dash-functional"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dash-functional"; sha256 = "0hx36hs12mf4nmskaaqrqpcgwrfjdqj6qcxn6bwb0s5m2jf9hs8p"; name = "dash-functional"; }; @@ -4892,7 +4964,7 @@ sha256 = "06aprbhhxb6bbzmf0r5yq2ry6x7708vp4d94ja3ir6zcwc96wn0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-at-point"; sha256 = "0r26df6px6q5jlxj29nhl3qbp6kzy9hs5vd72kpiirgn4wlmagp0"; name = "date-at-point"; }; @@ -4913,7 +4985,7 @@ sha256 = "1lmwnj2fnvijj9qp4rjggl7c4x91vnpb47rqaam6m2wmr5wbrx3w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/date-field"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/date-field"; sha256 = "0fmw13sa4ajs1xkrkdpcjpbp0jl9d81cgvwh93myg8yjjn7wbmvk"; name = "date-field"; }; @@ -4934,7 +5006,7 @@ sha256 = "1w8qzj8qrgkygprb3ibyx28j951lv7k1frbpdwz69cg23whi3s30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/datetime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/datetime"; sha256 = "0mnkckibymc5dswmzd1glggna2fspk06ld71m7aaz6j78nfrm850"; name = "datetime"; }; @@ -4955,7 +5027,7 @@ sha256 = "0wm24ndiyhrayg1gz456s0s1ddlpcvg4vp555g4zzl3zcpsy94bg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/decide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/decide"; sha256 = "1gjkays48lhrifi9jwja5n2dpxjbl7f9rmka1nsqg9vf7s59vhhc"; name = "decide"; }; @@ -4976,7 +5048,7 @@ sha256 = "0pba9s0h37sxyqh733vi6k5raa4cs7aradipf3826inw36jcw414"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dedicated"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dedicated"; sha256 = "1ka8n02r3nd2ksbid23g2qd6707c7xsjx7lbbdi6pcmwam5mglw9"; name = "dedicated"; }; @@ -4997,7 +5069,7 @@ sha256 = "031f8ls1q80j717cg6b4pjd37wk7vrl5hcycsn8ca7yssmqa8q81"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/default-text-scale"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/default-text-scale"; sha256 = "18r90ic38fnlsbg4gi3r962vban398x2bf3rqhrc6z4jk4aiv3mi"; name = "default-text-scale"; }; @@ -5018,7 +5090,7 @@ sha256 = "1br4yys803x3ng4vzhhvblhkqabs46lx8a3ajycqy555q20zqzrf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deferred"; sha256 = "0axbvxrdjgxk4d1bd9ar4r5nnacsi8r0d6649x7mnhqk12940mnr"; name = "deferred"; }; @@ -5039,7 +5111,7 @@ sha256 = "1lyqd9cgj7cb2lasf6ycw5j8wnsx2nrfm8ra4sg3dgcspm01a89g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/define-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/define-word"; sha256 = "035fdfwnxw0mir1dyvrimygx2gafcgnvlcsmwmry1rsfh39n5b9a"; name = "define-word"; }; @@ -5055,10 +5127,10 @@ src = fetchgit { url = "git://jblevins.org/git/deft.git"; rev = "4001a55cf5f79cdbfa00f1405e8a4645af4acd40"; - sha256 = "157c6ck6gb59i7dikbdnaq7cwlh3nnk0vqgil4v1294s2xbpp46n"; + sha256 = "1s71xk5c1hck7lh780lpa1q1c8qdpf2wdahl2406mgf06y1ifp7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/deft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/deft"; sha256 = "1c9kps0lw97nl567ynlzk4w719a86a18q697rcmrbrg5imdx4y5p"; name = "deft"; }; @@ -5079,7 +5151,7 @@ sha256 = "13jfhc9gavvb9dxmgi3k7ivp5iwh4yw4m11r2s8wpwn6p056bmfl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/demangle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/demangle-mode"; sha256 = "0ky0bb6rc99vrdli4lhs656qjndnla9b7inc2ji9l4n1zki5qxzk"; name = "demangle-mode"; }; @@ -5100,7 +5172,7 @@ sha256 = "13fasbhdjwc4jh3cy25gm5sbbg56hq8la271098qpx6dhqm2wycq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/describe-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/describe-number"; sha256 = "0gvriailni2ppz69g0bwnb1ik1ghjkj341k45vllz30j0frp9iji"; name = "describe-number"; }; @@ -5121,7 +5193,7 @@ sha256 = "184zi5fv7ranghfx1hpx7j2wnk6kim8ysliyw2c5c1294sxxq3f3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop+"; sha256 = "0w7i6k4814hwb19l7ly9yq59674xiw57ylrwxq7yprwx52sgs2r8"; name = "desktop-plus"; }; @@ -5142,7 +5214,7 @@ sha256 = "11qvhbz7149vqh61fgqqn4inw0ic6ib9lz2xgr9m54pdw9a901mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/desktop-registry"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/desktop-registry"; sha256 = "1sfj0w6hlrx37js63fn1v5xc9ngmahv07g42z68717md6w3c8g0v"; name = "desktop-registry"; }; @@ -5163,7 +5235,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dictionary"; sha256 = "0zr9sm5rmr0frxdr0za72wiffip9391fn9dm5y5x0aj1z4c1n28w"; name = "dictionary"; }; @@ -5184,7 +5256,7 @@ sha256 = "0sjwpvzd4x9c1b9iv66b33llvp96ryyzyp8pn1rnhvxfvjv43cnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diff-hl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diff-hl"; sha256 = "0kw0v9xcqidhf26qzrqwdlav2zhq32xx91k7akd2536jpji5pbn6"; name = "diff-hl"; }; @@ -5205,7 +5277,7 @@ sha256 = "1ci2gmyl0i736b2sxh77fyg4hs2pkn6rn9z7v2hzv6xlgqd6j3z6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diffview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diffview"; sha256 = "0vlzmykvxjwjww313brl1nr13kz41jypsk0s3l8q3rbsnkpfic5k"; name = "diffview"; }; @@ -5226,7 +5298,7 @@ sha256 = "0jzwaivsqh66py9hd3dg1ys5rc3p6pn8ndpwpvgyivk4pg6zhhj6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/digistar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/digistar-mode"; sha256 = "0khzxlrm09h31i1nqz6rnzhrdssb3kppc4klpxza612l306fih0s"; name = "digistar-mode"; }; @@ -5247,7 +5319,7 @@ sha256 = "1vrd74vmm60gb69a4in412mjncnhkjbfpakpaa6w9rj7w4kyfiz1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim"; sha256 = "0gsyily47g3g55qmhp1wzfz319l1pkgjz4lbigafjzlzqxyclz52"; name = "dim"; }; @@ -5268,7 +5340,7 @@ sha256 = "0jn3hwnqg455fz85m79mbwsiv93ps4sfr1fcfjfwj3qhhbhq7d82"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dim-autoload"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dim-autoload"; sha256 = "0lhzzjrgfvbqnzwhjywrk3skdb7x10xdq7d21q6kdk3h5r0np9f9"; name = "dim-autoload"; }; @@ -5289,7 +5361,7 @@ sha256 = "0qpgfgp8hrzz4vdifxq8h25n0a0jlzgf7aa1fpy6r0080v5rqbb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/diminish"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diminish"; sha256 = "1h6a31jllypk47akjflz89xk6h47na96pim17d6g4rpqcafc2k43"; name = "diminish"; }; @@ -5310,7 +5382,7 @@ sha256 = "1xg9cschjd2m0zal296q54ifk5i4s1s3azwfdkbgshxxgvxaky0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dionysos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dionysos"; sha256 = "1wjgj74dnlwd79gc3l7ymbx75jka8rw9smzbb10dsfppw3rrzfmz"; name = "dionysos"; }; @@ -5331,7 +5403,7 @@ sha256 = "1d813b4wiamif48v0za5invnss52mn7yw3hzrlxd4918gy5y2r74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-atool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-atool"; sha256 = "0qljx6fmz1hal9r2smjyc957wcvcpg16vp5mv65ip6d26k5qsj0w"; name = "dired-atool"; }; @@ -5352,7 +5424,7 @@ sha256 = "1m0nx8wd6q56qbp5mbp9n466kyglrz34nflwvgd1qnmi08jwswgv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-efap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-efap"; sha256 = "01j5v6584qi8ia7zmk03kx3i3kmm6hn6ycfgqlh5va6lp2h9sr00"; name = "dired-efap"; }; @@ -5373,7 +5445,7 @@ sha256 = "0lrc4082ghg77x5jl26hj8c7cp48yjvqhv4g3j0pznpzb4qyfnq0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-fdclone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-fdclone"; sha256 = "11aikq2q3m9h4zpgl24f8npvpwd98jgh8ygjwy2x5q8as8i89vf9"; name = "dired-fdclone"; }; @@ -5394,7 +5466,7 @@ sha256 = "088h9yn6wndq4pq6f7q4iz17f9f4ci29z9nh595idljp3vwr7qid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-imenu"; sha256 = "09yix4fkr03jq6j2rmvyg6gkmcnraw49a8m9649r3m525qdnhxs1"; name = "dired-imenu"; }; @@ -5415,7 +5487,7 @@ sha256 = "0rpln6m3j4xbhrmmz18hby6xpzpzbf1c5hr7bxvna265cb0i5rn7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-k"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-k"; sha256 = "0lghdmy9qcjykscfxvfrz8cpp87qc0vfd03vw8nfpvwcs2sd28i8"; name = "dired-k"; }; @@ -5436,7 +5508,7 @@ sha256 = "1a9r1kz5irpvb2byabbf27sy7rjzaygfpqimpag41sj955wlgy9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-quick-sort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-quick-sort"; sha256 = "01vrk3wqq2zmcblyp9abi2lvrzr2a5ca8r8gjjnr5223037ppl3l"; name = "dired-quick-sort"; }; @@ -5457,7 +5529,7 @@ sha256 = "0mfvyjbx7l7a1sfq47m6rb507xxw92nykkkpzmi2mpwv30f1c22j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dired-single"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dired-single"; sha256 = "13h8dsn7bkz8ji2rrb7vyrqb2znxarpiynqi65mfli7dn5k086vf"; name = "dired-single"; }; @@ -5467,6 +5539,27 @@ license = lib.licenses.free; }; }) {}; + diredful = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "diredful"; + version = "1.10"; + src = fetchFromGitHub { + owner = "thamer"; + repo = "diredful"; + rev = "b17b3087e0084a5571a9ac4d47ccfc36d96b109e"; + sha256 = "1d8n8wj5k82a1sfg93kn3ajci804mpp9j206x5f185zd48wb25z8"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/diredful"; + sha256 = "0y8x6q1yfsk0srxsh4g5nbsms1g9pk9d103jx7cfdac79mcigw7x"; + name = "diredful"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/diredful"; + license = lib.licenses.free; + }; + }) {}; direx = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "direx"; @@ -5478,7 +5571,7 @@ sha256 = "0p8c2hjgr81idm1psv3i3v5hr5rv0875ig8app2yqjwzvl0nn73f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx"; sha256 = "1x3rnrhhyrrvgry9n7kc0734la1zp4gc4bpy50f2qpfd452jwqdm"; name = "direx"; }; @@ -5499,7 +5592,7 @@ sha256 = "0swdh0qynpijsv6a2d308i42hfa0jwqsnmf4sm8vrhaf3vv25f5h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/direx-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/direx-grep"; sha256 = "0y2wrzq06prm55akwgaqjg56znknyvbayav13asirqzg258skvm2"; name = "direx-grep"; }; @@ -5520,7 +5613,7 @@ sha256 = "0qxw30zrlcxhxb0alrgyiclrk44dysal8xsbz2mvgrb6jli8wg18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover"; sha256 = "1hf57p90jn1zzhjl63zv9ascbgkcbr0p0zmd3fvzpjsw84235dga"; name = "discover"; }; @@ -5541,7 +5634,7 @@ sha256 = "1wlqyl03hhnflbyay3qlvdzqzvv5rbybcjpfddggda7ias9h0pr4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/discover-my-major"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/discover-my-major"; sha256 = "0ch2y4grdjp7pvw2kxqnqdl7jd3q609n3pm3r0gn6k0xmcw85fgg"; name = "discover-my-major"; }; @@ -5562,7 +5655,7 @@ sha256 = "1b1a1bwc6nv6wkd8jg1cqmjb9m9pxi5i2wbrz97fgii23dwfmlnl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dispass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dispass"; sha256 = "08c1s4zgl4rha10mva48cfkxzrqnpdhy03pxq51ihw94v6vxzg3z"; name = "dispass"; }; @@ -5572,27 +5665,48 @@ license = lib.licenses.free; }; }) {}; - dix = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + dix = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dix"; - version = "0.2.1"; + version = "0.3.2"; src = fetchFromGitHub { owner = "unhammer"; repo = "dix"; - rev = "6acd1f5f221f4ec8e5e98158332f1b816073e80d"; - sha256 = "069ymd1hinc6g1h0iy8pf6sckvasssi2p6lgaway6yj1gvks22vz"; + rev = "11348456ba73ab045f68ba79c51d93855ee85c31"; + sha256 = "0q35p9p26ywfaw6k8q05zmr8vmkiakykwns4ffgyl57dafkpjfj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix"; sha256 = "0c5fmknpy6kwlz7nx0csbbia1maz0szj7yha1p7wq28s3a5426xq"; name = "dix"; }; - packageRequires = []; + packageRequires = [ cl-lib ]; meta = { homepage = "https://melpa.org/#/dix"; license = lib.licenses.free; }; }) {}; + dix-evil = callPackage ({ dix, evil, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "dix-evil"; + version = "0.3.2"; + src = fetchFromGitHub { + owner = "unhammer"; + repo = "dix"; + rev = "11348456ba73ab045f68ba79c51d93855ee85c31"; + sha256 = "0q35p9p26ywfaw6k8q05zmr8vmkiakykwns4ffgyl57dafkpjfj0"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dix-evil"; + sha256 = "1jscaksnl5qmpqgkjkv6sx56llz0w4p5h7j73c4a1hld94gwklh3"; + name = "dix-evil"; + }; + packageRequires = [ dix evil ]; + meta = { + homepage = "https://melpa.org/#/dix-evil"; + license = lib.licenses.free; + }; + }) {}; docker = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild, s, tablist }: melpaBuild { pname = "docker"; @@ -5604,7 +5718,7 @@ sha256 = "1wkgb6wq3crnpnd747ilwl2kbz5fjk5q5z1xza8j4bf1ic2aybb8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/docker"; sha256 = "10x05vli7lg1w3fdbkrl34y4mwbhp2c7nqdwnbdy53i81jisw2lk"; name = "docker"; }; @@ -5625,7 +5739,7 @@ sha256 = "1cmh8pwwa6dhl4w66wy8s5yqxs326mnaalg1ig2yhl4bjk8gi4m2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dockerfile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dockerfile-mode"; sha256 = "1dxvzn35a9qd3x8pjvrvb2g71yf84404g6vz81y0p353rf2zknpa"; name = "dockerfile-mode"; }; @@ -5646,7 +5760,7 @@ sha256 = "04h1hlsc83w4dppw9m44jq7mkcpy0bblvnzrhvsh06pibjywdd73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/doom"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/doom"; sha256 = "098q77lix7kwpmarv26yndyk1yy1h4k3l9kaf3g7sg6ji6k7d3wl"; name = "doom"; }; @@ -5667,7 +5781,7 @@ sha256 = "13czcxmmvy4g9ysfjr6lb91c0fqv1xv8ppd27wbfsrgxm3aaqimb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/downplay-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/downplay-mode"; sha256 = "1v6nga101ljzza8qj3lkmkzzl0vvzj4lsh1m69698s8prnczxr9b"; name = "downplay-mode"; }; @@ -5709,7 +5823,7 @@ sha256 = "0z3w58zplm5ks195zfsaq8kwbc944p3kbzs702jgz02wcrm4c28y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/draft-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/draft-mode"; sha256 = "1wg9cx39f4dhrykb4zx4fh0x5cfrh5aicwwfh1h3yzpc4zlr7xfh"; name = "draft-mode"; }; @@ -5730,7 +5844,7 @@ sha256 = "131ww26pb97q2gyjhfrsf7nw2pi5b1kba0cgl97qc017sfhg92v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drag-stuff"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drag-stuff"; sha256 = "1q67q20gfhixzkmddhzp6fd8z2qfpsmyyvymmaffjcscnjaz21w4"; name = "drag-stuff"; }; @@ -5751,7 +5865,7 @@ sha256 = "1hbm3zdmd28fjl8fky0kq4gs2bxsrn2zxk9rd1wa2wky43ycnd35"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-mode"; sha256 = "14jvk4phq3wcff3yvhygix0c9cpbphh0dvm961i93jpsx7g9awgn"; name = "drupal-mode"; }; @@ -5772,7 +5886,7 @@ sha256 = "156cscpavrp695lp8pgjg5jnq3b8n9c2h8qg8w89dd4vfkc3iikd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/drupal-spell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/drupal-spell"; sha256 = "117rr2bfnc99g3qsr127grxwaqp54cxjaj3nl2nr6z78nja0fij3"; name = "drupal-spell"; }; @@ -5793,7 +5907,7 @@ sha256 = "17yldk76mxakhb90bma7r4z9jgx02wankgk17r2di196mc04bj7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ducpel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ducpel"; sha256 = "1cqrkgg7n9bhjswnpl7yc6w6yjs4gfbliaqsimmf9z43wk2ml4pc"; name = "ducpel"; }; @@ -5814,7 +5928,7 @@ sha256 = "1czw5z6w8pcc7ra5d82v06padyiy7c3ds00chw5xgyvq6s73gzn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dumb-jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dumb-jump"; sha256 = "1pgbs2k1g8w7gr65w50fazrmcky6w37c9rvyxqfmh06yx90nj4kc"; name = "dumb-jump"; }; @@ -5835,7 +5949,7 @@ sha256 = "033yqc19xxirbva65lz8hnwxj7pn7fx7dlnf70kq71iqclqa4v25"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dummy-h-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dummy-h-mode"; sha256 = "10lzfzq7md6s28w2zzlhswn3d6765g4vqzyjn2q5ms8pd2i4b4in"; name = "dummy-h-mode"; }; @@ -5855,7 +5969,7 @@ sha256 = "19aid1rqpqj0fvln98db5imfk1griqld55xsr9plm6kwrr174syq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dyalog-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dyalog-mode"; sha256 = "1y17nd2xd8b3mhaybws8dr7yanzwqij9gzfywisy65ckflm9kfyq"; name = "dyalog-mode"; }; @@ -5876,7 +5990,7 @@ sha256 = "1ppwlill1z4vqd566h9zi6zx5jb7hggmnmqrga84j5n7fwqvgz7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-fonts"; sha256 = "0a210ca41maa755lv1n7hhpxp0f7lfxrxbi0x34icbkfkmijhl6q"; name = "dynamic-fonts"; }; @@ -5889,15 +6003,15 @@ dynamic-ruler = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "dynamic-ruler"; - version = "0.1.4"; + version = "0.1.6"; src = fetchFromGitHub { owner = "rocher"; repo = "dynamic-ruler"; - rev = "2d69a7aec21d3d9dbc8ae7520e5c513e98d64ebb"; - sha256 = "05z7gshrn7wp0qkb9ns6rgmcp375yllmkwhdsm4amg0dk3j2slbr"; + rev = "c9c0de6fe5721f06b50e01d9b4684b519c71b367"; + sha256 = "09skp2d5likqjlrsfis3biqw59sjkgid5249fld9ahqm5f1wq296"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/dynamic-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/dynamic-ruler"; sha256 = "13jc3xbsyc3apkdfy0iafmsfvgqs0zfa5w8jxp7zj4dhb7pxpnmc"; name = "dynamic-ruler"; }; @@ -5918,7 +6032,7 @@ sha256 = "0g0cz5a0vf31w27ljq5sn52mq15ynadl6cfbb97ja5zj1zxsxgjl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm"; sha256 = "0dp360jr3fgxqywkp7g88cp02g37kw2hdsc0f70hjak9n3sy03la"; name = "e2wm"; }; @@ -5939,7 +6053,7 @@ sha256 = "1yf081rac0chvkjha9z9xi1p983gmhjph0hai6ppsz5hzf2vikpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-R"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-R"; sha256 = "09v4fz178lch4d6m801ipclfxm2qrap5601aysnzyvc2apvyr3sh"; name = "e2wm-R"; }; @@ -5960,7 +6074,7 @@ sha256 = "09i7d2rc9zd4s3nqrhd3ggs1ykdpxf0pyhxixxw2xy0q6nbswjia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-direx"; sha256 = "0nv8aciq0swxi9ahwc2pvk9c7i3rmlp7vrzqcan58ml0i3nm17wg"; name = "e2wm-direx"; }; @@ -5981,7 +6095,7 @@ sha256 = "1vrlfzy1wynm7x4m7pl8vim7ykqd6qkcilwz7sjc1lbckz11ig0d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-pkgex4pl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-pkgex4pl"; sha256 = "0hgdbqfw3015fr929m36kfiqqzsid6afs3222iqq0apg7gfj7jil"; name = "e2wm-pkgex4pl"; }; @@ -6002,7 +6116,7 @@ sha256 = "0mz43mwcgyc1c9p9b7nflnjxdxjm2nxbhl0scj6llzphikicr35g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-sww"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-sww"; sha256 = "0x45j62cjivf9v7jp1b41yya3f9akp92md6cbv0v7bwz98g2vsk8"; name = "e2wm-sww"; }; @@ -6023,7 +6137,7 @@ sha256 = "0qv3kh6q3q7vgfsd8x25x8agi3fp96dkpjnxdidkwk6k8h9n0jzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/e2wm-term"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/e2wm-term"; sha256 = "0wrq06yap80a96l9l0hs7x7rng7sx6vi1hz778kknb6il4f2f45g"; name = "e2wm-term"; }; @@ -6044,7 +6158,7 @@ sha256 = "0r56nqrj6iaz57ys6hqdq5qkyliv7dj6dv274l228r7x0axrwd9m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill"; sha256 = "10jcv7a4vcnaj3wkabip2xwzcwlmvdlqkl409a9lnzfasxcpf32i"; name = "easy-kill"; }; @@ -6065,7 +6179,7 @@ sha256 = "18fdlxz9k961k8wafdw0gq0y514bvrfvx6qc1lmm4pk3gdcfbbi0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-kill-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-kill-extras"; sha256 = "0xzlzv57nvrc142saydwfib51fyqcdzjccc1hj6xvgcdbwadlnjy"; name = "easy-kill-extras"; }; @@ -6086,7 +6200,7 @@ sha256 = "18bm5ns1qrxq0rrz9sylshr62wkymh1m6b7ch2y74f8rcwdwjgnq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/easy-repeat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/easy-repeat"; sha256 = "1vx57gpw0nbxh976s18va4ali1nqxqffhaxv1c5rhf4pwlk2fa06"; name = "easy-repeat"; }; @@ -6107,7 +6221,7 @@ sha256 = "0ysym38xaqyx1wc7xd3fvjm62dmiq4727dnjvyxv7hs4czff1gcb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebal"; sha256 = "1kqnlp5n1aig1qbqdq9q50wgqkzd1l6h9wi1gv43cif8qa1kxhwg"; name = "ebal"; }; @@ -6128,7 +6242,7 @@ sha256 = "16hiwz8a1hyyiflzn53v97704v783pg18yxapn7pqk90fbcf7czw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebf"; sha256 = "072w1hczzb4z0dadvqy8px9zfnfd2z0w8nwa7q2qm5njg30rrqpb"; name = "ebf"; }; @@ -6149,7 +6263,7 @@ sha256 = "1kcmbr4a2jxd62s4nc8xshrksb36xwb17j6c0hjzvb75r544xy6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ebib"; sha256 = "1kdqf5nk9l6mr3698nqngrkw5dicgf7d24krir5wrcfbrsqrfmid"; name = "ebib"; }; @@ -6170,7 +6284,7 @@ sha256 = "1s9r1qj7cjsjvvphdpyjff6y598xpbrm9qjv5ncq15w6ac7yxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecb"; sha256 = "097hdskhfh255znrqamcssx4ns1sgkxchlbc7pjqwzpflsi0fx89"; name = "ecb"; }; @@ -6191,7 +6305,7 @@ sha256 = "1r5hlcspznvfm111l1z0r4isd582qj64sa8cqk6hyi3y1hyp1xxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ecukes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ecukes"; sha256 = "0ava8hrc7r1mzv6xgbrb84qak5xrf6fj8g9qr4i4g0cr7843nrw0"; name = "ecukes"; }; @@ -6212,7 +6326,7 @@ sha256 = "0xy3q68i47a3s81jwr0rdvc1722bp78ng56xm53pri05g1z0db9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edbi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edbi"; sha256 = "0qq0j16n8lyvkqqlcsrq1m7r7f0in6b92d74mpx5c6siv6z2vxlr"; name = "edbi"; }; @@ -6225,15 +6339,15 @@ edit-indirect = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "edit-indirect"; - version = "0.1.2"; + version = "0.1.4"; src = fetchFromGitHub { owner = "Fanael"; repo = "edit-indirect"; - rev = "d1ab87fdfbc2a894a7eaac8b289a5af2d7c835b0"; - sha256 = "10c84aad1lnr7z9f75k5ylgchykr3srcdmn88hlcx2n2c4jfbkds"; + rev = "1d1dae842505e5ff09644529deec87c056e1b14e"; + sha256 = "145knahvvxbm8qmcdb69ilrg14w7130vav2pqjd7anr1l8n2i6gz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-indirect"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-indirect"; sha256 = "0q5jjmrvx5kaajllmhaxihsab2kr1vmcsfqrhxdhw3x3nf41s439"; name = "edit-indirect"; }; @@ -6254,7 +6368,7 @@ sha256 = "0981hy1n50yizc3k06vbxqrpfml817a67kab1hkgkw5v6ymm1hc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-list"; sha256 = "0mi12jfgx06i0yr8k5nk80xryqszjv0xykdnri505862rb90xakv"; name = "edit-list"; }; @@ -6275,7 +6389,7 @@ sha256 = "12dp1xj09jrp0kxp9xb6cak9dn6zkyis1wfn4fnhzmxxnrd8c5rn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edit-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edit-server"; sha256 = "0ffxcgmnz0f2c1i3vfwm8vlm6jyd7ibf4kq5z8c6n50zkwfdmns0"; name = "edit-server"; }; @@ -6296,7 +6410,7 @@ sha256 = "1zb8f6gfflwzh1zkhcd1nhan9wxmdm0gpp96fm5gjn639zs88539"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/editorconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/editorconfig"; sha256 = "0zv96m07ml8i3k7zm7sdci4hn611n3ypna7zppfkwbdyr7d5k2gc"; name = "editorconfig"; }; @@ -6317,7 +6431,7 @@ sha256 = "06v34l9dkykrrdfpnm3zi5wjm0fdvy76pbkfnk92wqkjp8fqimhd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edn"; sha256 = "00cy8axhy2p3zalzl8k2083l5a7s3aswb9qfk9wsmf678m8pqwqg"; name = "edn"; }; @@ -6338,7 +6452,7 @@ sha256 = "1a1apa48n24yisd2zw5k4lfkngx3016x6y11qi80hg75vrnmg7f1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/edts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/edts"; sha256 = "0f0rbd0mqqwn743qmr1g5mmi1sbmlcglclww8jxvbvb61jq8vspr"; name = "edts"; }; @@ -6359,7 +6473,7 @@ sha256 = "1ryb7smvf66hk307yazkjn9bqzbwzbyyb5db200fq6j2zdjwsmaj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egg"; sha256 = "144g1fvs2cmn3px0a98nvxl5cz70kx30v936k5ppyi8gvbj0md5i"; name = "egg"; }; @@ -6380,7 +6494,7 @@ sha256 = "07vdvjy4x21gyw2r4rxrj929hj1jp4a8igwgb2m5a5x50capwzhy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/egison-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/egison-mode"; sha256 = "0x11fhv8kkx34h831k2q70y5qfz7wnfia4ka5mbmps7mpr68zcwi"; name = "egison-mode"; }; @@ -6399,7 +6513,7 @@ sha256 = "0w9j5q5pzw55nwsw5wic7dl7psvg75vk1cxhrz2isgra6gissh9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eide"; sha256 = "16cf32n2l4wy1px7fm6x4vxx7pbqdp7zh2jn3bymg0b40i2321sz"; name = "eide"; }; @@ -6420,7 +6534,7 @@ sha256 = "0w2j0bbqnba1wr12f0zk87zwnxf6xhchx224fwgwqd3kg0x5z0r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ein"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ein"; sha256 = "1nksj1cpf4d9brr3rb80bgp2x05qdq9xmlp8mwbic1s27mw80bpp"; name = "ein"; }; @@ -6441,7 +6555,7 @@ sha256 = "0m7qsk378c30fva2n2ag99rsdklx5nsqc395msg1ab11sbpxvis0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eink-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eink-theme"; sha256 = "0z437cpf1b8bqyi7bv0w0dnc52q4f5g17530lwdcxjkr38s9b1zn"; name = "eink-theme"; }; @@ -6462,7 +6576,7 @@ sha256 = "0dbp2zz993cm7mrd58c4iflbzqwg50wzgn2cpwfivk14w1mznh4n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-autoyas"; sha256 = "0hh5j79f3z82nmb3kqry8k8lgc1qswk6ni3g9jg60pasc3wkbh6c"; name = "el-autoyas"; }; @@ -6483,7 +6597,7 @@ sha256 = "1awyh9ffd6a4cia239s89asb88ddqlnrv757d76vcb701pq412bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-get"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-get"; sha256 = "1438v2sw5n67q404c93y2py226v469nagqwp4w9l6yyy40h4myhz"; name = "el-get"; }; @@ -6504,7 +6618,7 @@ sha256 = "1mzla7ijmq1mgzr6bf16mjdycbf8ylsf4zdk4j6fh5kw5n4k6c5n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init"; sha256 = "121n6z8p9kzi7axp4i2kyi621gw20635w4j81i1bryblaqrv5kl5"; name = "el-init"; }; @@ -6525,7 +6639,7 @@ sha256 = "1488wv0f9ihzzf9fl8cki044k61b0kva604hdwpb2qk9gnjr4g1l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-init-viewer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-init-viewer"; sha256 = "0kkmsml9xf2n8nlrcicfg2l78s3dlhd6ssx0s62v77v4wdpl297m"; name = "el-init-viewer"; }; @@ -6546,7 +6660,7 @@ sha256 = "13mv1rhgkwiww2wh5w926jz7idppp492wir1vdl245c5x50dh4f7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-mock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-mock"; sha256 = "07m7w7n202nijnxidy0j0r4nbcvlnbkm9b0n8qb2bwi3d4cfp77l"; name = "el-mock"; }; @@ -6567,7 +6681,7 @@ sha256 = "0390pfgfgj7hwfmkwikwhip0hmwkgx784l529cqvalc31jchi94i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-spice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-spice"; sha256 = "0i0l3y9w1q9pf5zhvmsq4h427imix67jgcfwq21b6j82dzg5l4hg"; name = "el-spice"; }; @@ -6588,7 +6702,7 @@ sha256 = "1i6j44ssxm1xdg0mf91nh1lnprwsaxsx8vsrf720nan7mfr283h5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/el-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/el-x"; sha256 = "1721d9mljlcbdwb5b9934q7a48y30x6706pp4bjvgys0r64dml5g"; name = "el-x"; }; @@ -6609,7 +6723,7 @@ sha256 = "0hlj6jn9gmi00sqghxswkxpgk65c4gy2k7010vpkr2257rd4f3gq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elang"; sha256 = "0frhn3hm8351qzljicpzars28af1fghgv45717ml79rwb4vi6yiy"; name = "elang"; }; @@ -6630,7 +6744,7 @@ sha256 = "1fh9dx669czkwy4msylcg64azz3az27akx55ipnazb5ghmsi7ivk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eldoc-eval"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eldoc-eval"; sha256 = "0z4scgi2xgrgd47aqqmyv1ww8alh43s0qny5qmh3f1nnppz3nd7c"; name = "eldoc-eval"; }; @@ -6651,7 +6765,7 @@ sha256 = "1ji6rdbqwk8j0nl6yk3rdqrpgxir99lj9pf6i9rx55l63qyrdfc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/electric-operator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/electric-operator"; sha256 = "043bkpvvk42lmkll5jnz4q8i0m44y4wdxvkz6hiqhqcp1rv03nw2"; name = "electric-operator"; }; @@ -6664,15 +6778,15 @@ elfeed = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elfeed"; - version = "1.4.0"; + version = "1.4.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "9fd3cf8833e26bf41f52a7e2149734858d2eeb96"; - sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; + rev = "f34b5c34766868c6ebe3408155086dcf54062e2b"; + sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed"; sha256 = "1psga7fcjk2b8xjg10fndp9l0ib72l5ggf43gxp62i4lxixzv8f9"; name = "elfeed"; }; @@ -6685,15 +6799,15 @@ elfeed-web = callPackage ({ elfeed, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, simple-httpd }: melpaBuild { pname = "elfeed-web"; - version = "1.4.0"; + version = "1.4.1"; src = fetchFromGitHub { owner = "skeeto"; repo = "elfeed"; - rev = "9fd3cf8833e26bf41f52a7e2149734858d2eeb96"; - sha256 = "1ln0wprk8m2d33z804ld73jwv9x51xkwl9xfsywbh09w3x2zb51j"; + rev = "f34b5c34766868c6ebe3408155086dcf54062e2b"; + sha256 = "0zqrh8ycrk7768mj0d5b9dkz72559a36yhddb6idhik1v4q836sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elfeed-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elfeed-web"; sha256 = "14ydwvjjc6wbhkj4g4xdh0c3nh4asqsz8ln7my5vjib881vmaq1n"; name = "elfeed-web"; }; @@ -6735,7 +6849,7 @@ sha256 = "1k7kprdknqm18dc0nwl7gachm0rivcpa8ng7p7ximalja3nsg2j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elisp-slime-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elisp-slime-nav"; sha256 = "009zgp68i4naprpjr8lcp06lh3i5ickn0nh0lgvrqs0niprnzh8c"; name = "elisp-slime-nav"; }; @@ -6756,7 +6870,7 @@ sha256 = "06bi68x49v6f7flpz279mm4jpg31ll3s274givm3pvr8slcxs6xg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-mode"; sha256 = "1dba3jfg210i2rw8qy866396xn2xjgmbcyl006d6fibpr3j4lxaf"; name = "elixir-mode"; }; @@ -6777,7 +6891,7 @@ sha256 = "0dx5h3sfccc2bp1jxnqqki95x5hp1skw8n5n4lnh703yjga5gkrz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elixir-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elixir-yasnippets"; sha256 = "0vmkcd88wfafv31lyw0983p4qjj387qf258q7py1ij47fcmfp579"; name = "elixir-yasnippets"; }; @@ -6790,15 +6904,15 @@ elm-mode = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, let-alist, lib, melpaBuild, s }: melpaBuild { pname = "elm-mode"; - version = "0.13.2"; + version = "0.16.0"; src = fetchFromGitHub { owner = "jcollard"; repo = "elm-mode"; - rev = "261dc0f22d177afa325640533423803dce4f467c"; - sha256 = "086d0lr5kflr4qrpr4xs3sl0vmsc5i5b9vk6ldh7flhrrr8kg784"; + rev = "5e2e70436d4e5be6725a43b1f09eb68db7400f02"; + sha256 = "0wzxk4p9rxgv2k3z5k5zyi46mfvax658j7p29q2ii5hyj9imcjka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elm-mode"; sha256 = "1gw9szkyr1spcx7qijddhxlm36h0hmfd53b4yzp1336yx44mlnd1"; name = "elm-mode"; }; @@ -6819,7 +6933,7 @@ sha256 = "0l2iincskpks9yvj3y9zh1b48xli1q39wybr5n96rys5gv0drc9h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmacro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmacro"; sha256 = "0644rgwawivrq1shsjx1x2p53z7jgr6bxqgn2smzql8pp6azy7xz"; name = "elmacro"; }; @@ -6840,7 +6954,7 @@ sha256 = "080nnw6ddsczbm7gk50x4dkahi77fsybfiki5iyp39fjpa7lfzq3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elmine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elmine"; sha256 = "1gi94dyz9x50swkvryd4vj36rqgz4s58nrb4h4vwwviiiqmc8fvz"; name = "elmine"; }; @@ -6861,7 +6975,7 @@ sha256 = "1q4krfrc2dy0vr7q148msfpkcwj55mlsrn4n5xjnya4xj0134ib7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-audit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-audit"; sha256 = "0l8har14zrlh9kdkh9vlmkmzg49vb0r8j1wnznryaidalvk84a52"; name = "elpa-audit"; }; @@ -6882,7 +6996,7 @@ sha256 = "0h2xhys3cc9z61ax0ymg5fbsjg6192hwdvfhgmyq7vwibi402r1f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpa-mirror"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpa-mirror"; sha256 = "1jnviav2ybr13cgllg26kfjrwrl25adggnqiiwyjwgbbzxfycah8"; name = "elpa-mirror"; }; @@ -6903,7 +7017,7 @@ sha256 = "1x4asq5zqv8wbp034gzcrza9y2nbbwx1nrwi4jnwak0x0yn3c2dj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elpy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elpy"; sha256 = "0n802bh7jj9zgz84xjrxvy33jl6s3hj5dqxafyfr87fank97hb6d"; name = "elpy"; }; @@ -6930,7 +7044,7 @@ sha256 = "14hwl5jzmm43qa4jbpsyswbz4hk1l2iwqh3ank6502bz58877k6c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-mew"; sha256 = "06g4wcfjs036nn64ac0zsvr08cfmak2hyj83y7a0r35yxr1853w4"; name = "elscreen-mew"; }; @@ -6951,7 +7065,7 @@ sha256 = "06g7fl2c7cvwsrgi462wf6j13ny56y6zvgkizz9f256xjjq77ymf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elscreen-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elscreen-persist"; sha256 = "1rjfvpsx0y5l9b76wa1ilj5lx39jd0m78nb1a4bqn81z0rkfpl4k"; name = "elscreen-persist"; }; @@ -6972,7 +7086,7 @@ sha256 = "1k7npf93xbmrsq607x8zlgrpzqvplgia3ixz5w1lr1jlv1m2m8x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elwm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elwm"; sha256 = "0rf663ih3lfg4n4pj4dpp133967zha5m1wr46riaxpha7xr59al9"; name = "elwm"; }; @@ -6985,15 +7099,15 @@ elx = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "elx"; - version = "0.10.1"; + version = "1.0.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "elx"; - rev = "24bb321b275d441ca532c4ca7417143a79a88dcf"; - sha256 = "0n5y3xq5dmqpsd9hhg9ac1jkj5qi9y7lgvg5nir3ghd8ldmrg09s"; + rev = "0f80390bcf2a1dd9a3ba609e92f50a4a3463036e"; + sha256 = "07k8kq444ki7pxbz3vnrwqgycm9hfcdxgsnvf7qihqvzs2y1qm3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/elx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/elx"; sha256 = "02nq66c0sds61k2p8cn2l0p2l8ysb38ibr038qn41l9hg1dq065x"; name = "elx"; }; @@ -7014,7 +7128,7 @@ sha256 = "0b9hr3xg53nap6sik9d2cwqi8vfwzv8yqjcin4hab6rg2fkr5mra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-eclim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-eclim"; sha256 = "1l55jhz5mb3bqw90cbf4jhcqgwj962br706qhm2wn5i2a1mg8xlv"; name = "emacs-eclim"; }; @@ -7035,7 +7149,7 @@ sha256 = "15l3ab11vcmzqibkd6h5zqw5a83k8dmgcp4n26px29c0gv6bkpy8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacs-setup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacs-setup"; sha256 = "1x4rh8vx6fsb2d6dz2g9j6jamin1vmpppwy3yzbl1dnf7w4hx4kh"; name = "emacs-setup"; }; @@ -7056,7 +7170,7 @@ sha256 = "0ciqxyahlzaxq854jm25zbrbmrhcaj5csdhxa0az9crwha8wkmw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsagist"; sha256 = "1cyz7nf0zxa21979jf5kdmkgwiyd17vsmpcmrw1af37ly27l8l64"; name = "emacsagist"; }; @@ -7077,7 +7191,7 @@ sha256 = "1r6cpb7fck5znb7q7zrxcsjn7d3xiqhq8dp1ar1rsd6k4h05by4j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsc"; sha256 = "1fbf9al3yds0il18jz6hbpj1fsjlpb1kgp450gb6r09lc46x77mk"; name = "emacsc"; }; @@ -7098,7 +7212,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql"; sha256 = "1x4rn8dmgz871dhz878i2mqci576zccf9i2xmq2ishxgqm0hp8ax"; name = "emacsql"; }; @@ -7119,7 +7233,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-mysql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-mysql"; sha256 = "1c20zhpdzfqjds6kcjhiq1m5ch53fsx6n1xk30i35kkg1wxaaqzy"; name = "emacsql-mysql"; }; @@ -7140,7 +7254,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-psql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-psql"; sha256 = "1aa1g9jyjmz6w0lmi2cf67926ad3xvs0qsg7lrccnllr9k0flly3"; name = "emacsql-psql"; }; @@ -7161,7 +7275,7 @@ sha256 = "1wc5hkirza6b4c0v557ihzbffvxy97pfcn5samcggbmrir5kpshw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsql-sqlite"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsql-sqlite"; sha256 = "1vywq3ypcs61s60y7x0ac8rdm9yj43iwzxh8gk9zdyrcn9qpis0i"; name = "emacsql-sqlite"; }; @@ -7182,7 +7296,7 @@ sha256 = "00q344vgihl2s0snibfwsjvxqkbvy2jlqnnid7qw5gcni673b2hl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emacsshot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emacsshot"; sha256 = "08xqx017yfizdj8wz7nbh9i7qpar6398sri78abzf78inv828s9j"; name = "emacsshot"; }; @@ -7203,7 +7317,7 @@ sha256 = "1a9925n0jcgxcgiz2kmh9zbb1rg9039rlrbr9fr80by9znfwmy67"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emamux"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emamux"; sha256 = "1pg0gzi8rn0yafssrsiqdyj5dbfy984srq1r4dpp8p3bi3n0fkfz"; name = "emamux"; }; @@ -7224,7 +7338,7 @@ sha256 = "1sagmgcarg7d7b7hv3bqgkxg39fzgxaaq7wz9cf7fpwz0pv8vfy6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/embrace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/embrace"; sha256 = "1w9zp9n91703d6jd4adl2xk574wsr7fm2a9v32b1i9bi3hr0hdjc"; name = "embrace"; }; @@ -7245,7 +7359,7 @@ sha256 = "1dsa85bk33j90h1ypaz1ylqh9yp2xvlga237h3kwa5y3sb0d5ydi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emmet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emmet-mode"; sha256 = "0wjv4hqddjvbdrmsxzav5rpwnm2n6lr86jzkrnav8f2kyzypdsnr"; name = "emmet-mode"; }; @@ -7255,6 +7369,25 @@ license = lib.licenses.free; }; }) {}; + emms = callPackage ({ fetchgit, fetchurl, lib, melpaBuild }: melpaBuild { + pname = "emms"; + version = "4.1"; + src = fetchgit { + url = "git://git.sv.gnu.org/emms.git"; + rev = "c1e1a843c3389fc585908de367ff00fdd6470965"; + sha256 = "04gdji7gjpwg8mfpah0z7hvghs2p4k0qi90ln6cq48z927dpa4ip"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms"; + sha256 = "0kzli8b0z5maizfwhlhph1f5w3v6pwxvs2dfs90l8c0h97m4yy2m"; + name = "emms"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/emms"; + license = lib.licenses.free; + }; + }) {}; emms-mode-line-cycle = callPackage ({ emacs, emms, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "emms-mode-line-cycle"; @@ -7266,7 +7399,7 @@ sha256 = "0q80f0plch6k4lhs8c9qm3mfycfbp3kn5sjrk9zxgxwnn901y9mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-mode-line-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-mode-line-cycle"; sha256 = "1jdmfh1i9v84iy7bj2dbc3s2wfzkrby3pabd99gnqzd9gn1cn8ca"; name = "emms-mode-line-cycle"; }; @@ -7287,7 +7420,7 @@ sha256 = "104iw4bl6y33diqs5ayrvdljkhb6f9g2m5p5kh8klgy7z1yjhp4p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-mpv"; sha256 = "175rmqx3bgys4chw8ylyf9rk07sg0llwbs9ivrv2d3ayhcz1lg9y"; name = "emms-player-mpv"; }; @@ -7308,7 +7441,7 @@ sha256 = "15bb8fp2lwr5brfrsjwa47yvja5g2wyaac5a4sh5rn734s64x2sq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-player-simple-mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-player-simple-mpv"; sha256 = "15aljprjd74ha7wpzsmv3d873i6fy3x1jwhzm03hvw0sw18m25i1"; name = "emms-player-simple-mpv"; }; @@ -7329,7 +7462,7 @@ sha256 = "1kipxa9ax8zi9qqk19mknpg7nnlzgr734kh9bnklydipwnsy00pi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emms-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emms-state"; sha256 = "080y02hxxqfn0a0dhq5vm0r020v2q3h1612a2zkq5fxi8ssvhp9i"; name = "emms-state"; }; @@ -7350,7 +7483,7 @@ sha256 = "1rk7am0xvpnv98yi7a62wlyh576md4n2ddj7nm201bjd4wdl2yxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-cheat-sheet-plus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-cheat-sheet-plus"; sha256 = "1ciwlbw0ihm0p5gnnl3safcj7dxwiy53bkj8cmw3i334al0gjnnv"; name = "emoji-cheat-sheet-plus"; }; @@ -7371,7 +7504,7 @@ sha256 = "0qi7p1grann3mhaq8kc0yc27cp9fm983g2gaqddljchn7lmgagrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emoji-fontset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emoji-fontset"; sha256 = "19affsvlm1rzrzdh1k6xsv79icdkzx4izxivrd2ia6y2wcg9wc5d"; name = "emoji-fontset"; }; @@ -7392,7 +7525,7 @@ sha256 = "0nrf6p4h66i17nz850kpdrnk5h5ra4l3icjjrq34sxvmsssp6zhp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emojify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emojify"; sha256 = "1sgd32qm43hwby75a9q2pz1yfzj988i35d8p9f18zvbxypy7b2yp"; name = "emojify"; }; @@ -7413,7 +7546,7 @@ sha256 = "0pl7i2a0mf2s33qpsc14dcvqbl6jm5xrvcnrhfr7visvnih29cy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/emr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/emr"; sha256 = "05vpfxg6lviclnms2zyrza8dc87m60mimlwd11ihvsbngi9gcw8x"; name = "emr"; }; @@ -7444,7 +7577,7 @@ sha256 = "1dsa3r39ip20ddbw0m9vq8z3r4ahrxvb37adyqi4mbdgyr6fq6sw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/engine-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/engine-mode"; sha256 = "1gg7i93163m7k7lr3pnal1svymnhzwrfpfcdc0798d7ybv26gg8c"; name = "engine-mode"; }; @@ -7465,7 +7598,7 @@ sha256 = "08j6b79vy8ry4ad1abk3hvxjbb4ylrhkvrbrnq1gcikl4h1p2v63"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enlive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enlive"; sha256 = "1dyayk37zik12qfh8zbjmhsch64yqsx3acrlm7hcnavx465hmhnz"; name = "enlive"; }; @@ -7486,7 +7619,7 @@ sha256 = "1in4wbwkxn8qfcsfjbczzk73z74w4ixlml61wk666dw0kpscgbs5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/enotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/enotify"; sha256 = "0mii6m6zw9y8njgzi79rcf1n251iw7qz3yqjjij3c19rk3zpm5qi"; name = "enotify"; }; @@ -7507,7 +7640,7 @@ sha256 = "1yn9jn6jl6rmknj50g18z5yvpa1d8mzzx3j1pfdwfn36ak4nc9ba"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eopengrok"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eopengrok"; sha256 = "0756x78113286hwk1i1m5s8xq04gh7zxb4fkmw58lg2ssff8q6av"; name = "eopengrok"; }; @@ -7528,7 +7661,7 @@ sha256 = "05r2m7zghbdrgscg0x78jnhk1g6fq8iylar4cx699zm6pzvlq98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epc"; sha256 = "1l9rcx07pa4b9z5654gyw6b64c95lcigzg15amphwr56v2g3rbzx"; name = "epc"; }; @@ -7549,7 +7682,7 @@ sha256 = "18am0nc2kjxbnkls7dl9j47cynwiiafx8w6rqa4d9dyx7khl2rmp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epkg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epkg"; sha256 = "0vc1g29rfmgd2ks4lbz4599rbgcax7rgdva53ahhvp6say8fy22q"; name = "epkg"; }; @@ -7570,7 +7703,7 @@ sha256 = "0sjxd5y5hxhrbgfkpwx6m724r3841b53hgc61a0g5zwispw5pmrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/epl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epl"; sha256 = "0zr3r2hn9jaxscrl83hyixznb8l5dzfr6fsac76aa8x12xgsc5hn"; name = "epl"; }; @@ -7580,6 +7713,27 @@ license = lib.licenses.free; }; }) {}; + epm = callPackage ({ emacs, epl, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "epm"; + version = "0.1beta1"; + src = fetchFromGitHub { + owner = "xuchunyang"; + repo = "epm"; + rev = "2ee9a69d725a77ac4e57cc652ce4b4cfd1fef63a"; + sha256 = "1kjkb2cvpkbbcvlq64imnv5ispkf3yrj4f5acagd32jx7gcgxfj8"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/epm"; + sha256 = "0k94qhzxjzw5d0c53jnyx1xfciwr9qib845awyjaybzzs34s8r08"; + name = "epm"; + }; + packageRequires = [ emacs epl ]; + meta = { + homepage = "https://melpa.org/#/epm"; + license = lib.licenses.free; + }; + }) {}; erc-crypt = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erc-crypt"; @@ -7591,7 +7745,7 @@ sha256 = "1xw56sir6gkr0p9g4s6p4qc0rajnl6ifbzrky07j28y9vsa59nsz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-crypt"; sha256 = "1mzzqcxjnll4d9r9n5z80zfb3ywkd8jx6b49g02vwf1iak9h7hv3"; name = "erc-crypt"; }; @@ -7611,7 +7765,7 @@ sha256 = "11a64rvhd88val6vg9l1d5j3zdjd0bbbwcqilj0wp6rbn57xy0w8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hipchatify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hipchatify"; sha256 = "1a4gl05i757vvap0rzrfwms7mhw80sa84gvbwafrvj3x11rja24x"; name = "erc-hipchatify"; }; @@ -7632,7 +7786,7 @@ sha256 = "1k0g3bwp3w0dd6zwdv6k2wpqs2krjayilrzsr1hli649ljcx55d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-hl-nicks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-hl-nicks"; sha256 = "1lhw77n2nrjnb5yhnpm6yhbcp022xxjcmdgqf21z9rd0igss9mja"; name = "erc-hl-nicks"; }; @@ -7653,7 +7807,7 @@ sha256 = "1xsxykmhz34gmyj4jb26qfai7j95kzlc7vfydrajc6is7xlrwhfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-twitch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-twitch"; sha256 = "08vlwcxrzc2ndm52112z1r0qnz6jlmjhiwq2j3j59fbw82ys61ia"; name = "erc-twitch"; }; @@ -7674,7 +7828,7 @@ sha256 = "0kh4amx3l3a14qaiyvjyak1jbybs6n49mdvzjrd1i2vd1y74zj5w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erc-youtube"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erc-youtube"; sha256 = "12ylxkskkgfv5x7vlkib963ichb3rlmdzkf4zh8a39cgl8wsmacx"; name = "erc-youtube"; }; @@ -7695,7 +7849,7 @@ sha256 = "19jninbf0dhdw3kn4d38bxmklg0v7sh3m9dwj6z69w99r5pcw480"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ercn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ercn"; sha256 = "0yvis02bypw6v1zv7i326y8s6j0id558n0bdri52hr5pw85imnlp"; name = "ercn"; }; @@ -7716,7 +7870,7 @@ sha256 = "17i567nfm0rykimh6bpcc5f2l7wsf8zcdy2jzd7sgrl54dvb0g9i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erefactor"; sha256 = "0ma9sbrq4n8y5w7vvbhhgmw25aiykbq5yhxzm0knj32bgpviprw7"; name = "erefactor"; }; @@ -7737,7 +7891,7 @@ sha256 = "19m6chwc2awbsk5z03q1yhq84m481pff2609a8bxymcvm6yaamvf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ergoemacs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ergoemacs-mode"; sha256 = "0h99m0n3q41lw5fm33pc1405lrxyc8rzghnc6c7j4a6gr1d82s62"; name = "ergoemacs-mode"; }; @@ -7750,15 +7904,15 @@ erlang = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "erlang"; - version = "19.0pre1"; + version = "19.0pre2"; src = fetchFromGitHub { owner = "erlang"; repo = "otp"; - rev = "f68a3780fbcc836c7036b55db5ee1d0447213c8f"; - sha256 = "0yfnca0yqhhbys0snr5d24n9pal4s3rvci2l719ac70ci65iwcjq"; + rev = "2c9dba638a8bda92e3db2d5c07e6ba251330c7ca"; + sha256 = "1iix7lnz8crza36yk7kmfh4qw84jjqmdbiflcm52rrq9jmpw176y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/erlang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/erlang"; sha256 = "1gmrdkfanivb9l5lmkl0853snlhl62w34537r82w11z2fbk9lxhc"; name = "erlang"; }; @@ -7779,7 +7933,7 @@ sha256 = "0hn9i405nfhjd1h9vnwj43nxbbz00khrwkjq0acfyxjaz1shfac9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-async"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-async"; sha256 = "004798ckri5j72j0xvzkyciss1iz4lw9gya2749hkjxlamg14cn5"; name = "ert-async"; }; @@ -7796,10 +7950,10 @@ src = fetchgit { url = "https://bitbucket.org/olanilsson/ert-junit"; rev = "341c755e7b60f8d2081303951377968b1d1a6c23"; - sha256 = "0y06i97bbim6lmvk8l3adifwzhkjyrgyxv02ksshk4npr0b627gx"; + sha256 = "1hsp0jp9gyfr6rhfsjgi55x4lqjlh1w13y90rrlnbxb0499zpa33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-junit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-junit"; sha256 = "0bv22mhh1ahbjwi6s1csxkh11dmy0srabkddjd33l4havykxlg6g"; name = "ert-junit"; }; @@ -7820,7 +7974,7 @@ sha256 = "0rdgdslspzb4s0n4a68hnwfm8vm8baasa8nzrdinf0nryn7rrhbf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ert-runner"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ert-runner"; sha256 = "0fnb8rmjr5lvc3dq0fnyxhws8ync1lj5xp8ycs63z4ax6gmdqr48"; name = "ert-runner"; }; @@ -7841,7 +7995,7 @@ sha256 = "0jq4yp80wiphlpsc0429rg8n50g8l4lf78q0l3nywz2p93smjy9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-lib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-lib"; sha256 = "0mwvgf5385qsp91zsdw75ipif1h90xy277xdmrpwixsxd7abbn0n"; name = "es-lib"; }; @@ -7862,7 +8016,7 @@ sha256 = "04lll5sscbpqcq3sv5gsfky5qcj6asqql7fw1bp6g12qqf9r02nd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-mode"; sha256 = "1541c7d8gbi4mgxwk886hgsxhq7bfx8is7hjjg80sfn40z6kdwcp"; name = "es-mode"; }; @@ -7883,7 +8037,7 @@ sha256 = "0cjchwrhk7bw87bg10zgcwkga50rvs0jn5v2jf6bbsxbcqx2nfc9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/es-windows"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/es-windows"; sha256 = "112ngkan0hv3y7m71479f46x5gwdmf0vhbqrzs5kcjwlacqlrahx"; name = "es-windows"; }; @@ -7904,7 +8058,7 @@ sha256 = "0cairmqsaghl2ddb2v8zhcwy5ik756m7gkair8xrbigz4jklpcv9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esa"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esa"; sha256 = "1kbsv4xsp7p9v0g22had0dr7w5zsr24bgi2xzryy76699pxq4h6c"; name = "esa"; }; @@ -7925,7 +8079,7 @@ sha256 = "0nkmwwx224r50y2xnrz3v26l3ngqshvy5hs861gy4zagwllqfmvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-autojump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-autojump"; sha256 = "09l2680hknmdbwr4cncv1v4b0adik0c3sm5i9m3qbwyyxm8m41i5"; name = "eshell-autojump"; }; @@ -7946,7 +8100,7 @@ sha256 = "179xqh0rs8w3d03gygg9sy4qp5xqgfgl4c0ycrknip9zrnbmph4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eshell-z"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eshell-z"; sha256 = "14ixazj0nscyqsdv7brqnfr0q8llir1pwb91yhl9jdqypmadpm6d"; name = "eshell-z"; }; @@ -7967,7 +8121,7 @@ sha256 = "16r4j27j9yfdiy841w9q5ykkc6n3wrm7hvfacagb32mydk821ijg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/espuds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/espuds"; sha256 = "16yzw9l64ahf5v92jzb7vyb4zqxxplq6qh0y9rkfmvm59s4nhk6c"; name = "espuds"; }; @@ -7988,7 +8142,7 @@ sha256 = "0lvr14xlxsdad4ihywkpbwwj9lyal0w4p616ska5rk7gg5i8v74p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess"; sha256 = "02kz4fjxr0vrj5mg13cq758nzykizq4dmsijraxv46snvh337v5i"; name = "ess"; }; @@ -8009,7 +8163,7 @@ sha256 = "1ya2ay52gkrd31pmw45ban8kkxgnzhhwkzkypwdhjfccq3ys835x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-data-view"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-data-view"; sha256 = "0r2fzwayf3yb7fqk6f31x4xfqiiczwik8qw4rrvkqx2h3s1kz7i0"; name = "ess-R-data-view"; }; @@ -8030,7 +8184,7 @@ sha256 = "0q8pbaa6wahli6fh0kng5zmnypsxi1fr2bzs2mfk3h8vf4nikpv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-R-object-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-R-object-popup"; sha256 = "1dxwgahfki6d6ywh85ifk3kq6f2a1114kkd8xcv4lcpzqykp93zj"; name = "ess-R-object-popup"; }; @@ -8051,7 +8205,7 @@ sha256 = "1avb6dng4xgw3bp7bw0j60wl6s4y26alfys9vwwj29rlzvjrlh74"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ess-smart-underscore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ess-smart-underscore"; sha256 = "01pki1xa8zpgvldcbjwg6vmslj7ddf44hsx976xipc95vrdk15r2"; name = "ess-smart-underscore"; }; @@ -8072,7 +8226,7 @@ sha256 = "1pzbd2ka6h5ipiivfwfgq1hq80ww59xvyldmx406mdd5vn7yqk5z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esup"; sha256 = "0cv3zc2zzm38ki3kxq58g9sp4gsk3dffa398wky6z83a3zc02zs0"; name = "esup"; }; @@ -8093,7 +8247,7 @@ sha256 = "0k4vqlbk3h2snfiriraxhnjpdxgs49vcaazl191p9s2f799msd8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/esxml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/esxml"; sha256 = "0nn074abkxz7p4w59l1za586p5ya392xhl3sx92yys8a3194n6hz"; name = "esxml"; }; @@ -8114,7 +8268,7 @@ sha256 = "1xqc4lqzirpmr21w766g8vmcvvsq8b3hv9i7r27i5x1g0j4jabja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ethan-wspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ethan-wspace"; sha256 = "0k4kqkf5c6ysyhh1vpi9v4220yxm5ir3ippq2gmvvhnk77pg6hws"; name = "ethan-wspace"; }; @@ -8135,7 +8289,7 @@ sha256 = "077rj7yj6laxyhcsmrmlpg438962jv0fm2yiqx6i365fbgyx0hck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-in-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-in-repl"; sha256 = "10h5vy9wdiqf9dgk1d1bsvp93y8sfcxghzg8zbhhn7m5cqg2wh63"; name = "eval-in-repl"; }; @@ -8156,7 +8310,7 @@ sha256 = "0lwpl9akdxml9f51pgsv0g7k7mr8dvqm94l01i7vq8jl6vd6v6i5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eval-sexp-fu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eval-sexp-fu"; sha256 = "17cazf81z4cszflnfp66zyq2cclw5sp9539pxskdf267cf7r0ycs"; name = "eval-sexp-fu"; }; @@ -8177,7 +8331,7 @@ sha256 = "1a3y69s7lb24zdivxcpsjh9l6adxyjqxbpgradnj0q1n6kdyq679"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evalator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evalator"; sha256 = "0k6alxwg89gc4v5m2bxmzmj7l6kywhbh4036xgz19q28xnlbr9xk"; name = "evalator"; }; @@ -8193,11 +8347,11 @@ version = "1.2.12"; src = fetchhg { url = "https://bitbucket.com/lyro/evil"; - rev = "c3c1cec937c6"; - sha256 = "18wc427gjxhs0sa53nbid3h76zbsmfb5kdwqbvcly7awzfrgw5xx"; + rev = "136e0e5a8fc4"; + sha256 = "1f5kdaj0gh3kcqlsxly8kiq2a9k75j6nwnvjwwxl6c8n6rljly3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil"; sha256 = "09qrhy7l229w0qk3ba1i2xg4vqz8525v8scrbm031lqp30jp54hc"; name = "evil"; }; @@ -8218,7 +8372,7 @@ sha256 = "0lw7fg4gqwj30r0l6k2ni36sxqkf65zf0d0z3rxnpwbxlf8dlkrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-anzu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-anzu"; sha256 = "19cmc61l370mm4h2m6jw5pdcsvj4wcv9zpa8z7k1fjg57mwmmn70"; name = "evil-anzu"; }; @@ -8239,7 +8393,7 @@ sha256 = "1nh7wa4ynr7ln42x32znzqsmh7ijzy5ymd7rszf49l8677alvazq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-args"; sha256 = "1bwdvf1i3jc77bw2as1wr1djm8z3a7wms60694xkyqh0m909hs2w"; name = "evil-args"; }; @@ -8260,7 +8414,7 @@ sha256 = "183fdg7rmnnbps0knnj2kmhf1hxk0q91wbqx1flhciq6wq4rilni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-commentary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-commentary"; sha256 = "151iiimmkpn58pl9zn40qssfahbrqy83axyl9dcd6kx2ywv5gcxz"; name = "evil-commentary"; }; @@ -8281,7 +8435,7 @@ sha256 = "0cj17gk7cxia2p9xzqnlnmqqbw2afd3x61gfw9fpf65j9wik5hbz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-escape"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-escape"; sha256 = "0rlwnnshcvsb5kn7db5qy39s89qmqlllvg2z8cnxyri8bsssks4k"; name = "evil-escape"; }; @@ -8302,7 +8456,7 @@ sha256 = "0r9gif2sgf84z8qniz6chr32av9g2i38rlyms81m8ssghf0j86ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-iedit-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-iedit-state"; sha256 = "1dihyh7vqcp7kvfic613k7v33czr93hz04d635awrsyzgy8savhl"; name = "evil-iedit-state"; }; @@ -8323,7 +8477,7 @@ sha256 = "1k2zinchs0jjllp8zkpggckyy63dkyi5yig3p46vh4w45jdzysk5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-leader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-leader"; sha256 = "154s2nb170hzksmc87wnzlwg3ic3w3ravgsfvwkyfi2q285vmra6"; name = "evil-leader"; }; @@ -8344,7 +8498,7 @@ sha256 = "1n6r8xs670r5qp4b5f72nr9g8nlqcrx1v7yqqlbkgv8gns8n5xgh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-lisp-state"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-lisp-state"; sha256 = "117irac05fs73n7sgja3zd7yh4nz9h0gw5b1b57lfkav6y3ndgcy"; name = "evil-lisp-state"; }; @@ -8365,7 +8519,7 @@ sha256 = "040iam8ayb4q5f2w2cn40y9rgljv2gsa5yf0vky1ayjf1zl57g3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-magit"; sha256 = "10mhq6mzpklk5sj28lvd478dv9k84s81ax5jkwwxj26mqdw1ybg6"; name = "evil-magit"; }; @@ -8386,7 +8540,7 @@ sha256 = "01hccc49xxb6lnzr0lwkkwndbk4sv0jyyz3khbcxsgkpzjiydihv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-mark-replace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-mark-replace"; sha256 = "03cq43vlv1b53w4kw7mjvk026i8rzhhryfb27ddn6ipgc6xh68a0"; name = "evil-mark-replace"; }; @@ -8407,7 +8561,7 @@ sha256 = "0x6rc98g7hvvmlgq31n7qanylrld6dzvg6n8qgzp4s544l0dwfw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-matchit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-matchit"; sha256 = "01z69n20qs4gngd28ry4kn825cax5km9hn96i87yrvq7nfa64swq"; name = "evil-matchit"; }; @@ -8420,15 +8574,15 @@ evil-multiedit = callPackage ({ cl-lib ? null, emacs, evil, fetchFromGitHub, fetchurl, iedit, lib, melpaBuild }: melpaBuild { pname = "evil-multiedit"; - version = "1.2.4"; + version = "1.3.0"; src = fetchFromGitHub { owner = "hlissner"; repo = "evil-multiedit"; - rev = "02c78e55d1ab8f4fb64590b975eaea559917f048"; - sha256 = "0xizqg6azhd9iwkp91sgqkxgg1qhs05cafncbjxw7qvnv68y6qy6"; + rev = "a14dbfdd41d2baa789fbfbbf3b8148056c11b969"; + sha256 = "118a9bkj2i95xi4axa39mwm3nh519jzznzahbvlncf2279v8mrzr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-multiedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-multiedit"; sha256 = "0p02q9skqw2zhx7sfadqgs7vn518s72856962dam0xw4sqasplfp"; name = "evil-multiedit"; }; @@ -8449,7 +8603,7 @@ sha256 = "16wn74690572n3xpxvnvka524fzswxxni3dy98bwpvsqj6yx2ds5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-nerd-commenter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-nerd-commenter"; sha256 = "1pa5gh065hqn5mhs47qvjllwdwwafl0clk555mb6w7svq58r6i8d"; name = "evil-nerd-commenter"; }; @@ -8470,7 +8624,7 @@ sha256 = "13jg2xbh4p02x1nj77b6csb93hh56c1nv8kslcq2hjj3caipk4m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-numbers"; sha256 = "1lpmkklwjdf7ayhv99g9zh3l9hzrwm0hr0ijvbc7yz3n398zn1b2"; name = "evil-numbers"; }; @@ -8491,7 +8645,7 @@ sha256 = "09l0ph9rc941kr718zq0dw27fq6l7rb0h2003ihw7q0a5yr8fpk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-org"; sha256 = "18w07fbafry3wb87f55kd8y0yra3s18a52f3m5kkdlcz5zwagi1c"; name = "evil-org"; }; @@ -8512,7 +8666,7 @@ sha256 = "1ja9ggj70wf0nmma4xnc1zdzg2crq9h1cv3cj7cgwjmllflgkfq7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-quickscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-quickscope"; sha256 = "0xym1mh4p68i00l1lshywf5fdg1vw3szxp3fk9fwfcg04z6vd489"; name = "evil-quickscope"; }; @@ -8533,7 +8687,7 @@ sha256 = "1xz629qv1ss1fap397k48piawcwl8lrybraq5449bw1vvn1a4d9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-rsi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-rsi"; sha256 = "0mc39n72420n36kwyf9zpw1pgyih0aigfnmkbywb0yxgj7myc345"; name = "evil-rsi"; }; @@ -8554,7 +8708,7 @@ sha256 = "1jfi2k9dm0cc9bx8klppm965ydhdw17a2n664199vhxrap6g27yk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-search-highlight-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-search-highlight-persist"; sha256 = "0iia136js364iygi1mydyzwvizhic6w5z9pbwmhva4654pq8dzqy"; name = "evil-search-highlight-persist"; }; @@ -8575,7 +8729,7 @@ sha256 = "0j2m3rsszivyjhv8bjid5fdqaf1vwp8rf55b27y4vc2489wrw415"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-smartparens"; sha256 = "1viwrd6gfqmwhlil80pk68dikn3cjf9ddsy0z781z3qfx0j35qza"; name = "evil-smartparens"; }; @@ -8596,7 +8750,7 @@ sha256 = "1ip2ibgsir6rhj7ci2f128z18n1yrwd6pg0i42j1flc3m4shs6ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-snipe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-snipe"; sha256 = "0gcmpjw3iw7rjk86b2k6clfigp48vakfjd1a9n8qramhnc85rgkn"; name = "evil-snipe"; }; @@ -8617,7 +8771,7 @@ sha256 = "1rchanv0vq9rx6x69608dlpdybvkn8a9ymx8wzm7gqpz9qh6xqrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-space"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-space"; sha256 = "1asvh873r1xgffvz3nr653yn8h5ifaphnafp6wf1b1mja6as7f23"; name = "evil-space"; }; @@ -8638,7 +8792,7 @@ sha256 = "0vsf7yzlb2j7c5c7cnk81y1979psy6a9v7klg6c2j9lkcn3cqpvj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-textobj-anyblock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-textobj-anyblock"; sha256 = "03vk30s2wkcszcjxmh5ww39rihnag9cp678wdzq4bnqy0c6rnjwa"; name = "evil-textobj-anyblock"; }; @@ -8659,7 +8813,7 @@ sha256 = "1rskvkmz30xyy8xfjf2i35f3dxh663gb3plfy3f0j6z17i086jl2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-tutor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-tutor"; sha256 = "1hvc2w5ykrgh62n4sxqqqcdk5sd7nmh6xzv4mir5vf9y2dgqcvsn"; name = "evil-tutor"; }; @@ -8680,7 +8834,7 @@ sha256 = "07cmql8zsqz1qchq2mp3qybbay499dk1yglisig6jfddcmrbbggz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visual-mark-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visual-mark-mode"; sha256 = "1qgr2dfhfz6imnlznicl7lplajd1s8wny7mlxs1bkms3xjcjfi48"; name = "evil-visual-mark-mode"; }; @@ -8701,7 +8855,7 @@ sha256 = "11y2jrwbsw4fcx77zkhj1cn2hl1zcdqy00bv3mpbcrs03jywssrk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evil-visualstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evil-visualstar"; sha256 = "135l9hjfbpn0a6p53picnpydi9qs5vrk2rfn64gxa5ag2apcyycy"; name = "evil-visualstar"; }; @@ -8722,7 +8876,7 @@ sha256 = "0739v0m9vj70a55z0canslyqgafzys815i7a0r6bxj2f9iwq6rhb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/evm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/evm"; sha256 = "19l6cs5schbnph0pwhhj66gkxsswd4bmjpy79l9kxzpjf107wc03"; name = "evm"; }; @@ -8743,7 +8897,7 @@ sha256 = "0gs6bi3s2sszc6v2b26929azmn5513kvyin99n4d0ark1jdbjmv2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eww-lnum"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eww-lnum"; sha256 = "1y745z4wa90snizq2g0amdwwgjafd6hkrayn93ca50f1wghdbk79"; name = "eww-lnum"; }; @@ -8764,7 +8918,7 @@ sha256 = "0nhc3m88i6rl2y426ksmjbbaqwfrjnwbzqq1bvd6r0bkcwgfwfml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/exec-path-from-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/exec-path-from-shell"; sha256 = "1j6f52qs1m43878ikl6nplgb72pdbxfznkfn66wyzcfiz2hrvvm9"; name = "exec-path-from-shell"; }; @@ -8785,7 +8939,7 @@ sha256 = "0rvkhjfkhamr3ys9iarblfwvwq7n4wishdjgnwj1lx7m80h1hzbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/expand-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/expand-region"; sha256 = "1c7f1nqsqdc75h22fxxnyg0m4yxj6l23sirk3c71fqj14paxqnwg"; name = "expand-region"; }; @@ -8806,7 +8960,7 @@ sha256 = "106yh793scbyharsk1dvrirkj3c6666w8jqilpkaz78vwyw3zs5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/express"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/express"; sha256 = "0lhisy4ds96bwpc7k8w9ws1zi1qh0d36nhxsp36bqzfi09ig0nb9"; name = "express"; }; @@ -8827,7 +8981,7 @@ sha256 = "1k2j8szavyq2wy5c0skvs03a88cr9njy7y63b7knh2m92nw4830d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/extend-dnd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/extend-dnd"; sha256 = "0rknpvp8yw051pg3blvmjpp3c9a82jw7f10mq67ggbz98w227417"; name = "extend-dnd"; }; @@ -8848,7 +9002,7 @@ sha256 = "0jc5wv2hkc89yh5ypa324xlfqdna20msr63g30njxq4g2vd0iqa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/eyebrowse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/eyebrowse"; sha256 = "09fkzm8z8nkr4s9fbmfcjc80h50051f48v6n14l76xicglr5p861"; name = "eyebrowse"; }; @@ -8869,7 +9023,7 @@ sha256 = "095ka87144jms5gi9spjcmkq346a56kzzy3in6naaha0djd4d607"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/f"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/f"; sha256 = "0s7fqav0dc9g4y5kqjjyqjs90gi34cahaxyx2s0kf9fwcgn23ja2"; name = "f"; }; @@ -8890,7 +9044,7 @@ sha256 = "0crhkdbxz1ldbrvppi95g005ni5zg99z1271rkrnk5i6cvc4hlq5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fabric"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fabric"; sha256 = "1mkblsakdhvi10b67bv3j0jsf7hr8lf9sibmprvx8smqsih7l88m"; name = "fabric"; }; @@ -8911,7 +9065,7 @@ sha256 = "01l8dlfpyy97b17djbza46rq11xlbkhd5kn2r26r2xac8klj4pka"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/factlog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/factlog"; sha256 = "163482vfpa52b5ya5xps4qnclbaql1x0q54gqdwwmm04as8qbfz7"; name = "factlog"; }; @@ -8932,7 +9086,7 @@ sha256 = "05lwcwf412m717yhwpjrswqkm8c3i7391rmiwv2k8xc1vk6dpp4g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-battery"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-battery"; sha256 = "03rkfdkrzyal9abdiv8c73w10sm974hxf3xg5015hibfi6kzg8ii"; name = "fancy-battery"; }; @@ -8953,7 +9107,7 @@ sha256 = "10ds6nlzm1s5xsp53a52qlzrnph7in6gib67qhgnwpj33wp8gs91"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fancy-narrow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fancy-narrow"; sha256 = "15i86jz6rdpva1az7gqp1wbm8kispcfc8h6v9fqsbag9sbzvgcyv"; name = "fancy-narrow"; }; @@ -8974,7 +9128,7 @@ sha256 = "0kidb2kwjyrz93yy9gnwwsb60xx3k6npni2gj8q38w50lql5ja2l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastdef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastdef"; sha256 = "1cf4slxhcp2z7h9k3l31h06nnqsyb4smwnj55ivil2lm0fa0vlzj"; name = "fastdef"; }; @@ -8995,7 +9149,7 @@ sha256 = "0h32w63vv451797zi6206j529fd4j8l3fp7rqip3s8xn8d4728x1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fastnav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fastnav"; sha256 = "08hg256w8k9f5nzgpyl1jykbf28vmvv09kkhzs0s2zhwbl2158a5"; name = "fastnav"; }; @@ -9016,7 +9170,7 @@ sha256 = "03w68zbgprly45i6ps7iviwvjf3acbc7f7acvjpzj2plf0g5i19z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fcitx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fcitx"; sha256 = "0a8wd588c26p3czfp5hn2n46f2vwyg5v301sv0y07b55b1i3ynmx"; name = "fcitx"; }; @@ -9037,7 +9191,7 @@ sha256 = "1cxjygg05v8s96c8z6plk3hl34jaiwg7s7dl7dsk20rj5f54kgw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/feature-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/feature-mode"; sha256 = "0ryinmpqb3c91qcna6gbijcmqv3skxdc947dlr5s1w623z9nxgqg"; name = "feature-mode"; }; @@ -9058,7 +9212,7 @@ sha256 = "0fghhy5xqsdwal4fwlr6hxr5kpnfw71q79mxpp9db59ldnj9f5y9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fill-column-indicator"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fill-column-indicator"; sha256 = "0w8cmijv7ihij9yyncz6lixb6awzzl7n9qpjj2bks1d5rx46blma"; name = "fill-column-indicator"; }; @@ -9079,7 +9233,7 @@ sha256 = "1r9y9zschavi28c5ysrlh56vxszjfyhh5r36fhn74i0b5iiy15rx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/finalize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/finalize"; sha256 = "1n0w4kdzc4hv4pprv13lr88gh46slpxdvsc162nqm5mrqp9giqqq"; name = "finalize"; }; @@ -9100,7 +9254,7 @@ sha256 = "1xjb66pydm3yf0jxnm2mri98pxq3b26xvwjkaj1488qgj27i05jr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-by-pinyin-dired"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-by-pinyin-dired"; sha256 = "150hvih3mdd1dqffgdcv3nn4qhy86s4lhjkfq0cfzgngfwif8qqq"; name = "find-by-pinyin-dired"; }; @@ -9121,7 +9275,7 @@ sha256 = "13myami3vm5py9pp957kbfl9dd11z1a4vy0bbzqqnkgliim7pbsb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-project"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-project"; sha256 = "0aznnv82xhnilc9j4cdmcgh6ksv7bhjjm3pa76hynnyrfn7kq7wy"; name = "find-file-in-project"; }; @@ -9142,7 +9296,7 @@ sha256 = "0wbmmrd7brf4498pdyilz17rzv7221cj8sd4h11gac2r72f1q2md"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/find-file-in-repository"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/find-file-in-repository"; sha256 = "0q1ym06w2yn3nzpj018dj6h68f7rmkxczyl061mirjp8z9c6a9q6"; name = "find-file-in-repository"; }; @@ -9163,7 +9317,7 @@ sha256 = "0lwgbd9zwdv7qs39c3fp4hrc17d9wrwwjgba7a14zwrhb27m7j07"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fiplr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fiplr"; sha256 = "1a4w0yqdkz477lfyin4lb9k9qkfpx4350kfxmrqx6dj3aadkikca"; name = "fiplr"; }; @@ -9176,15 +9330,15 @@ firefox-controller = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild, moz, popwin }: melpaBuild { pname = "firefox-controller"; - version = "2.0"; + version = "2.1"; src = fetchFromGitHub { owner = "cute-jumper"; repo = "emacs-firefox-controller"; - rev = "26a2e4b9246a7b5415032799b742b998529fce9e"; - sha256 = "1rz56n2gmw11w2yxlhn0i8xmig9m8lxihgaikg65xmy9nqa5j7bj"; + rev = "a8af8cbf70afaf6b89a26d6ac69af8e92afc181f"; + sha256 = "0icgl88pwizwzkdqsxbwhnc6pdyqsfd7wgjnkvg3206i7hcqwpsp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firefox-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firefox-controller"; sha256 = "03y96b3l75w9al8ylijnlb8pcfkwddyfnh8xwig1b6k08zxfgal6"; name = "firefox-controller"; }; @@ -9205,7 +9359,7 @@ sha256 = "174x0qyrwswppc9p1q1nn4424r3zg7g49zk329k5aq18vyjz52d7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fireplace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fireplace"; sha256 = "1apcypznq23fc7xgy4xy1c5hvfvjx1xhyq3aaq1lf59v99zchciw"; name = "fireplace"; }; @@ -9226,7 +9380,7 @@ sha256 = "0s8rml5xbskvnjpi8qp7vqflxhh5yis6zr6ay2bxmd2chjlhli55"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/firestarter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/firestarter"; sha256 = "1cpx664hyrdnpb1jps1x6lm7idwlfjblkfygj48cjz9pzd6ld5mp"; name = "firestarter"; }; @@ -9247,7 +9401,7 @@ sha256 = "17djaz79spms9il71m4xdfjhm58dzswb6fpncngkgx8kxvcy9y24"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fish-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fish-mode"; sha256 = "0l6k06bs0qdhj3h8vf5fv8c3rbhiqfwszrpb0v2cgnb6xhwzmq14"; name = "fish-mode"; }; @@ -9268,7 +9422,7 @@ sha256 = "16rd23ygh76fs4i7rni94k8gwa9n360h40qmhm65snp31kqnpr1p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-input"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-input"; sha256 = "03xpr7rlv0xq1d9126j1fk0c2j7ssf366n0yc8yzm9vq32n9pp4p"; name = "fix-input"; }; @@ -9289,7 +9443,7 @@ sha256 = "1hj5jp4vbkcmnc8l2hqsvjc76f7c9zcsq8znwcwv2nv9xj9hlbkr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fix-word"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fix-word"; sha256 = "0a8w09cx8p5pkkd4533nd199axkhdhs2a7blp7syfn40bkscx6xc"; name = "fix-word"; }; @@ -9310,7 +9464,7 @@ sha256 = "1hnxdmzqmnp3dr7mpr58pjmigykb3cxwphxzia013kfi37ipf5a0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fixmee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fixmee"; sha256 = "0wnp6h8f547fsi1lkk4ajny7g21dnr76qfhxl82n0l5h1ps4w8mp"; name = "fixmee"; }; @@ -9338,7 +9492,7 @@ sha256 = "0acgyxl4kpfld6h6j54415ac8crk7byfs5lcysil9s5l3qrxjl3h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/floobits"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/floobits"; sha256 = "1jpk0q4mkf9ag1rqyai993nz5ngzfvxq9n9avmaaq59gkk9cjraf"; name = "floobits"; }; @@ -9359,7 +9513,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx"; sha256 = "04plfhrnw7jx2jaxhbhw4ypydfcb8v0x2m5hyacvrli1mca2iyf9"; name = "flx"; }; @@ -9380,7 +9534,7 @@ sha256 = "0sjybrcnb2sl33swy3q664vqrparajcl0m455gciiih2j87hwadc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flx-ido"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flx-ido"; sha256 = "00wcwbvfjbcx8kyap7rl1b6nsgqdwjzlpv6al2cdpdd19rm1vgdc"; name = "flx-ido"; }; @@ -9401,7 +9555,7 @@ sha256 = "1igsnps6yc4lh05ka17nwfl03yn26varglm5xhgka8p6vk1z906b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck"; sha256 = "045k214dq8bmrai13da6gwdz97a2i998gggxqswqs4g52l1h6hvr"; name = "flycheck"; }; @@ -9422,7 +9576,7 @@ sha256 = "14idjjz6fhmq806mmncmqnr9bvcjks6spin8z6jb0gqcg1dbhm06"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-apertium"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-apertium"; sha256 = "1cc15sljqs6gvb3wiw7n1wkd714qkvfpw6l1kg4lfx9r4jalcvw7"; name = "flycheck-apertium"; }; @@ -9443,7 +9597,7 @@ sha256 = "1c3igqfd42dm42kfjm2q2xgr673vws10n9jn2jjlsk4g33brc7h4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-cask"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-cask"; sha256 = "1lq559nyhkpnagncj68h84i3cq85vhdikr534kj018n2zcilsyw7"; name = "flycheck-cask"; }; @@ -9464,7 +9618,7 @@ sha256 = "1s2zq97d7ryif6rlbvriz36dh23wmwi67v4q6krl77dfzcs705b3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-checkbashisms"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-checkbashisms"; sha256 = "1rq0ymlr1dl39v0sfyjmdv4pq3q9116cz9wvgpvfgalq8759q5sz"; name = "flycheck-checkbashisms"; }; @@ -9485,7 +9639,7 @@ sha256 = "1i824iyjsg4d786kx5chsb64wlqd8vn2vsrhq6rmdx2x3gzdfcsx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-clojure"; sha256 = "1b20gcs6fvq9pm4nl2qwsf34sg6wxngdql921q2pyh5n1xsxhm28"; name = "flycheck-clojure"; }; @@ -9506,7 +9660,7 @@ sha256 = "11xc08xld758xx9myqjsiqz8vk3gh4d9c4yswswvky6mrx34c0y5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-color-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-color-mode-line"; sha256 = "0hw19nsh5h2l8qbp7brqmml2fhs8a0x850vlvq3qfd7z248gvhrq"; name = "flycheck-color-mode-line"; }; @@ -9527,7 +9681,7 @@ sha256 = "1ap5hgvaccmf2xkfvyp7rqcfjwmiy6mhr6ccgahxm2z0vm51kpyh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-dmd-dub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-dmd-dub"; sha256 = "0pg3sf7h6xqv65yqclhlb7fx1mp2w0m3qk4vji6m438kxy6fhzqm"; name = "flycheck-dmd-dub"; }; @@ -9548,7 +9702,7 @@ sha256 = "0frgyj57mrggq5ib6xi71696m97ch0bw6cc208d2qbnb55sf4fgb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-gometalinter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-gometalinter"; sha256 = "1bnvj5kwgbh0dv989rsjcvmcij1ahwcz0vpr6a8f2p6wwvksw1h2"; name = "flycheck-gometalinter"; }; @@ -9558,22 +9712,22 @@ license = lib.licenses.free; }; }) {}; - flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild }: + flycheck-haskell = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, flycheck, haskell-mode, let-alist, lib, melpaBuild, seq }: melpaBuild { pname = "flycheck-haskell"; - version = "0.7.2"; + version = "0.8"; src = fetchFromGitHub { owner = "flycheck"; repo = "flycheck-haskell"; - rev = "57756b8f0e4e0a775a702a1b8f2a4be7bb0088cc"; - sha256 = "0143lcn6g46g7skm4r6lqq09s8mr3268rikbzlh65qg80rpg9frj"; + rev = "ee3401d97cc5e8edc216f2369e9dea3d363e462c"; + sha256 = "0yryd346cp5zir3icldkhjzwjb0bkq8rlidbr62dry1cw9bic6z0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-haskell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-haskell"; sha256 = "12lgirz3j6n5ns2ikq4n41z0d33qp1lb5lfz1q11qvpbpn9d0jn7"; name = "flycheck-haskell"; }; - packageRequires = [ dash emacs flycheck haskell-mode let-alist ]; + packageRequires = [ dash emacs flycheck haskell-mode let-alist seq ]; meta = { homepage = "https://melpa.org/#/flycheck-haskell"; license = lib.licenses.free; @@ -9590,7 +9744,7 @@ sha256 = "136mdg21a8sqxhijsjsvpli7r7sb40nmf80p6gmgb1ghwmhlm8k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-hdevtools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-hdevtools"; sha256 = "0ahvai1q4x59ryiyccvqvjisgqbaiahx4gk8ssaxhblhj0sqga93"; name = "flycheck-hdevtools"; }; @@ -9611,7 +9765,7 @@ sha256 = "0qa5a8wzvzxwqql92ibc9s43k8sj3vwn7skz9hfr8av0skkhx996"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-irony"; sha256 = "0qk814m5s7mjba659llml0gy1g3045w8l1g73w2pnm1pbpqdfn3z"; name = "flycheck-irony"; }; @@ -9632,7 +9786,7 @@ sha256 = "1pdssw5k88ym5fczllfjv26sp4brlyrywnlzq5baha5pq91h9cb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ledger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ledger"; sha256 = "0807pd2km4r60wgd6jakscbx63ab22d9kvf1cml0ad8wynsap7jl"; name = "flycheck-ledger"; }; @@ -9653,7 +9807,7 @@ sha256 = "1phfarws2aajkgcl96hqa4ydmb1yncg10q2ldzf8ff6yd6mvk51l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ocaml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ocaml"; sha256 = "1cv2bb66aql2kj1y1gsl4xji8yrzrq6rd8hxxs5vpfsk47052lf7"; name = "flycheck-ocaml"; }; @@ -9674,7 +9828,7 @@ sha256 = "0aa8cnh9f0f2zr2kkba2kf9djzjnsd51fzj8l578pbj016zdarwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-package"; sha256 = "0068kpia17rsgjdmzsjnw0n6x5z9jvfxggxlzkszvwsx73mvcs2d"; name = "flycheck-package"; }; @@ -9695,7 +9849,7 @@ sha256 = "1da10q378k5kbcj0rrpzhm7r3ym4rfwc7v1ialcndbmflsn09m5s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pony"; sha256 = "18w1d7y3jsmsc4wg0909p72cnvbxzsmnirmrahhwgsb963fij5qk"; name = "flycheck-pony"; }; @@ -9716,7 +9870,7 @@ sha256 = "0v23yc8znzjp44lrpfzqb4hc3psad14hsnvqcp8f1yyhgvdx35n8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-pos-tip"; sha256 = "09i2jmwj8b915fhyczwdb1j7c551ggbva33avis77ga1s9v3nsf9"; name = "flycheck-pos-tip"; }; @@ -9737,7 +9891,7 @@ sha256 = "1xxvri9ax5cjrkxhjqhs7zqbch9cx8kvrn7sg611frl68qawkjsm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-status-emoji"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-status-emoji"; sha256 = "0p42424b1fsmfcjyl252vhblppmpjwd6br2yqh10fi60wmprvn2p"; name = "flycheck-status-emoji"; }; @@ -9758,7 +9912,7 @@ sha256 = "0azjr5mfb3hnb66m1b2319i035mn5i9qz24y7fj5crhnc9vp8w3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-tip"; sha256 = "0zab1zknrnsw5xh5pwzzcpz7p40bbywkf9zx99sgsd6b5j1jz656"; name = "flycheck-tip"; }; @@ -9779,7 +9933,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flycheck-ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flycheck-ycmd"; sha256 = "0m99ssynrqxgzf32d35n17iqyh1lyc6948inxpnwgcb98rfamchv"; name = "flycheck-ycmd"; }; @@ -9800,7 +9954,7 @@ sha256 = "1svj5n7mmzhq03azlv4n33rz0nyqb00qr8ihdbc8hh2xnp63j5rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-coffee"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-coffee"; sha256 = "1aig1d4fgjdg31vrg8k43z5hbqiydgfvxi45p1695s3kbdm8pr2d"; name = "flymake-coffee"; }; @@ -9821,7 +9975,7 @@ sha256 = "054ws88fcfz3hf3cha7dvndm52v5n4jc4vzif1lif44xq0iggwqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-css"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-css"; sha256 = "0kqm3wn9symqc9ivnh11gqgq8ql2bhpqvxfm86d8vwm082hd92c5"; name = "flymake-css"; }; @@ -9842,7 +9996,7 @@ sha256 = "1j35k52na02b59yglfb48w6m5qzydvzqfsylb8ax5ks0f287yf0c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-easy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-easy"; sha256 = "19p6s9fllgvs35v167xf624k5dn16l9fnvaqcj9ks162gl9vymn7"; name = "flymake-easy"; }; @@ -9863,7 +10017,7 @@ sha256 = "002s01cymgx4z4l3j2pqirg7899pljdx2hmbz8k6cksdxlymzmkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-gjshint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-gjshint"; sha256 = "19jcd5z4883z3fzlrdn4fzmsvn16f4hfnhgw4vbs5b0ma6a8ka44"; name = "flymake-gjshint"; }; @@ -9884,7 +10038,7 @@ sha256 = "1b3lf5jwan03k7rb97g4bb982dacdwsfdddnwc0inx9gs3qq1zni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haml"; sha256 = "0dmdhh12h4xrx6mc0qrwavngk2sx0l4pfqkjjyavabsgcs9wlgp1"; name = "flymake-haml"; }; @@ -9905,7 +10059,7 @@ sha256 = "0k1qc0r0gr7f9l5if2a67cv4k73z5yxd6vxd6l1bqw500y0aajxz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-haskell-multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-haskell-multi"; sha256 = "0cyzmmghwkkv6020s6n436lwymi6dr49i7gkci5n0hw5pdywcaij"; name = "flymake-haskell-multi"; }; @@ -9926,7 +10080,7 @@ sha256 = "1ygg51r4ym4x7h4svizwllsvr72x9np6jvjqpk8ayv3w2fpb9l31"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-hlint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-hlint"; sha256 = "0wq1ijhn3ypy31yk8jywl5hnz0r0vlhcxjyznzccwqbdc5vf7b2x"; name = "flymake-hlint"; }; @@ -9947,7 +10101,7 @@ sha256 = "00zkm3wqlss386qd6jiq0siga7c48n5ykh0vf9q5v83rmpd79yri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-jslint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-jslint"; sha256 = "1cq8fni4p0qhigx0qh34ypmcsbnilra1ixgnrn9mgg8x3cvcm4cm"; name = "flymake-jslint"; }; @@ -9968,7 +10122,7 @@ sha256 = "0rzlw80mi39147yqnpzcvw9wvr5svksd3kn6s3w8191f2kc6xzzv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-json"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-json"; sha256 = "1p5kajiycpqy2id664bs0fb1mbf73a43qqfdi4c57n6j9x7fxp4d"; name = "flymake-json"; }; @@ -9989,7 +10143,7 @@ sha256 = "0ggvmsjj6p6a7cwr2bzhlcf8ab4v6a2bz5djsscd2ryy570p367z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-less"; sha256 = "05k5daphxy94164c73ia7f4l1gv2cmlw8xzs8xnddg7ly22gjhi0"; name = "flymake-less"; }; @@ -10010,7 +10164,7 @@ sha256 = "11r982h5fhjkmm9ld8wfdip0ghinw523nm1w4fmy830g0bbkgkrq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-perlcritic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-perlcritic"; sha256 = "0hibnh463wzhvpix7gygpgs04gi6salwjrsjc6d43lxlsn3y1im8"; name = "flymake-perlcritic"; }; @@ -10031,7 +10185,7 @@ sha256 = "0dzyid0av9icp77wv0zcsygpw46z24qibq1ra0iwnkzl3kqvkyzh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-php"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-php"; sha256 = "12ds2l5kvs7fz38syp4amasbjkpqd36rlpajnb3xxll0hbk6vffk"; name = "flymake-php"; }; @@ -10052,7 +10206,7 @@ sha256 = "0l8qpcbzfi32h3vy7iwydx3hg2w60x9l3v3rabzjx412m5d00gsh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-python-pyflakes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-python-pyflakes"; sha256 = "0asbjxv03zkbcjayanv13qzbv4z7b6fi0z1j6yv7fl6q9mgvm497"; name = "flymake-python-pyflakes"; }; @@ -10073,7 +10227,7 @@ sha256 = "0d2vmpgr5c2cbpxcqm5x1ckfysbpwcbaa9frcnp2yfp8scvkvqj0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-ruby"; sha256 = "1shr6d03vx85nmyxnysglzlc1pz0zy3n28nrcmxqgdm02g197bzr"; name = "flymake-ruby"; }; @@ -10094,7 +10248,7 @@ sha256 = "0c74qdgy9c4hv3nyjnbqdzypbg9399vq3p5ngp5lasc7iz6vi0h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-sass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-sass"; sha256 = "0sz6n5r9pdphgvvaljg9zdwj3dqayaxzxmb4s8x4b05c8yx3ba0d"; name = "flymake-sass"; }; @@ -10115,7 +10269,7 @@ sha256 = "0c2lz1p91yhprmlbmp0756d96yiy0w92zf0c9vlp0i9abvd0cvkc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flymake-shell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flymake-shell"; sha256 = "13ff4r0k29yqgx8ybxz7hh50cjsadcjb7pd0075s9xcrzia5x63i"; name = "flymake-shell"; }; @@ -10136,7 +10290,7 @@ sha256 = "1g09s57b773nm9xqslzbin5i2h18k55nx00s5nnkvx1qg0n0mzkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-lazy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-lazy"; sha256 = "0lzazrhsfh5m7n57dzx0v46d5mg87wpwwkjzf5j9gpv1mc1xfg1y"; name = "flyspell-lazy"; }; @@ -10157,7 +10311,7 @@ sha256 = "1rk7fsill0salrhb4anbf698nd21nxj8pni35brbmv64nj9fhfic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/flyspell-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/flyspell-popup"; sha256 = "0wp15ra1ry6xpwal6mb53ixh3f0s4nps0rdyfli7hhaiwbr9bhql"; name = "flyspell-popup"; }; @@ -10178,7 +10332,7 @@ sha256 = "0r2j238iyxnww60xpbxggjmz6y2waayw4m51f0l39hszbhags2cv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fm"; sha256 = "118d8fbhlv6i2rsyfqdhi841p96j7q4fab5qdg95ip40wq02dg4f"; name = "fm"; }; @@ -10199,7 +10353,7 @@ sha256 = "0aj5qxzlfxxp7z27fiw9bvir5yi2zj0xzj5kbh17ix4wnhi03bhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/focus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/focus"; sha256 = "0jw26j8npyl3dgsrs7ap2djxmkafn2hl6gfqvi7v76bccs4jkyv8"; name = "focus"; }; @@ -10220,7 +10374,7 @@ sha256 = "1k8z30imlxvqm7lv12kgqdfgc5znxyvl9jxi8j2ymmwlgy11f726"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim"; sha256 = "0c9yxx45zlhb1h4ldgkjv7bndwlagpyingaaqn9dcsxidrvp3p5x"; name = "fold-dwim"; }; @@ -10241,7 +10395,7 @@ sha256 = "14jvbkahwvv4wb0s9vp8gqmlpv1d4269j5rsjxn79q5pawjzslxw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-dwim-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-dwim-org"; sha256 = "0812p351rzvqcfn00k92nfhlg3y772y4z4b9f0xqnpa935y6harn"; name = "fold-dwim-org"; }; @@ -10262,7 +10416,7 @@ sha256 = "1cbabpyp66nl5j8yhyj2jih4mhaljxvjh9ij05clai71z4598ahn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fold-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fold-this"; sha256 = "1iri4a6ixw3q7qr803cj2ik7rvmww1b6ybj5q2pvkf1v25r8655d"; name = "fold-this"; }; @@ -10283,7 +10437,7 @@ sha256 = "1k90w8v5rpswqb8fn1cc8sq5w12gf4sn6say5dhvqd63512b0055"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/font-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/font-utils"; sha256 = "0k33jdchjkj7j211a23kfp5axg74cfsrrq4axsb1pfp124swh2n5"; name = "font-utils"; }; @@ -10304,7 +10458,7 @@ sha256 = "0qq13jhn9i2ls6n3fbay4i2r0hfs426pkmmif43b87gjxb510irc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fontawesome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fontawesome"; sha256 = "07hn4s929xklc74j8s6pd61rxmxw3911dq47wql77vb5pijv6dr3"; name = "fontawesome"; }; @@ -10325,7 +10479,7 @@ sha256 = "1x4l24cbgc4apv9cfzf6phmj5pm32hfdgv37wpbh7ml8v3p8xm0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/forecast"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/forecast"; sha256 = "0whag2n1120384w304g0w4bqr7svdxxncdhnz4rznfpxlgiw2rsc"; name = "forecast"; }; @@ -10346,7 +10500,7 @@ sha256 = "199kybf2bvywqfnwr5w893km82829k1j7sp079y6s2601hq8ylw9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/foreman-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/foreman-mode"; sha256 = "0p3kwbld05wf3dwcv0k6ynz727fiy0ik2srx4js9wvagy57x98kv"; name = "foreman-mode"; }; @@ -10367,7 +10521,7 @@ sha256 = "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/form-feed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/form-feed"; sha256 = "1abwjkzi3irw0jwpv3f584zc72my9n8iq8zp5s0354xk6iwrl1rh"; name = "form-feed"; }; @@ -10388,7 +10542,7 @@ sha256 = "0mikksamljps1czacgqavlnzzhgs8s3f8q4jza6v3csf8kgp5zd0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/format-sql"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/format-sql"; sha256 = "0684xqzs933vj9d3n3lv7afk4gii41kaqykbb05cribaswapsanj"; name = "format-sql"; }; @@ -10409,7 +10563,7 @@ sha256 = "1zy45s1m1injwr4d1qvpnvfvv4nkkv9mricshxjannsjfbz09ra7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fountain-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fountain-mode"; sha256 = "1i55gcjy8ycr1ww2fh1a2j0bchx1bsfs0zd6v4cv5zdgy7vw6840"; name = "fountain-mode"; }; @@ -10430,7 +10584,7 @@ sha256 = "1vznkbly0lyh5kri9lcgy309ws96q3d5m1lghck9l8ain8hphhqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/frame-restore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/frame-restore"; sha256 = "0b321iyf57nkrm6xv8d1aydivrdapdgng35zcnrg298ws2naysvm"; name = "frame-restore"; }; @@ -10451,7 +10605,7 @@ sha256 = "1c3yx9j3q8fkfiay4nzcabsq9i4ydqf6vxk8vv80h78gg9afrzrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fringe-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fringe-helper"; sha256 = "1vki5jd8jfrlrjcfd12gisgk12y20q3943i2qjgg4qvcj9k28cbv"; name = "fringe-helper"; }; @@ -10472,7 +10626,7 @@ sha256 = "00api7q86mrfv8z2g7skh34mhlkxwymf4gfpxa6zcvirhlpglyxr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fsharp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fsharp-mode"; sha256 = "07pkj30cawh0diqhrp3jkshgsd0i3y34rdnjb4af8mr7dsbsxb6z"; name = "fsharp-mode"; }; @@ -10488,10 +10642,10 @@ src = fetchgit { url = "git://factorcode.org/git/factor.git"; rev = "905ec06d864537fb6be9c46ad98f1b6d101dfbf0"; - sha256 = "0ip7azxi5nvp8vvi15ds46mgs0fmi7gq97f2iz1c7m67ml5wi2g7"; + sha256 = "146iqy3rjr5yv19wbaq5dqm3kjxyjly7i27qjvk0yj1yja2y4j5k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuel"; sha256 = "0m24p2788r4xzm56hm9kmpzcskwh82vgbs3hqfb9xygpl4isp756"; name = "fuel"; }; @@ -10512,7 +10666,7 @@ sha256 = "0c3w3xs2jbdqgsqw0qmdbwii6p395qfznird4gg0hfr7lby2kmjq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/full-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/full-ack"; sha256 = "09ikhyhpvkcl6yl6pa4abnw6i7yfsx5jkmzypib94w7khikvb309"; name = "full-ack"; }; @@ -10533,7 +10687,7 @@ sha256 = "1narmlcd8ycwkmsrgk64l7q0ljsbq2fsikl8hjbrsc20nma032m4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fullframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fullframe"; sha256 = "08sh8lmb6g8asv28fcb36ilcn0ka4fc6ka0pnslid0h4c32fxp2a"; name = "fullframe"; }; @@ -10554,7 +10708,7 @@ sha256 = "0m7fcw0cswypiwi5abg6vhw7a3agx9vhp10flbbbji6lblb0fya8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/function-args"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/function-args"; sha256 = "13yfscr993pll5yg019v9dwy71g123a166w114n2m78h0rbnzdak"; name = "function-args"; }; @@ -10575,7 +10729,7 @@ sha256 = "1g7my9ha5cnwg3pjwa86wncg5gphv18xpnpmj3xc3vg7z5m45rss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fuzzy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fuzzy"; sha256 = "1hwdh9bx4g4vzzyc20vdwxsii611za37kc9ik40kwjjk62qmll8h"; name = "fuzzy"; }; @@ -10596,7 +10750,7 @@ sha256 = "0c3g0yfclczdh6nxmg9lljjf288zibqy51bhh1b1cgdmxcbpg8bv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fvwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fvwm-mode"; sha256 = "07y32cnp4qfhncp7s24gmlxljdrj5miicinfaf4gc7hihb4bkrkb"; name = "fvwm-mode"; }; @@ -10609,15 +10763,15 @@ fwb-cmds = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "fwb-cmds"; - version = "0.4.0"; + version = "1.0.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "fwb-cmds"; - rev = "93504c2022799a84cc14d598e1413f8d9df4ee0e"; - sha256 = "08qnyr945938hwjg1ypkf2x4mfxbh3bbf1xrgz1rk2ddrfv7hmkm"; + rev = "57973f99cf4a185b5cccbf941478fad25e8428c3"; + sha256 = "1c7h043lz10mw1hdsx9viksy6q79jipz2mm18y1inlbqhmg33n2b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fwb-cmds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fwb-cmds"; sha256 = "0wnjvi0v0l2h1mhwlsk2d8ggwh3nk7pks48l55gp18nmj00jxycx"; name = "fwb-cmds"; }; @@ -10638,7 +10792,7 @@ sha256 = "0vfh4azibv71mj86bgl4rfbm96pw9l95r87mwhzx42j36rxffl73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fxrd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fxrd-mode"; sha256 = "17zimg64lqc1yh9gnp5izshkvviz996aym7q6n9p61a4kqq37z4r"; name = "fxrd-mode"; }; @@ -10659,7 +10813,7 @@ sha256 = "0rjn4z7ssl1jy0brvsci44mhpig3zkdbcj8gcylzznhz0qfk1ljj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/fzf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/fzf"; sha256 = "0jjzm1gq85fx1gmj6nqaijnjws9bm8hmk40ws3x7fmsp41qq5py0"; name = "fzf"; }; @@ -10680,7 +10834,7 @@ sha256 = "16x3fz2ljrmqhjy7w96fhp3j9ja2gib042c363yfrzwa7q5rxzd2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gams-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gams-mode"; sha256 = "0hx9mv4sqskz4nn7aks64hqd4vn3m7b34abzhy9bnmyw6d5zzfci"; name = "gams-mode"; }; @@ -10701,7 +10855,7 @@ sha256 = "1q9bz294bc6bplwfrfzsczh444v9152wv7zm2l1pcpwv8n8581p6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gather"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gather"; sha256 = "1f0cqqp1a7w8g1pfvzxxb0hjrxq4m79a4n85dncqj2xhjxrkm0xk"; name = "gather"; }; @@ -10722,7 +10876,7 @@ sha256 = "1667zln7bav0bdhrc4b5z36n8rn36xvwh4y9ffgns67zfgwi64kk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/geiser"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/geiser"; sha256 = "067rrjvyn5sz60w9h7qn542d9iycm2q4ryvx3n6xlard0dky5596"; name = "geiser"; }; @@ -10743,7 +10897,7 @@ sha256 = "08cw1fa25kbhbq2sp1cpn90bz38i9hjfdj93xf6wvki55b52s0nn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/genrnc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/genrnc"; sha256 = "1nwbdscl0yh9j1n421can93m6s8j9dkyb3xmpampr6x528g6z0lm"; name = "genrnc"; }; @@ -10764,7 +10918,7 @@ sha256 = "0344w4sbd6wlgl13j163v0hzjw9nwhvpr5s7658xsdd90wp4i701"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/german-holidays"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/german-holidays"; sha256 = "0fgrxdgyl6va6axjc5l4sp90pyqaz5zha1g73xyhbxblshm5dwxn"; name = "german-holidays"; }; @@ -10785,7 +10939,7 @@ sha256 = "1m9ra9qp7bgf6anfqyn56n3xa9a25ran10k9wd355qknd5skq1zz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggo-mode"; sha256 = "1403x530n90jlfz3lq2vfiqx84cxsrhgs6hhmniq960cjj31q35p"; name = "ggo-mode"; }; @@ -10806,7 +10960,7 @@ sha256 = "1qjh7av046ax4240iw40hv5fc0k23c36my9hili7fp4y2ak99l8n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ggtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ggtags"; sha256 = "1cmry4knxbx9257ivhfxsd09z07z3g3wjihi99nrwmhb9h4mpqyw"; name = "ggtags"; }; @@ -10827,7 +10981,7 @@ sha256 = "0a5v91k9gm9vv15d3m8czicv8n39f0hvqhcr6lfw0w82n26xwsms"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gh"; sha256 = "1141l8pas3m755yzby4zsan7p81nbnlch3kj1zh69qzjpgqp30c0"; name = "gh"; }; @@ -10848,7 +11002,7 @@ sha256 = "1m5q2s9nxm0m18njaxzryjly8rl3m598r94nn53xpazd4i5ln8cg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc"; sha256 = "02nc7a9khqpd4ca2snam8dq72m53q8x7v5awx56bjq31z6vcmav5"; name = "ghc"; }; @@ -10869,7 +11023,7 @@ sha256 = "1ywwyc2kz1c1s26c412nmzh55cinh84cfiazyyi3jsy5zzwhrbhi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ghc-imported-from"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ghc-imported-from"; sha256 = "10cxz4c341lknyz4ns63bri00mya39278xav12c73if03llsyzy5"; name = "ghc-imported-from"; }; @@ -10890,7 +11044,7 @@ sha256 = "0q3ps5f6mr9hyf6nq1wshcm1z6a5yhskqd7dbbwq5dm78552z6z8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gist"; sha256 = "053fl8aw0ram9wsabzvmlm5w2klwd2pgcn2w9r1yqfs4xqja5sd3"; name = "gist"; }; @@ -10911,7 +11065,7 @@ sha256 = "06ws3x5qa92drmn6rcp502jk2yil6q9gkzdmb2gww9gb2g695wl5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git"; sha256 = "1nd2yvfgin13m368gjn7xah99glspnam4g4fh348x4makxcaw8w5"; name = "git"; }; @@ -10932,7 +11086,7 @@ sha256 = "0psmr7749nzxln4b500sl3vrf24x3qijp12ir0i5z4x25k72hrlh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-auto-commit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-auto-commit-mode"; sha256 = "0nf4n63xnzcsizjk1yl8qvqj9wjdqy57kvn6r736xvsxwzd44xgl"; name = "git-auto-commit-mode"; }; @@ -10953,7 +11107,7 @@ sha256 = "0a3ws852ypi34ash39srkwzkfish4n3c5lma10d9xzddjrwapgj9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-command"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-command"; sha256 = "1hsxak63y6648n0jkzl5ajxg45w84qq8vljvjh0bmwfrbb67kwbg"; name = "git-command"; }; @@ -10974,7 +11128,7 @@ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-commit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-commit"; sha256 = "1i7122fydqga68cilgzir80xfq77hnrw75zrvn52mjymfli6aza2"; name = "git-commit"; }; @@ -10995,7 +11149,7 @@ sha256 = "1gr57n6chhbzazqxb0vwsddais14zpg9c5qpfn6igw0qzhkxn8x0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter"; sha256 = "19s344i95piixlzq4mjgmgjw7cy8af02z6hg89jjjdbxrfl4i2fg"; name = "git-gutter"; }; @@ -11016,7 +11170,7 @@ sha256 = "18jpa5i99x0gqizs2qbqr8c1jlza8x9vpb6wg9zqd4np1p6q4lan"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe"; sha256 = "10k07dzmkxsxzwc70vpv05rxjyps9494y6k7yhlv8d46x7xjyp0z"; name = "git-gutter-fringe"; }; @@ -11037,7 +11191,7 @@ sha256 = "1c7ijbpa7xw831k55cdm2gl8r597rxnp22jcmqnfpwqkqmk48ln9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter-fringe+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter-fringe+"; sha256 = "1zkjb8p08cq2nqskn79rjszlhp9mrblplgamgi66yskz8qb1bgcc"; name = "git-gutter-fringe-plus"; }; @@ -11058,7 +11212,7 @@ sha256 = "101hracd77mici778x3ixwrcicd6fqkcr9z76kapkr0dq5z42yjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-gutter+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-gutter+"; sha256 = "1w78p5cz6kyl9kmndgvwnfrs80ha707s8952hycrihgfb6lixmp0"; name = "git-gutter-plus"; }; @@ -11079,7 +11233,7 @@ sha256 = "02p73q0kl9z44b9a2bhqg03mkqx6gf61n88qlwwg4420dxrf7sbc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-lens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-lens"; sha256 = "1vv3s89vk5ncinqh2f724z0qbbzp8g4y5y670ryy56w1l6v2acfb"; name = "git-lens"; }; @@ -11100,7 +11254,7 @@ sha256 = "0a1kxdz05ly9wbzyxcb79xlmy11q38xplf5s8w8klmyajdn43g1j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-link"; sha256 = "1vqabnmdw8pxd84c15ghh1rnglwb5i4zxicvpkg1ci8xalayn1c7"; name = "git-link"; }; @@ -11121,7 +11275,7 @@ sha256 = "139yivbxdpmv8j6qz406769b040nbmj3j8r28n9gqy54zlwblgv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-messenger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-messenger"; sha256 = "1rnqsv389why13cy6462vyq12qc2zk58p01m3hsazp1gpfw2hfzn"; name = "git-messenger"; }; @@ -11142,7 +11296,7 @@ sha256 = "1hyq3il03cm6apfawps60r4km8r6pw0vphzba30smsqfk50z3ya3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-ps1-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-ps1-mode"; sha256 = "15gswi9s0m3hrsl1qqyjnjgbglsai95klbdp51h3pcq7zj22wkn6"; name = "git-ps1-mode"; }; @@ -11163,7 +11317,7 @@ sha256 = "1brz9dc7ngywndlxbqbi3pbjbjydgqc9bjzf05lgx0pzr1ppc3w3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-timemachine"; sha256 = "0nhl3g31r4a8j7rp5kbh17ixi16w32h80bc92vvjj3dlmk996nzq"; name = "git-timemachine"; }; @@ -11184,7 +11338,7 @@ sha256 = "0igawn43i81icshimj5agv33ab120hd6182knlrn3i46p7lcs3lx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/git-wip-timemachine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/git-wip-timemachine"; sha256 = "02fi51k6l23cgnwjp507ylkiwb8azmnhc0fips68nwn9dghzp6dw"; name = "git-wip-timemachine"; }; @@ -11205,7 +11359,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitattributes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitattributes-mode"; sha256 = "1gjs0pjh6ap0h54savamzx94lq6vqrg58jxqaq5n5qplrbg15a6x"; name = "gitattributes-mode"; }; @@ -11226,7 +11380,7 @@ sha256 = "0j0w6ywhiapmx7dk20yw3zgf8803kmccnjsr664am3g85kbb644v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig"; sha256 = "126znl1c4vwgskj7ka9id8v2bdrdn5nkyx3mmc6cz9ylc27ainm7"; name = "gitconfig"; }; @@ -11247,7 +11401,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitconfig-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitconfig-mode"; sha256 = "0hqky40kcgxdnghnf56gpi0xp7ik45ssia1x84v0mvfwqc50dgn1"; name = "gitconfig-mode"; }; @@ -11268,7 +11422,7 @@ sha256 = "07vgnmfn0kbg3h3vhf3xk443yi1b55761x881xlmw9sr9nraa578"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-browse-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-browse-file"; sha256 = "03xvgxlw7wmfby898din7dfcg87ihahkhlav1n7qklw6qi7skjcr"; name = "github-browse-file"; }; @@ -11289,7 +11443,7 @@ sha256 = "18c169nxvdl7iv18pyqx690ldg6pkc8njaxdg1cww6ykqzqnfxh7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/github-clone"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/github-clone"; sha256 = "0ffrm4lmcj3d9kx3g2d5xbiih7hn4frs0prjrvcjq8acvsbc50q9"; name = "github-clone"; }; @@ -11310,7 +11464,7 @@ sha256 = "0ksqfr0l415ynhxpqpcb84bk2bapvczwnpikp45kmfqq91p61xfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitignore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitignore-mode"; sha256 = "1i98ribmnxr4hwphd95f9hcfm5wfwgdbcxw3g0w17ws7z0ir61mn"; name = "gitignore-mode"; }; @@ -11331,7 +11485,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gitlab"; sha256 = "0vxsqfnipgapnd2ijvdnkspk68dlnki3pkpkzg2h6hyazmzrsqnq"; name = "gitlab"; }; @@ -11352,7 +11506,7 @@ sha256 = "0j3pay3gd1wdnpc853gy5j68hbavrwy6cc2bgmd12ag29xki3hcg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail-message-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail-message-mode"; sha256 = "0py0i7b893ihb8l1hmk3jfl0xil450znadcd18q7svr3zl2m0gkk"; name = "gmail-message-mode"; }; @@ -11373,7 +11527,7 @@ sha256 = "0p6n52m3y56nx7chwvmnslrnwc0xmh4fmmlkbkfz9n58hlmw8x1x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmail2bbdb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmail2bbdb"; sha256 = "03jhrk4vpjim3ybzjxy7s9r1cgjysj9vlc4criz5k0w7vqz3r28j"; name = "gmail2bbdb"; }; @@ -11394,7 +11548,7 @@ sha256 = "0x0a94bfkk72kqyr5m6arx450qsg1axmp5r0c4r9m84z8j08r4v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gmpl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gmpl-mode"; sha256 = "1f60xim8h85jmqpvgfg402ff8mjd66gla8fa0cwi7l18ijnjblpz"; name = "gmpl-mode"; }; @@ -11415,7 +11569,7 @@ sha256 = "160qm8xf0yghygb52p8cykhb5vpg9ww3gjprcdkcxplr4b230nnc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnome-calendar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnome-calendar"; sha256 = "00clamlm5b42zqggxywdqrf6s2dnsxir5rpd8mjpyc502kqmsfn6"; name = "gnome-calendar"; }; @@ -11436,7 +11590,7 @@ sha256 = "1nvyjjjydrimpxy4cpg90si7sr8lmldbhlcm2mx8npklp9pn5y3a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gntp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gntp"; sha256 = "1ywj3p082g54dcpy8q4jnkqfr12npikx8yz14r0njxdlr0janh4f"; name = "gntp"; }; @@ -11457,7 +11611,7 @@ sha256 = "0bwri3cvm2vr27kyqkrddm28fs08axnd4nm9amfgp54xp20bn4yn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnuplot"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnuplot"; sha256 = "06c5gqf02fkra8c52xck1lqvf4yg45zfibyf9zqmnbwk7p2jxrds"; name = "gnuplot"; }; @@ -11478,7 +11632,7 @@ sha256 = "08j8x0iaz5s9q0b68d8h3153w0z6vak5l8qgw3dd1drz5p9xnvyw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-desktop-notify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-desktop-notify"; sha256 = "08k32vhdp6i8c03rp1k6b5jmvj5ijplj26mdblrgasklcqbdnlfs"; name = "gnus-desktop-notify"; }; @@ -11499,7 +11653,7 @@ sha256 = "1i3f67x2l9l5c5agspbkxr2mmh3rpq3009d8yzh6r1lih0b4hril"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gnus-x-gm-raw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gnus-x-gm-raw"; sha256 = "1a5iccghzqmcndql2bppvr48535sf6jbvc83iypr1031z1b5k4wg"; name = "gnus-x-gm-raw"; }; @@ -11520,7 +11674,7 @@ sha256 = "03snnra31b5j6iy94gql240vhkynbjql9b4b5j8bsqp9inmbsia3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-autocomplete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-autocomplete"; sha256 = "1ldsq81a167dk2r2mvzyp3v3j2mxc4l9p6b12i7pv8zrjlkhma5a"; name = "go-autocomplete"; }; @@ -11541,7 +11695,7 @@ sha256 = "05yc0nylg3457an5j7yp3x23157j0hbi21qhcpgsa01144mwnwln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-direx"; sha256 = "0dq5d7fsld4hww8fl68c18qp6fl3781dqqwd98cg68bihw2wwni7"; name = "go-direx"; }; @@ -11562,7 +11716,7 @@ sha256 = "1n5fnlfq9cy9rbn2hizqqsy0iryw5g2blaa7nd75ya03gxm10p8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-eldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-eldoc"; sha256 = "1k115dirfqxdnb6hdzlw41xdy2dxp38g3vq5wlvslqggha7gzhkk"; name = "go-eldoc"; }; @@ -11583,7 +11737,7 @@ sha256 = "1fm6xd3vsi8mqh0idddjpfxlsmz1ljmjppw3qkxl1vr0qz3598k3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-errcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-errcheck"; sha256 = "11a75h32cd5h5xjv30x83k60s49k9fhgis31358q46y2gbvqp5bs"; name = "go-errcheck"; }; @@ -11596,15 +11750,15 @@ go-impl = callPackage ({ emacs, fetchFromGitHub, fetchurl, go-mode, lib, melpaBuild }: melpaBuild { pname = "go-impl"; - version = "0.1"; + version = "0.11"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-go-impl"; - rev = "b6e963bad01c1350eec20e4d399d2c7ccbf6d59d"; - sha256 = "00sgmwvkick6grcqlpyi4a1p3g1w91a77ig7dwhsydgbvws1yfr9"; + rev = "eb80a75ea006c503c09b709e656f94fec24bfb09"; + sha256 = "01j67naqvajhg5ccb5yk4dz7hg6rrc6k9q6ppbm77c0aacjxcr39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-impl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-impl"; sha256 = "09frwpwc080rfpwkb63yv47dyj741lrpyrp65sq2bn4sf03xw0cx"; name = "go-impl"; }; @@ -11625,7 +11779,7 @@ sha256 = "0g0vjm125wmw5nd38r3d7gc2h4pg3a9yskcbk1mzg9vf6gbhr0hx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-mode"; sha256 = "1852zjxandmq0cpbf7m56ar3rbdi7bx613gdgsf1bg8hsdvkgzfx"; name = "go-mode"; }; @@ -11646,7 +11800,7 @@ sha256 = "1a6vg2vwgnafb61pwrd837fwlq5gs80wawbzjsnykawnmcaag8pm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/go-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/go-scratch"; sha256 = "11ahvmxbh67wa39cymymxmcpkq0kcn5jz0rrvazjy2p1hx3x1ma5"; name = "go-scratch"; }; @@ -11667,7 +11821,7 @@ sha256 = "00igv83hiyx7x3pf2grmjpd379brn33fm85f05k104mkkrhg99nm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/golden-ratio"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/golden-ratio"; sha256 = "15fkrv0sgpzmnw2h4fp2gb83d8s42khkfq1h76l241njjayk1f81"; name = "golden-ratio"; }; @@ -11688,7 +11842,7 @@ sha256 = "14dz9wjp8ym86a03pw5y1sd51zw83d6485hpq8mh8zm0j1fba0y0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-this"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-this"; sha256 = "0hg9y1b03aiamyn3mam3hyxmxy21wygxrnrww91zcbwlzgp4dd2c"; name = "google-this"; }; @@ -11709,7 +11863,7 @@ sha256 = "0dzr1nb1s1sh8rv5wr9xfjd5xna54vp03y3h4q59vmnynsn64m9b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/google-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/google-translate"; sha256 = "1crgzdd32mk6hrawdypg496dwh51wzwfb5wqw4a2j5l8y958xf47"; name = "google-translate"; }; @@ -11730,7 +11884,7 @@ sha256 = "1d1x5ffpn9gq9byd0qavxr081sl3qf0lihdxfdqvhwd815kravxk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goose-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goose-theme"; sha256 = "18kfz61mhf8pvp3z5cdvjklla9p840p1dazylrgjb1g5hdwqw0n9"; name = "goose-theme"; }; @@ -11751,7 +11905,7 @@ sha256 = "1idhnsl8vkq3v3nbvhkmxmvgqp97aycxvmkj7894mj9hvhib68l9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotest"; sha256 = "1kan3gykhci33jgg67jjiiz7rqlz5mpxp8sh6mb0n6kpfmgb4ly9"; name = "gotest"; }; @@ -11772,7 +11926,7 @@ sha256 = "1lgljlfxs3gwxr072bvpl55r0b4z78wiww2g093sy7dgxgzgzmq6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gotham-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gotham-theme"; sha256 = "0jars6rvf7hkyf71vq06mqki1r840i1dvv43dissqjg5i4lr79cl"; name = "gotham-theme"; }; @@ -11793,7 +11947,7 @@ sha256 = "188q7jr1y872as3w32m8lf6vwl2by1ibgdk6zk7dhpcjwd0ik7x7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-gem"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-gem"; sha256 = "06vy9m01qccvahxr5xn0plzw9knl5ig7gi5q5r1smfx92bmzkg3a"; name = "goto-gem"; }; @@ -11814,7 +11968,7 @@ sha256 = "1f0zlvva7d7iza1v79yjp0bm7vd011q4cy14g1saryll32z115z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/goto-last-change"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/goto-last-change"; sha256 = "1yl9p95ls04bkmf4d6az72pycp27bv7q7wxxzvj8sj97bgwvwajx"; name = "goto-last-change"; }; @@ -11827,15 +11981,15 @@ govc = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, json-mode, lib, magit-popup, melpaBuild, s }: melpaBuild { pname = "govc"; - version = "0.6.2"; + version = "0.7.1"; src = fetchFromGitHub { owner = "vmware"; repo = "govmomi"; - rev = "9051bd6b44125d9472e0c148b5965692ab283d4a"; - sha256 = "0d8vsm6481746j3r446q5wgppnv2kvq522sd9896xvy32avxsrw3"; + rev = "d39fd6858eeb5a8ac81a103063eaccd50c2b3e17"; + sha256 = "0mqhk6jaayjv5jnkkr0sd3nqk9f7asnk5ib6y488l9gs5nfvazrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/govc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/govc"; sha256 = "1ivgaziv25wlzg6y4zh8x7mv97pnyhi7p8jpvgh5fg5lnqpzhl4v"; name = "govc"; }; @@ -11856,7 +12010,7 @@ sha256 = "0k86lrb55d701nj6pvlw3kjp1dcd3lzfya0hv6q56c529y69d782"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gradle-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gradle-mode"; sha256 = "0lx9qi93wmiy9pxjxqp68scbcb4bx88b6jiqk3y8jg5cajizh24g"; name = "gradle-mode"; }; @@ -11877,7 +12031,7 @@ sha256 = "1npsjniazaq20vz3kvwr8p30ivc6x24r9a16rfcwhr5wjx3nn91b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails"; sha256 = "177y6xv35d2dhc3pdx5qhpywlmlqgfnjpzfm9yxc8l6q2rgs8irw"; name = "grails"; }; @@ -11898,7 +12052,7 @@ sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-mode"; sha256 = "1zdlmdkwyaj2zns3xwmqpil83j7857aj2070kvx8xza66dxcnlm4"; name = "grails-mode"; }; @@ -11919,7 +12073,7 @@ sha256 = "0xnj0wp0na53l0y8fiaah50ij4r80j8a29hbjbcicska21p5w1s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grails-projectile-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grails-projectile-mode"; sha256 = "0dy8v2mila7ccvb7j5jlfkhfjsjfk3bm3rcy84m0rgbqjai67amn"; name = "grails-projectile-mode"; }; @@ -11940,7 +12094,7 @@ sha256 = "1202fwwwdr74q6s5jv1n0mvmq4n9mra85l14hdhwh2kks513s6vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grandshell-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grandshell-theme"; sha256 = "1mnnjsw1kx40b6ws8wmk25fz9rq8rd70xia9cjpwdfkg7kh8xvsa"; name = "grandshell-theme"; }; @@ -11961,7 +12115,7 @@ sha256 = "1f34bhjxmbf2jjrkpdvqg2gwp83ka6d5vrxmsxdl3r57yc6rbrwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene"; sha256 = "1wz3rvd8b7gx5d0k7yi4dd69ax5bybcm10vdc7xp4yn296lmyl9k"; name = "graphene"; }; @@ -11994,7 +12148,7 @@ sha256 = "1bidfn4x5lb6dylhadyf05g4l2k7jg83mi058cmv76av1glawk17"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphene-meta-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphene-meta-theme"; sha256 = "1cqdr93lccdpxkzgap3r3qc92dh8vqgdlnxvqkw7lrcbs31fvf3q"; name = "graphene-meta-theme"; }; @@ -12015,7 +12169,7 @@ sha256 = "1zk664ilyz14p11csmqgzs73gx08hy32h3pnyymzqkavmgb6h3s0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/graphviz-dot-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/graphviz-dot-mode"; sha256 = "04rkynsrsk6w4sxn1pc0b9b6pij1p7yraywbrk7qvv05fv69kri2"; name = "graphviz-dot-mode"; }; @@ -12036,7 +12190,7 @@ sha256 = "0xcj1kqzgxifhrhpl9j2nfpnkd6213ix5z7f97269v3inpzaiyf5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grapnel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grapnel"; sha256 = "019cdx1wdx8sc2ibqwgp1akgckzxxvrayyp2sv806gha0kn6yf6r"; name = "grapnel"; }; @@ -12056,7 +12210,7 @@ sha256 = "0mnwmsn078hz317xfz6c05r7narx3k8956v1ajz5myxx8xrcr24z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grass-mode"; sha256 = "1lq6bk4bwgcy4ra3d9rlca3fk87ydg7xnnqcqjg0pw4m9xnr3f7v"; name = "grass-mode"; }; @@ -12075,7 +12229,7 @@ sha256 = "0rqpgc50z86j4waijfm6kw4zjmzqfii6nnvyix4rkd4y3ryny1x2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grin"; sha256 = "0mvzwmws5pi6hpzgkc43fjxs98ngkr0jvqbclza2jbbqawifzzbk"; name = "grin"; }; @@ -12096,7 +12250,7 @@ sha256 = "1bq73kcx744xnlm2yvccrzlbyx91c492sg7blx2a9z643v3gg1zs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grizzl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grizzl"; sha256 = "0354xskqzxc38l14zxqs31hadwh27v9lyx67y3hnd94d8abr0qcb"; name = "grizzl"; }; @@ -12117,7 +12271,7 @@ sha256 = "0wy8iw12b9bs7xza8jjnjvggr59rgbsgn1kk2g0pj0nppvfdrvjm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/groovy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/groovy-mode"; sha256 = "1pxw7rdn56klmr6kw21lhzh7zhp338gyf54ypsml64ibzr1x9kal"; name = "groovy-mode"; }; @@ -12138,7 +12292,7 @@ sha256 = "14h0rcd3nkw3pmx8jwip20p6rzl9qdkip5g52gfjjbqfvaffsrkd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gruber-darker-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gruber-darker-theme"; sha256 = "0vn4msixb77xj6p5mlfchjyyjhzah0lcmp0z82s8849zd194fxqi"; name = "gruber-darker-theme"; }; @@ -12159,7 +12313,7 @@ sha256 = "0zpmhjwj64s72iv3dgsy07pfh20f25ngsy3pszmlrfkxk0926d8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/grunt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/grunt"; sha256 = "1qdzqcrff9x97kyy0d4j636d5i751qja10liw8i0lf4lk6n0lywz"; name = "grunt"; }; @@ -12180,7 +12334,7 @@ sha256 = "1dfd22629gz0c8r4wplvbn0n7bm20549mg5chq289s826ca0kxqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/gscholar-bibtex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/gscholar-bibtex"; sha256 = "0d41gr9amf9vdn9pl9lamhp2swqllxslv9r3wsgzqvjl7zayd1az"; name = "gscholar-bibtex"; }; @@ -12201,7 +12355,7 @@ sha256 = "1bmcvn8a7g9ahpv2fww673hx9pa7nnrj9kpljq65azf61vq2an2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key"; sha256 = "0zjrdvppcg8b2k6hfdj45rswc1ks9xgimcr2yvgpc8prrwk1yjsf"; name = "guide-key"; }; @@ -12222,7 +12376,7 @@ sha256 = "040mcfhj2gggp8w1pgip7rxb1bnb23rxlm02wl6x1qv5i0q7g5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guide-key-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guide-key-tip"; sha256 = "0h2vkkbxq361dkn6irm1v19qj7bkhxcjljiksd5wwlq5zsq6bd06"; name = "guide-key-tip"; }; @@ -12243,7 +12397,7 @@ sha256 = "1y46qd9cgkfb0wp2cvksjncyp77hd2jnr4bm4zafqirc3qhbysx0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/guru-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/guru-mode"; sha256 = "0j25nxs3ndybq1ik36qyqdprmhav4ba8ny7v2z61s23id8hz3xjs"; name = "guru-mode"; }; @@ -12264,7 +12418,7 @@ sha256 = "1c49lfm5saafxks591qyy2nilymxz3aqlxpsmnad5d0kfhvjr47z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hackernews"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hackernews"; sha256 = "1x1jf5gkhmpiby5rmy0sziywh6c1f1n0p4f6dlz6ifbwns7har6a"; name = "hackernews"; }; @@ -12285,7 +12439,7 @@ sha256 = "0d3xmagl18pas19zbpg27j0lmdiry23df48z4vkjsrcllqg25v5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ham-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ham-mode"; sha256 = "000qrdby7d6zmp5066vs4gjlc9ik0ybrgcwzcbfgxb16w1g9xpmz"; name = "ham-mode"; }; @@ -12306,7 +12460,7 @@ sha256 = "0fmr7ji8x5ki9fzybpbg3xbhzws6n7ffk7d0zf9jl1x3jd8d6988"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haml-mode"; sha256 = "0ih0m7zr6kgn6zd45zbp1jgs1ydc5i5gmq6l080wma83v5w1436f"; name = "haml-mode"; }; @@ -12327,7 +12481,7 @@ sha256 = "08l6p9n2ggg4filad1k663qc2gjgfbia4knnnif4sw7h92yb31jl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardcore-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardcore-mode"; sha256 = "1bgi1acpw4z7i03d0i8mrd2hpjn6hyvkdsk0ks9q380yp9mqmiwd"; name = "hardcore-mode"; }; @@ -12348,7 +12502,7 @@ sha256 = "0j9z46j777y3ljpai5czdlwl07f0irp4fsk4677n11ndyqm1amb5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hardhat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hardhat"; sha256 = "16pdbpm647ag9cadmdm75nwwyzrqsd9y1b4zgkl3pg669mi5vl5z"; name = "hardhat"; }; @@ -12369,7 +12523,7 @@ sha256 = "0rqxi668wra1mfzq4fqscjghis5gqnwpazgidgix13brybaxydx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/harvest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/harvest"; sha256 = "1qfhfzjwlnqpbq4kfxvs97fa3xks8zi02fnwv0ik8wb1ppbb77qd"; name = "harvest"; }; @@ -12390,7 +12544,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs"; sha256 = "1wkh7qws35c32hha0p9rpjz5pls2844920nh919lvp2wmq9l6jd6"; name = "haskell-emacs"; }; @@ -12411,7 +12565,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-base"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-base"; sha256 = "1fwkds6qyhbxxdgxfzmgd7dlcxr08ynrrg5jdp9r7f924pd536vb"; name = "haskell-emacs-base"; }; @@ -12432,7 +12586,7 @@ sha256 = "1qgqsy7wnqyzkc3b0wixxb8mapmgpi36dignvf8w2raw9ma3q2n0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-emacs-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-emacs-text"; sha256 = "1j18fhhra6lv32xrq8jc6l8i56fgn68da81wymcimpmpbp0hl5fy"; name = "haskell-emacs-text"; }; @@ -12453,7 +12607,7 @@ sha256 = "1hxjqr448z7sfk3wb48s1y4q51870gb2zv5bfam30lvwxbl3znkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-mode"; sha256 = "0wijvcpfdbl17iwzy47vf8brkj2djarfr8y28rw0wqvbs381zzwp"; name = "haskell-mode"; }; @@ -12474,7 +12628,7 @@ sha256 = "0b3d7rvqvvcsp51aqfhl0zg9zg8j0p6vlfvga6jp9xc7626vh6f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-snippets"; sha256 = "10bvv7q694fahcpm83v8lpqihg1gvfzrp1hdzwiffxydfvdbalh2"; name = "haskell-snippets"; }; @@ -12494,7 +12648,7 @@ sha256 = "00bjmww8pc9jr4ssqcv7k0migbxl1c8qs2l1khf25fxvgd1nyy02"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haskell-tab-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haskell-tab-indent"; sha256 = "0vdfmy56w5yi202nbd28v1bzj97v1wxnfnb5z3dh9687p2abgnr7"; name = "haskell-tab-indent"; }; @@ -12507,15 +12661,15 @@ haxor-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "haxor-mode"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "krzysztof-magosa"; repo = "haxor-mode"; - rev = "5a85955b64820a0e126ee0bd7954ef5b102dde93"; - sha256 = "14m8z13nvfqqgx40vzzbn0z9crwi3hhacmk1zfbv9cmhs95dwy6l"; + rev = "9bc95e03db30633ea8ac487e69af093b519fc604"; + sha256 = "0ylsb3ry3fh3pir347v4m3dqf8ig0gcv0k8m3yp2j847mniwkdr3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/haxor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/haxor-mode"; sha256 = "1y4m058whdqnkkf9s6hzi0h6w0fc8ajfawhpjj0wqjam4adnfkq5"; name = "haxor-mode"; }; @@ -12536,7 +12690,7 @@ sha256 = "0hiw226gv73jh7s3jg4p1c15p4km4rs7i9ab4wgpkl5lg4vrz5i6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hcl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hcl-mode"; sha256 = "1wrs9kj6ahsdnbn3fdaqhclq1ia6w4x726hjvl6pyk01sb0spnin"; name = "hcl-mode"; }; @@ -12549,15 +12703,15 @@ helm = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, helm-core, lib, melpaBuild, popup }: melpaBuild { pname = "helm"; - version = "1.9.5"; + version = "1.9.6"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "40c0032f0d2bc91970830414efb64e5783d391df"; - sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy"; + rev = "84115895421601a82de65d7da6fa0e70a6deb79b"; + sha256 = "11bnibhnci1cpxrdlcxzdi6m6zsyn6c51gi6h2a9xp60fcm57h5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm"; sha256 = "0xsf4rg7kn0m5wjlbwhd1mc38lg2822037dyd0h66h6x2gbs3fd9"; name = "helm"; }; @@ -12578,7 +12732,7 @@ sha256 = "0ps86zpyywibjwcm9drmamla979ad61fyqr8d6bv71fr56k9ak21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ack"; sha256 = "1a8sc5gd2g57dl9g18wyydfmihy74yniwhjr27h7vxylnf2g3pni"; name = "helm-ack"; }; @@ -12599,7 +12753,7 @@ sha256 = "0ybxjvhzpsg8k9j1315ls6xa3pqysm5xabn94xla99hc0n98mpw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ag"; sha256 = "050qh5xqh8lwkgmz3jxm8gql5nd7bq8sp9q6mzm2z7367qy4qqyf"; name = "helm-ag"; }; @@ -12620,7 +12774,7 @@ sha256 = "015p5sszd54x81qm96gx6xwjkvbi4f3j9i2nhcvlkk75s95w1ijv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-aws"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-aws"; sha256 = "0sjgdjpznjxsf6nlv2ah45fw17j8j5apdphd1fp43rjv1lskkgc5"; name = "helm-aws"; }; @@ -12641,7 +12795,7 @@ sha256 = "0d6h4gbb69abxxgm85pdi5rsaf9h72yryg72ykd5633i1g4s8a76"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-backup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-backup"; sha256 = "182jbm36yzayxi9y3vhpyn25ivrgay37sncqvah35vbw52lnjcn3"; name = "helm-backup"; }; @@ -12662,7 +12816,7 @@ sha256 = "011k37p4vnzm1x8vyairllanvjfknskl20bdfv0glf64xgbdpfil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bm"; sha256 = "1dnlcvn0zv4qv4ii4j0h9r8w6vhi3l0c5aa768kblh5r2rf4bjjh"; name = "helm-bm"; }; @@ -12683,7 +12837,7 @@ sha256 = "1j9xmlidipsfbz0kfxwz0c6hi9xsbk36h6i30wqdd0ls0zw5xm30"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-bundle-show"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-bundle-show"; sha256 = "1af5g233kjf04m2fryizk51a1s2mcmj36zip5nyb8skcsfl4riq7"; name = "helm-bundle-show"; }; @@ -12704,7 +12858,7 @@ sha256 = "108584bmadgidqkdfvf333zkyb5v9f84pasz5h01fkh57ks8by9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-c-yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-c-yasnippet"; sha256 = "0jwj4giv6lxb3h7vqqb2alkwq5kp0shy2nraik33956p4l8dfs90"; name = "helm-c-yasnippet"; }; @@ -12725,7 +12879,7 @@ sha256 = "1gwg299s8ps0q97iw6p515gwn73rjk1icgl3j7cj1s143njjg122"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-circe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-circe"; sha256 = "12jfzg03573lih2aapvv5h2mi3pwqc9nrmv538ivjywix5117k3v"; name = "helm-circe"; }; @@ -12746,7 +12900,7 @@ sha256 = "1l61csd1gqz7kg5zjx60cfy824g42p682z7pk0rqzlrz8498wvkh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-commandlinefu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-commandlinefu"; sha256 = "150nqib0sr4n35vdj1xrxcja8gkv3chzhdbgkjxqgkz2yq10xxnd"; name = "helm-commandlinefu"; }; @@ -12759,15 +12913,15 @@ helm-core = callPackage ({ async, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "helm-core"; - version = "1.9.5"; + version = "1.9.6"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm"; - rev = "40c0032f0d2bc91970830414efb64e5783d391df"; - sha256 = "1acmf3xv8afayxvdyqv5vpvv0v9msak5kqk03xxjznbl395x0asy"; + rev = "84115895421601a82de65d7da6fa0e70a6deb79b"; + sha256 = "11bnibhnci1cpxrdlcxzdi6m6zsyn6c51gi6h2a9xp60fcm57h5f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-core"; sha256 = "1dyv8rv1728vwsp6vfdq954sp878jbp3srbfxl9gsgjnv1l6vjda"; name = "helm-core"; }; @@ -12788,7 +12942,7 @@ sha256 = "0xnqkc4z22m41v5lgf87dd8xc4gmf932zbnbdhf9xic1gal1779c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-cscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-cscope"; sha256 = "13a76wc1ia4c0v701dxqc9ycbb43d5k09m5pfsvs8mccisfzk9y4"; name = "helm-cscope"; }; @@ -12809,7 +12963,7 @@ sha256 = "0s503q56acv70i5qahrdgk3nhvdpb3wa22a8jh1kvb7lykaw74ai"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-dash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-dash"; sha256 = "1cnxssj2ilszq94v5cc4ixblar1nlilv9askqjp9gfnkj2z1n9cy"; name = "helm-dash"; }; @@ -12830,7 +12984,7 @@ sha256 = "1cm2vaw0j1x2w2m45k6iqbzm7nydfdx1x89673vsvb90whdgvjbp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-descbinds"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-descbinds"; sha256 = "1890ss4pimjxskzzllf57fg07xbs8zqcrp6r8r6x989llrfvd1h7"; name = "helm-descbinds"; }; @@ -12843,15 +12997,15 @@ helm-firefox = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-firefox"; - version = "1.1"; + version = "1.2"; src = fetchFromGitHub { owner = "emacs-helm"; repo = "helm-firefox"; - rev = "ca1a800c2564650e67651ee62159e9f1c1ba1135"; - sha256 = "0vmlpj6zfif5f3wzgq8lkfqprl3z5gjsqj86347krblgfzhqlz30"; + rev = "eed223c2b0ce7dc2af3649d27eaef1603ad01f31"; + sha256 = "1v4kmw4hflvmy5v8mlp2mm284809alxybqszvv4j6dhjxyg4xz6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-firefox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-firefox"; sha256 = "0677nj0zsk11vvp3q3xl9nk8dhz3ki9yl3kfb57wgnmprp109wgs"; name = "helm-firefox"; }; @@ -12872,7 +13026,7 @@ sha256 = "1fg786m4m6x7brbbchpdf4pwvwma7sn4597p5lzmhvh187z6g525"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-flycheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-flycheck"; sha256 = "038f9294qc0jnkzrrjxm97hyhwa4sca3wdsjbaya50cf0g4cmk7b"; name = "helm-flycheck"; }; @@ -12893,7 +13047,7 @@ sha256 = "00ls9v3jdpz3wka90crd193z3ipwnf1b0slmldn4vb9ivrndh6wn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghc"; sha256 = "1q5ia8sgpflv2hhvw7hjpkfb25vmrjwlrqz1f9qj2qgmki5mix2d"; name = "helm-ghc"; }; @@ -12914,7 +13068,7 @@ sha256 = "0y379qap3mssz9nslb08vfzq5ihqcm156fbx0dszgz9d6xgkpdhw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ghq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ghq"; sha256 = "14f3cbsj7jhlhrp561d8pasllnx1cmi7jk6v2fja7ghzj76dnvq6"; name = "helm-ghq"; }; @@ -12935,7 +13089,7 @@ sha256 = "1hx9m18dfpl97xaskadhqdrd8syk271shxjasn3jnqa8a07m2983"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-git-grep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-git-grep"; sha256 = "1ww6a4q78w5hnwikq7y93ic2b7x070c27r946lh6p8cz1k4b8vqi"; name = "helm-git-grep"; }; @@ -12956,7 +13110,7 @@ sha256 = "1sbhh3dmb47sy3r2iw6vmvbq5bpjac4xdg8i5a0m0c392a38nfqn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-github-stars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-github-stars"; sha256 = "1r4mc4v71171sq9rbbhm346s92fb7jnvvl91y2q52jqmrnzzl9zy"; name = "helm-github-stars"; }; @@ -12977,7 +13131,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gitlab"; sha256 = "010ihx3yddhb8j3jqcssc49qnf3i7xlz0s380mpgrdxgz6yahsmd"; name = "helm-gitlab"; }; @@ -12998,7 +13152,7 @@ sha256 = "0h3iql8dxq80vpr1cv7fdaw0aniykp2rfzh07j5941jkiy4q63h0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-go-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-go-package"; sha256 = "102yhn1xg83l67yaq3brn35a03fkvqqhad10rq0h39n4i1slq3z6"; name = "helm-go-package"; }; @@ -13019,7 +13173,7 @@ sha256 = "0zyspn9rqfs3hkq8qx0q1w5qiv30ignbmycyv0vn3a6q7a5fsnhx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-gtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-gtags"; sha256 = "1kbpfqhhbxmp3f70h91x2fws9mhx87zx4nzjjl29lpl93vf8xckl"; name = "helm-gtags"; }; @@ -13032,15 +13186,15 @@ helm-hatena-bookmark = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-hatena-bookmark"; - version = "2.2.1"; + version = "2.2.2"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-hatena-bookmark"; - rev = "8f3e9a55a66f8a48e25bbd49f8e75d5fc1f907f2"; - sha256 = "0s7xrk4wqyqmq4rd2zlx7ysl90rpsnqn9l6vg8y1byqdg9cvrqsx"; + rev = "8350a600d3e03f1ec7dc899cc0b2e323b12518bb"; + sha256 = "0hmvyyhddpf831cad35c9z9fv5mpdq6qg4nzbdghlqs9pf7ik6h2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hatena-bookmark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hatena-bookmark"; sha256 = "14091zrp4vj7752rb5s3pkyvrrsdl7iaj3q9ys8rjmbsjwcv30id"; name = "helm-hatena-bookmark"; }; @@ -13061,7 +13215,7 @@ sha256 = "1imfzz6cfdq7fgrcgrafy2nln929mgh31vybk9frm7a9jpamqdxp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-hayoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-hayoo"; sha256 = "0xdvl6q2rpfsma4hx8m4snbd05s4z0bi8psdalixywlp5s4vzr32"; name = "helm-hayoo"; }; @@ -13082,7 +13236,7 @@ sha256 = "0bz2ngw816jvpw1a10j31y5hf1knz0mzz60l073h33qci11jbwid"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ispell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ispell"; sha256 = "0qyj6whgb2p0v231wn6pvx4awvl1wxppppqqbx5255j8r1f3l1b0"; name = "helm-ispell"; }; @@ -13103,7 +13257,7 @@ sha256 = "1nd562lffc41r3y5x7y46f37ra97avllk2m95w23f9g42h47f1ar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-lobsters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-lobsters"; sha256 = "0dkb78n373kywxj8zba2s5a2g85vx19rdswv9i78xjwv1lqh8cpp"; name = "helm-lobsters"; }; @@ -13124,7 +13278,7 @@ sha256 = "0azs971d7pqd4ddxzy7bfs52cmrjbafwrcnf57afw39d772rzpdf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-git"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-git"; sha256 = "08rsy9479nk03kinjfkxddrq6wi4sx2a0wrz37cl2q517qi7sibj"; name = "helm-ls-git"; }; @@ -13145,7 +13299,7 @@ sha256 = "1hma79i69l8ilkr3l4b8zqk3ny62vqr1ym2blymia4ibwk4zqbda"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-ls-hg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-ls-hg"; sha256 = "0ca0xn7n8bagxb504xgkcv04rpm1vxhx2m77biqrx5886pwl25bh"; name = "helm-ls-hg"; }; @@ -13166,7 +13320,7 @@ sha256 = "17ls0bplnja2qvg3129x2irgsgs7l4bjj0qi7b9z16i6knjkwfya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-make"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-make"; sha256 = "1r6jjy1rlsii6p6pinbz7h6gcw4vmcycd3vj338bfbnqp5rrf2mc"; name = "helm-make"; }; @@ -13187,7 +13341,7 @@ sha256 = "03588hanfa20pjp9w1bqy8wsf5x6az0vfq0bmcnr4xvlf6fhkyxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-migemo"; sha256 = "1cjvb1lm1fsg5ky63fvrphwl5a7r7xf6qzb4mvl06ikj8hv2h33x"; name = "helm-migemo"; }; @@ -13208,7 +13362,7 @@ sha256 = "1srx5f0s9x7zan7ayqd6scxfhcvr3nkd4yzs96hphd87rb18apzk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mode-manager"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mode-manager"; sha256 = "1w9svq1kyyj8mmljardhbdvykb334nq1y18s956g4rvqyas2ciyd"; name = "helm-mode-manager"; }; @@ -13229,7 +13383,7 @@ sha256 = "0gknncyhr2392xkvghgy5mh6gdv6qzvswidx2wy04ypb4s0vxgq2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-mt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-mt"; sha256 = "04hx8cg8wmm2w8g942nc9mvm12ammmjnx4k61ljrq76smd8s3x2a"; name = "helm-mt"; }; @@ -13250,7 +13404,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-nixos-options"; sha256 = "1nsi4hfw53iwn29fp33dkri1c6w8kdyn4sa0yn2fi6144ilmq933"; name = "helm-nixos-options"; }; @@ -13271,7 +13425,7 @@ sha256 = "1hq1nnmgkx0a8sv6g8k4v9f0102qg7jga0hcjnr8lcji51nqrcya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-open-github"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-open-github"; sha256 = "1wqlwg21s9pjgcrwr8kdrppinmjn235nadkp4003g0md1d64zxpx"; name = "helm-open-github"; }; @@ -13292,7 +13446,7 @@ sha256 = "02yjnag9wr9dk93z41f0i5mqij9bz57fxkv4nddabyc18k7zfrhj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-org-rifle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-org-rifle"; sha256 = "0hx764vql2qgw9i8qrr3kkn23lw6jx3x604dm1y33ig6a15gy3a3"; name = "helm-org-rifle"; }; @@ -13313,7 +13467,7 @@ sha256 = "1zyjxrrda7nxxjqczv2p3sfimxy2pq734kf51j6v2y0biclc4bk3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-orgcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-orgcard"; sha256 = "1a56y8fny7qxxidc357n7l3yi7h66hidhvwhkam8y5wk6k61460p"; name = "helm-orgcard"; }; @@ -13334,7 +13488,7 @@ sha256 = "14ad0b9d07chabjclffjyvnmrasar1di9wmpzf78bw5yg99cbisw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-package"; sha256 = "1qab2abx52xcqrnxzl0m3533ngp8m1cqmm3hgpzgx7yfrkanyi4y"; name = "helm-package"; }; @@ -13355,7 +13509,7 @@ sha256 = "1r2ndmrw5ivawb940j8jnmqzxv46qrzd3cqh9fvxx5yicf020fjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pages"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pages"; sha256 = "1v3w8100invb5wsmm3dyl41pjs7s889s3b1rlr6vlcspa1ncv3wj"; name = "helm-pages"; }; @@ -13376,7 +13530,7 @@ sha256 = "01cj2897hqz02mfz32nxlyyp59iwm0gz1zj11s8ll7pwy9q3r90g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-perldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-perldoc"; sha256 = "1qx0g81qcqanjiz5fxysagjhsxaj31g6nsi2hhdgq4x4nqrlmrhb"; name = "helm-perldoc"; }; @@ -13397,7 +13551,7 @@ sha256 = "0bgpd50ningqyzwhfinfrn6gqacard5ynwllhg9clq0f683sbck2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-proc"; sha256 = "1bq60giy2bs9m3hlbc5nwvy51702a98s0vqass3b290hdgki4bnx"; name = "helm-proc"; }; @@ -13418,7 +13572,7 @@ sha256 = "1q7hfj8ldwivhjp9ns5pvsn0ds6pyvl2zhl366c22s6q8jmbr8ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-project-persist"; sha256 = "1n87kn1n3453mpdj6amyrgivslskmnzdafpspvkz7b0smf9mv2ld"; name = "helm-project-persist"; }; @@ -13439,7 +13593,7 @@ sha256 = "0jm6nnnjyd4kmm1knh0mq3xhnw2hvs3linwlynj8yaliqvlv6brv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pt"; sha256 = "1imhy0bsm9aldv0pvf88280qdya01lznxpx5gi5wffhrz17yh4pi"; name = "helm-pt"; }; @@ -13460,7 +13614,7 @@ sha256 = "1jy9l4an2aqynj86pw2qxpzw446xm376n2ykiz17qlimqbxhwkgz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-purpose"; sha256 = "0am8fy7ihk4hv07a6bnk9mwy986h6i6qxwpdmfhajzga71ixchg6"; name = "helm-purpose"; }; @@ -13481,7 +13635,7 @@ sha256 = "1ik0vllakh73kc2zbgii4sm33n9pj388gaz69j4drz2mik307zvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-pydoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-pydoc"; sha256 = "1sh7gqqiwk85kx89l1sihlkb8ff1g9n460nwj1y1bsrpfl6if4j7"; name = "helm-pydoc"; }; @@ -13491,22 +13645,22 @@ license = lib.licenses.free; }; }) {}; - helm-qiita = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: + helm-qiita = callPackage ({ fetchFromGitHub, fetchurl, helm, lib, melpaBuild }: melpaBuild { pname = "helm-qiita"; - version = "1.0.0"; + version = "1.0.1"; src = fetchFromGitHub { owner = "masutaka"; repo = "emacs-helm-qiita"; - rev = "1adb50a144439b536523ae0af24fedb7faee2495"; - sha256 = "12mkdjqg2vh95wwlr7iyv5janpvx7r745qfmxkjdx7c8ph14j5h7"; + rev = "45e38ae7b816da5db38412b2992c6d1c7a6cc30a"; + sha256 = "05394vf125qlgfrhkaqvly3340qp3zy7kldsnisms9gv0l1c60bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-qiita"; sha256 = "1iz2w1901zz3zk9zazikmnkzng5klnvqn4ph1id7liksrcdpdmpm"; name = "helm-qiita"; }; - packageRequires = [ cl-lib helm ]; + packageRequires = [ helm ]; meta = { homepage = "https://melpa.org/#/helm-qiita"; license = lib.licenses.free; @@ -13523,7 +13677,7 @@ sha256 = "1hfn7zk3pgz3w8mn44hh6dcv377j5272azx4r12p95kkp770xls2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-recoll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-recoll"; sha256 = "0pr2pllplml55k1xx9inr3dm90ichg2wb62dvgvmbq2sqdf4606b"; name = "helm-recoll"; }; @@ -13544,7 +13698,7 @@ sha256 = "163ljqar3vvbavzc8sk6rnf8awyc2rhh2g117fglswich3c8lnqg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-robe"; sha256 = "1gi4nkm9xvnxv0frmhiiw8dkmnmhfpr9n0b6jpidlvr8xr4s5kyw"; name = "helm-robe"; }; @@ -13565,7 +13719,7 @@ sha256 = "1sff8kagyhmwcxf9062il1077d4slvr2kq76abj496610gpb75i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-rubygems-org"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-rubygems-org"; sha256 = "04ni03ak53z3rggdgf68qh7ksgcf3s0f2cv6skwjqw7v8qhph6qs"; name = "helm-rubygems-org"; }; @@ -13586,7 +13740,7 @@ sha256 = "1s6aw1viyzhhrfiazzi82n7bkvshp7clwi6539660m72lfwc5zdl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-sage"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-sage"; sha256 = "1vnq15fjaap0ai7dadi64sm4415xssmahk2j7kx45sasy4qaxlbj"; name = "helm-sage"; }; @@ -13607,7 +13761,7 @@ sha256 = "13j3rgg5zfpxds6vsyq0aqws1f3p5y5dsq8558nqsymqvycpn047"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-spaces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-spaces"; sha256 = "0hdvkk173k98iycvii5xpbiblx044125pl7jyz4kb8r1vvwcv791"; name = "helm-spaces"; }; @@ -13628,7 +13782,7 @@ sha256 = "1lkjrz9ma2bxr8vskdm3sgrmsyiic798q3271dw38d453bhv4bl1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-swoop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-swoop"; sha256 = "1fqbhj75hcmy7c2vdd0m7fk3m34njmv5s6k1i9y94djpbd13i3d8"; name = "helm-swoop"; }; @@ -13649,7 +13803,7 @@ sha256 = "0rzbdrs5d5a0icpxrqik2iaz8i5bacw6nm2caf75s9w9j0j6s9li"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-themes"; sha256 = "0r7kyd0i0spwi7xkjrpm2kyphrsl3hqm5pw96nd3ia0jiwp8550j"; name = "helm-themes"; }; @@ -13670,7 +13824,7 @@ sha256 = "14lbdvs9xdnipsn3lywbvgsqwqnbm8fxm6d1ilq0cj5z6zkxkya0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-unicode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-unicode"; sha256 = "052xqzvcfzpsbl75ylqb1khqndvc2dqdymqlwivs0darlds0w8y4"; name = "helm-unicode"; }; @@ -13691,7 +13845,7 @@ sha256 = "0s8zp3kx2kxlfyd26yr3lphwcybhbm8qa9vzmxr3kaylwy6jpz5q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-w32-launcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-w32-launcher"; sha256 = "0bzn2vhspn6lla815qxwsl9gwfyiwgwmnysr6rjpyacmi17d73ri"; name = "helm-w32-launcher"; }; @@ -13712,7 +13866,7 @@ sha256 = "1j6ssbjbm5ym3pg0icpfp735y4dfhlky9qhl9hwp2n3wmba5g9h1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/helm-zhihu-daily"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/helm-zhihu-daily"; sha256 = "0hkgail60s9qhxl0pskqxjvfz93iq1qh1kcmcq0x5kq7d08b911r"; name = "helm-zhihu-daily"; }; @@ -13733,7 +13887,7 @@ sha256 = "1zr59kcnkd9bm5676shmz63n0wpnfr7yl9g4l01ng0xcili1n13i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hfst-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hfst-mode"; sha256 = "1w342n5k9ak1m5znysvrplpr9dhmi7hxbkr4d1dx51dn0azbpjh7"; name = "hfst-mode"; }; @@ -13754,7 +13908,7 @@ sha256 = "1s08sgbh5v59lqskd0s1dscs6dy7z5mkqqkabs3gd35agbfvbmlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hi2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hi2"; sha256 = "1wxkjg1jnw05lqzggi20jy2jl20d8brvv76vmrf6lnz62g6jv9h2"; name = "hi2"; }; @@ -13775,7 +13929,7 @@ sha256 = "0c65jk00j88qxfki2g88hy9g6n92rzskwcn1fbmwcw3qgaz4b6w5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-blocks"; sha256 = "1a32iv5kgf6g6ygbs559w156dh578k45m860czazfx0d6ap3k5m1"; name = "highlight-blocks"; }; @@ -13796,7 +13950,7 @@ sha256 = "08czwa165rnd5z0dwwdddn7zi5w63sdk31l47bj0598kbly01n7r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-defined"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-defined"; sha256 = "1vjxm35wf4c2qphpkjh57hf03a5qdssdlmfj0n0gwxsdw1q5rpms"; name = "highlight-defined"; }; @@ -13817,7 +13971,7 @@ sha256 = "00l54k75qk24a0znzl4ij3s3nrnr2wy9ha3za8apphzlm98m907k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-indentation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-indentation"; sha256 = "0iblrrbssjwfn71n8xxjcl98pjv1qw1igf3hlz6mh8740fsca3d6"; name = "highlight-indentation"; }; @@ -13838,7 +13992,7 @@ sha256 = "083jmw9jaxj5d5f0b0gxxb0gjdi4dv1sm66559105slbkl2nsa3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-numbers"; sha256 = "1bywrjv9ybr65mwkrxggb52jdqn16z8acgs5vqm0faq43an8i5yv"; name = "highlight-numbers"; }; @@ -13859,7 +14013,7 @@ sha256 = "08ld4wjrkd77cghmrf1n2hn2yzid7bdqwz6b1rzzqaiwxl138iy9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-parentheses"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-parentheses"; sha256 = "1d38wxk5bwblddr74crzwjwpgyr8zgcl5h5ilywg35jpv7n66lp5"; name = "highlight-parentheses"; }; @@ -13880,7 +14034,7 @@ sha256 = "1ahg9qzss67jpw0wp2izys6lyss4nqjy9320fpa4vdx39msdmjjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-quoted"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-quoted"; sha256 = "0x6gxi0jfxvpx7r1fm43ikxlxilnbk2xbhdy9xivhgmmdyqiqqkl"; name = "highlight-quoted"; }; @@ -13901,7 +14055,7 @@ sha256 = "09z13kv2g21kjjkkm3iyaz93sdjmdy2d563r8n7r7ng94acrn7f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/highlight-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/highlight-symbol"; sha256 = "0gw8ffr64s58qdbvm034s1b9xz1hynzvbk8ld67j06fxpc98qaj4"; name = "highlight-symbol"; }; @@ -13922,7 +14076,7 @@ sha256 = "0hb74j5137yj3rm2si16xzwmcvkiwx8ywh1qrlnrzv5gl4viyjzb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hindent"; sha256 = "1f3vzgnqigwbwvglxv0ziz3kyp5dxjraw3vlghkpw39f57mky4xz"; name = "hindent"; }; @@ -13943,7 +14097,7 @@ sha256 = "0mzk4agkcaaw7gryi0wrxv0blqndqsjf1ivdvr2nrnqi798sdhbr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-expand-slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-expand-slime"; sha256 = "0kxyv1lpkg33qgfv1jfqx03640py7525bcnc9dk98w6y6y92zf4m"; name = "hippie-expand-slime"; }; @@ -13964,7 +14118,7 @@ sha256 = "0nfr8ad0klqwi97fjchvwx9mfc672lhv3ll166sr8vn6jlh7rkv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hippie-namespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hippie-namespace"; sha256 = "1bzjhq116ci9c9f0aw121fn3drmg2pw5ny1w6wcasa4p30syxxf0"; name = "hippie-namespace"; }; @@ -13985,7 +14139,7 @@ sha256 = "0dy98sg92xvnr4algm2v2bnjcdwzv0b0vqk0312b0ziinkzisas1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/history"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/history"; sha256 = "0s8pcz53bk1w4h5847204vb6j838vr8za66ni1b2y4pas76zjr5g"; name = "history"; }; @@ -14006,7 +14160,7 @@ sha256 = "1mxicha6m61qxz1mv9z76x4g9fpqk4ch9i6jf7nnpxd6x4xz3f7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/historyf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/historyf"; sha256 = "15pcaqfjpkfwcy46yqqw10q8kpw7aamcg0gr4frbdgzbv0yld08s"; name = "historyf"; }; @@ -14027,7 +14181,7 @@ sha256 = "0889dzrwizpkyh3wms13k8zx27ipsrsxfa4j4yzk4cwk3aicckcr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-anything"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-anything"; sha256 = "0czpc82j5hbzprc66aall72lqnk38dxgpzx4rs8sbx95cag12dxa"; name = "hl-anything"; }; @@ -14048,7 +14202,7 @@ sha256 = "1hgigbgppdhmr7rc901r95kyydjk05dck8mwbryh7kpglns365fa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sentence"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sentence"; sha256 = "16sjfs0nnpwzj1cqfna9vhmxgznwwhb2qdmjci25hlgrdxwwyahs"; name = "hl-sentence"; }; @@ -14069,7 +14223,7 @@ sha256 = "1fsyj9cmqcz5nfxsfcyvpq2vqrhgl99xvq7ligviawl3x77376kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-sexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-sexp"; sha256 = "0kg0m20i9ylphf4w0qcvii8yp65abdl2q5flyphilk0jahwbj9jy"; name = "hl-sexp"; }; @@ -14090,7 +14244,7 @@ sha256 = "0rvkkzbcf36jbnk8adn39gmv0c8m0a189q9s235nasmbry8pjqmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hl-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hl-todo"; sha256 = "1iyh68xwldj1r02blar5zi01wnb90dkbmi67vd6h78ksghl3z9j4"; name = "hl-todo"; }; @@ -14111,7 +14265,7 @@ sha256 = "1wg6vc9swwspi6s6jpig3my83i2pq8vkq2cy1q3an87rczacmfzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hoa-pp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hoa-pp-mode"; sha256 = "01ijfn0hd645j6j88rids5dsanmzwmky37slf50yqffnv69jwvla"; name = "hoa-pp-mode"; }; @@ -14132,7 +14286,7 @@ sha256 = "0yh9v5zng1j2kfjjadfkdds67jws79q52kvl2mx9s8mq28263idm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/homebrew-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/homebrew-mode"; sha256 = "088wc5fq4r5yj1nbh7mriyqf0xwqmbxvblj9d2wwrkkdm5flc8mj"; name = "homebrew-mode"; }; @@ -14153,7 +14307,7 @@ sha256 = "1yvz9d5h7npxhsdf6s9fgxpmqk5ixx91iwivbhzcz935gs2886hc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hookify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hookify"; sha256 = "0prls539ifk2fsqklcxmbrwmgbm9hya50z486d7sw426lh648qmy"; name = "hookify"; }; @@ -14174,7 +14328,7 @@ sha256 = "0k09n66jar0prq9aal2h3izp1y67jibdx0gjr0g4jx1p1yxig1dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ht"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ht"; sha256 = "16vmxksannn2wyn8r44jbkdp19jvz1bg57ggbs1vn0yi7nkanwbd"; name = "ht"; }; @@ -14195,7 +14349,7 @@ sha256 = "0c648dl5zwjrqx9n6zr6nyzx2zcnv05d5i4hvhjpl9q3y011ncns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/html-to-markdown"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/html-to-markdown"; sha256 = "1gjh9ndqsb3nfb7w5h7carjckkgy6qh63b4mg141j19dsyx9rrjv"; name = "html-to-markdown"; }; @@ -14216,7 +14370,7 @@ sha256 = "1h9n388fi17nbyfciqywgrq3n165kpiildbimx59qyk2ac3v7rqk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httpcode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httpcode"; sha256 = "05k1al1j119x6zf03p7jn2r9qql33859583nbf85k41bhicknpgh"; name = "httpcode"; }; @@ -14237,7 +14391,7 @@ sha256 = "0dd257988bdar9hl2711ch5qshx9jc11fqxcvbrd7rc1va5cshs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/httprepl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/httprepl"; sha256 = "0899qb1yfnsyf04hhvnk47qnq4d1f4vd5ghj43x4743wd2b9qawh"; name = "httprepl"; }; @@ -14258,7 +14412,7 @@ sha256 = "1b8992vzq5bh01pjlj181nzqjrqs4fbjpwvv8h7gjq42sf8w59sm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyai"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyai"; sha256 = "00ns7q5b11c5amwkq11fs4p5vrmdfmjljfrcxbwb39gc12yrhn7s"; name = "hyai"; }; @@ -14279,7 +14433,7 @@ sha256 = "0nwsmc4c3v0wbfy917ik9k7yz8yclfac695p7p9sh9y354k3maw4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hyde"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hyde"; sha256 = "18kjcxm7qmv9bfh4crw37zgax8khjqs9zkp4lrb490zlad2asbs3"; name = "hyde"; }; @@ -14300,7 +14454,7 @@ sha256 = "08iw95lyizcyf6cjl37fm8wvay0vsk9758pk9gq9f2xiafcchl7f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/hydra"; sha256 = "1c59l43p39ins3dn9690gm6llwm4b9p0pk78lip0dwlx736drdbw"; name = "hydra"; }; @@ -14321,7 +14475,7 @@ sha256 = "1zcnp61c9cp2kvns3v499hifk072rxm4rhw4pvdv2mm966vcxzvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-projectile"; sha256 = "1qh4krggmsc6lx5mg60n8aakmi3f6ppl1gw094vfcsni96jl34fk"; name = "ibuffer-projectile"; }; @@ -14342,7 +14496,7 @@ sha256 = "0bqdi5w120256g74k0j4jj81x804x1gcg4dxa74w3mb6fl5xlvs8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ibuffer-vc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ibuffer-vc"; sha256 = "0bn5qyiq07cgzci10xl57ss5wsk7bfhi3hjq2v6yvpy9v704dvla"; name = "ibuffer-vc"; }; @@ -14363,7 +14517,7 @@ sha256 = "047gzycr49cs8wlmm9j4ry7b7jxmfhmbayx6rbbxs49lba8dgwlk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/identica-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/identica-mode"; sha256 = "1r69ylykjap305g23cry4wajiqhpgw08nw3b5d9i1y3mwx0j253q"; name = "identica-mode"; }; @@ -14384,7 +14538,7 @@ sha256 = "0x4w1ksrw7dicl84zpf4d4scg672dyan9g95jkn6zvri0lr8xciv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idle-highlight-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idle-highlight-mode"; sha256 = "1i5ky61bq0dpk71yasfpjhsrv29mmp9nly9f5xxin7gz3x0f36fc"; name = "idle-highlight-mode"; }; @@ -14405,7 +14559,7 @@ sha256 = "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-at-point"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-at-point"; sha256 = "0jpgq2iiwgqifwdhwhqv0cd3lp846pdqar6rxqgw9fvvb8bijqm0"; name = "ido-at-point"; }; @@ -14426,7 +14580,7 @@ sha256 = "1ffmsmi31jc0gqnbdxrd8ipsy790bn6hgq3rmayylavmdpg3qfd5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-complete-space-or-hyphen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-complete-space-or-hyphen"; sha256 = "1wk0cq5gjnprmpyvhh80ksz3fash42hckvmx8m95crbzjg9j0gbc"; name = "ido-complete-space-or-hyphen"; }; @@ -14447,7 +14601,7 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-completing-read+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-completing-read+"; sha256 = "034j1q47d57ia5bwbf1w66gw6c7aqbhscpy3dg2a71lwjzfmshwh"; name = "ido-completing-read-plus"; }; @@ -14468,7 +14622,7 @@ sha256 = "0055dda1la7yah33xsi19j4hcdmqp17ily2dvkipm4y6d3ww8yqa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-describe-bindings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-describe-bindings"; sha256 = "1lsa09h025vd908r9q571iq2ia0zdpnq04mlihb3crpp5v9n9ws2"; name = "ido-describe-bindings"; }; @@ -14489,7 +14643,7 @@ sha256 = "0f1p6cnl0arcc2y1h99nqcflp7byvyf6hj6fmv5xqggs66qc72lb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-grid-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-grid-mode"; sha256 = "1wl1yclcxmkbfnvp0il23csdf6gprzf7fkcknpivk784fhl19acr"; name = "ido-grid-mode"; }; @@ -14510,7 +14664,7 @@ sha256 = "1z7az7h90v72llxvdclcywvf1qd0nhkfa45bp99xi7cy7sqsqssf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-load-library"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-load-library"; sha256 = "13f83gqh39p3yjy7r7qc7kzgdcmqh4b5c07zl7rwzb8y9rz59lhj"; name = "ido-load-library"; }; @@ -14523,15 +14677,15 @@ ido-occur = callPackage ({ dash, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "ido-occur"; - version = "0.1.4"; + version = "0.1.5"; src = fetchFromGitHub { owner = "danil"; repo = "ido-occur"; - rev = "7d2e42bf239cacb90e6240b8014e6b20b24e89cf"; - sha256 = "0j12li001yq08vzwh1b25qyq09llizrkgaay9k07g9pvfxlx6zb3"; + rev = "eef18ac643dae03afbe9c42479be315e9d729b48"; + sha256 = "050r5cr0a4kyscp8pp2a1mzawji080pnw0q4hxrsc97s2bxrj9x5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-occur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-occur"; sha256 = "058l2pklg12wkvyyshk8va6shphpbc508fv9a8x25pw857a28pji"; name = "ido-occur"; }; @@ -14552,7 +14706,7 @@ sha256 = "1ddy590xgv982zsgs1civqy0ch0a88z98qhq0bqqjivf9gq3v0pf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-ubiquitous"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-ubiquitous"; sha256 = "143pzpix9aqpzjy8akrxfsxmwlzc9bmaqzp9fyhjgzrhq7zchjsp"; name = "ido-ubiquitous"; }; @@ -14573,7 +14727,7 @@ sha256 = "1lv82q639xjnmvby56nwqn23ijh6f163bk675s33dkingm8csj8k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-vertical-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-vertical-mode"; sha256 = "1vg5s6nd6v2g8ychz1q9cdqvsdw6vag7d9w68sn7blpmlr0nqhfm"; name = "ido-vertical-mode"; }; @@ -14594,7 +14748,7 @@ sha256 = "046ns1nqisz830f6xwlly1qgmi4v2ikw6vmj0f93jprv4vkjylpq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ido-yes-or-no"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ido-yes-or-no"; sha256 = "0glag4yb9xyf1lxxbdhph2nq6s1vg44i6f2z1ii8bkxpambz2ana"; name = "ido-yes-or-no"; }; @@ -14615,7 +14769,7 @@ sha256 = "0bq0kx0889rdy8aasxbpmb0a4awpk2b24zv6x1dmhacmc5rj11i0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idomenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idomenu"; sha256 = "0mg601ak9mhp2fg5n13npcfzphgyms4vkqd18ldmv098z2z1412h"; name = "idomenu"; }; @@ -14636,7 +14790,7 @@ sha256 = "0iwgbaq2797k1f7ql86i2pjfa67cha4s2v0mgmrd0qcgqkxsdq92"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/idris-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/idris-mode"; sha256 = "0hiiizz976hz3z3ciwg1gs9y10qhxbs8givhz89kvyn4s4861a1s"; name = "idris-mode"; }; @@ -14657,7 +14811,7 @@ sha256 = "06qv95bgcb6n3zcjs2i1q80v9040z7m9pb9xbhxmqzcx68vpbpdm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iedit"; sha256 = "02gjshvkcvyr58yf6vlg3s2pzls5sd54xpxggdmqajfg8xmpkq04"; name = "iedit"; }; @@ -14678,7 +14832,7 @@ sha256 = "18rlyjsn9w0zbs0c002s84qzark3rrcmjn9vq4nap7i6zpaq8hki"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iflipb"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iflipb"; sha256 = "1nfrrxgi9nlhn477z8ay7jxycpcghhhmmg9dagdhrlrr20fx697d"; name = "iflipb"; }; @@ -14699,7 +14853,7 @@ sha256 = "1ca2n6vv2z7c3550w0jzwmp6xp0rmrrbljr1ik2ijign62r35a3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ignoramus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ignoramus"; sha256 = "1czqdmlrds1l5afi8ldg7nrxcwav86538z2w1npad3dz8xk67da9"; name = "ignoramus"; }; @@ -14720,7 +14874,7 @@ sha256 = "0imvxzcja91cd19zm2frqfpxm8j0bc89w9s7q0pkpvyjz44kjbq8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-archive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-archive"; sha256 = "0x0lv5dr1gc9bnr3dn26bc9s1ccq2rp8c4a1licbi929f0jyxxfp"; name = "image-archive"; }; @@ -14741,7 +14895,7 @@ sha256 = "1n2ya9s0ld257a8iryjd0dz0z2zs1xhzfiwsdkq4l4azwxl54m29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image-dired+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image-dired+"; sha256 = "0hhwqfn490n7p12n7ij4xbjh15gfvicmn21fvwbnrmfqc343pcdy"; name = "image-dired-plus"; }; @@ -14762,7 +14916,7 @@ sha256 = "0k69xbih0273xvmj035vcmm67l6hgjb99pb1jbva5x0pnszb1vdv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/image+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/image+"; sha256 = "1a9dxswnqn6cvx28180kclpjc0vc6fimzp7n91gpdwnmy123x6hg"; name = "image-plus"; }; @@ -14783,7 +14937,7 @@ sha256 = "15lflvpapm5749qq7jzdwbd0isb89i6df3np4wn9y9gjl7y92wk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imapfilter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imapfilter"; sha256 = "0i893kqj6yzadhza800r6ri7fihl01r57z8yrzzh3d09qaias5vz"; name = "imapfilter"; }; @@ -14804,7 +14958,7 @@ sha256 = "0qc96p5f7paxaxzv73w072cba8jb6ibdbhml7n7cm85b0rz1wf16"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-anywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-anywhere"; sha256 = "1ylqzdnd3nzcpyyd6rh6i5q9mvf8c99rvpk51fzfm3yq2kyw4dbq"; name = "imenu-anywhere"; }; @@ -14825,7 +14979,7 @@ sha256 = "1j0p0zkk89lg5xk5qzdnj9nxxiaxhff2y9iv9lw456kvb3lsyvjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenu-list"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenu-list"; sha256 = "092fsn7hnbfabcyakbqyk20pk62sr8xrs45aimkv1l91681np98s"; name = "imenu-list"; }; @@ -14846,7 +15000,7 @@ sha256 = "1y57xp0w0c6hg3gn4f1l3612a18li4gwhfa4dy18fy94gr54ycpx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imenus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imenus"; sha256 = "1q0j6r2n5vjlbgchkz9zdglmmbpd8agawzcg61knqrgzpc4lk82r"; name = "imenus"; }; @@ -14867,7 +15021,7 @@ sha256 = "19jqcbiwqknlpij9q63m1p69k4zb3v1qdx0858drprc2rl1p55cd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/imgix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/imgix"; sha256 = "0dh7qsz5c9mflldcw60vc8mrxrw76n2ydd7blv6jfmsnr19ila4q"; name = "imgix"; }; @@ -14888,7 +15042,7 @@ sha256 = "1pf7pqh8yzyvh4gzvp5npfq8kcfjcbzra0kkw7zmz769xxc8v84x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/immutant-server"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/immutant-server"; sha256 = "15vcxag1ni41ja4b3q0444sq5ysrisis59la7li6h3617wy8r02i"; name = "immutant-server"; }; @@ -14898,6 +15052,27 @@ license = lib.licenses.free; }; }) {}; + impatient-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, htmlize, lib, melpaBuild, simple-httpd }: + melpaBuild { + pname = "impatient-mode"; + version = "1.0.0"; + src = fetchFromGitHub { + owner = "netguy204"; + repo = "imp.el"; + rev = "eba1efce3dd20b5f5017ab64bae0cfb3b181c2b0"; + sha256 = "0vr4i3ayp1n8zg3v9rfv81qnr0vrdbkzphwd5kyadjgy4sbfjykj"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/impatient-mode"; + sha256 = "05vp04zh5w0ss959galdrnridv268dzqymqzqfpkfjbg8kryzfxg"; + name = "impatient-mode"; + }; + packageRequires = [ cl-lib htmlize simple-httpd ]; + meta = { + homepage = "https://melpa.org/#/impatient-mode"; + license = lib.licenses.free; + }; + }) {}; import-js = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "import-js"; @@ -14930,7 +15105,7 @@ sha256 = "0ycsdwwfb27g85aby4jix1aj41a4vq6bf541iwla0xh3wsyxb01w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/import-popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/import-popwin"; sha256 = "0vkw6y09m68bvvn1wzah4gzm69z099xnqhn359xfns2ljm74bvgy"; name = "import-popwin"; }; @@ -14951,7 +15126,7 @@ sha256 = "1dmr1arqy2vs9jdjha513mvw3yfwgkn4zs728q83asjy91sfcz7k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-clojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-clojure"; sha256 = "0n8w0vx1dnbfz88j45a57z9bsmkxr2zyh6ld72ady8asanf17zhl"; name = "inf-clojure"; }; @@ -14972,7 +15147,7 @@ sha256 = "11zsprv5ycnfqi358dd4cx70dbn6a8hccd4prf28lln7vhldbmjz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inf-ruby"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inf-ruby"; sha256 = "02f01vwzr6j9iqcdns4l579bhia99sw8hwdqfwqjs9gk3xampfpp"; name = "inf-ruby"; }; @@ -14993,7 +15168,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inflections"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inflections"; sha256 = "0f02bhm2a5xiaxnf2c2hlpa4p121xfyyj3c59fy0yldipdxhvw70"; name = "inflections"; }; @@ -15014,7 +15189,7 @@ sha256 = "031vb7ndz68x0119v4pyizz0ykd341ywcp5s7i4z35zx1vcqj8az"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-loader"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-loader"; sha256 = "0rq7759abp0ml0l8dycvdl0j5wsxw9z5y9pyx68973a4ssbx2i0r"; name = "init-loader"; }; @@ -15035,7 +15210,7 @@ sha256 = "06w1vnfhjy8g62z6xajin5akgh30pa0kk56am61kv6mi5ia8fc96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/init-open-recentf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/init-open-recentf"; sha256 = "0xlmfxhxb2car8vfx7krxmxb3d56x0r3zzkj8ds7yqvr65z85x2r"; name = "init-open-recentf"; }; @@ -15056,7 +15231,7 @@ sha256 = "1rfw38a63bvzglqx7mb8wlnzjvlmkhkn35hn66snqqgvnmnvi54g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/initsplit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/initsplit"; sha256 = "0n9dk3x62vgxfn39jkmdg8wxsik0xqkprifgvqzyvn8xcx1blyyq"; name = "initsplit"; }; @@ -15077,7 +15252,7 @@ sha256 = "0jipds844432a8m4d5gxbbkk2h1rsq9fg748g6bxy2q066kyzfz6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inline-crypt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inline-crypt"; sha256 = "04mcyyqa9h6g6wrzphzqalpqxsndmzxpavlpdc24z4a2c5s3yz8n"; name = "inline-crypt"; }; @@ -15098,7 +15273,7 @@ sha256 = "15nasjknmzy57ilj1gaz3w5sj8b3ijcpgwcd6w2r9xhgcl86m40q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/inlineR"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/inlineR"; sha256 = "1fflq2gkpfn3jkv4a6yywzmxsq6qszfid1ri85ass1ppw6scdvzw"; name = "inlineR"; }; @@ -15119,7 +15294,7 @@ sha256 = "1mqnz40zirnyn3wa71wzzjph3a0sbgvzcywcr7xnzqpl6sp7g93f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/insert-shebang"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/insert-shebang"; sha256 = "0z88l1q925v9lwzr6nas9qjy0f57qxilg6smgpx9wj6lll3f7p5v"; name = "insert-shebang"; }; @@ -15139,7 +15314,7 @@ sha256 = "0krscid3yz2b7kv75gd9fs92zgfl7pnl77dbp5gycv5rmw5mivp8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/instapaper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/instapaper"; sha256 = "1yibdpj3lx6vr33s75s1y415lxqljrk7pqc901f8nfa01kca7axn"; name = "instapaper"; }; @@ -15160,7 +15335,7 @@ sha256 = "1qs6j9cz152wfy54c5d1a558l0df6wxv3djlvfl2mx58wf0sk73h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/interleave"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/interleave"; sha256 = "18b3fpxn07y5abkcnaw9is9ihdhik7xjdj6kzl1pz958lk9f4hfy"; name = "interleave"; }; @@ -15170,6 +15345,27 @@ license = lib.licenses.free; }; }) {}; + intero = callPackage ({ company, fetchFromGitHub, fetchurl, flycheck, lib, melpaBuild }: + melpaBuild { + pname = "intero"; + version = "0.1.13"; + src = fetchFromGitHub { + owner = "commercialhaskell"; + repo = "intero"; + rev = "314154585104c33d187b4b14a89c077356de7b2c"; + sha256 = "089ijl39fmyd7zspqb0496myv0sy6gz6r46hpwz3v3k9mr3q4873"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/intero"; + sha256 = "15n7ipsq8ylmq4blsycpszkx034j9sb92vqvaz30j5v307fmvs99"; + name = "intero"; + }; + packageRequires = [ company flycheck ]; + meta = { + homepage = "https://melpa.org/#/intero"; + license = lib.licenses.free; + }; + }) {}; iplayer = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "iplayer"; @@ -15181,7 +15377,7 @@ sha256 = "043dnij48zdyg081sa7y64lm35z7zvrv8gcymv3l3a98r1yhy3v6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iplayer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iplayer"; sha256 = "0wnxvdlnvlmspqsaqx0ldw8j03qjckkqzvx3cbpc2yfs55pm3p7r"; name = "iplayer"; }; @@ -15202,7 +15398,7 @@ sha256 = "036q933yw7pimnnq43ydaqqfccgf4iwvjhjmsavp7l6y1w16rvmy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ir-black-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ir-black-theme"; sha256 = "1qpq9zbv63ywzk5mlr8x53g3rn37k0mdv6x1l1hcd90gka7vga9v"; name = "ir-black-theme"; }; @@ -15223,7 +15419,7 @@ sha256 = "1y72xhs978ah53fmp10pa8riscx94y9bjvr26wk2f3zc94c6cq3d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/irony"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/irony"; sha256 = "1xcxrdrs7imi31nxpszgpaywq4ivni75hrdl4zzrf103xslqpl8a"; name = "irony"; }; @@ -15244,7 +15440,7 @@ sha256 = "09hx28lmldm7z3x22a0qx34id09fdp3z61pdr61flgny213q1ach"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/isgd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/isgd"; sha256 = "0yc9mkjzj3w64f48flnjvd193mk9gndrrqbxz3cvmvq3vgahhzyi"; name = "isgd"; }; @@ -15265,7 +15461,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy"; sha256 = "0xf5p91r2ljl93wbr5wbgnb4hzhs00wkaf4fmdlf31la8xwwp5ci"; name = "ivy"; }; @@ -15286,7 +15482,7 @@ sha256 = "0ywjrgafpl4cnrykx9yysazr7hkd2pxk67h065f8z3mid6cgh1wa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-gitlab"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-gitlab"; sha256 = "0gbwsmb6my0327f9j96s20mybnjaw9yaiwhs3sy3vav0qww91z1y"; name = "ivy-gitlab"; }; @@ -15307,7 +15503,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ivy-hydra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ivy-hydra"; sha256 = "1xv8nfi6dzhx868h44ydq4f5jmsa7rbqfa7jk8g0z0ifv477hrvx"; name = "ivy-hydra"; }; @@ -15328,7 +15524,7 @@ sha256 = "0rpxh1jv98dl9b5ldjkljk70z4hkl61kcmvy1lhpj3lxn8ysv87a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ix"; sha256 = "1fl76dk8vgw3mrh5iz99lrsllwya6ij9d1lj3szcrs4qnj0b5ql3"; name = "ix"; }; @@ -15349,7 +15545,7 @@ sha256 = "1mb0k4lmbkbpn6qzzg8n14pybhd5zla77ppqac6a9kw89fj2qj4i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/iy-go-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/iy-go-to-char"; sha256 = "10szn9y7gl8947p3f9w6p6vzjf1a9cjif9mbj3qdqx4vbsl9mqpz"; name = "iy-go-to-char"; }; @@ -15370,7 +15566,7 @@ sha256 = "07kbicf760nw4qlb2lkf1ns8yzqy0r5jqqwqjbsnqxx4sm52hml9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/j-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/j-mode"; sha256 = "0f9lsr9hjhdvmzx565ivlncfzb4iq4rjjn6a41053cjy50bl066i"; name = "j-mode"; }; @@ -15386,10 +15582,10 @@ src = fetchgit { url = "git://git.code.sf.net/p/emacs-jabber/git"; rev = "2999f58619dd9c20cc6cac8060c4c850a504cbbd"; - sha256 = "03x93wkd8syj2ybf5ymwcm6khx0h5nhrl8pyync1520294pq6i1i"; + sha256 = "0d6dwj45rrvh3dlrhdmqkxjmd439a1x3h88czdg7np2m5q2xg2dg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jabber"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jabber"; sha256 = "1g5pc80n3cd5pzs3hmpbnmxbldwakd72pdn3vvb0h26j9v073pa8"; name = "jabber"; }; @@ -15410,7 +15606,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jade-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jade-mode"; sha256 = "156j0d9wx6hrhph0nsjsi1jha4h65rcbrbff1j2yr8vdsszjrs94"; name = "jade-mode"; }; @@ -15431,7 +15627,7 @@ sha256 = "0x0vz7m9kn7b2aiqvrdqx8qh84ynbpzy2asz2b18l47bcwa7r5bh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jammer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jammer"; sha256 = "01c4bii7gswhp6z9dgx4bhvsywiwbbdv7mg1zj6vp1530l74zx6z"; name = "jammer"; }; @@ -15452,7 +15648,7 @@ sha256 = "08gkxxaw789g1r0dql11skz6i8bdrrz4wp87fzs9f5rgx99xxr6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/japanlaw"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/japanlaw"; sha256 = "1pxss1mjk5660k80r1xqgslnbrsr6r4apgp9abjwjfxpg4f6d0sa"; name = "japanlaw"; }; @@ -15473,7 +15669,7 @@ sha256 = "1bngn6v6w60qb3zz7s3px7v3wk99a3hfvzrg9l06dz1q7xgyvsi1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/java-imports"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/java-imports"; sha256 = "1waz6skyrm1n8wpc0pwa652l11wz8qz1m89mqxk27k3lwyd84n98"; name = "java-imports"; }; @@ -15494,7 +15690,7 @@ sha256 = "16gywcma1s8kslwznlxwlx0xj0gs5g31637kb74vfdplk48f04zj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/javadoc-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/javadoc-lookup"; sha256 = "1fffs0iqkk9rg5vbxifvn09j4i2751p81bzcvy5fslr3r1r2nv79"; name = "javadoc-lookup"; }; @@ -15515,7 +15711,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi"; sha256 = "1777060q25k9n2g6h1lm5lkki900pmjqkxq72mrk3j19jr4pk9m4"; name = "jedi"; }; @@ -15536,7 +15732,7 @@ sha256 = "0xbp9fcxgbf298w05hvf52z41kk7r52975ailgdn8sg60xc98fa7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jedi-core"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jedi-core"; sha256 = "0pzi32zdb4g9n4kvpmkdflmqypa7nckmnjq60a3ngym4wlzbb32f"; name = "jedi-core"; }; @@ -15557,7 +15753,7 @@ sha256 = "0ws0297v6sairvsk665wrfzymfi599g5ljshfnpmi81qnnnbwjgf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jq-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jq-mode"; sha256 = "1xvh641pdkvbppb2nzwn1ljdk7sv6laq29kdv09kxaqd89vm0vin"; name = "jq-mode"; }; @@ -15578,7 +15774,7 @@ sha256 = "1f1zad423q5adycbbh62094m622gl8ncwbr8vxad1a6zcga70cgi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js-comint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js-comint"; sha256 = "0jvkjb0rmh87mf20v6rjapi2j6qv8klixy0y0kmh3shylkni3an1"; name = "js-comint"; }; @@ -15599,7 +15795,7 @@ sha256 = "0d2hqlgm09rw0azha5dxmq63b56sa8b9qj7gd7invibl6nnyjh4a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-closure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-closure"; sha256 = "19732bf98lk2ah2ssgkr1ngxx7rz3nhsiw84lsfmydb0vvm4fpk7"; name = "js2-closure"; }; @@ -15620,7 +15816,7 @@ sha256 = "0r2szaxr3q0gvxqd9asn03q8jf3nclxv4mqdsjn96s98n45x388l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-highlight-vars"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-highlight-vars"; sha256 = "07bq393g2jy8ydvaqyqn6vdyfvyminvgi239yvwzg5g9a1xjc475"; name = "js2-highlight-vars"; }; @@ -15641,7 +15837,7 @@ sha256 = "0xj87grvg7pbhh4d239gaqai5gl72klhpp9yksaqn77qnm98q4fn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-mode"; sha256 = "0f9cj3n55qnlifxwk1yp8n1kfd319jf7qysnkk28xpvglzw24yjv"; name = "js2-mode"; }; @@ -15662,7 +15858,7 @@ sha256 = "08wxsz90x5zhma3q8kqfd01avhzxjmcrjc95s757l5xaynsc2bly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js2-refactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js2-refactor"; sha256 = "09dcfwpxxyw0ffgjjjaaxbsj0x2nwfrmxy1a05h8ba3r3jl4kl1r"; name = "js2-refactor"; }; @@ -15683,7 +15879,7 @@ sha256 = "17d0nf1kz7mgv5qz57q6khy4w5vrmsliqirggahk9s6nnsx1j56n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/js3-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/js3-mode"; sha256 = "12s5qf6zfcv4m5kqxvh9b4zgwf433x39a210d957gjjp5mywbb1r"; name = "js3-mode"; }; @@ -15704,7 +15900,7 @@ sha256 = "0pjmslxwmlb9cb3j5qfsyxq1lg1ywzw1p9dvj330c2m7nla1j70x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsfmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsfmt"; sha256 = "1syy32sv2d57b3gja0ly65h36mfnyq6hzf5lnnl3r58yvbdzngqd"; name = "jsfmt"; }; @@ -15725,7 +15921,7 @@ sha256 = "0sxkp9m68rvff8dbr8jlsx85w5ngifn19lwhcydysm7grbwzrdi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-mode"; sha256 = "014j10wgxsqy6d6aksnkz2dr5cmpsi8c7v4a825si1vgb4622a70"; name = "json-mode"; }; @@ -15746,7 +15942,7 @@ sha256 = "0qp4n2k6s69jj4gwwimkpadjv245y54wk3bxb1x96f034gkp81vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-reformat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-reformat"; sha256 = "1m5p895w9qdgb8f67xykhzriribgmp20a1lvj64iap4aam6wp8na"; name = "json-reformat"; }; @@ -15767,7 +15963,7 @@ sha256 = "05zsgnk7grgw9jzwl80h5sxfpifxlr37b4mkbvx7mjq4z14xc2jw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/json-snatcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/json-snatcher"; sha256 = "0f6j9g3c5fz3wlqa88706cbzinrs3dnfpgsr2d3h3117gic4iwp4"; name = "json-snatcher"; }; @@ -15788,7 +15984,7 @@ sha256 = "1wx28rr5dk238yz07xn95v88qmv10c1gz9pcxard2kszpnmrn6dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jsx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jsx-mode"; sha256 = "1lnjnyn8qf3biqr92z443z6b58dly7glksp1g986vgqzdprq3n1b"; name = "jsx-mode"; }; @@ -15809,7 +16005,7 @@ sha256 = "11wybxrl2lny6vbf7qrxyf9wxw88ppvbrlfcd65paalrna2hn46h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/judge-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/judge-indent"; sha256 = "1gakdhnlxfq8knnykqdw4bizb5y67m8xhi07zannd7bsfwi4k6rh"; name = "judge-indent"; }; @@ -15830,7 +16026,7 @@ sha256 = "1fm69g4mrmdchvxr062bk7n1jvs2rrscddb02cldb5bgdrcw8g6j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump"; sha256 = "18g0fa9g8m9jscsm6pn7jwdq94l4aj0dfhrv2hqapq1q1x537364"; name = "jump"; }; @@ -15851,7 +16047,7 @@ sha256 = "1s9plmg323m1p625xqnks0yqz0zlsjacdj7pv8f783r0d9jmfq3s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jump-to-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jump-to-line"; sha256 = "09ifhsggl5mrb6l8nqnl38yph0v26v30y98ic8hl23i455hqkkdr"; name = "jump-to-line"; }; @@ -15872,7 +16068,7 @@ sha256 = "1785nsv61m51lpykai2wxrv6zmwbm5654v937fgw177p37054s83"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/jvm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/jvm-mode"; sha256 = "1r283b4s0pzq4hgwcz5cnhlvdvq4gy0x51g3vp0762s8qx969a5w"; name = "jvm-mode"; }; @@ -15893,7 +16089,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar"; sha256 = "0zhi1dv1ay1azh7afq4x6bdg91clwpsr13nrzy7539yrn9sglj5l"; name = "kaesar"; }; @@ -15914,7 +16110,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-file"; sha256 = "0dcizg82maad98mbqqw5lamwz7n2lpai09jsrc66x3wy8k784alc"; name = "kaesar-file"; }; @@ -15935,7 +16131,7 @@ sha256 = "03l9w238a5kyfin3v1fy1q2pl0gvmb87j0v89g6nk114s7m4y3r8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kaesar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kaesar-mode"; sha256 = "0yqnlchbpmhsqc8j531n08vybwa32cy0v9sy4f9fgxa90rfqczry"; name = "kaesar-mode"; }; @@ -15956,7 +16152,7 @@ sha256 = "0b6af8hnrn0v4z1xpahjfpw5iga2bmgd3qwfn3is2rygsn5rkm40"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kakapo-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kakapo-mode"; sha256 = "0a99cqflpzasl4wcmmf99aj8xgywkym37j7mvnsajrsk5wawdlss"; name = "kakapo-mode"; }; @@ -15977,7 +16173,7 @@ sha256 = "0avcg307r4navvgj3hjkggk4gr7mzs4mljhxh223r8g69l9bm6m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/karma"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/karma"; sha256 = "19wl7js7wmw7jv2q3l4r5zl718lhy2a0jhl79k57ihwhxdc58fwc"; name = "karma"; }; @@ -15998,7 +16194,7 @@ sha256 = "14ijniyvcfmj4y77yhiplsclincng2r3jbdnmmdnwzliv65f7l6q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-combo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-combo"; sha256 = "1v8saw92jphvjkyy7j9jx7cxzgisl4zpf4wjzdjfw3la5lz11waf"; name = "key-combo"; }; @@ -16019,7 +16215,7 @@ sha256 = "05vpydcgiaya35b62cdjxna9y02vnwzzg6p8jh0dkr9k44h4iy3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/key-seq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/key-seq"; sha256 = "166k6hl9vvsnnksvhrv5cbhv9bdiclnbfv7qf67q4c1an9xzqi74"; name = "key-seq"; }; @@ -16040,7 +16236,7 @@ sha256 = "0xgm80dbg45bs3k8psd3pv49z1xbvzm156xs55gmxdzbgxbzpazr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keychain-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keychain-environment"; sha256 = "1w77cg00bwx68h0d6k6r1fzwdwz97q12ch2hmpzjnblqs0i4sv8v"; name = "keychain-environment"; }; @@ -16061,7 +16257,7 @@ sha256 = "0dkc51bmix4b8czs2wg6vz8vk32qlll1b9fjmx6xshrxm85cyhvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keydef"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keydef"; sha256 = "0yb2vgj7abyg8j7qmv74nsanv50lf350q1m58rjv8wm31yykg992"; name = "keydef"; }; @@ -16082,7 +16278,7 @@ sha256 = "1x87mbnzkggx5llh0i0s3sj1nfw7liwnlqc9csya517w4x5mhl8i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyfreq"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyfreq"; sha256 = "1rw6hzmw7h5ngvndy7aa41pq911y2hr9kqc9w4gdd5v2p4ln1qh7"; name = "keyfreq"; }; @@ -16095,15 +16291,15 @@ keymap-utils = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "keymap-utils"; - version = "0.6.0"; + version = "1.0.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "keymap-utils"; - rev = "dbb5ec9fa28ff3c0fbb9efcc9f75329a5aca3798"; - sha256 = "1c4qqfq7c1d31v9ap7fgq019l5vds7jzqq9c2dp4gj7j00d9vvlx"; + rev = "34e28d4c88ad9c71aee3dd226817c6eb6927b2c7"; + sha256 = "17bfxn1bl2by3vnp24hnk6qjxx6av1fayrsw9hlldwhgp4ayhy48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keymap-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keymap-utils"; sha256 = "0nbcwz4nls0pva79lbx91bpzkl38g98yavwkvg2rxbhn9vjbhzs9"; name = "keymap-utils"; }; @@ -16124,7 +16320,7 @@ sha256 = "0z6sgz8nywsd00zaayafwy5hfi7kzxfifjkfr5cn1l7wlypyksfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/keyset"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/keyset"; sha256 = "1kfw0pfb6qm2ji1v0kb8xgz8q2yd2k9kxmaz5vxcdixdlax3xiqg"; name = "keyset"; }; @@ -16145,7 +16341,7 @@ sha256 = "0ky167xh1hrmqsldybzjhyqjizgjzs1grn5mf8sm2j9qwcvjw2zv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kibit-helper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kibit-helper"; sha256 = "15viybjqksylvm5ash2kzsil0cpdka56wj1rryixa8y1bwlj8y4s"; name = "kibit-helper"; }; @@ -16166,7 +16362,7 @@ sha256 = "1c5al7cyfnb0p5ya2aa5afadzbrrc079jx3r6zpkr64psskrhdv5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-or-bury-alive"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-or-bury-alive"; sha256 = "0mm0m8hpy5v98cap4f0s38dcviirm7s6ra4l94mknyvnx0f73lz8"; name = "kill-or-bury-alive"; }; @@ -16187,7 +16383,7 @@ sha256 = "0axvhikhg4fikiz4ifg0p4a5ygphbpjs0wd0gcbx29n0y54d1i93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kill-ring-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kill-ring-search"; sha256 = "1pg4j1rrji64rrdv2xpwz33vlyk8r0hz4j4fikzwpbcbmni3skan"; name = "kill-ring-search"; }; @@ -16208,7 +16404,7 @@ sha256 = "0imylcaiwpzvvb3g8kpsna1vk7v7bwdjfcsa98i41m1rv9yla86l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/killer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/killer"; sha256 = "10z4vqwrpss7mk0gq8xdsbsl0qibpp7s1g0l8wlmrsgn6kjkr2ma"; name = "killer"; }; @@ -16229,7 +16425,7 @@ sha256 = "0rzzjzkzgpiadm9awkj7wrh2hg97lhgwxg74gvdis3fc1xg2hyri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kivy-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kivy-mode"; sha256 = "02l230rwivr7rbiqm4vg70458z35f9v9w3mdapcrqd5d07y5mvi1"; name = "kivy-mode"; }; @@ -16250,7 +16446,7 @@ sha256 = "1lppggnii2r9fvlhh33gbdrwb50za8lnalavlq9s86ngndn4n94k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/know-your-http-well"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/know-your-http-well"; sha256 = "0k2x0ajxkivim8nfpli716y7f4ssrmvwi56r94y34x4j3ib3px3q"; name = "know-your-http-well"; }; @@ -16271,7 +16467,7 @@ sha256 = "1kbmlhfxbp704mky8v69lzqd20bbnqijfnv110yigsy3kxi7hdrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ksp-cfg-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ksp-cfg-mode"; sha256 = "0azcn4qvziacbw1qy33fwdaldw7xpzr672vzjsqhr0b2vg9m2ipi"; name = "ksp-cfg-mode"; }; @@ -16292,7 +16488,7 @@ sha256 = "0da4y9pf6vq0i6w7bmvrszg9bji3ylhr44hmyrmxvah28pigb2fz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/kurecolor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/kurecolor"; sha256 = "0q0q0dfv376h7j3sgwxqwfpxy1qjbvb6i5clsxz9xp4ly89w4d4f"; name = "kurecolor"; }; @@ -16313,7 +16509,7 @@ sha256 = "1i8wbhc6i88plpq48ccka0avdj2x5rcxm81j93dmwp70ld0zws8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/langtool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/langtool"; sha256 = "1xq70jyhzg0qmvialy015crbdk9rdibhwpl36khab9hi2999wxyw"; name = "langtool"; }; @@ -16334,7 +16530,7 @@ sha256 = "07aavdr1dlw8hca27l8a0i8cs5ga1wqqdf1v1iyvjz61vygld77a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-extra"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-extra"; sha256 = "1w98ngxymafigjpfalybhs12jcf4916wk4nlxflfjcx8ryd9wjcj"; name = "latex-extra"; }; @@ -16355,7 +16551,7 @@ sha256 = "118xrgrnwsmsysmframf6bmb0gkrdrm3jbkgivzxs41cw92fhbzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-math-preview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-math-preview"; sha256 = "14bn0q5czrrkb1vjdkwx6f2x4zwjkxgrc0bcncv23l13qls1gkmr"; name = "latex-math-preview"; }; @@ -16376,7 +16572,7 @@ sha256 = "10i4r81pm95990d4yrabzdm49gp47mqpv15h4r4sih10p1kbn83h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/latex-unicode-math-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/latex-unicode-math-mode"; sha256 = "1p9gpp28vylibv1s95bzfgscznw146ybgk6f3qdbbnafrcrmifcr"; name = "latex-unicode-math-mode"; }; @@ -16397,7 +16593,7 @@ sha256 = "1hp65aai2bp5l7b3dhr6bz042xcikkk8vssirzibdw5qq6zqzgxm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ledger-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ledger-mode"; sha256 = "0hi9waxmw1bbg88brlr3816vhdi0jj05wcwvrvfc1agvrvzyqq8s"; name = "ledger-mode"; }; @@ -16418,7 +16614,7 @@ sha256 = "04h6vk7w25yp4kzkwqnsmc59bm0182qqkyk5nxm3a1lv1v1590lf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lentic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lentic"; sha256 = "0y94y1qwj23kqp491b1fzqsrjak96k1dmmzmakbl7q8vc9bncl5m"; name = "lentic"; }; @@ -16439,7 +16635,7 @@ sha256 = "1w6mbk4gc63sh2p9rsy851x2kid0dp2ja4ai5badkr5prxkcpfdn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/less-css-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/less-css-mode"; sha256 = "188iplnwwhawq3dby3388kimy0jh1k9r8v9nxz52hy9rhh9hykf8"; name = "less-css-mode"; }; @@ -16460,7 +16656,7 @@ sha256 = "1l9qjmyb4a3f6i2iimpmjczbx890cd1p24n941s13sg67xfbm7hn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/letcheck"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/letcheck"; sha256 = "1sjwi1ldg6b1qvj9cvfwxq3qlkfas6pm8zasf43baljmnz38mxh2"; name = "letcheck"; }; @@ -16481,7 +16677,7 @@ sha256 = "1n84vqxv4jqy5mnb1hbrqrhavq0y8c4mjsp0smg48bzi18350irl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lfe-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lfe-mode"; sha256 = "0smncyby53ipm8yqslz88sqjafk0x6r8d0qwk4wzk0pbgfyklhgs"; name = "lfe-mode"; }; @@ -16502,7 +16698,7 @@ sha256 = "0hi8s20vw4a5i5n5jlm5dzgsl1qpfyqbpskqszjls1xrrf3dd4zl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lice"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lice"; sha256 = "1hv2hz3153x0gk7f2js18dbx5pyprfdf2pfxb658fj16vxpp7y6x"; name = "lice"; }; @@ -16523,7 +16719,7 @@ sha256 = "11sw43z5b0vypmhi0yysf2bxjy8fqpzl61y503jb7nhcfywmfkys"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lingr"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lingr"; sha256 = "1445bxiirsxl9kgm0j86xc9d0pbaa5f07c1i66pw2vl40bvhrjff"; name = "lingr"; }; @@ -16544,7 +16740,7 @@ sha256 = "05xfgn9sabi1ykk8zbk2vza1g8pdrg08j5cb58f50nda3q8ndf4s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link"; sha256 = "17jpsg3f2954b740vyj37ikygrg5gmp0bjhbid8bh8vbz7xx9zy8"; name = "link"; }; @@ -16565,7 +16761,7 @@ sha256 = "1v4fadxv7ym6lc09nd2xpz2k5vrikjv7annw99ii5cqrwhqa5838"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/link-hint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/link-hint"; sha256 = "12fb2zm9jnh92fc2nzmzmwjlhi64rhakwbh9lsydx9svsvkgcs89"; name = "link-hint"; }; @@ -16586,7 +16782,7 @@ sha256 = "1m4g4b96cxs05pfln7kdi6gvrdbv76f8dk806py5lq0gq7da2csc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/linum-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/linum-relative"; sha256 = "0s1lc3lppazv0481dxknm6qrxhvkv0r9hw8xmdrpjc282l91whkj"; name = "linum-relative"; }; @@ -16607,7 +16803,7 @@ sha256 = "05iqhnhj61f30yk4ih63rimmyp134gyq18frc8qgrnwym64dsm6l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispy"; sha256 = "12qk2gpwzz7chfz7x3wds39r4iiipvcw2rjqncir46b6zzlb1q0g"; name = "lispy"; }; @@ -16635,7 +16831,7 @@ sha256 = "0qyj04p63fdh3iasp5cna1z5fhibmfyl9lvwyh22ajzsfbr3nhnk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lispyscript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lispyscript-mode"; sha256 = "02biai45l5xl2m9l1drphrlj6r01msmadhyg774ijdk1x4gm5nhr"; name = "lispyscript-mode"; }; @@ -16656,7 +16852,7 @@ sha256 = "197cqkiwxgamhfwbc8h492cmjll3fypkwzcphj26dfnr22v63kwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-packages-ext"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-packages-ext"; sha256 = "15m4888fm5xv697y7jspghg1ra49fyrny4y2x7h8ivcbslvpglvk"; name = "list-packages-ext"; }; @@ -16677,7 +16873,7 @@ sha256 = "05nn4db8s8h4mn3fxhwsa111ayvlq1raf6bifh7jciyw7a2c3aww"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-unicode-display"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-unicode-display"; sha256 = "01x9i5k5vhjscmkx0l6r27w1cdp9n6xk1pdjf98z3y88dnsmyfha"; name = "list-unicode-display"; }; @@ -16698,7 +16894,7 @@ sha256 = "0ql159v7sxs33yh2l080kchrj52vk34knz50cvqi3ykpb7djg3sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/list-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/list-utils"; sha256 = "0bknprr4jb1d20i9lj2aa17vpg1kqwdyzzwmy1kfydnkpf5scnr3"; name = "list-utils"; }; @@ -16719,7 +16915,7 @@ sha256 = "0mr0king5dj20vdycpszxnfs9ch808fhcz3q7svxfngj3d3671wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lit-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lit-mode"; sha256 = "05rf7ki060nqnvircn0dkpdrg7xbh7phb8bqgsab89ycc7l9vv59"; name = "lit-mode"; }; @@ -16740,7 +16936,7 @@ sha256 = "1fh9wrw5irn0g3dy8gkk63csdcxgi3w2038mxx3sk6ki3r2bmhw8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/literate-coffee-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/literate-coffee-mode"; sha256 = "1bll1y9q3kcg3v250asjvx2k9kb314qadaq1iwanwgdlp3qvvs40"; name = "literate-coffee-mode"; }; @@ -16761,7 +16957,7 @@ sha256 = "1cwydbhhbs5v9y2s872zxc5lflqmfrdvnc8xz0qars52d7lg4br5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-code-talks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-code-talks"; sha256 = "173mjmxanva13vk2f3a06s4dy62x271kynsa7pbhdg4fd72hdjma"; name = "live-code-talks"; }; @@ -16782,7 +16978,7 @@ sha256 = "0vmkqlgiahcc6aa0ky4jjdc5nxnn2i7qwfl6wkgy5rmq051nk4k0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/live-py-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/live-py-mode"; sha256 = "0yn1a0gf9yn068xifpv8p77d917mnalc56pll800zlpsdk8ljicq"; name = "live-py-mode"; }; @@ -16803,7 +16999,7 @@ sha256 = "1fq4bnngbh9a18hq8mvnqkzs74k3g4c0lmwsncbhy6n21njv3kdy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/load-relative"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/load-relative"; sha256 = "0j8ybbjzhzgjx47pqqdbsqi8n6pzqcf6zqc38x7cf1kkklgc87ay"; name = "load-relative"; }; @@ -16824,7 +17020,7 @@ sha256 = "1089sbx20r30sis39vwy29fxhb2n3hh35rdv09lpzdxdq01s8wwp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loc-changes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loc-changes"; sha256 = "1akgij61b2ixpkchrriabwvx68cg4v5r5w9ncjrjh91hskjprfxh"; name = "loc-changes"; }; @@ -16845,7 +17041,7 @@ sha256 = "1l28n7a0v2zkknc70i1wn6qb5i21dkhfizzk8wcj28v44cgzk022"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/log4e"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/log4e"; sha256 = "1klj59dv8k4r0hily489dp12ra5hq1jnsdc0wcakh6zirmakhs34"; name = "log4e"; }; @@ -16866,7 +17062,7 @@ sha256 = "0g5vq9xy9lwczs77lr91c1srhhfmasnnnmjvgc55hbl6iwmbizbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logalimacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logalimacs"; sha256 = "0ai7a01bdi3a0amgi63pwgdp8wgcgx10an4nhc627wgb1cqxb7p6"; name = "logalimacs"; }; @@ -16887,7 +17083,7 @@ sha256 = "0jpyd2f33pk984kg0q9hxdl4615jb7sxsggnb30mpz7a2ws479xr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logito"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logito"; sha256 = "0bk4qnz66kvhzsk88lw45209778y53kg17iih70ix4ma1x6a3v5l"; name = "logito"; }; @@ -16908,7 +17104,7 @@ sha256 = "1yacic778ranlqblrcdhyf5igbrcin8aj30vjdm4klpmqb73hf1s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/logview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/logview"; sha256 = "0gks3j5avx8k3427a36lv7gr95id3cylaamgn5qwbg14s54y0vsh"; name = "logview"; }; @@ -16929,7 +17125,7 @@ sha256 = "1rpvw0dvym559vb4nrfy74jq06nbsz2b0n60lcykagcir8mpcidk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/loop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/loop"; sha256 = "0pav16kinzljmzx84vfz63fvi39af4628vk1jw79jk0pyg9rjbar"; name = "loop"; }; @@ -16950,7 +17146,7 @@ sha256 = "11y5jyq4xg9zlm1qi2y97nh05vhva9pai9yyr4x2pr41xz3s8fpk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/love-minor-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/love-minor-mode"; sha256 = "1skg039h2hn8dh47ww6n9l776s2yda8ariab4v9f56kb21bncr4m"; name = "love-minor-mode"; }; @@ -16971,7 +17167,7 @@ sha256 = "1qawjd0nbj1c142van7r01pmq74vkzcvnn27jgn79wwhplp9gm99"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/lua-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/lua-mode"; sha256 = "0gyi7w2h192h3pmrhq39lxwlwd9qyqs303lnp2655pikdzk9js94"; name = "lua-mode"; }; @@ -16992,7 +17188,7 @@ sha256 = "01847f8xmjfxvvi7hf73l7ypkdazwg8ciinm117zp4jkgnv0apz0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/m-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/m-buffer"; sha256 = "0l2rayglv48pcwnr1ggmn8c0az0mffgv02ivnzr9jcfs55ki07fc"; name = "m-buffer"; }; @@ -17013,7 +17209,7 @@ sha256 = "0dgsl1x6r8m9vvff1ia0kmz21h0dji2jl5cqlpx1m947zh45dahj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macro-math"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macro-math"; sha256 = "1r7splwq5kdrdhbmw5zn81vxymsrllgil48g8dl0r60293384h00"; name = "macro-math"; }; @@ -17034,7 +17230,7 @@ sha256 = "0g9bnq4p3ffvva30hpll80dn3i41m51mcvw3qf787zg1nmc5a0j6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/macrostep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/macrostep"; sha256 = "1wjibxbdsp5qfhq8xy0mcf3ms0q74qhdrhqndprn6jh3kcn5q63c"; name = "macrostep"; }; @@ -17055,7 +17251,7 @@ sha256 = "1rw5lvcj2v4b21akmsinkz24fbmp19s3jdqsd8jgmk3qqv0z81fc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magic-filetype"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magic-filetype"; sha256 = "0gcys45cqn5ghppkn0rmyvfybprlfz1x6hqr21yv93mf79h75zhg"; name = "magic-filetype"; }; @@ -17076,7 +17272,7 @@ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit"; sha256 = "0518ax2y7y2ji4jp7yghy84yxm0zgb059aqfa4v17grm4kr8p16q"; name = "magit"; }; @@ -17104,7 +17300,7 @@ sha256 = "19w8143c4spa856xyzx8fylndbj4s9nwn27f6v1ckqxvm5l0pph0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-annex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-annex"; sha256 = "1ri58s1ly416ksmb7mql6vnmx7hq59lmhi7qijknjarw7qs3bqys"; name = "magit-annex"; }; @@ -17125,7 +17321,7 @@ sha256 = "1vn6x53kpwv3zf2b5xjswyz6v853r8b9dg88qhwd2h480hrx6kal"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-filenotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-filenotify"; sha256 = "00a77czdi24n3zkx6jwaj2asablzpxq16iqd8s84kkqxcfiiahn7"; name = "magit-filenotify"; }; @@ -17146,7 +17342,7 @@ sha256 = "1jlww053s580d7rlvmr1dl79wxasa0hhh2jnwb1ra353d6h3a73w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-find-file"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-find-file"; sha256 = "1y66nsq1hbv1sb4n71gdxv7p1rz37vd9lkf7zl7avy0dchs499ik"; name = "magit-find-file"; }; @@ -17167,7 +17363,7 @@ sha256 = "0ym24gjd6c04zry08abcb09zvjbgj8nc1j12q0r51fhzzadxcxbb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gerrit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gerrit"; sha256 = "1iwvg10ly6dlf8llz9f8d4qfdbvd3s28wf48qgn1wjlxpka6zrd4"; name = "magit-gerrit"; }; @@ -17188,7 +17384,7 @@ sha256 = "19iqa2kzarpa75xy34hqvpy1y7dzx84pj540wwkj04dnpb4fwj2z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gh-pulls"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gh-pulls"; sha256 = "0qn9vjxi33pya9s8v3g95scmhwrn2yf5pjm7d24frq766wigjv8d"; name = "magit-gh-pulls"; }; @@ -17209,7 +17405,7 @@ sha256 = "0g9wqd4dbd0spal7ss9k679nak02hr1z0mgq6k4g5nkgngwn6l2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-gitflow"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-gitflow"; sha256 = "0wsqq3xpqqfak4aqwsh5sxjb1m62z3z0ysgdmnrch3qsh480r8vf"; name = "magit-gitflow"; }; @@ -17230,7 +17426,7 @@ sha256 = "1dv5qr9z5lxj2zjhwjhx451mbkb8d3y00q7ar6n34x7d5c4gmiya"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-popup"; sha256 = "0w6m384bbmp3bd4qbss5h1jvcfp4qnpqvzlfykhdgjwpv2b2a2fj"; name = "magit-popup"; }; @@ -17251,7 +17447,7 @@ sha256 = "075gxm4shbh5zfr17zpfn35w8ndgz9aqz6y3wws23wa4ff2n8kdc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-rockstar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-rockstar"; sha256 = "1i4fmraiypyd3q6vvibkg9xqfxiq83kcz64b1dr3wmwn30j7986n"; name = "magit-rockstar"; }; @@ -17272,7 +17468,7 @@ sha256 = "1mk8g8rr9vf8jm0mmsj33p8gc71nhlv3847hvqywy6z40nhcjnyb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-stgit"; sha256 = "12wg1ig2jzy2np76brpwxdix9pwv75chviq3c24qyv4y80pd11sv"; name = "magit-stgit"; }; @@ -17293,7 +17489,7 @@ sha256 = "1g8zq0s38di96wlhljp370kyj4a0ir1z3vb94k66v2m5nj83ap68"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-svn"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-svn"; sha256 = "02n732z06f0bhxqkxzlvm36bpqr40pas09zbzpfdk4pb6f9f80s0"; name = "magit-svn"; }; @@ -17314,7 +17510,7 @@ sha256 = "0dj183vphnvz9k2amga0ydcb4gkjxr28qz67055mxrf89q1qjq33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/magit-topgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/magit-topgit"; sha256 = "1ngrgf40n1g6ncd5nqgr0zgxwlkmv9k4fik96dgzysgwincx683i"; name = "magit-topgit"; }; @@ -17335,7 +17531,7 @@ sha256 = "0fp5gbin1sgsdz39spk74vadkzig3ydwhpzx9vg7f231kk5f6wzx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/make-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/make-color"; sha256 = "0mrv8b67lpid5m8rfbhcik76bvnjlw4xmcrd2c2iinyl02y07r5k"; name = "make-color"; }; @@ -17356,7 +17552,7 @@ sha256 = "1rr7vpm3xxzcaam3m8xni3ajy8ycyljix07n2jzczayri9sd8csy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/makey"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/makey"; sha256 = "06xgrlkqvg288yd4lyhx4vi80jlfarhblxk5m5zzs5as7n08cvk4"; name = "makey"; }; @@ -17377,7 +17573,7 @@ sha256 = "0z0ml7l1a45ych61qfc5fvkybl9hh37pgl6lzkaz6mcif1sl8gn1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malabar-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malabar-mode"; sha256 = "026ing7v22rz1pfzs2j9z09pm6dajpys992n45gzhwirz5f0q1rk"; name = "malabar-mode"; }; @@ -17398,7 +17594,7 @@ sha256 = "0hwxwwjzjxv2mmkxmalr2hp3x8apwcyvn2bz4d4yd4wrzcscay97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/malinka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/malinka"; sha256 = "1245mpxsxwnnpdsf0pd28mddgdfhh7x32a2l3sxfq0dyg2xlgvrp"; name = "malinka"; }; @@ -17419,7 +17615,7 @@ sha256 = "1272fsjzsza9dxm8s64b7x2jzr3ks8wjpwvgcxha2dnsjzklcdcj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mallard-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mallard-mode"; sha256 = "0y2ikjgy107kb85pz50vv7ywslqgbrrkcfsrd8gsk1jky4qn8izd"; name = "mallard-mode"; }; @@ -17440,7 +17636,7 @@ sha256 = "1fkijm0gikbwmxa9hf7s1rcwb0ipzjygd1mlicsm78rxvdd8k877"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-progress"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-progress"; sha256 = "0zc5vii72gbfwbb35w8m30c8r9zck971hwgcn1a4wjczgn4vkln7"; name = "map-progress"; }; @@ -17461,7 +17657,7 @@ sha256 = "0kk1sk3cr4dbmgq4wzml8kdf14dn9jbyq4bwmvk0i7dic9vwn21c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/map-regexp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/map-regexp"; sha256 = "0yiif0033lhaqggywzfizfia3siggwcz7yv4z7przhnr04akdmbj"; name = "map-regexp"; }; @@ -17482,7 +17678,7 @@ sha256 = "0y4b69r2l6kvh7g8f1y9v1pdall3n668ci24lp04lcms6rxcrsnh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marcopolo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marcopolo"; sha256 = "1nbck1m7lhync7n474578d2g1zc72c841hi236xjbdd2lnxz3zz0"; name = "marcopolo"; }; @@ -17503,7 +17699,7 @@ sha256 = "0fcyspz7n97n84d9203mxgn8ar4rn52qa49s3vayfrbkn038j5qw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mark-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mark-tools"; sha256 = "1688y7lnzhwdva2ildjabzi10i87klfsgvs947i7gfgxl7jwhisq"; name = "mark-tools"; }; @@ -17524,7 +17720,7 @@ sha256 = "098lf4n4rpx00sm07sy8dwp683a4sb7x0p15mrfp268apir3kkxb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode"; sha256 = "0gfb3hp87kpcrvxax3m5hsaclwwk1qmxc73cg26smzd1kjfwgz14"; name = "markdown-mode"; }; @@ -17545,7 +17741,7 @@ sha256 = "1adl36fj506kgfw40gpagzsd7aypfdvy60141raggd5844i6y96r"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-mode+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-mode+"; sha256 = "1535kcj9nmcgmk2448jxc0jmnqy7f50cw2ngffjq5w8bfhgf7q00"; name = "markdown-mode-plus"; }; @@ -17566,7 +17762,7 @@ sha256 = "1yi5hsgf8hr7v1wyn3bw650g3ysbglwn5qfrmb6yl3s08lvi1vlf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-preview-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-preview-mode"; sha256 = "0i0mld45d8y96nkqn2r77nvbyw6wgsf8r54d3c2jrv04mnaxs7pg"; name = "markdown-preview-mode"; }; @@ -17587,7 +17783,7 @@ sha256 = "0l687bna8rrc49y1fyn1ldjcwh290qgvi3p86c63yj4xy24fmdm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markdown-toc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markdown-toc"; sha256 = "0slky735yzmbfi4ld264vw64b4a4nllhywp19ya0sljbsfycbihv"; name = "markdown-toc"; }; @@ -17608,7 +17804,7 @@ sha256 = "0nk2rm14ccwrh1aaxzm80rllsz8g38h9w52m0pf3nnwh6sa757nk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/markup-faces"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/markup-faces"; sha256 = "12z92j9f0mpn7w2qkiwg54wh743q3inx56q3f8qcpfzyks546grq"; name = "markup-faces"; }; @@ -17629,7 +17825,7 @@ sha256 = "0pbli67wia8pximvgd68x6i9acdgsk51g9hjpqfm49rqg5nqalh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marmalade"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marmalade"; sha256 = "0ppa2s1fma1lc01byanfxpxfrjqk2snxbsmdbkcipjdi5dpb0a9s"; name = "marmalade"; }; @@ -17650,7 +17846,7 @@ sha256 = "0sriyjjhgis7fgq276j5mw6n84jdwxf8lq0iqqiaqwmc66l985mv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/marshal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/marshal"; sha256 = "17ikd8f1k42f28d4v5dn83zb44bsx7g336db60q068w6z8d4jbgl"; name = "marshal"; }; @@ -17671,7 +17867,7 @@ sha256 = "127q9xp015j28gjcna988dnrkadznn0xw8sdfvi943nhhqy4yvri"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/math-symbol-lists"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/math-symbol-lists"; sha256 = "01j11k29acj0b1pcapmgi2d2s3p50bkms21i2qcj0cbqgz8h6s27"; name = "math-symbol-lists"; }; @@ -17691,7 +17887,7 @@ sha256 = "1nmwny1y6n3w283v4kw57y6rlrlc9l8vy8nqhshl6v7vkzw5dvfp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/matrix-client"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/matrix-client"; sha256 = "09mgxk0xngw8j46vz6f5nwkb01iq96bf9m51w2q61wxivypnsyr6"; name = "matrix-client"; }; @@ -17712,7 +17908,7 @@ sha256 = "0x92b1qrhyrdh0z0xriyjc12h0wpk16x4yawj5i828ca6mz0qh5g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maven-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maven-test-mode"; sha256 = "1k9w51rh003p67yalzq1w8am40nnr2khyyb5y4bwxgpms8z391fm"; name = "maven-test-mode"; }; @@ -17733,7 +17929,7 @@ sha256 = "08gbkd8wln89j9yxp0zzd539hbwy1db31gca3vxxrpszixx8280y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/maxframe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/maxframe"; sha256 = "10cwy3gi3xb3pfdh6xiafxp3vvssawci3y26jda6550d0w5vardj"; name = "maxframe"; }; @@ -17746,15 +17942,15 @@ mb-url = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "mb-url"; - version = "0.0.6"; + version = "0.0.7"; src = fetchFromGitHub { owner = "dochang"; repo = "mb-url"; - rev = "35d5ce5888b7a49cfb642535039560b7b52512d5"; - sha256 = "1pbs7hb7bhbsnwrs7fc4max2k471bzkjigc2w123szmwmsvz84k6"; + rev = "85d4847d1d71e636ee264c537073973b1dcbe0b9"; + sha256 = "1pi5yi76781pckvqgqabmkvq081npzkzl3r97f1wbcndvpfvv8jx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mb-url"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mb-url"; sha256 = "1nf8ssan00qsn3d4dc6h6qzdwqzh977qb5d2m33kiwi6qb98988h"; name = "mb-url"; }; @@ -17775,7 +17971,7 @@ sha256 = "00gwd2jf5ncgyay5w2jc2mhv18jf4ydnzpfkxaxw9zjbdxg4ym2i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mbe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mbe"; sha256 = "0h18mbcjy8nh4gl12kg2v8x6ps320yk7sbgq5alqnx2shp80kri3"; name = "mbe"; }; @@ -17796,7 +17992,7 @@ sha256 = "0252wdq4sd6jhzfy0pn3gdm6aq2h13nnp8hvrn1mpml9x473a5n1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mc-extras"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mc-extras"; sha256 = "0b110x6ygc95v5pb9lk1i731x5s6dagl5afzv37l1qchys36xrym"; name = "mc-extras"; }; @@ -17817,7 +18013,7 @@ sha256 = "1vsla0a5x4kfyj3ca4r1v8cspp12dadi0frpailclaxfmpmpl5d3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mediawiki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mediawiki"; sha256 = "17cbrzfdp6jbbf74mn2fi1cwv7d1hvdbw9j84p43jzscnaa5ikx6"; name = "mediawiki"; }; @@ -17838,7 +18034,7 @@ sha256 = "12cp56ppmwpdgf5afx7hd2qb8d1qq8z27191fbbf5zqw8cq5zkpd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/melpa-upstream-visit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/melpa-upstream-visit"; sha256 = "0j4afy9ipzr7pwkij8ab207mabd7srganlyyif9h1hvclj9svdmf"; name = "melpa-upstream-visit"; }; @@ -17859,7 +18055,7 @@ sha256 = "1y4ra5z3ayw3w7dszzlkk3qz3nv2jg1vvx8cf0y5j1pqpx8vy3jf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mentor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mentor"; sha256 = "0nkf7f90m2qf11l97zwvb114yrpbqk1xxr2bh2nvbx8m1c8nad9s"; name = "mentor"; }; @@ -17880,7 +18076,7 @@ sha256 = "0vk1b9gjhjq47jhjhwh6h2x2cl2w7pz4018s6c444paw46gmgkln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/merlin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/merlin"; sha256 = "177cy9xcrjckxv8gvi1zhg2ndfr8cmsr37inyvpi5dxqy6d6alhp"; name = "merlin"; }; @@ -17901,7 +18097,7 @@ sha256 = "0n4nv1s25z70xfy3bl1wy467abz3agj4qmpx4rwdwzbarnqp9ps3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metafmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metafmt"; sha256 = "1ca102al7r3k2g92b4jkqv53crnmxy3z7cz31w1rprf41s69mn75"; name = "metafmt"; }; @@ -17922,7 +18118,7 @@ sha256 = "06mbdb4zb07skq1jpv05hr45k5x96d9hgkb358jiq0kfsqlrbbb4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/metaweblog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/metaweblog"; sha256 = "10kwqnfafby4ap0572mfkkdssr13y9p2gl9z3nmxqjjy04fkfi8b"; name = "metaweblog"; }; @@ -17943,7 +18139,7 @@ sha256 = "1dhws4a298zrm88cdn66sikdk06n0p60d32cxsgybakkhg5c5wgr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mew"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mew"; sha256 = "0423xxn3cw6jmsd7vrw30hx9phga5chxzi6x7cvpswg1mhcyn9fk"; name = "mew"; }; @@ -17964,7 +18160,7 @@ sha256 = "1bp4xqklf422n0zwwyj0ag3a4nndg8klazrga6rlvpy01hgg3drl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mhc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mhc"; sha256 = "02ikn9hx0kcfc2xrx4f38zpkfi6vgz7chcxk6q5d0vcsp93b4lql"; name = "mhc"; }; @@ -17985,7 +18181,7 @@ sha256 = "1cdjpqrsv2vhpdmv67krsds7wz19z9ajkabawr3yhxqii4myl4ik"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mic-paren"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mic-paren"; sha256 = "042dzp0nal18nxq94qlwwksh0nnypsyc0yykmc6l3kayp9pv4hw7"; name = "mic-paren"; }; @@ -18006,7 +18202,7 @@ sha256 = "1ckb5hymwj4wmsxakalsky4mkzn9vxhxr6416b2cr6r5jxj4xgsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/migemo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/migemo"; sha256 = "0y49imdwygv5zd7cyh9ngda4gyb2mld2a4s7zh4yzlh7z5ha9qkr"; name = "migemo"; }; @@ -18027,7 +18223,7 @@ sha256 = "1qg64mxsm2cswk52mlj7sx7k6gfnrsdwnf68i7cachri0i8aq4ap"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/milkode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/milkode"; sha256 = "07v6xgalx7vcw5sghckwvz584746cba05ql8flv8n556glm7hibh"; name = "milkode"; }; @@ -18048,7 +18244,7 @@ sha256 = "1zyb6c3xwdzk7dpn7xi0mvbcjdfxvzz1a0zlbs053pfar8iim5fk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-complete-cycle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-complete-cycle"; sha256 = "0y1mxs6q9a8lzprrlb22qff6x5mvkw4gp2l6p2js2r0j9jzyffq2"; name = "minibuffer-complete-cycle"; }; @@ -18069,7 +18265,7 @@ sha256 = "07nbn2pwlp33kr136xsm6lzddhjs538xkz0fbays89psblmy4kwj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minibuffer-cua"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minibuffer-cua"; sha256 = "1ragvr73ykbvpgynnq3z0z4yzrlfhfqlwc1vbxclb8x2xmxq7pzw"; name = "minibuffer-cua"; }; @@ -18090,7 +18286,7 @@ sha256 = "1850z96gly0jnr50472idqz1drzqarr0n23bbasslrc501xkg0bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/miniedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/miniedit"; sha256 = "10s407q7igdi2hsaaahbw8vckalrl7z3s6l9cflf51q16xh2ih87"; name = "miniedit"; }; @@ -18111,7 +18307,7 @@ sha256 = "0kjhn48sf2ps3k5pv06gqmqc4hlk6di9ld3ssw6vwfh8313x1fc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minimal-session-saver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minimal-session-saver"; sha256 = "1ay7wvriga28bdmarpfwagqzmmk93ri9f3idhr6z6iivwggwyy2i"; name = "minimal-session-saver"; }; @@ -18132,7 +18328,7 @@ sha256 = "0nd0jl5r5drnh98wdpqj2i7pgs7zvcizsh4qbvh8n0iw0c3f0pwh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/minitest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/minitest"; sha256 = "0x6nd4kkhiw8hh79r69861pf41j8p1y39kzf2rl61zlmyjz9zpmw"; name = "minitest"; }; @@ -18152,7 +18348,7 @@ sha256 = "0rpp748ym79sxccp9pyrwri14m7624zzb80srfgjfdpysrrs0jrr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mako"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mako"; sha256 = "0a4af5q9wxafrid8visp30cz6073ig0c961b78vmmgqrwvvxd3kn"; name = "mmm-mako"; }; @@ -18173,7 +18369,7 @@ sha256 = "097s4xnwfy8d1wzmz65g2f8bnjjjlj67w1yzwn4d3yasb171nbv8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmm-mode"; sha256 = "10vkqaf4684cm5yds1xfinvgc3v7871fb203sfl9dbkcgnd5dcjw"; name = "mmm-mode"; }; @@ -18194,7 +18390,7 @@ sha256 = "05nmcx3f63ds31cj3qwwp03ksflkfwlcn3z2xyxbny83r0dxbgvc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mmt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mmt"; sha256 = "0hal3qcw6x9658xpdaw6q9l2rr2z107pvg5bdzshf67p1b3lf9dq"; name = "mmt"; }; @@ -18215,7 +18411,7 @@ sha256 = "0yj9kc59c227727kh1zjxwrhijzd7rdhix7qqm4na1z6s4ycpxbm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocha"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocha"; sha256 = "0kjgrl5iy7cd3b9csgpjg3y0wp0q6c7c8cvf0mx8gdbsj7296kyx"; name = "mocha"; }; @@ -18236,7 +18432,7 @@ sha256 = "1lav7am41v63xgavq8pr88y828jmd1cxd4prjq7jlbxm6nvrwxh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mocker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mocker"; sha256 = "1g90jp1czrrzrmn7n4linby3q4fb4gcflzv2amjv0sdimw1ln1w3"; name = "mocker"; }; @@ -18249,15 +18445,15 @@ modalka = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "modalka"; - version = "0.1.2"; + version = "0.1.4"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "modalka"; - rev = "5a1e914bb76dfde539df26f3108793bba98bd4f9"; - sha256 = "0r24186d1q9436h3qhqz1z8q978d01an0dvpvzirf4x9ickrib3k"; + rev = "95627e660768c7ab7af4d8ad35c2bc0c4fa7195b"; + sha256 = "0yf5lwd95j55dkrkplsgnynq37ww0g97vw517j9q7spn7dqnq5f6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/modalka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modalka"; sha256 = "0bkjykvl6sw797h7j76dzn1viy598asly98gcl5wrq13n4w1md4c"; name = "modalka"; }; @@ -18278,7 +18474,7 @@ sha256 = "1ykj68d4h92i4qv90zgwrf9jhy1n22l2h9k5f1zsn8hvz9mhj1av"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-icons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-icons"; sha256 = "1dqcry27rz7afyvjg7345wysp6wmh8fpj32ysk5iw5i7v5scf6kf"; name = "mode-icons"; }; @@ -18299,7 +18495,7 @@ sha256 = "1lkw9nnlns6v7r6nx915f85whq1ri4w8lccwyxrvam40hfvq60s1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mode-line-debug"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mode-line-debug"; sha256 = "0ppj14bm3rx3xgg4mfxa5zcm2r129jgmsx817wq3h7akjngcbfkd"; name = "mode-line-debug"; }; @@ -18309,6 +18505,27 @@ license = lib.licenses.free; }; }) {}; + modern-cpp-font-lock = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "modern-cpp-font-lock"; + version = "0.1.1"; + src = fetchFromGitHub { + owner = "ludwigpacifici"; + repo = "modern-cpp-font-lock"; + rev = "6e4459465825bd12d577b8e2d780cc158538df68"; + sha256 = "1gpsdyzcjb9j7yy39pbbjln2c7zkcbbm1brn9y1djwpv5571sd1v"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/modern-cpp-font-lock"; + sha256 = "0h43icb5rqbkc5699kdy2mrjs5448phl18jch45ylp2wy2r8c2qj"; + name = "modern-cpp-font-lock"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/modern-cpp-font-lock"; + license = lib.licenses.free; + }; + }) {}; monokai-theme = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "monokai-theme"; @@ -18320,7 +18537,7 @@ sha256 = "0pfzzyfknfaj8yil5f55xfa8x5jypc5i95c4lrkb0vykgccczj78"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monokai-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monokai-theme"; sha256 = "13mv4vgsmdbf3v748lqi7b42hvr3yp86n97rb6792bcgd3kbdx7a"; name = "monokai-theme"; }; @@ -18341,7 +18558,7 @@ sha256 = "1a0pv8fkv1cjdb0k5bmjd67a273bzcmxjwzgy4jpb3ng1qbb2xnm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/monroe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/monroe"; sha256 = "04rhninxppvilk7s90g0wwa0g9vfcg7mk8mrb2m2c7cb9vj6wyig"; name = "monroe"; }; @@ -18362,7 +18579,7 @@ sha256 = "0kjqdm6kzhgjmfdj4n95ivffw1wqf4r3gk62fvhfi4w29g7wd16j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/morlock"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/morlock"; sha256 = "0693jr1k8mzd7hwp52azkl62c1g1p5yinarjcmdksfyqblqq5jna"; name = "morlock"; }; @@ -18383,7 +18600,7 @@ sha256 = "01mdy7sps0xryz5gfpl083rv7ixkxs2rkz5yaqjlam2rypdcsyy2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/move-dup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/move-dup"; sha256 = "0b0lmiisl9yckblwf7619if88qsmbka3bl4qiaqam7fka7psxs7f"; name = "move-dup"; }; @@ -18404,7 +18621,7 @@ sha256 = "1mg7arw4wbbm84frq3sws5937fh901qn0xnjk9jcp3pvc4d0sxwd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mowedline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mowedline"; sha256 = "0c2hvvwa7s5iyz517jaskshdcq9zs15zr6xsvrcb3biahrh4bmfb"; name = "mowedline"; }; @@ -18425,7 +18642,7 @@ sha256 = "13bf5jn1kgqg59j5czlzvajq2fw1rz4h5jqfc7x8w1a067nymf2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz"; sha256 = "0ar2xgsi7csjj6fgiamrjwjc58j942dm32j3f3lz21yn2c4pnyxi"; name = "moz"; }; @@ -18446,7 +18663,7 @@ sha256 = "1w1i1clkjg9mj1g4i2y3xw3hyj8s7h9gr04qgyb9c1q8vh11z8d0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/moz-controller"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/moz-controller"; sha256 = "18gca1csl9dfi9995mky8cbgi3xzf1if8pzdjiz5404gzcqk0rfd"; name = "moz-controller"; }; @@ -18467,7 +18684,7 @@ sha256 = "1gdi2pz8450h11aknz3hbgjlx09w6c4l8d8sz0zv3pb1z8cqkgqv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mozc-temp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mozc-temp"; sha256 = "0x1bsa1py0kn73hzbsb4ijl0bqng8nib191vgn6xq8f5cx55044d"; name = "mozc-temp"; }; @@ -18488,7 +18705,7 @@ sha256 = "1pjhch8vah0kf73fl2fk6khhrx1kflggd3zlxrf7w4fxr0qn8la3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mpv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mpv"; sha256 = "1vq308ac6jj1h8qa2b2sypisb38hbvwjimqndhpfir06fghkw94l"; name = "mpv"; }; @@ -18509,7 +18726,7 @@ sha256 = "1draiwbwb8zfi6rdr5irv8091xv2pmnifq7pzi3rrvjb8swb28z3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/msvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/msvc"; sha256 = "04gq2klana557qvsi3bv6416l0319jsqb6bdfs7y6729qd94hlq3"; name = "msvc"; }; @@ -18530,7 +18747,7 @@ sha256 = "0wrg6f7czn61f9wmrk27dzcdskznm5i1pwwjck5h768j0y9dfv6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-alert"; sha256 = "15nwj09iyrvjsc9lrxla6qa0s8izcllxghw5gx3ffncfcrx2l8qm"; name = "mu4e-alert"; }; @@ -18551,7 +18768,7 @@ sha256 = "1lyd8pcawn106zwlbq6gdq05i2zhry1qh9cdyjiw61nvgbbfi0yx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mu4e-maildirs-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mu4e-maildirs-extension"; sha256 = "1xz19dxrj1grnl7wy9qglh08xb3dr509232l3xizpkxgqqk8pwbi"; name = "mu4e-maildirs-extension"; }; @@ -18572,7 +18789,7 @@ sha256 = "11zabs7qpdhri6n90ck7pgwcbz46d813nyl73h5m1i8jvz1wzx7v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi"; sha256 = "1c240d1c1g8wb2ld944344zklnv86d9rycmya4z53b2ai10642ig"; name = "multi"; }; @@ -18593,7 +18810,7 @@ sha256 = "1d9y3dw27pgzgv6wk575d5ign55xdqgbl3ycyq1z7sji1477lz6b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multi-web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multi-web-mode"; sha256 = "0vi4yvahr10aqpcz4127c8pcqpr5srwc1yhgipnbnm86qnh34ql5"; name = "multi-web-mode"; }; @@ -18614,7 +18831,7 @@ sha256 = "1ijgvzv5r44xqvz751fd5drbvrspapw6xwv47582w255j363r6ss"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/multiple-cursors"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/multiple-cursors"; sha256 = "0mky5p9wpd3270wr5vfna8rkk2ff81wk7vicyxli39195m0qgg0x"; name = "multiple-cursors"; }; @@ -18635,7 +18852,7 @@ sha256 = "15gw4d0hp15rglsj8hzd290li4p0kadj2dsz0dgfcxld7hnimihk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mustache-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mustache-mode"; sha256 = "076ar57qhwcpl4n634ma827r2rh61670778wqr5za2444a6ax1gs"; name = "mustache-mode"; }; @@ -18656,7 +18873,7 @@ sha256 = "0hvq6z754niqjyv79jzb833wrwbspc7npfg85scwdv8vzwassjx4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mwim"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mwim"; sha256 = "0bsibwplvyv96y5i5svm2b0jwzs5a7jr2aara7v7xnpj0nqaxm8k"; name = "mwim"; }; @@ -18677,7 +18894,7 @@ sha256 = "0550k0rfm0zai306642v689mcpsw9pbd5vs0il82cihwvrxjifc5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/mykie"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/mykie"; sha256 = "12ram39fp3m9ar6q184rsnpkxb14y0ajibng7ia2ck54ck7n36cj"; name = "mykie"; }; @@ -18698,7 +18915,7 @@ sha256 = "0amhw630hgc0j8wr8m6aav399ixi3vbwrck79hhlr3pmyh91vv7n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/name-this-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/name-this-color"; sha256 = "12nrk1ww766jb4gb4iz6w485nimh2iv8wni2jq4l38v8ndh490zb"; name = "name-this-color"; }; @@ -18719,7 +18936,7 @@ sha256 = "0m82g27gwf9mvicivmcilqghz5b24ijmnw0jf0wl2skfbbg0sydh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/names"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/names"; sha256 = "1q784606jlakw1z6sx2g2x8hz8c8arywrm2r626wj0v105v510vg"; name = "names"; }; @@ -18740,7 +18957,7 @@ sha256 = "10yn215xb4s6kshk108y75im1xbdp0vwc9kah5bbaflp9234i0zh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrow-reindent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrow-reindent"; sha256 = "0fybal70kk62zlra63x4jb72694m0mzv4cx746prx9anvq1ss2i0"; name = "narrow-reindent"; }; @@ -18761,7 +18978,7 @@ sha256 = "0ydxj6dc10knambma2hpimqrhfz216nbj96w1dcwgjixs4cd4nax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/narrowed-page-navigation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/narrowed-page-navigation"; sha256 = "1yrmih60dd69qnin505jlmfidm2svzpdrz46286r7nm6pk7s4pb7"; name = "narrowed-page-navigation"; }; @@ -18774,15 +18991,15 @@ nasm-mode = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "nasm-mode"; - version = "1.0.1"; + version = "1.1.0"; src = fetchFromGitHub { owner = "skeeto"; repo = "nasm-mode"; - rev = "6e208d54eabe3339f22cd775f7e6237757f5eb36"; - sha256 = "1l7asqwi5gcvb2mn8608025lwypf2vqzrkc3a9phdfjp0qn2apdn"; + rev = "c3f5475c2f4bd930411b6d716765d094b36ce219"; + sha256 = "0d8bfz41ry5bvkz2894dqkk3244n7xcjk3pf58fcsagvmmkkln7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nasm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nasm-mode"; sha256 = "1626yf9mmqlsw8w01vzqsyb5ipa56259d4kl6w871k7rvhxwff17"; name = "nasm-mode"; }; @@ -18803,7 +19020,7 @@ sha256 = "119hy8rs83f17d6zizdaxn2ck3sylxbyz7adszbznjc8zrbaw0ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nav-flash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nav-flash"; sha256 = "0936kr0s6zxxmjwaqm7ywdw2im4dxai1xb7j6xa2gp7c70qvvsx3"; name = "nav-flash"; }; @@ -18824,7 +19041,7 @@ sha256 = "15jh1lsgqfnpbmrikm8kdh5bj60yb96f2as2anppjjsgl6w96glh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navi-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navi-mode"; sha256 = "0f5db983w9kxq8mcjr22zfrm7cpxydml4viac62lvab2kwbpbrmi"; name = "navi-mode"; }; @@ -18845,7 +19062,7 @@ sha256 = "09cb07f98aclgq8jf5419305zydkk1hz4nvzrwqz7syrlpvx8xi5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/navorski"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/navorski"; sha256 = "0dnzpsm0ya8rbcik5wp378hc9k7gjb3gwmkqqj889c38q5cdwsx7"; name = "navorski"; }; @@ -18866,7 +19083,7 @@ sha256 = "16i1k1zr6ng1dlxb1b73mxjf25f4kvf3x5vfffsi3qnfm960bg3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ncl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ncl-mode"; sha256 = "0hmd606xgapzbc79px9l1q6pphrhdzip495yprvg20xsdpmjlfw9"; name = "ncl-mode"; }; @@ -18887,7 +19104,7 @@ sha256 = "19xxg4ya6vndk2ljdnl284zs8qf9dkq4ghr7pmsclp9n7zh46v48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nemerle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nemerle"; sha256 = "0698hbgk80w7wp0ssx9pl13aapm7rc6l3y2zydfkyqdfwy5y71v6"; name = "nemerle"; }; @@ -18908,7 +19125,7 @@ sha256 = "1gmi0xxwkh33w5gxc8488m1vv6ycizqhlw1kpn81zhqdzzq3s06n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/neotree"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/neotree"; sha256 = "05smm1xsn866lsrak0inn2qw6dvzy24lz6h7rvinlhk5w27xva06"; name = "neotree"; }; @@ -18929,7 +19146,7 @@ sha256 = "08bpyk0brx0x2l0y8hn8zpkaxb2ndmxz22kzxxypj6hdz303wf38"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nginx-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nginx-mode"; sha256 = "07k17m64zhv6gik8v4n73d8l1k6fsp4qp8cl94r384ny0187y65c"; name = "nginx-mode"; }; @@ -18950,7 +19167,7 @@ sha256 = "0dzcaa88l7yjc7fhyhkvbzs7bmhi6bb6rx41wsnnidlnpzbgdrk7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/niceify-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/niceify-info"; sha256 = "1s9c8yxbab9zl5jx38alwa2hpp4zj5cb9a5gfm3x09jf3iw768bl"; name = "niceify-info"; }; @@ -18971,7 +19188,7 @@ sha256 = "14jh2cg1isip8b8lls3hdj99vpqjyjqlv27r2kpq6095b78p64d9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ninja-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ninja-mode"; sha256 = "1m7f25sbkz8k343giczrnw2ah5i3mk4c7csi8kk9x5y16030asik"; name = "ninja-mode"; }; @@ -18992,7 +19209,7 @@ sha256 = "1rvi30xyj2vj3gmzagy51smrhb1xwlsfgnyg30hblj88yn0wh5sz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nix-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nix-mode"; sha256 = "00rqawi8zs2x79c91gmk0anfyqbwalvfwmpak20i11lfzmdsza1s"; name = "nix-mode"; }; @@ -19013,7 +19230,7 @@ sha256 = "1lm7rkgf7q5g4ji6v1masfbhxdpwni8d77dapsy5k9p73cr2aqld"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nixos-options"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nixos-options"; sha256 = "1m3jipidk10zj68rzjbacgjlal31jf80gqjxlgj4qs8lm671gxmm"; name = "nixos-options"; }; @@ -19034,7 +19251,7 @@ sha256 = "0wk86gm0by9c8mfbvydz5va07qd30n6wx067inqfa7wjffaq0xr7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/noccur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/noccur"; sha256 = "0a8l50v09bgap7rsls808k9wyjpjbcxaffsvz7hh9rw9s7m5fz5g"; name = "noccur"; }; @@ -19055,7 +19272,7 @@ sha256 = "03vcs458rcn1hgfvmgmijadjvri7zlh2z4lxgaplzfnga13mapym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nodejs-repl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nodejs-repl"; sha256 = "0rvhhrsw87kfrwdhm8glq6b3nr0v90ivm7fcc0da4yc2jmcyk907"; name = "nodejs-repl"; }; @@ -19074,7 +19291,7 @@ sha256 = "07bhzddaxdjd591xmg59yd657a1is0q515291jd83mjsmgq258bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nose"; sha256 = "0l77hsmn3qk934ppdav1gy9sq48g0v1dzc5qy0rp9vv4yz2jx2jk"; name = "nose"; }; @@ -19090,10 +19307,10 @@ src = fetchgit { url = "git://git.notmuchmail.org/git/notmuch"; rev = "ea5caecec5c50833a6f5a422e217a71eee6324af"; - sha256 = "0883vwwcir5w3b4831y46bcm80z7chqri4wsx7qxc2ynw0a4qfx3"; + sha256 = "0n471pjj433jivmwbifzw8x6ya09v52yvgdjfkxcp2a6mn23k6xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch"; sha256 = "173d1gf5rd4nbjwg91486ibg54n3qlpwgyvkcy4d30jm4vqwqrqv"; name = "notmuch"; }; @@ -19114,7 +19331,7 @@ sha256 = "1ss87vlp7625lnn2iah3rc1xfxcbpx4kmiww9n16jx073fs2rj18"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/notmuch-labeler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/notmuch-labeler"; sha256 = "1c0cbkk5k8ps01xl63a0xa2adkqaj0znw8qs8ca4ai8v1420bpl0"; name = "notmuch-labeler"; }; @@ -19135,7 +19352,7 @@ sha256 = "1l07nrlfd5qj8jnqacjba7mb6prapg8d8h3881l3kb66sn02ahgy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nrepl-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nrepl-sync"; sha256 = "01b504b4d8rrhlf3sfq3kk9i222fch6jd5jbm02kqw20fgv6q3jd"; name = "nrepl-sync"; }; @@ -19156,7 +19373,7 @@ sha256 = "0c4qfbb345yna5c30czq8nhcx283z1fnpp6h16p7vjqs6y37czsl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nsis-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nsis-mode"; sha256 = "0pc047ryw906sz5mv0awvl67kh20prsgx6fbh0j1qm0cali2792l"; name = "nsis-mode"; }; @@ -19177,7 +19394,7 @@ sha256 = "1624jj922l0bbav1v8szdr0lpyx0ng959fg3sspg1j15kgkir8kf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nvm"; sha256 = "03gy7wavc2q02lnr9pmp3l1pn0lzbdq0kwnmg9fvklmq6r6n3x34"; name = "nvm"; }; @@ -19198,7 +19415,7 @@ sha256 = "199ii1658k4sp5krha77n9l5jblyvnvvvr28g2nbc74lfybckjwq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-mode"; sha256 = "1z2wnsbjllqa533g1ab5cgbv3d9hjix7fsd7z9c45nqh5cmadmyv"; name = "nyan-mode"; }; @@ -19219,7 +19436,7 @@ sha256 = "0bgspjy8h3d7v12sfjnd2ghj4183pdf0z48g5xs129jwd3nycykp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/nyan-prompt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/nyan-prompt"; sha256 = "1s0qyhpfpncsv9qfxy07rbp4gv8pp5xzb48rbd3r14nkjlnylnfb"; name = "nyan-prompt"; }; @@ -19240,7 +19457,7 @@ sha256 = "0r12023yy8j96bp8z2ml6ffyr2c9rcd5abkh6vqnkwsdxkzx6wrs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/o-blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/o-blog"; sha256 = "08grkyvg27wd5232q3y8p0v7higfq7bmsdzmvhja96v6qy2xsbja"; name = "o-blog"; }; @@ -19261,7 +19478,7 @@ sha256 = "0bqr6yl1hpykpykjpfb247xnpnz510zrg9yv7nkxlrig4pjgdcx1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-http"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-http"; sha256 = "0b7ghz9pqbyn3b52cpmnwa2wnd4svj23p6gc48ybwzwiid42wiss"; name = "ob-http"; }; @@ -19282,7 +19499,7 @@ sha256 = "08p64ss3ia1gq6dsna5v3ajjwm5g9ma7yvd5y0jx91xssjqq5dja"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sagemath"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sagemath"; sha256 = "02ispac1y4g7p7iyscf5p8lvp92ncrn6281jm9igyiny1w6hivy7"; name = "ob-sagemath"; }; @@ -19303,7 +19520,7 @@ sha256 = "1xx6hyq3gk4bavcx6i9bhipbn4mn5rv2ga9lryq09qgq2l9znclk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-sml"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-sml"; sha256 = "04qvzhwjr8ipvq3znnhn0wbl4pbb1rwxi90iidavzk3phbkpaskn"; name = "ob-sml"; }; @@ -19324,7 +19541,7 @@ sha256 = "10hm20dzhkxk61ass3bd5gdn1bs2l60y3zjnpkxinzn7m6aaniia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ob-translate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ob-translate"; sha256 = "1hi0rxbyxvk9sbk2fy3kqw7l4lgri921vya1mn4i1q2i1979r2gz"; name = "ob-translate"; }; @@ -19345,7 +19562,7 @@ sha256 = "05ay599nc6jdw2fjss4izz1ynv2wc4svff932n8j9hvrhygipb2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocodo-svg-modelines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocodo-svg-modelines"; sha256 = "0fa88ns70wsr9i9gf4zx3fvmn1a32mrjsda105n0cx6c965kfmay"; name = "ocodo-svg-modelines"; }; @@ -19366,7 +19583,7 @@ sha256 = "0ynv2yhm7akpvqp72pdabhddwr352s1k85q8m1khsvspgg1mkiqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ocp-indent"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ocp-indent"; sha256 = "0wc4z9dsnnyr24n3vg1npvc3rm53av8bpbvrl8kldxxdiwgnbkjw"; name = "ocp-indent"; }; @@ -19387,7 +19604,7 @@ sha256 = "19fg6r7aiirfsbp2h1a824476sn1ln4nz8kvpdzkzvyf1hzx68gw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/octicons"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/octicons"; sha256 = "02f37bvnc5qvkvfbyx5wp54nz71bqm747mq1p5361sx091lllkxk"; name = "octicons"; }; @@ -19408,7 +19625,7 @@ sha256 = "0az4llfgva4wvpljyc5s2m7ggfnj06ssp32x8bncr5fzksha3r7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/offlineimap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/offlineimap"; sha256 = "0nza7lrz7cn06njcblwh9hy3050j8ja4awbxx7jzv6nazjg7201b"; name = "offlineimap"; }; @@ -19429,7 +19646,7 @@ sha256 = "1hx1yv0fd64832y15c2chz9d50hqs4ap5vry4x6745vify6mchlj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/olivetti"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/olivetti"; sha256 = "0fkvw2y8r4ww2ar9505xls44j0rcrxc884p5srf1q47011v69mhd"; name = "olivetti"; }; @@ -19450,7 +19667,7 @@ sha256 = "07grj81alrr6qgs3jmqkjzphkvi26w6jm5hf1f5wyx7h6q293ady"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-kill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-kill"; sha256 = "03kydl16rd9mnc1rnan2byqa6f70891fhcj16wkavl2r68rfj75k"; name = "omni-kill"; }; @@ -19471,7 +19688,7 @@ sha256 = "030f983n19n64f8irif102nncvam04xpx020vfgja9886wlj40pk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-log"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-log"; sha256 = "0c29243zq8r89ax4rxlmb8imag12icnldcb0q0xsnhjccw8lyw1r"; name = "omni-log"; }; @@ -19492,7 +19709,7 @@ sha256 = "1rfs6z56pnacy6m7yvm2hrb0ykfvaiyichivcmb9ssdgqp92cbxx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-scratch"; sha256 = "190dkqcw8xywzrq8a99w4rqi0y1h2aj23s84g2ln1sf7jaf6d6n9"; name = "omni-scratch"; }; @@ -19513,7 +19730,7 @@ sha256 = "0c34rci5793hd674x2srhqvnj46llrbkrw1xpzf73s4ib5zhh7xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omni-tags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omni-tags"; sha256 = "133ww1jf14jbw02ssbx2a46mp52j18a2wwzb6x77azb0akmf1lzl"; name = "omni-tags"; }; @@ -19534,7 +19751,7 @@ sha256 = "1iq8yzjv7wb0jfi3lqqyx4n7whvb7xf8ls0q0w7pgsrsslrxbwcm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/omnisharp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/omnisharp"; sha256 = "0dwya22y92k7x2s223az1g8hmrpfmk1sgwbr9z47raaa8kd52iad"; name = "omnisharp"; }; @@ -19564,7 +19781,7 @@ sha256 = "119pk7gg4fw5bdvir8077ra603b5nbqvd7ph9cqrwxa056jzvry8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opam"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opam"; sha256 = "004r93nn1ranvxkcc0y5m3p8gh4axgghgnsvim38nc1sqda5h6xa"; name = "opam"; }; @@ -19585,7 +19802,7 @@ sha256 = "0n64l1jrrk60g192nn0240qcv2p9r138mi9gb38qq5k65wffbc21"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/opencl-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/opencl-mode"; sha256 = "1g351wiaycwmg1bnf4s2mdnc3lb2ml5l54g19184xqssfqlx7y79"; name = "opencl-mode"; }; @@ -19606,7 +19823,7 @@ sha256 = "12q09kdcgv6hl1hmgarl73j4g9gi4h7sj865655mdja0ns9n1pdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/operate-on-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/operate-on-number"; sha256 = "1rw3fqbzfizgcbz3yaf99rr2546msna4z7dyfa8dbi8h7yzl4fhk"; name = "operate-on-number"; }; @@ -19627,7 +19844,7 @@ sha256 = "1xckin2d6s40kgr2293g72ipc57f8gp6y63303kmqcv3qm8q13ca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ac"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ac"; sha256 = "059jr3v3558cgw626zbqfwmwwv5f4637ai26h7b6psqh0x9sf3mr"; name = "org-ac"; }; @@ -19648,7 +19865,7 @@ sha256 = "0gkxxzdk8bd1yi5x9217pkq9d01ccq8znxc7h8qcw0p1336rigfc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-agenda-property"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-agenda-property"; sha256 = "0zsjzjw52asl609q7a2s4jcsm478p4cxzhnd3azyr9ypxydjf6qk"; name = "org-agenda-property"; }; @@ -19669,7 +19886,7 @@ sha256 = "0j6fqgzvbmvvdh0dgwsxq004wxys2zwnq9wa3idm087ynp2a2ani"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-autolist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-autolist"; sha256 = "1jvspxhxlvd7h1srk9dbk1v5dykmf8jsjaqicpll7ial6i0qgikj"; name = "org-autolist"; }; @@ -19690,7 +19907,7 @@ sha256 = "0j765rb2yfwnc0ri53jb8d6lxj6knpmy495bk3sd63492kdrxf93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bookmark-heading"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bookmark-heading"; sha256 = "1q92rg9d945ypcpb7kig2r0cr7nb7avsylaa7nxjib25advx80n9"; name = "org-bookmark-heading"; }; @@ -19711,7 +19928,7 @@ sha256 = "10nr4sjffnqbllv6gmak6pviyynrb7pi5nvrq331h5alm3xcpq0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-bullets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-bullets"; sha256 = "1kxhlabaqi1g6pz215afp65d9cp324s8mvabjh7q1h7ari32an75"; name = "org-bullets"; }; @@ -19732,7 +19949,7 @@ sha256 = "0cxccxz17pj67wgmyxr74n381mknqgqkyav3jkxs4ghg59g5nygl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-dp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-dp"; sha256 = "0fnrzpgw8l0g862j20yy4mw1wfcm2i04r6dxi4yd7yay8bw2i4yq"; name = "org-dp"; }; @@ -19753,7 +19970,7 @@ sha256 = "18x8c6jcqkfam79z4hskr8h1lvzvd5rlfgymmj1ps6p6hd3j4ihl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-elisp-help"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-elisp-help"; sha256 = "0a4wvz52hkcw5nrml3h1yp8w97vg5jw22wnpfbb827zh7iwb259h"; name = "org-elisp-help"; }; @@ -19774,7 +19991,7 @@ sha256 = "1pxfcyf447h18220izi8qlnwdr8rlwn5kds8gr5i1v90s6hpa498"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gcal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gcal"; sha256 = "1mp6cm0rhd4r9pfvsjjp86sdqxjbbg7gk41zx0zf0s772smddy3q"; name = "org-gcal"; }; @@ -19795,7 +20012,7 @@ sha256 = "0b57ik05iax2h3nrj96kysbk4hxmxlaabd0n6lv1xsayrlli3sj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-gnome"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-gnome"; sha256 = "0c37gfs6xs0jbvg6ypd4z5ip1khm26wr5lxgmv1dzcc383ynzg0v"; name = "org-gnome"; }; @@ -19816,7 +20033,7 @@ sha256 = "1iyqv34b7q2k73srshcnpvfzcadq47w4rzkqp6m1d3ajk8x2vypq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-if"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-if"; sha256 = "0h0jdyawz2j4mp33w85z8q77l37qid8palvw5n4z379qa0wr5h96"; name = "org-if"; }; @@ -19837,7 +20054,7 @@ sha256 = "1rv1d49gc544cmzknd272x4v74kqbvccg0mf16b1jkn5h8f4jhkm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-journal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-journal"; sha256 = "1npzqxn1ssigq7k1nrxz3xymxaazby0ddgxq6lgw2a1zjmjm4h2b"; name = "org-journal"; }; @@ -19858,7 +20075,7 @@ sha256 = "1797pd264zn19zk93nifyw6pwk2a7wrpfir373qclk601yv2g5h8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-link-travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-link-travis"; sha256 = "0hj4x7cw7a3ry8xislkz9bnavy77z4cpmnvns02yi3gnib53mlfs"; name = "org-link-travis"; }; @@ -19879,7 +20096,7 @@ sha256 = "1bggz782ci0z6aw76v51ykbmfzh5g6cxh43w798as1152sn7im3p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-linkany"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-linkany"; sha256 = "0arjj3c23yqm1ljvbnl7v9cqvd9lbz4381g8f3jyqbafs25bdc3c"; name = "org-linkany"; }; @@ -19896,10 +20113,10 @@ src = fetchgit { url = "git://orgmode.org/org-mode.git"; rev = "592dc2ee7e4c80b9b61efb77117c8dc22d6cefd1"; - sha256 = "0rvsn085r1sgvv0gwvjlfgn7371bjd254hdzamc97m122pqr7cxr"; + sha256 = "055ahg27z4y0r4nhgqdik10x91dpmfmrv1mbr7hc7xzk9cy4rf2w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-mac-iCal"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-mac-iCal"; sha256 = "1ilzvmw1x5incagp1vf8d9v9mz0krlv7bpv428gg3gpqzpm6kksw"; name = "org-mac-iCal"; }; @@ -19920,7 +20137,7 @@ sha256 = "0yxfhzygiki8sha1dddac4g72r51yi4jnga2scmk51f9jgwqbihp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-multiple-keymap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-multiple-keymap"; sha256 = "16iv5575634asvn1b2k535ml8g4lqgy8z5w6ykma5f9phq5idb9f"; name = "org-multiple-keymap"; }; @@ -19941,7 +20158,7 @@ sha256 = "15fy6xpz6mk4j3nkrhiqal2dp77rhxmk8a7xiw037xr1jgq9sd9a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-outlook"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-outlook"; sha256 = "0cn8h6yy67jr5h1yxsfqmr8q7ii4f99pgghfp821m01pj55qyjx9"; name = "org-outlook"; }; @@ -19962,7 +20179,7 @@ sha256 = "0zc20m63a1iz9aziid5jsvcbl86k9dg9js4k3almchh55az4a0i3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-page"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-page"; sha256 = "1326m3w7vz22zk7rx40z28fddsccy5fl1qhbb7clci8l69blcc2v"; name = "org-page"; }; @@ -19983,7 +20200,7 @@ sha256 = "14lshgyrlzjcrqdfsn17llm70ijbs86cv9mccy87vlr01rbsz6lj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pdfview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pdfview"; sha256 = "1z4gb5lw7ngphixw06b5484kwlxbc098w2xshzml5sywr16a4iab"; name = "org-pdfview"; }; @@ -20004,7 +20221,7 @@ sha256 = "1fjdza723615bhdm5x6gbd03vi7ywzpbjn8p59saimczqngfdpmw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-pomodoro"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-pomodoro"; sha256 = "1vdi07hrhniyhhvg0hcr5mlixy6bjynvwm89z2lvfyvnnxpx0r27"; name = "org-pomodoro"; }; @@ -20025,7 +20242,7 @@ sha256 = "16aq5p65q5a0an14q9xzsnkaa5bzkrwhm9cv5ljajjfcjsjcvmb6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-projectile"; sha256 = "078s77wms1n1b29mrn6x25sksfjad0yns51gmahzd7hlgp5d56dm"; name = "org-projectile"; }; @@ -20046,7 +20263,7 @@ sha256 = "1cxjzj955rvp0ijbp7ifpmkxdhimz8hqjw5c9gv6zwjqb5iih9ry"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-protocol-jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-protocol-jekyll"; sha256 = "18wg489n2d1sx9jk00ki6p2rxkqz67kqwnmy2kb1ga1rmb6x9wfs"; name = "org-protocol-jekyll"; }; @@ -20067,7 +20284,7 @@ sha256 = "1bi09hd5m994rkqcx0a045h20419b6n4vvwiiggzsi0723dd9fb9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-random-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-random-todo"; sha256 = "0yflppdbkfn2phd21zkjdlidzasfm846mzniay83v3akz0qx31lr"; name = "org-random-todo"; }; @@ -20088,7 +20305,7 @@ sha256 = "0hhgfw0sqvl9jmmslwxn6v3dii99v09yz2h0ia5np9lzyxsc207a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-readme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-readme"; sha256 = "1qqbsgspd006gy0kc614w7bg6na0ygmflvqkmw47899pbgj81hxh"; name = "org-readme"; }; @@ -20109,7 +20326,7 @@ sha256 = "1iwvff3bi80xyds6xy202kfx42hv162cpcl78r88sl8j25q3jxhk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-ref"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-ref"; sha256 = "087isxf3z8cgmmniaxr3lpq9jg3sriw88dwp4f0ky286hlvgzw08"; name = "org-ref"; }; @@ -20130,7 +20347,7 @@ sha256 = "03c88jzwvl95dl39703mknkvnk3cmw4gss5c1y2k9py2rgh6bpr9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-repo-todo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-repo-todo"; sha256 = "0l5ns1hs3i4dhrpmvzl34zc9zysgjkfa7j8apbda59n9jdvml5v1"; name = "org-repo-todo"; }; @@ -20151,7 +20368,7 @@ sha256 = "0zx9gpvm5gy9k45lbhaks9s935id727lszsh40gmpdp5zxf3rjk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-sync"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-sync"; sha256 = "0n8fz2d1vg9r8dszgasbnb6pgaxr2i8mqrp953prf1nhmfpjpxad"; name = "org-sync"; }; @@ -20172,7 +20389,7 @@ sha256 = "1qx3kd02sxs9k7adlvdlbmyhkc5kr7ni5lw4gxjw3nphnc536bkb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-table-comment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-table-comment"; sha256 = "1d40vl8aa1x27z4gwnkzxgrqp7vd3ln2pc445ijjxp1wr8bjxvdz"; name = "org-table-comment"; }; @@ -20193,7 +20410,7 @@ sha256 = "1qz1qhd7v6ynmvz7j1xscz85z6zwy9dcarwhbz020l4bk4g9zf94"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tfl"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tfl"; sha256 = "1rqmmw0222vbxfn5wxq9ni2j813x92lpv99jjszqjvgnf2rkhjhf"; name = "org-tfl"; }; @@ -20214,7 +20431,7 @@ sha256 = "12fksqi9flf84h1lbmbcjnqxa7dairp50wvlwfhbp1hbb8l9z63a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-themis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-themis"; sha256 = "08rajz5y7h88fh94s2ad0f66va4vi31k9hwdv8p212bs276rp7ln"; name = "org-themis"; }; @@ -20235,7 +20452,7 @@ sha256 = "09iw2jffb2qrx5r07zd1j8sk5wafamjkc2khqyfwc5kx6xyp1f46"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-time-budgets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-time-budgets"; sha256 = "0r8km586n6xdnjha7xnzlh03nw1dp066hydaz8kxfmhvygl9cpah"; name = "org-time-budgets"; }; @@ -20256,7 +20473,7 @@ sha256 = "0qqa62fsmra6v4061kpki8wbhfcwkgnb2gzxwvnaqlcmhivksg6v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-toodledo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-toodledo"; sha256 = "0c7qr0jsc4iyrwkc22xp9nmk6984v7q1k0rvpd62m07lb5gvbiq3"; name = "org-toodledo"; }; @@ -20277,7 +20494,7 @@ sha256 = "1yh4p3i0ajfnsvh057h8dpf4rqvvblmfgzj6vyn9dmcl5is1ir2q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tracktable"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tracktable"; sha256 = "0mngf9q2ffxq32cgng0xl30661mj15wmr9y4hr3xddj626kxrp00"; name = "org-tracktable"; }; @@ -20298,7 +20515,7 @@ sha256 = "1h15fr16kgbyrxambmk4hsmha6hx4c4yqkccb82g3wlvzmnqj5x3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-transform-tree-table"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-transform-tree-table"; sha256 = "0n68cw769nk90ms6w1w6cc1nxjwn1navkz56mf11bsiqvsk3km7r"; name = "org-transform-tree-table"; }; @@ -20319,7 +20536,7 @@ sha256 = "0aacxxwhwjzby0f9r4q0lra5lqcrw5snnm1yc63jrs6c0ifakk45"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-tree-slide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-tree-slide"; sha256 = "0v857zplv0wdbg4li667v2p5pn5zcf9fgbqcwa75x8babilkl6jn"; name = "org-tree-slide"; }; @@ -20340,7 +20557,7 @@ sha256 = "061nf6gwrzi36q3m3b1hn4bj33a6q4yic3fxdxxwvwrzi42bl74a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-trello"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-trello"; sha256 = "14lq8nn1x6qb3jx518zaaz5582m4npd593w056igqhahkfm0qp8i"; name = "org-trello"; }; @@ -20368,7 +20585,7 @@ sha256 = "1qf4pqsg12y1qx7di0y5dp0f4slyp69h2q6y21hldzknhwxx4yy4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org-vcard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org-vcard"; sha256 = "0l6azshvzl1wws582njqr3qx4h73gwrdqwa3jcic1qbs9hg2l4yl"; name = "org-vcard"; }; @@ -20389,7 +20606,7 @@ sha256 = "0av1477jn3s4s5kymd7sbb0av437vb5mnfc6rpfgzwji7b8mfr7l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2blog"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2blog"; sha256 = "0ancvn4ji4552k4nfd2ijclsd027am93ngg241ll8f6h6k0wpmzq"; name = "org2blog"; }; @@ -20410,7 +20627,7 @@ sha256 = "089nqbda5mg1ippqnsl5wcx9n1gpnaqhl6kz54n47kivb400bidh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/org2jekyll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/org2jekyll"; sha256 = "1j9d6xf5nsakifxwd4zmjc29lbj46ffn3z109k2y2yhz7q3r9hzv"; name = "org2jekyll"; }; @@ -20431,7 +20648,7 @@ sha256 = "02mxp17p7bj4xamg0m6zk832hmpqcgzc7bjbjcnvbvrawhc255hy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgbox"; sha256 = "12wfqlpjh9nr7zgqs4h8kmfsk825n68qcbn8z2fw2mpshg3nj7l8"; name = "orgbox"; }; @@ -20452,7 +20669,7 @@ sha256 = "1wxxdx3c5qacsii4kysk438cjr1hnmpir78kp6xgk9xw5g9snlnj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgit"; sha256 = "0askccb3h98v8gmylwxaph3gbyv5b1sp4slws76aqz1kq9x0jy7w"; name = "orgit"; }; @@ -20473,7 +20690,7 @@ sha256 = "07ggg2mvvmv40h3gqlcxwrxsyrpvn2pffdjrzbh7yprm5mxynbjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orglink"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orglink"; sha256 = "0ldrvvqs3hlazj0dch162gsbnbxcg6fgrxid8p7w9gj19vbcl52b"; name = "orglink"; }; @@ -20494,7 +20711,7 @@ sha256 = "0zfiq9d5jqzpmscngb1s2jgfiqmbi4dyw0fqa59v2g84gxjg793x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/orgtbl-show-header"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/orgtbl-show-header"; sha256 = "1xgqjg3lmcczdblxaka47cc1ad8p8jhyb2nqwq0qnbqw46fqjp3k"; name = "orgtbl-show-header"; }; @@ -20515,7 +20732,7 @@ sha256 = "0g1xhh88a65vcq6rlh7ii16pra4pv519ajcws0h93ldbbjiy7p0m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-browse"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-browse"; sha256 = "06rfzq2hxhzg6jh2zs28r7ffxwlq40nz954j13ly8403c7rmbrfm"; name = "osx-browse"; }; @@ -20536,7 +20753,7 @@ sha256 = "1ykn48src7qhx9cmpjkaqsz7h36p75kkq1h9wlcpv5fhaky2d4n4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-clipboard"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-clipboard"; sha256 = "0gjgr451v6rlyarz96v6h8kfbvkk7npvhgvkgwdi0bjighrhlv4f"; name = "osx-clipboard"; }; @@ -20557,7 +20774,7 @@ sha256 = "1vywqzw8hydi944q4ghgxbbvvmwfpa9wj5nmrnixfcw8h4mfcxvv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-dictionary"; sha256 = "13033fxc5vjd1f7mm6znmprcp3mwxbvblb2d25shr8d4imqqhv82"; name = "osx-dictionary"; }; @@ -20578,7 +20795,7 @@ sha256 = "1csnxpsfnv9lv07kgvc60qx5c33sshmnz60p3qjz7ym7rnjy9b5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-location"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-location"; sha256 = "1p12mmrw70p3b04zlprkdxdfnb7m3vkm6gci3fwhr5zyfvwxvn0c"; name = "osx-location"; }; @@ -20599,7 +20816,7 @@ sha256 = "0830kkmvc3ss7ygqfwz3j75s7mhxfxyadaksrp0v2cc4y6wn6nfv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-plist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-plist"; sha256 = "0zaqmhf5nm6jflwgxnknhi8zn97vhsia2xv8jm677l0h23pk2va8"; name = "osx-plist"; }; @@ -20620,7 +20837,7 @@ sha256 = "1n44wdffkw14si9kb7bpkp6d9cjwjrvksfh22y9549dhs1vav6qq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/osx-trash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/osx-trash"; sha256 = "1f6pi53mhp2pvrfjm8544lqqj36gzpzxq245lzvv91lvqkxr9ysj"; name = "osx-trash"; }; @@ -20641,7 +20858,7 @@ sha256 = "1v9kx5xr7xcr6i664h2g6j8824yjsjdn5pvgmawvxrrplbjmiqnp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outorg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outorg"; sha256 = "04swss84p33a9baa4swqc1a9lfp6wziqrwa7vcyi3y0yzllx36cx"; name = "outorg"; }; @@ -20662,7 +20879,7 @@ sha256 = "1v04iyx57w8scw3iqrivii7q0sh8sa7xacswdhd18mw9kvjrbj98"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/outshine"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/outshine"; sha256 = "1ajddzcrnvfgx3xa5wm0bcll9dax52syg1p521mv0ffkld63jyfl"; name = "outshine"; }; @@ -20683,7 +20900,7 @@ sha256 = "0qxk2rf84j86syxi8xknsq252irwg7sz396v3bb4wqz4prpj0kzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ov"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ov"; sha256 = "0d71mpv74cfxcnwixbrl90nr22cw4kv5sdgpny5wycvh6cgmd6qb"; name = "ov"; }; @@ -20704,7 +20921,7 @@ sha256 = "0jz8p6bwpfncxwi6ssmi6ngx8sjjica565i6ln0gsr5i11zfb7nx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/overseer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/overseer"; sha256 = "04wfwcal051jrnmm5dga6vl4c9j10pm416586yxb8smi6fxws2jg"; name = "overseer"; }; @@ -20725,7 +20942,7 @@ sha256 = "0f2psx4lq98l3q3fnibsfqxp2hvvwk7b30zjvjlry3bffg3l7pfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/owdriver"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/owdriver"; sha256 = "0j8z7ynan0zj581x50gsi9lljkbi6bwmzpfyha3i6q8ch5qkdxfd"; name = "owdriver"; }; @@ -20746,7 +20963,7 @@ sha256 = "047fcvpvwzaqisw4q3p6hxgjyqsi2n9nms1qx9w4znvxrnjq8jz3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-ioslide"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-ioslide"; sha256 = "0z0qnvpw64wxbgz8203rphswlh9hd2i11pz2mlay8l3bzz4gx4vc"; name = "ox-ioslide"; }; @@ -20767,7 +20984,7 @@ sha256 = "0h49pfl97vl796sm7r62rpv3slj0z5krm4zrqkgz0q6zlyrjay29"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-pandoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-pandoc"; sha256 = "0wy6yvwd4vyq6xalkrshnfjjxlh1p24y52z49894nz5fl63b74xc"; name = "ox-pandoc"; }; @@ -20788,7 +21005,7 @@ sha256 = "08dw3h1417cr6ddd8gl8zcd11pxqpmkd67bknzhjpj7bbqznfqwa"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ox-twbs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ox-twbs"; sha256 = "15csgnph5wh2dvcc2dnvrlm7whh428rq8smqji1509ib7aw9y5mx"; name = "ox-twbs"; }; @@ -20809,7 +21026,7 @@ sha256 = "073qpa223ja673p63mhvy4l6yyv3k7z05ifwvn7bmq4b5fq42hw6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pabbrev"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pabbrev"; sha256 = "1mbfa40pbzbi00sp155zm43sj6nw221mcayc2rk3ppin9ps95hx3"; name = "pabbrev"; }; @@ -20830,7 +21047,7 @@ sha256 = "1xv0ra130qg0ksgqi4npspnv0ckq77k7f5kcibavj030h578kj97"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package+"; sha256 = "1mbsxr4llz8ny7n7w3lykld9yvbaywlfqnvr9l0aiv9rvmdv03bn"; name = "package-plus"; }; @@ -20851,7 +21068,7 @@ sha256 = "1pdv6d6bm5jmpgjqf9ycvzasxz1205zdi0zjrmkr33c03azwz7rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-safe-delete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-safe-delete"; sha256 = "12ss5yjhnyxsif4vlbgxamn5jfa0wxkkphffxnv6drhvmpq226jw"; name = "package-safe-delete"; }; @@ -20872,7 +21089,7 @@ sha256 = "0fs0a274c7sxldjj0m8wfx9vx7fkq41wngsvk8drzc38qa965vs0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/package-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/package-utils"; sha256 = "02hgh7wg68ysfhw5hckrpshzv4vm1vnm395d34x6vpgl4ccx7v9r"; name = "package-utils"; }; @@ -20885,15 +21102,15 @@ packed = callPackage ({ dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "packed"; - version = "0.5.3"; + version = "1.0.0"; src = fetchFromGitHub { owner = "tarsius"; repo = "packed"; - rev = "4b278931c3694c467e5aaa0246956227806065a0"; - sha256 = "1zzm43x0y90j4cr4zpwn3fs8apl7n0jhl6qlfkcbar7bb62pi66q"; + rev = "765cd52712f0daf40c45d169cc062b6bc94aa807"; + sha256 = "1kjcb6z08bj5ysxrykgz3x6bz2122yycpjhbv875ppc5ihls88xl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/packed"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/packed"; sha256 = "0sw7d2l17bq471i4isrf2xf0z85nqqiciw25whw0c0chdzwzai6z"; name = "packed"; }; @@ -20914,7 +21131,7 @@ sha256 = "1acz3w2zdcds0h6p2k9h3lmjsk519asqrxjw7f3pyrcq7x2qbhc4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/page-break-lines"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/page-break-lines"; sha256 = "0q1166z190dxznzgf2f29klj2jkaqlic483p4h3bylihkqp93ij7"; name = "page-break-lines"; }; @@ -20935,7 +21152,7 @@ sha256 = "03mlg6dmpjw8fq2s3c4gpqj20kjhzldz3m51bf6s0mxq9bclx2xw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pallet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pallet"; sha256 = "0q50cdwnn2w1n5h4bappncjjyi5yaixxannwgy23fngdrz1mxwd7"; name = "pallet"; }; @@ -20956,7 +21173,7 @@ sha256 = "17ibs2szjvy4ar4gidlyg6w20926fr1z59m851akghiwf4aqly7z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pandoc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pandoc-mode"; sha256 = "0qvc6cf87h1jqf590kd68jfg25snxaxayfds634wj4z6gp70l781"; name = "pandoc-mode"; }; @@ -20977,7 +21194,7 @@ sha256 = "0gmdzagyg0p7q1gyj2a3aqp2g4asljpib3n67nikr0v99c2mki5y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pangu-spacing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pangu-spacing"; sha256 = "082qh26vlk7kifz1800lyai17yvngwjygrfrsh1dsd8dxhk6l9j8"; name = "pangu-spacing"; }; @@ -20998,7 +21215,7 @@ sha256 = "1xh614czldjvfl66vhkyaai5k4qsg1l3mz6wd5b1w6kd45qrc54i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paper-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paper-theme"; sha256 = "04diqm2c9fm29zyms3hplkzb4kb7b2kyrxdsy0jxyjj5kabypd50"; name = "paper-theme"; }; @@ -21011,15 +21228,15 @@ paradox = callPackage ({ emacs, fetchFromGitHub, fetchurl, hydra, let-alist, lib, melpaBuild, seq, spinner }: melpaBuild { pname = "paradox"; - version = "2.4"; + version = "2.4.1"; src = fetchFromGitHub { owner = "Malabarba"; repo = "paradox"; - rev = "67f7d546c841e2d8f245e2b84e18619115188651"; - sha256 = "0mg9glbrvhk7xl2grr8fs08wksqvwcgsdgwx0s8fhf8ygcvqcqix"; + rev = "9086bd2241f86488e816682af0ef9897569ab31b"; + sha256 = "1vq3xjllgvzwp18mv2y1qydbbl6j1nk58vw7sm99zsf3wdpls465"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paradox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paradox"; sha256 = "1xq14nfvprsq18464qr4mhphq7cl1f570lji5n8z6j9vpfm9a4p2"; name = "paradox"; }; @@ -21038,7 +21255,7 @@ sha256 = "13wzz5fahbz5svc4ql3ajzzpd1fv0ynwpa5widklbcp5yqncv1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit"; sha256 = "1rp859y4qyqdfvp261l8mmbd62p1pw0dypm1mng6838b6q6ycakr"; name = "paredit"; }; @@ -21059,7 +21276,7 @@ sha256 = "0jbjwjl92pf0kih3p2x20ms2kpyzzam8fir661nimpmk802ahgkj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paredit-everywhere"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paredit-everywhere"; sha256 = "0gbkwk8mrbjr2l8pz3q4y6j8q4m12zmzl31c88ngs1k5d86wav36"; name = "paredit-everywhere"; }; @@ -21080,7 +21297,7 @@ sha256 = "0f128gqn170s6hl62n44i9asais75ns1mpvb4l8vzy1sc0v16c0k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paren-face"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paren-face"; sha256 = "0dmzk66m3rd8x0rb925pyrfpc2qsvayks4kmhpb2ccdrx68pg8gf"; name = "paren-face"; }; @@ -21101,7 +21318,7 @@ sha256 = "0i5bc7lyyrx6swqlrp9l5x72yzwi53qn6ldrfs99gh08b3yvsnni"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parent-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parent-mode"; sha256 = "1ndn6m6aasmk9yrml9xqj8141100nw7qi1bhnlsss3v8b6njwwig"; name = "parent-mode"; }; @@ -21122,7 +21339,7 @@ sha256 = "0n91whyjnrdhb9bqfif01ygmwv5biwpz2pvjv5w5y1d4g0k1x9ml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/parsebib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/parsebib"; sha256 = "07br2x68scsxykdk2ajc4mfqhdb7vjkcfgz3vnpy91sirxzgfjdd"; name = "parsebib"; }; @@ -21143,7 +21360,7 @@ sha256 = "18m0973l670cjbzpa1vfv06gymhsa2f1pjcp329s0npb735x5whj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pass"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pass"; sha256 = "1vvyvnqf6k7wm0p45scwi6ny86slkrcbr36lnxdlkf96cqyrqzfr"; name = "pass"; }; @@ -21164,7 +21381,7 @@ sha256 = "1g0mvg9i8f2qccb4b0m4d74zkjx9gjfv47x57by6cdaf9yywqryi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/passthword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/passthword"; sha256 = "076jayziipjx260yk3p37pf5k0qsagalidah3y6hiflrlq4sfgjn"; name = "passthword"; }; @@ -21181,10 +21398,10 @@ src = fetchgit { url = "http://git.zx2c4.com/password-store"; rev = "1aac79d9617431bbaf218f9a9d270929762d2816"; - sha256 = "0zlhiqhx19dpmxvcczhif5c8acj911p61plsp0gdmamkpbxmkbjv"; + sha256 = "0c5yjjvvlrcny13sg5kaadbqnc2wdcc2qrxn11gc70q9awv0n7gp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/password-store"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/password-store"; sha256 = "1jh24737l4hccr1k0b9fnq45ag2dsk84fnfs86hcgsadl94d6kss"; name = "password-store"; }; @@ -21205,7 +21422,7 @@ sha256 = "0m6qjsq6qfwwszm95lj8c58l75vbmx9r5hm9bfywyympfgy0fa1n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastehub"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastehub"; sha256 = "1slvqn5ay6gkbi0ai1gy1wmc02h4g3n6srrh4fqn72y7b9nv5i0v"; name = "pastehub"; }; @@ -21226,7 +21443,7 @@ sha256 = "1v5mpjb8kavbqhvg4rizwg8cypgmi6ngdiy8qp9pimmkb56y42ly"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pastelmac-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pastelmac-theme"; sha256 = "168zzqhp2dbfcnknwfqxk68rgmibfw71ksghvi6h2j2c1m08l23f"; name = "pastelmac-theme"; }; @@ -21247,7 +21464,7 @@ sha256 = "1brdyrp2sz1pszdfr6f4w94qxk5lrd6kphc1xa5pywfns14c9386"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pathify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pathify"; sha256 = "1z970xnzbhmfikj1rkfx24jvwc7f1xxw6hk7kmahxvphjxrvgc2f"; name = "pathify"; }; @@ -21268,7 +21485,7 @@ sha256 = "0kkgqaxyrv65rfg2ng1vmmmrc9bm98yqpsv2pcb760287dn0l27m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/paxedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/paxedit"; sha256 = "06ymilr0zrwfpyzql7dcpg48lhkx73f2jlaw3caxgsjaz7x3n4ic"; name = "paxedit"; }; @@ -21289,7 +21506,7 @@ sha256 = "0xbbq8ddlirhvv921nrf7bwazh0i98bk0a9xzyx8iqpyg66vbfa8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcache"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcache"; sha256 = "1q2wlbc58lyf3dxfs9ppdxvdsp81jmkq874zbd7f39wvc5ckbz0l"; name = "pcache"; }; @@ -21310,7 +21527,7 @@ sha256 = "0h0p4c08z0dqxmg55fzch1d2f38rywfk1j0an2f4sc94lj7ckbm6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcomplete-extension"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcomplete-extension"; sha256 = "0m0c9ir44p21rj93fkisvpvi08936717ljmzsr4qdf69b3i54cwc"; name = "pcomplete-extension"; }; @@ -21331,7 +21548,7 @@ sha256 = "1dpfhrxbaqpgjzac3m9hclbzlnrxq9b8bx6za53aqvml72yzxc6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcre2el"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcre2el"; sha256 = "1l72hv9843qk5p8gi9ibr15wczm804j3ws2v1x7nx4dr7pc5c7l3"; name = "pcre2el"; }; @@ -21352,7 +21569,7 @@ sha256 = "03k3xhrim4s3yvbnl8g8ci5g7chlffycdw7d6a1pz3077mxf1f1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pcsv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pcsv"; sha256 = "1zphndkbva59g1fd319a240yvq8fjk315b1fyrb8zvmqpgk9n0dl"; name = "pcsv"; }; @@ -21373,7 +21590,7 @@ sha256 = "19sy49r3ijh36m7hl4vspw5c4i8pnfqdn4ldm2sqchxigkw56ayl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pdf-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pdf-tools"; sha256 = "1hnc8cci00mw78h7d7gs8smzrgihqz871sdc9hfvamb7iglmdlxw"; name = "pdf-tools"; }; @@ -21394,7 +21611,7 @@ sha256 = "0kjz7ch4bn0m4v9zgqyqcrsasnqc5c5drv2hp22j7rnbb7ny0q3n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/peg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/peg"; sha256 = "0nxy9xn99myz0p36m4jflfj48qxhhn1sspbfx8d90030xg3cc2gm"; name = "peg"; }; @@ -21414,7 +21631,7 @@ sha256 = "0w02l91x624cgzdg33a9spgcwy12m607dsfnr1xbc1fi08np4sd1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/per-buffer-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/per-buffer-theme"; sha256 = "1czcaybpfmx4mwff7hs07iayyvgvlhifkickccap6kpd0cp4n6hn"; name = "per-buffer-theme"; }; @@ -21435,7 +21652,7 @@ sha256 = "0j72rqd96dz9pp9zwc88q3358m4b891dg0szmbyvs4myp3yandz2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-scratch"; sha256 = "0iai65lsg3zxj07hdb9201w3rwrvdb3wffr6k2jdl8hzg5idghn1"; name = "persistent-scratch"; }; @@ -21456,7 +21673,7 @@ sha256 = "14p20br8vzxs39d4hswzrrkgwql5nnmn5j17cpbabzjvck42rixc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persistent-soft"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persistent-soft"; sha256 = "0a4xiwpgyyynjf69s8p183mqd3z53absv544ggvhb2gkpm6jravc"; name = "persistent-soft"; }; @@ -21477,7 +21694,7 @@ sha256 = "090b73969namf3h7pbf8xc969dygj3frzlkf0h2x29wl1fmag5kr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/persp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/persp-mode"; sha256 = "1bgni7y5xsn4a21494npr90w3320snfzw1hvql30xrr57pw3765w"; name = "persp-mode"; }; @@ -21498,7 +21715,7 @@ sha256 = "12c2rrhysrcl2arc6hpzv6lxbb1r3bzlvdp23hnp9sci6yc10k3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/perspective"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/perspective"; sha256 = "150dxcsd0ylvfi9mmfpcki1wd3nl8q9mbszd3dgqfnm40yncklml"; name = "perspective"; }; @@ -21519,7 +21736,7 @@ sha256 = "1qxsc5wyk8l9gkgmqy3mzwxdhji1ljqw9s1jfxkax7fyv4d1v31p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ph"; sha256 = "0azx4cpfdn01yrqyn0q1gg9z7w0h0rn7zl39v3dx6yidd76ysh0l"; name = "ph"; }; @@ -21540,7 +21757,7 @@ sha256 = "0r6cl1ng41s6wsy5syjlkaip0mp8h491diipdc1psbhnpk4vabsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phi-search-mc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phi-search-mc"; sha256 = "07hd80rbyzr5n3yd7hv1j51nl6pvcxmln20g6xvw8gh5yfl9k0m8"; name = "phi-search-mc"; }; @@ -21561,7 +21778,7 @@ sha256 = "0zs11811kx6x1zgc1icd8gw420saa7z6zshpzmrddnbznya4qql6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-auto-yasnippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-auto-yasnippets"; sha256 = "1hhddvpc80b6wvjpbpibsf24rp5a5p45m0bg7m0c8mx181h9mqgn"; name = "php-auto-yasnippets"; }; @@ -21582,7 +21799,7 @@ sha256 = "0pwhw59ki19f9rkgvvnjzhby67s0y9hpsrg6cwqxakjlm66w96q3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/php-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/php-mode"; sha256 = "1lc4d3fgxhanqr3b8zr99z0la6cpzs2rksj806lnsfw38klvi89y"; name = "php-mode"; }; @@ -21603,7 +21820,7 @@ sha256 = "09rinyx0621d7613xmbyvrrlav6d4ia332wkgg0m9dn265g3h56z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpcbf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpcbf"; sha256 = "1hf88ys4grffpqgavrbc72dn3m7crafgid2ygzx9c5j55syh8mfv"; name = "phpcbf"; }; @@ -21613,22 +21830,22 @@ license = lib.licenses.free; }; }) {}; - phpunit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: + phpunit = callPackage ({ cl-lib ? null, emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, pkg-info, s }: melpaBuild { pname = "phpunit"; - version = "0.8.0"; + version = "0.9.0"; src = fetchFromGitHub { owner = "nlamirault"; repo = "phpunit.el"; - rev = "443981bfc51890b83a0c58ccf78f3e44ea303a10"; - sha256 = "1pr5lrw1h6nibyyzb4rj7a72nsrnfczps3ll94wlsh19nqlmlqaj"; + rev = "7b2a811d80fd9781ec78692bc4f66c1641eb386a"; + sha256 = "1pmds2g7y1pcs3ivsd68zg30ih34janib0ydz4wr0mci3q52cjpy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/phpunit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/phpunit"; sha256 = "0nj8ss1yjkcqnbnn4jgbp0403ljjk2xhipzikdrl3dbxlf14i4f8"; name = "phpunit"; }; - packageRequires = [ emacs f pkg-info s ]; + packageRequires = [ cl-lib emacs f pkg-info s ]; meta = { homepage = "https://melpa.org/#/phpunit"; license = lib.licenses.free; @@ -21645,7 +21862,7 @@ sha256 = "19i8hgzr7kdj4skf0cnv6vlsklq9qcyxcv3p33k9vgq7y4f9mah8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pillar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pillar"; sha256 = "1lklky3shyvm1iygp621hbldpx37m0a9vd5l6mxs4y60ksj6z0js"; name = "pillar"; }; @@ -21666,7 +21883,7 @@ sha256 = "12jhdkgfck2a6d5jj65l9d98dm34gsyi0ya4h21dbbvz35zivz70"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyin-search"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyin-search"; sha256 = "1si693nmmxgg0kp5mxvj5nq946kfc5cv3wfsl4znbqzps8qb2b7z"; name = "pinyin-search"; }; @@ -21687,7 +21904,7 @@ sha256 = "13q95z0j1mpk2yrrq0amc2jjhajaz4884bfliy2h8adh109j4q1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pinyinlib"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pinyinlib"; sha256 = "0kv67qa3825fw64qimkph2b65pilrsx5730y4c7f7c1f8giz5vxr"; name = "pinyinlib"; }; @@ -21708,7 +21925,7 @@ sha256 = "1dsg49156mfhkd8ip4ny03sc06zchxr1qpbcx48f5sn4m9j5d3vs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pip-requirements"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pip-requirements"; sha256 = "1wsjfyqga7pzp8gsm5x53qrkn40srairbjpifyrqbi2fpzmwhrnz"; name = "pip-requirements"; }; @@ -21729,7 +21946,7 @@ sha256 = "1wg8pcwd70ixn2bxh01934zl12ry4pgx3l9dccpbjdi40gira00d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pixiv-novel-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pixiv-novel-mode"; sha256 = "0f1rxvf9nrw984122i6dzsgik9axfjv6yscmg203s065n9lz17px"; name = "pixiv-novel-mode"; }; @@ -21750,7 +21967,7 @@ sha256 = "0nk12dcppdyhav6m6yf7abpywyd7amxd4237zsfd32w4zxsx39k1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkg-info"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkg-info"; sha256 = "0whcvralk76mfmvbvwn57va5dkb1irj7iwffgddi7r0ima49iszx"; name = "pkg-info"; }; @@ -21771,7 +21988,7 @@ sha256 = "0a8qb1ldk6bjs7fpxgxrf90md7q46fhl71gmay8yafdkh6hn0kqr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pkgbuild-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pkgbuild-mode"; sha256 = "1lp7frjahcpr4xnzxz77qj5hbpxbxm2g28apkixrnc1xjha66v3x"; name = "pkgbuild-mode"; }; @@ -21792,7 +22009,7 @@ sha256 = "1nznbkl06cdq4pyqmvkp9jynsjibn0fd6ai4mggz6ggcwzcixbf0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/platformio-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/platformio-mode"; sha256 = "1v1pp3365wj19a5wmsxyyy5n548z3lmcbm2pwl914wip3ca7546f"; name = "platformio-mode"; }; @@ -21813,7 +22030,7 @@ sha256 = "0slfaclbhjm5paw8l7rr3y9xxjyhkizp9lwyvlgpkd38n4pgj2bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/play-routes-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/play-routes-mode"; sha256 = "17phqil2zf5rfvhs5v743dh4lix4v2azbf33z9n97ahs7j66y2gz"; name = "play-routes-mode"; }; @@ -21834,7 +22051,7 @@ sha256 = "11cbpgjsnw8fiqf1s12hbm9qxgjcw6y2zxx7wz4wg7idmi7m0b7g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plenv"; sha256 = "0dw9fy5wd9wm76ag6yyw3f9jnlj7rcdcxgdjm30h514qfi9hxbw4"; name = "plenv"; }; @@ -21855,7 +22072,7 @@ sha256 = "0f00dv5jwbhs99j4jc6lvr5n0mv1y80yg7zpp6yrmhww6829l5rg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense"; sha256 = "1ka06r4ashhjkfyzql9mfvs3gj7n684h4gaycj29w4nfqrhcw9va"; name = "plsense"; }; @@ -21876,7 +22093,7 @@ sha256 = "0s34nbqqy6aqi113xj452pbmqp43046wfbfbbfv1xwhybgq0c1j1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plsense-direx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plsense-direx"; sha256 = "0qd4b7gkmn5ydadhp70995rap3643s1aa8gfi5izgllzhg0i864j"; name = "plsense-direx"; }; @@ -21897,7 +22114,7 @@ sha256 = "0qlxj19hj96l4lw81xh5r14ppf6kp63clikk060s9yw00q7gnl6a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/plur"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/plur"; sha256 = "0nf1dc7xf2zp316rssnz8sv374akcr54hp0rb219qvgyck9bdqiv"; name = "plur"; }; @@ -21918,7 +22135,7 @@ sha256 = "0xjvxfkrl6wl31s7rvbv9zczn6d6i9vf20waqlr3c2ff3zy55ygy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pony-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pony-snippets"; sha256 = "12ygvpfkzldq6s4mwbrxs4x9927i7pa7ywn7lf1r3gg4h29ar9gn"; name = "pony-snippets"; }; @@ -21939,7 +22156,7 @@ sha256 = "0by7klp7imy7zgc37wsiil86y6i2h1wfwfyifc2cf0jn5dsvfikw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ponylang-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ponylang-mode"; sha256 = "02fq0qp7f4bzmynzszrwskfs78nzsmf413qjxqndrh3hamixzpi1"; name = "ponylang-mode"; }; @@ -21960,7 +22177,7 @@ sha256 = "18i0kivn6prh5pwdr7b4pxfxqsc8l4mks1h6cfs7iwnfn15g5k19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pophint"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pophint"; sha256 = "1chq2j79hg095jxw5z3pz4qicqrccw0gj4sxrin0a55hnprzzp72"; name = "pophint"; }; @@ -21981,7 +22198,7 @@ sha256 = "1y538siabcf1n00wr4iz5gbxfndw661kx2mn9w1g4lg7yi4n0h0h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup"; sha256 = "151g00h9rkid76qf6c53n8bncsfaikmhj8fqcb3r3a6mbngcd5k2"; name = "popup"; }; @@ -22002,7 +22219,7 @@ sha256 = "084hb3zn1aiabbyxgaalszb2qjf9z64z960ks5fvz8nh7n6y7ny4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-complete"; sha256 = "04bpm31zx87j390r2xi1yl4kyqgalmyqc48xarsm67zfww9fw9c1"; name = "popup-complete"; }; @@ -22023,7 +22240,7 @@ sha256 = "19mqzfpki2zlnibp2vzymhdld1m20jinxwgdhmbl6zdfx74zbz7b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popup-imenu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popup-imenu"; sha256 = "0lxwfaa9vhdn55dj3idp8c3fg1g26qsqq46y5bimfd0s89bjbaxn"; name = "popup-imenu"; }; @@ -22044,7 +22261,7 @@ sha256 = "0nips9npm4zmz3f37vvb4s0g1ci0p9cl6w0z4sc6agg4rybjhpdp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/popwin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/popwin"; sha256 = "1zp54nv8rh0b3g8y5aj4793miiw2r1ijwbzq31lkwmbdr09mixmf"; name = "popwin"; }; @@ -22065,7 +22282,7 @@ sha256 = "0w8bnspnk871qndp18hs0wk4x9x31xr9rwbvf5dc8mcbnj29ch33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pos-tip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pos-tip"; sha256 = "13qjz112qlrnq34lr70087gshzq8m44knfl6694hfprzjgix84vh"; name = "pos-tip"; }; @@ -22086,7 +22303,7 @@ sha256 = "1nx3b24i26kgm52xw21x4m15qjkxw3sg5r6qyvck0fyhj0gw69gr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powerline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powerline"; sha256 = "0gsffr6ilmckrzifsmhwd42vr85vs42pc26f1205pbxb7ma34dhx"; name = "powerline"; }; @@ -22107,7 +22324,7 @@ sha256 = "010b151wblgxlfpy590yanbl2r8qhpbqgi02v0pyir340frm9ngn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/powershell"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/powershell"; sha256 = "162k8y9k2n48whaq93sqk86zy3p9qvsfxgyfv9n1nvk4l5wn70wk"; name = "powershell"; }; @@ -22128,7 +22345,7 @@ sha256 = "0pv671j8g09pn61kkfb3pa9axfa9zd2jdrkgr81rm2gqb2vh1hsq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ppd-sr-speedbar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ppd-sr-speedbar"; sha256 = "1m2918hqvb9c6rgb5szs95ds99gdjdxggcbdfqzmbb5sz2936av8"; name = "ppd-sr-speedbar"; }; @@ -22149,7 +22366,7 @@ sha256 = "013fig9i4fyx16krp2vfv953p3rwdzr38zs6i50af4pqz4vrcfvh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pretty-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pretty-mode"; sha256 = "1zxi4nj7vnchiiz1ndx17b719a1wipiqniykzn4pa1w7dsnqg21f"; name = "pretty-mode"; }; @@ -22170,7 +22387,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-mode"; sha256 = "184yg9z14ighz9djg53ji5dgnb98dnxkkwx55m8f0f879x31i89m"; name = "processing-mode"; }; @@ -22191,7 +22408,7 @@ sha256 = "08ljf39jfmfpdk36nws2dnwpm7y8252zsdprsc85hr1h1ig5xy15"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/processing-snippets"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/processing-snippets"; sha256 = "09vkm9asmjz1in0f63s7bf4amifspsqf5w9pxiy5y0qvmn28fr2r"; name = "processing-snippets"; }; @@ -22212,7 +22429,7 @@ sha256 = "0r32rjfsbna0g2376gdv0c0im1lzw1cwbp9690rgqjj95ls4saa3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prodigy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prodigy"; sha256 = "032868bgy2wmb2ws48lfibs4118inpna7mmml8m7i4m4y9ll6g85"; name = "prodigy"; }; @@ -22233,7 +22450,7 @@ sha256 = "1hv8ifrpwn434sm41vkgbwni21ma5kfybkwasi6zp0f2b5i9ziw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-explorer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-explorer"; sha256 = "076lzmyi1n7yrgdgyh9qinq271qk6k64x0msbzarihr3p4psrn8m"; name = "project-explorer"; }; @@ -22254,7 +22471,7 @@ sha256 = "1x7hwda1w59b8hvzxyk996wdz6phs6rchh3f1ydf0ab6x7m7xvjr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist"; sha256 = "0csjwj0qaw0hz2qrj8kxgxlixh2hi3aqib98vm19sr3f1b8qab24"; name = "project-persist"; }; @@ -22275,7 +22492,7 @@ sha256 = "1nq320ph8fs9a197ji4mnw2xa24dld0r1nka476yvkg4azmcc9x8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-persist-drawer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-persist-drawer"; sha256 = "1jv2y2hcqakyvfibclzm7g4diw0bvsv3a8fa43yf19wb64jm8hdb"; name = "project-persist-drawer"; }; @@ -22295,7 +22512,7 @@ sha256 = "08dd2y6hdsj1rxcqa2hnjypnn9c2z43y7z2hz0fi4vny547qybz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/project-root"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/project-root"; sha256 = "0xjir204zk254y2x70k9vqwirx2ljmrikpsgn5kn170d1bxvhwmb"; name = "project-root"; }; @@ -22316,7 +22533,7 @@ sha256 = "1rl6n6v9f4m7m969frx8b51a4lzfix2bxx6rfcfbh6kzhc00qnxf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile"; sha256 = "1kf8hql59nwiy13q0p6p6rf5agjvah43f0sflflfqsrxbihshvdn"; name = "projectile"; }; @@ -22337,7 +22554,7 @@ sha256 = "0g4slcaj5waka5sz0plnn0clnl9750wzj3bi7zfcycb2g7xhncwg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-rails"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-rails"; sha256 = "0fgvignqdqh0ma91z9385782l89mvwfn77rp1gmy8cbkwi3b7fkq"; name = "projectile-rails"; }; @@ -22358,7 +22575,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projectile-sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projectile-sift"; sha256 = "1wbgpwq9yy3v7hqidaczrvvsw5ajj7m3n4gsy3b169xv5h673a0i"; name = "projectile-sift"; }; @@ -22379,7 +22596,7 @@ sha256 = "1rw55w2fpb3rw7j136kclkhppz21f7d7di4cvlv7zj5zpdl5zz88"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/projekt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/projekt"; sha256 = "1bhb24701flihl54w8xrj6yxhynpq4dk0fp5ciac7k28n4930lw8"; name = "projekt"; }; @@ -22400,7 +22617,7 @@ sha256 = "1hq8426i8rpb3qzkd5akv3i08pa4jsp9lwsskn38bfgp71pwild2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prompt-text"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prompt-text"; sha256 = "1b9sj9kzx5ydq2zsfmkwsx78pzg0vsvrn92397js6b2cm24vrwwc"; name = "prompt-text"; }; @@ -22421,7 +22638,7 @@ sha256 = "18ap2liz5r5a8ja2zz9182fnfm47jnsbyblpq859zks356k37iwc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/prop-menu"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/prop-menu"; sha256 = "0dhy52fxxpa058mhhx0slw3sly3dlxm9vkax6fd1sap6f6v00p5i"; name = "prop-menu"; }; @@ -22442,7 +22659,7 @@ sha256 = "03df8zvx2sry3jz2x4pi3l32qyfqa7w8kj8jdbz30nzy0h7aa070"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/protobuf-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/protobuf-mode"; sha256 = "1hh0w93fg6mfwsbb9wvp335ry8kflj50k8hybchpjcn6f4x39xsj"; name = "protobuf-mode"; }; @@ -22463,7 +22680,7 @@ sha256 = "0wgxrwl7dpy084sc76wiwpixycb171g7xwc66m5gnlrv79qyac73"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psci"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psci"; sha256 = "0sgrz8byz2pcsad2pydinp4hh2xb48pdb03r93wg2vvyy8p15j9g"; name = "psci"; }; @@ -22484,7 +22701,7 @@ sha256 = "0msa8c29djhy5h3zpdvx25f4y1c50rgsk8iz6r127psrxdlfrvg8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psession"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psession"; sha256 = "18va6kvpia5an74vkzccs72z02vg4vq9mjzr5ih7xbcqxna7yv3a"; name = "psession"; }; @@ -22505,7 +22722,7 @@ sha256 = "0mnxvh5yd8v8a5mfi53isknc88kv2kdjjv0qffblz0sgshkpl30x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/psysh"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/psysh"; sha256 = "0ygnfmfx1ifppg6j3vfz10srbcpr5ird2bhw6pvydijxkyd75vy5"; name = "psysh"; }; @@ -22526,7 +22743,7 @@ sha256 = "1p0k770h96iw8bxm8ssi0a91m050s615q036870lrlsz35mzc5kw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pt"; sha256 = "0zmz1hcr4ajc2ydvpdxhy1dlhp7hvlkv6y6w1b79ffvq6acdd5mj"; name = "pt"; }; @@ -22536,6 +22753,27 @@ license = lib.licenses.free; }; }) {}; + pug-mode = callPackage ({ cl-lib ? null, fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "pug-mode"; + version = "1.0.3"; + src = fetchFromGitHub { + owner = "hlissner"; + repo = "emacs-pug-mode"; + rev = "48d5977e5efcf3650a1628b5cbffffdd164cd773"; + sha256 = "1wiiarxh0lcxvy56f1rxdbk1iwhdynl2xn6v8nr35bw1l82b1j9g"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pug-mode"; + sha256 = "1njhr95y2rx7inpl9phxxz580844p2iadqlga1kj7xzvjz698x85"; + name = "pug-mode"; + }; + packageRequires = [ cl-lib ]; + meta = { + homepage = "https://melpa.org/#/pug-mode"; + license = lib.licenses.free; + }; + }) {}; puml-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "puml-mode"; @@ -22547,7 +22785,7 @@ sha256 = "19bcf3wbmp186yxvrdsm2ax4npvi2x0id94zi13pdnw4cz7zch3v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puml-mode"; sha256 = "131ghjq6lsbhbx5hdg36swnkqijdb9bx6zg73hg0nw8qk0z742vn"; name = "puml-mode"; }; @@ -22568,7 +22806,7 @@ sha256 = "1v48i37iqrrwbyy3bscicfq66vbbml4sg0f0n950bnk0qagjx8py"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/punctuality-logger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/punctuality-logger"; sha256 = "0q9s74hkfqvcx67xpq9rlvh38nyjnz230bll6ks7y5yzxvl4qhcm"; name = "punctuality-logger"; }; @@ -22589,7 +22827,7 @@ sha256 = "012lv7hrwlhvins81vw3yjkhdwbpi6g1dx55i101qyrpzv5ifngm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pungi"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pungi"; sha256 = "1v9fsd764z5wdcips63z53rcipdz7bha4q6s4pnn114jn3a93ls1"; name = "pungi"; }; @@ -22610,7 +22848,7 @@ sha256 = "0xr3s56p6fbm6wgw17galsl3kqvv8c7l1l1qvbhbay39yzs4ff14"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/puppet-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/puppet-mode"; sha256 = "1s2hap6fs6rg5q80dmzhaf4qqaf5sglhs8p896i3i5hq51w0ciyc"; name = "puppet-mode"; }; @@ -22631,7 +22869,7 @@ sha256 = "1wk319akv0scvyyjsd48pisi2i1gkahhsan9hfszrs6xx3anvfd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/purescript-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/purescript-mode"; sha256 = "00gz752mh7144nsaka5q3q4681jp845kc5vcy2nbfnqp9b24l55m"; name = "purescript-mode"; }; @@ -22652,7 +22890,7 @@ sha256 = "03ivg3ddhy5zh410wgwxa17m98wywqhk62jgijhjd00b6l8i4aym"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pushbullet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pushbullet"; sha256 = "1swzl25rcw7anl7q099qh14yhnwlbn3m20ib9kis0l1rv59kkarl"; name = "pushbullet"; }; @@ -22673,7 +22911,7 @@ sha256 = "06xdq2slwhkcqlbv7x86zmv55drzif9cwjlj543cwhncphl2x9rd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-autopep8"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-autopep8"; sha256 = "1argjdmh0x9c90zkb6cr4z3zkpgjp2mkpsw0dr4v6gg83jcggfpp"; name = "py-autopep8"; }; @@ -22694,7 +22932,7 @@ sha256 = "0150q6xcnzzrkn9fa9njm973l1d49c48ad8qia71k4jwrxjjj6zr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-isort"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-isort"; sha256 = "0k5gn3bjn5pv6dn6p0m9xghn0sx3m29bj3pfrmyh6gd5ic0l00yb"; name = "py-isort"; }; @@ -22715,7 +22953,7 @@ sha256 = "09z739w4fjg9xnv3mbh7v8j59mnbsfq4ygq616pj4xcw3nsh0rbg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/py-yapf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/py-yapf"; sha256 = "1381x0ffpllxwgkr2d8xxbv1nd4k475m1aff8l5qijw7d1fqga2f"; name = "py-yapf"; }; @@ -22736,7 +22974,7 @@ sha256 = "0qg1kjzsv2mcvlsivqy8ys3djbs5yala37r9h2zcxdicl88q0l11"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pycarddavel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pycarddavel"; sha256 = "12k2mnzkd8yv17csfhclsnd479vcabawmac23yw6dsw7ic53jf1a"; name = "pycarddavel"; }; @@ -22757,7 +22995,7 @@ sha256 = "1y3q1k195wp2kgp00a1y34i20zm80wdv2kxigh6gbn2r6qzkqrar"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyenv-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyenv-mode"; sha256 = "00yqrk92knv9gq1m9xcg78gavv70jsjlwzkllzxl63iva9qrch59"; name = "pyenv-mode"; }; @@ -22778,7 +23016,7 @@ sha256 = "0q6bib9nr6xiq6npzbngyfcjk87yyvwzq1zirr3z1h5wadm34lsk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-environment"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-environment"; sha256 = "1pq16rddw76ic5d02j5bswl9qcydi47hqmhs7r06jk46vsfzxpl7"; name = "python-environment"; }; @@ -22799,7 +23037,7 @@ sha256 = "00i7cc4r7275l22k3708xi4hqw2j44yivdb1madzrpf314v3kabr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/python-x"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/python-x"; sha256 = "115mvhqfa0fa8kdk64biba7ri4xjk74qqi6vm1a5z3psam9mjcmn"; name = "python-x"; }; @@ -22820,7 +23058,7 @@ sha256 = "1af9cd8l5ac58mj92xc7a3diy995cv29abnbb3fl6x4208l4xs3c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pythonic"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pythonic"; sha256 = "1hq0r3vg8vmgw89wfjdqknwm76pimlk0dy56wmh9vffh06gqsb51"; name = "pythonic"; }; @@ -22841,7 +23079,7 @@ sha256 = "0jidmc608amd0chs4598zkj0nvyll0al093121hkczsbpgbllq9z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/pyvenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/pyvenv"; sha256 = "0gai9idss1wvryxyqk3pv854mc2xg9hd0r55r2blql8n5rd2yv8v"; name = "pyvenv"; }; @@ -22862,7 +23100,7 @@ sha256 = "110z27n3h7p2yalicfhnv832ikfcf7p0hrf5qkryz1sdmz79wb3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qiita"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qiita"; sha256 = "1kzk7pc68ks9gxm2l2d28al23gxh56z0cmkl80qwg7sh4gsmhyxl"; name = "qiita"; }; @@ -22883,7 +23121,7 @@ sha256 = "1mlka59gyylj4cabi1b552h11qx54kjqwx3bkmsdngjrd4da222a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/qml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/qml-mode"; sha256 = "123mlibviplzra558x87da4zx0kpbhsgfigjjgjgp3mdg897084n"; name = "qml-mode"; }; @@ -22904,7 +23142,7 @@ sha256 = "0lfmdlb626b3gbmlvacwn84vpqam6gk9lp29wk0hcraw69vaw1v8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quasi-monochrome-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quasi-monochrome-theme"; sha256 = "0h5pqrklyga40jg8qc47lwmf8khn0vcs5jx2sdycl2ipy0ikmfs0"; name = "quasi-monochrome-theme"; }; @@ -22925,7 +23163,7 @@ sha256 = "1iypwvdgdh30c9br7jnibgwbdca2mqjy95x2ppsc51sik2mz2db1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/quickrun"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/quickrun"; sha256 = "0f989d6niw6ghf9mq454kqyp0gy7gj34vx5l6krwc52agckyfacy"; name = "quickrun"; }; @@ -22946,7 +23184,7 @@ sha256 = "02bddznlqys37fnhdpp2g9xa9m7kfgrj1vl0hc5kr42hggk9wwmg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/r-autoyas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/r-autoyas"; sha256 = "18zifadsgbwnga205jvpx61wa2dvjxmxs5v7cjqhny45a524nbv4"; name = "r-autoyas"; }; @@ -22967,7 +23205,7 @@ sha256 = "1r1gq6b33iv5a3kf96s73xp5y7yw2lq36cczmwbb9ix5bh5jhcyk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/racer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/racer"; sha256 = "1091y5pisbf73i6zg5d7yny2d5yckkjg0z6fpjpmz5qjs3xcm9wi"; name = "racer"; }; @@ -22988,7 +23226,7 @@ sha256 = "02x5ciyafqwak06yk813kl8p92hq03wjsk1882q8axr9q231100c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-blocks"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-blocks"; sha256 = "08p41wvrw1j3h7j7lyl8nxk1gcc2id9ikljmiklg0kc6s8ijhng8"; name = "rainbow-blocks"; }; @@ -23009,7 +23247,7 @@ sha256 = "0vs9pf8lqq5p5qz1770pxgw47ym4xj8axxmwamn66br59mykdhv0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-delimiters"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-delimiters"; sha256 = "132nslbnszvbgkl0819z811yar3lms1hp5na4ybi9gkmnb7bg4rg"; name = "rainbow-delimiters"; }; @@ -23030,7 +23268,7 @@ sha256 = "05i0jpmxzsj2lsj48cafn3v93z37l7k5kaza2ik3yirdpjdibyrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rainbow-identifiers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rainbow-identifiers"; sha256 = "0lw790ymrgpyh0sxwmzinl2ik5vl5vggbg14cd0cx5yagkw5y3mp"; name = "rainbow-identifiers"; }; @@ -23051,7 +23289,7 @@ sha256 = "1q65jj6bghvzhlqmpg61a7vn8izc01wp2fjiqx013zxpg9awvzmq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rake"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rake"; sha256 = "0cw47g6cjnkh3z4hbwwq1f8f5vrvs84spn06k53bx898brqdh8ns"; name = "rake"; }; @@ -23072,7 +23310,7 @@ sha256 = "1r2k9s46njys2acacwk57mkr9szbpxz93xd4rnjf5gx551khlhjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ranger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ranger"; sha256 = "14g4r4iaz0nzfsklslrswsik670pvfd0605xfjghvpngn2a8ych4"; name = "ranger"; }; @@ -23093,7 +23331,7 @@ sha256 = "1i16361klpdsxphcjdpxqswab3ing69j1wb9nygws7ghil85h0bx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rase"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rase"; sha256 = "1g7v2z7l4csl5by64hc3zg4kgrkvv81iq30mfqq4nvy1jc0xa6j0"; name = "rase"; }; @@ -23114,7 +23352,7 @@ sha256 = "0rwgwz1x9w447y8mxy9hrx1rzi3ac9dwk2y5yg1p08z5b7dy6vcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rats"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rats"; sha256 = "0jhwiq9yzwpyqhk3c32vqx8nryingzh58psxbzjl3812b7xdqphr"; name = "rats"; }; @@ -23135,7 +23373,7 @@ sha256 = "09c6v4lnv6vm2cckbdpx2fdi9xkz9l68qvhx35vaawxhrkgvypzp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rbenv"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rbenv"; sha256 = "09nw7sz6rdgs7hdw517qwgzgyrdmxb16sgldfkifk41rhiyqhr65"; name = "rbenv"; }; @@ -23156,7 +23394,7 @@ sha256 = "1kwn33rxaqik5jls66c2indvswhwmxdmd60n7a1h9siqm5qhy9d6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rcirc-styles"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rcirc-styles"; sha256 = "01dxhnzsnljig769dk9axdi970b3lw2s6p1z3ljf29qlb5j4548r"; name = "rcirc-styles"; }; @@ -23177,7 +23415,7 @@ sha256 = "1hn5x6kw7xh5wnpwr862584h4vrmvd36vjbshcgwng1qj486m3as"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rdf-prefix"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rdf-prefix"; sha256 = "1vxgn5f2kws17ndfdv1vj5p9ks3rp6sikzpc258j07bhsfpjz5qm"; name = "rdf-prefix"; }; @@ -23198,7 +23436,7 @@ sha256 = "1ka5q2q18hgh7wl5yn04489121bq4nx369rz8nb7dr5l14cas0xm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/real-auto-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/real-auto-save"; sha256 = "03dbbizpyg62v6zbq8hd16ikrifz8m2bdlbb3g67f2834xqmxha8"; name = "real-auto-save"; }; @@ -23219,7 +23457,7 @@ sha256 = "07j1grdbqv3iv5ghmgsjw678bxjajcxi27clz4krcz3ys5b1h70v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/realgud"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/realgud"; sha256 = "0qmvd35ng1aqclwj3pskn58c0fi98kvx9666wp3smgj3n88vgy15"; name = "realgud"; }; @@ -23240,7 +23478,7 @@ sha256 = "114ssmby614xjs7mrpbbsdd4gj5ra6klfh8h6z8iij8xn3kii83q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/recover-buffers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/recover-buffers"; sha256 = "0g40d7440hzlc9b45v63ng0anvmgip4dhbd9wcm2sn8qjfr4w11b"; name = "recover-buffers"; }; @@ -23261,7 +23499,7 @@ sha256 = "1vpsihrl03hkd6n6b7mrjccm0a023qf3154a8rw4chihikxw27pj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rect+"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rect+"; sha256 = "0vk0jwpl6yp2md9nh0ghp2qn883a8lr3cq8c9mgq0g552dwdiv5m"; name = "rect-plus"; }; @@ -23282,7 +23520,7 @@ sha256 = "048pjrd04w6w4v6r56yblbqgkjh01xib7k1i6rjc6288jh5vr1vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rectangle-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rectangle-utils"; sha256 = "1w5z2gykydsfp30ahqjihpvq04c5v0cfslbrrg429hycys8apws7"; name = "rectangle-utils"; }; @@ -23303,7 +23541,7 @@ sha256 = "1j9zvkfxccwzr8adxikw450xv0kc2a4j8rskbfqlmsylrpniszqm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redpen-paragraph"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redpen-paragraph"; sha256 = "0jr707ik6fhznq0q421l986w85ah0n9b4is91zrgbk1v6miqrhca"; name = "redpen-paragraph"; }; @@ -23324,7 +23562,7 @@ sha256 = "0q4a4iznk6xk680xnvly69j8w1dac79qxlycwrfki6msnkagyn9p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/redtick"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/redtick"; sha256 = "1a9rviz0hg6vlh2jc04g6vslyf9n89xglcz9cb79vf10hhr6igrb"; name = "redtick"; }; @@ -23345,7 +23583,7 @@ sha256 = "1r8fhs7d2vkrbv15ic2bm79i9a8swbc38vk566vnxkhl3rfd5a0a"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relative-line-numbers"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relative-line-numbers"; sha256 = "0mj1w5a4ax8hwz41vn02bacxlnifd14hvf3p288ljvwchvlf0hn3"; name = "relative-line-numbers"; }; @@ -23366,7 +23604,7 @@ sha256 = "0lqbhwi1f8b4sv9p1rf0gyjllk0l7g6v6mlws496079wxx1n5j66"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/relax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/relax"; sha256 = "0gfr4ym6aakawhkfz40ar2n0rfz503hq428yj6rbf7jmq3ajaysk"; name = "relax"; }; @@ -23387,7 +23625,7 @@ sha256 = "007lqahjbig6yygqik6fgbq114784z6l40a3vrc4qs9361zqizck"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repeatable-motion"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repeatable-motion"; sha256 = "12z4z8apd8ksf6dfvqm54l71mx68j0yg4hrjypa9p77fpcd6p0zw"; name = "repeatable-motion"; }; @@ -23408,7 +23646,7 @@ sha256 = "12wylmyz54n1f3kaw9clhvs66dg43xvcvll4pl5ii0ibfv6pls1b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repl-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repl-toggle"; sha256 = "1jyaksxgyygfv1wn9c6y8sykb4hicwgs9n5vrdikd2i0iix29zpb"; name = "repl-toggle"; }; @@ -23429,7 +23667,7 @@ sha256 = "178y1cmpdb2r72igx8j4l7pyhs1idw56j6hg5h8r9a2p99lkgjjc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/replace-symbol"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/replace-symbol"; sha256 = "07ljmw6aw9hsqffhwmiq2pvhry27acg6f4vgxgi91vjr8jj3r4ng"; name = "replace-symbol"; }; @@ -23450,7 +23688,7 @@ sha256 = "0hs80g3npgb6qfcaivdfkpsc9mss1kdmyp5j7s922qcy2k4yxmgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/repo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/repo"; sha256 = "0z4lcswh0c6xnsxlv33bsxh0nh26ydzfl8sv8xabdp5a2gk6bhpb"; name = "repo"; }; @@ -23471,7 +23709,7 @@ sha256 = "1xzp2hnkr9lsjx50cxlpki9mvyhjsv0vyc77480jrlnpspakj7qs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/req-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/req-package"; sha256 = "1438f60dnmc3a2dh6hd0wslrh25nd3af797aif70kv6qc71h87vf"; name = "req-package"; }; @@ -23492,7 +23730,7 @@ sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request"; sha256 = "0h4jqg98px9dqqvjp08vi2z1lhmk0ca59lnrcl96bi7gkkj3jiji"; name = "request"; }; @@ -23513,7 +23751,7 @@ sha256 = "0rpw9is8sx2gmbc7l6mv5qdd0jrh497lyj5f0zx0lqwjl8imw401"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/request-deferred"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/request-deferred"; sha256 = "1dcxqnzmvddk61dzmfx8vjbzd8m44lscr3pjdp3r7211zhwfk40n"; name = "request-deferred"; }; @@ -23534,7 +23772,7 @@ sha256 = "1b832r7779rmr6rhzj7klc0l5xzwc4rids87g2hczpb5dhqnchca"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/requirejs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/requirejs"; sha256 = "09z6r9wcag3gj075wq215zcslyknl1izap595rn48xvizxi06c6k"; name = "requirejs"; }; @@ -23555,7 +23793,7 @@ sha256 = "1ps9l6q6hgzzaywkig0gjjdlsir9avxghynzx9a3q6h0fpdkpgrj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/resize-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/resize-window"; sha256 = "0h1hlj50hc97wxqpnmvg6w3qhdd9nbnb8r8v39ylv87zqjcmlp8l"; name = "resize-window"; }; @@ -23576,7 +23814,7 @@ sha256 = "0y4ga1lj2x2f0r535ivs09m2l0q76iz72w42wknhsw9lmdsyl5nz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restart-emacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restart-emacs"; sha256 = "03aabz7fmy99nwimvjn7qz6pvc94i470hfgiwmjz3348cw02k0n6"; name = "restart-emacs"; }; @@ -23597,7 +23835,7 @@ sha256 = "1z4ackggrw428f9f7bd02by4fw34bwndv2i4v7cj80c533mfwy9f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/restclient-test"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/restclient-test"; sha256 = "0g26z5p9fq7fm6bgrwaszya5xmhsgzcn1p7zqr83w74fbw6bcl39"; name = "restclient-test"; }; @@ -23618,7 +23856,7 @@ sha256 = "1q13cgpz4wzhnqv84ablawy3y2wgdwy46sp7454mmfx9m77jzb2v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reveal-in-osx-finder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reveal-in-osx-finder"; sha256 = "00jgrmh5s3vlpj1jjf8l3c3h4hjk5x781m95sidw6chimizvfmfc"; name = "reveal-in-osx-finder"; }; @@ -23639,7 +23877,7 @@ sha256 = "15xnz4fi22wsximimwmirlz11v4ksfj8nilyjfw6acd92yrhzg6h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/reverse-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/reverse-theme"; sha256 = "163kk5qnz9bk3l2fam79n264s764jfxbwqbiwgid8kw9cmk0v776"; name = "reverse-theme"; }; @@ -23660,7 +23898,7 @@ sha256 = "11hwf9y5ax207w6rwrsmi3pmn7pn7ap6iys0z8hni2f5zzxjrmx3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rich-minority"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rich-minority"; sha256 = "11xd76w5k3b3q5bxqjb55vi6dsal9drvyc1nh7z83awm59hvgczc"; name = "rich-minority"; }; @@ -23681,7 +23919,7 @@ sha256 = "0p044wg9d4i6f5x7bdshmisgwvw424y16lixac93q6v5bh3xmab5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rigid-tabs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rigid-tabs"; sha256 = "06n0bcvc3nnp84pcq3lywwga7l92jz8hnkilhbq59kydf5zbjldp"; name = "rigid-tabs"; }; @@ -23702,7 +23940,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rinari"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rinari"; sha256 = "0qknicg3vzl7zbkwsdvp10hrvlng6mbi8hgslx4ir522dflrf9p0"; name = "rinari"; }; @@ -23723,7 +23961,7 @@ sha256 = "1drvyf5asjp3lgpss7llff35q8r89vmh73n1axaj2qp9jx5a5jih"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rnc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rnc-mode"; sha256 = "09ly7ln6qrcmmim9bl7kd50h4axrhy6ig406r352xm4a9zc8n22q"; name = "rnc-mode"; }; @@ -23744,7 +23982,7 @@ sha256 = "01xd3nc7bmf4r4d37x08rw2dlsg6gns8mraahi4rwkg6a9lwl44n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robe"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robe"; sha256 = "19py2lwi7maya90kh1mgwqb16j72f7gm05dwla6xrzq1aks18wrk"; name = "robe"; }; @@ -23765,7 +24003,7 @@ sha256 = "0dimmdz4aqcif4lp23nqxfg7kngzym2yivn6h3p7bn1821vgzq9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/robots-txt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/robots-txt-mode"; sha256 = "1q3fqaf9nysy9bhx4h9idgshxr65hfwnx05vlwazx7jd6bq6kxfh"; name = "robots-txt-mode"; }; @@ -23786,7 +24024,7 @@ sha256 = "0rgv4y9aa5cc2ddz3y5z8d22xmr8kf5c60h0r3g8h91jmcw3rb4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/roguel-ike"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/roguel-ike"; sha256 = "1a7sa6nhgi0s4gjh55bhk5cg6q6s7564fk008ibmrm05gfq9wlg8"; name = "roguel-ike"; }; @@ -23799,15 +24037,15 @@ rope-read-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rope-read-mode"; - version = "0.3.1"; + version = "0.3.4"; src = fetchFromGitHub { owner = "marcowahl"; repo = "rope-read-mode"; - rev = "cb550afeedd369c80d1ccb54bb48494d170a5569"; - sha256 = "133ficdghshlmwq5dn42cg3h51jdg4lcwqr4cd2s2s52rz8plw9h"; + rev = "71e475ab35555e0a1eca26d73acf1ced911e422e"; + sha256 = "0x3mmf4gq4d0cqfqbkrrpwhayvmplacck0zc9nlzcn35y17jzpcz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rope-read-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rope-read-mode"; sha256 = "0grnn5k6rbck0hz4c6cadgj3a4dv62habyingznisg2kx9i3m0dw"; name = "rope-read-mode"; }; @@ -23828,7 +24066,7 @@ sha256 = "0mfkq8n28lal4lqwp6v0ilz8wrwgg61sbm0jggznwisjqqy3lzrh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rsense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rsense"; sha256 = "1901xqlpc8fg4sl9j58jn40i2djs8s0cdcqcrzrq02lvk8ssfdf5"; name = "rsense"; }; @@ -23849,7 +24087,7 @@ sha256 = "0hrn5n7aaymwimk511kjij44vqaxbmhly1gwmlmsrnbvvma7f2mp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rspec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rspec-mode"; sha256 = "0nyib9rx9w9cbsgkcjx9n8fp77xkzxg923z0rdm3f9kc7njcn0zx"; name = "rspec-mode"; }; @@ -23870,7 +24108,7 @@ sha256 = "0pir76xhi58nqfmjcijn5s7dz3pjjz43g97hh7sd1m32s8saddm1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rtags"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rtags"; sha256 = "08clwydx2b9cl4wv61b0p564jpvq7gzkrlcdkchpi4yz6djbp0lw"; name = "rtags"; }; @@ -23891,7 +24129,7 @@ sha256 = "10djjp1520xc05qkciaiaiiciscaln6c74h7ymba40mvzlf67y9q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rubocop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rubocop"; sha256 = "114azl0fasmnq0fxxyiif3363mpg8qz3ynx91in5acqzh902fa3q"; name = "rubocop"; }; @@ -23912,7 +24150,7 @@ sha256 = "1wqhqv2fc5h10igv1php51bayx0s7qw4m9gzx9by80dab8lwa0vk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-compilation"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-compilation"; sha256 = "1x1vpkjpx95sfcjhkx4cafypj0nkbd1i0mzxx3lmcrsmg8iv0rjc"; name = "ruby-compilation"; }; @@ -23933,7 +24171,7 @@ sha256 = "1cpz9vkp57nk682c5xm20g7bfj5g2aq5ahpk4nhgx7pvd3xvr1ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-end"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-end"; sha256 = "1cnmdlkhm8xsifbjs6ymvi92gdnxiaghb04h10qg41phj6v7m9mg"; name = "ruby-end"; }; @@ -23954,7 +24192,7 @@ sha256 = "01n9j7sag49m4bdl6065jklnxnc5kck51izg884s1is459qgy86k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-hash-syntax"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-hash-syntax"; sha256 = "0bvwyagfh7mn457iibrpv1ay75089gp8pg608gbm24m0ix82xvb5"; name = "ruby-hash-syntax"; }; @@ -23975,7 +24213,7 @@ sha256 = "008zj9rg2cmh0xd7g6kgx6snm5sspxs4jmfa8hd43wx5y9pmlb8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-test-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-test-mode"; sha256 = "113ysf08bfh2ipk55f8h741j05999yrgx57mzh53rim5n63a312w"; name = "ruby-test-mode"; }; @@ -23996,7 +24234,7 @@ sha256 = "1zvhq9l717rjgkm7bxz5gqkmh5i49cshwzlimb3h78kpjw3hxl2k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ruby-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ruby-tools"; sha256 = "0zpk55rkrqyangyyljxzf0n1icgqnpdzycwack5rji556h5grvjy"; name = "ruby-tools"; }; @@ -24006,6 +24244,27 @@ license = lib.licenses.free; }; }) {}; + runner = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "runner"; + version = "1.7"; + src = fetchFromGitHub { + owner = "thamer"; + repo = "runner"; + rev = "a08554070a4809a3e9441922550b0145eb628ece"; + sha256 = "1v2qr58n0rfb21dzcw6vlxwpvpmwnmgwrk32mzw32k08yappqjn6"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/runner"; + sha256 = "09apmk22swj05z77ziij31jj6b3g221qv3mw3mymffzxn5ap2rbx"; + name = "runner"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/runner"; + license = lib.licenses.free; + }; + }) {}; rvm = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "rvm"; @@ -24017,7 +24276,7 @@ sha256 = "0iblk0vagjcg3c8q9hlpwk7426ms7aq0s80izgvascfmyqycv6qm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/rvm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/rvm"; sha256 = "08i7cmav2cz73jp88ww0ay2yjhk9dj8146836q4sij1bl1slbaf8"; name = "rvm"; }; @@ -24038,7 +24297,7 @@ sha256 = "08vf62fcrnbmf2ppb759kzznjdz8x72fqdwbc4n8nbswrwgm2ikl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/s"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/s"; sha256 = "0b2lj6nj08pk5fnxvjkc1d9hvi29rnjjy4n5ns4pq6wxpfnlcw64"; name = "s"; }; @@ -24059,7 +24318,7 @@ sha256 = "06gqqbkn85l2p05whmr4wkg9axqyzb7r7sgm3r8wfshm99kgpxvl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sackspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sackspace"; sha256 = "1m10iw83k6m7v7sg2dxzdy83zxq6svk8h9fh4ankyn3baqrdxg5z"; name = "sackspace"; }; @@ -24072,15 +24331,15 @@ sage-shell-mode = callPackage ({ cl-lib ? null, deferred, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sage-shell-mode"; - version = "0.1.0"; + version = "0.1.1"; src = fetchFromGitHub { owner = "stakemori"; repo = "sage-shell-mode"; - rev = "55be8bb29113e07cd4aa61c36f21ab9ac3ea0e84"; - sha256 = "1cndf4igichma1ghs4x9bvbd89d64ghzs20kqjzmyr3r5sp5918k"; + rev = "26303698cbd807b4cbaa241b0671f7e542a3bbe4"; + sha256 = "1124akipvrcmkd66slklgap2jdvb8iksldd8sjvg9n25kp0wd0vr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sage-shell-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sage-shell-mode"; sha256 = "18k7yh8rczng0kn2wsawjml70cb5bnc5jr2gj0hini5f7jq449wx"; name = "sage-shell-mode"; }; @@ -24101,7 +24360,7 @@ sha256 = "0lxrq3mzabkwj5bv0mgd7fnx3dsx8vxd5kjgb79rjfra0m7pfgln"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sass-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sass-mode"; sha256 = "1byjk5zpzjlyiwkp780c4kh7s9l56y686sxji89wc59d19rp8800"; name = "sass-mode"; }; @@ -24122,7 +24381,7 @@ sha256 = "1mcag7qad1npjn096byakb8pmmi2g64nlf2vcc12irzmwia85fml"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sauron"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sauron"; sha256 = "01fk1xfh7r16fb1xg5ibbs7gci9dja49msdlf7964hiq7pnnhxgb"; name = "sauron"; }; @@ -24143,7 +24402,7 @@ sha256 = "1gkzgcnh5ib4j5206mx8gbwj5ykay19vqlfg9070m2r09d1a55qf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/say-what-im-doing"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/say-what-im-doing"; sha256 = "1hgh842f7gs2sxy7s6zq57nsqy4jjlnjcga6hwzcx0kw3albgz7x"; name = "say-what-im-doing"; }; @@ -24164,7 +24423,7 @@ sha256 = "1lvf7y1n63p8jvnp6ppwmxq2s6h9sk45319576f3s28ixsfa6cp2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sbt-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sbt-mode"; sha256 = "0v0n70czgkdijnw5jd4na41vlrmqcshvr8gdpv0bv55ilqhiihc8"; name = "sbt-mode"; }; @@ -24185,7 +24444,7 @@ sha256 = "1ayqdmnp38wvhi3a8r8wivn4z8v6irbz0kwqvgsnpq6m2s3jsbz9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scala-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scala-mode"; sha256 = "12x377iw085fbkjb034dmcsbi7hma17zkkmbgrhkvfkz8pbgaic8"; name = "scala-mode"; }; @@ -24206,7 +24465,7 @@ sha256 = "13s8hp16wxd9fb8gf05dn0xr692kkgiqg7v49fgr00gas4xgpfpm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scpaste"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scpaste"; sha256 = "02dqmx6v3jxdn5yz1z74624sc6sz2bm4qjyi78w9akhp2jplwlk1"; name = "scpaste"; }; @@ -24227,7 +24486,7 @@ sha256 = "0zpjf9cp8g4rgnwgmhlpwnanf9lzqm3rm1mkihf0gk5qzxvwsdh9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/scss-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/scss-mode"; sha256 = "1g27xnp6bjaicxjlb9m0njc6fg962j3hlvvzmxvmyk7gsdgcgpkv"; name = "scss-mode"; }; @@ -24248,7 +24507,7 @@ sha256 = "08yc67a4ji7z8s0zh500wiscziqsxi92i1d33fjla2mcr8sxxn0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/search-web"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/search-web"; sha256 = "0qqx9l8dn1as4gqpq80jfacn6lz0132m91pjzxv0fx6al2iz0m36"; name = "search-web"; }; @@ -24269,7 +24528,7 @@ sha256 = "0nsm7z056rh32sq7abgdwyaz4dbz8v9pgbha5jvpk7y0zmnabrgs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sekka"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sekka"; sha256 = "1jj4ly9p7m3xvb31nfn171lbpm9y70y8cbf8p24w0fhv665dx0cp"; name = "sekka"; }; @@ -24290,7 +24549,7 @@ sha256 = "1c9yv1kjcd0jrzgw99q9p4kzj980f261mjcsggbcw806wb0iw1xn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/select-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/select-themes"; sha256 = "18ydv7240vcqppg1i7n8sy18hy0lhpxz17947kxs7mvj4rl4wd84"; name = "select-themes"; }; @@ -24311,7 +24570,7 @@ sha256 = "18xdkisxvdizsk51pnyimp9mwc6k9cpcxqr5hgndkz9q97p5dp79"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/selectric-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/selectric-mode"; sha256 = "1k4l0lr68rqyi37wvqp1cnfci6jfkz0gvrd1hwbgx04cjgmz56n4"; name = "selectric-mode"; }; @@ -24332,7 +24591,7 @@ sha256 = "15lx6qvmq3vp84ys8dzbx1nzxcnzlq41whawc2yhrnd1dbq4mv2d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/servant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/servant"; sha256 = "0h8xsg37cvc5r8vkclf7d3gbf6gh4k5pmbiyhwpkbrxwjyl1sl21"; name = "servant"; }; @@ -24353,7 +24612,7 @@ sha256 = "1h58q41wixjlapia1ggf83jxcllq7492k55mc0fq7hbx3hw1q1y2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/serverspec"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/serverspec"; sha256 = "001d57yd0wmz4d7qmhnanac8g29wls0sqw194003hrgirakg82id"; name = "serverspec"; }; @@ -24374,7 +24633,7 @@ sha256 = "0sp952abz7dkq8b8kkzzmnwnkq5w15zsx5dr3h8lzxb92lnank9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/session"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/session"; sha256 = "0fghxbnf1d5iyrx1q8xd0lbw9nvkdgg2v2f89j6apnawisrsbhwx"; name = "session"; }; @@ -24395,7 +24654,7 @@ sha256 = "11h5z2gmwq07c4gqzj2c9apksvqk3k8kpbb9kg78bbif2xfajr3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sexp-move"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sexp-move"; sha256 = "0lcxmr2xqh8z7xinxbv1wyrh786zlahhhj5nnbv83i8m23i3ymmd"; name = "sexp-move"; }; @@ -24416,7 +24675,7 @@ sha256 = "0yy162sz7vwj0i9w687a5x1c2fq31vc3i6gqhbywspviczdp4q1y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shackle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shackle"; sha256 = "159z0cwg7afrmym0xk902d8z093sqv39jig25ds7z4a224yrv5w6"; name = "shackle"; }; @@ -24437,7 +24696,7 @@ sha256 = "0vkxl3w4y4yacs1s4v0gwggvzrss8g74d3dgk8h3gphl4dlgx496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shakespeare-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shakespeare-mode"; sha256 = "1i9fr9l3x7pwph654hqd8s74swy5gmn3wzs85a2ibmpcjq8mz9rd"; name = "shakespeare-mode"; }; @@ -24458,7 +24717,7 @@ sha256 = "11g9lsgakq8nf689k49p9l536ffi62g3bh11mh9ix1l058xamqw2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shampoo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shampoo"; sha256 = "01ssgw4cnnx8d86g3r1d5hqcib4qyhmpqvcvx47xs7zh0jscps61"; name = "shampoo"; }; @@ -24479,7 +24738,7 @@ sha256 = "0fzywfdaisvvdbcl813n1shz0r8v1k9kcgxgynv5l0i4nkrgkww5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-pop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-pop"; sha256 = "02s17ln0hbi9gy3di8fksp3mqc7d8ahhf5vwyz4vrc1bg77glxw8"; name = "shell-pop"; }; @@ -24500,7 +24759,7 @@ sha256 = "0mcxp74sk9bn36gbhhimgns07iqa4dgbq2pvpqy41igqwb84w306"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-split-string"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-split-string"; sha256 = "1yj1h7za4ylxh2nikj7s1qqlilpsk05x9571a2fymfyznm3iq77m"; name = "shell-split-string"; }; @@ -24521,7 +24780,7 @@ sha256 = "0ia7sdip4hl27avckv3qpqgm3k4ynvp3xxq1cy53bqfzzx0gcria"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-switcher"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-switcher"; sha256 = "07g9naiv2jk9jxwjywrbb05dy0pbfdx6g8pkra38rn3vqrjzvhyx"; name = "shell-switcher"; }; @@ -24542,7 +24801,7 @@ sha256 = "0wvaa5nrbblayjvzjyj6cd942ywg7xz5d8fqaffxcvwlcdihvm7q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shell-toggle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shell-toggle"; sha256 = "1ai0ks7smr8b221j9hmsikswpxqraa9b13fpwv4wwagavnlah446"; name = "shell-toggle"; }; @@ -24563,7 +24822,7 @@ sha256 = "1nli26llyfkj1cz2dwn18c5pz1pnpz3866hapfibvdmwrg4z6cax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelldoc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelldoc"; sha256 = "1xlp03aaidp7dp8349v8drzhl4lcngvxgdrwwn9cahfqlrvvbbbx"; name = "shelldoc"; }; @@ -24584,7 +24843,7 @@ sha256 = "0mn7bwvj1yv75a2531jp929j6ypckdfqdg6b5ig0kkbcrrwb7kxs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shelltest-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shelltest-mode"; sha256 = "1inb0vq34fbwkr0jg4dv2lljag8djggi8kyssrzhfawri50m81nh"; name = "shelltest-mode"; }; @@ -24605,7 +24864,7 @@ sha256 = "0zlwmzsxkv4mkggylxfx2fkrwgz7dz3zbg2gkn2rxcpy2k2gla64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shift-number"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shift-number"; sha256 = "1sbzkmd336d0dcdpk29pzk2b5bhlahrn083x62l6m150n2xzxn4p"; name = "shift-number"; }; @@ -24626,7 +24885,7 @@ sha256 = "1vf766ja8f4xp1f5pmwgz6a85km0nxvc5dn571lwidfrrdbr9rkk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shm"; sha256 = "1qmp8cc83dcz25xbyqd4987i0d8ywvh16wq2wfs4km3ia8a2vi3c"; name = "shm"; }; @@ -24647,7 +24906,7 @@ sha256 = "09454mcjd8n1090pjc5mk1dc6bn3bgh60ddpnv9hkajkzpcjxx4h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shpec-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shpec-mode"; sha256 = "155hc1nym3fsvflps8d3ixaqw1cafqp97zcaywdppp47n7vj8zjl"; name = "shpec-mode"; }; @@ -24668,7 +24927,7 @@ sha256 = "050gmxdk88zlfjwi07jsj2mvsfcv5imhzcpa6ip3cqkzpmw3pl32"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shrink-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shrink-whitespace"; sha256 = "12if0000i3rrxcm732layrv2h464wbb4xflbbfc844c83dbx1jmq"; name = "shrink-whitespace"; }; @@ -24689,7 +24948,7 @@ sha256 = "103yvfgkj78i4bnv1fwk76izsa8h4wyj3vwj1vq7xggj607hkxzq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/shut-up"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/shut-up"; sha256 = "1bcqrnnafnimfcg1s7vrgq4cb4rxi5sgpd92jj7xywvkalr3kh26"; name = "shut-up"; }; @@ -24710,7 +24969,7 @@ sha256 = "1ma6djvhvjai07v1g9a36lfa3nw8zsy6x5vliwcdnkf44gs287ra"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sift"; sha256 = "0mv5zk140kjilwvzccj75ym7wlkkqryb532mbsy7i9bs3q7m916d"; name = "sift"; }; @@ -24731,7 +24990,7 @@ sha256 = "1qmkc0w28l53zzf5yd2grrk1sq222g5qnsm35ph25s1cfvc1qb2g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simple-httpd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simple-httpd"; sha256 = "1g9m8dx62pql6dqz490pifcli96i5pv6sar18w4lwrfgpfisfz8c"; name = "simple-httpd"; }; @@ -24752,7 +25011,7 @@ sha256 = "0v0vmkix9f0hb2183irr6xra8mwi47g6rn843sas7jy2ycaqd91v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simpleclip"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simpleclip"; sha256 = "07qkfwlg8vw5kb097qbsv082hxir047q2bcvc8scbak2dr6pl12s"; name = "simpleclip"; }; @@ -24773,7 +25032,7 @@ sha256 = "04giklbd1fsw2zysr7aqg17h6cpyn4i9jbknm4d4v6581f2pcl93"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplenote2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplenote2"; sha256 = "1qdzbwhzmsga65wmrd0mb3rbs71nlyqqb6f4v7kvfxzyis50cswm"; name = "simplenote2"; }; @@ -24794,7 +25053,7 @@ sha256 = "1p1771qm3jndnf4rdhb1bri5cjiksvxizagi7vfb7mjmsmx18w61"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/simplezen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/simplezen"; sha256 = "13f2anhfsxmx1vdd209gxkhpywsi3nn6pazhc6bkswmn27yiig7j"; name = "simplezen"; }; @@ -24815,7 +25074,7 @@ sha256 = "101xn4glqi7b5vhdqqahj2ib4pm30pzq8sad7zagxw9csihcri3q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skeletor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skeletor"; sha256 = "1vfvg5l12dzksr24dxwc6ngawsqzpxjs97drw48qav9dy1vyl10v"; name = "skeletor"; }; @@ -24836,7 +25095,7 @@ sha256 = "0g5sapd76pjnfhxlw149zj0fpn6l3pz3l8qlcn2c237vm8vn6qv3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-less"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-less"; sha256 = "0fhv5cnp5bgw3krfmb0jl18kw2hzx2p81falj57lg3p8rn23dryl"; name = "skewer-less"; }; @@ -24857,7 +25116,7 @@ sha256 = "05jndz0c26q60s416vqgvr66axdmxb7qsr2g70fvl5iqavnayhpv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/skewer-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/skewer-mode"; sha256 = "1zp4myi9f7pw6zkgc0xg12585iihn7khcsf20pvqyc0vn4ajdwqm"; name = "skewer-mode"; }; @@ -24878,7 +25137,7 @@ sha256 = "09ccdgg2wgw3xmlkpjsaqmnmf7f8rhjy4g6ypsn1sk5rgbgk8aj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slamhound"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slamhound"; sha256 = "14zlcw0zw86awd6g98l4h2whav9amz4m8ik877d1wsdjf69g7k9x"; name = "slamhound"; }; @@ -24899,7 +25158,7 @@ sha256 = "0rk12am1dq52khwkwrmg70zarhni2avj4sy44jqckb4x7sv7djfk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slideview"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slideview"; sha256 = "0zr08yrnrz49zds1651ysmgjqgbnhfdcqbg90sbsb086iw89rxl1"; name = "slideview"; }; @@ -24920,7 +25179,7 @@ sha256 = "1cl8amk1kc7a953l1khjms04j40mfkpnbsjz3qa123msgachrsg7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slim-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slim-mode"; sha256 = "1hip0r22irr9sah3b65ky71ic508bhqvj9hj95a81qvy1zi9rcac"; name = "slim-mode"; }; @@ -24941,7 +25200,7 @@ sha256 = "0d1fcjv11my4sa11zim99ylzfsc5q989x4izrrxs3y9ii0nq8kax"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime"; sha256 = "04zcvjg0bbx5mdbsk9yn7rlprakl89dq6jmnq5v2g0n6q0mh6ign"; name = "slime"; }; @@ -24962,7 +25221,7 @@ sha256 = "0rdhd6kymbzhkc96dxy3nr21ajrkc7iy6zvq1va22r90f96jj9x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-company"; sha256 = "195s5fi2dl3h2jyy4d45q22jac35sciz81n13b4lgw94mkxx4rq2"; name = "slime-company"; }; @@ -24983,7 +25242,7 @@ sha256 = "0swd9rbsag8k18njp741ljg6lmlz949i4bbz5w7bl0spcpc26fs9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-docker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-docker"; sha256 = "13zkkrpww51ndsblpyz2msiwrjnaz6yrk61jbzrwp0r7a2v0djsa"; name = "slime-docker"; }; @@ -25004,7 +25263,7 @@ sha256 = "0lp584k35asqlvbhglv124jazdgp3h7pzl0akfwbdmby9zayqk96"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-ritz"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-ritz"; sha256 = "1y1439y07l1a0sp9wn110hw4yyxj8n1cnd6h17rmsr549m2qbg1a"; name = "slime-ritz"; }; @@ -25025,7 +25284,7 @@ sha256 = "00v4mh04affd8kkw4rn51djpyga2rb8f63mgy86napglqnkz40r3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/slime-volleyball"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/slime-volleyball"; sha256 = "1dzvj8z3l5l9ixjl3nc3c7zzi23zc2300r7jzw2l3bvg64cfbdg7"; name = "slime-volleyball"; }; @@ -25046,7 +25305,7 @@ sha256 = "1aihr5pbdqjb5j6xsghi7qbrmp46kddv76xmyx5z98m93n70wzqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly"; sha256 = "1pmyqjk8fdlzwvrlx8h6fq0savksfny78fhmr8r7b07pi20y6n9l"; name = "sly"; }; @@ -25067,7 +25326,7 @@ sha256 = "11p89pz6zmnjng5177w31ilcmifvnhv9mfjy79ic7amg01h09hsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sly-company"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sly-company"; sha256 = "1n8bx0qis2bs49c589cbh59xcv06r8sx6y4lxprc9pfpycx7h6v2"; name = "sly-company"; }; @@ -25088,7 +25347,7 @@ sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line"; sha256 = "0qmhzlkc6mfqyaw4jaw6195b8sw0wg9pfjcijb4p0mlywf5mh5q6"; name = "smart-mode-line"; }; @@ -25109,7 +25368,7 @@ sha256 = "1176fxrzzk4fyp4wjyp0xyqrga74j5csr5x37mlgplh9790248dx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-mode-line-powerline-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-mode-line-powerline-theme"; sha256 = "0hv3mx39m3l35xhz351zp98321ilr6qq9wzwn1f0ziiv814khcn4"; name = "smart-mode-line-powerline-theme"; }; @@ -25130,7 +25389,7 @@ sha256 = "1kfihh4s8578cwqyzn5kp3iib7f9vvg6rfc3klqzgads187ryd4z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smart-tabs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smart-tabs-mode"; sha256 = "1fmbi0ypzhsizzb1vm92hfaq23swiyiqvg0pmibavzqyc9lczhhl"; name = "smart-tabs-mode"; }; @@ -25151,7 +25410,7 @@ sha256 = "0pvgnfg8a8w7c1nmrwyhfc0j7clzb290kwkid0c8kz275mb9nm3k"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartparens"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartparens"; sha256 = "025nfrfw0992024i219jzm4phwf29smc5hib45s6h1s67942mqh6"; name = "smartparens"; }; @@ -25172,7 +25431,7 @@ sha256 = "0j5lg9gryl8vbzw8d3r2fl0c9wxa0c193mcvdfidd25b98wccc3f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartrep"; sha256 = "1ypls52d51lcqhz737rqg73c6jwl6q8b3bwb29z51swyamf37rbn"; name = "smartrep"; }; @@ -25193,7 +25452,7 @@ sha256 = "1sd7dh9114mvr4xnp43xx4b7qmwkaj1a1fv7pwc28fhiy89d2md4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smartscan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smartscan"; sha256 = "0vghgmx8vnjbvsw7q5zs0qz2wm6dcng9m69b8dq81g2cq9dflbwb"; name = "smartscan"; }; @@ -25214,7 +25473,7 @@ sha256 = "1pcpg3lalbrc24z3vwcaysps8dbdzmncdgqdd5ig6yk2a9wyj9ng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smeargle"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smeargle"; sha256 = "1dy87ah1w21csvrkq5icnx7g7g7nxqkcyggxyazqwwxvh2silibd"; name = "smeargle"; }; @@ -25235,7 +25494,7 @@ sha256 = "1hcjh577xz3inx28r8wb4g2b1424ccw8pffvgdmpf80xp1llldj5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smex"; sha256 = "1rwyi7gdzswafkwpfqd6zkxka1mrf4xz17kld95d2ram6cxl6zda"; name = "smex"; }; @@ -25256,7 +25515,7 @@ sha256 = "1kkg7qhb2lmwr4siiazqny9w2z9nk799lzl5i159lfivlxcgixmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scroll"; sha256 = "1b0mjpd4dqgk7ij37145ry2jqbn1msf8rrvymn7zyckbccg83zsf"; name = "smooth-scroll"; }; @@ -25277,7 +25536,7 @@ sha256 = "1dkqix0iyjyiqf34h3p8faqcpffc0pwkxqqn80ys9jvj4f27kkrg"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/smooth-scrolling"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/smooth-scrolling"; sha256 = "0zy2xsmr05l2narslfgril36d7qfb55f52qm2ki6fy1r18lfiyc6"; name = "smooth-scrolling"; }; @@ -25290,15 +25549,15 @@ snakemake-mode = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, magit-popup, melpaBuild }: melpaBuild { pname = "snakemake-mode"; - version = "0.5.0"; + version = "0.5.1"; src = fetchFromGitHub { owner = "kyleam"; repo = "snakemake-mode"; - rev = "c64354a4f6b8e65abd8ff0a3713253de5da59e07"; - sha256 = "0iwcfywais3jagx27h666fh6zgml8fncsz1jymjrbyr0w6xi33iz"; + rev = "3f02d1af5548d15a410ee745b9e7ebc09266a1ab"; + sha256 = "12s3ykb2flnbl6kvjn0yy11y0g5nq2k5arpgf7pqwj4wgx0fl8nb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/snakemake-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/snakemake-mode"; sha256 = "1xxd3dms5vgvpn18a70wjprka5xvri2pj9cw8qz09s640f5jf3r4"; name = "snakemake-mode"; }; @@ -25319,7 +25578,7 @@ sha256 = "0zcj9jf8nlsj9vms888z2vs76q54n8g8r9sh381xad3x8d6lrlb3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/solarized-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/solarized-theme"; sha256 = "15d8k32sj8i11806byvf7r57rivz391ljr0zb4dx8n8vjjkyja12"; name = "solarized-theme"; }; @@ -25340,7 +25599,7 @@ sha256 = "0b5w3vdr8llg3hqd22gnc6b6y089lq6vfk0ajkws6gfldz2gg2v1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sos"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sos"; sha256 = "1gkd0plx7152s3dj8a9lwlwh8bgs1m006s80l10agclx6aay8rvb"; name = "sos"; }; @@ -25361,7 +25620,7 @@ sha256 = "13yn2yadkpmykaly3l3xsq1bhm4sxyk8k1px555y11qi0mfdcjhh"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotclojure"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotclojure"; sha256 = "12byqjzg0pffqyq958265qq8yxxmf3iyy4m7zib492qcj8ccy090"; name = "sotclojure"; }; @@ -25382,7 +25641,7 @@ sha256 = "0xykm4yayb8gw83arv5p205cx18j14q9407rqw3sbcj9cj5nbk34"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sotlisp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sotlisp"; sha256 = "0zjnn6hhwy6cjvc5rhvhxcq5pmrhcyil14a48fcgwvg4lv7fbljk"; name = "sotlisp"; }; @@ -25403,7 +25662,7 @@ sha256 = "0q2ragq4hw89d3w48ykwljb19n2nhz8z6bsmb10shimaf203652g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sound-wav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sound-wav"; sha256 = "1vrwzk6zqma7r0w5ivbx16shys6hsifj52fwlf5rxs6jg1gqdb4f"; name = "sound-wav"; }; @@ -25424,7 +25683,7 @@ sha256 = "1ynyxrpl9qd2l60dpn9kb04zxgq748fffb0yj8pxvm9q3abblf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcekit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcekit"; sha256 = "1lvk3m86awlinivpg89h6zvrwrdqa5ljdp563k3i4h9384w82pks"; name = "sourcekit"; }; @@ -25445,7 +25704,7 @@ sha256 = "1k2gfw4dydzqxbfdmcghajbb2lyg1j4wgdhp8chlql3dax1f503d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcemap"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcemap"; sha256 = "0cjg90y6a0l59a9v7d7p12pgmr21gwd7x5msil3h6xkm15f0qcc5"; name = "sourcemap"; }; @@ -25466,7 +25725,7 @@ sha256 = "0j4qm1y7rhb95k1zbl3c60a46l9rchzslzq36mayyw61s6yysjnv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sourcetalk"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sourcetalk"; sha256 = "0qaf2q784xgl1s3m88jpwdzghpi4f3nybga3lnr1w7sb7b3yvj3z"; name = "sourcetalk"; }; @@ -25479,15 +25738,15 @@ spaceline = callPackage ({ cl-lib ? null, dash, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild, powerline, s }: melpaBuild { pname = "spaceline"; - version = "2.0.0"; + version = "2.0.1"; src = fetchFromGitHub { owner = "TheBB"; repo = "spaceline"; - rev = "d27276e30f506d2d2b75858c8a461544766eec74"; - sha256 = "0n42947xgvdf45h9nz9fmfg4dz5blkk8c883x9ynxv21r0mhvdwk"; + rev = "2d1a7bfb5bdaf24958f50b4bf93182847916af85"; + sha256 = "1q8r95zfrh0vxna5ml2pq9b9f66clfqcl4d2qy2aizkvzyxg6skl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spaceline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spaceline"; sha256 = "0jpcj0i8ckdylrisx9b4l9kam6kkjzhhv1s7mwwi4b744rx942iw"; name = "spaceline"; }; @@ -25508,7 +25767,7 @@ sha256 = "1gmmmkzxxlpz2ml6qk24vndlrbyl55r5cba76jn342zrxvb357ny"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparkline"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparkline"; sha256 = "081jzaxjb32nydvr1kmyafxqxi610n0yf8lwz9vldm84famf3g7y"; name = "sparkline"; }; @@ -25529,7 +25788,7 @@ sha256 = "1gk2ps7fn9z8n6r923qzn518gz9mrj7mb6j726cz8qb585ndjbij"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sparql-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sparql-mode"; sha256 = "1xicrfmgxpb31lz30qj450w8v7dl4ipjp7b2wz54s4kn88nsfj7d"; name = "sparql-mode"; }; @@ -25550,7 +25809,7 @@ sha256 = "1k6c7450v0ln6l9b8z1hib2s2b4rmjbskynvwwyilgdnvginfhi3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/speech-tagger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/speech-tagger"; sha256 = "0sqil949ny9qjxq7kpb4zmjd7770r0qvq4sz80agw6a27mqnaajc"; name = "speech-tagger"; }; @@ -25571,7 +25830,7 @@ sha256 = "1q6v0xfdxm57lyj4zxyqv6n5ik5w9drk7yf9w8spb5r22jg0dg8c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sphinx-doc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sphinx-doc"; sha256 = "00h3wx2p5hzbw6sggggdrzv4jrn1wc051iqql5y2m1hsh772ic5z"; name = "sphinx-doc"; }; @@ -25592,7 +25851,7 @@ sha256 = "17qsmjsbk8aq3azjxid6h9fzz77bils74scp21sqn8vdnijx8991"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/splitjoin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/splitjoin"; sha256 = "0l1x98fvvia8qx8g125h4d76slv0xnb3h1zxiq9xb5qh7a1h069l"; name = "splitjoin"; }; @@ -25613,7 +25872,7 @@ sha256 = "05y8xv6zapspwr5bii41lgirslas22wsbm0kgb4dm79qbk9j1kzw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/spotify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/spotify"; sha256 = "0pmsvxi1dsi580wkhhx8iw329agkh5yzk61bqvxzign3cd6fbq6k"; name = "spotify"; }; @@ -25634,7 +25893,7 @@ sha256 = "06rk07h92s5sljprs41y3q31q64cprx9kgs56c2j6v4c8cmsq5h6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprintly-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprintly-mode"; sha256 = "15i3rrv27ccpn12wwj9raaxpj7nlnrrj3lsp8vdfwph6ydvnfza4"; name = "sprintly-mode"; }; @@ -25655,7 +25914,7 @@ sha256 = "03wjzk1ljclfjgqzkg6m7v8saaajgavyd0xskd8fg8rdkx13ki0l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sprunge"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sprunge"; sha256 = "199vfl6i881aks8fi9d9w4w7mnc7n443h79p3s4srcpmbyfg6g3w"; name = "sprunge"; }; @@ -25676,7 +25935,7 @@ sha256 = "12zyw8b8s3jga560wv141gc4yvlbldvfcmpibns8wrpx2w8aivfj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sql-impala"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sql-impala"; sha256 = "1jr9k48d0q00d1x5lqv0n971mla2ymnqmjfn8pw0s0vxkldq4ibi"; name = "sql-impala"; }; @@ -25689,15 +25948,15 @@ sqlup-mode = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "sqlup-mode"; - version = "0.5.3"; + version = "0.5.8"; src = fetchFromGitHub { owner = "Trevoke"; repo = "sqlup-mode.el"; - rev = "7a51e34685c65952cd0635c3d35a36337fde361b"; - sha256 = "1dcb18fq84vlfgb038i2x6vy7mhin2q6jn4jl9fh256n12cx4nrn"; + rev = "432a9dc927d284b622113b895416bfc56eee8f5e"; + sha256 = "1bxb8yzl6x8y4cqglxwcv15crj7ffij5d43baq7izzvzcm5rnqj1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sqlup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sqlup-mode"; sha256 = "0ngs58iri3fwv5ny707kvb6xjq98x19pzak8c9nq4qnpw3nkr83b"; name = "sqlup-mode"; }; @@ -25718,7 +25977,7 @@ sha256 = "0wx8l8gkh8rbf2g149f35gpnmkk45s9x4r844aqw5by4zkvix4rc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/srefactor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/srefactor"; sha256 = "01cd40jm4h00c5q2ix7cskp7klbkcd3n5763y5lqfv59bjxwdqd2"; name = "srefactor"; }; @@ -25739,7 +25998,7 @@ sha256 = "08nx1iwvxqs1anng32w3c2clhnjf45527j0gxz5fy6h9svmb921q"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ssh-config-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ssh-config-mode"; sha256 = "0aihyig6q3pmk9ld519f4n3kychrg3l7r29ijd2dpvs0530md4wb"; name = "ssh-config-mode"; }; @@ -25760,7 +26019,7 @@ sha256 = "0igqifws73cayvjnhhrsqpy14sr27avymfhaqzrpj76m2fsh6fj4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stash"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stash"; sha256 = "116k40ispv7sq3jskwc1lvmhmk3jjz4j967r732s07f5h11vk1z9"; name = "stash"; }; @@ -25781,7 +26040,7 @@ sha256 = "0jpxmzfvg4k5q3h3gn6lrg891wjzlcps2kkij1jbdjk4jkgq386i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/status"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/status"; sha256 = "0a9lqa7a5nki5711bjrmx214kah5ndqpwh3i240gdd08mcm07ps3"; name = "status"; }; @@ -25802,7 +26061,7 @@ sha256 = "0pik6mq8syhxk9l9ns8wgvg5312qkckm3cilb3irwdm1dvnl5hpf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stekene-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stekene-theme"; sha256 = "0v1kwlnrqaygzaz376a5njg9kv4yf5l35k87xga4wdd2mxfwrmf1"; name = "stekene-theme"; }; @@ -25818,10 +26077,10 @@ src = fetchgit { url = "git://repo.or.cz/stgit.git"; rev = "48e5cef14cea5c810833d119900cd484c2a6ca85"; - sha256 = "0hgqxhqnc93pnh6j3hyi92hfx1cbdjylzqb2nl6ldsz1g2wdcw9r"; + sha256 = "05jy51g2krmj1c3rq8k7lihml1m4x6j73lkf8z1qwg35kmadzi8j"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stgit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stgit"; sha256 = "102s9lllrcxsqs0lgbrcljwq1l3s8ri4276wck6rcypck5zgzj89"; name = "stgit"; }; @@ -25842,7 +26101,7 @@ sha256 = "15gdcpbba3h84s7xnpk69nav6bixdixnirdh5n1rly010q0m5s5x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-edit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-edit"; sha256 = "1l1hqsfyi6pp4x4g1rk4s7x9zjc03wfmhy16izia8nkjhzz88fi8"; name = "string-edit"; }; @@ -25863,7 +26122,7 @@ sha256 = "03azfs6z0jg66ppalijcxl973vdbhj4c3g84sm5dm8xv6rnxrv2s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/string-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/string-utils"; sha256 = "1vsvxc06fd3wardldb83i5hjfibvmiqnxvcgdns7i5i8qlsrsx4v"; name = "string-utils"; }; @@ -25884,7 +26143,7 @@ sha256 = "035ym1c1vzg6hjsnd258z4dkrfc11lj4c0y4gpgybhk54dq3w9dk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stripe-buffer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stripe-buffer"; sha256 = "02wkb9y6vykrn6a5nfnimaplj7ig8i8h6m2rvwv08f5ilbccj16a"; name = "stripe-buffer"; }; @@ -25901,10 +26160,10 @@ src = fetchgit { url = "git://git.savannah.nongnu.org/stumpwm.git"; rev = "4d0603e52b5bab993b3be63e3654c74f641e677d"; - sha256 = "0pn3xjz433b0djcys25a8fv775yqmj3qgg0hyghgxjpzsh6k2a4f"; + sha256 = "0a0lwwlly4hlmb30bk6dmi6bsdsy37g4crvv1z24gixippyv1qzm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stumpwm-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stumpwm-mode"; sha256 = "0a77mh7h7033adfbwg2fbx84789962par43q31s9msjlqw15gs86"; name = "stumpwm-mode"; }; @@ -25925,7 +26184,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/stylus-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/stylus-mode"; sha256 = "152k74q6qn2xa38v2zyd5y7ya5n26nvai5v7z5fmq7jrcndp27r5"; name = "stylus-mode"; }; @@ -25946,7 +26205,7 @@ sha256 = "1j63rzxnrzzqizh7fpd99dcgsy5hd7w4d2lpwl5armmixlycl5m8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subatomic-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subatomic-theme"; sha256 = "0mqas67qms492n3hn74c5nrkjpsgf9b42lp02s2dh366c075dpqc"; name = "subatomic-theme"; }; @@ -25967,7 +26226,7 @@ sha256 = "189547d0g9ax0nr221bkdchlfcj60dsy8lgbbrvq3n3xrmlvl362"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subemacs"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subemacs"; sha256 = "0sqh80jhh3v37l5af7w6k9lqvj39bd91pn6a9rwdlfk389hp90zm"; name = "subemacs"; }; @@ -25988,7 +26247,7 @@ sha256 = "0mx892vn4a32df30iqmf2vsz1gdl3i557fw0194g6a66n9w2q7xf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/subshell-proc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/subshell-proc"; sha256 = "1fnp49yhnhsj7paj0b25vr6r03hr5kpgcrci439ffpbd2c85fkw2"; name = "subshell-proc"; }; @@ -26009,7 +26268,7 @@ sha256 = "1kmyivsyxr6gb2k36ssyr779rpk8qsrb27q5rjsir9fgc95qhvjb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sudden-death"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sudden-death"; sha256 = "1wrhb3d27j07i64hvjggyajm752w4mhrhq09lfvyhz6ykp1ly3fh"; name = "sudden-death"; }; @@ -26030,7 +26289,7 @@ sha256 = "1b637p2cyc8a83qv9vba4yamzhk08f62zykqh5p35jwvym8wkann"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/suomalainen-kalenteri"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/suomalainen-kalenteri"; sha256 = "1wzijbgcr3jc47ccr7nrdkqha16s6gw0xiccnmdczi48cvnvvlkh"; name = "suomalainen-kalenteri"; }; @@ -26051,7 +26310,7 @@ sha256 = "0cw3yf2npy2ah00q2whpn52kaybbccw1qvfzsww0x4zshlrwvvvq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/super-save"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/super-save"; sha256 = "0ikfw7n2rvm3xcgnj1si92ly8w75x26071ki551ims7a8sawh52p"; name = "super-save"; }; @@ -26072,7 +26331,7 @@ sha256 = "14h40s0arc2i898r9yysn256z6l8jkrnmqvrdg7p7658c0klz5ic"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/svg-mode-line-themes"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/svg-mode-line-themes"; sha256 = "12lnszcb9bl32n9wir7vf8xiyyv7njw4xg21aj9x4dasmidyx506"; name = "svg-mode-line-themes"; }; @@ -26093,7 +26352,7 @@ sha256 = "1h56qkbx5abz1l94wrdpbzspiz24mfgkppzfalvbvx5qwl079cvs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sweetgreen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sweetgreen"; sha256 = "1v75wk0gq5fkz8i1r8pl4gqnxbv1d80isyn48w2hxj2fmdn2xhpy"; name = "sweetgreen"; }; @@ -26114,7 +26373,7 @@ sha256 = "07xrcg33vsw19kz692hm7blzvnf7b6isllsz79fvs8q3l5c9mfjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swift-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swift-mode"; sha256 = "1imr53f8agfza9zxs1h1mwyhg7yaywqqffd1lsvm1m84nvxvri2d"; name = "swift-mode"; }; @@ -26135,7 +26394,7 @@ sha256 = "19vfj01x7b8f7wyx7m51z00la2r7jcwzv0n06srkvcls0wm5s1h3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper"; sha256 = "0qaia5pgsjsmrfmcdj72jmj39zq82wg4i5l2mb2z6jlf1jpbk6y9"; name = "swiper"; }; @@ -26156,7 +26415,7 @@ sha256 = "1y2dbd3ikdpjvi8xz10jkrx2773h7cgr6jxm5b2bldm81lvi8x64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/swiper-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/swiper-helm"; sha256 = "011ln6vny7z5vw67cpzldxf5n6sk2hjdkllyf7v6sf4m62ws93ph"; name = "swiper-helm"; }; @@ -26177,7 +26436,7 @@ sha256 = "1zpfilcaycj0l2q3zyvpjbwp5j3d9rrkacd5swzlr1n1klvbji48"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/switch-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/switch-window"; sha256 = "02f0zjvlzms66w1ryhk1cbr4rqwklzvgcjfiicj0lcnqqx61m2k2"; name = "switch-window"; }; @@ -26198,7 +26457,7 @@ sha256 = "0krbd1qa2408a97pqhl7fv0x8x1n2l3qq33zzj4w4vv0c55jk43n"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sws-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sws-mode"; sha256 = "0b12dsad0piih1qygjj0n7rni0pl8cizbzwqm9h1dr8imy53ak4i"; name = "sws-mode"; }; @@ -26219,7 +26478,7 @@ sha256 = "02f63k8rzb3bcch6vj6w5c5ncccqg83siqnc8hyi0lhy1bfx240p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/sx"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/sx"; sha256 = "1ml1rkhhk3hkd16ij2zwng591rxs2yppsfq9gwd4ppk02if4v517"; name = "sx"; }; @@ -26240,7 +26499,7 @@ sha256 = "01bymbsvbisnpb2wpqxhrvqx6cj57nh4xvpsbsr5rr1h4pm5jkzl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syndicate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syndicate"; sha256 = "06nmldcw5dy2shhpk6nyix7gs57gsr5s9ksj57xgg8y2j3j0da95"; name = "syndicate"; }; @@ -26261,7 +26520,7 @@ sha256 = "0hi2jflrlpp7xkbj852vp9hcl8bfmf04jqw1hawxrw4bxdp95jh2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/synosaurus"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/synosaurus"; sha256 = "06a48ajpickf4qr1bc14skfr8khnjjph7c35b7ajfy8jw2zwavpn"; name = "synosaurus"; }; @@ -26282,7 +26541,7 @@ sha256 = "1pn69f4w48jdj3wd1myj6qq2mhvygmlzbq2dws2qkjlp3kbwa6da"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntactic-sugar"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntactic-sugar"; sha256 = "12b2vpvz5h4wzxrk8jrbgc8v0w6bzzvxcyfs083fi1791qq1rw7r"; name = "syntactic-sugar"; }; @@ -26302,7 +26561,7 @@ sha256 = "1wcgr6scvwwfmhhjbpq3riq0gmp4g08ffbl91fpgp72j8zrc1c6x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/syntax-subword"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/syntax-subword"; sha256 = "1as89ffqz2h69fdwybgs5wibnrvskm7hd58vagfjkla9pjlpffpm"; name = "syntax-subword"; }; @@ -26323,7 +26582,7 @@ sha256 = "1hixilnnybv2v3p1wpn7a0ybwah17grawszs3jycsjgzahpgckv7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/system-specific-settings"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/system-specific-settings"; sha256 = "1ydmxi8aw2lf78wv4m39yswbqkmcadqg0wmzg9s8b5h9bxxwvppp"; name = "system-specific-settings"; }; @@ -26344,7 +26603,7 @@ sha256 = "0wqmpvqv5dbnniv7xpvmhw75h9xh3q5ndkrpzz3pk5b94drgm5s3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/systemd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/systemd"; sha256 = "1ykvm8mfi3fjvrkfcy9qn0sr9mhwm9x1svrmrd0gyqk418clk5i3"; name = "systemd"; }; @@ -26365,7 +26624,7 @@ sha256 = "09nndx83ws5v2i9x0dzk6l1a0lq29ffzh3y05n0n64nf5j0a7zvk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ta"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ta"; sha256 = "0kn2k4n0xfwsrniaqb36v3rxj2pf2sai3bmjksbn1g2kf5g156ll"; name = "ta"; }; @@ -26386,7 +26645,7 @@ sha256 = "1xd67s92gyr49v73j7r7cbhsc40bkw8aqh21whgbypdgzpyc7azc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tabbar-ruler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tabbar-ruler"; sha256 = "10dwjj6r74g9rzdd650wa1wxhqc0q6dmff4j0qbbhmjsxvsr3y0d"; name = "tabbar-ruler"; }; @@ -26407,7 +26666,7 @@ sha256 = "0gy9hxm7bca0l1hfy2pzn86avpifrz3bs8xzpicj4kxw5wi4ygns"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tablist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tablist"; sha256 = "0c10g86xjhzpmc2sqjmzcmi393qskyw6d9bydqzjk3ffjzklm45p"; name = "tablist"; }; @@ -26428,7 +26687,7 @@ sha256 = "0kq40g46s8kgiafrhdq99h79rz9h5fvgz59k7ralmf86bl4sdmdb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tagedit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tagedit"; sha256 = "0vfkbrxmrw4fwdz324s734zxdxm2nj3df6i8m6lgb9pizqyp2g6z"; name = "tagedit"; }; @@ -26449,7 +26708,7 @@ sha256 = "0amsz28n0syqqkxlmzsndm0ayvzc9kgzk8brs9ihskv0j5b3pdcq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tawny-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tawny-mode"; sha256 = "1xaw1six1n6rw1283fdyl15xcf6m7ngvq6gqlz0xzpf232c4b0kr"; name = "tawny-mode"; }; @@ -26470,7 +26729,7 @@ sha256 = "16kr1p4lzi1ysd5r2dh0mxk60zsm5fvwa9345nfyrgdic340yscc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telepathy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telepathy"; sha256 = "0c3d6vk7d6vqzjndlym2kk7d2zm0b15ac4142ir03p6f19rqq9pr"; name = "telepathy"; }; @@ -26491,7 +26750,7 @@ sha256 = "0smdlzrcbmip6c6c3rd0871wv5xyagavwsxhhgvki6ybyzdj9a19"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/telephone-line"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/telephone-line"; sha256 = "0dyh9h1yk9y0217b6rxsm7m372n910vpfgw5w23lkkrwa8x8qpx3"; name = "telephone-line"; }; @@ -26512,7 +26771,7 @@ sha256 = "17633jachcgnibmvx433ygcfmz3j6hzli5mqbqg83r27chiq5mjx"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ten-hundred-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ten-hundred-mode"; sha256 = "17v38h33ka70ynq72mvma2chvlnm1k2amyvk62c65iv67rwilky3"; name = "ten-hundred-mode"; }; @@ -26533,7 +26792,7 @@ sha256 = "195jghl1c8ncl15nix275r4x61zlii90pnwgx4m9q2bnbwsz3ycm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-alert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-alert"; sha256 = "02qvfhklysfk1fd4ibdngf4crp9k5ab11zgg90hi1sp429a53f3m"; name = "term-alert"; }; @@ -26554,7 +26813,7 @@ sha256 = "08qiipjsqc9dfbha6r2yijjbrg2s4i2mkn6zn5616086550v3kpj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-cmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-cmd"; sha256 = "0pbz9fy9rjfpzspwq78ggf1wcvjslwvj8fvc05w4g56ydza0gqi4"; name = "term-cmd"; }; @@ -26575,7 +26834,7 @@ sha256 = "149pl3zxg5kriydk5h6j95jyly6i23w4w4g4a99s4zi6ljiny6c6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/term-run"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/term-run"; sha256 = "1bx3s68rgr9slsw9k01gfg7sxd4z7sarg4pi2ivril7108mhg2cs"; name = "term-run"; }; @@ -26596,7 +26855,7 @@ sha256 = "0gfsqpza8phvma5y3ck0n6p197x1i33w39m3c7jmja4ml121n73d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/termbright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/termbright-theme"; sha256 = "14q88qdbnyzxr8sr8i5glj674sb4150b9y6nag0dqrxs629is6xj"; name = "termbright-theme"; }; @@ -26617,7 +26876,7 @@ sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern"; sha256 = "1am97ssslkyijpvgk4nldi67ws48g1kpj6gisqzajrrlw5q93wvd"; name = "tern"; }; @@ -26638,7 +26897,7 @@ sha256 = "1kaymyihskmdav56xj85j04iq7a8948b1jgjfrv9s7pc965j9795"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-auto-complete"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-auto-complete"; sha256 = "1i99b4awph50ygcqsnppm1h48hbf8cpq1ppd4swakrwgmcy2mn26"; name = "tern-auto-complete"; }; @@ -26659,7 +26918,7 @@ sha256 = "0l63lzm96gg3ihgc4l671i342qxigwdbn4xfkbxnarb0206gnb5p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tern-django"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tern-django"; sha256 = "1pjaaffadaw8h2n7yv01ks19gw59dmh8bp8vw51hx1082r3yfvv0"; name = "tern-django"; }; @@ -26680,7 +26939,7 @@ sha256 = "1k0v56v7mwpb5p228c0g252szpxvpqswrmjfpk75kh32v56wp5xi"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/terraform-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/terraform-mode"; sha256 = "1m3s390mn4pba7zk17xfk045dqr4rrpv5gw63jm18fyqipsi6scn"; name = "terraform-mode"; }; @@ -26701,7 +26960,7 @@ sha256 = "108csr1d7w0105rb6brzgbksb9wmq1p573vxbq0miv5k894j447f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-case-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-case-mode"; sha256 = "1iba97yvbi5vr7gvc58gq2ah6jg2s7apc9ssq7mdzki823n8z2qi"; name = "test-case-mode"; }; @@ -26722,7 +26981,7 @@ sha256 = "004rd6jkaklsbgka9mf2zi5qzxsl2shwl1kw0vgb963xkmk9zaz8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-kitchen"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-kitchen"; sha256 = "1bl3yvj56dq147yplrcwphcxiwvmx5n97y4qpkm9imiv8cnjm1g0"; name = "test-kitchen"; }; @@ -26743,7 +27002,7 @@ sha256 = "08g7fan1y3wi4w7cdij14awadqss6prqg3k7qzf0wrnbm13dzhmk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/test-simple"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/test-simple"; sha256 = "1l6y77fqd0l0mh2my23psi66v5ya6pbr2hgvcbsaqjnpmfm90w3g"; name = "test-simple"; }; @@ -26764,7 +27023,7 @@ sha256 = "1a0fzn66gv421by0x6wj3z6bvzv274a9p8c2aaax0dskncl5lgk1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate"; sha256 = "119w944pwarpqzcr9vys17svy1rkfs9hiln8903q9ff4lnjkpf1v"; name = "textmate"; }; @@ -26785,7 +27044,7 @@ sha256 = "0fjapb7naysf34g4ac5gsa90b2s2ss7qgpyd9mfv3mdqrsp2dyw7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/textmate-to-yas"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/textmate-to-yas"; sha256 = "04agz4a41h0givfdw88qjd3c7pd418qyigsij4la5f37j5rh338l"; name = "textmate-to-yas"; }; @@ -26806,7 +27065,7 @@ sha256 = "09vf3qs949n4iqzd14iq2kgvypwdwdv8ii8l5jcqfppgspd8m8yd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/theme-changer"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/theme-changer"; sha256 = "1qbmsghkl5gs728q0gaalc7p8q7nzv3l045jc0jdxxnb7na3gc5w"; name = "theme-changer"; }; @@ -26827,7 +27086,7 @@ sha256 = "1srylw9wwkyq92f9v6ds9zp9z8sl800wbxjbir80g1lwv4hghaii"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/thrift"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/thrift"; sha256 = "0p1hxmm7gvhyigz8aylncgqbhk6cyf75rbcqis7x552g605mhiy9"; name = "thrift"; }; @@ -26848,7 +27107,7 @@ sha256 = "1vq5yp6pyjam2csz22mcp353a4d5r7f9m6bsjizfmgr2ld7bwhx7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timer-revert"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timer-revert"; sha256 = "0lvm2irfx9rb5psm1lf53fv2jjx745n1c172xmyqip5xwgmf6msy"; name = "timer-revert"; }; @@ -26861,15 +27120,15 @@ timesheet = callPackage ({ auctex, fetchFromGitHub, fetchurl, lib, melpaBuild, org, s }: melpaBuild { pname = "timesheet"; - version = "0.3.0"; + version = "0.4.0"; src = fetchFromGitHub { owner = "tmarble"; repo = "timesheet.el"; - rev = "354131b1216ccca51a68da74e9491b5518fd7820"; - sha256 = "0p7piqbhwxp2idslqnzl5x4y9aqgba9ryxrjy3d0avky5z9kappl"; + rev = "2ed6fea9b508eb7eaff659d9a34a09ba064d4df8"; + sha256 = "028d1sn29idznzsc95w2c1sdz3rpmf3vgk2365li0vvs99s51hi2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/timesheet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/timesheet"; sha256 = "1gy6bf4wqvp8cw2wjnrr9ijnzwav3p7j46m7qrn6l0517shwl506"; name = "timesheet"; }; @@ -26890,7 +27149,7 @@ sha256 = "16217i8rjhgaa5kv8iq0s14b42v5rs8m2qlr60a0x6qzy65chq39"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tox"; sha256 = "1z81x8fs5q6r19hpqphsilk8wdwwnfr8w78x5x298x74s9mcsywl"; name = "tox"; }; @@ -26910,7 +27169,7 @@ sha256 = "1pnsky541m8kzcv81w98jkv0hgajh04hxqlmgddc1y0wbvi849j0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/toxi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/toxi-theme"; sha256 = "032m3qbxfd0qp81qwayd5g9k7vz55g4yhw0d35qkxzf4qf58x9sd"; name = "toxi-theme"; }; @@ -26923,15 +27182,15 @@ tracking = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "tracking"; - version = "2.2"; + version = "2.3"; src = fetchFromGitHub { owner = "jorgenschaefer"; repo = "circe"; - rev = "13a33ea7b3cc579cbf67db2109802df3366e84d1"; - sha256 = "0lg7f71kdq3zzc85xp9p81vdarz6d6l5zy9175c67ps9smdx528i"; + rev = "9a4f3c9a554f99de0eb9e5f2b3e545b3e6390918"; + sha256 = "008fz7829mvjlid93hvs5xwwvigh5lnq2fxf2w9ghnw9lygkv5bq"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tracking"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tracking"; sha256 = "096h5bl7jcwz5hpbm2139bf8a784hijfy40vzf42y1c9794al46z"; name = "tracking"; }; @@ -26952,7 +27211,7 @@ sha256 = "0nsh2rz9w33m79rrr8nrz3g1wcgfrv7dc8q9g3s82ckj5g8gxfpr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/transmission"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/transmission"; sha256 = "0w0hlr4y4xpcrpvclqqqasggkgrwnzrdib51mhkh3f3mqyiw8gs9"; name = "transmission"; }; @@ -26973,7 +27232,7 @@ sha256 = "1jd7xsvs4m55fscp62a9lk59ip4sgifv4kazl55b7543nz1i31bz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/travis"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/travis"; sha256 = "1km496cq1vni9gy2d3z4c9524q62750ywz745rjz4r7178ip9mix"; name = "travis"; }; @@ -26983,6 +27242,27 @@ license = lib.licenses.free; }; }) {}; + trr = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + melpaBuild { + pname = "trr"; + version = "2.0.0"; + src = fetchFromGitHub { + owner = "kawabata"; + repo = "emacs-trr"; + rev = "7500ae0a05a3e26888949208afcd0185cc1b1404"; + sha256 = "0x1knf2jqkd1sdswv1w902jnlppih2yw6z028268nizl0c9q92yn"; + }; + recipeFile = fetchurl { + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/trr"; + sha256 = "068vqsyx8riqzfrmjk8wr81f68r2y2b6ymc2vvl6vka9rprvsfwr"; + name = "trr"; + }; + packageRequires = []; + meta = { + homepage = "https://melpa.org/#/trr"; + license = lib.licenses.free; + }; + }) {}; truthy = callPackage ({ fetchFromGitHub, fetchurl, lib, list-utils, melpaBuild }: melpaBuild { pname = "truthy"; @@ -26994,7 +27274,7 @@ sha256 = "18na22fhwqz80qinmnpsvp6ghc9irva1scixi6s4q6plmgr4m397"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/truthy"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/truthy"; sha256 = "1a56zmqars9fd03bkqzwpvgblq5fvq19n4jw04c4hpga92sq8wqg"; name = "truthy"; }; @@ -27015,7 +27295,7 @@ sha256 = "1ma3k9bbw427cj1n2gjajbqii482jhs2lgjggz9clpc21bn5wqfb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tss"; sha256 = "0d16x5r2xfy6mrwy0mqzpr9b3inqmyyxgawrxlfh83j1xb903dhm"; name = "tss"; }; @@ -27036,7 +27316,7 @@ sha256 = "060jksd9aamqx1n4l0bb9v4icsf7cr8jkyw0mbhgyz32nmxh3v6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ttrss"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ttrss"; sha256 = "08921cssvwpq33w87v08dafi2rz2rl1b3bhbhijn4bwjqgxi9w7z"; name = "ttrss"; }; @@ -27057,7 +27337,7 @@ sha256 = "0jpcjy2a77mywba2vm61knj26pgylsmv5a21cdp80q40bac4i6bb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tuareg"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tuareg"; sha256 = "0wx723dmjlpm86xdabl9n8p22zbbxpapyfn6ifz0b0pvhh49ip7q"; name = "tuareg"; }; @@ -27078,7 +27358,7 @@ sha256 = "0ihjjw5wxz5ybl3600k937pszw3442cijs4gbqqip9vhd5y9m8gy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tumble"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tumble"; sha256 = "1c9ybq0mb2a0pw15fmm13vfwcnr2h9fb1xsm5nrff1cg7913pgv9"; name = "tumble"; }; @@ -27099,7 +27379,7 @@ sha256 = "0asd024n5v23wdsg1959sszq568wg3a1bp4jrk0cllfji1z0n78y"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/tup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/tup-mode"; sha256 = "0pzpn1ljfcc2dl9fg7jc8lmjwz2baays4axjqk1qsbj0kqbc8j0l"; name = "tup-mode"; }; @@ -27120,7 +27400,7 @@ sha256 = "0glw5lns7hwp8jznnfm6dyjw454sv2n84gy07ma7s1q3yczhq5bc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twilight-anti-bright-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twilight-anti-bright-theme"; sha256 = "1qfybk5akaxdahmjffqaw712v8d7kk4jqkj3hzp96kys2zv1r6f9"; name = "twilight-anti-bright-theme"; }; @@ -27141,7 +27421,7 @@ sha256 = "193v98i84xybm3n0f30jin5q10i87vbcnbdhl4zqi7jij9p5v98z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/twittering-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/twittering-mode"; sha256 = "0v9ijxw5jazh2hc0qab48y71za2l9ryff0mpkxhr3f79irlqy0a1"; name = "twittering-mode"; }; @@ -27162,7 +27442,7 @@ sha256 = "1risfbsaafh760vnl4ryys91g4k78g0fxj2zlcndpxxv34gwkhy7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typed-clojure-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typed-clojure-mode"; sha256 = "1579zkhk2lwl5ij7dm9n2drggs5fmhpljrshc4ghhvig7nlyqjy3"; name = "typed-clojure-mode"; }; @@ -27175,15 +27455,15 @@ typit = callPackage ({ emacs, f, fetchFromGitHub, fetchurl, lib, melpaBuild, mmt }: melpaBuild { pname = "typit"; - version = "0.1.0"; + version = "0.2.0"; src = fetchFromGitHub { owner = "mrkkrp"; repo = "typit"; - rev = "bbb0e8d07dc4316d1d2bf028c32301aa72f25a17"; - sha256 = "0iqxii1i67hscsz2fdasj3ripc9xmyl49jzwxm92r3lg13am135a"; + rev = "0e5b374830e85a32b51a4cc8206df8e494378cb2"; + sha256 = "1jv5qmp3xs37py7d9aln4jn85j65h9pp5vb2dcmd8rlszhplsrng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typit"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typit"; sha256 = "05m7ymcq6fgbhh93ninrf3qi7csdnf2ahhf01mkm8gxxyaqq6m4n"; name = "typit"; }; @@ -27204,7 +27484,7 @@ sha256 = "1jhd4grch5iz12gyxwfbsgh4dmz5hj4bg4gnvphccg8dsnni05k2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/typo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/typo"; sha256 = "07hmqrnbxbrhcbxdls8i4786lkqmfr3hv6va41xih1lxj0mk60bx"; name = "typo"; }; @@ -27225,7 +27505,7 @@ sha256 = "0k41hwb6jgv3hngfrphlyhmfhvy4k05mvn0brm64xk7lj56y8q2c"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ubuntu-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ubuntu-theme"; sha256 = "160z59aaxb2v6c24nki6bn7pjm9r4jl1mgxs4h4sivzxkaw811s2"; name = "ubuntu-theme"; }; @@ -27246,7 +27526,7 @@ sha256 = "0qw9vwl1p0pjw1xmshxar1a8kn6gmin5rdvvnnly8b5z9hpkjf3m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ucs-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ucs-utils"; sha256 = "111fwg2cqqzpa79rcqxidppb12c8g12zszppph2ydfvkgkryb6z2"; name = "ucs-utils"; }; @@ -27267,7 +27547,7 @@ sha256 = "06qcvbp5rd0kh3ibrxj5p6r578lwsrgd7yj5c6slwmkdmna2fj33"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/undercover"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/undercover"; sha256 = "1s30c3i6y4r3mgrrs3lda3rrwmy9ff11ihdmshyziv9v5879sdjf"; name = "undercover"; }; @@ -27288,7 +27568,7 @@ sha256 = "1g1ldyz42q3i2xlgvhd4s93cvkh0fm8m3l344zjcw8rvqaisyphj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/underwater-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/underwater-theme"; sha256 = "0ab2bcqfdi9ml3z9d511pbfwcbp8hkkd36xxp61k36gkyi3acvlr"; name = "underwater-theme"; }; @@ -27309,7 +27589,7 @@ sha256 = "1qy0q1fp7cmvmxynqrb086dkb727lmk5h1k98y14j75b94ilpy0w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unfill"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unfill"; sha256 = "0b21dk45vbz4vqdbdx0n6wx30rm38w1jjqbsxfj7b96p3i5shwqv"; name = "unfill"; }; @@ -27330,7 +27610,7 @@ sha256 = "0n06dvf6r7qblz8vz38qc37xrn29wa1c0jyzis1qw9zzf6hmmzj7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-enbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-enbox"; sha256 = "1phb2qq3pg6z6bl96kl9yfq4jxhgardjpaa4lhgqbxymmqdm7gzv"; name = "unicode-enbox"; }; @@ -27351,7 +27631,7 @@ sha256 = "0fbwncna6gxlynq9196djpkjhayzk8kxlsxg0gasdgqx1nyxl0mk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-fonts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-fonts"; sha256 = "0plipwb30qqay8691qzqdyg6smpbs9dsxxi49psb8sq0xnxl84q3"; name = "unicode-fonts"; }; @@ -27378,7 +27658,7 @@ sha256 = "0qy1hla7vf674ynqdzsaw2cnk92nhpcimww5q94rc0a95pzw64wd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-progress-reporter"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-progress-reporter"; sha256 = "03z7p27470fqy3gd356l9cpp44a35sfrxz94dxmx388rzlygk7y7"; name = "unicode-progress-reporter"; }; @@ -27399,7 +27679,7 @@ sha256 = "0q7cbl89yg3fjxaxsqsksxhw7ibdslbb004z5y1m579n7zgcrljy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unicode-whitespace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unicode-whitespace"; sha256 = "1b3jgha8va42b89pdp41sab2w9wllp7dicqg4lxl67bg6wn147wy"; name = "unicode-whitespace"; }; @@ -27420,7 +27700,7 @@ sha256 = "1vbx10s2zmhpxjg26ik947bcg9f7w3g2w45wmm0shjp743fsdq8p"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unify-opening"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unify-opening"; sha256 = "1gpmklbdbmv8va8d3yr94r1ydkcyvdzcgxv56rp0bxwbcgmk0as8"; name = "unify-opening"; }; @@ -27441,7 +27721,7 @@ sha256 = "1w2w0gmyr0nbq8kv3ldj30h9xma76gi1khbdia1y30kss677rr8m"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/unkillable-scratch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/unkillable-scratch"; sha256 = "0ghbpa9pf7k6vd2mjxkpqg2qfl4sd40ir6mrk1rxr1rv8s0afkf7"; name = "unkillable-scratch"; }; @@ -27462,7 +27742,7 @@ sha256 = "07vwg0bg719gb8ln1n5a33103903vvrphnkbvvfn43904pkrf14w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/use-package"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/use-package"; sha256 = "0z7k77yfvsndql719qy4vypnwvi9izal8k8vhdx0pw8msaz4xqd8"; name = "use-package"; }; @@ -27483,7 +27763,7 @@ sha256 = "17p3cwjxdvp0v3n8fiib7hgl07z2iqi1qwlff0g3zwf4rr6kxgqy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/utop"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/utop"; sha256 = "0lv16kl29gc9hdcpn04l85pf7x93vkl41s4mgqp678cllzyr0cq7"; name = "utop"; }; @@ -27504,7 +27784,7 @@ sha256 = "0z53n9qsglp87f6q1pa3sixrjni9k46j31zg15gcwrmflmfrw8ds"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/uzumaki"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/uzumaki"; sha256 = "1fvhzz2qpyc819rjvzyf42jmb70hlg7a9ybqwi81w7rydpabg61q"; name = "uzumaki"; }; @@ -27525,7 +27805,7 @@ sha256 = "1661fwfx2gpxjriy3ngi9raz8c2kkk3rgg51irdi591jr2zqmw6s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vagrant"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vagrant"; sha256 = "0g6sqzsx3lixcn09fkxhhcfp45qnqgf1ms0l7nkzyljavb7151cf"; name = "vagrant"; }; @@ -27546,7 +27826,7 @@ sha256 = "19j5q2f6pybvjq3ryjcyihzlw348hqyjhfcy3qflry6w786dqcgn"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vbasense"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vbasense"; sha256 = "1440q2bi4arpl5lbqh7zscg7v3884clqx54p2fdfcfkz47ky4z9n"; name = "vbasense"; }; @@ -27567,7 +27847,7 @@ sha256 = "07dx3dyvkwcin0gb6j4jx0ldfxs4rqhygl56a8i81yy05adkaq2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vcomp"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vcomp"; sha256 = "02cj2nlyxvgvl2rjfgacljvcsnfm9crmmkhcm2pznj9xw10y8pq0"; name = "vcomp"; }; @@ -27588,7 +27868,7 @@ sha256 = "034475m2d2vlrlc2l88gdx0ga3krsdh08wkjxwnbb2dfyz3p8r9v"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vdirel"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vdirel"; sha256 = "11cc7bw7x5h3bwnlsjyhw6k5fh2fk7wffarrcny562v4cmr013cj"; name = "vdirel"; }; @@ -27609,7 +27889,7 @@ sha256 = "0lzq31zqnk32vfp3kicnvgfr3nkv8amjzxmk9nrz1kwgmq7gvkjk"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vector-utils"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vector-utils"; sha256 = "07armr23pq5pd47lqhir6a59r86c84zikbc51d8vfcaw8y71yr5n"; name = "vector-utils"; }; @@ -27630,7 +27910,7 @@ sha256 = "1yk7qqg8i3970kpfk34wvi0gh16qf0b0sfnf18g3s21dd4gk5a6g"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vertigo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vertigo"; sha256 = "0x0wy1z601sk1x96bl2xx18qm4avd77iybq1a3ss8x8ykwqlgf83"; name = "vertigo"; }; @@ -27651,7 +27931,7 @@ sha256 = "0ggblkaz214vl1j4i5gv5qj2q6ahnr0k3c3l9sd0w5vdkbw8n5jb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vhdl-tools"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vhdl-tools"; sha256 = "006d9xv60a90xalagczkziiimwsr1np9nn25zvnc4nlbf8j3fbbw"; name = "vhdl-tools"; }; @@ -27672,7 +27952,7 @@ sha256 = "1750gx65ymibam8ahx5blfv5jc26f3mzbklk1jrmfwpsalyghdd9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vim-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vim-region"; sha256 = "1dcnx799lpjsdnnjxqzgskkfj2nx7f4kwf0xjhbg35ny4nyn81dx"; name = "vim-region"; }; @@ -27693,7 +27973,7 @@ sha256 = "1f94qx8rbnn21cl0grxqa9gzkbrz68vmqsihv8vvi8qf1c1dmd0i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimgolf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimgolf"; sha256 = "1hvw2pfa5a984hm6wd33bf6zz6hmlprc6qs3g789dfx91qm890vn"; name = "vimgolf"; }; @@ -27714,7 +27994,7 @@ sha256 = "01wxjvbq3i1ji9fpff7fbk20pzmr52z6fycqfi7malgwq05is1bm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vimish-fold"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vimish-fold"; sha256 = "017by9w53d8pqlsazfycmhdv16yylks308p5vxp1rcw2qacpc5m3"; name = "vimish-fold"; }; @@ -27735,7 +28015,7 @@ sha256 = "15zdbvv6c114mv6hdq375l7ax70sss06p9d7m86hgssc3kiv9vsv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visible-mark"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visible-mark"; sha256 = "1rp0gnz28m1drwb1hhsf0mwxzdppdi88hscf788qw8cw65gckv80"; name = "visible-mark"; }; @@ -27756,7 +28036,7 @@ sha256 = "02msgb2dh3b5ki6v2bg39l2x93amvmaxg6v57kmyl80x27h00vx9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/visual-fill-column"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/visual-fill-column"; sha256 = "19y0pwaybjal2rc7migdbnafpi4dfbxvrzgfqr8dlvd9q68v08y5"; name = "visual-fill-column"; }; @@ -27777,7 +28057,7 @@ sha256 = "0vl0hwxzzvgna8sysf517qq08fi1zsff3dmcgwvsgzhc47sq8mng"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/vlf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/vlf"; sha256 = "1ipkv5kmda0l39xwbf7ns9p0mx3kb781mxsm9vmbkhr5x577s2j8"; name = "vlf"; }; @@ -27798,7 +28078,7 @@ sha256 = "0q1rwqjwqcnsr57s531pwlm464q8wx5vvdm5rj2xy9b3yi6phis1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/voca-builder"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/voca-builder"; sha256 = "0mbw87mpbb8rw7xzhmg6yjla2c80x9820kw4q00x00ny5rbhm76y"; name = "voca-builder"; }; @@ -27819,7 +28099,7 @@ sha256 = "1v0chqj5jir4685jd8ahw86g9zdmi6xd05wmzhyw20rbk924fcqf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/volatile-highlights"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/volatile-highlights"; sha256 = "1r6in919aqdziv6bgzp4k7jqa87bd287pacq615sd5m1nzva1a4d"; name = "volatile-highlights"; }; @@ -27840,7 +28120,7 @@ sha256 = "0jl3n79wmbxnrbf83qjq0v5pzhvv67i9r5sp2zj8nc86hh7dvjsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wacspace"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wacspace"; sha256 = "1xy0mprvyi37zmgj1yrlh5ni08j47lpag1jm3a76cgghgmlfjxrl"; name = "wacspace"; }; @@ -27861,7 +28141,7 @@ sha256 = "1nx7cr7d4qmzwbvp59kc8139nzc965ibc9vf7afrz8z2h5qg4d4l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wandbox"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wandbox"; sha256 = "0myyln82nx462bj79acvqxwvmblxild4vbygcrzw5chcwy6crvlz"; name = "wandbox"; }; @@ -27882,7 +28162,7 @@ sha256 = "0mnfk2ys8axjh696cq5msr5cdr91icl1i3mi0dd2y00lvh6sbm7w"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-goal-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-goal-mode"; sha256 = "0l3gh96njjldp7n13jn1zjrp17h7ivjak102j6wwspgg6v2h5419"; name = "wc-goal-mode"; }; @@ -27903,7 +28183,7 @@ sha256 = "0kzs256ymhdrqzva32j215q9fl66n9571prb7mi6syx1vpk7m3lw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wc-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wc-mode"; sha256 = "191dmxfpqnj7d43cr0fhdmj5ldfs7w9zg5pb2lv9wvlfl7asdid6"; name = "wc-mode"; }; @@ -27924,7 +28204,7 @@ sha256 = "113prlamr2j6y6n0w43asffawwa4qiq63mgwm85v04h6pr8bd90l"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wcheck-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wcheck-mode"; sha256 = "0cmdvhgax6r5svn3wkwll4j271qj70g8182c58riwnkhiajxmn3k"; name = "wcheck-mode"; }; @@ -27945,7 +28225,7 @@ sha256 = "0qx92jqzsimjk92pql2h8pzhq66mqijwqgjqwp7rmq5b6k0nvx1z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weather-metno"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weather-metno"; sha256 = "0h7p4l8y75h27pgk45f0mk3gjd43jk8q97gjf85a9b0afd63d3f6"; name = "weather-metno"; }; @@ -27966,7 +28246,7 @@ sha256 = "0zpvs9yc2gxfmm0x0majhzxc0b0vmm6p6pxh92h8iq3pmr0di8yj"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-beautify"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-beautify"; sha256 = "06ky2svhca8hjgmvxrg3h6ya7prl72q1r88x967yc6b0qq3r7g0f"; name = "web-beautify"; }; @@ -27987,7 +28267,7 @@ sha256 = "19nzjgvd2i5745283ck3k2vylrr6lnk9h3ggzwrwdhyd3m9433vm"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-completion-data"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-completion-data"; sha256 = "1zzdmhyn6bjaidk808s4pdk25a5rn4287949ps5vbpyniaf6gny9"; name = "web-completion-data"; }; @@ -28008,7 +28288,7 @@ sha256 = "1cs9ldj2qckyynwxzvbd5fmniis6mhprdz1wvvvpjs900bbc843s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/web-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/web-mode"; sha256 = "1vyhyc5nf4yj2m63inpwmcqvlsihaqw8nn8xvfdg44nhl6vjz97i"; name = "web-mode"; }; @@ -28028,7 +28308,7 @@ sha256 = "1z7ld9d0crwdh778fyaapx75vpnlnslsh9nf07ywkylhz4w68yyv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weblogger"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weblogger"; sha256 = "189zs1321rybgi4zihps7d2jll5z13726jsg5mi7iycg85nkv2fk"; name = "weblogger"; }; @@ -28049,7 +28329,7 @@ sha256 = "0vg3w18xj6i320jsivsml3mi1fdxr8dgxmn7qy2780ajy5ndxnw1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weechat"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weechat"; sha256 = "0sxrms5024bi4irv8x8s8j1zcyd62cpqm0zv4dgpm65wnpc7xc46"; name = "weechat"; }; @@ -28070,7 +28350,7 @@ sha256 = "14vmgfz45wmpjfhfx3pfjn3bak8qvj1zk1w4xc5w1cfl6vnij6hv"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/weibo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/weibo"; sha256 = "1ndgfqqb0gvy8p2fisi57s9bsa2nrnv80smg78m89i4cwagbz6yd"; name = "weibo"; }; @@ -28091,7 +28371,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep"; sha256 = "09xs420lvbsmz5z28rf6f1iwa0ixkk0w24qbj6zhl9hidh4mv9y4"; name = "wgrep"; }; @@ -28112,7 +28392,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ack"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ack"; sha256 = "03l1a681cwnn06m77xg0a547892gy8mh415v9rg3h6lkxwcld8wh"; name = "wgrep-ack"; }; @@ -28133,7 +28413,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-ag"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-ag"; sha256 = "1b2mj06kws29ha7g16l5d1s3p3nwyw8rprbpaiijdk9nxqcm0a8a"; name = "wgrep-ag"; }; @@ -28154,7 +28434,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-helm"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-helm"; sha256 = "1hh7isc9xifkrdfw88jw0z0xmfazrbcis6d355bcaxlnjy6fzm8b"; name = "wgrep-helm"; }; @@ -28175,7 +28455,7 @@ sha256 = "075z0glain0dp56d0cp468y5y88wn82ab26aapsrdzq8hmlshwn4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wgrep-pt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wgrep-pt"; sha256 = "1gphdf85spsywj3s3ypb7dwrqh0zd70n2vrbgjqkbnfbwqjp9qbg"; name = "wgrep-pt"; }; @@ -28188,15 +28468,15 @@ which-key = callPackage ({ emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "which-key"; - version = "1.1.10"; + version = "1.1.12"; src = fetchFromGitHub { owner = "justbur"; repo = "emacs-which-key"; - rev = "484f4ff9a733838cda6105a3c02e0ae574ed8697"; - sha256 = "050ql42hkv4ffannd0khlcw8p1nhn3jl17qvigdqshrn81v5x4vq"; + rev = "13316578c8483740ecfe97f9f069fc364e4f97d9"; + sha256 = "0i25y5j5qwmj3v3cd16v1c81y5bwhgar379bjy4052mfm870b90d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/which-key"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/which-key"; sha256 = "0vqbhfzcv9m58w41zdhpiymhgl38n15c6d7ffd99narxlkckcj59"; name = "which-key"; }; @@ -28217,7 +28497,7 @@ sha256 = "01fwhrfi92pcrwc4yn03pflc9wj07mhzj0a0i5amar4f9bj6m5b4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitaker"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitaker"; sha256 = "17fnvb3jh6fi4wddn5qnp6i6ndidg8jf9ac69q9j032c2msr07nj"; name = "whitaker"; }; @@ -28238,7 +28518,7 @@ sha256 = "0xmwhybb8x6wwfr55ym5xg4dhy1aqx1abxy9qskn7h3zf1z4pgg2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whitespace-cleanup-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whitespace-cleanup-mode"; sha256 = "1fhdjrxxyfx4xsgfjqq9p7vhj98wmqf2r00mv8k27vdaxwsnm5p3"; name = "whitespace-cleanup-mode"; }; @@ -28259,7 +28539,7 @@ sha256 = "0ip0vkqb4dm88xqzgwc9yaxzf4sc4x006m6z73a3lbfmrncy2c1d"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/whole-line-or-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/whole-line-or-region"; sha256 = "1vs2i4cy1zc6nj660i9h36jbfgc3kvqivjnzlq5zwlxk5hcibqa1"; name = "whole-line-or-region"; }; @@ -28280,7 +28560,7 @@ sha256 = "0fqv63m8z5m5ghh4j8ccdnmgcdkvi4jqpg9z7lp17g4p9pq3xfjf"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/widget-mvc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/widget-mvc"; sha256 = "0njzvdlxb7z480r6dvmksgivhz7rvnil517aj86qx0jbc5mr3l2f"; name = "widget-mvc"; }; @@ -28301,7 +28581,7 @@ sha256 = "1kqcc1d56jz107bswlzvdng6ny6qwp93yck2i2j921msn62qvbb2"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wiki-nav"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wiki-nav"; sha256 = "19mabz0y3fcqsm68ijwwbbqylxgp71anc0a31zgc1blha9jivvwy"; name = "wiki-nav"; }; @@ -28322,7 +28602,7 @@ sha256 = "0ib20zl8l1fs69ca9rry27qz69sgf6ws1ca5nhm5llvpkjcgv53i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/win-switch"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/win-switch"; sha256 = "1s6inp5kf763rngn58r02fd7n7z3dd55j6hb7s9dgvc856d5z3my"; name = "win-switch"; }; @@ -28343,7 +28623,7 @@ sha256 = "049bwa5g0z1b9nrsc1vc4511aqcq9fvl16xg493wj651g6q9qigb"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-end-visible"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-end-visible"; sha256 = "1p78n7yysj18404cdc6vahfrzwn5pixyfnja8ch48rj4fm4jbxwq"; name = "window-end-visible"; }; @@ -28364,7 +28644,7 @@ sha256 = "0jyymmbz03zj2ydca1rv6ra0b2brjl7pyl4897zd00j5kvqjdyif"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-layout"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-layout"; sha256 = "1n4a6z00lxsffirjrmbaaw432w798b9vv34qawgn1k17y9l7gb85"; name = "window-layout"; }; @@ -28385,7 +28665,7 @@ sha256 = "1rz2a1l3apavsknlfy0faaivqgpj4x9jz3hbysbg9pydpcwqgf64"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-numbering"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-numbering"; sha256 = "0x3n0ni16q69lfpyjz61spqghmhvc3cwa4aj80ihii3pk80f769x"; name = "window-numbering"; }; @@ -28406,7 +28686,7 @@ sha256 = "1xjs51wm5ydcqdwvg3c42c5z4j92q75lmk895qkka7ayy5spxxf7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/window-purpose"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/window-purpose"; sha256 = "1ib5ia7armghvmcw8qywcil4nxzwwakmfsp7ybawb0xr53h1w96d"; name = "window-purpose"; }; @@ -28427,7 +28707,7 @@ sha256 = "1f4v0xd341qs4kfnjqhgf8j26valvg6pz4rwcz0zj0s23niy2yil"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/windsize"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/windsize"; sha256 = "1xhfw77168942rcn246qndii0hv0q6vkgzj67jg4mxh8n46m50m9"; name = "windsize"; }; @@ -28447,7 +28727,7 @@ sha256 = "1nfyi9grkl9vhf8rs6r53g5f1p2wsk5jggw0m4i3z60yfflmkqi7"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wisp-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wisp-mode"; sha256 = "10zkp1qbvl8dmxij7zz4p1fixs3891xr1nr57vyb3llar9fgzglc"; name = "wisp-mode"; }; @@ -28468,7 +28748,7 @@ sha256 = "188h1sy4mxzrkwi3zgiw108c5f71rkj5agdkf9yy9v8c1bkawm4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wispjs-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wispjs-mode"; sha256 = "0qzm0dcvjndasnbqpkdc56f1qv66gxv8dfgfcwq5l1bp5wyx813p"; name = "wispjs-mode"; }; @@ -28489,7 +28769,7 @@ sha256 = "0rzq2fbz523fyy2p6ddx9iws89sfgw3pwillw8yz965f3hxx3dj3"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/with-editor"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/with-editor"; sha256 = "1wsl1vwvywlc32r5pcc9jqd0pbzq1sn4fppxk3vwl0s5h40v8rnb"; name = "with-editor"; }; @@ -28510,7 +28790,7 @@ sha256 = "0nmzh6dynbm8vglp4pqz81s2z68jbnasvamvi1x1iawf8g9zfyix"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wn-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wn-mode"; sha256 = "1qy1pkfdnm4pska4cnff9cx2c812ilymajhpmsfc9jdbvhzwrwg3"; name = "wn-mode"; }; @@ -28531,7 +28811,7 @@ sha256 = "018r35dz8z03wcrx9s28pjisayy21549i232mp6wy9mxkrkxbzpc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wonderland"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wonderland"; sha256 = "1b4p49mbzqffm2b2y8sbbi56vnkxap2jscsmla9l6l8brybqjppi"; name = "wonderland"; }; @@ -28552,7 +28832,7 @@ sha256 = "0s3mjmfjiidn3spklndw0dvcwbb9x034xyphp60aad8vjaflbchs"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wordsmith-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wordsmith-mode"; sha256 = "1570h1sjjaks6bnhd4xrbx6nna4v7hz6dmrzwjq37rwvallasg1n"; name = "wordsmith-mode"; }; @@ -28573,7 +28853,7 @@ sha256 = "0l2n3vwk251ba06xdrs9z0bp4ligfdjd259a84ap2z3sqdfa98x4"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/worf"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/worf"; sha256 = "1fkb2ddl684dijsb0cqgmfbg1nz4xv43rb7g5rah05rchy5sgkpi"; name = "worf"; }; @@ -28594,7 +28874,7 @@ sha256 = "03hjwm51sngkh7jjiwnqhflllqq6i99ib47rm2ja9ii0qyhj1qa0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wrap-region"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wrap-region"; sha256 = "058518smxj3j3mr6ljzh7c9x5g23d24104p58sl9nhpw0cq9k28i"; name = "wrap-region"; }; @@ -28615,7 +28895,7 @@ sha256 = "1nnjn1r669hvvzfycllwap4w04m8rfsk4nzcg8057m1f263kj31b"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writegood-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writegood-mode"; sha256 = "1lxammisaj04g5vr5lwms64ywf39w8knrq72x4i94wwzwx5ywi1d"; name = "writegood-mode"; }; @@ -28636,7 +28916,7 @@ sha256 = "11a3h5v7knj8y360cxin59c1ipd9y4qsqlanrw69yb5k4816ayyr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/writeroom-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/writeroom-mode"; sha256 = "1kpsrp3agw8bg3qbf5rf5k1a7ww30q5xsa8z5ywxajsaywjzx1bk"; name = "writeroom-mode"; }; @@ -28657,7 +28937,7 @@ sha256 = "1lv0l27lrp6xyl0c5yhlnyjwx872izq02z8x34da9jv3walxpk8f"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ws-butler"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ws-butler"; sha256 = "072k67z2lx0ampwzdiszi64xs0w6frp4nbmrd2r0wpx0pd211vbn"; name = "ws-butler"; }; @@ -28678,7 +28958,7 @@ sha256 = "1ibvcc54y2w72d3yvcczvzywribiwmkhlb1b08g4pyb1arclw393"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wsd-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wsd-mode"; sha256 = "07vclmnj18wx9wlrcnsl99f9jlk3sb9g6pcdv8x1smk84gccpakc"; name = "wsd-mode"; }; @@ -28699,7 +28979,7 @@ sha256 = "0mbc3ndggv2rbmfcfhw8bsx3qw6jy684hxz5dqa88lfb6vs5knzc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/wttrin"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/wttrin"; sha256 = "0msp8lja9nz6khz3dkasv8hnhkaayqxd7m58kma03hpkcjxnaxil"; name = "wttrin"; }; @@ -28712,15 +28992,15 @@ x86-lookup = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "x86-lookup"; - version = "1.0.0"; + version = "1.1.0"; src = fetchFromGitHub { owner = "skeeto"; repo = "x86-lookup"; - rev = "cac42bd9f27bff92e0b1cf6fb20563061885239f"; - sha256 = "13id1vf590gc0kwkhh6mgq2gj2bra2kycxjlvql7v0s7cdvamjhq"; + rev = "7a2f43908985590ab8b904004cd4c41e341216be"; + sha256 = "0fks0bnil7m4m56k267f0awqnyq3vr2ywd81rsmbk1154g3acndc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/x86-lookup"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/x86-lookup"; sha256 = "1clv1npvdkzsy0a08xrb880yflwzl4d5cc2c5xrs7b837mqpj8hd"; name = "x86-lookup"; }; @@ -28741,7 +29021,7 @@ sha256 = "154xnfcmil9xjjmq4cyrfpir4ga4mgcmmbd7dja1m7rpk1734xk6"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xbm-life"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xbm-life"; sha256 = "1pglxjd4cs630sayx17ai1xflpbyj3hry3156682bgwhqs1vw68q"; name = "xbm-life"; }; @@ -28762,7 +29042,7 @@ sha256 = "0xqw0yhm08alaaqma3ymnihzyp2wg0hxsjzmrb2vmak5q1qqnkrp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xcscope"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xcscope"; sha256 = "06xh29cm5v3b5xwj32y0i0h0kvvy995840db4hvab2wn9jw68m8w"; name = "xcscope"; }; @@ -28783,7 +29063,7 @@ sha256 = "0p9p3w8i5w1pzh3y3yxz0rg5gywfq4m5anbiyrdn84vdd42jij4x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xkcd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xkcd"; sha256 = "1r88yhs8vnkak8xl16vw3xdpm7ncz4ydkml8932bqk8xix8l8f0w"; name = "xkcd"; }; @@ -28804,7 +29084,7 @@ sha256 = "0g52bmamcd54acyk6i47ar5jawad6ycvm9g656inb994wprnjin9"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xml-rpc"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xml-rpc"; sha256 = "14r6xgnpqsb2jlv52vgrhqf3qw8a6gmdyap3ylhilyxw71lxf1js"; name = "xml-rpc"; }; @@ -28825,7 +29105,7 @@ sha256 = "1yy759qc4njc8bqh8hmgc0mq5vk5spz5syxgflqhjijk8nrvyfgl"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xquery-tool"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xquery-tool"; sha256 = "069injmvv9zzcbqbms94qx5wjj740jnik6sf3b4xjhln7z1yskp0"; name = "xquery-tool"; }; @@ -28846,7 +29126,7 @@ sha256 = "1kmlya0bwgm2krwc6j4gp80579sf5azz08l8d7pydw69rckv6ji0"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xref-js2"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xref-js2"; sha256 = "1mfyszdi1wx2lqd9fyqm0ra227dcsjs8asc1dw2li0alwh7n4xs3"; name = "xref-js2"; }; @@ -28867,7 +29147,7 @@ sha256 = "1zdj4664gvwc4kyx7fx5232l3c5anm0xyrrnrw596q604q6xxj2x"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xterm-color"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xterm-color"; sha256 = "0bvzi1mkxgm4vbq2va1sr0k9h3fdmppq79hkvbizc2xgk72sazpj"; name = "xterm-color"; }; @@ -28888,7 +29168,7 @@ sha256 = "1wqx6hlqcmqiljydih5fx89dw06g8w728pyn4iqsap8jwgjngb09"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/xtest"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/xtest"; sha256 = "1vbs4sb4frzg8d3l96ip9cc6lc86nbj50vpdfqazvxmdfd1sg4i7"; name = "xtest"; }; @@ -28909,7 +29189,7 @@ sha256 = "1rplafm6mldsirj7xg66vsx03n263yii3il3fkws69xmv7sx1a6i"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yafolding"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yafolding"; sha256 = "1z70ismfwmh9a83a7h5lbhw7iywfib5fis7y8gx8020wfjq9g2yq"; name = "yafolding"; }; @@ -28930,7 +29210,7 @@ sha256 = "0l9b888wv72j4hhkcfzsh09iqjxp2qjbjcjcfmvfhxf7il11pv8h"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yagist"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yagist"; sha256 = "1mz86fq0pb4w54c66vd19m2492mkrzq2qi6ssnn2xwmn8vv02wdd"; name = "yagist"; }; @@ -28951,7 +29231,7 @@ sha256 = "1mj1gwrflpdlmc7wl1axygn1jqlrjys1dh3cpdh27zrgsjvhd6c1"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaml-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaml-mode"; sha256 = "0afp83xcr8h153cayyaszwkgpap0iyk351dlykmv6bv9d2m774mc"; name = "yaml-mode"; }; @@ -28972,7 +29252,7 @@ sha256 = "007837w6gd7k253h7g2in6l3ihcbwv733yiffs26pnymgk21xdqz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yascroll"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yascroll"; sha256 = "11g7wn4hgdwnx3n7ra0sh8gk6rykwvrg9g2cihvcv7mjbqgcv53f"; name = "yascroll"; }; @@ -28993,7 +29273,7 @@ sha256 = "0yiglsb1s9ni4xig05ysw75l0ndjgdyhzip7c0sdxb265p3yrfby"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yasnippet"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yasnippet"; sha256 = "1j6hcpzxljz1axh0xfbwr4ysbixkwgxawsvsgicls8r8kl2xvjvf"; name = "yasnippet"; }; @@ -29014,7 +29294,7 @@ sha256 = "1yplaj7pry43qps8hvqxj9983ah4jvaiq94l171a7f8qi28386s8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatemplate"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatemplate"; sha256 = "05gd9sxdiqpw2p1kdagwgxd94wiw1fmmcsp9v4p74i9sqmf6qn6q"; name = "yatemplate"; }; @@ -29033,7 +29313,7 @@ sha256 = "08iwfpsjs36pqr2l85avxhsjx8z0sdfw8cqwwf3brn7i4x67f7z5"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yatex"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yatex"; sha256 = "17np4am7yan1bh4706azf8in60c41158h3z591478j5b1w13y5a6"; name = "yatex"; }; @@ -29054,7 +29334,7 @@ sha256 = "0nqyn1b01v1qxv7rcf46qypca61lmpm8d7kqv63jazw3n05qdnj8"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yaxception"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yaxception"; sha256 = "18n2kjbgfhkhcwigxmv8dk72jp57vsqqd20lc26v5amx6mrhgh58"; name = "yaxception"; }; @@ -29075,7 +29355,7 @@ sha256 = "094alkjrh285qy3sds8dkvxsbnaxnppz1ab0i5r575lyhli9lxia"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/ycmd"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/ycmd"; sha256 = "10jqr6xz2fnrd1ihips9jmbcd28zha432h4pxjpswz3ivwjqhxna"; name = "ycmd"; }; @@ -29096,7 +29376,7 @@ sha256 = "0yvz7lmid4jcikb9jmc7h2lcry3fdyy809k25nyasj2bk41xqqsd"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yesql-ghosts"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yesql-ghosts"; sha256 = "1hxzbnfd15f0ifdqjbw9nhxd0z46x705v2bc0xl71nav78fgpswf"; name = "yesql-ghosts"; }; @@ -29117,7 +29397,7 @@ sha256 = "19a47780h0x1rdicr8i7356kvamkbkcwp31skdpp5cxgysvi3d9s"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/yoshi-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/yoshi-theme"; sha256 = "1kzdjs3rzg9rxrjgsk0wk75rwvbip6ixg1apcxv2c1a6biqqf2hv"; name = "yoshi-theme"; }; @@ -29138,7 +29418,7 @@ sha256 = "0016qff7hdnd0xkyhxakfzzscwlwkpzppvc4wxfw0iacpjkz1fnr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/youdao-dictionary"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/youdao-dictionary"; sha256 = "1qfk7s18br9jask1bpida0cjxks098qpz0ssmw8misi3bjax0fym"; name = "youdao-dictionary"; }; @@ -29159,7 +29439,7 @@ sha256 = "1n7ka608lk0xp7vg4zcw282zna0cwvcwvmhic6ym1ag7lq5cjrhc"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zenburn-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zenburn-theme"; sha256 = "1kb371j9aissj0vy07jw4ydfn554blc8b2rbi0x1dvfksr2rhsn9"; name = "zenburn-theme"; }; @@ -29180,7 +29460,7 @@ sha256 = "1kdsyki7i7x0ypq0iabdv1bnx0gd45acqcixvrxi3rf9j4chyvls"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zerodark-theme"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zerodark-theme"; sha256 = "1nqzswmnq6h0av4rivqm237h7ghp7asa2nvls7nz4ma467p9qhp9"; name = "zerodark-theme"; }; @@ -29201,7 +29481,7 @@ sha256 = "1ksjd3askc3k1l0b3nia5mzkxa74bidh2x0xlrj4qs4im5445vnz"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zombie-trellys-mode"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zombie-trellys-mode"; sha256 = "19xzvppw7f35s82hm0y7sga8dyjjyy0dxy6vji4hxdpjziz7lggv"; name = "zombie-trellys-mode"; }; @@ -29222,7 +29502,7 @@ sha256 = "1lrgirfvcvbir7csshkhhwj99jj1x5aprhw7xfiicv7nan9m6gjy"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zone-nyan"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zone-nyan"; sha256 = "165sgjaahz038isii971m02hr2g5iqhbhiwf5kdn8c739cjaa17b"; name = "zone-nyan"; }; @@ -29232,22 +29512,22 @@ license = lib.licenses.free; }; }) {}; - zoom-window = callPackage ({ fetchFromGitHub, fetchurl, lib, melpaBuild }: + zoom-window = callPackage ({ cl-lib ? null, emacs, fetchFromGitHub, fetchurl, lib, melpaBuild }: melpaBuild { pname = "zoom-window"; - version = "0.2"; + version = "0.4"; src = fetchFromGitHub { owner = "syohex"; repo = "emacs-zoom-window"; - rev = "d92dcf265170cf8ea0294d1aaf2e6025eda228e6"; - sha256 = "1dwf3980rnwc85s73j8accwgpcdhsa6fqdrppbrqb8f7c05q8303"; + rev = "f0eb12e389d8d2d13b5911907ef872e18230e00e"; + sha256 = "13393bd5lqpbv7m3p6ihg0ghx1w4w6mrnybx4m8hcfvcn17dr3hw"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zoom-window"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zoom-window"; sha256 = "0l9683nk2bdm49likk9c55c23qfy6f1pn04drqwd1vhpanz4l4b3"; name = "zoom-window"; }; - packageRequires = []; + packageRequires = [ cl-lib emacs ]; meta = { homepage = "https://melpa.org/#/zoom-window"; license = lib.licenses.free; @@ -29264,7 +29544,7 @@ sha256 = "0j6x3az8vpq2ggafjxdl8x3ln7lhh58c27z72mwywp4a2ca1g496"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zop-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zop-to-char"; sha256 = "0jnspvqqvnaplld083j7cqqxw122qazh88ab7hymci36m3ka9hga"; name = "zop-to-char"; }; @@ -29285,7 +29565,7 @@ sha256 = "0qwdbzfi8mddmchdd9ab9ms1ynlc8dx08i6g2mf3za1sbcivdqsr"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotelo"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotelo"; sha256 = "0y6s5ma7633h5pf9zj7vkazidlf211va7nk47ppb1q0iyfkyln36"; name = "zotelo"; }; @@ -29306,7 +29586,7 @@ sha256 = "0qksa67aazs9vx7v14nlakr34z6l0h6mhfzi2c0vhrr0c210r6hp"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zotxt"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zotxt"; sha256 = "18jla05g2k8zfrmp7q9kpr1mpw6smxzdyn8nfghm306wvv9ff8y5"; name = "zotxt"; }; @@ -29327,7 +29607,7 @@ sha256 = "0v73fgb0gf81vlihiicy32v6x86rr2hv0bxlpw7d3pk4ng1a0l3z"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zygospore"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zygospore"; sha256 = "0n9qs6fymdjly0i4rmx87y8gapfn5sqivsivcffi42vcb5f17kxj"; name = "zygospore"; }; @@ -29348,7 +29628,7 @@ sha256 = "0y0hhar3krkvbpb5y9k197mb0wfpz8cl6fmxazq8msjml7hkk339"; }; recipeFile = fetchurl { - url = "https://raw.githubusercontent.com/milkypostman/melpa/50e8d089f4e163eb459fc602cb90440b110b489f/recipes/zzz-to-char"; + url = "https://raw.githubusercontent.com/milkypostman/melpa/1b56ca344ad944e03b669a9974e9b734b5b445bb/recipes/zzz-to-char"; sha256 = "16vwp0krshmn5x3ry1j512g4kydx39znjqzri4j7wgg49bz1n7vh"; name = "zzz-to-char"; }; From 268fedbda33a0afa056eac97c6e04ccd0d21027f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Llu=C3=ADs=20Batlle=20i=20Rossell?= Date: Sat, 4 Jun 2016 15:38:49 +0300 Subject: [PATCH 243/520] Updating goPackages go-fuse/mtpfs + libmtp to latest libmtp to 1.1.11, and the go packages to latest master. --- pkgs/development/libraries/libmtp/default.nix | 4 ++-- pkgs/top-level/go-packages.nix | 13 ++++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/libmtp/default.nix b/pkgs/development/libraries/libmtp/default.nix index 671169b9ab3a..bdf1da498493 100644 --- a/pkgs/development/libraries/libmtp/default.nix +++ b/pkgs/development/libraries/libmtp/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, pkgconfig, libusb1 }: stdenv.mkDerivation rec { - name = "libmtp-1.1.9"; + name = "libmtp-1.1.11"; src = fetchurl { url = "mirror://sourceforge/libmtp/${name}.tar.gz"; - sha256 = "12dinqic0ljnhrwx3rc61jc7q24ybr0mckc2ya5kh1s1np0d7w93"; + sha256 = "1sc768q2cixwanlwrz95mp389iaadl4s95486caavxx4g7znvn8m"; }; outputs = [ "dev" "bin" "out" ]; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b3ecb2f9009d..ddaae38edbc7 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1631,11 +1631,11 @@ let }; go-fuse = buildFromGitHub rec { - rev = "324ea173d0a4d90e0e97c464a6ad33f80c9587a8"; - version = "2015-07-27"; + rev = "bd746dd8bcc8c059a9d953a786a6156eb83f398e"; + version = "2016-05-29"; owner = "hanwen"; repo = "go-fuse"; - sha256 = "0r5amgnpb4g7b6kpz42vnj01w515by4yhy64s5lqf3snzjygaycf"; + sha256 = "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56"; }; go-github = buildFromGitHub { @@ -2671,12 +2671,11 @@ let }; mtpfs = buildFromGitHub { - rev = "3ef47f91c38cf1da3e965e37debfc81738e9cd94"; - version = "2015-08-01"; + rev = "bc7c0f716e3b4ed5610069a55fc00828ebba890b"; + date = "2015-09-17"; owner = "hanwen"; repo = "go-mtpfs"; - sha256 = "1f7lcialkpkwk01f7yxw77qln291sqjkspb09mh0yacmrhl231g8"; - + sha256 = "1jcqp9n8fd9psfsnhfj6w97yp0zmyxplsig8pyp2gqzh4lnb5fqm"; buildInputs = [ go-fuse usb ]; }; From c683abab6041f56d019bd6a3083397aa9bc510dc Mon Sep 17 00:00:00 2001 From: aszlig Date: Mon, 30 May 2016 13:54:46 +0200 Subject: [PATCH 244/520] gwenhywfar: 4.11.1 -> 4.15.3 Upstream changelog for version 4.11 through 4.12 doesn't seem to be available anymore and the change summaries from the project page are in German, but here's a comparison from a GitHub mirror I've found: https://github.com/cstim/gwenhywfar/compare/4.11.1beta...4055683538b6 I've shortened the URL to not include the file name in the URL itself because we use the name attribute in fetchurl to force the name anyway. A quick way to find out about the upstream download URLs is: curl 'http://www.aquamaniac.de/sites/download/packages.php?package=01&showall=1' \ | sed -nre 's/^.*.*\ Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/gwenhywfar/default.nix | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/gwenhywfar/default.nix b/pkgs/development/libraries/gwenhywfar/default.nix index b6cd2e54768f..8cec26139dea 100644 --- a/pkgs/development/libraries/gwenhywfar/default.nix +++ b/pkgs/development/libraries/gwenhywfar/default.nix @@ -1,12 +1,18 @@ { stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, qt4 }: stdenv.mkDerivation rec { - name = "gwenhywfar-4.11.1"; + name = "gwenhywfar-${version}"; - src = fetchurl { - url = "http://www2.aquamaniac.de/sites/download/download.php?package=01&release=78&file=01&dummy=${name}.tar.gz"; + version = "4.15.3"; + + src = let + releaseNum = 201; # Change this on update + qstring = "package=01&release=${toString releaseNum}&file=01"; + mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); + in fetchurl { name = "${name}.tar.gz"; - sha256 = "0ay79vc03jsw762nax204g112yg5sak340g31bm4hm93q69aiv2b"; + urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; + sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka"; }; propagatedBuildInputs = [ gnutls libgcrypt ]; From e5d6acb5858329a76532a25ca4727cd1b046481d Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 16:18:02 +0200 Subject: [PATCH 245/520] aqbanking: 5.5.1 -> 5.6.10 Upstream changelog for version 5.5.1 through 5.6.10 is in German only and also not very detailled, so here is a comparison from a GitHub mirror I've found: https://github.com/cstim/aqbanking/compare/5.5.1...e129e64472a2 I've also used a similar scheme to what I've been using for gwenhywfar, so that we can soon unify all of the aqbanking & related libraries. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/aqbanking/default.nix | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index 9d4761c3da86..ee985e709417 100644 --- a/pkgs/development/libraries/aqbanking/default.nix +++ b/pkgs/development/libraries/aqbanking/default.nix @@ -3,12 +3,17 @@ }: stdenv.mkDerivation rec { - name = "aqbanking-5.5.1"; + name = "aqbanking-${version}"; + version = "5.6.10"; - src = fetchurl { - url = "http://www2.aquamaniac.de/sites/download/download.php?package=03&release=118&file=01&dummy=${name}.tar.gz"; + src = let + releaseNum = 206; # Change this on update + qstring = "package=03&release=${toString releaseNum}&file=01"; + mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); + in fetchurl { name = "${name}.tar.gz"; - sha256 = "1pxd5xv2xls1hyizr1vbknzgb66babhlp72777rcxq46gp91g3r3"; + urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; + sha256 = "1x0isvpk43rq2zlyyb9p0kgjmqv7yq07vgkiprw3f5sjkykvxw6d"; }; buildInputs = [ gmp gwenhywfar libtool libxml2 libxslt xmlsec zlib ]; From 468f931f873e717d9e16e57e466ea82befbc4e77 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 16:29:16 +0200 Subject: [PATCH 246/520] gwenhywfar: Unify plugin directories Having something like $out/lib/gwenhywfar/plugins/60 when on Nix is a bit pointless, because we won't have something like a central plugin directory which could contain plugins for older library versions. Another reason to strip the effective shared object version is that we really want to avoid the need to track and update the SO version on every single update. This makes it way easier to add support for libchipcard and/or other related packages/plugins. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- .../libraries/aqbanking/default.nix | 8 +++++- .../libraries/gwenhywfar/default.nix | 28 ++++++++++++++++++- 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index ee985e709417..7fd511f42725 100644 --- a/pkgs/development/libraries/aqbanking/default.nix +++ b/pkgs/development/libraries/aqbanking/default.nix @@ -16,11 +16,17 @@ stdenv.mkDerivation rec { sha256 = "1x0isvpk43rq2zlyyb9p0kgjmqv7yq07vgkiprw3f5sjkykvxw6d"; }; + postPatch = '' + sed -i -e '/^aqbanking_plugindir=/ { + c aqbanking_plugindir="\''${libdir}/gwenhywfar/plugins" + }' configure + ''; + buildInputs = [ gmp gwenhywfar libtool libxml2 libxslt xmlsec zlib ]; nativeBuildInputs = [ pkgconfig ]; - configureFlags = "--with-gwen-dir=${gwenhywfar}"; + configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ]; meta = with stdenv.lib; { description = "An interface to banking tasks, file formats and country information"; diff --git a/pkgs/development/libraries/gwenhywfar/default.nix b/pkgs/development/libraries/gwenhywfar/default.nix index 8cec26139dea..8fb96e078ac1 100644 --- a/pkgs/development/libraries/gwenhywfar/default.nix +++ b/pkgs/development/libraries/gwenhywfar/default.nix @@ -2,7 +2,6 @@ stdenv.mkDerivation rec { name = "gwenhywfar-${version}"; - version = "4.15.3"; src = let @@ -15,6 +14,33 @@ stdenv.mkDerivation rec { sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka"; }; + postPatch = let + pluginSearchPaths = [ + "/run/current-system/sw/lib/gwenhywfar/plugins" + ".nix-profile/lib/gwenhywfar/plugins" + ]; + isRelative = path: builtins.substring 0 1 path != "/"; + mkSearchPath = path: '' + p; g; s,\,"${path}",g; + '' + stdenv.lib.optionalString (isRelative path) '' + s/AddPath(\(.*\));/AddRelPath(\1, GWEN_PathManager_RelModeHome);/g + ''; + + in '' + sed -i -e '/GWEN_PathManager_DefinePath.*GWEN_PM_PLUGINDIR/,/^#endif/ { + /^#if/,/^#endif/ { + H; /^#endif/ { + ${stdenv.lib.concatMapStrings mkSearchPath pluginSearchPaths} + } + } + }' src/gwenhywfar.c + + # Strip off the effective SO version from the path so that for example + # "lib/gwenhywfar/plugins/60" becomes just "lib/gwenhywfar/plugins". + sed -i -e '/^gwenhywfar_plugindir=/s,/\''${GWENHYWFAR_SO_EFFECTIVE},,' \ + configure + ''; + propagatedBuildInputs = [ gnutls libgcrypt ]; buildInputs = [ gtk qt4 ]; From 9a4e6755ab871943b0d6c51aad97c955665f7393 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 16:33:54 +0200 Subject: [PATCH 247/520] libchipcard: Init at 5.0.4 Another library that is part of aqbanking and needed in order to access various chip cards. It's essentially useful for doing online banking via FinTS/HBCI without PIN/TAN (or iTAN, mobileTAN, whatnot...). Signed-off-by: aszlig --- .../libraries/libchipcard/default.nix | 32 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 34 insertions(+) create mode 100644 pkgs/development/libraries/libchipcard/default.nix diff --git a/pkgs/development/libraries/libchipcard/default.nix b/pkgs/development/libraries/libchipcard/default.nix new file mode 100644 index 000000000000..85539fc0128a --- /dev/null +++ b/pkgs/development/libraries/libchipcard/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pkgconfig, gwenhywfar, pcsclite, zlib }: + +stdenv.mkDerivation rec { + name = "libchipcard-${version}"; + version = "5.0.4"; + + src = let + releaseNum = 200; # Change this on update + qstring = "package=02&release=${toString releaseNum}&file=01"; + mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); + in fetchurl { + name = "${name}.tar.gz"; + urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; + sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; + }; + + nativeBuildInputs = [ pkgconfig ]; + + buildInputs = [ gwenhywfar pcsclite zlib ]; + + makeFlags = [ "crypttokenplugindir=$(out)/lib/gwenhywfar/plugins/ct" ]; + + configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ]; + + meta = with stdenv.lib; { + description = "Library for access to chipcards"; + homepage = "http://www2.aquamaniac.de/sites/download/packages.php?package=02&showall=1"; + license = licenses.lgpl21; + maintainers = with maintainers; [ aszlig ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b0d7d5e2a249..efb0a27b0059 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7597,6 +7597,8 @@ in libchewing = callPackage ../development/libraries/libchewing { }; + libchipcard = callPackage ../development/libraries/libchipcard { }; + libcrafter = callPackage ../development/libraries/libcrafter { }; libcrossguid = callPackage ../development/libraries/libcrossguid { }; From df1821ec9d795d1b14f0c0517fd3da0628e6b782 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 16:37:51 +0200 Subject: [PATCH 248/520] gwenhywfar: Add gettext to buildInputs It's necessary so that we get translations. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/gwenhywfar/default.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/gwenhywfar/default.nix b/pkgs/development/libraries/gwenhywfar/default.nix index 8fb96e078ac1..b41e762aa770 100644 --- a/pkgs/development/libraries/gwenhywfar/default.nix +++ b/pkgs/development/libraries/gwenhywfar/default.nix @@ -1,4 +1,4 @@ -{ stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, qt4 }: +{ stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, gettext, qt4 }: stdenv.mkDerivation rec { name = "gwenhywfar-${version}"; @@ -41,11 +41,9 @@ stdenv.mkDerivation rec { configure ''; - propagatedBuildInputs = [ gnutls libgcrypt ]; + nativeBuildInputs = [ pkgconfig gettext ]; - buildInputs = [ gtk qt4 ]; - - nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ gtk qt4 gnutls libgcrypt ]; QTDIR = qt4; From af3ea69a96d9a27be29378f7b11779586bbbbff4 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 16:41:14 +0200 Subject: [PATCH 249/520] gwenhywfar, libchipcard: Move into aqbanking dir This should make it easier to deduplicate things, such as fetching upstream sources and the plugin paths, because after all these libraries are aqbanking-related and maintained by the same author on the same site. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- .../{gwenhywfar/default.nix => aqbanking/gwenhywfar.nix} | 0 .../{libchipcard/default.nix => aqbanking/libchipcard.nix} | 0 pkgs/top-level/all-packages.nix | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) rename pkgs/development/libraries/{gwenhywfar/default.nix => aqbanking/gwenhywfar.nix} (100%) rename pkgs/development/libraries/{libchipcard/default.nix => aqbanking/libchipcard.nix} (100%) diff --git a/pkgs/development/libraries/gwenhywfar/default.nix b/pkgs/development/libraries/aqbanking/gwenhywfar.nix similarity index 100% rename from pkgs/development/libraries/gwenhywfar/default.nix rename to pkgs/development/libraries/aqbanking/gwenhywfar.nix diff --git a/pkgs/development/libraries/libchipcard/default.nix b/pkgs/development/libraries/aqbanking/libchipcard.nix similarity index 100% rename from pkgs/development/libraries/libchipcard/default.nix rename to pkgs/development/libraries/aqbanking/libchipcard.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index efb0a27b0059..bfdda7deb4b9 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7328,7 +7328,7 @@ in gvfs = callPackage ../development/libraries/gvfs { gconf = gnome.GConf; }; - gwenhywfar = callPackage ../development/libraries/gwenhywfar { gnutls = gnutls33; }; + gwenhywfar = callPackage ../development/libraries/aqbanking/gwenhywfar.nix { gnutls = gnutls33; }; hamlib = callPackage ../development/libraries/hamlib { }; @@ -7597,7 +7597,7 @@ in libchewing = callPackage ../development/libraries/libchewing { }; - libchipcard = callPackage ../development/libraries/libchipcard { }; + libchipcard = callPackage ../development/libraries/aqbanking/libchipcard.nix { }; libcrafter = callPackage ../development/libraries/libcrafter { }; From db1162dce40172fe77a6ff46676d916b9d8f7098 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 18:17:04 +0200 Subject: [PATCH 250/520] aqbanking: Move sources into a common sources.nix The upstream URLs unfortunately aren't canonical, so let's have a sources.nix which contains the release IDs used by the upstream sites to associate a version of a particular package. We're then going to create an updater script which should update the sources.nix from there on. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/aqbanking/default.nix | 6 +++--- pkgs/development/libraries/aqbanking/gwenhywfar.nix | 6 +++--- pkgs/development/libraries/aqbanking/libchipcard.nix | 6 +++--- pkgs/development/libraries/aqbanking/sources.nix | 11 +++++++++++ 4 files changed, 20 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/libraries/aqbanking/sources.nix diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index 7fd511f42725..db8e4e49bcfb 100644 --- a/pkgs/development/libraries/aqbanking/default.nix +++ b/pkgs/development/libraries/aqbanking/default.nix @@ -7,13 +7,13 @@ stdenv.mkDerivation rec { version = "5.6.10"; src = let - releaseNum = 206; # Change this on update - qstring = "package=03&release=${toString releaseNum}&file=01"; + inherit ((import ./sources.nix).aqbanking) sha256 releaseId; + qstring = "package=03&release=${releaseId}&file=01"; mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); in fetchurl { name = "${name}.tar.gz"; urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; - sha256 = "1x0isvpk43rq2zlyyb9p0kgjmqv7yq07vgkiprw3f5sjkykvxw6d"; + inherit sha256; }; postPatch = '' diff --git a/pkgs/development/libraries/aqbanking/gwenhywfar.nix b/pkgs/development/libraries/aqbanking/gwenhywfar.nix index b41e762aa770..6a3bc2555350 100644 --- a/pkgs/development/libraries/aqbanking/gwenhywfar.nix +++ b/pkgs/development/libraries/aqbanking/gwenhywfar.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { version = "4.15.3"; src = let - releaseNum = 201; # Change this on update - qstring = "package=01&release=${toString releaseNum}&file=01"; + inherit ((import ./sources.nix).gwenhywfar) sha256 releaseId; + qstring = "package=01&release=${releaseId}&file=01"; mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); in fetchurl { name = "${name}.tar.gz"; urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; - sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka"; + inherit sha256; }; postPatch = let diff --git a/pkgs/development/libraries/aqbanking/libchipcard.nix b/pkgs/development/libraries/aqbanking/libchipcard.nix index 85539fc0128a..f922aacf4d40 100644 --- a/pkgs/development/libraries/aqbanking/libchipcard.nix +++ b/pkgs/development/libraries/aqbanking/libchipcard.nix @@ -5,13 +5,13 @@ stdenv.mkDerivation rec { version = "5.0.4"; src = let - releaseNum = 200; # Change this on update - qstring = "package=02&release=${toString releaseNum}&file=01"; + inherit ((import ./sources.nix).libchipcard) sha256 releaseId; + qstring = "package=02&release=${releaseId}&file=01"; mkURLs = map (base: "${base}/sites/download/download.php?${qstring}"); in fetchurl { name = "${name}.tar.gz"; urls = mkURLs [ "http://www.aquamaniac.de" "http://www2.aquamaniac.de" ]; - sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; + inherit sha256; }; nativeBuildInputs = [ pkgconfig ]; diff --git a/pkgs/development/libraries/aqbanking/sources.nix b/pkgs/development/libraries/aqbanking/sources.nix new file mode 100644 index 000000000000..ae49abb44de3 --- /dev/null +++ b/pkgs/development/libraries/aqbanking/sources.nix @@ -0,0 +1,11 @@ +{ + gwenhywfar.version = "4.15.3"; + gwenhywfar.sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka"; + gwenhywfar.releaseId = "201"; + libchipcard.version = "5.0.4"; + libchipcard.sha256 = "0fj2h39ll4kiv28ch8qgzdbdbnzs8gl812qnm660bw89rynpjnnj"; + libchipcard.releaseId = "200"; + aqbanking.version = "5.6.10"; + aqbanking.sha256 = "1x0isvpk43rq2zlyyb9p0kgjmqv7yq07vgkiprw3f5sjkykvxw6d"; + aqbanking.releaseId = "206"; +} From f25e4350ef0031d761f5a4767e4a2d24a6ba8f89 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 18:20:47 +0200 Subject: [PATCH 251/520] aqbanking: Add an updater script The promised updater, which feeds sources.nix and should help updating all the aqbanking libraries at the same time. I was very reluctant to write the updater entirely in Nix as I've done a while ago for Chromium, because this would involve ugly hacks to do so. That's why I've done a more conservative approach here, only using nix-instantiate to get the contents of the current sources.nix. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- .../libraries/aqbanking/sources.nix | 1 + .../development/libraries/aqbanking/update.sh | 92 +++++++++++++++++++ 2 files changed, 93 insertions(+) create mode 100755 pkgs/development/libraries/aqbanking/update.sh diff --git a/pkgs/development/libraries/aqbanking/sources.nix b/pkgs/development/libraries/aqbanking/sources.nix index ae49abb44de3..f53d9a9e26f1 100644 --- a/pkgs/development/libraries/aqbanking/sources.nix +++ b/pkgs/development/libraries/aqbanking/sources.nix @@ -1,3 +1,4 @@ +# This file is autogenerated from update.sh in the same directory. { gwenhywfar.version = "4.15.3"; gwenhywfar.sha256 = "0fp67s932x66xfljb26zbrn8ambbc5y5c3hllr6l284nr63qf3ka"; diff --git a/pkgs/development/libraries/aqbanking/update.sh b/pkgs/development/libraries/aqbanking/update.sh new file mode 100755 index 000000000000..2ba0192cbb64 --- /dev/null +++ b/pkgs/development/libraries/aqbanking/update.sh @@ -0,0 +1,92 @@ +#!/bin/sh -e +basedir="$(cd "$(dirname "$0")" && pwd)" + +getCurrentVersions() { + [ -e "$basedir/sources.nix" ] || return 0 + (cd "$basedir" && nix-instantiate --eval --strict -E ' + toString ((import ../../../../lib).mapAttrsToList + (name: info: "${name}:${info.version}!${info.sha256}!${info.releaseId}") + (import ./sources.nix)) + ' | tr -d '"') +} + +currentVersions="$(getCurrentVersions)" + +getLastestVersion() { + local baseurl="http://www.aquamaniac.de" + local pkglist="sites/download/packages.php?package=$1&showall=1" + local url="$baseurl/$pkglist" + local reVersion='[0-9]+(\.[0-9]+)+' # Only release versions, no betas! + local reHref='href=".*release=([0-9]+).*dummy=[^0-9]*('"$reVersion"')\.tar' + local reFull='s/^.*.*\<'"$reHref"'.*/\2!\1/p' + curl -s "$url" | sed -nre "$reFull" | sort -V -k 1,1 | tail -n1 +} + +getEntry() { + local name="$1" + for entry in $currentVersions; do + if [ "${entry%%:*}" = "$name" ]; then + echo "${entry#*:}" + return 0 + fi + done + return 1 +} + +prefetchNew() { + local name="$1" + local version="$2" + local package="$3" + local releaseId="$4" + + local url="http://www.aquamaniac.de/sites/download/download.php" + local qstring="package=$package&release=$releaseId&file=01"; + + nix-prefetch-url --name "$name-$version.tar.gz" "$url?$qstring" +} + +processPackage() { + local name="$1" + local package="$2" + + local latest="$(getLastestVersion "$package")" + local current="$(getEntry "$name")" + local currentTail="${current#*!}" + + local currentVersion="${current%%!*}" + local currentSha256="${currentTail%%!*}" + local currentReleaseId="${current##*!}" + + local latestVersion="${latest%%!*}" + local latestReleaseId="${latest##*!}" + + if [ "$latestVersion" = "$currentVersion" -a \ + "$latestReleaseId" = "$currentReleaseId" ]; then + echo " $name.version = \"$currentVersion\";" + echo " $name.sha256 = \"$currentSha256\";" + echo " $name.releaseId = \"$currentReleaseId\";" + return 0 + fi + + local latestSha256="$( + prefetchNew "$name" "$latestVersion" "$package" "$latestReleaseId" + )" + + echo " $name.version = \"$latestVersion\";" + echo " $name.sha256 = \"$latestSha256\";" + echo " $name.releaseId = \"$latestReleaseId\";" + return 0 +} + +generateNewSources() { + echo "# This file is autogenerated from update.sh in the same directory." + echo "{" + for package in gwenhywfar:01 libchipcard:02 aqbanking:03; do + processPackage "${package%%:*}" "${package##*:}" + done + echo "}" +} + +if newSources="$(generateNewSources)"; then + echo "$newSources" > "$basedir/sources.nix" +fi From efc2f707117c5997f31662fde6ea6be9211db7f9 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 18:29:16 +0200 Subject: [PATCH 252/520] gwenhywfar: Remove constraint on gnutls33 As of 4.15.3, gwenhywfar works with the latest version of GNUTLS, so we no longer need to reside to using an older version. Signed-off-by: aszlig --- 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 bfdda7deb4b9..51a9754b1948 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7328,7 +7328,7 @@ in gvfs = callPackage ../development/libraries/gvfs { gconf = gnome.GConf; }; - gwenhywfar = callPackage ../development/libraries/aqbanking/gwenhywfar.nix { gnutls = gnutls33; }; + gwenhywfar = callPackage ../development/libraries/aqbanking/gwenhywfar.nix { }; hamlib = callPackage ../development/libraries/hamlib { }; From ee92256566298c25437fae0abd4c405925993cfd Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 18:55:30 +0200 Subject: [PATCH 253/520] aqbanking: Add gettext to nativeBuildInputs It's necessary so that we get translations. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/aqbanking/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/aqbanking/default.nix b/pkgs/development/libraries/aqbanking/default.nix index db8e4e49bcfb..277886d717ac 100644 --- a/pkgs/development/libraries/aqbanking/default.nix +++ b/pkgs/development/libraries/aqbanking/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, gmp, gwenhywfar, libtool, libxml2, libxslt -, pkgconfig, xmlsec, zlib +, pkgconfig, gettext, xmlsec, zlib }: stdenv.mkDerivation rec { @@ -24,7 +24,7 @@ stdenv.mkDerivation rec { buildInputs = [ gmp gwenhywfar libtool libxml2 libxslt xmlsec zlib ]; - nativeBuildInputs = [ pkgconfig ]; + nativeBuildInputs = [ pkgconfig gettext ]; configureFlags = [ "--with-gwen-dir=${gwenhywfar}" ]; From 9a154e2838cbb4b830e59eee8ec923a1d1ce3f85 Mon Sep 17 00:00:00 2001 From: aszlig Date: Thu, 2 Jun 2016 18:56:29 +0200 Subject: [PATCH 254/520] gwenhywfar: Allow to override pluginSearchPaths We're going to create a closure of plugins for aqbanking, so that it's easier to adapt the gwenhywfar search path to include these store paths. Signed-off-by: aszlig Cc: @cillianderoiste, @urkud --- pkgs/development/libraries/aqbanking/gwenhywfar.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/aqbanking/gwenhywfar.nix b/pkgs/development/libraries/aqbanking/gwenhywfar.nix index 6a3bc2555350..70e7b1c33c0d 100644 --- a/pkgs/development/libraries/aqbanking/gwenhywfar.nix +++ b/pkgs/development/libraries/aqbanking/gwenhywfar.nix @@ -1,4 +1,10 @@ -{ stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, gettext, qt4 }: +{ stdenv, fetchurl, gnutls, gtk, libgcrypt, pkgconfig, gettext, qt4 + +, pluginSearchPaths ? [ + "/run/current-system/sw/lib/gwenhywfar/plugins" + ".nix-profile/lib/gwenhywfar/plugins" + ] +}: stdenv.mkDerivation rec { name = "gwenhywfar-${version}"; @@ -15,10 +21,6 @@ stdenv.mkDerivation rec { }; postPatch = let - pluginSearchPaths = [ - "/run/current-system/sw/lib/gwenhywfar/plugins" - ".nix-profile/lib/gwenhywfar/plugins" - ]; isRelative = path: builtins.substring 0 1 path != "/"; mkSearchPath = path: '' p; g; s,\,"${path}",g; From 70246d7cfa32e3bce1e0488be02a9c238de09b9f Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Jun 2016 12:42:16 +0200 Subject: [PATCH 255/520] pcsclite: Introduce PCSCLITE_HP_DROPDIR env var This allows to override the directory where PCSC-Lite searches for USB drivers at runtime and should make our NixOS module much more clean so that we don't need to imperatively stitch together plugin directories anymore. I'm using a GNU extension for the ternary operator to avoid computing getenv("PCSCLITE_HP_DROPDIR") twice: https://gcc.gnu.org/onlinedocs/gcc/Conditionals.html#Conditionals Signed-off-by: aszlig Cc: @viric, @wkennington --- pkgs/tools/security/pcsclite/default.nix | 8 ++ .../pcsclite/no-dropdir-literals.patch | 73 +++++++++++++++++++ 2 files changed, 81 insertions(+) create mode 100644 pkgs/tools/security/pcsclite/no-dropdir-literals.patch diff --git a/pkgs/tools/security/pcsclite/default.nix b/pkgs/tools/security/pcsclite/default.nix index e75b6a8372cf..a3ce7b90c2bc 100644 --- a/pkgs/tools/security/pcsclite/default.nix +++ b/pkgs/tools/security/pcsclite/default.nix @@ -8,6 +8,8 @@ stdenv.mkDerivation rec { sha256 = "12k8q0ckyy1fqcfh7x0b7kfrlfiscrqaqmidcggnzs4pi2iqml77"; }; + patches = [ ./no-dropdir-literals.patch ]; + configureFlags = [ # The OS should care on preparing the drivers into this location "--enable-usbdropdir=/var/lib/pcsc/drivers" @@ -15,6 +17,12 @@ stdenv.mkDerivation rec { ] ++ stdenv.lib.optional stdenv.isLinux "--with-systemdsystemunitdir=\${out}/etc/systemd/system"; + postConfigure = '' + sed -i -re '/^#define *PCSCLITE_HP_DROPDIR */ { + s/(DROPDIR *)(.*)/\1(getenv("PCSCLITE_HP_DROPDIR") ? : \2)/ + }' config.h + ''; + nativeBuildInputs = [ pkgconfig perl python2 ]; buildInputs = stdenv.lib.optionals stdenv.isLinux [ udev dbus_libs ]; diff --git a/pkgs/tools/security/pcsclite/no-dropdir-literals.patch b/pkgs/tools/security/pcsclite/no-dropdir-literals.patch new file mode 100644 index 000000000000..6e6734c95432 --- /dev/null +++ b/pkgs/tools/security/pcsclite/no-dropdir-literals.patch @@ -0,0 +1,73 @@ +diff --git a/src/hotplug_libudev.c b/src/hotplug_libudev.c +index a8ba1b8..a53700b 100644 +--- a/src/hotplug_libudev.c ++++ b/src/hotplug_libudev.c +@@ -119,7 +119,8 @@ static LONG HPReadBundleValues(void) + + if (NULL == hpDir) + { +- Log1(PCSC_LOG_ERROR, "Cannot open PC/SC drivers directory: " PCSCLITE_HP_DROPDIR); ++ Log2(PCSC_LOG_ERROR, "Cannot open PC/SC drivers directory: %s", ++ PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_ERROR, "Disabling USB support for pcscd."); + return -1; + } +@@ -722,7 +723,7 @@ ULONG HPRegisterForHotplugEvents(void) + + if (driverSize <= 0) + { +- Log1(PCSC_LOG_INFO, "No bundle files in pcsc drivers directory: " ++ Log2(PCSC_LOG_INFO, "No bundle files in pcsc drivers directory: %s", + PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_INFO, "Disabling USB support for pcscd"); + return 0; +diff --git a/src/hotplug_libusb.c b/src/hotplug_libusb.c +index eff8519..8dd496d 100644 +--- a/src/hotplug_libusb.c ++++ b/src/hotplug_libusb.c +@@ -138,7 +138,8 @@ static LONG HPReadBundleValues(void) + + if (hpDir == NULL) + { +- Log1(PCSC_LOG_ERROR, "Cannot open PC/SC drivers directory: " PCSCLITE_HP_DROPDIR); ++ Log2(PCSC_LOG_ERROR, "Cannot open PC/SC drivers directory: %s", ++ PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_ERROR, "Disabling USB support for pcscd."); + return -1; + } +@@ -265,7 +266,8 @@ static LONG HPReadBundleValues(void) + + if (driverSize == 0) + { +- Log1(PCSC_LOG_INFO, "No bundle files in pcsc drivers directory: " PCSCLITE_HP_DROPDIR); ++ Log2(PCSC_LOG_INFO, "No bundle files in pcsc drivers directory: %s", ++ PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_INFO, "Disabling USB support for pcscd"); + } + #ifdef DEBUG_HOTPLUG +diff --git a/src/hotplug_linux.c b/src/hotplug_linux.c +index bf69af8..64b0ed7 100644 +--- a/src/hotplug_linux.c ++++ b/src/hotplug_linux.c +@@ -130,8 +130,8 @@ static LONG HPReadBundleValues(void) + + if (hpDir == NULL) + { +- Log1(PCSC_LOG_INFO, +- "Cannot open PC/SC drivers directory: " PCSCLITE_HP_DROPDIR); ++ Log2(PCSC_LOG_INFO, "Cannot open PC/SC drivers directory: %s", ++ PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_INFO, "Disabling USB support for pcscd."); + return -1; + } +@@ -219,8 +219,8 @@ end: + + if (bundleSize == 0) + { +- Log1(PCSC_LOG_INFO, +- "No bundle files in pcsc drivers directory: " PCSCLITE_HP_DROPDIR); ++ Log2(PCSC_LOG_INFO, "No bundle files in pcsc drivers directory: %s", ++ PCSCLITE_HP_DROPDIR); + Log1(PCSC_LOG_INFO, "Disabling USB support for pcscd"); + } + From fa559de8af73be65f6f9789d2961f85997d53df9 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Jun 2016 12:48:18 +0200 Subject: [PATCH 256/520] pcsc-cyberjack: Init at 3.99.5_SP09 It's a driver module for PCSC-Lite, which allows to use the USB readers from REINER SCT, a reader that is very commonly used in Germany for online banking and for reading/writing data from/to the national identity card. Signed-off-by: aszlig --- .../tools/security/pcsc-cyberjack/default.nix | 30 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/tools/security/pcsc-cyberjack/default.nix diff --git a/pkgs/tools/security/pcsc-cyberjack/default.nix b/pkgs/tools/security/pcsc-cyberjack/default.nix new file mode 100644 index 000000000000..18c3af7924a9 --- /dev/null +++ b/pkgs/tools/security/pcsc-cyberjack/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, libusb, pcsclite }: + +stdenv.mkDerivation rec { + name = "pcsc-cyberjack-${version}"; + version = "3.99.5_SP09"; + + src = with stdenv.lib; let + splittedVer = splitString "_" version; + mainVer = if length splittedVer >= 1 then head splittedVer else version; + spVer = optionalString (length splittedVer >= 1) ("." + last splittedVer); + tarballVersion = "${mainVer}final${spVer}"; + in fetchurl { + url = "http://support.reiner-sct.de/downloads/LINUX/V${version}" + + "/pcsc-cyberjack-${tarballVersion}.tar.bz2"; + sha256 = "1m1r26q0k2hrxfi73j4v25qfh20x4b1hcbcpgjgv7qxa33dbi30z"; + }; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libusb pcsclite ]; + + configureFlags = [ "--with-usbdropdir=\${prefix}/pcsc/drivers" ]; + + meta = with stdenv.lib; { + description = "REINER SCT cyberJack USB chipcard reader user space driver"; + homepage = "http://www.reiner-sct.com/"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = with maintainers; [ aszlig ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 51a9754b1948..50f0b0cb8b97 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2883,6 +2883,8 @@ in inherit (perlPackages) pcscperl Glib Gtk2 Pango; }; + pcsc-cyberjack = callPackage ../tools/security/pcsc-cyberjack { }; + pdf2djvu = callPackage ../tools/typesetting/pdf2djvu { }; pdf2svg = callPackage ../tools/graphics/pdf2svg { }; From bc877d8bfcfe8c1b82687b725c823a0154c7d572 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Jun 2016 15:52:04 +0200 Subject: [PATCH 257/520] pcsclite: Explicitly set ipcdir Some libraries using PCSC-Lite still tend to refer to /var/run/pcscd instead of /run/pcscd, so let's make sure this won't happen. Signed-off-by: aszlig Cc: @viric, @wkennington --- pkgs/tools/security/pcsclite/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/security/pcsclite/default.nix b/pkgs/tools/security/pcsclite/default.nix index a3ce7b90c2bc..cb65ff5a3ccb 100644 --- a/pkgs/tools/security/pcsclite/default.nix +++ b/pkgs/tools/security/pcsclite/default.nix @@ -14,6 +14,7 @@ stdenv.mkDerivation rec { # The OS should care on preparing the drivers into this location "--enable-usbdropdir=/var/lib/pcsc/drivers" "--enable-confdir=/etc" + "--enable-ipcdir=/run/pcscd" ] ++ stdenv.lib.optional stdenv.isLinux "--with-systemdsystemunitdir=\${out}/etc/systemd/system"; From 9720e16adcdaa14a5236f87c6c824fd62e45e1ca Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Jun 2016 13:07:09 +0200 Subject: [PATCH 258/520] nixos/pcscd: Improve and clean up module So far the module only allowed for the ccid driver, but there are a lot of other PCSC driver modules out there, so let's add an option called "plugins", which boils down to a store path that links together all the paths specified. We don't need to create stuff in /var/lib/pcsc anymore, because we patched pcsclite to allow setting PCSCLITE_HP_DROPDIR. Another new option is readerConfig, which is especially useful for non-USB readers that aren't autodetected. The systemd service now is no longer Type=forking, because we're now passing the -f (foreground) option to pcscd. Tested against a YubiKey 4, SCR335 and a REINER SCT USB reader. Signed-off-by: aszlig Cc: @wkennington --- nixos/modules/services/hardware/pcscd.nix | 55 ++++++++++++++--------- 1 file changed, 35 insertions(+), 20 deletions(-) diff --git a/nixos/modules/services/hardware/pcscd.nix b/nixos/modules/services/hardware/pcscd.nix index 6e30dfb752d2..fa97e8bf746b 100644 --- a/nixos/modules/services/hardware/pcscd.nix +++ b/nixos/modules/services/hardware/pcscd.nix @@ -1,29 +1,51 @@ { config, lib, pkgs, ... }: -let - cfgFile = pkgs.writeText "reader.conf" ""; -in - with lib; -{ +let + cfgFile = pkgs.writeText "reader.conf" config.services.pcscd.readerConfig; + + pluginEnv = pkgs.buildEnv { + name = "pcscd-plugins"; + paths = map (p: "${p}/pcsc/drivers") config.services.pcscd.plugins; + }; + +in { ###### interface options = { services.pcscd = { + enable = mkEnableOption "PCSC-Lite daemon"; - enable = mkOption { - default = false; - description = "Whether to enable the PCSC-Lite daemon."; + plugins = mkOption { + type = types.listOf types.package; + default = [ pkgs.ccid ]; + defaultText = "[ pkgs.ccid ]"; + example = literalExample "[ pkgs.pcsc-cyberjack ]"; + description = "Plugin packages to be used for PCSC-Lite."; }; + readerConfig = mkOption { + type = types.lines; + default = ""; + example = '' + FRIENDLYNAME "Some serial reader" + DEVICENAME /dev/ttyS0 + LIBPATH /path/to/serial_reader.so + CHANNELID 1 + ''; + description = '' + Configuration for devices that aren't hotpluggable. + + See reader.conf + 5 for valid options. + ''; + }; }; - }; - ###### implementation config = mkIf config.services.pcscd.enable { @@ -37,18 +59,11 @@ with lib; systemd.services.pcscd = { description = "PCSC-Lite daemon"; - preStart = '' - mkdir -p /var/lib/pcsc - rm -Rf /var/lib/pcsc/drivers - ln -s ${pkgs.ccid}/pcsc/drivers /var/lib/pcsc/ - ''; + environment.PCSCLITE_HP_DROPDIR = pluginEnv; serviceConfig = { - Type = "forking"; - ExecStart = "${pkgs.pcsclite}/sbin/pcscd --auto-exit -c ${cfgFile}"; - ExecReload = "${pkgs.pcsclite}/sbin/pcscd --hotplug"; + ExecStart = "${pkgs.pcsclite}/sbin/pcscd -f -x -c ${cfgFile}"; + ExecReload = "${pkgs.pcsclite}/sbin/pcscd -H"; }; }; - }; - } From 53bf7e1907830a3d6c6043a272cd4553b2ce3466 Mon Sep 17 00:00:00 2001 From: aszlig Date: Sat, 4 Jun 2016 13:20:17 +0200 Subject: [PATCH 259/520] pcsclite: 1.8.16 -> 1.8.17 Upstream changes: - Fix SCardEndTransaction() issue with a SCARD_SHARE_EXCLUSIVE connection - Fix an issue when used with systemd (problem in signal handler) - SCardGetAttrib(): set pcbAttrLen when buffer is too small - Doxygen: SCardGetAttrib() pbAttr can be NULL - Doxygen: SCardGetAttrib() *pcbAttrLen contains the buffer size - fix compilation warnings and link errors on SunOS - Some other minor improvements Signed-off-by: aszlig Cc: @viric, @wkennington --- pkgs/tools/security/pcsclite/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/pcsclite/default.nix b/pkgs/tools/security/pcsclite/default.nix index cb65ff5a3ccb..509a8a12092b 100644 --- a/pkgs/tools/security/pcsclite/default.nix +++ b/pkgs/tools/security/pcsclite/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, pkgconfig, udev, dbus_libs, perl, python2 }: stdenv.mkDerivation rec { - name = "pcsclite-1.8.16"; + name = "pcsclite-${version}"; + version = "1.8.17"; src = fetchurl { - url = "https://alioth.debian.org/frs/download.php/file/4164/pcsc-lite-1.8.16.tar.bz2"; - sha256 = "12k8q0ckyy1fqcfh7x0b7kfrlfiscrqaqmidcggnzs4pi2iqml77"; + url = "https://alioth.debian.org/frs/download.php/file/4173/pcsc-lite-${version}.tar.bz2"; + sha256 = "0vq2291kvnbg8czlakqahxrdhsvp74fqy3z75lfjlkq2aj36yayp"; }; patches = [ ./no-dropdir-literals.patch ]; From 3204c2753de75fa4fd6a66d5cbe909bac96cc681 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Sat, 4 Jun 2016 15:14:47 +0000 Subject: [PATCH 260/520] gtypist: darwin compatibility (#15975) --- pkgs/games/gtypist/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/games/gtypist/default.nix b/pkgs/games/gtypist/default.nix index c47a2317b0ef..0f19537c62ff 100644 --- a/pkgs/games/gtypist/default.nix +++ b/pkgs/games/gtypist/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, makeWrapper, ncurses, perl, fortune}: +{stdenv, fetchurl, makeWrapper, libiconv, ncurses, perl, fortune}: stdenv.mkDerivation rec { name = "gtypist-${version}"; @@ -9,7 +9,8 @@ stdenv.mkDerivation rec { sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1"; }; - buildInputs = [ makeWrapper ncurses perl fortune ]; + buildInputs = [ makeWrapper ncurses perl fortune ] + ++ stdenv.lib.optional stdenv.isDarwin libiconv; preFixup = '' wrapProgram "$out/bin/typefortune" \ @@ -20,7 +21,7 @@ stdenv.mkDerivation rec { homepage = http://www.gnu.org/software/gtypist; description = "Universal typing tutor"; license = licenses.gpl3Plus; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; maintainers = with maintainers; [ pSub ]; }; } From f878018eceda14682c6d56d6bad2e3783a7c6736 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 4 Jun 2016 17:58:01 +0200 Subject: [PATCH 261/520] neovim: 0.1.3 -> 0.1.4 * removing luaMessagePack (only used by neovim) * using libmpack (updated to latest master since they fixed a lot of packaging issues) * package libmpack lua bidnings * neovim expression now excepts luaPackages as an input and not individual lua packages (to avoid depending on different lua version) --- pkgs/applications/editors/neovim/default.nix | 38 ++++++++++------- .../libraries/libmpack/default.nix | 9 ++-- pkgs/top-level/all-packages.nix | 4 +- pkgs/top-level/lua-packages.nix | 42 +++++++++++-------- 4 files changed, 52 insertions(+), 41 deletions(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 864a2184cbbd..5f7af3b00825 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey -, libtool, libuv, lpeg, lua, luajit, luaMessagePack, luabitop, man, ncurses -, perl, pkgconfig, unibilium, makeWrapper, vimUtils, xsel - +, libtool, libuv, lua, luajit, luaPackages, man, ncurses, perl, pkgconfig +, unibilium, makeWrapper, vimUtils, xsel +, pkgs , withPython ? true, pythonPackages, extraPythonPackages ? [] , withPython3 ? true, python3Packages, extraPython3Packages ? [] , withJemalloc ? true, jemalloc @@ -21,10 +21,10 @@ let version = "2015-11-06"; src = fetchFromGitHub { - sha256 = "090pyf1n5asaw1m2l9bsbdv3zd753aq1plb0w0drbc2k43ds7k3g"; - rev = "a9c7c6fd20fa35e0ad3e0e98901ca12dfca9c25c"; - repo = "libvterm"; owner = "neovim"; + repo = "libvterm"; + rev = "a9c7c6fd20fa35e0ad3e0e98901ca12dfca9c25c"; + sha256 = "090pyf1n5asaw1m2l9bsbdv3zd753aq1plb0w0drbc2k43ds7k3g"; }; buildInputs = [ perl ]; @@ -39,7 +39,7 @@ let description = "VT220/xterm/ECMA-48 terminal emulator library"; homepage = http://www.leonerd.org.uk/code/libvterm/; license = licenses.mit; - maintainers = with maintainers; [ nckx ]; + maintainers = with maintainers; [ nckx garbas ]; platforms = platforms.unix; }; }; @@ -60,13 +60,13 @@ let neovim = stdenv.mkDerivation rec { name = "neovim-${version}"; - version = "0.1.3"; + version = "0.1.4"; src = fetchFromGitHub { - sha256 = "1bkyfxsgb7894848nphsi6shr8bvi9z6ch0zvh2df7vkkzji8chr"; - rev = "v${version}"; - repo = "neovim"; owner = "neovim"; + repo = "neovim"; + rev = "v${version}"; + sha256 = "14c4gydkm2mz22i616190yif1k0i6d7h5hyxa1mf5cmcyqmp3kkp"; }; enableParallelBuilding = true; @@ -79,13 +79,15 @@ let # https://github.com/NixOS/nixpkgs/issues/14442 lua luajit - lpeg - luaMessagePack - luabitop libmsgpack ncurses neovimLibvterm unibilium + + luaPackages.lpeg + luaPackages.mpack + luaPackages.luabitop + ] ++ optional withJemalloc jemalloc; nativeBuildInputs = [ @@ -95,8 +97,12 @@ let pkgconfig ]; - LUA_CPATH="${lpeg}/lib/lua/${lua.luaversion}/?.so;${luabitop}/lib/lua/5.2/?.so"; - LUA_PATH="${luaMessagePack}/share/lua/5.1/?.lua"; + LUA_CPATH = "${luaPackages.lpeg}/lib/lua/${lua.luaversion}/?.so;${luaPackages.mpack}/lib/lua/${lua.luaversion}/?.so;${luaPackages.luabitop}/lib/lua/${lua.luaversion}/?.so"; + + configureFlags = [ + "-DCMAKE_BUILD_TYPE=RelWithDebInfo" + "-DENABLE_JEMALLOC=ON" + ]; preConfigure = '' substituteInPlace runtime/autoload/man.vim \ diff --git a/pkgs/development/libraries/libmpack/default.nix b/pkgs/development/libraries/libmpack/default.nix index d127531b1e01..867a7ccf79df 100644 --- a/pkgs/development/libraries/libmpack/default.nix +++ b/pkgs/development/libraries/libmpack/default.nix @@ -2,12 +2,13 @@ stdenv.mkDerivation rec { name = "libmpack-${version}"; - version = "1.0.2"; + version = "1.0.3-rev${rev}"; + rev = "071d944c9ff7b7fbd2c3c19d1fd1a231363ddeea"; src = fetchFromGitHub { owner = "tarruda"; repo = "libmpack"; - rev = version; - sha256 = "0s391vyz1gv4j95zdyvxspw7c0xq7d7b4fh0yxrgqqqp5js1rlj0"; + inherit rev; + sha256 = "1h3pbmykm69gfyi0wz647gz5836a6f3jc4azzll7i3mkpc11gcrd"; }; buildInputs = [ libtool ]; installPhase = '' @@ -19,7 +20,7 @@ stdenv.mkDerivation rec { description = "Simple implementation of msgpack in C"; homepage = "https://github.com/tarruda/libmpack/"; license = licenses.mit; - maintainers = with maintainers; [ lovek323 ]; + maintainers = with maintainers; [ lovek323 garbas ]; platforms = platforms.linux; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 50f0b0cb8b97..1e95fa181cd6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14477,9 +14477,7 @@ in vimpc = callPackage ../applications/audio/vimpc { }; - neovim = callPackage ../applications/editors/neovim { - inherit (lua52Packages) lpeg luaMessagePack luabitop; - }; + neovim = callPackage ../applications/editors/neovim { }; neovim-qt = callPackage ../applications/editors/neovim/qt.nix { qt5 = qt55; diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index 980c0aca6332..ce8ef3cef4b4 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -8,7 +8,7 @@ { fetchurl, fetchzip, stdenv, lua, callPackage, unzip, zziplib, pkgconfig, libtool , pcre, oniguruma, gnulib, tre, glibc, sqlite, openssl, expat, cairo , perl, gtk, python, glib, gobjectIntrospection, libevent, zlib, autoreconfHook -, fetchFromGitHub +, fetchFromGitHub, libmpack }: let @@ -101,7 +101,7 @@ let preBuild = '' makeFlagsArray=( - LUA_LDIR="$out/share/lua/${lua.luaversion}" + lua_ldir="$out/share/lua/${lua.luaversion}" LUA_INC="-I${lua}/include" LUA_CDIR="$out/lib/lua/${lua.luaversion}" EXPAT_INC="-I${expat.dev}/include"); ''; @@ -363,22 +363,6 @@ let }; }; - luaMessagePack = buildLuaPackage rec { - name = "lua-MessagePack-${version}"; - version = "0.3.1"; - src = fetchzip { - url = "https://github.com/fperrad/lua-MessagePack/archive/${version}.tar.gz"; - sha256 = "1xlif8fkwd8bb78wrvf2z309p7apms350lbg6qavylsvz57lkjm6"; - }; - buildInputs = [ unzip ]; - - meta = { - homepage = "http://fperrad.github.io/lua-MessagePack/index.html"; - hydraPlatforms = stdenv.lib.platforms.linux; - license = stdenv.lib.licenses.mit; - }; - }; - lgi = stdenv.mkDerivation rec { name = "lgi-${version}"; version = "0.7.2"; @@ -405,6 +389,28 @@ let ''; }; + mpack = buildLuaPackage rec { + name = "lua-mpack-${libmpack.version}"; + src = libmpack.src; + sourceRoot = "libmpack-${libmpack.rev}-src/binding/lua"; + buildInputs = [ libmpack ]; #libtool lua pkgconfig ]; + dontBuild = true; + preInstall = '' + mkdir -p $out/lib/lua/${lua.luaversion} + ''; + installFlags = [ + "USE_SYSTEM_LUA=yes" + "LUA_VERSION_MAJ_MIN=" + "LUA_CMOD_INSTALLDIR=$$out/lib/lua/${lua.luaversion}" + ]; + meta = { + description = "Simple implementation of msgpack in C Lua 5.1"; + homepage = "https://github.com/tarruda/libmpack"; + hydraPlatforms = stdenv.lib.platforms.linux; + license = stdenv.lib.licenses.mit; + }; + }; + vicious = stdenv.mkDerivation rec { name = "vicious-${version}"; version = "2.1.3"; From 66c73b3f369313c74761688d8357acb0d8ab08b2 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Sat, 4 Jun 2016 18:05:12 +0200 Subject: [PATCH 262/520] xonsh: 0.2.7 -> 0.3.2 * pythonPackages.prompt_toolkit make it build for py35 --- pkgs/shells/xonsh/default.nix | 45 +++++++++++++++++++----------- pkgs/top-level/python-packages.nix | 5 ++-- 2 files changed, 32 insertions(+), 18 deletions(-) diff --git a/pkgs/shells/xonsh/default.nix b/pkgs/shells/xonsh/default.nix index 5af78c27266f..395132bc2d82 100644 --- a/pkgs/shells/xonsh/default.nix +++ b/pkgs/shells/xonsh/default.nix @@ -1,31 +1,44 @@ -{stdenv, fetchurl, python3Packages}: +{ stdenv, fetchFromGitHub, python3Packages, glibcLocales, coreutils }: python3Packages.buildPythonApplication rec { name = "xonsh-${version}"; - version = "0.2.7"; + version = "0.3.2"; - # The logo xonsh prints during build contains unicode characters, and this - # fails because locales have not been set up in the build environment. - # We can fix this on Linux by setting: - # export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive - # but this would not be a cross platform solution, so it's simpler to just - # patch the setup.py script to not print the logo during build. - prePatch = '' - substituteInPlace setup.py --replace "print(logo)" "" + src = fetchFromGitHub { + owner = "scopatz"; + repo = "xonsh"; + rev = version; + sha256= "0cqfrpvkgzk0q3dykavqxwfqrx61y8rbzixmwcv8pfa9r2sya24q"; + }; + + ## The logo xonsh prints during build contains unicode characters, and this + ## fails because locales have not been set up in the build environment. + ## We can fix this on Linux by setting: + ## export LOCALE_ARCHIVE=${pkgs.glibcLocales}/lib/locale/locale-archive + ## but this would not be a cross platform solution, so it's simpler to just + ## patch the setup.py script to not print the logo during build. + #prePatch = '' + # substituteInPlace setup.py --replace "print(logo)" "" + #''; + patchPhase = '' + rm xonsh/winutils.py + sed -i -e "s|/bin/ls|${coreutils}/bin/ls|" tests/test_execer.py + rm tests/test_main.py + rm tests/test_man.py ''; - propagatedBuildInputs = [ python3Packages.ply ]; + checkPhase = '' + HOME=$TMPDIR nosetests -x + ''; - src = fetchurl { - url = "mirror://pypi/x/xonsh/${name}.tar.gz"; - sha256= "10pglgmzj6l0l8mb3r2rxnbigqigcqn9njcgdcrg7s1b409cq4md"; - }; + buildInputs = with python3Packages; [ glibcLocales nose pygments ]; + propagatedBuildInputs = with python3Packages; [ ply prompt_toolkit ]; meta = with stdenv.lib; { description = "A Python-ish, BASHwards-compatible shell"; homepage = "http://xonsh.org"; license = licenses.bsd3; - maintainers = [ maintainers.spwhitt ]; + maintainers = with maintainers; [ spwhitt garbas ]; platforms = platforms.all; }; } diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 60dca7f1deca..7d7c4bc58aaa 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -16773,8 +16773,9 @@ in modules // { sha256 = "192fyzs0hyq0k7wxxl00jwl334l5hwwmdflhvjqqrlj0dsgfs22i"; url = "mirror://pypi/p/prompt_toolkit/${name}.tar.gz"; }; - - disabled = isPy35; + checkPhase = '' + rm prompt_toolkit/win32_types.py + ''; buildInputs = with self; [ jedi ipython pygments ]; propagatedBuildInputs = with self; [ docopt six wcwidth ]; From d33bf90a6f1b77e87eb5b9547e9b447589ff8259 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 13:20:13 -0400 Subject: [PATCH 263/520] maintainers: add chris-martin --- lib/maintainers.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 7ff47791190f..068c6e877f4e 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -75,6 +75,7 @@ chaoflow = "Florian Friesdorf "; chattered = "Phil Scott "; choochootrain = "Hurshal Patel "; + chris-martin = "Chris Martin "; chrisjefferson = "Christopher Jefferson "; christopherpoole = "Christopher Mark Poole "; cleverca22 = "Michael Bishop "; From e93262f077fdf47d16a812899bcca81481775509 Mon Sep 17 00:00:00 2001 From: Chris Martin Date: Sat, 4 Jun 2016 13:18:08 -0400 Subject: [PATCH 264/520] serpent: init at 2016-03-05 --- .../development/compilers/serpent/default.nix | 37 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/development/compilers/serpent/default.nix diff --git a/pkgs/development/compilers/serpent/default.nix b/pkgs/development/compilers/serpent/default.nix new file mode 100644 index 000000000000..5d0b9052dbae --- /dev/null +++ b/pkgs/development/compilers/serpent/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchFromGitHub, ... }: + +stdenv.mkDerivation rec { + name = "serpent-${version}"; + + # I can't find any version numbers, so we're just using the date + # of the last commit. + version = "2016-03-05"; + + src = fetchFromGitHub { + owner = "ethereum"; + repo = "serpent"; + rev = "51ee60857fe53c871fa916ef66fc1b4255bb9433"; + sha256 = "1bns9wgn5i1ahj19qx7v1wwdy8ca3q3pigxwznm5nywsw7s7lqxs"; + }; + + installPhase = '' + mkdir -p $out/bin + mv serpent $out/bin + ''; + + meta = with stdenv.lib; { + description = "Compiler for the Serpent language for Ethereum"; + longDescription = '' + Serpent is one of the high-level programming languages used to + write Ethereum contracts. The language, as suggested by its name, + is designed to be very similar to Python; it is intended to be + maximally clean and simple, combining many of the efficiency + benefits of a low-level language with ease-of-use in programming + style, and at the same time adding special domain-specific + features for contract programming. + ''; + homepage = https://github.com/ethereum/wiki/wiki/Serpent; + license = with licenses; [ wtfpl ]; + maintainers = with maintainers; [ chris-martin ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1e95fa181cd6..195dc363dbcc 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5319,6 +5319,8 @@ in sdcc = callPackage ../development/compilers/sdcc { boost = boost159; }; + serpent = callPackage ../development/compilers/serpent { }; + smlnjBootstrap = callPackage ../development/compilers/smlnj/bootstrap.nix { }; smlnj = if stdenv.isDarwin then callPackage ../development/compilers/smlnj { } From 213f882fd38aba19d00e513de744aad8ac358515 Mon Sep 17 00:00:00 2001 From: Leon Isenberg Date: Mon, 30 May 2016 04:12:26 +0200 Subject: [PATCH 265/520] atom: patchelf ctags binary --- pkgs/applications/editors/atom/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/applications/editors/atom/default.nix b/pkgs/applications/editors/atom/default.nix index e3dc6b4406ae..5f0ba1b19015 100644 --- a/pkgs/applications/editors/atom/default.nix +++ b/pkgs/applications/editors/atom/default.nix @@ -31,6 +31,8 @@ stdenv.mkDerivation rec { patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath "${atomEnv.libPath}" \ $out/share/atom/resources/app/apm/bin/node + patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ + $out/share/atom/resources/app.asar.unpacked/node_modules/symbols-view/vendor/ctags-linux ''; meta = with stdenv.lib; { From 54f636371a7e002e24888ae3bea33f66199cc8bb Mon Sep 17 00:00:00 2001 From: Paul Hendry Date: Fri, 3 Jun 2016 13:40:25 -0700 Subject: [PATCH 266/520] terraria-server: 1.3.0.8 -> 1.3.1.1 --- pkgs/games/terraria-server/default.nix | 21 +++++++++------------ 1 file changed, 9 insertions(+), 12 deletions(-) diff --git a/pkgs/games/terraria-server/default.nix b/pkgs/games/terraria-server/default.nix index 4eeefc2801b5..59dabf2f9cde 100644 --- a/pkgs/games/terraria-server/default.nix +++ b/pkgs/games/terraria-server/default.nix @@ -1,26 +1,23 @@ -{ stdenv, lib, file, fetchurl }: +{ stdenv, lib, file, fetchurl, unzip }: assert stdenv.system == "x86_64-linux"; stdenv.mkDerivation rec { name = "terraria-server-${version}"; - version = "1308"; + version = "1.3.1.1"; + urlVersion = lib.replaceChars ["."] [""] version; src = fetchurl { - url = http://terraria.org/server/terraria-server-linux-1308.tar.gz; - sha256 = "0cx3nx7wmzcw9l0nz9zm4amccl8nrd09hlb3jc1yrqcaswbyxc8a"; + url = "http://terraria.org/server/terraria-server-${urlVersion}.zip"; + sha256 = "0bwh0na0dy6cjc1xchd5sp3c7av50q38hk03219dmqd72n9p44rq"; }; - buildInputs = [ file ]; - - sourceRoot = "."; + buildInputs = [ file unzip ]; installPhase = '' mkdir -p $out/bin - cp -r * $out/ - ln -s $out/terraria-server-linux-${version}/TerrariaServer.bin.x86_64 $out/bin/TerrariaServer - + cp -r Linux $out/ + ln -s "$out/Linux/TerrariaServer.bin.x86_64" $out/bin/TerrariaServer # Fix "/lib64/ld-linux-x86-64.so.2" like references in ELF executables. - echo "running patchelf on prebuilt binaries:" find "$out" | while read filepath; do if file "$filepath" | grep -q "ELF.*executable"; then echo "setting interpreter $(cat "$NIX_CC"/nix-support/dynamic-linker) in $filepath" @@ -32,7 +29,7 @@ stdenv.mkDerivation rec { meta = with lib; { homepage = http://terraria.org; - description = "Dedicated server for the main game"; + description = "Dedicated server for Terraria, a 2D action-adventure sandbox"; platforms = platforms.linux; license = licenses.unfree; }; From 440004a017d3dce1356e527ee6c1667c34c7a710 Mon Sep 17 00:00:00 2001 From: Brandon Kase Date: Sat, 4 Jun 2016 17:21:56 -0700 Subject: [PATCH 267/520] vimPlugins: add purescript plugins --- pkgs/misc/vim-plugins/default.nix | 22 ++++++++++++++++++++++ pkgs/misc/vim-plugins/vim-plugin-names | 2 ++ 2 files changed, 24 insertions(+) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index f2fdbd292b48..800caad76e00 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1301,6 +1301,28 @@ rec { }; + psc-ide-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "psc-ide-vim-2016-06-04"; + src = fetchgit { + url = "git://github.com/frigoeu/psc-ide-vim"; + rev = "27c000f0f27c7a4d05f001320ddcf1ae15b22eb7"; + sha256 = "1vgxf5kziv00mi346zw3b2dnxygxk0jyxg41y6w1j22yrp9id1k2"; + }; + dependencies = [ ]; + + }; + + purescript-vim = buildVimPluginFrom2Nix { # created by nix#NixDerivation + name = "purescript-vim-2016-06-04"; + src = fetchgit { + url = "git://github.com/raichoo/purescript-vim"; + rev = "92dd6bc647b45444e9d5e0550bdc3c56928f9762"; + sha256 = "090vpff58lzzhqp28p27am5s8s6ngjxw6j4y46zaixcxxx7wqzha"; + }; + dependencies = [ ]; + + }; + quickfixstatus = buildVimPluginFrom2Nix { # created by nix#NixDerivation name = "quickfixstatus-2011-09-02"; src = fetchgit { diff --git a/pkgs/misc/vim-plugins/vim-plugin-names b/pkgs/misc/vim-plugins/vim-plugin-names index de87046d3bc9..cdb411051aa4 100644 --- a/pkgs/misc/vim-plugins/vim-plugin-names +++ b/pkgs/misc/vim-plugins/vim-plugin-names @@ -36,6 +36,7 @@ "github:esneider/YUNOcommit.vim" "github:fatih/vim-go" "github:flazz/vim-colorschemes" +"github:frigoeu/psc-ide-vim" "github:google/vim-jsonnet" "github:hecal3/vim-leader-guide" "github:idris-hackers/idris-vim" @@ -68,6 +69,7 @@ "github:osyo-manga/shabadou.vim" "github:osyo-manga/vim-watchdogs" "github:racer-rust/vim-racer" +"github:raichoo/purescript-vim" "github:rust-lang/rust.vim" "github:shougo/neocomplete.vim" "github:shougo/neosnippet-snippets" From 64328ca4757beb50016774288f2219290587bfea Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 5 Jun 2016 13:40:26 +0800 Subject: [PATCH 268/520] openldap: fix example for multiple-outputs and formatting --- nixos/modules/services/databases/openldap.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/nixos/modules/services/databases/openldap.nix b/nixos/modules/services/databases/openldap.nix index 9e86559dda04..cbdc676d47bd 100644 --- a/nixos/modules/services/databases/openldap.nix +++ b/nixos/modules/services/databases/openldap.nix @@ -52,11 +52,12 @@ in description = " sldapd.conf configuration "; - example = '' - include ''${pkgs.openldap}/etc/openldap/schema/core.schema - include ''${pkgs.openldap}/etc/openldap/schema/cosine.schema - include ''${pkgs.openldap}/etc/openldap/schema/inetorgperson.schema - include ''${pkgs.openldap}/etc/openldap/schema/nis.schema + example = literalExample '' + ''' + include ${pkgs.openldap.out}/etc/openldap/schema/core.schema + include ${pkgs.openldap.out}/etc/openldap/schema/cosine.schema + include ${pkgs.openldap.out}/etc/openldap/schema/inetorgperson.schema + include ${pkgs.openldap.out}/etc/openldap/schema/nis.schema database bdb suffix dc=example,dc=org @@ -64,6 +65,7 @@ in # NOTE: change after first start rootpw secret directory /var/db/openldap + ''' ''; }; }; From 0b3e1f8f7c2abb34ec9d81b6394db7a530911743 Mon Sep 17 00:00:00 2001 From: "Bruno Bzeznik Bruno.Bzeznik@imag.fr" Date: Thu, 26 May 2016 15:27:04 +0200 Subject: [PATCH 269/520] netcdf: added parallel i/o support --- pkgs/development/libraries/netcdf/default.nix | 28 +++++++++++++------ pkgs/top-level/all-packages.nix | 4 +++ 2 files changed, 23 insertions(+), 9 deletions(-) diff --git a/pkgs/development/libraries/netcdf/default.nix b/pkgs/development/libraries/netcdf/default.nix index 9659ae5273de..a65b41c02614 100644 --- a/pkgs/development/libraries/netcdf/default.nix +++ b/pkgs/development/libraries/netcdf/default.nix @@ -1,22 +1,32 @@ -{ stdenv, fetchurl, - zlib, hdf5, m4, - curl # for DAP +{ stdenv +, fetchurl +, zlib +, hdf5 +, m4 +, curl # for DAP }: - -stdenv.mkDerivation rec { + +let + mpiSupport = hdf5.mpiSupport; + mpi = hdf5.mpi; +in stdenv.mkDerivation rec { name = "netcdf-4.3.3.1"; src = fetchurl { url = "http://www.unidata.ucar.edu/downloads/netcdf/ftp/${name}.tar.gz"; sha256 = "06ds8zm4qvjlqvv4qb637cqr0xgvbhnghrddisad5vj81s5kvpmx"; }; - buildInputs = [ - zlib hdf5 m4 curl - ]; + buildInputs = [ hdf5 zlib m4 curl mpi]; + + passthru = { + mpiSupport = mpiSupport; + inherit mpi; + }; configureFlags = [ "--enable-netcdf-4" "--enable-dap" "--enable-shared" - ]; + ] + ++ (stdenv.lib.optionals mpiSupport [ "--enable-parallel-tests" ]); } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 978148c4e558..17a1c1d855dd 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2548,6 +2548,10 @@ in netatalk = callPackage ../tools/filesystems/netatalk { }; netcdf = callPackage ../development/libraries/netcdf { }; + + netcdf-mpi = appendToName "mpi" (netcdf.override { + hdf5 = hdf5-mpi; + }); netcdfcxx4 = callPackage ../development/libraries/netcdf-cxx4 { }; From 7c6b575c53990234f3ccae580fef13e8ab5180e3 Mon Sep 17 00:00:00 2001 From: ne0phyte Date: Thu, 31 Mar 2016 02:22:42 +0200 Subject: [PATCH 270/520] avr-gcc-libc: binutils 2.25->2.26, gcc 4.8.4->5.3.0, avr-libc 1.8.1->2.0.0 All packages updated to support more recent Atmel MCUs. --- .../misc/avr-gcc-with-avr-libc/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix index cbd38903aac8..dedbc58dd6b3 100644 --- a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix +++ b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix @@ -5,18 +5,18 @@ stdenv.mkDerivation { srcs = [ (fetchurl { - url = "mirror://gnu/binutils/binutils-2.25.tar.bz2"; - sha256 = "08r9i26b05zcwb9zxb6zllpfdiiicdfsgbpsjlrjmvx3rxjzrpi2"; + url = "mirror://gnu/binutils/binutils-2.26.tar.bz2"; + sha256 = "1ngc2h3knhiw8s22l8y6afycfaxr5grviqy7mwvm4bsl14cf9b62"; }) (fetchurl { - url = "mirror://gcc/releases/gcc-4.8.4/gcc-4.8.4.tar.bz2"; - sha256 = "4a80aa23798b8e9b5793494b8c976b39b8d9aa2e53cd5ed5534aff662a7f8695"; + url = "mirror://gcc/releases/gcc-5.3.0/gcc-5.3.0.tar.bz2"; + sha256 = "1ny4smkp5bzs3cp8ss7pl6lk8yss0d9m4av1mvdp72r1x695akxq"; }) (fetchurl { - url = http://download.savannah.gnu.org/releases/avr-libc/avr-libc-1.8.1.tar.bz2; - sha256 = "0sd9qkvhmk9av4g1f8dsjwc309hf1g0731bhvicnjb3b3d42l1n3"; + url = http://download.savannah.gnu.org/releases/avr-libc/avr-libc-2.0.0.tar.bz2; + sha256 = "15svr2fx8j6prql2il2fc0ppwlv50rpmyckaxx38d3gxxv97zpdj"; }) ]; From 4c722ad380dc9885721f8722158e8d7cd1eeab37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Forsman?= Date: Sun, 5 Jun 2016 11:57:40 +0200 Subject: [PATCH 271/520] avr-gcc-libc: strip trailing whitespace --- .../misc/avr-gcc-with-avr-libc/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix index dedbc58dd6b3..87a0d0dda9b7 100644 --- a/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix +++ b/pkgs/development/misc/avr-gcc-with-avr-libc/default.nix @@ -19,20 +19,20 @@ stdenv.mkDerivation { sha256 = "15svr2fx8j6prql2il2fc0ppwlv50rpmyckaxx38d3gxxv97zpdj"; }) ]; - + sourceRoot = "."; nativeBuildInputs = [ texinfo ]; - + buildInputs = [ gmp mpfr libmpc zlib ]; - + # Make sure we don't strip the libraries in lib/gcc/avr. stripDebugList= [ "bin" "avr/bin" "libexec" ]; - + installPhase = '' # important, without this gcc won't find the binutils executables export PATH=$PATH:$out/bin - + # Binutils. pushd binutils-*/ mkdir obj-avr @@ -64,7 +64,7 @@ stdenv.mkDerivation { make install popd ''; - + meta = with stdenv.lib; { description = "AVR development environment including binutils, avr-gcc and avr-libc"; # I've tried compiling the packages separately.. too much hassle. This just works. Fine. From 3f5186fd54c1b126570b1d61ab02e6df0ea8d098 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Teo=20Klestrup=20R=C3=B6ijezon?= Date: Sun, 5 Jun 2016 12:48:06 +0200 Subject: [PATCH 272/520] nginxModules.lua: 0.10.0 -> 0.10.5 --- pkgs/servers/http/nginx/modules.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix index 888efc006d0f..2785bd27d77e 100644 --- a/pkgs/servers/http/nginx/modules.nix +++ b/pkgs/servers/http/nginx/modules.nix @@ -81,8 +81,8 @@ src = fetchFromGitHub { owner = "openresty"; repo = "lua-nginx-module"; - rev = "v0.10.0"; - sha256 = "0isdqrnjhfy4zlydj4csf91i9184ykazyah3i63jfrmmarxr5li1"; + rev = "v0.10.5"; + sha256 = "0wz5j4kqa6hk7ar42bkxp0hd74psjy6sfsldh1a6p93z349iz4v5"; }; inputs = [ pkgs.luajit ]; preConfigure = '' From 5016ad645ff77b21e4fa0c18cde7fa1006cf3c77 Mon Sep 17 00:00:00 2001 From: Kranium Gikos Mendoza Date: Sun, 5 Jun 2016 21:57:28 +0800 Subject: [PATCH 273/520] duc: 1.3.3 -> 1.4.1 --- pkgs/tools/misc/duc/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/misc/duc/default.nix b/pkgs/tools/misc/duc/default.nix index e113bd86bac3..ba1abb7c86df 100644 --- a/pkgs/tools/misc/duc/default.nix +++ b/pkgs/tools/misc/duc/default.nix @@ -1,15 +1,17 @@ -{ stdenv, fetchurl, pkgconfig, tokyocabinet, cairo, pango, ncurses }: +{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, tokyocabinet, cairo, pango, ncurses }: stdenv.mkDerivation rec { name = "duc-${version}"; - version = "1.3.3"; + version = "1.4.1"; - src = fetchurl { - url = "http://duc.zevv.nl/release/${name}.tar.gz"; - sha256 = "09mp8cq6s43sfhvms4mwhx3lw51vkaxgg34fbfbimafyjh4jdx3k"; + src = fetchFromGitHub { + owner = "zevv"; + repo = "duc"; + rev = "${version}"; + sha256 = "0rnar2zacsb9rvdmp1a62xixhy69s5vh0nwgrklqxhb19qkzhdp7"; }; - buildInputs = [ pkgconfig tokyocabinet cairo pango ncurses ]; + buildInputs = [ autoreconfHook pkgconfig tokyocabinet cairo pango ncurses ]; meta = with stdenv.lib; { homepage = http://duc.zevv.nl/; From 179f5e9500ac1bfaff11dbf5f7aa2b02b3793f5f Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 15:31:15 +0200 Subject: [PATCH 274/520] moreutils: 0.58 -> 0.59 --- pkgs/tools/misc/moreutils/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix index d7e529dea9e3..a232028976dc 100644 --- a/pkgs/tools/misc/moreutils/default.nix +++ b/pkgs/tools/misc/moreutils/default.nix @@ -3,11 +3,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "moreutils-${version}"; - version = "0.58"; + version = "0.59"; src = fetchurl { url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz"; - sha256 = "02n00vqp6jxbxr5v3rdjxmzp6kxxjdkjgcclam6wrw8qamsbljww"; + sha256 = "1d6ik3j4lwp90vb93p7yv60k6vk2chz448d1z9xrmxvv371i33m4"; }; preBuild = '' From 92471cbc8fd98d2c79dbf9b1130ffddcb1e21422 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 16:53:16 +0200 Subject: [PATCH 275/520] rmlint: 2.4.2 -> 2.4.4 --- pkgs/tools/misc/rmlint/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/rmlint/default.nix b/pkgs/tools/misc/rmlint/default.nix index 3c3f8c864396..e962bcb0155d 100644 --- a/pkgs/tools/misc/rmlint/default.nix +++ b/pkgs/tools/misc/rmlint/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "rmlint-${version}"; - version = "2.4.2"; + version = "2.4.4"; src = fetchurl { url = "https://github.com/sahib/rmlint/archive/v${version}.tar.gz"; - sha256 = "0rfgzamrw89z67jxg8b5jqjmvql00304n0ai4a81bfl90gybyncf"; + sha256 = "1g38wmf58m9lbdngfsbz3dbkd44yqxppzvgi5mwag0w7r7khhir9"; }; configurePhase = "scons config"; From ba792bf234e31dc01a92b29dde24b59b1f3f7305 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 17:49:15 +0200 Subject: [PATCH 276/520] pythonPackages.jellyfish: 0.5.0 -> 0.5.2 --- 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 c17b808f1676..1050ca673433 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -11469,12 +11469,12 @@ in modules // { }); jellyfish = buildPythonPackage rec { - version = "0.5.0"; + version = "0.5.2"; name = "jellyfish-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/j/jellyfish/${name}.tar.gz"; - sha256 = "04p80gwwlhxjp8zpjf70a62x69l9rlvnz1pwi5ar52gyajn8z6z1"; + sha256 = "15xk0kbr1gig9r1mp22lk9mk3jyi886h8ywn9diixhnyl4q6dacn"; }; buildInputs = with self; [ pytest unicodecsv ]; From 42e2e92472c82f522b908a48a10e319de25659fa Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 17:41:13 +0200 Subject: [PATCH 277/520] pythonPackages.bottle: 0.12.8 -> 0.12.9 --- 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 c17b808f1676..d794615acc94 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -2717,12 +2717,12 @@ in modules // { }; bottle = buildPythonPackage rec { - version = "0.12.8"; + version = "0.12.9"; name = "bottle-${version}"; src = pkgs.fetchurl { url = "mirror://pypi/b/bottle/${name}.tar.gz"; - sha256 = "1b2hq0l4nwh75s2w6wgiqlkj4q1qvyx6a94axl2k4lsym1aifpfd"; + sha256 = "0l80a1qkg7zbi8s077brfgm5w4ypwxgq9rvsvw16snc5jfsj82py"; }; propagatedBuildInputs = with self; [ setuptools ]; From 3004539bb72f1bfec0eab499ff0275b8db2f6b33 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 17:32:23 +0200 Subject: [PATCH 278/520] pythonPackages.hg-git: 0.8.2 -> 0.8.5 --- pkgs/top-level/python-packages.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c17b808f1676..9a3ce44d5e5f 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9147,11 +9147,11 @@ in modules // { hg-git = buildPythonPackage rec { name = "hg-git-${version}"; - version = "0.8.2"; + version = "0.8.5"; src = pkgs.fetchurl { url = "mirror://pypi/h/hg-git/${name}.tar.gz"; - sha256 = "0hz0i6qgcn3ic292sny86mdl1psj1bnczcai1b1kzvwcla6z99py"; + sha256 = "10j7l1p2wx7s5nb6s35z1f3mcz2svz9ilcm26f3la9h9c76b7jpm"; }; propagatedBuildInputs = with self; [ dulwich ]; From 4a61a0d2bb440144e55f17105bbc0ee52c137ce4 Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 18:30:13 +0200 Subject: [PATCH 279/520] pythonPackages.restview: 2.5.0 -> 2.5.2 --- 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 c17b808f1676..c8100021dabc 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -19488,11 +19488,11 @@ in modules // { restview = buildPythonPackage rec { name = "restview-${version}"; - version = "2.5.0"; + version = "2.5.2"; src = pkgs.fetchurl { url = "mirror://pypi/r/restview/${name}.tar.gz"; - sha256 = "18diqmh6vwz6imcmvwa7s2v4562y73n072d5d7az2r2ks0g2bzdb"; + sha256 = "0gmdmnlhiy6lagi17maiz312374hk6g6x90fhjwnbrwxif4r9bd5"; }; propagatedBuildInputs = with self; [ docutils readme pygments ]; From f3a753829d8e385255db2a85ff67798ea34c86fd Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Tue, 10 May 2016 20:49:26 +0200 Subject: [PATCH 280/520] auctex: enable preview --- pkgs/tools/typesetting/tex/auctex/default.nix | 25 ++++++++++++++----- 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/pkgs/tools/typesetting/tex/auctex/default.nix b/pkgs/tools/typesetting/tex/auctex/default.nix index 6723526ff629..0d2282a4fd8f 100644 --- a/pkgs/tools/typesetting/tex/auctex/default.nix +++ b/pkgs/tools/typesetting/tex/auctex/default.nix @@ -1,10 +1,17 @@ -{ stdenv, fetchurl, emacs, texLive }: +{ stdenv, fetchurl, emacs, texlive, ghostscript }: -stdenv.mkDerivation ( rec { - pname = "auctex"; +let auctex = stdenv.mkDerivation ( rec { version = "11.89"; name = "${pname}-${version}"; + # Make this a valid tex(live-new) package; + # the pkgs attribute is provided with a hack below. + pname = "auctex"; + tlType = "run"; + + + outputs = [ "out" "tex" ]; + meta = { description = "Extensible package for writing and formatting TeX files in GNU Emacs and XEmacs"; homepage = http://www.gnu.org/software/auctex; @@ -15,10 +22,16 @@ stdenv.mkDerivation ( rec { sha256 = "1cf9fkkmzjxa4jvk6c01zgxdikr4zzb5pcx8i4r0hwdk0xljkbwq"; }; - buildInputs = [ emacs texLive ]; + buildInputs = [ emacs texlive.combined.scheme-basic ghostscript ]; + + preConfigure = '' + mkdir -p "$tex" + ''; configureFlags = [ "--with-lispdir=\${out}/share/emacs/site-lisp" - "--disable-preview" + "--with-texmf-dir=\${tex}" ]; -}) +}); + +in auctex // { pkgs = [ auctex.tex ]; } From 6035e80137e04d56a8766fbac964009ef919cda9 Mon Sep 17 00:00:00 2001 From: Guillaume Maudoux Date: Sun, 31 May 2015 11:38:18 +0200 Subject: [PATCH 281/520] ktikz: init at 0.10 --- pkgs/applications/graphics/ktikz/default.nix | 78 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 7 ++ 2 files changed, 85 insertions(+) create mode 100644 pkgs/applications/graphics/ktikz/default.nix diff --git a/pkgs/applications/graphics/ktikz/default.nix b/pkgs/applications/graphics/ktikz/default.nix new file mode 100644 index 000000000000..ea4826ffaf8e --- /dev/null +++ b/pkgs/applications/graphics/ktikz/default.nix @@ -0,0 +1,78 @@ +{ withKDE ? true +, stdenv, fetchurl, gettext, poppler_qt4, qt4 +# Qt only (no KDE): +, pkgconfig +# With KDE +, cmake, automoc4, kdelibs +}: + +# Warning: You will also need a working pdflatex installation containing (at +# least) auctex and pgf. + +assert withKDE -> kdelibs != null; + +let + version = "0.10"; + + qtikz = { + name = "qtikz-${version}"; + + conf = '' + # installation prefix: + #PREFIX = "" + + # install desktop file here (*nix only): + DESKTOPDIR = ''$''${PREFIX}/share/applications + + # install mimetype here: + MIMEDIR = ''$''${PREFIX}/share/mime/packages + + CONFIG -= debug + CONFIG += release + + # qmake command: + QMAKECOMMAND = qmake + # lrelease command: + LRELEASECOMMAND = lrelease + # qcollectiongenerator command: + #QCOLLECTIONGENERATORCOMMAND = qcollectiongenerator + + # TikZ documentation default file path: + TIKZ_DOCUMENTATION_DEFAULT = ''$''${PREFIX}/share/doc/texmf/pgf/pgfmanual.pdf.gz + ''; + + patchPhase = '' + echo "$conf" > conf.pri + ''; + + configurePhase = '' + qmake PREFIX="$out" ./qtikz.pro + ''; + + buildInputs = [ gettext qt4 poppler_qt4 pkgconfig ]; + }; + + ktikz = { + name = "ktikz-${version}"; + buildInputs = [ kdelibs cmake qt4 automoc4 gettext poppler_qt4 ]; + }; + + common = { + inherit version; + src = fetchurl { + url = "http://www.hackenberger.at/ktikz/ktikz_${version}.tar.gz"; + md5 = "e8f0826cba2447250bcdcd389a71a2ac"; + }; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "Editor for the TikZ language"; + license = licenses.gpl2; + platforms = platforms.linux; + maintainers = [ maintainers.layus ]; + }; + }; + +in stdenv.mkDerivation (common // (if withKDE then ktikz else qtikz)) + diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 17a1c1d855dd..ce0f1e1f5989 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3101,6 +3101,11 @@ in qshowdiff = callPackage ../tools/text/qshowdiff { }; + qtikz = callPackage ../applications/graphics/ktikz { + withKDE = false; + kdelibs = null; + }; + quicktun = callPackage ../tools/networking/quicktun { }; quilt = callPackage ../development/tools/quilt { }; @@ -15641,6 +15646,8 @@ in konversation = callPackage ../applications/networking/irc/konversation { }; + ktikz = callPackage ../applications/graphics/ktikz { }; + kvirc = callPackage ../applications/networking/irc/kvirc { }; krename = callPackage ../applications/misc/krename { From 4df9d2108137406cabd2542ae3bddfa79eeb8aeb Mon Sep 17 00:00:00 2001 From: koral Date: Sun, 5 Jun 2016 16:00:11 +0200 Subject: [PATCH 282/520] pythonPackages.dulwich: 0.10.1a -> 0.12.0 --- pkgs/top-level/python-packages.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index c17b808f1676..c84b29594ab6 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -9126,15 +9126,17 @@ in modules // { dulwich = buildPythonPackage rec { name = "dulwich-${version}"; - version = "0.10.1a"; + version = "0.12.0"; src = pkgs.fetchurl { url = "mirror://pypi/d/dulwich/${name}.tar.gz"; - sha256 = "02rknqarwy7p50693cqswbibqwgxzrfzdq4yhwqxbdmhbsmh0rk6"; + sha256 = "1ihc1bdgxj7i068mhhmkzar56r2vdcj68w0dnsm7aqgcgvrp144g"; }; + LC_ALL = "en_US.UTF-8"; + # Only test dependencies - buildInputs = with self; [ pkgs.git gevent geventhttpclient mock fastimport ]; + buildInputs = with self; [ pkgs.git gevent geventhttpclient pkgs.glibcLocales mock fastimport ]; meta = { description = "Simple Python implementation of the Git file formats and protocols"; From 4edffff1816bd1bf3e2a9f0a7e255d127fb6ca5f Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Sun, 5 Jun 2016 18:10:53 +0000 Subject: [PATCH 283/520] taskwarrior: enable on darwin --- pkgs/applications/misc/taskwarrior/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/taskwarrior/default.nix b/pkgs/applications/misc/taskwarrior/default.nix index 5590e4179db0..eea7ffdcaf23 100644 --- a/pkgs/applications/misc/taskwarrior/default.nix +++ b/pkgs/applications/misc/taskwarrior/default.nix @@ -23,6 +23,6 @@ stdenv.mkDerivation rec { homepage = http://taskwarrior.org; license = licenses.mit; maintainers = with maintainers; [ marcweber jgeerds ]; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; }; } From 97699529331b3152860ae53f0013d52f9476a086 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sun, 5 Jun 2016 12:00:27 -0500 Subject: [PATCH 284/520] Revert "kde5.frameworks: 5.21 -> 5.22" This reverts commit 112d4c71b28c808a70dc73cbb2a1e9ad8c7c8074. This upgrade causes a serious Plasma performance degradation and causes incorrect font rendering. Reverting until the cause is known. --- .../attica.nix | 0 .../baloo.nix | 0 .../bluez-qt.nix | 0 .../breeze-icons.nix | 0 .../default.nix | 0 .../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 .../fetchsrcs.sh | 2 +- .../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/kauth-policy-install.patch | 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 | 0 .../kiconthemes/default.nix | 0 .../kiconthemes/series | 0 .../kidletime.nix | 0 .../kimageformats.nix | 0 .../kinit/default.nix | 0 .../kinit/kinit-libpath.patch | 0 .../kinit/series | 0 .../kio/default.nix | 1 + .../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/ksycoca-buffer-size.patch | 25 + .../kservice/no-canonicalize-path.patch | 0 .../qdiriterator-follow-symlinks.patch | 0 .../kde-5/frameworks-5.21/kservice/series | 3 + .../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 .../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.21/srcs.nix | 573 +++++++++++++++++ .../threadweaver.nix | 0 .../kde-5/frameworks-5.22/kservice/series | 2 - pkgs/desktops/kde-5/frameworks-5.22/srcs.nix | 581 ------------------ pkgs/top-level/all-packages.nix | 2 +- 107 files changed, 604 insertions(+), 585 deletions(-) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/fetchsrcs.sh (96%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kauth/kauth-policy-install.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kiconthemes/default-theme-breeze.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kiconthemes/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kio/default.nix (96%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kservice/default.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kservice/qdiriterator-follow-symlinks.patch (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/series rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kwallet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/sonnet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.21/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.22 => frameworks-5.21}/threadweaver.nix (100%) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.22/kservice/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.22/srcs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/attica.nix b/pkgs/desktops/kde-5/frameworks-5.21/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/attica.nix rename to pkgs/desktops/kde-5/frameworks-5.21/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/baloo.nix rename to pkgs/desktops/kde-5/frameworks-5.21/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/default.nix rename to pkgs/desktops/kde-5/frameworks-5.21/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/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.21/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.21/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.21/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh b/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh similarity index 96% rename from pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh rename to pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh index 64b3ddf9abc0..dde749b218c0 100755 --- a/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh +++ b/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.22/" +RELEASE_URL="http://download.kde.org/stable/frameworks/5.21/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/karchive.nix rename to pkgs/desktops/kde-5/frameworks-5.21/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch b/pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch rename to pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kauth/series b/pkgs/desktops/kde-5/frameworks-5.21/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kauth/series rename to pkgs/desktops/kde-5/frameworks-5.21/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kded.nix b/pkgs/desktops/kde-5/frameworks-5.21/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kded.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/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.21/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/khtml.nix rename to pkgs/desktops/kde-5/frameworks-5.21/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix rename to pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kinit/series b/pkgs/desktops/kde-5/frameworks-5.21/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kinit/series rename to pkgs/desktops/kde-5/frameworks-5.21/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix similarity index 96% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix index 7e4317a3f099..cfa597e9cd10 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix @@ -22,6 +22,7 @@ kdeFramework { wrapQtProgram "$out/bin/kcookiejar5" wrapQtProgram "$out/bin/ktelnetservice5" wrapQtProgram "$out/bin/ktrash5" + wrapQtProgram "$out/bin/kmailservice5" wrapQtProgram "$out/bin/protocoltojson" ''; } diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kio/series b/pkgs/desktops/kde-5/frameworks-5.21/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kio/series rename to pkgs/desktops/kde-5/frameworks-5.21/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjs.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix rename to pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/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.21/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.21/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.21/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpackage/series rename to pkgs/desktops/kde-5/frameworks-5.21/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kparts.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kpty.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kross.nix b/pkgs/desktops/kde-5/frameworks-5.21/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kross.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/krunner.nix rename to pkgs/desktops/kde-5/frameworks-5.21/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch new file mode 100644 index 000000000000..e65d4505ed26 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch @@ -0,0 +1,25 @@ +Index: kservice-5.21.0/src/sycoca/ksycocautils.cpp +=================================================================== +--- kservice-5.21.0.orig/src/sycoca/ksycocautils.cpp ++++ kservice-5.21.0/src/sycoca/ksycocautils.cpp +@@ -24,9 +24,10 @@ + + void KSycocaUtilsPrivate::read(QDataStream &s, QString &str) + { ++ const qint32 bufferSize = 65528; + quint32 bytes; + s >> bytes; // read size of string +- if (bytes > 8192) { // null string or too big ++ if (bytes > bufferSize) { // null string or too big + if (bytes != 0xffffffff) { + KSycoca::flagError(); + } +@@ -35,7 +36,7 @@ void KSycocaUtilsPrivate::read(QDataStre + int bt = bytes / 2; + str.resize(bt); + QChar *ch = str.data(); +- char t[8192]; ++ char t[bufferSize]; + char *b = t; + s.readRawData(b, bytes); + while (bt--) { diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/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.21/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.21/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/series b/pkgs/desktops/kde-5/frameworks-5.21/kservice/series new file mode 100644 index 000000000000..c1655f686064 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/kservice/series @@ -0,0 +1,3 @@ +qdiriterator-follow-symlinks.patch +no-canonicalize-path.patch +ksycoca-buffer-size.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.21/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.21/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.21/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.21/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.21/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.21/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/solid.nix b/pkgs/desktops/kde-5/frameworks-5.21/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/solid.nix rename to pkgs/desktops/kde-5/frameworks-5.21/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix rename to pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix new file mode 100644 index 000000000000..a4a1f95c52ce --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix @@ -0,0 +1,573 @@ +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh +{ fetchurl, mirror }: + +{ + attica = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/attica-5.21.0.tar.xz"; + sha256 = "1aqfw73g424f60qmpx1lky3qfqrsl1id02388pnlmpa8fnpp940c"; + name = "attica-5.21.0.tar.xz"; + }; + }; + baloo = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/baloo-5.21.0.tar.xz"; + sha256 = "1a5sl2bkrs90mfks93q2hrijp6dpapp2l0fhq7km36mvsrc78yqn"; + name = "baloo-5.21.0.tar.xz"; + }; + }; + bluez-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/bluez-qt-5.21.0.tar.xz"; + sha256 = "0nsnxa4k31l69fapxn49g112948zprc5xr7v3ggxwnxkb1pll60a"; + name = "bluez-qt-5.21.0.tar.xz"; + }; + }; + breeze-icons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/breeze-icons-5.21.0.tar.xz"; + sha256 = "1a7ikdq8a44n42i6swf29aqyfwjh05ir3ym0lzjzdb6133fzlb01"; + name = "breeze-icons-5.21.0.tar.xz"; + }; + }; + extra-cmake-modules = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/extra-cmake-modules-5.21.0.tar.xz"; + sha256 = "1kbc5fkcbz9vkg0jpz10vsfgwajlrsmbl0vrbls5qvrdgbgrwlm3"; + name = "extra-cmake-modules-5.21.0.tar.xz"; + }; + }; + frameworkintegration = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/frameworkintegration-5.21.0.tar.xz"; + sha256 = "0mbpn18cjzd8xznk73slvals86lv77ram09px4l44xgyf019xll8"; + name = "frameworkintegration-5.21.0.tar.xz"; + }; + }; + kactivities = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kactivities-5.21.0.tar.xz"; + sha256 = "09jr7m6vaffdb879jph1ckgri0b9pdyh5q39i7fyi6s277rybcyk"; + name = "kactivities-5.21.0.tar.xz"; + }; + }; + kactivities-stats = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kactivities-stats-5.21.0.tar.xz"; + sha256 = "0vd01b812r0ggbnqsq3y6ik68v0668rzx6npl3h11wdrvlidhyqf"; + name = "kactivities-stats-5.21.0.tar.xz"; + }; + }; + kapidox = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kapidox-5.21.0.tar.xz"; + sha256 = "0w3jch93d8vdqd0g4yl2fxmamrg9hnx1lypnpgw7615wlsb02qyx"; + name = "kapidox-5.21.0.tar.xz"; + }; + }; + karchive = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/karchive-5.21.0.tar.xz"; + sha256 = "042ww21wmm3sf87zqgr2qiyg2j5mjf1mmqpqhpcax4gnjpck5nvc"; + name = "karchive-5.21.0.tar.xz"; + }; + }; + kauth = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kauth-5.21.0.tar.xz"; + sha256 = "03dy36g9y04p3533l2y0m0jlr91m94y0i4wpnlr5ndgccif2a63r"; + name = "kauth-5.21.0.tar.xz"; + }; + }; + kbookmarks = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kbookmarks-5.21.0.tar.xz"; + sha256 = "0qxq5wbddaj1cpjd34q8k65brfbb677gs0y5zh24mqbwcr0rfs6g"; + name = "kbookmarks-5.21.0.tar.xz"; + }; + }; + kcmutils = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcmutils-5.21.0.tar.xz"; + sha256 = "01ch3y43r4cb1sj0gy5a8wq3c6wpx2brn96d7rjm3r3hh5n5xdlj"; + name = "kcmutils-5.21.0.tar.xz"; + }; + }; + kcodecs = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcodecs-5.21.0.tar.xz"; + sha256 = "0wng7kqqxrsz7b4w163j6m2zdhb5pvgbd9n6bn7ggyldn4zl86w7"; + name = "kcodecs-5.21.0.tar.xz"; + }; + }; + kcompletion = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcompletion-5.21.0.tar.xz"; + sha256 = "0r6gsnsjkfvwhrpkch7y44m2yqyxb42bdkc35jxrm8y7xaa8nwi4"; + name = "kcompletion-5.21.0.tar.xz"; + }; + }; + kconfig = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kconfig-5.21.0.tar.xz"; + sha256 = "0w5wvy3yhgh64k8jghyv5fkx9jr828yl11jlihg24hfplnmihkxw"; + name = "kconfig-5.21.0.tar.xz"; + }; + }; + kconfigwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kconfigwidgets-5.21.0.tar.xz"; + sha256 = "030iq46bwiaixn2wf6285y2gg7h1y5xqf6d6bg3xcz0v1xjd3n0f"; + name = "kconfigwidgets-5.21.0.tar.xz"; + }; + }; + kcoreaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcoreaddons-5.21.0.tar.xz"; + sha256 = "16226z60simxgfriwsm6srx39f7wm64mdl39qxaa77wn07i8xmsi"; + name = "kcoreaddons-5.21.0.tar.xz"; + }; + }; + kcrash = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kcrash-5.21.0.tar.xz"; + sha256 = "1mrbmfkzd0dy42ppq8gl1z9liprq722w4f3a499iamqnlsdwq2w8"; + name = "kcrash-5.21.0.tar.xz"; + }; + }; + kdbusaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdbusaddons-5.21.0.tar.xz"; + sha256 = "1yvpan0plm80sw0wai39ffvpswyzy7xiqra69cb8mfxcdl8acjjw"; + name = "kdbusaddons-5.21.0.tar.xz"; + }; + }; + kdeclarative = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdeclarative-5.21.0.tar.xz"; + sha256 = "1m61js8kdnif1106vxs5bv830hyj8j2whv5mlshkj9jbpp9v5qkj"; + name = "kdeclarative-5.21.0.tar.xz"; + }; + }; + kded = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kded-5.21.0.tar.xz"; + sha256 = "138svq07zgabn6razkqp5zxdlw9ajr1966icd82mxsxq1cjgfl4g"; + name = "kded-5.21.0.tar.xz"; + }; + }; + kdelibs4support = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kdelibs4support-5.21.0.tar.xz"; + sha256 = "1q1wyfry2ypa1mk01rabva0cq1ai9lmq8ygsji413p6c1avfrywc"; + name = "kdelibs4support-5.21.0.tar.xz"; + }; + }; + kdesignerplugin = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdesignerplugin-5.21.0.tar.xz"; + sha256 = "0rj79mdgdcm0wlramx5s53ba0jkhravcgkl570ds7s3wwa1aa62j"; + name = "kdesignerplugin-5.21.0.tar.xz"; + }; + }; + kdesu = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdesu-5.21.0.tar.xz"; + sha256 = "13daljcjgrvybj7hbv6l9cwc6cdh45d2zz2ch7cbar46z2zxh5qb"; + name = "kdesu-5.21.0.tar.xz"; + }; + }; + kdewebkit = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdewebkit-5.21.0.tar.xz"; + sha256 = "1rc5i265sagvbqwy96i4dnksc4vnrq864z3rkxqlrx2blwq08550"; + name = "kdewebkit-5.21.0.tar.xz"; + }; + }; + kdnssd = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdnssd-5.21.0.tar.xz"; + sha256 = "0k3qia322cd2h9pcf7k0fg7w91jxc503digjv93vhsfzfhbadf9l"; + name = "kdnssd-5.21.0.tar.xz"; + }; + }; + kdoctools = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kdoctools-5.21.0.tar.xz"; + sha256 = "16ysqwvwmxas56rhg68rzkipszqqahh787ww9rkq9ak2r6d29r6c"; + name = "kdoctools-5.21.0.tar.xz"; + }; + }; + kemoticons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kemoticons-5.21.0.tar.xz"; + sha256 = "1paddfylh1xb4g4h939lzvy7f67syyfsx76gz7w5mdbnqk5xc7fc"; + name = "kemoticons-5.21.0.tar.xz"; + }; + }; + kfilemetadata = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kfilemetadata-5.21.0.tar.xz"; + sha256 = "1jmcvzazcw5klmnzd17a7x6rcwjb6xdrxrn1jjiq8kibdbghx7l0"; + name = "kfilemetadata-5.21.0.tar.xz"; + }; + }; + kglobalaccel = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kglobalaccel-5.21.0.tar.xz"; + sha256 = "1bdd613ybz1cl25sx3ihdfzsjwlxyjx9blidmzbnvv0lb2304hwp"; + name = "kglobalaccel-5.21.0.tar.xz"; + }; + }; + kguiaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kguiaddons-5.21.0.tar.xz"; + sha256 = "01hdrcdsiq3qs620jprv65kk4pvldlm70aghjsi9wk7j3x6qid2x"; + name = "kguiaddons-5.21.0.tar.xz"; + }; + }; + khtml = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/khtml-5.21.0.tar.xz"; + sha256 = "17xvzklhhp6k9wi94s7agc8qnb7gwvx3aa5jbq6d76qn0rsqbzhv"; + name = "khtml-5.21.0.tar.xz"; + }; + }; + ki18n = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ki18n-5.21.0.tar.xz"; + sha256 = "0qm9p77zqz2jy0j5yfv5v6pqska25p790yy1b6wg1gd67561q5bn"; + name = "ki18n-5.21.0.tar.xz"; + }; + }; + kiconthemes = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kiconthemes-5.21.0.tar.xz"; + sha256 = "14a43jca1cyh45dbz5c9lc5yqc376qg3q2c420bk5s44ynpnhp4i"; + name = "kiconthemes-5.21.0.tar.xz"; + }; + }; + kidletime = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kidletime-5.21.0.tar.xz"; + sha256 = "10vdx2sp3hjp20saqlyqdz83jbqhsqyk7gl063lhz00mnk7nk1mn"; + name = "kidletime-5.21.0.tar.xz"; + }; + }; + kimageformats = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kimageformats-5.21.0.tar.xz"; + sha256 = "09m0w5f39y9gq0g00iapay3v09kk24lqwiyjq4y487il865p22ph"; + name = "kimageformats-5.21.0.tar.xz"; + }; + }; + kinit = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kinit-5.21.0.tar.xz"; + sha256 = "19avsq0bi2ys574n0dcn65chd7wrpyp354xfsw45gig28skjiir5"; + name = "kinit-5.21.0.tar.xz"; + }; + }; + kio = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kio-5.21.0.tar.xz"; + sha256 = "08wrjimkv255gbc9y7pxilwxi9nikg3196rzs0fbw4vqdlzl0gjq"; + name = "kio-5.21.0.tar.xz"; + }; + }; + kitemmodels = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kitemmodels-5.21.0.tar.xz"; + sha256 = "1bp02vp08bwsd64wnrr3ivy4k8g1vzv1s5iyiqj99d1gk0fxvv7d"; + name = "kitemmodels-5.21.0.tar.xz"; + }; + }; + kitemviews = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kitemviews-5.21.0.tar.xz"; + sha256 = "16yzcyrg8wa8fvz749x8dbixyga1ggls1fvjns6gdbz5aqm6ib4d"; + name = "kitemviews-5.21.0.tar.xz"; + }; + }; + kjobwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kjobwidgets-5.21.0.tar.xz"; + sha256 = "0y8zmz6wx4igbpc0jlsxrr1yxgyq8hsmynl9fqy3lc2bzmwr9wcp"; + name = "kjobwidgets-5.21.0.tar.xz"; + }; + }; + kjs = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kjs-5.21.0.tar.xz"; + sha256 = "0vsgmz0yn1if11xfbw3f9p0kg2dv1rb26ging4fc860wv2j5gyln"; + name = "kjs-5.21.0.tar.xz"; + }; + }; + kjsembed = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kjsembed-5.21.0.tar.xz"; + sha256 = "1nbc12m86s90y8f5gp62l4f9v4hqy8cmzw4sh0655sczd5vbkvki"; + name = "kjsembed-5.21.0.tar.xz"; + }; + }; + kmediaplayer = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kmediaplayer-5.21.0.tar.xz"; + sha256 = "1hz7l95w57z73wg9ypbqpkxvkw42wgbymv67lg4vdxppplnkqriz"; + name = "kmediaplayer-5.21.0.tar.xz"; + }; + }; + knewstuff = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knewstuff-5.21.0.tar.xz"; + sha256 = "05r11r9r789686i36y0x770f1pc7dwvqzdzclrx22r3lbz708pga"; + name = "knewstuff-5.21.0.tar.xz"; + }; + }; + knotifications = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knotifications-5.21.0.tar.xz"; + sha256 = "0iia73ai2s5w8c3j1kmc8bb7yp1d2cv0yd2k3ilaxf3y9wgsp4x8"; + name = "knotifications-5.21.0.tar.xz"; + }; + }; + knotifyconfig = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/knotifyconfig-5.21.0.tar.xz"; + sha256 = "1mqal5ndr3v54lp7a9a2fm0c0hsiqb7kziw56rz0xd659328k9ix"; + name = "knotifyconfig-5.21.0.tar.xz"; + }; + }; + kpackage = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpackage-5.21.0.tar.xz"; + sha256 = "024k15v0b24hivkjpn3gwn2wdfsng9ralz414i858qj0lm688xk5"; + name = "kpackage-5.21.0.tar.xz"; + }; + }; + kparts = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kparts-5.21.0.tar.xz"; + sha256 = "1s1nk1vdnb3g0ilv2b1m783h8g52yr9hpqz0vscj56m9cn2sf8rv"; + name = "kparts-5.21.0.tar.xz"; + }; + }; + kpeople = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpeople-5.21.0.tar.xz"; + sha256 = "0nfpv4g9zvja9sv3zbpyksbvz1xa8lmncg48awrwbrmf83bxvcjq"; + name = "kpeople-5.21.0.tar.xz"; + }; + }; + kplotting = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kplotting-5.21.0.tar.xz"; + sha256 = "1hrpv1qg6qx4y4wvyq0rxfi0ngq1lgd5l3vwi00ri86xm1qbs4hk"; + name = "kplotting-5.21.0.tar.xz"; + }; + }; + kpty = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kpty-5.21.0.tar.xz"; + sha256 = "1vzgpmagjggssva6r57hd094dv3vxf3gpsr3xpvspa9l1mk4d35c"; + name = "kpty-5.21.0.tar.xz"; + }; + }; + kross = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/kross-5.21.0.tar.xz"; + sha256 = "0c1gbaifzswz4dcdwzka5mnlm07i463dpwc2fihmzn67skm4ybix"; + name = "kross-5.21.0.tar.xz"; + }; + }; + krunner = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/portingAids/krunner-5.21.0.tar.xz"; + sha256 = "1jn8fr83c71kz25yzd1qay9as6dvzl1xvlg1vyspdifxg43vqzq4"; + name = "krunner-5.21.0.tar.xz"; + }; + }; + kservice = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kservice-5.21.0.tar.xz"; + sha256 = "19cnapz23ji5p01r9rgj91rzph3mqqrmnfwprmi9p3h2w68njhv6"; + name = "kservice-5.21.0.tar.xz"; + }; + }; + ktexteditor = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ktexteditor-5.21.0.tar.xz"; + sha256 = "1m9zipx5kisxsy037py709c2ri5qvix6n362l981kbbvcgkpiaq2"; + name = "ktexteditor-5.21.0.tar.xz"; + }; + }; + ktextwidgets = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/ktextwidgets-5.21.0.tar.xz"; + sha256 = "11nsi6j9b2678bqaa0ykp8as5lw1v9421b73dd1qxqrpdqfkxyzn"; + name = "ktextwidgets-5.21.0.tar.xz"; + }; + }; + kunitconversion = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kunitconversion-5.21.0.tar.xz"; + sha256 = "03vnls5df0c2bqyw9a04hlc3cn34y6xwx693klh27jmm37r776yh"; + name = "kunitconversion-5.21.0.tar.xz"; + }; + }; + kwallet = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwallet-5.21.0.tar.xz"; + sha256 = "1rmfy21r2p79gwg1kq26g2fqnclbsww9rz3py368pk4s1lrzafii"; + name = "kwallet-5.21.0.tar.xz"; + }; + }; + kwidgetsaddons = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwidgetsaddons-5.21.0.tar.xz"; + sha256 = "1gqyc0j77sm6i2511qnz0sllmfxjgjb9qpi8551np16zviqa52k7"; + name = "kwidgetsaddons-5.21.0.tar.xz"; + }; + }; + kwindowsystem = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kwindowsystem-5.21.0.tar.xz"; + sha256 = "13lfwpw5a4in0mp5y8d15jg6xhhrka2qmw73wrdzcvj22n6ldzzi"; + name = "kwindowsystem-5.21.0.tar.xz"; + }; + }; + kxmlgui = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kxmlgui-5.21.0.tar.xz"; + sha256 = "1cb6n016ffvxy8dbbhc3dwlzdqpq0pbvly416qlvlc1lv70lxyfj"; + name = "kxmlgui-5.21.0.tar.xz"; + }; + }; + kxmlrpcclient = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/kxmlrpcclient-5.21.0.tar.xz"; + sha256 = "082qpnvgm9r81iip9akakbf5rqmxb0r8y6gp7jk49q29lvkrx1kh"; + name = "kxmlrpcclient-5.21.0.tar.xz"; + }; + }; + modemmanager-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/modemmanager-qt-5.21.0.tar.xz"; + sha256 = "1w0kjp2pmgss45g63930lbn1c018ld2snng6h40saxi76n8cv57n"; + name = "modemmanager-qt-5.21.0.tar.xz"; + }; + }; + networkmanager-qt = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/networkmanager-qt-5.21.0.tar.xz"; + sha256 = "0iy4a4qb1am2y7w03jg6n7q69c46y4gdpb72r6qjrnm9d4c2xsg1"; + name = "networkmanager-qt-5.21.0.tar.xz"; + }; + }; + oxygen-icons5 = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/oxygen-icons5-5.21.0.tar.xz"; + sha256 = "00qh1h3xx392hh73zdlknc1j9i2sck9ys74a9ffkf6an4rl0hws5"; + name = "oxygen-icons5-5.21.0.tar.xz"; + }; + }; + plasma-framework = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/plasma-framework-5.21.0.tar.xz"; + sha256 = "006k8y8dnar371b5qhikny6rda3vg810jy53sl9yps695j0y39c0"; + name = "plasma-framework-5.21.0.tar.xz"; + }; + }; + solid = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/solid-5.21.0.tar.xz"; + sha256 = "13r9zcf7sr6vg5wlqjms2q7vl4g8gpzqghp3y25ldglhj0z7252r"; + name = "solid-5.21.0.tar.xz"; + }; + }; + sonnet = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/sonnet-5.21.0.tar.xz"; + sha256 = "088b87r80lds6jr0lnqxv0bd4isy2mkcgrq7hxfni7r2h6vn3xcd"; + name = "sonnet-5.21.0.tar.xz"; + }; + }; + threadweaver = { + version = "5.21.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.21/threadweaver-5.21.0.tar.xz"; + sha256 = "17l23jj9bsixhg3gpv5sjrlc6w1kmjwlfb0z17drdkyzs5ak80ry"; + name = "threadweaver-5.21.0.tar.xz"; + }; + }; +} diff --git a/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks-5.22/kservice/series deleted file mode 100644 index 3ce22dbd35a0..000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series +++ /dev/null @@ -1,2 +0,0 @@ -qdiriterator-follow-symlinks.patch -no-canonicalize-path.patch \ No newline at end of file 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 eecb2431f807..000000000000 --- 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.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.0.tar.xz"; - sha256 = "0881y42h5k8ik6lf7pfsylch1ldksc5m4qm3gvshp8aazic8iyzd"; - name = "ki18n-5.22.0.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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 17a1c1d855dd..3db71424d5a5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15861,7 +15861,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: From 5474d37d58471a6744735c8e92b18fc4bd6bad9d Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Mon, 6 Jun 2016 01:01:56 +0200 Subject: [PATCH 285/520] libertine: set `platforms` field Also make the `fontforge` build input a native build input. --- pkgs/data/fonts/libertine/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/data/fonts/libertine/default.nix b/pkgs/data/fonts/libertine/default.nix index b95b0f0beddf..3b89f3db36dd 100644 --- a/pkgs/data/fonts/libertine/default.nix +++ b/pkgs/data/fonts/libertine/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { setSourceRoot = "sourceRoot=`pwd`"; - buildInputs = [ fontforge ]; + nativeBuildInputs = [ fontforge ]; buildPhase = '' for i in *.sfd; do @@ -43,5 +43,6 @@ stdenv.mkDerivation rec { meta = { description = "Linux Libertine Fonts"; homepage = http://linuxlibertine.sf.net; + platforms = stdenv.lib.platforms.all; }; } From f0c76d603f9ac7e55be03a5ad1b5d18d4bf05912 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 10 May 2016 10:51:28 -0500 Subject: [PATCH 286/520] dropbox: use bundled libraries whenever possible --- .../networking/dropbox/default.nix | 37 +++++-------------- 1 file changed, 10 insertions(+), 27 deletions(-) diff --git a/pkgs/applications/networking/dropbox/default.nix b/pkgs/applications/networking/dropbox/default.nix index fede69ff5741..1f10751cd5b2 100644 --- a/pkgs/applications/networking/dropbox/default.nix +++ b/pkgs/applications/networking/dropbox/default.nix @@ -1,7 +1,8 @@ -{ stdenv, fetchurl, makeDesktopItem, patchelf -, dbus_libs, gcc, glib, libdrm, libffi, libICE, libSM -, libX11, libXmu, ncurses, popt, qt5, zlib -, qtbase, qtdeclarative, qtwebkit, makeQtWrapper +{ stdenv, fetchurl, makeDesktopItem, patchelf, makeWrapper +, dbus_libs, fontconfig, freetype, gcc, glib +, libdrm, libffi, libICE, libSM +, libX11, libXcomposite, libXext, libXmu, libXrender, libxcb +, libxml2, libxslt, ncurses, zlib }: # this package contains the daemon version of dropbox @@ -38,8 +39,9 @@ let ldpath = stdenv.lib.makeLibraryPath [ - dbus_libs gcc.cc glib libdrm libffi libICE libSM libX11 libXmu - ncurses popt qtbase qtdeclarative qtwebkit zlib + dbus_libs fontconfig freetype gcc.cc glib libdrm libffi libICE libSM + libX11 libXcomposite libXext libXmu libXrender libxcb libxml2 libxslt + ncurses zlib ]; desktopItem = makeDesktopItem { @@ -62,7 +64,7 @@ in stdenv.mkDerivation { sourceRoot = ".dropbox-dist"; - nativeBuildInputs = [ makeQtWrapper patchelf ]; + nativeBuildInputs = [ makeWrapper patchelf ]; dontPatchELF = true; # patchelf invoked explicitly below dontStrip = true; # already done @@ -72,28 +74,9 @@ in stdenv.mkDerivation { rm "$out/${appdir}/libdrm.so.2" rm "$out/${appdir}/libffi.so.6" - rm "$out/${appdir}/libicudata.so.42" - rm "$out/${appdir}/libicui18n.so.42" - rm "$out/${appdir}/libicuuc.so.42" rm "$out/${appdir}/libGL.so.1" - rm "$out/${appdir}/libpopt.so.0" - rm "$out/${appdir}/libQt5Core.so.5" - rm "$out/${appdir}/libQt5DBus.so.5" - rm "$out/${appdir}/libQt5Gui.so.5" - rm "$out/${appdir}/libQt5Network.so.5" - rm "$out/${appdir}/libQt5OpenGL.so.5" - rm "$out/${appdir}/libQt5PrintSupport.so.5" - rm "$out/${appdir}/libQt5Qml.so.5" - rm "$out/${appdir}/libQt5Quick.so.5" - rm "$out/${appdir}/libQt5Sql.so.5" - rm "$out/${appdir}/libQt5WebKit.so.5" - rm "$out/${appdir}/libQt5WebKitWidgets.so.5" - rm "$out/${appdir}/libQt5Widgets.so.5" rm "$out/${appdir}/libX11-xcb.so.1" - rm "$out/${appdir}/qt.conf" - rm -fr "$out/${appdir}/plugins" - mkdir -p "$out/share/applications" cp "${desktopItem}/share/applications/"* $out/share/applications @@ -102,7 +85,7 @@ in stdenv.mkDerivation { mkdir -p "$out/bin" RPATH="${ldpath}:$out/${appdir}" - makeQtWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \ + makeWrapper "$out/${appdir}/dropbox" "$out/bin/dropbox" \ --prefix LD_LIBRARY_PATH : "$RPATH" ''; From ac3ccce0c144aa85fde8557b976975857628afbf Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 3 Jun 2016 16:50:31 +0200 Subject: [PATCH 287/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-31-gd9dda87 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/4c643345f3ecb0df4adddd9efe065cc714db7c24 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/1a80e0660e630f6dd98f34c3d82c23dc824ada01 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/3ba38d9d9e5f2801666fa94ad807f2645f0b0203 --- .../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 | 16 + .../configuration-lts-1.11.nix | 16 + .../configuration-lts-1.12.nix | 16 + .../configuration-lts-1.13.nix | 16 + .../configuration-lts-1.14.nix | 16 + .../configuration-lts-1.15.nix | 16 + .../haskell-modules/configuration-lts-1.2.nix | 16 + .../haskell-modules/configuration-lts-1.4.nix | 16 + .../haskell-modules/configuration-lts-1.5.nix | 16 + .../haskell-modules/configuration-lts-1.7.nix | 16 + .../haskell-modules/configuration-lts-1.8.nix | 16 + .../haskell-modules/configuration-lts-1.9.nix | 16 + .../haskell-modules/configuration-lts-2.0.nix | 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 | 17 + .../haskell-modules/configuration-lts-2.7.nix | 17 + .../haskell-modules/configuration-lts-2.8.nix | 17 + .../haskell-modules/configuration-lts-2.9.nix | 17 + .../haskell-modules/configuration-lts-3.0.nix | 18 + .../haskell-modules/configuration-lts-3.1.nix | 18 + .../configuration-lts-3.10.nix | 18 + .../configuration-lts-3.11.nix | 18 + .../configuration-lts-3.12.nix | 18 + .../configuration-lts-3.13.nix | 18 + .../configuration-lts-3.14.nix | 18 + .../configuration-lts-3.15.nix | 18 + .../configuration-lts-3.16.nix | 18 + .../configuration-lts-3.17.nix | 18 + .../configuration-lts-3.18.nix | 18 + .../configuration-lts-3.19.nix | 19 + .../haskell-modules/configuration-lts-3.2.nix | 18 + .../configuration-lts-3.20.nix | 19 + .../configuration-lts-3.21.nix | 19 + .../configuration-lts-3.22.nix | 19 + .../haskell-modules/configuration-lts-3.3.nix | 18 + .../haskell-modules/configuration-lts-3.4.nix | 18 + .../haskell-modules/configuration-lts-3.5.nix | 18 + .../haskell-modules/configuration-lts-3.6.nix | 18 + .../haskell-modules/configuration-lts-3.7.nix | 18 + .../haskell-modules/configuration-lts-3.8.nix | 18 + .../haskell-modules/configuration-lts-3.9.nix | 18 + .../haskell-modules/configuration-lts-4.0.nix | 26 + .../haskell-modules/configuration-lts-4.1.nix | 26 + .../haskell-modules/configuration-lts-4.2.nix | 26 + .../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 | 29 + .../configuration-lts-5.12.nix | 29 + .../configuration-lts-5.13.nix | 29 + .../configuration-lts-5.14.nix | 29 + .../configuration-lts-5.15.nix | 29 + .../configuration-lts-5.16.nix | 32 + .../configuration-lts-5.17.nix | 32 + .../configuration-lts-5.18.nix | 32 + .../haskell-modules/configuration-lts-5.2.nix | 25 + .../haskell-modules/configuration-lts-5.3.nix | 25 + .../haskell-modules/configuration-lts-5.4.nix | 26 + .../haskell-modules/configuration-lts-5.5.nix | 28 + .../haskell-modules/configuration-lts-5.6.nix | 28 + .../haskell-modules/configuration-lts-5.7.nix | 28 + .../haskell-modules/configuration-lts-5.8.nix | 28 + .../haskell-modules/configuration-lts-5.9.nix | 29 + .../haskell-modules/configuration-lts-6.0.nix | 37 + .../haskell-modules/configuration-lts-6.1.nix | 41 + .../haskell-modules/configuration-lts-6.2.nix | 7922 +++++++++++++++++ .../haskell-modules/hackage-packages.nix | 1561 +++- 94 files changed, 11059 insertions(+), 262 deletions(-) create mode 100644 pkgs/development/haskell-modules/configuration-lts-6.2.nix diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 357f156b5da9..00a1c9233c51 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6363,6 +6367,7 @@ self: super: { "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"; @@ -6808,6 +6813,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6816,6 +6822,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6888,6 +6895,7 @@ self: super: { "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"; @@ -6929,6 +6937,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7073,6 +7082,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7509,6 +7519,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7679,6 +7690,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8503,6 +8515,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8543,6 +8556,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8590,6 +8604,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index b2f9bdb1f436..ed241962aa8f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6363,6 +6367,7 @@ self: super: { "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"; @@ -6808,6 +6813,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6816,6 +6822,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6888,6 +6895,7 @@ self: super: { "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"; @@ -6929,6 +6937,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7073,6 +7082,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7509,6 +7519,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7679,6 +7690,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8503,6 +8515,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8543,6 +8556,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8590,6 +8604,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 03666eeb9050..296d63432879 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6363,6 +6367,7 @@ self: super: { "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"; @@ -6808,6 +6813,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6816,6 +6822,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6888,6 +6895,7 @@ self: super: { "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"; @@ -6929,6 +6937,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7073,6 +7082,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7509,6 +7519,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7679,6 +7690,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8503,6 +8515,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8543,6 +8556,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8590,6 +8604,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 1f154608e07c..909e2f1f4010 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6363,6 +6367,7 @@ self: super: { "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"; @@ -6808,6 +6813,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6816,6 +6822,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6888,6 +6895,7 @@ self: super: { "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"; @@ -6929,6 +6937,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7073,6 +7082,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7509,6 +7519,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7679,6 +7690,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8503,6 +8515,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8543,6 +8556,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8590,6 +8604,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index f4aa869c82b8..76e31b47fa95 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6361,6 +6365,7 @@ self: super: { "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"; @@ -6806,6 +6811,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6814,6 +6820,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6886,6 +6893,7 @@ self: super: { "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"; @@ -6927,6 +6935,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7071,6 +7080,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7506,6 +7516,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7676,6 +7687,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8500,6 +8512,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8540,6 +8553,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8587,6 +8601,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index ffc64e3e423e..7f3b87d2d028 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -831,6 +831,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1104,6 +1105,7 @@ self: super: { "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"; @@ -2113,6 +2115,7 @@ self: super: { "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"; @@ -3484,6 +3487,7 @@ self: super: { "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"; @@ -6361,6 +6365,7 @@ self: super: { "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"; @@ -6806,6 +6811,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6814,6 +6820,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6886,6 +6893,7 @@ self: super: { "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"; @@ -6927,6 +6935,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7071,6 +7080,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7506,6 +7516,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7676,6 +7687,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8500,6 +8512,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8540,6 +8553,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8587,6 +8601,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 06e2cd879025..e4affd3b35a0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -830,6 +830,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1103,6 +1104,7 @@ self: super: { "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"; @@ -2112,6 +2114,7 @@ self: super: { "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"; @@ -3483,6 +3486,7 @@ self: super: { "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"; @@ -6359,6 +6363,7 @@ self: super: { "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"; @@ -6804,6 +6809,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6812,6 +6818,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6884,6 +6891,7 @@ self: super: { "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"; @@ -6925,6 +6933,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7069,6 +7078,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7503,6 +7513,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7673,6 +7684,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8497,6 +8509,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8537,6 +8550,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8584,6 +8598,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 74019a0158cf..1e48e32b88be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -830,6 +830,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1103,6 +1104,7 @@ self: super: { "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"; @@ -2112,6 +2114,7 @@ self: super: { "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"; @@ -3483,6 +3486,7 @@ self: super: { "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"; @@ -6359,6 +6363,7 @@ self: super: { "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"; @@ -6804,6 +6809,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6812,6 +6818,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6884,6 +6891,7 @@ self: super: { "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"; @@ -6925,6 +6933,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_8_0"; + "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"; @@ -7069,6 +7078,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7503,6 +7513,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7673,6 +7684,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8497,6 +8509,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8537,6 +8550,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8584,6 +8598,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index bb2caa4988ba..0b50f9e41867 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -827,6 +827,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1101,6 +1102,7 @@ self: super: { "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"; @@ -2107,6 +2109,7 @@ self: super: { "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"; @@ -3476,6 +3479,7 @@ self: super: { "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"; @@ -6351,6 +6355,7 @@ self: super: { "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"; @@ -6796,6 +6801,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6804,6 +6810,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6876,6 +6883,7 @@ self: super: { "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"; @@ -6917,6 +6925,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7061,6 +7070,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7494,6 +7504,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7664,6 +7675,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8487,6 +8499,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8527,6 +8540,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8574,6 +8588,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index 4b9032c3f934..fac2d7ddedb3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -827,6 +827,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1101,6 +1102,7 @@ self: super: { "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"; @@ -2106,6 +2108,7 @@ self: super: { "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"; @@ -3473,6 +3476,7 @@ self: super: { "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"; @@ -6344,6 +6348,7 @@ self: super: { "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"; @@ -6789,6 +6794,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6797,6 +6803,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6869,6 +6876,7 @@ self: super: { "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"; @@ -6910,6 +6918,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7054,6 +7063,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7487,6 +7497,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7657,6 +7668,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8476,6 +8488,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8515,6 +8528,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8562,6 +8576,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 131410aa016b..4a896d1d4b6f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3465,6 +3468,7 @@ self: super: { "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"; @@ -6326,6 +6330,7 @@ self: super: { "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"; @@ -6770,6 +6775,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6778,6 +6784,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6850,6 +6857,7 @@ self: super: { "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"; @@ -6891,6 +6899,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7035,6 +7044,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7145,6 +7155,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7467,6 +7478,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7636,6 +7648,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8452,6 +8465,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8491,6 +8505,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8538,6 +8553,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index c795619071e5..852b8b25bd58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3464,6 +3467,7 @@ self: super: { "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"; @@ -6323,6 +6327,7 @@ self: super: { "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"; @@ -6767,6 +6772,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6775,6 +6781,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6847,6 +6854,7 @@ self: super: { "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"; @@ -6888,6 +6896,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7032,6 +7041,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7142,6 +7152,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7464,6 +7475,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7633,6 +7645,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8449,6 +8462,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8488,6 +8502,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8535,6 +8550,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index acffd8973d63..b59da7b15143 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3464,6 +3467,7 @@ self: super: { "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"; @@ -6323,6 +6327,7 @@ self: super: { "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"; @@ -6767,6 +6772,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6775,6 +6781,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6847,6 +6854,7 @@ self: super: { "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"; @@ -6888,6 +6896,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7032,6 +7041,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7142,6 +7152,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7464,6 +7475,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7633,6 +7645,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8449,6 +8462,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8488,6 +8502,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8535,6 +8550,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index e65f50b900ca..2c58bb25f661 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3464,6 +3467,7 @@ self: super: { "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"; @@ -6322,6 +6326,7 @@ self: super: { "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"; @@ -6766,6 +6771,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6774,6 +6780,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6846,6 +6853,7 @@ self: super: { "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"; @@ -6887,6 +6895,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7031,6 +7040,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7141,6 +7151,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7463,6 +7474,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7632,6 +7644,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8447,6 +8460,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8486,6 +8500,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8533,6 +8548,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 8bd95df25bd0..840f050be2d4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -825,6 +825,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1099,6 +1100,7 @@ self: super: { "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"; @@ -2101,6 +2103,7 @@ self: super: { "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"; @@ -3461,6 +3464,7 @@ self: super: { "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"; @@ -6319,6 +6323,7 @@ self: super: { "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"; @@ -6763,6 +6768,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6771,6 +6777,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6843,6 +6850,7 @@ self: super: { "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"; @@ -6884,6 +6892,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7028,6 +7037,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7137,6 +7147,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7459,6 +7470,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7628,6 +7640,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8443,6 +8456,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8482,6 +8496,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8529,6 +8544,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index b860aedd3e1d..12dc6d4a7030 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -825,6 +825,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1098,6 +1099,7 @@ self: super: { "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"; @@ -2099,6 +2101,7 @@ self: super: { "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"; @@ -3457,6 +3460,7 @@ self: super: { "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"; @@ -6313,6 +6317,7 @@ self: super: { "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"; @@ -6757,6 +6762,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6765,6 +6771,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6837,6 +6844,7 @@ self: super: { "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"; @@ -6878,6 +6886,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -7022,6 +7031,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7130,6 +7140,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7452,6 +7463,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7621,6 +7633,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8435,6 +8448,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8474,6 +8488,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8521,6 +8536,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index c94c44eeda95..feffa4f10683 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -827,6 +827,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1101,6 +1102,7 @@ self: super: { "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"; @@ -2105,6 +2107,7 @@ self: super: { "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"; @@ -3471,6 +3474,7 @@ self: super: { "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"; @@ -6341,6 +6345,7 @@ self: super: { "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"; @@ -6785,6 +6790,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6793,6 +6799,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6865,6 +6872,7 @@ self: super: { "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"; @@ -6906,6 +6914,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7050,6 +7059,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7160,6 +7170,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7482,6 +7493,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7651,6 +7663,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8470,6 +8483,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8509,6 +8523,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8556,6 +8571,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 2690fdb47e49..50ece85ea719 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2104,6 +2106,7 @@ self: super: { "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"; @@ -3469,6 +3472,7 @@ self: super: { "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"; @@ -6337,6 +6341,7 @@ self: super: { "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"; @@ -6781,6 +6786,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6789,6 +6795,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6861,6 +6868,7 @@ self: super: { "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"; @@ -6902,6 +6910,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7046,6 +7055,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7156,6 +7166,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7478,6 +7489,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7647,6 +7659,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8465,6 +8478,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8504,6 +8518,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8551,6 +8566,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index d5e70cb65801..df0bd7121a73 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3468,6 +3471,7 @@ self: super: { "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"; @@ -6336,6 +6340,7 @@ self: super: { "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"; @@ -6780,6 +6785,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6788,6 +6794,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6860,6 +6867,7 @@ self: super: { "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"; @@ -6901,6 +6909,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7045,6 +7054,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7155,6 +7165,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7477,6 +7488,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7646,6 +7658,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8464,6 +8477,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8503,6 +8517,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8550,6 +8565,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index eb62a60470a4..ff33312e7aca 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3468,6 +3471,7 @@ self: super: { "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"; @@ -6331,6 +6335,7 @@ self: super: { "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"; @@ -6775,6 +6780,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6783,6 +6789,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6855,6 +6862,7 @@ self: super: { "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"; @@ -6896,6 +6904,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7040,6 +7049,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7150,6 +7160,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7472,6 +7483,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7641,6 +7653,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8459,6 +8472,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_4"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8498,6 +8512,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8545,6 +8560,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index f94f415e3cf8..fe3ba3998706 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3466,6 +3469,7 @@ self: super: { "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"; @@ -6327,6 +6331,7 @@ self: super: { "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"; @@ -6771,6 +6776,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6779,6 +6785,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6851,6 +6858,7 @@ self: super: { "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"; @@ -6892,6 +6900,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7036,6 +7045,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7146,6 +7156,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7468,6 +7479,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7637,6 +7649,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8455,6 +8468,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8494,6 +8508,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8541,6 +8556,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 645d363e8ce5..c9251492c453 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -826,6 +826,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1100,6 +1101,7 @@ self: super: { "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"; @@ -2103,6 +2105,7 @@ self: super: { "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"; @@ -3465,6 +3468,7 @@ self: super: { "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"; @@ -6326,6 +6330,7 @@ self: super: { "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"; @@ -6770,6 +6775,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network" = dontDistribute super."pipes-network"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; @@ -6778,6 +6784,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = dontDistribute super."pipes-safe"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6850,6 +6857,7 @@ self: super: { "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"; @@ -6891,6 +6899,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_9_0"; + "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"; @@ -7035,6 +7044,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7145,6 +7155,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7467,6 +7478,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7636,6 +7648,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = dontDistribute super."servant"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = dontDistribute super."servant-client"; @@ -8454,6 +8467,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_4_2_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_5"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8493,6 +8507,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8540,6 +8555,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 4f4e62502eac..656f8592d785 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1092,6 +1093,7 @@ self: super: { "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"; @@ -2091,6 +2093,7 @@ self: super: { "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"; @@ -3446,6 +3449,7 @@ self: super: { "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"; @@ -6276,6 +6280,7 @@ self: super: { "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"; @@ -6720,6 +6725,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6727,6 +6733,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6799,6 +6806,7 @@ self: super: { "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"; @@ -6841,6 +6849,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6985,6 +6994,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7093,6 +7103,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7415,6 +7426,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7583,6 +7595,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8391,6 +8404,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8430,6 +8444,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8477,6 +8492,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index d0a77798d0ee..f323c279c0ce 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1092,6 +1093,7 @@ self: super: { "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"; @@ -2090,6 +2092,7 @@ self: super: { "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"; @@ -3445,6 +3448,7 @@ self: super: { "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"; @@ -6275,6 +6279,7 @@ self: super: { "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"; @@ -6719,6 +6724,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6726,6 +6732,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6798,6 +6805,7 @@ self: super: { "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"; @@ -6840,6 +6848,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6984,6 +6993,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7092,6 +7102,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7414,6 +7425,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7582,6 +7594,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8390,6 +8403,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8429,6 +8443,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8476,6 +8491,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index dbebdd13260c..87f220c313e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2082,6 +2084,7 @@ self: super: { "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"; @@ -3431,6 +3434,7 @@ self: super: { "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"; @@ -3919,6 +3923,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6254,6 +6259,7 @@ self: super: { "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"; @@ -6697,6 +6703,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6704,6 +6711,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6776,6 +6784,7 @@ self: super: { "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"; @@ -6818,6 +6827,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6962,6 +6972,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7069,6 +7080,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7390,6 +7402,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7557,6 +7570,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8357,6 +8371,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8396,6 +8411,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8443,6 +8459,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index f55eb48671b0..5bba70bb57e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3430,6 +3433,7 @@ self: super: { "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"; @@ -3917,6 +3921,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6252,6 +6257,7 @@ self: super: { "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"; @@ -6694,6 +6700,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6701,6 +6708,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6773,6 +6781,7 @@ self: super: { "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"; @@ -6815,6 +6824,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6959,6 +6969,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7066,6 +7077,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7386,6 +7398,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7553,6 +7566,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8351,6 +8365,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8390,6 +8405,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8437,6 +8453,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index c0e7adef7781..3ecf3f39df01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3430,6 +3433,7 @@ self: super: { "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"; @@ -3917,6 +3921,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6252,6 +6257,7 @@ self: super: { "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"; @@ -6694,6 +6700,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6701,6 +6708,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6773,6 +6781,7 @@ self: super: { "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"; @@ -6815,6 +6824,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6959,6 +6969,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7066,6 +7077,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7386,6 +7398,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7552,6 +7565,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8350,6 +8364,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8389,6 +8404,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8436,6 +8452,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 527bae759c2a..2610b80a5286 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3430,6 +3433,7 @@ self: super: { "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"; @@ -3917,6 +3921,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6251,6 +6256,7 @@ self: super: { "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"; @@ -6693,6 +6699,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6700,6 +6707,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6772,6 +6780,7 @@ self: super: { "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"; @@ -6814,6 +6823,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6958,6 +6968,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7065,6 +7076,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7385,6 +7397,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7551,6 +7564,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8349,6 +8363,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8388,6 +8403,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8435,6 +8451,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 2c09fd834c80..e72bf4004038 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3429,6 +3432,7 @@ self: super: { "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"; @@ -3916,6 +3920,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6249,6 +6254,7 @@ self: super: { "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"; @@ -6691,6 +6697,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6698,6 +6705,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6770,6 +6778,7 @@ self: super: { "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"; @@ -6812,6 +6821,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6956,6 +6966,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7063,6 +7074,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7383,6 +7395,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7549,6 +7562,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8347,6 +8361,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8386,6 +8401,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8433,6 +8449,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index d15fbb5942a2..fbdf5137caa1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3428,6 +3431,7 @@ self: super: { "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"; @@ -3915,6 +3919,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6247,6 +6252,7 @@ self: super: { "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"; @@ -6689,6 +6695,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6696,6 +6703,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6768,6 +6776,7 @@ self: super: { "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"; @@ -6810,6 +6819,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6954,6 +6964,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7061,6 +7072,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7381,6 +7393,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7547,6 +7560,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8344,6 +8358,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8383,6 +8398,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8430,6 +8446,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 7c1abd10e5fa..9c7024f36a9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2081,6 +2083,7 @@ self: super: { "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"; @@ -3425,6 +3428,7 @@ self: super: { "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"; @@ -3912,6 +3916,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6243,6 +6248,7 @@ self: super: { "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"; @@ -6685,6 +6691,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6692,6 +6699,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6764,6 +6772,7 @@ self: super: { "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"; @@ -6806,6 +6815,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6950,6 +6960,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7057,6 +7068,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7377,6 +7389,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7543,6 +7556,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8340,6 +8354,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8379,6 +8394,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8426,6 +8442,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index 769c9fd36c15..feb2dea46b1f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2080,6 +2082,7 @@ self: super: { "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"; @@ -3422,6 +3425,7 @@ self: super: { "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"; @@ -3909,6 +3913,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6240,6 +6245,7 @@ self: super: { "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"; @@ -6681,6 +6687,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6688,6 +6695,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6760,6 +6768,7 @@ self: super: { "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"; @@ -6802,6 +6811,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6946,6 +6956,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7053,6 +7064,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7373,6 +7385,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7539,6 +7552,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8336,6 +8350,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8375,6 +8390,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8422,6 +8438,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 67632db36679..aaa35cf7e6e4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2079,6 +2081,7 @@ self: super: { "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"; @@ -3420,6 +3423,7 @@ self: super: { "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"; @@ -3907,6 +3911,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6237,6 +6242,7 @@ self: super: { "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"; @@ -6678,6 +6684,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6685,6 +6692,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6757,6 +6765,7 @@ self: super: { "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"; @@ -6799,6 +6808,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6943,6 +6953,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7050,6 +7061,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7370,6 +7382,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7536,6 +7549,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8332,6 +8346,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8371,6 +8386,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8418,6 +8434,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 7422763e96bc..38bb87749a8c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2079,6 +2081,7 @@ self: super: { "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"; @@ -3419,6 +3422,7 @@ self: super: { "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"; @@ -3906,6 +3910,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6236,6 +6241,7 @@ self: super: { "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"; @@ -6677,6 +6683,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6684,6 +6691,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6756,6 +6764,7 @@ self: super: { "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"; @@ -6798,6 +6807,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6942,6 +6952,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7049,6 +7060,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7369,6 +7381,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7535,6 +7548,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8331,6 +8345,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8370,6 +8385,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8417,6 +8433,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 56d11e85e7d5..460f421540b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1091,6 +1092,7 @@ self: super: { "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"; @@ -2088,6 +2090,7 @@ self: super: { "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"; @@ -3443,6 +3446,7 @@ self: super: { "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"; @@ -6273,6 +6277,7 @@ self: super: { "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"; @@ -6717,6 +6722,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6724,6 +6730,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6796,6 +6803,7 @@ self: super: { "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"; @@ -6838,6 +6846,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6982,6 +6991,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7090,6 +7100,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7412,6 +7423,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7580,6 +7592,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8388,6 +8401,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8427,6 +8441,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8474,6 +8489,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index a99795d6c6c5..26815b885490 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2079,6 +2081,7 @@ self: super: { "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"; @@ -3419,6 +3422,7 @@ self: super: { "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"; @@ -3906,6 +3910,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6236,6 +6241,7 @@ self: super: { "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"; @@ -6677,6 +6683,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6684,6 +6691,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6756,6 +6764,7 @@ self: super: { "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"; @@ -6798,6 +6807,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6942,6 +6952,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7049,6 +7060,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7369,6 +7381,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7535,6 +7548,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8330,6 +8344,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8369,6 +8384,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8416,6 +8432,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 62452454e99c..9a99e645c89b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2079,6 +2081,7 @@ self: super: { "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"; @@ -3419,6 +3422,7 @@ self: super: { "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"; @@ -3906,6 +3910,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6236,6 +6241,7 @@ self: super: { "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"; @@ -6677,6 +6683,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6684,6 +6691,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6756,6 +6764,7 @@ self: super: { "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"; @@ -6797,6 +6806,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6941,6 +6951,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7048,6 +7059,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7368,6 +7380,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7534,6 +7547,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8329,6 +8343,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8368,6 +8383,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8415,6 +8431,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 47cf3f540af4..50912963174a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2079,6 +2081,7 @@ self: super: { "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"; @@ -3419,6 +3422,7 @@ self: super: { "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"; @@ -3906,6 +3910,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_4"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6235,6 +6240,7 @@ self: super: { "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"; @@ -6676,6 +6682,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6683,6 +6690,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6755,6 +6763,7 @@ self: super: { "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"; @@ -6796,6 +6805,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6940,6 +6950,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7047,6 +7058,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7367,6 +7379,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7533,6 +7546,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8328,6 +8342,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8367,6 +8382,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8414,6 +8430,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index 44bc07b0cbe0..f1d1d47688c1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1091,6 +1092,7 @@ self: super: { "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"; @@ -2088,6 +2090,7 @@ self: super: { "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"; @@ -3442,6 +3445,7 @@ self: super: { "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"; @@ -6271,6 +6275,7 @@ self: super: { "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"; @@ -6715,6 +6720,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6722,6 +6728,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6794,6 +6801,7 @@ self: super: { "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"; @@ -6836,6 +6844,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6980,6 +6989,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7088,6 +7098,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7410,6 +7421,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7578,6 +7590,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8386,6 +8399,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8425,6 +8439,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8472,6 +8487,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index a9a52fd9ed88..05653fd56957 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1091,6 +1092,7 @@ self: super: { "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"; @@ -2088,6 +2090,7 @@ self: super: { "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"; @@ -3442,6 +3445,7 @@ self: super: { "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"; @@ -6271,6 +6275,7 @@ self: super: { "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"; @@ -6714,6 +6719,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6721,6 +6727,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6793,6 +6800,7 @@ self: super: { "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"; @@ -6835,6 +6843,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6979,6 +6988,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7087,6 +7097,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7408,6 +7419,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7576,6 +7588,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8384,6 +8397,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8423,6 +8437,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8470,6 +8485,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 6999cb72ff55..6851157ec513 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1091,6 +1092,7 @@ self: super: { "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"; @@ -2088,6 +2090,7 @@ self: super: { "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"; @@ -3441,6 +3444,7 @@ self: super: { "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"; @@ -6270,6 +6274,7 @@ self: super: { "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"; @@ -6713,6 +6718,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6720,6 +6726,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6792,6 +6799,7 @@ self: super: { "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"; @@ -6834,6 +6842,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6978,6 +6987,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7086,6 +7096,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7407,6 +7418,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7575,6 +7587,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8383,6 +8396,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8422,6 +8436,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8469,6 +8484,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index d321d80bd320..1fd3be26f0e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1090,6 +1091,7 @@ self: super: { "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"; @@ -2085,6 +2087,7 @@ self: super: { "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"; @@ -3438,6 +3441,7 @@ self: super: { "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"; @@ -3926,6 +3930,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6264,6 +6269,7 @@ self: super: { "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"; @@ -6707,6 +6713,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6714,6 +6721,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6786,6 +6794,7 @@ self: super: { "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"; @@ -6828,6 +6837,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6972,6 +6982,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7080,6 +7091,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7401,6 +7413,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7569,6 +7582,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8377,6 +8391,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8416,6 +8431,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8463,6 +8479,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 75c1d29f5c6e..114de936f077 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -820,6 +820,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1090,6 +1091,7 @@ self: super: { "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"; @@ -2085,6 +2087,7 @@ self: super: { "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"; @@ -3438,6 +3441,7 @@ self: super: { "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"; @@ -3926,6 +3930,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6265,6 +6270,7 @@ self: super: { "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"; @@ -6708,6 +6714,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6715,6 +6722,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6787,6 +6795,7 @@ self: super: { "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"; @@ -6829,6 +6838,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6973,6 +6983,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7081,6 +7092,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7402,6 +7414,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7570,6 +7583,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8378,6 +8392,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8417,6 +8432,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8464,6 +8480,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index b78ba94dd906..697c459d0170 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2084,6 +2086,7 @@ self: super: { "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"; @@ -3436,6 +3439,7 @@ self: super: { "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"; @@ -3924,6 +3928,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6263,6 +6268,7 @@ self: super: { "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"; @@ -6706,6 +6712,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6713,6 +6720,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6785,6 +6793,7 @@ self: super: { "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"; @@ -6827,6 +6836,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6971,6 +6981,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7079,6 +7090,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7400,6 +7412,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7567,6 +7580,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8372,6 +8386,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8411,6 +8426,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8458,6 +8474,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index 6b3e844b5ed0..e7a356cff826 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -819,6 +819,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_7_6"; @@ -1089,6 +1090,7 @@ self: super: { "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"; @@ -2082,6 +2084,7 @@ self: super: { "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"; @@ -3432,6 +3435,7 @@ self: super: { "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"; @@ -3920,6 +3924,7 @@ self: super: { "hMollom" = dontDistribute super."hMollom"; "hOpenPGP" = doDistribute super."hOpenPGP_2_0"; "hPDB" = doDistribute super."hPDB_1_2_0_3"; + "hPDB-examples" = doDistribute super."hPDB-examples_1_2_0_2"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; "hRESP" = dontDistribute super."hRESP"; @@ -6257,6 +6262,7 @@ self: super: { "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"; @@ -6700,6 +6706,7 @@ self: super: { "pipes-illumina" = dontDistribute super."pipes-illumina"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6707,6 +6714,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_2"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_2"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6779,6 +6787,7 @@ self: super: { "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"; @@ -6821,6 +6830,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6965,6 +6975,7 @@ self: super: { "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"; "puppetresources" = dontDistribute super."puppetresources"; @@ -7073,6 +7084,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7394,6 +7406,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7561,6 +7574,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_2_2"; "servant-JuicyPixels" = dontDistribute super."servant-JuicyPixels"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_2_2"; @@ -8362,6 +8376,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_3"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8401,6 +8416,7 @@ self: super: { "thrift" = dontDistribute super."thrift"; "thrist" = dontDistribute super."thrist"; "throttle" = dontDistribute super."throttle"; + "throttled-io-loop" = dontDistribute super."throttled-io-loop"; "through-text" = dontDistribute super."through-text"; "thumbnail" = dontDistribute super."thumbnail"; "thumbnail-plus" = dontDistribute super."thumbnail-plus"; @@ -8448,6 +8464,7 @@ self: super: { "timeout-with-results" = dontDistribute super."timeout-with-results"; "timeparsers" = dontDistribute super."timeparsers"; "timeplot" = dontDistribute super."timeplot"; + "timeprint" = dontDistribute super."timeprint"; "timerep" = dontDistribute super."timerep"; "timers" = dontDistribute super."timers"; "timers-updatable" = dontDistribute super."timers-updatable"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index 025e393ce456..e7f25b23efc4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -808,6 +808,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1070,6 +1071,7 @@ self: super: { "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"; @@ -1785,6 +1787,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2029,6 +2032,7 @@ self: super: { "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"; @@ -3344,6 +3348,7 @@ self: super: { "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"; @@ -6112,6 +6117,7 @@ self: super: { "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"; @@ -6539,6 +6545,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_2"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6546,6 +6553,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6618,6 +6626,7 @@ self: super: { "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"; @@ -6659,6 +6668,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6800,6 +6810,7 @@ self: super: { "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"; @@ -6908,6 +6919,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7230,6 +7242,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7394,6 +7407,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; @@ -8173,6 +8187,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8212,6 +8227,7 @@ self: super: { "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"; @@ -8256,6 +8272,7 @@ self: super: { "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"; @@ -8543,6 +8560,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 0f4967af1380..ab7e261206d6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -808,6 +808,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1070,6 +1071,7 @@ self: super: { "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"; @@ -1784,6 +1786,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2028,6 +2031,7 @@ self: super: { "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"; @@ -3342,6 +3346,7 @@ self: super: { "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"; @@ -6109,6 +6114,7 @@ self: super: { "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"; @@ -6535,6 +6541,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_2"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6542,6 +6549,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6614,6 +6622,7 @@ self: super: { "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"; @@ -6655,6 +6664,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6796,6 +6806,7 @@ self: super: { "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"; @@ -6904,6 +6915,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7225,6 +7237,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7389,6 +7402,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; @@ -8168,6 +8182,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8207,6 +8222,7 @@ self: super: { "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"; @@ -8251,6 +8267,7 @@ self: super: { "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"; @@ -8538,6 +8555,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index e52685bd3b5c..e120d34b9347 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2019,6 +2022,7 @@ self: super: { "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"; @@ -3327,6 +3331,7 @@ self: super: { "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"; @@ -6079,6 +6084,7 @@ self: super: { "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"; @@ -6504,6 +6510,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6511,6 +6518,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6582,6 +6590,7 @@ self: super: { "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"; @@ -6623,6 +6632,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6762,6 +6772,7 @@ self: super: { "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"; @@ -6869,6 +6880,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7190,6 +7202,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7354,6 +7367,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8125,6 +8139,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8164,6 +8179,7 @@ self: super: { "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"; @@ -8208,6 +8224,7 @@ self: super: { "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"; @@ -8493,6 +8510,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index b0662d709fb6..dd906f851617 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2019,6 +2022,7 @@ self: super: { "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"; @@ -3326,6 +3330,7 @@ self: super: { "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"; @@ -6078,6 +6083,7 @@ self: super: { "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"; @@ -6503,6 +6509,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6510,6 +6517,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6581,6 +6589,7 @@ self: super: { "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"; @@ -6622,6 +6631,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6761,6 +6771,7 @@ self: super: { "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"; @@ -6868,6 +6879,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7189,6 +7201,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7353,6 +7366,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8124,6 +8138,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8163,6 +8178,7 @@ self: super: { "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"; @@ -8207,6 +8223,7 @@ self: super: { "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"; @@ -8492,6 +8509,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 88a05546d496..bca7899f92c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2018,6 +2021,7 @@ self: super: { "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"; @@ -3325,6 +3329,7 @@ self: super: { "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"; @@ -6076,6 +6081,7 @@ self: super: { "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"; @@ -6500,6 +6506,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6507,6 +6514,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6578,6 +6586,7 @@ self: super: { "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"; @@ -6619,6 +6628,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6758,6 +6768,7 @@ self: super: { "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"; @@ -6865,6 +6876,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7186,6 +7198,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7350,6 +7363,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8120,6 +8134,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8159,6 +8174,7 @@ self: super: { "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"; @@ -8203,6 +8219,7 @@ self: super: { "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"; @@ -8488,6 +8505,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 1046c6fde168..6a8bdb4faa13 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2018,6 +2021,7 @@ self: super: { "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"; @@ -3325,6 +3329,7 @@ self: super: { "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"; @@ -6074,6 +6079,7 @@ self: super: { "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"; @@ -6497,6 +6503,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6504,6 +6511,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6575,6 +6583,7 @@ self: super: { "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"; @@ -6616,6 +6625,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6755,6 +6765,7 @@ self: super: { "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"; @@ -6862,6 +6873,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7183,6 +7195,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7347,6 +7360,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8117,6 +8131,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8156,6 +8171,7 @@ self: super: { "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"; @@ -8200,6 +8216,7 @@ self: super: { "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"; @@ -8485,6 +8502,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 7089f1cc2c01..1066cab60202 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2017,6 +2020,7 @@ self: super: { "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"; @@ -3323,6 +3327,7 @@ self: super: { "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"; @@ -6071,6 +6076,7 @@ self: super: { "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"; @@ -6494,6 +6500,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6501,6 +6508,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6572,6 +6580,7 @@ self: super: { "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"; @@ -6613,6 +6622,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6752,6 +6762,7 @@ self: super: { "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"; @@ -6859,6 +6870,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7180,6 +7192,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7344,6 +7357,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8114,6 +8128,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8153,6 +8168,7 @@ self: super: { "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"; @@ -8197,6 +8213,7 @@ self: super: { "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"; @@ -8482,6 +8499,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 893b03851a8f..fb3b5144cf4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2017,6 +2020,7 @@ self: super: { "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"; @@ -3323,6 +3327,7 @@ self: super: { "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"; @@ -6068,6 +6073,7 @@ self: super: { "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"; @@ -6491,6 +6497,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6498,6 +6505,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6569,6 +6577,7 @@ self: super: { "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"; @@ -6610,6 +6619,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6749,6 +6759,7 @@ self: super: { "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"; @@ -6856,6 +6867,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7177,6 +7189,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7341,6 +7354,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8110,6 +8124,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8149,6 +8164,7 @@ self: super: { "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"; @@ -8193,6 +8209,7 @@ self: super: { "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"; @@ -8478,6 +8495,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 776b0367252e..0a22e92e9775 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -805,6 +805,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1067,6 +1068,7 @@ self: super: { "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"; @@ -1774,6 +1776,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2016,6 +2019,7 @@ self: super: { "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"; @@ -3322,6 +3326,7 @@ self: super: { "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"; @@ -6065,6 +6070,7 @@ self: super: { "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"; @@ -6488,6 +6494,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6495,6 +6502,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6566,6 +6574,7 @@ self: super: { "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"; @@ -6606,6 +6615,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6745,6 +6755,7 @@ self: super: { "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"; @@ -6852,6 +6863,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7172,6 +7184,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7336,6 +7349,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8103,6 +8117,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8142,6 +8157,7 @@ self: super: { "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"; @@ -8185,6 +8201,7 @@ self: super: { "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"; @@ -8470,6 +8487,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 8d1db9b73279..2ade36cc7a02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -805,6 +805,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1067,6 +1068,7 @@ self: super: { "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"; @@ -1773,6 +1775,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2015,6 +2018,7 @@ self: super: { "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"; @@ -3321,6 +3325,7 @@ self: super: { "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"; @@ -6060,6 +6065,7 @@ self: super: { "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"; @@ -6483,6 +6489,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6490,6 +6497,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6561,6 +6569,7 @@ self: super: { "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"; @@ -6601,6 +6610,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6740,6 +6750,7 @@ self: super: { "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"; @@ -6847,6 +6858,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7167,6 +7179,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7331,6 +7344,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8098,6 +8112,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8137,6 +8152,7 @@ self: super: { "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"; @@ -8180,6 +8196,7 @@ self: super: { "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"; @@ -8465,6 +8482,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 20a4cc2f30a9..266ba6453b54 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -805,6 +805,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1067,6 +1068,7 @@ self: super: { "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"; @@ -1773,6 +1775,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2015,6 +2018,7 @@ self: super: { "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"; @@ -3321,6 +3325,7 @@ self: super: { "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"; @@ -6059,6 +6064,7 @@ self: super: { "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"; @@ -6482,6 +6488,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6489,6 +6496,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6560,6 +6568,7 @@ self: super: { "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"; @@ -6600,6 +6609,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6739,6 +6749,7 @@ self: super: { "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"; @@ -6846,6 +6857,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7166,6 +7178,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7330,6 +7343,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8097,6 +8111,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8136,6 +8151,7 @@ self: super: { "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"; @@ -8179,6 +8195,7 @@ self: super: { "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"; @@ -8464,6 +8481,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 55ab7c8e3280..5bb19840274c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -805,6 +805,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1067,6 +1068,7 @@ self: super: { "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"; @@ -1771,6 +1773,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2013,6 +2016,7 @@ self: super: { "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"; @@ -3318,6 +3322,7 @@ self: super: { "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"; @@ -5419,6 +5424,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; @@ -6051,6 +6057,7 @@ self: super: { "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"; @@ -6474,6 +6481,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6481,6 +6489,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6552,6 +6561,7 @@ self: super: { "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"; @@ -6592,6 +6602,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6731,6 +6742,7 @@ self: super: { "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"; @@ -6838,6 +6850,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7158,6 +7171,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7322,6 +7336,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8088,6 +8103,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8127,6 +8143,7 @@ self: super: { "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"; @@ -8170,6 +8187,7 @@ self: super: { "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"; @@ -8455,6 +8473,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 469e57db970d..4c4604cb489b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1782,6 +1784,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2026,6 +2029,7 @@ self: super: { "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"; @@ -3339,6 +3343,7 @@ self: super: { "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"; @@ -6104,6 +6109,7 @@ self: super: { "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"; @@ -6530,6 +6536,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6537,6 +6544,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6609,6 +6617,7 @@ self: super: { "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"; @@ -6650,6 +6659,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6791,6 +6801,7 @@ self: super: { "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"; @@ -6898,6 +6909,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7219,6 +7231,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7383,6 +7396,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4"; @@ -8161,6 +8175,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8200,6 +8215,7 @@ self: super: { "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"; @@ -8244,6 +8260,7 @@ self: super: { "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"; @@ -8531,6 +8548,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index db0936a0f2b3..87d625325d71 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -804,6 +804,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1066,6 +1067,7 @@ self: super: { "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"; @@ -1770,6 +1772,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2012,6 +2015,7 @@ self: super: { "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"; @@ -3317,6 +3321,7 @@ self: super: { "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"; @@ -5418,6 +5423,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; @@ -6050,6 +6056,7 @@ self: super: { "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"; @@ -6473,6 +6480,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6480,6 +6488,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6551,6 +6560,7 @@ self: super: { "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"; @@ -6591,6 +6601,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6730,6 +6741,7 @@ self: super: { "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"; @@ -6837,6 +6849,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7156,6 +7169,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7320,6 +7334,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_5"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_5"; @@ -8085,6 +8100,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8124,6 +8140,7 @@ self: super: { "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"; @@ -8167,6 +8184,7 @@ self: super: { "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"; @@ -8452,6 +8470,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 260b37cae68c..891ffa2e5885 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -804,6 +804,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1066,6 +1067,7 @@ self: super: { "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"; @@ -1770,6 +1772,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2012,6 +2015,7 @@ self: super: { "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"; @@ -3314,6 +3318,7 @@ self: super: { "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"; @@ -5413,6 +5418,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; @@ -6044,6 +6050,7 @@ self: super: { "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"; @@ -6466,6 +6473,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6473,6 +6481,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6544,6 +6553,7 @@ self: super: { "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"; @@ -6584,6 +6594,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6723,6 +6734,7 @@ self: super: { "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"; @@ -6830,6 +6842,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7148,6 +7161,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7311,6 +7325,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -8072,6 +8087,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8111,6 +8127,7 @@ self: super: { "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"; @@ -8154,6 +8171,7 @@ self: super: { "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"; @@ -8439,6 +8457,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 56be768268b9..c655d57ca51f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -804,6 +804,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1066,6 +1067,7 @@ self: super: { "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"; @@ -1770,6 +1772,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2012,6 +2015,7 @@ self: super: { "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"; @@ -3313,6 +3317,7 @@ self: super: { "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"; @@ -5410,6 +5415,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-prompt" = dontDistribute super."list-prompt"; @@ -6041,6 +6047,7 @@ self: super: { "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"; @@ -6463,6 +6470,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6470,6 +6478,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6541,6 +6550,7 @@ self: super: { "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"; @@ -6581,6 +6591,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6720,6 +6731,7 @@ self: super: { "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"; @@ -6827,6 +6839,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7145,6 +7158,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7308,6 +7322,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -8069,6 +8084,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8108,6 +8124,7 @@ self: super: { "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"; @@ -8151,6 +8168,7 @@ self: super: { "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"; @@ -8436,6 +8454,7 @@ self: super: { "unix-memory" = dontDistribute super."unix-memory"; "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 9f4223641ca4..4047e54e4276 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1782,6 +1784,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2026,6 +2029,7 @@ self: super: { "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"; @@ -3338,6 +3342,7 @@ self: super: { "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"; @@ -6102,6 +6107,7 @@ self: super: { "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"; @@ -6528,6 +6534,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6535,6 +6542,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6607,6 +6615,7 @@ self: super: { "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"; @@ -6648,6 +6657,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6789,6 +6799,7 @@ self: super: { "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"; @@ -6896,6 +6907,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7217,6 +7229,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7381,6 +7394,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; @@ -8158,6 +8172,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8197,6 +8212,7 @@ self: super: { "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"; @@ -8241,6 +8257,7 @@ self: super: { "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"; @@ -8528,6 +8545,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index e345c38d5e39..c29531a9ec27 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1782,6 +1784,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2026,6 +2029,7 @@ self: super: { "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"; @@ -3338,6 +3342,7 @@ self: super: { "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"; @@ -6102,6 +6107,7 @@ self: super: { "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"; @@ -6528,6 +6534,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6535,6 +6542,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6607,6 +6615,7 @@ self: super: { "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"; @@ -6648,6 +6657,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6789,6 +6799,7 @@ self: super: { "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"; @@ -6896,6 +6907,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7217,6 +7229,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7381,6 +7394,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; @@ -8157,6 +8171,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8196,6 +8211,7 @@ self: super: { "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"; @@ -8240,6 +8256,7 @@ self: super: { "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"; @@ -8527,6 +8544,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 0a23f8299afe..350c40ecee38 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1781,6 +1783,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2025,6 +2028,7 @@ self: super: { "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"; @@ -3336,6 +3340,7 @@ self: super: { "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"; @@ -6096,6 +6101,7 @@ self: super: { "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"; @@ -6521,6 +6527,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6528,6 +6535,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6600,6 +6608,7 @@ self: super: { "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"; @@ -6641,6 +6650,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6781,6 +6791,7 @@ self: super: { "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"; @@ -6888,6 +6899,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7209,6 +7221,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7373,6 +7386,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; @@ -8146,6 +8160,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8185,6 +8200,7 @@ self: super: { "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"; @@ -8229,6 +8245,7 @@ self: super: { "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"; @@ -8516,6 +8533,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index fd1637cb5087..47b74eed249c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1781,6 +1783,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2025,6 +2028,7 @@ self: super: { "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"; @@ -3336,6 +3340,7 @@ self: super: { "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"; @@ -6092,6 +6097,7 @@ self: super: { "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"; @@ -6517,6 +6523,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6524,6 +6531,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6596,6 +6604,7 @@ self: super: { "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"; @@ -6637,6 +6646,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6777,6 +6787,7 @@ self: super: { "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"; @@ -6884,6 +6895,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7205,6 +7217,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7369,6 +7382,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_2"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_2"; @@ -8142,6 +8156,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8181,6 +8196,7 @@ self: super: { "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"; @@ -8225,6 +8241,7 @@ self: super: { "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"; @@ -8511,6 +8528,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index d7dfc2ede041..4b1701a67d61 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1779,6 +1781,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2023,6 +2026,7 @@ self: super: { "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"; @@ -3333,6 +3337,7 @@ self: super: { "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"; @@ -6088,6 +6093,7 @@ self: super: { "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"; @@ -6513,6 +6519,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6520,6 +6527,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6591,6 +6599,7 @@ self: super: { "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"; @@ -6632,6 +6641,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6771,6 +6781,7 @@ self: super: { "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"; @@ -6878,6 +6889,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7199,6 +7211,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7363,6 +7376,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; @@ -8135,6 +8149,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8174,6 +8189,7 @@ self: super: { "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"; @@ -8218,6 +8234,7 @@ self: super: { "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"; @@ -8504,6 +8521,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index c502360c1bc0..09c3398851c7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -807,6 +807,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1069,6 +1070,7 @@ self: super: { "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"; @@ -1777,6 +1779,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2021,6 +2024,7 @@ self: super: { "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"; @@ -3330,6 +3334,7 @@ self: super: { "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"; @@ -6084,6 +6089,7 @@ self: super: { "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"; @@ -6509,6 +6515,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6516,6 +6523,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6587,6 +6595,7 @@ self: super: { "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"; @@ -6628,6 +6637,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6767,6 +6777,7 @@ self: super: { "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"; @@ -6874,6 +6885,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7195,6 +7207,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7359,6 +7372,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; @@ -8130,6 +8144,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8169,6 +8184,7 @@ self: super: { "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"; @@ -8213,6 +8229,7 @@ self: super: { "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"; @@ -8499,6 +8516,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index d8a22621120f..c42258415395 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -806,6 +806,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1068,6 +1069,7 @@ self: super: { "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"; @@ -1775,6 +1777,7 @@ self: super: { "bowntz" = dontDistribute super."bowntz"; "bpann" = dontDistribute super."bpann"; "braid" = dontDistribute super."braid"; + "brainfuck" = doDistribute super."brainfuck_0_1_0_2"; "brainfuck-monad" = dontDistribute super."brainfuck-monad"; "brainfuck-tut" = dontDistribute super."brainfuck-tut"; "break" = dontDistribute super."break"; @@ -2019,6 +2022,7 @@ self: super: { "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"; @@ -3327,6 +3331,7 @@ self: super: { "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"; @@ -6081,6 +6086,7 @@ self: super: { "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"; @@ -6506,6 +6512,7 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "pipes-interleave" = dontDistribute super."pipes-interleave"; "pipes-key-value-csv" = dontDistribute super."pipes-key-value-csv"; + "pipes-lzma" = dontDistribute super."pipes-lzma"; "pipes-mongodb" = dontDistribute super."pipes-mongodb"; "pipes-network-tls" = dontDistribute super."pipes-network-tls"; "pipes-p2p" = dontDistribute super."pipes-p2p"; @@ -6513,6 +6520,7 @@ self: super: { "pipes-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6584,6 +6592,7 @@ self: super: { "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"; @@ -6625,6 +6634,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = dontDistribute super."postgresql-schema"; "postgresql-simple" = doDistribute super."postgresql-simple_0_4_10_0"; + "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"; @@ -6764,6 +6774,7 @@ self: super: { "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"; @@ -6871,6 +6882,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -7192,6 +7204,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7356,6 +7369,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_4"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_1_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = dontDistribute super."servant-blaze"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_4"; @@ -8127,6 +8141,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_4_1"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -8166,6 +8181,7 @@ self: super: { "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"; @@ -8210,6 +8226,7 @@ self: super: { "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"; @@ -8496,6 +8513,7 @@ self: super: { "unix-process-conduit" = dontDistribute super."unix-process-conduit"; "unix-pty-light" = dontDistribute super."unix-pty-light"; "unix-time" = doDistribute super."unix-time_0_3_5"; + "unlambda" = doDistribute super."unlambda_0_1_4_1"; "unlit" = dontDistribute super."unlit"; "unm-hip" = dontDistribute super."unm-hip"; "unordered-containers" = doDistribute super."unordered-containers_0_2_5_1"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index b3cc03ff5595..4fe430352fd5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -792,6 +792,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1048,6 +1049,7 @@ self: super: { "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"; @@ -1460,6 +1462,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1729,6 +1732,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1979,6 +1983,7 @@ self: super: { "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"; @@ -3071,6 +3076,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3259,6 +3265,7 @@ self: super: { "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"; @@ -3875,6 +3882,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_5"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4567,6 +4575,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4619,6 +4628,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_3_1"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -5304,6 +5314,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5915,6 +5926,7 @@ self: super: { "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"; @@ -6324,12 +6336,14 @@ self: super: { "pipes-http" = dontDistribute super."pipes-http"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6396,6 +6410,7 @@ self: super: { "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"; @@ -6436,6 +6451,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6572,6 +6588,7 @@ self: super: { "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"; @@ -6676,6 +6693,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6979,6 +6997,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7141,6 +7160,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7885,6 +7905,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7924,6 +7945,7 @@ self: super: { "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"; @@ -7965,6 +7987,7 @@ self: super: { "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"; @@ -8444,6 +8467,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; + "wai-middleware-verbs" = doDistribute super."wai-middleware-verbs_0_2_0"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -8459,6 +8483,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8486,6 +8511,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 0059f1cc22b1..1cfa5a87f8e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -792,6 +792,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1048,6 +1049,7 @@ self: super: { "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"; @@ -1458,6 +1460,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1727,6 +1730,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1977,6 +1981,7 @@ self: super: { "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"; @@ -3067,6 +3072,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3255,6 +3261,7 @@ self: super: { "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"; @@ -3871,6 +3878,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_5"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4563,6 +4571,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4615,6 +4624,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_3_1"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -5294,6 +5304,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5905,6 +5916,7 @@ self: super: { "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"; @@ -6314,12 +6326,14 @@ self: super: { "pipes-http" = dontDistribute super."pipes-http"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6386,6 +6400,7 @@ self: super: { "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"; @@ -6426,6 +6441,7 @@ self: super: { "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-schema" = doDistribute super."postgresql-schema_0_1_9"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6562,6 +6578,7 @@ self: super: { "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"; @@ -6666,6 +6683,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6969,6 +6987,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7131,6 +7150,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7875,6 +7895,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7914,6 +7935,7 @@ self: super: { "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"; @@ -7955,6 +7977,7 @@ self: super: { "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"; @@ -8434,6 +8457,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; + "wai-middleware-verbs" = doDistribute super."wai-middleware-verbs_0_2_0"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -8449,6 +8473,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8476,6 +8501,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index f24e8057dac2..233936ea4401 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -792,6 +792,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1048,6 +1049,7 @@ self: super: { "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"; @@ -1458,6 +1460,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1727,6 +1730,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1975,6 +1979,7 @@ self: super: { "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"; @@ -3060,6 +3065,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3247,6 +3253,7 @@ self: super: { "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"; @@ -3861,6 +3868,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_5"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4549,6 +4557,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4601,6 +4610,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_3_1"; "httpd-shed" = dontDistribute super."httpd-shed"; @@ -5277,6 +5287,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5886,6 +5897,7 @@ self: super: { "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"; @@ -6295,12 +6307,14 @@ self: super: { "pipes-http" = dontDistribute super."pipes-http"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6367,6 +6381,7 @@ self: super: { "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"; @@ -6405,6 +6420,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6540,6 +6556,7 @@ self: super: { "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"; @@ -6644,6 +6661,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6945,6 +6963,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7106,6 +7125,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7845,6 +7865,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7884,6 +7905,7 @@ self: super: { "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"; @@ -7925,6 +7947,7 @@ self: super: { "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"; @@ -8403,6 +8426,7 @@ self: super: { "wai-middleware-route" = dontDistribute super."wai-middleware-route"; "wai-middleware-static-caching" = dontDistribute super."wai-middleware-static-caching"; "wai-middleware-throttle" = doDistribute super."wai-middleware-throttle_0_2_0_2"; + "wai-middleware-verbs" = doDistribute super."wai-middleware-verbs_0_2_0"; "wai-predicates" = doDistribute super."wai-predicates_0_8_5"; "wai-request-spec" = dontDistribute super."wai-request-spec"; "wai-responsible" = dontDistribute super."wai-responsible"; @@ -8418,6 +8442,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8445,6 +8470,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index ad7d69dfb901..a28574083fb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -787,6 +787,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1042,6 +1043,7 @@ self: super: { "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"; @@ -1450,6 +1452,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1715,6 +1718,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1962,6 +1966,7 @@ self: super: { "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"; @@ -3033,6 +3038,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3219,6 +3225,7 @@ self: super: { "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"; @@ -3826,6 +3833,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_5"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4514,6 +4522,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4566,6 +4575,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_4"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5238,6 +5248,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5842,6 +5853,7 @@ self: super: { "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"; @@ -6248,12 +6260,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6319,6 +6333,7 @@ self: super: { "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"; @@ -6357,6 +6372,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6491,6 +6507,7 @@ self: super: { "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"; @@ -6594,6 +6611,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6892,6 +6910,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7050,6 +7069,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7780,6 +7800,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7818,6 +7839,7 @@ self: super: { "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"; @@ -7859,6 +7881,7 @@ self: super: { "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"; @@ -8350,6 +8373,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8376,6 +8400,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 25dce0c9bac2..8adff14328f9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -786,6 +786,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1041,6 +1042,7 @@ self: super: { "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"; @@ -1448,6 +1450,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1712,6 +1715,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1958,6 +1962,7 @@ self: super: { "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"; @@ -3028,6 +3033,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3214,6 +3220,7 @@ self: super: { "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"; @@ -3821,6 +3828,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_6"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4509,6 +4517,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4561,6 +4570,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_4"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5232,6 +5242,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5835,6 +5846,7 @@ self: super: { "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"; @@ -6241,12 +6253,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6312,6 +6326,7 @@ self: super: { "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"; @@ -6350,6 +6365,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6484,6 +6500,7 @@ self: super: { "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"; @@ -6587,6 +6604,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6884,6 +6902,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7041,6 +7060,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7771,6 +7791,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7809,6 +7830,7 @@ self: super: { "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"; @@ -7850,6 +7872,7 @@ self: super: { "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"; @@ -8340,6 +8363,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8366,6 +8390,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index cf40820578bf..df54b406eb66 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -781,6 +781,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1035,6 +1036,7 @@ self: super: { "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"; @@ -1116,6 +1118,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1439,6 +1442,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1702,6 +1706,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1945,6 +1950,7 @@ self: super: { "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"; @@ -2993,6 +2999,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3179,6 +3186,7 @@ self: super: { "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"; @@ -3777,6 +3785,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4458,6 +4468,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4509,6 +4520,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5173,6 +5185,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5760,6 +5773,7 @@ self: super: { "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"; @@ -5968,6 +5982,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6154,12 +6169,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6225,6 +6242,7 @@ self: super: { "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"; @@ -6263,6 +6281,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6397,6 +6416,7 @@ self: super: { "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"; @@ -6498,6 +6518,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6792,6 +6813,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6948,6 +6970,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7670,6 +7693,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7708,6 +7732,7 @@ self: super: { "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"; @@ -7749,6 +7774,7 @@ self: super: { "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"; @@ -8058,6 +8084,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8229,6 +8256,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8254,6 +8282,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index fa0c0d11d677..1fd86da0ebd7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -780,6 +780,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1034,6 +1035,7 @@ self: super: { "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"; @@ -1115,6 +1117,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1436,6 +1439,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1698,6 +1702,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1941,6 +1946,7 @@ self: super: { "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"; @@ -2987,6 +2993,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3173,6 +3180,7 @@ self: super: { "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"; @@ -3771,6 +3779,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4448,6 +4458,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4499,6 +4510,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5162,6 +5174,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5749,6 +5762,7 @@ self: super: { "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"; @@ -5957,6 +5971,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6143,12 +6158,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6214,6 +6231,7 @@ self: super: { "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"; @@ -6251,6 +6269,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6385,6 +6404,7 @@ self: super: { "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"; @@ -6486,6 +6506,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6780,6 +6801,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6936,6 +6958,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7656,6 +7679,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7694,6 +7718,7 @@ self: super: { "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"; @@ -7735,6 +7760,7 @@ self: super: { "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"; @@ -8044,6 +8070,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8212,6 +8239,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8237,6 +8265,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index d5da3af84764..696bd9f87293 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -779,6 +779,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1033,6 +1034,7 @@ self: super: { "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"; @@ -1114,6 +1116,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1435,6 +1438,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1697,6 +1701,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1940,6 +1945,7 @@ self: super: { "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"; @@ -2980,6 +2986,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3166,6 +3173,7 @@ self: super: { "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"; @@ -3764,6 +3772,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4441,6 +4451,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4491,6 +4502,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5154,6 +5166,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5735,6 +5748,7 @@ self: super: { "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"; @@ -5943,6 +5957,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6127,12 +6142,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6198,6 +6215,7 @@ self: super: { "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"; @@ -6235,6 +6253,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6369,6 +6388,7 @@ self: super: { "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"; @@ -6470,6 +6490,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6764,6 +6785,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6919,6 +6941,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7638,6 +7661,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7676,6 +7700,7 @@ self: super: { "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"; @@ -7717,6 +7742,7 @@ self: super: { "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"; @@ -8026,6 +8052,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8194,6 +8221,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8219,6 +8247,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 241a39d2336a..0cfbe60c86b6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -779,6 +779,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1032,6 +1033,7 @@ self: super: { "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"; @@ -1113,6 +1115,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1433,6 +1436,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1692,6 +1696,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1935,6 +1940,7 @@ self: super: { "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"; @@ -2971,6 +2977,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3157,6 +3164,7 @@ self: super: { "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"; @@ -3755,6 +3763,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4432,6 +4442,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4479,6 +4490,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5141,6 +5153,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5720,6 +5733,7 @@ self: super: { "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"; @@ -5927,6 +5941,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6109,12 +6124,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6180,6 +6197,7 @@ self: super: { "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"; @@ -6217,6 +6235,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6351,6 +6370,7 @@ self: super: { "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"; @@ -6452,6 +6472,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6746,6 +6767,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6901,6 +6923,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7620,6 +7643,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7658,6 +7682,7 @@ self: super: { "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"; @@ -7699,6 +7724,7 @@ self: super: { "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"; @@ -8008,6 +8034,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8174,6 +8201,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8199,6 +8227,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index ef2bf6e33f39..3db1711a4354 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -777,6 +777,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1030,6 +1031,7 @@ self: super: { "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"; @@ -1111,6 +1113,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1429,6 +1432,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1687,6 +1691,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1929,6 +1934,7 @@ self: super: { "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"; @@ -2961,6 +2967,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3147,6 +3154,7 @@ self: super: { "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"; @@ -3744,6 +3752,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4420,6 +4430,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4467,6 +4478,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5128,6 +5140,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5705,6 +5718,7 @@ self: super: { "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"; @@ -5912,6 +5926,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6093,12 +6108,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6164,6 +6181,7 @@ self: super: { "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"; @@ -6201,6 +6219,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6334,6 +6353,7 @@ self: super: { "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"; @@ -6435,6 +6455,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6729,6 +6750,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6884,6 +6906,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7598,6 +7621,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7636,6 +7660,7 @@ self: super: { "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"; @@ -7677,6 +7702,7 @@ self: super: { "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"; @@ -7986,6 +8012,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8148,6 +8175,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8173,6 +8201,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 685d2fc727f7..83daad3cbc7b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -776,6 +776,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1029,6 +1030,7 @@ self: super: { "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"; @@ -1110,6 +1112,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_2_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1428,6 +1431,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1686,6 +1690,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1928,6 +1933,7 @@ self: super: { "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"; @@ -2956,6 +2962,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3142,6 +3149,7 @@ self: super: { "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"; @@ -3739,6 +3747,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4413,6 +4423,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4460,6 +4471,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5120,6 +5132,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5697,6 +5710,7 @@ self: super: { "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"; @@ -5904,6 +5918,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6085,12 +6100,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_5"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6156,6 +6173,7 @@ self: super: { "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"; @@ -6193,6 +6211,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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"; @@ -6324,6 +6343,7 @@ self: super: { "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"; @@ -6425,6 +6445,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6719,6 +6740,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6874,6 +6896,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7587,6 +7610,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7625,6 +7649,7 @@ self: super: { "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"; @@ -7666,6 +7691,7 @@ self: super: { "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"; @@ -7974,6 +8000,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8136,6 +8163,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8161,6 +8189,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index 360502f94e05..c1ce0baee033 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -775,6 +775,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1027,6 +1028,7 @@ self: super: { "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"; @@ -1105,7 +1107,9 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_3_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1421,6 +1425,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1678,6 +1683,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1919,6 +1925,7 @@ self: super: { "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"; @@ -2501,8 +2508,10 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; @@ -2934,6 +2943,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3120,6 +3130,7 @@ self: super: { "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"; @@ -3717,6 +3728,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4389,6 +4402,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4435,6 +4449,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5093,6 +5108,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5667,6 +5683,7 @@ self: super: { "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"; @@ -5874,6 +5891,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6054,12 +6072,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6125,6 +6145,7 @@ self: super: { "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"; @@ -6162,6 +6183,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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"; @@ -6292,6 +6314,7 @@ self: super: { "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"; @@ -6392,6 +6415,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6682,6 +6706,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6837,6 +6862,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7544,6 +7570,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7581,6 +7608,7 @@ self: super: { "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"; @@ -7622,6 +7650,7 @@ self: super: { "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"; @@ -7929,6 +7958,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8091,6 +8121,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8116,6 +8147,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 07ce115706f5..60b9ca156fdb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -772,6 +772,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1025,6 +1026,7 @@ self: super: { "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"; @@ -1103,7 +1105,9 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_3_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1419,6 +1423,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1675,6 +1680,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1915,6 +1921,7 @@ self: super: { "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"; @@ -2497,8 +2504,10 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; @@ -2930,6 +2939,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3116,6 +3126,7 @@ self: super: { "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"; @@ -3713,6 +3724,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4384,6 +4397,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4430,6 +4444,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5088,6 +5103,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5660,6 +5676,7 @@ self: super: { "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"; @@ -5867,6 +5884,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6046,12 +6064,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6117,6 +6137,7 @@ self: super: { "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"; @@ -6154,6 +6175,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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"; @@ -6284,6 +6306,7 @@ self: super: { "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"; @@ -6384,6 +6407,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6673,6 +6697,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6828,6 +6853,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7534,6 +7560,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7571,6 +7598,7 @@ self: super: { "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"; @@ -7612,6 +7640,7 @@ self: super: { "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"; @@ -7917,6 +7946,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8079,6 +8109,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8104,6 +8135,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index 20849259fc8a..a24734e639ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -771,6 +771,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1024,6 +1025,7 @@ self: super: { "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"; @@ -1102,7 +1104,9 @@ self: super: { "aeson" = doDistribute super."aeson_0_9_0_1"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_3_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1418,6 +1422,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1674,6 +1679,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1913,6 +1919,7 @@ self: super: { "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"; @@ -2491,8 +2498,10 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; @@ -2922,6 +2931,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3107,6 +3117,7 @@ self: super: { "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"; @@ -3703,6 +3714,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4373,6 +4386,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4419,6 +4433,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5073,6 +5088,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5641,6 +5657,7 @@ self: super: { "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"; @@ -5847,6 +5864,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6026,12 +6044,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6097,6 +6117,7 @@ self: super: { "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"; @@ -6134,6 +6155,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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"; @@ -6263,6 +6285,7 @@ self: super: { "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"; @@ -6363,6 +6386,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6652,6 +6676,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6807,6 +6832,7 @@ self: super: { "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7513,6 +7539,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-fold" = dontDistribute super."th-fold"; @@ -7549,6 +7576,7 @@ self: super: { "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"; @@ -7590,6 +7618,7 @@ self: super: { "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"; @@ -7894,6 +7923,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8055,6 +8085,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_4"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -8079,6 +8110,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 1deba28dee99..44885ed6cd01 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -786,6 +786,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1041,6 +1042,7 @@ self: super: { "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"; @@ -1448,6 +1450,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1712,6 +1715,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1958,6 +1962,7 @@ self: super: { "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"; @@ -3025,6 +3030,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3211,6 +3217,7 @@ self: super: { "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"; @@ -3816,6 +3823,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_6"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4504,6 +4512,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4555,6 +4564,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_4"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5225,6 +5235,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5825,6 +5836,7 @@ self: super: { "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"; @@ -6228,12 +6240,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_3"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6299,6 +6313,7 @@ self: super: { "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"; @@ -6337,6 +6352,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6471,6 +6487,7 @@ self: super: { "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"; @@ -6573,6 +6590,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6869,6 +6887,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7026,6 +7045,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7755,6 +7775,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7793,6 +7814,7 @@ self: super: { "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"; @@ -7834,6 +7856,7 @@ self: super: { "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"; @@ -8324,6 +8347,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8350,6 +8374,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index f5adc6e7c6cb..2e5eab4f9344 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -784,6 +784,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1039,6 +1040,7 @@ self: super: { "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"; @@ -1445,6 +1447,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1708,6 +1711,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1954,6 +1958,7 @@ self: super: { "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"; @@ -3014,6 +3019,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3200,6 +3206,7 @@ self: super: { "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"; @@ -3804,6 +3811,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_6"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4492,6 +4500,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4543,6 +4552,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5212,6 +5222,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5810,6 +5821,7 @@ self: super: { "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"; @@ -6212,12 +6224,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6283,6 +6297,7 @@ self: super: { "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"; @@ -6321,6 +6336,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6455,6 +6471,7 @@ self: super: { "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"; @@ -6556,6 +6573,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6850,6 +6868,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -7007,6 +7026,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7734,6 +7754,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7772,6 +7793,7 @@ self: super: { "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"; @@ -7813,6 +7835,7 @@ self: super: { "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"; @@ -8300,6 +8323,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8326,6 +8350,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 8afa876a38b5..69d2b39c6981 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -783,6 +783,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1038,6 +1039,7 @@ self: super: { "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"; @@ -1120,6 +1122,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1443,6 +1446,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1706,6 +1710,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1952,6 +1957,7 @@ self: super: { "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"; @@ -3006,6 +3012,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3192,6 +3199,7 @@ self: super: { "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"; @@ -3795,6 +3803,7 @@ self: super: { "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; "happstack-server" = doDistribute super."happstack-server_7_4_6"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4483,6 +4492,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4534,6 +4544,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5203,6 +5214,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5797,6 +5809,7 @@ self: super: { "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"; @@ -6197,12 +6210,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6268,6 +6283,7 @@ self: super: { "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"; @@ -6306,6 +6322,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6440,6 +6457,7 @@ self: super: { "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"; @@ -6541,6 +6559,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6835,6 +6854,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6992,6 +7012,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7718,6 +7739,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7756,6 +7778,7 @@ self: super: { "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"; @@ -7797,6 +7820,7 @@ self: super: { "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"; @@ -8284,6 +8308,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8310,6 +8335,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 34130d760531..1bec7d1d1279 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -783,6 +783,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1038,6 +1039,7 @@ self: super: { "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"; @@ -1120,6 +1122,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1443,6 +1446,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1706,6 +1710,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1951,6 +1956,7 @@ self: super: { "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"; @@ -3003,6 +3009,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3189,6 +3196,7 @@ self: super: { "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"; @@ -3791,6 +3799,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4478,6 +4488,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_1"; @@ -4529,6 +4540,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5198,6 +5210,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5792,6 +5805,7 @@ self: super: { "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"; @@ -6192,12 +6206,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6263,6 +6279,7 @@ self: super: { "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"; @@ -6301,6 +6318,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6435,6 +6453,7 @@ self: super: { "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"; @@ -6536,6 +6555,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6830,6 +6850,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6987,6 +7008,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7713,6 +7735,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7751,6 +7774,7 @@ self: super: { "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"; @@ -7792,6 +7816,7 @@ self: super: { "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"; @@ -8104,6 +8129,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8277,6 +8303,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8302,6 +8329,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 2f3c503dec56..508d030736f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -782,6 +782,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1037,6 +1038,7 @@ self: super: { "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"; @@ -1119,6 +1121,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1442,6 +1445,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1705,6 +1709,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1950,6 +1955,7 @@ self: super: { "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"; @@ -3001,6 +3007,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3187,6 +3194,7 @@ self: super: { "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"; @@ -3786,6 +3794,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4472,6 +4482,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4523,6 +4534,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5191,6 +5203,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5783,6 +5796,7 @@ self: super: { "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"; @@ -6181,12 +6195,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6252,6 +6268,7 @@ self: super: { "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"; @@ -6290,6 +6307,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6424,6 +6442,7 @@ self: super: { "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"; @@ -6525,6 +6544,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6819,6 +6839,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6976,6 +6997,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7702,6 +7724,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7740,6 +7763,7 @@ self: super: { "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"; @@ -7781,6 +7805,7 @@ self: super: { "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"; @@ -8092,6 +8117,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8264,6 +8290,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8289,6 +8316,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 50dc400be49f..e4dae0c389eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -782,6 +782,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1037,6 +1038,7 @@ self: super: { "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"; @@ -1119,6 +1121,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1442,6 +1445,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1705,6 +1709,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1949,6 +1954,7 @@ self: super: { "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"; @@ -2998,6 +3004,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3184,6 +3191,7 @@ self: super: { "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"; @@ -3783,6 +3791,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4468,6 +4478,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4519,6 +4530,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5187,6 +5199,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5778,6 +5791,7 @@ self: super: { "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"; @@ -6176,12 +6190,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6247,6 +6263,7 @@ self: super: { "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"; @@ -6285,6 +6302,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6419,6 +6437,7 @@ self: super: { "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"; @@ -6520,6 +6539,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6814,6 +6834,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6970,6 +6991,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7696,6 +7718,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7734,6 +7757,7 @@ self: super: { "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"; @@ -7775,6 +7799,7 @@ self: super: { "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"; @@ -8085,6 +8110,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8257,6 +8283,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8282,6 +8309,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index e390000036d9..c0584de6196d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -782,6 +782,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1037,6 +1038,7 @@ self: super: { "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"; @@ -1119,6 +1121,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1442,6 +1445,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1705,6 +1709,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1949,6 +1954,7 @@ self: super: { "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"; @@ -2998,6 +3004,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3184,6 +3191,7 @@ self: super: { "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"; @@ -3783,6 +3791,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4468,6 +4478,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4519,6 +4530,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5187,6 +5199,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5778,6 +5791,7 @@ self: super: { "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"; @@ -6176,12 +6190,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6247,6 +6263,7 @@ self: super: { "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"; @@ -6285,6 +6302,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6419,6 +6437,7 @@ self: super: { "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"; @@ -6520,6 +6539,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6814,6 +6834,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6970,6 +6991,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_6"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_0"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_6"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_6"; @@ -7696,6 +7718,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7734,6 +7757,7 @@ self: super: { "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"; @@ -7775,6 +7799,7 @@ self: super: { "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"; @@ -8085,6 +8110,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8256,6 +8282,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8281,6 +8308,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 42065921a0f4..27f2625b4b41 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -782,6 +782,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck" = doDistribute super."QuickCheck_2_8_1"; @@ -1037,6 +1038,7 @@ self: super: { "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"; @@ -1118,6 +1120,7 @@ self: super: { "aeson-bson" = dontDistribute super."aeson-bson"; "aeson-compat" = doDistribute super."aeson-compat_0_3_1_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1441,6 +1444,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1704,6 +1708,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1947,6 +1952,7 @@ self: super: { "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"; @@ -2995,6 +3001,7 @@ self: super: { "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; "file-embed" = doDistribute super."file-embed_0_0_9_1"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3181,6 +3188,7 @@ self: super: { "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"; @@ -3779,6 +3787,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -4462,6 +4472,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htaglib" = doDistribute super."htaglib_1_0_2"; @@ -4513,6 +4524,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "http2" = doDistribute super."http2_1_4_5"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; @@ -5178,6 +5190,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5768,6 +5781,7 @@ self: super: { "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"; @@ -5977,6 +5991,7 @@ self: super: { "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; "pandoc" = doDistribute super."pandoc_1_16_0_2"; + "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"; @@ -6163,12 +6178,14 @@ self: super: { "pipes-group" = doDistribute super."pipes-group_1_0_3"; "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-parse" = doDistribute super."pipes-parse_3_0_4"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -6234,6 +6251,7 @@ self: super: { "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"; @@ -6272,6 +6290,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_2"; + "postgresql-simple-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"; @@ -6406,6 +6425,7 @@ self: super: { "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"; @@ -6507,6 +6527,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-tree" = dontDistribute super."random-tree"; @@ -6801,6 +6822,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6957,6 +6979,7 @@ self: super: { "serv-wai" = dontDistribute super."serv-wai"; "servant" = doDistribute super."servant_0_4_4_7"; "servant-JuicyPixels" = doDistribute super."servant-JuicyPixels_0_3_0_1"; + "servant-auth-cookie" = dontDistribute super."servant-auth-cookie"; "servant-blaze" = doDistribute super."servant-blaze_0_4_4_7"; "servant-cassava" = dontDistribute super."servant-cassava"; "servant-client" = doDistribute super."servant-client_0_4_4_7"; @@ -7679,6 +7702,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "th-desugar" = doDistribute super."th-desugar_1_5_5"; "th-expand-syns" = doDistribute super."th-expand-syns_0_3_0_6"; "th-extras" = doDistribute super."th-extras_0_0_0_2"; @@ -7717,6 +7741,7 @@ self: super: { "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"; @@ -7758,6 +7783,7 @@ self: super: { "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"; @@ -8068,6 +8094,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "users" = doDistribute super."users_0_4_0_0"; "users-persistent" = doDistribute super."users-persistent_0_4_0_0"; "users-postgresql-simple" = doDistribute super."users-postgresql-simple_0_4_0_0"; @@ -8239,6 +8266,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_4"; "wai-websockets" = doDistribute super."wai-websockets_3_0_0_8"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; @@ -8264,6 +8292,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 987e6b3c8980..164041b29606 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -762,6 +762,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1009,6 +1010,7 @@ self: super: { "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"; @@ -1086,7 +1088,9 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_3_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1390,6 +1394,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1641,6 +1646,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1873,6 +1879,7 @@ self: super: { "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"; @@ -2370,6 +2377,7 @@ self: super: { "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_1_0"; "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; @@ -2432,8 +2440,10 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; @@ -2838,6 +2848,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -3017,6 +3028,7 @@ self: super: { "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"; @@ -3592,6 +3604,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -3652,6 +3666,7 @@ self: super: { "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_3"; "haskell-import-graph" = dontDistribute super."haskell-import-graph"; "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; @@ -4244,6 +4259,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4289,6 +4305,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; @@ -4916,6 +4933,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5460,6 +5478,7 @@ self: super: { "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"; @@ -5661,6 +5680,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_17_0_3"; + "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"; @@ -5838,12 +5859,14 @@ self: super: { "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-parse" = doDistribute super."pipes-parse_3_0_6"; "pipes-postgresql-simple" = dontDistribute super."pipes-postgresql-simple"; "pipes-rt" = dontDistribute super."pipes-rt"; + "pipes-s3" = dontDistribute super."pipes-s3"; "pipes-safe" = doDistribute super."pipes-safe_2_2_3"; "pipes-shell" = dontDistribute super."pipes-shell"; "pipes-sqlite-simple" = dontDistribute super."pipes-sqlite-simple"; @@ -5904,6 +5927,7 @@ self: super: { "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"; @@ -5941,6 +5965,7 @@ self: super: { "postgresql-error-codes" = dontDistribute super."postgresql-error-codes"; "postgresql-query" = dontDistribute super."postgresql-query"; "postgresql-simple" = doDistribute super."postgresql-simple_0_5_1_3"; + "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"; @@ -6062,6 +6087,7 @@ self: super: { "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"; @@ -6159,6 +6185,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-variates" = dontDistribute super."random-variates"; @@ -6430,6 +6457,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6578,6 +6606,7 @@ self: super: { "serpentine" = dontDistribute super."serpentine"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "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"; @@ -7248,6 +7277,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "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"; @@ -7283,11 +7313,13 @@ self: super: { "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"; @@ -7322,6 +7354,7 @@ self: super: { "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"; @@ -7612,6 +7645,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; @@ -7746,6 +7780,7 @@ self: super: { "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"; @@ -7759,6 +7794,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_4"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7782,6 +7818,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index cb091fb151dc..06cb0bc54166 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -320,6 +320,7 @@ self: super: { "FpMLv53" = dontDistribute super."FpMLv53"; "FractalArt" = dontDistribute super."FractalArt"; "Fractaler" = dontDistribute super."Fractaler"; + "Frames" = doDistribute super."Frames_0_1_3"; "Frank" = dontDistribute super."Frank"; "FreeTypeGL" = dontDistribute super."FreeTypeGL"; "FunGEn" = dontDistribute super."FunGEn"; @@ -758,6 +759,7 @@ self: super: { "QLearn" = dontDistribute super."QLearn"; "QuadEdge" = dontDistribute super."QuadEdge"; "QuadTree" = dontDistribute super."QuadTree"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; "Quelea" = dontDistribute super."Quelea"; "QuickAnnotate" = dontDistribute super."QuickAnnotate"; "QuickCheck-GenT" = dontDistribute super."QuickCheck-GenT"; @@ -1005,6 +1007,7 @@ self: super: { "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"; @@ -1082,7 +1085,9 @@ self: super: { "adp-multi-monadiccp" = dontDistribute super."adp-multi-monadiccp"; "aeson-applicative" = dontDistribute super."aeson-applicative"; "aeson-bson" = dontDistribute super."aeson-bson"; + "aeson-compat" = doDistribute super."aeson-compat_0_3_3_0"; "aeson-diff" = dontDistribute super."aeson-diff"; + "aeson-extra" = doDistribute super."aeson-extra_0_3_1_1"; "aeson-filthy" = dontDistribute super."aeson-filthy"; "aeson-flatten" = dontDistribute super."aeson-flatten"; "aeson-iproute" = dontDistribute super."aeson-iproute"; @@ -1385,6 +1390,7 @@ self: super: { "awesomium" = dontDistribute super."awesomium"; "awesomium-glut" = dontDistribute super."awesomium-glut"; "awesomium-raw" = dontDistribute super."awesomium-raw"; + "aws" = doDistribute super."aws_0_13_0"; "aws-cloudfront-signer" = dontDistribute super."aws-cloudfront-signer"; "aws-configuration-tools" = dontDistribute super."aws-configuration-tools"; "aws-dynamodb-conduit" = dontDistribute super."aws-dynamodb-conduit"; @@ -1635,6 +1641,7 @@ self: super: { "boolsimplifier" = dontDistribute super."boolsimplifier"; "boomange" = dontDistribute super."boomange"; "boombox" = dontDistribute super."boombox"; + "boomerang" = doDistribute super."boomerang_1_4_5_1"; "boomslang" = dontDistribute super."boomslang"; "borel" = dontDistribute super."borel"; "bot" = dontDistribute super."bot"; @@ -1859,6 +1866,7 @@ self: super: { "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"; @@ -2354,6 +2362,7 @@ self: super: { "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_1_0"; "debug-diff" = dontDistribute super."debug-diff"; "debug-time" = dontDistribute super."debug-time"; "decepticons" = dontDistribute super."decepticons"; @@ -2415,8 +2424,10 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; @@ -2813,6 +2824,7 @@ self: super: { "fig" = dontDistribute super."fig"; "file-collection" = dontDistribute super."file-collection"; "file-command-qq" = dontDistribute super."file-command-qq"; + "file-modules" = doDistribute super."file-modules_0_1_2_2"; "filediff" = dontDistribute super."filediff"; "filepath-io-access" = dontDistribute super."filepath-io-access"; "filepather" = dontDistribute super."filepather"; @@ -2989,6 +3001,7 @@ self: super: { "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"; @@ -3423,6 +3436,7 @@ self: super: { "hGelf" = dontDistribute super."hGelf"; "hLLVM" = dontDistribute super."hLLVM"; "hMollom" = dontDistribute super."hMollom"; + "hPDB" = doDistribute super."hPDB_1_2_0_5"; "hPDB-examples" = dontDistribute super."hPDB-examples"; "hPushover" = dontDistribute super."hPushover"; "hR" = dontDistribute super."hR"; @@ -3557,6 +3571,8 @@ self: super: { "happstack-lite" = dontDistribute super."happstack-lite"; "happstack-monad-peel" = dontDistribute super."happstack-monad-peel"; "happstack-plugins" = dontDistribute super."happstack-plugins"; + "happstack-server" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; "happstack-server-tls-cryptonite" = dontDistribute super."happstack-server-tls-cryptonite"; "happstack-state" = dontDistribute super."happstack-state"; "happstack-static-routing" = dontDistribute super."happstack-static-routing"; @@ -3617,6 +3633,7 @@ self: super: { "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_3"; "haskell-import-graph" = dontDistribute super."haskell-import-graph"; "haskell-in-space" = dontDistribute super."haskell-in-space"; "haskell-kubernetes" = dontDistribute super."haskell-kubernetes"; @@ -3874,6 +3891,7 @@ self: super: { "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"; @@ -4203,6 +4221,7 @@ self: super: { "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; "hszephyr" = dontDistribute super."hszephyr"; "htags" = dontDistribute super."htags"; @@ -4248,6 +4267,7 @@ self: super: { "http-server" = dontDistribute super."http-server"; "http-shed" = dontDistribute super."http-shed"; "http-test" = dontDistribute super."http-test"; + "http-types" = doDistribute super."http-types_0_9"; "http-wget" = dontDistribute super."http-wget"; "https-everywhere-rules" = dontDistribute super."https-everywhere-rules"; "https-everywhere-rules-raw" = dontDistribute super."https-everywhere-rules-raw"; @@ -4868,6 +4888,7 @@ self: super: { "liquidhaskell-cabal-demo" = dontDistribute super."liquidhaskell-cabal-demo"; "lispparser" = dontDistribute super."lispparser"; "list-extras" = dontDistribute super."list-extras"; + "list-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; "list-grouping" = dontDistribute super."list-grouping"; "list-mux" = dontDistribute super."list-mux"; "list-remote-forwards" = dontDistribute super."list-remote-forwards"; @@ -5407,6 +5428,7 @@ self: super: { "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"; @@ -5606,6 +5628,8 @@ self: super: { "palindromes" = dontDistribute super."palindromes"; "pam" = dontDistribute super."pam"; "panda" = dontDistribute super."panda"; + "pandoc" = doDistribute super."pandoc_1_17_0_3"; + "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"; @@ -5781,11 +5805,13 @@ self: super: { "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-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-text" = doDistribute super."pipes-text_0_0_2_1"; @@ -5843,6 +5869,7 @@ self: super: { "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"; @@ -5878,6 +5905,7 @@ self: super: { "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"; @@ -5996,6 +6024,7 @@ self: super: { "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"; @@ -6093,6 +6122,7 @@ self: super: { "random-eff" = dontDistribute super."random-eff"; "random-effin" = dontDistribute super."random-effin"; "random-extras" = dontDistribute super."random-extras"; + "random-fu" = doDistribute super."random-fu_0_2_6_2"; "random-hypergeometric" = dontDistribute super."random-hypergeometric"; "random-stream" = dontDistribute super."random-stream"; "random-variates" = dontDistribute super."random-variates"; @@ -6361,6 +6391,7 @@ self: super: { "ruler-core" = dontDistribute super."ruler-core"; "rungekutta" = dontDistribute super."rungekutta"; "runghc" = dontDistribute super."runghc"; + "rvar" = doDistribute super."rvar_0_2_0_2"; "rwlock" = dontDistribute super."rwlock"; "rws" = dontDistribute super."rws"; "s-cargot" = dontDistribute super."s-cargot"; @@ -6508,6 +6539,7 @@ self: super: { "serpentine" = dontDistribute super."serpentine"; "serv" = dontDistribute super."serv"; "serv-wai" = dontDistribute super."serv-wai"; + "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"; @@ -7174,6 +7206,7 @@ self: super: { "th-build" = dontDistribute super."th-build"; "th-cas" = dontDistribute super."th-cas"; "th-context" = dontDistribute super."th-context"; + "th-data-compat" = dontDistribute super."th-data-compat"; "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"; @@ -7209,11 +7242,13 @@ self: super: { "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"; @@ -7248,6 +7283,7 @@ self: super: { "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"; @@ -7536,6 +7572,7 @@ self: super: { "usb-id-database" = dontDistribute super."usb-id-database"; "usb-iteratee" = dontDistribute super."usb-iteratee"; "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; "utc" = dontDistribute super."utc"; "utf8-env" = dontDistribute super."utf8-env"; "utf8-prelude" = dontDistribute super."utf8-prelude"; @@ -7669,6 +7706,7 @@ self: super: { "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"; @@ -7680,6 +7718,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_4"; "wait-handle" = dontDistribute super."wait-handle"; "waitfree" = dontDistribute super."waitfree"; "warc" = dontDistribute super."warc"; @@ -7703,6 +7742,7 @@ self: super: { "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; + "web-routes-th" = doDistribute super."web-routes-th_0_22_4"; "web-routes-transformers" = dontDistribute super."web-routes-transformers"; "webapi" = dontDistribute super."webapi"; "webapp" = dontDistribute super."webapp"; @@ -7760,6 +7800,7 @@ self: super: { "word24" = dontDistribute super."word24"; "wordcloud" = dontDistribute super."wordcloud"; "wordexp" = dontDistribute super."wordexp"; + "wordpass" = doDistribute super."wordpass_1_0_0_5"; "words" = dontDistribute super."words"; "wordsearch" = dontDistribute super."wordsearch"; "wordsetdiff" = dontDistribute super."wordsetdiff"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix new file mode 100644 index 000000000000..62daa5b68ccd --- /dev/null +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -0,0 +1,7922 @@ +{ 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.2 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-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"; + "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"; + "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"; + "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"; + "HGL" = dontDistribute super."HGL"; + "HGamer3D" = dontDistribute super."HGamer3D"; + "HGamer3D-API" = dontDistribute super."HGamer3D-API"; + "HGamer3D-Audio" = dontDistribute super."HGamer3D-Audio"; + "HGamer3D-Bullet-Binding" = dontDistribute super."HGamer3D-Bullet-Binding"; + "HGamer3D-CAudio-Binding" = dontDistribute super."HGamer3D-CAudio-Binding"; + "HGamer3D-CEGUI-Binding" = dontDistribute super."HGamer3D-CEGUI-Binding"; + "HGamer3D-Common" = dontDistribute super."HGamer3D-Common"; + "HGamer3D-Data" = dontDistribute super."HGamer3D-Data"; + "HGamer3D-Enet-Binding" = dontDistribute super."HGamer3D-Enet-Binding"; + "HGamer3D-GUI" = dontDistribute super."HGamer3D-GUI"; + "HGamer3D-Graphics3D" = dontDistribute super."HGamer3D-Graphics3D"; + "HGamer3D-InputSystem" = dontDistribute super."HGamer3D-InputSystem"; + "HGamer3D-Network" = dontDistribute super."HGamer3D-Network"; + "HGamer3D-OIS-Binding" = dontDistribute super."HGamer3D-OIS-Binding"; + "HGamer3D-Ogre-Binding" = dontDistribute super."HGamer3D-Ogre-Binding"; + "HGamer3D-SDL2-Binding" = dontDistribute super."HGamer3D-SDL2-Binding"; + "HGamer3D-SFML-Binding" = dontDistribute super."HGamer3D-SFML-Binding"; + "HGamer3D-WinEvent" = dontDistribute super."HGamer3D-WinEvent"; + "HGamer3D-Wire" = dontDistribute super."HGamer3D-Wire"; + "HGraphStorage" = dontDistribute super."HGraphStorage"; + "HHDL" = dontDistribute super."HHDL"; + "HJScript" = dontDistribute super."HJScript"; + "HJVM" = dontDistribute super."HJVM"; + "HJavaScript" = dontDistribute super."HJavaScript"; + "HLearn-algebra" = dontDistribute super."HLearn-algebra"; + "HLearn-approximation" = dontDistribute super."HLearn-approximation"; + "HLearn-classification" = dontDistribute super."HLearn-classification"; + "HLearn-datastructures" = dontDistribute super."HLearn-datastructures"; + "HLearn-distributions" = dontDistribute super."HLearn-distributions"; + "HListPP" = dontDistribute super."HListPP"; + "HLogger" = dontDistribute super."HLogger"; + "HMM" = dontDistribute super."HMM"; + "HMap" = dontDistribute super."HMap"; + "HNM" = dontDistribute super."HNM"; + "HODE" = dontDistribute super."HODE"; + "HOpenCV" = dontDistribute super."HOpenCV"; + "HPath" = dontDistribute super."HPath"; + "HPi" = dontDistribute super."HPi"; + "HPlot" = dontDistribute super."HPlot"; + "HPong" = dontDistribute super."HPong"; + "HROOT" = dontDistribute super."HROOT"; + "HROOT-core" = dontDistribute super."HROOT-core"; + "HROOT-graf" = dontDistribute super."HROOT-graf"; + "HROOT-hist" = dontDistribute super."HROOT-hist"; + "HROOT-io" = dontDistribute super."HROOT-io"; + "HROOT-math" = dontDistribute super."HROOT-math"; + "HRay" = dontDistribute super."HRay"; + "HSFFIG" = dontDistribute super."HSFFIG"; + "HSGEP" = dontDistribute super."HSGEP"; + "HSH" = dontDistribute super."HSH"; + "HSHHelpers" = dontDistribute super."HSHHelpers"; + "HSlippyMap" = dontDistribute super."HSlippyMap"; + "HSmarty" = dontDistribute super."HSmarty"; + "HSoundFile" = dontDistribute super."HSoundFile"; + "HStringTemplateHelpers" = dontDistribute super."HStringTemplateHelpers"; + "HSvm" = dontDistribute super."HSvm"; + "HTTP-Simple" = dontDistribute super."HTTP-Simple"; + "HTab" = dontDistribute super."HTab"; + "HTicTacToe" = dontDistribute super."HTicTacToe"; + "HUnit-Diff" = dontDistribute super."HUnit-Diff"; + "HUnit-Plus" = dontDistribute super."HUnit-Plus"; + "HUnit-approx" = dontDistribute super."HUnit-approx"; + "HXMPP" = dontDistribute super."HXMPP"; + "HXQ" = dontDistribute super."HXQ"; + "HaLeX" = dontDistribute super."HaLeX"; + "HaMinitel" = dontDistribute super."HaMinitel"; + "HaPy" = dontDistribute super."HaPy"; + "HaTeX-meta" = dontDistribute super."HaTeX-meta"; + "HaTeX-qq" = dontDistribute super."HaTeX-qq"; + "HaVSA" = dontDistribute super."HaVSA"; + "Hach" = dontDistribute super."Hach"; + "HackMail" = dontDistribute super."HackMail"; + "Haggressive" = dontDistribute super."Haggressive"; + "HandlerSocketClient" = dontDistribute super."HandlerSocketClient"; + "Hangman" = dontDistribute super."Hangman"; + "HarmTrace" = dontDistribute super."HarmTrace"; + "HarmTrace-Base" = dontDistribute super."HarmTrace-Base"; + "HasGP" = dontDistribute super."HasGP"; + "Haschoo" = dontDistribute super."Haschoo"; + "Hashell" = dontDistribute super."Hashell"; + "HaskRel" = dontDistribute super."HaskRel"; + "HaskellForMaths" = dontDistribute super."HaskellForMaths"; + "HaskellLM" = dontDistribute super."HaskellLM"; + "HaskellNN" = dontDistribute super."HaskellNN"; + "HaskellTorrent" = dontDistribute super."HaskellTorrent"; + "HaskellTutorials" = dontDistribute super."HaskellTutorials"; + "Haskelloids" = dontDistribute super."Haskelloids"; + "Hate" = dontDistribute super."Hate"; + "Hawk" = dontDistribute super."Hawk"; + "Hayoo" = dontDistribute super."Hayoo"; + "Hclip" = dontDistribute super."Hclip"; + "Hedi" = dontDistribute super."Hedi"; + "HerbiePlugin" = dontDistribute super."HerbiePlugin"; + "Hermes" = dontDistribute super."Hermes"; + "Hieroglyph" = dontDistribute super."Hieroglyph"; + "HiggsSet" = dontDistribute super."HiggsSet"; + "Hipmunk" = dontDistribute super."Hipmunk"; + "HipmunkPlayground" = dontDistribute super."HipmunkPlayground"; + "Hish" = dontDistribute super."Hish"; + "Histogram" = dontDistribute super."Histogram"; + "Hmpf" = dontDistribute super."Hmpf"; + "Hoed" = dontDistribute super."Hoed"; + "HoleyMonoid" = dontDistribute super."HoleyMonoid"; + "Holumbus-Distribution" = dontDistribute super."Holumbus-Distribution"; + "Holumbus-MapReduce" = dontDistribute super."Holumbus-MapReduce"; + "Holumbus-Searchengine" = dontDistribute super."Holumbus-Searchengine"; + "Holumbus-Storage" = dontDistribute super."Holumbus-Storage"; + "Homology" = dontDistribute super."Homology"; + "HongoDB" = dontDistribute super."HongoDB"; + "HostAndPort" = dontDistribute super."HostAndPort"; + "Hricket" = dontDistribute super."Hricket"; + "Hs2lib" = dontDistribute super."Hs2lib"; + "HsASA" = dontDistribute super."HsASA"; + "HsHaruPDF" = dontDistribute super."HsHaruPDF"; + "HsHyperEstraier" = dontDistribute super."HsHyperEstraier"; + "HsJudy" = dontDistribute super."HsJudy"; + "HsOpenSSL-x509-system" = dontDistribute super."HsOpenSSL-x509-system"; + "HsParrot" = dontDistribute super."HsParrot"; + "HsPerl5" = dontDistribute super."HsPerl5"; + "HsSVN" = dontDistribute super."HsSVN"; + "HsTools" = dontDistribute super."HsTools"; + "Hsed" = dontDistribute super."Hsed"; + "Hsmtlib" = dontDistribute super."Hsmtlib"; + "HueAPI" = dontDistribute super."HueAPI"; + "HulkImport" = dontDistribute super."HulkImport"; + "Hungarian-Munkres" = dontDistribute super."Hungarian-Munkres"; + "IDynamic" = dontDistribute super."IDynamic"; + "IFS" = dontDistribute super."IFS"; + "INblobs" = dontDistribute super."INblobs"; + "IOR" = dontDistribute super."IOR"; + "IORefCAS" = dontDistribute super."IORefCAS"; + "IOSpec" = dontDistribute super."IOSpec"; + "IcoGrid" = dontDistribute super."IcoGrid"; + "Imlib" = dontDistribute super."Imlib"; + "ImperativeHaskell" = dontDistribute super."ImperativeHaskell"; + "IndentParser" = dontDistribute super."IndentParser"; + "IndexedList" = dontDistribute super."IndexedList"; + "InfixApplicative" = dontDistribute super."InfixApplicative"; + "Interpolation" = dontDistribute super."Interpolation"; + "Interpolation-maxs" = dontDistribute super."Interpolation-maxs"; + "Irc" = dontDistribute super."Irc"; + "IrrHaskell" = dontDistribute super."IrrHaskell"; + "IsNull" = dontDistribute super."IsNull"; + "JSON-Combinator" = dontDistribute super."JSON-Combinator"; + "JSON-Combinator-Examples" = dontDistribute super."JSON-Combinator-Examples"; + "JSONb" = dontDistribute super."JSONb"; + "JYU-Utils" = dontDistribute super."JYU-Utils"; + "JackMiniMix" = dontDistribute super."JackMiniMix"; + "Javasf" = dontDistribute super."Javasf"; + "Javav" = dontDistribute super."Javav"; + "JsContracts" = dontDistribute super."JsContracts"; + "JsonGrammar" = dontDistribute super."JsonGrammar"; + "JuicyPixels-canvas" = dontDistribute super."JuicyPixels-canvas"; + "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"; + "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"; + "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"; + "QuasiText" = doDistribute super."QuasiText_0_1_2_5"; + "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"; + "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"; + "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-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-transformers" = dontDistribute super."aivika-transformers"; + "ajhc" = dontDistribute super."ajhc"; + "al" = dontDistribute super."al"; + "alea" = dontDistribute super."alea"; + "alex-meta" = dontDistribute super."alex-meta"; + "alfred" = dontDistribute super."alfred"; + "alga" = dontDistribute super."alga"; + "algebra" = dontDistribute super."algebra"; + "algebra-dag" = dontDistribute super."algebra-dag"; + "algebra-sql" = dontDistribute super."algebra-sql"; + "algebraic" = dontDistribute super."algebraic"; + "algebraic-classes" = dontDistribute super."algebraic-classes"; + "align" = dontDistribute super."align"; + "align-text" = dontDistribute super."align-text"; + "aligned-foreignptr" = dontDistribute super."aligned-foreignptr"; + "allocated-processor" = dontDistribute super."allocated-processor"; + "alloy" = dontDistribute super."alloy"; + "alloy-proxy-fd" = dontDistribute super."alloy-proxy-fd"; + "almost-fix" = dontDistribute super."almost-fix"; + "alms" = dontDistribute super."alms"; + "alpha" = dontDistribute super."alpha"; + "alpino-tools" = dontDistribute super."alpino-tools"; + "alsa" = dontDistribute super."alsa"; + "alsa-core" = dontDistribute super."alsa-core"; + "alsa-gui" = dontDistribute super."alsa-gui"; + "alsa-midi" = dontDistribute super."alsa-midi"; + "alsa-mixer" = dontDistribute super."alsa-mixer"; + "alsa-pcm" = dontDistribute super."alsa-pcm"; + "alsa-pcm-tests" = dontDistribute super."alsa-pcm-tests"; + "alsa-seq" = dontDistribute super."alsa-seq"; + "alsa-seq-tests" = dontDistribute super."alsa-seq-tests"; + "altcomposition" = dontDistribute super."altcomposition"; + "alternative-io" = dontDistribute super."alternative-io"; + "altfloat" = dontDistribute super."altfloat"; + "alure" = dontDistribute super."alure"; + "amazon-emailer" = dontDistribute super."amazon-emailer"; + "amazon-emailer-client-snap" = dontDistribute super."amazon-emailer-client-snap"; + "amazon-products" = dontDistribute super."amazon-products"; + "amazonka-application-autoscaling" = dontDistribute super."amazonka-application-autoscaling"; + "amazonka-discovery" = dontDistribute super."amazonka-discovery"; + "ampersand" = dontDistribute super."ampersand"; + "amqp-conduit" = dontDistribute super."amqp-conduit"; + "amrun" = dontDistribute super."amrun"; + "analyze-client" = dontDistribute super."analyze-client"; + "anansi" = dontDistribute super."anansi"; + "anansi-hscolour" = dontDistribute super."anansi-hscolour"; + "anansi-pandoc" = dontDistribute super."anansi-pandoc"; + "anatomy" = dontDistribute super."anatomy"; + "android" = dontDistribute super."android"; + "android-lint-summary" = dontDistribute super."android-lint-summary"; + "animalcase" = dontDistribute super."animalcase"; + "annah" = dontDistribute super."annah"; + "annihilator" = dontDistribute super."annihilator"; + "anonymous-sums-tests" = dontDistribute super."anonymous-sums-tests"; + "ansi-pretty" = dontDistribute super."ansi-pretty"; + "ansigraph" = dontDistribute super."ansigraph"; + "antagonist" = dontDistribute super."antagonist"; + "antfarm" = dontDistribute super."antfarm"; + "anticiv" = dontDistribute super."anticiv"; + "antigate" = dontDistribute super."antigate"; + "antimirov" = dontDistribute super."antimirov"; + "antiquoter" = dontDistribute super."antiquoter"; + "antisplice" = dontDistribute super."antisplice"; + "antlrc" = dontDistribute super."antlrc"; + "anydbm" = dontDistribute super."anydbm"; + "aosd" = dontDistribute super."aosd"; + "ap-reflect" = dontDistribute super."ap-reflect"; + "apache-md5" = dontDistribute super."apache-md5"; + "apelsin" = dontDistribute super."apelsin"; + "api-builder" = dontDistribute super."api-builder"; + "api-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-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"; + "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"; + "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"; + "beamable" = dontDistribute super."beamable"; + "beautifHOL" = dontDistribute super."beautifHOL"; + "bed-and-breakfast" = dontDistribute super."bed-and-breakfast"; + "bein" = dontDistribute super."bein"; + "bench" = dontDistribute super."bench"; + "benchmark-function" = dontDistribute super."benchmark-function"; + "bencoding" = dontDistribute super."bencoding"; + "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-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"; + "board-games" = dontDistribute super."board-games"; + "bogre-banana" = dontDistribute super."bogre-banana"; + "bond" = dontDistribute super."bond"; + "bond-haskell" = dontDistribute super."bond-haskell"; + "bond-haskell-compiler" = dontDistribute super."bond-haskell-compiler"; + "boolean-list" = dontDistribute super."boolean-list"; + "boolean-normal-forms" = dontDistribute super."boolean-normal-forms"; + "boolexpr" = dontDistribute super."boolexpr"; + "bools" = dontDistribute super."bools"; + "boolsimplifier" = dontDistribute super."boolsimplifier"; + "boomange" = dontDistribute super."boomange"; + "boombox" = dontDistribute super."boombox"; + "boomslang" = dontDistribute super."boomslang"; + "borel" = dontDistribute super."borel"; + "bot" = dontDistribute super."bot"; + "botpp" = dontDistribute super."botpp"; + "bound-gen" = dontDistribute super."bound-gen"; + "bounded-tchan" = dontDistribute super."bounded-tchan"; + "boundingboxes" = dontDistribute super."boundingboxes"; + "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"; + "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"; + "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"; + "casa-abbreviations-and-acronyms" = dontDistribute super."casa-abbreviations-and-acronyms"; + "casadi-bindings" = dontDistribute super."casadi-bindings"; + "casadi-bindings-control" = dontDistribute super."casadi-bindings-control"; + "casadi-bindings-core" = dontDistribute super."casadi-bindings-core"; + "casadi-bindings-internal" = dontDistribute super."casadi-bindings-internal"; + "casadi-bindings-ipopt-interface" = dontDistribute super."casadi-bindings-ipopt-interface"; + "casadi-bindings-snopt-interface" = dontDistribute super."casadi-bindings-snopt-interface"; + "cascading" = dontDistribute super."cascading"; + "case-conversion" = dontDistribute super."case-conversion"; + "cash" = dontDistribute super."cash"; + "casing" = dontDistribute super."casing"; + "casr-logbook" = dontDistribute super."casr-logbook"; + "cassandra-cql" = dontDistribute super."cassandra-cql"; + "cassandra-thrift" = dontDistribute super."cassandra-thrift"; + "cassava-conduit" = dontDistribute super."cassava-conduit"; + "cassava-streams" = dontDistribute super."cassava-streams"; + "cassette" = dontDistribute super."cassette"; + "cassy" = dontDistribute super."cassy"; + "castle" = dontDistribute super."castle"; + "casui" = dontDistribute super."casui"; + "catamorphism" = dontDistribute super."catamorphism"; + "catch-fd" = dontDistribute super."catch-fd"; + "categorical-algebra" = dontDistribute super."categorical-algebra"; + "categories" = dontDistribute super."categories"; + "category-extras" = dontDistribute super."category-extras"; + "category-printf" = dontDistribute super."category-printf"; + "category-traced" = dontDistribute super."category-traced"; + "cayley-dickson" = dontDistribute super."cayley-dickson"; + "cblrepo" = dontDistribute super."cblrepo"; + "cci" = dontDistribute super."cci"; + "ccnx" = dontDistribute super."ccnx"; + "cctools-workqueue" = dontDistribute super."cctools-workqueue"; + "cedict" = dontDistribute super."cedict"; + "cef" = dontDistribute super."cef"; + "ceilometer-common" = dontDistribute super."ceilometer-common"; + "cellrenderer-cairo" = dontDistribute super."cellrenderer-cairo"; + "cerberus" = dontDistribute super."cerberus"; + "cereal-derive" = dontDistribute super."cereal-derive"; + "cereal-enumerator" = dontDistribute super."cereal-enumerator"; + "cereal-ieee754" = dontDistribute super."cereal-ieee754"; + "cereal-plus" = dontDistribute super."cereal-plus"; + "cereal-text" = dontDistribute super."cereal-text"; + "certificate" = dontDistribute super."certificate"; + "cf" = dontDistribute super."cf"; + "cfipu" = dontDistribute super."cfipu"; + "cflp" = dontDistribute super."cflp"; + "cfopu" = dontDistribute super."cfopu"; + "cg" = dontDistribute super."cg"; + "cgen" = dontDistribute super."cgen"; + "cgi-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"; + "chunks" = dontDistribute super."chunks"; + "chunky" = dontDistribute super."chunky"; + "church-list" = dontDistribute super."church-list"; + "cil" = dontDistribute super."cil"; + "cinvoke" = dontDistribute super."cinvoke"; + "cio" = dontDistribute super."cio"; + "cipher-rc5" = dontDistribute super."cipher-rc5"; + "ciphersaber2" = dontDistribute super."ciphersaber2"; + "circ" = dontDistribute super."circ"; + "circlehs" = dontDistribute super."circlehs"; + "cirru-parser" = dontDistribute super."cirru-parser"; + "citation-resolve" = dontDistribute super."citation-resolve"; + "citeproc-hs" = dontDistribute super."citeproc-hs"; + "citeproc-hs-pandoc-filter" = dontDistribute super."citeproc-hs-pandoc-filter"; + "cityhash" = dontDistribute super."cityhash"; + "cjk" = dontDistribute super."cjk"; + "clac" = dontDistribute super."clac"; + "clafer" = dontDistribute super."clafer"; + "claferIG" = dontDistribute super."claferIG"; + "claferwiki" = dontDistribute super."claferwiki"; + "clang-pure" = dontDistribute super."clang-pure"; + "clanki" = dontDistribute super."clanki"; + "clarifai" = dontDistribute super."clarifai"; + "clash" = dontDistribute super."clash"; + "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; + "classify" = dontDistribute super."classify"; + "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; + "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; + "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; + "clckwrks-theme-clckwrks" = dontDistribute super."clckwrks-theme-clckwrks"; + "clckwrks-theme-geo-bootstrap" = dontDistribute super."clckwrks-theme-geo-bootstrap"; + "cld2" = dontDistribute super."cld2"; + "clean-home" = dontDistribute super."clean-home"; + "clean-unions" = dontDistribute super."clean-unions"; + "cless" = dontDistribute super."cless"; + "clevercss" = dontDistribute super."clevercss"; + "cli" = dontDistribute super."cli"; + "click-clack" = dontDistribute super."click-clack"; + "clifford" = dontDistribute super."clifford"; + "clippard" = dontDistribute super."clippard"; + "clipper" = dontDistribute super."clipper"; + "clippings" = dontDistribute super."clippings"; + "clist" = dontDistribute super."clist"; + "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"; + "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-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"; + "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"; + "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-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"; + "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"; + "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-extra" = dontDistribute super."data-default-extra"; + "data-default-generics" = dontDistribute super."data-default-generics"; + "data-default-instances-bytestring" = dontDistribute super."data-default-instances-bytestring"; + "data-default-instances-case-insensitive" = dontDistribute super."data-default-instances-case-insensitive"; + "data-default-instances-new-base" = dontDistribute super."data-default-instances-new-base"; + "data-default-instances-text" = dontDistribute super."data-default-instances-text"; + "data-default-instances-unordered-containers" = dontDistribute super."data-default-instances-unordered-containers"; + "data-default-instances-vector" = dontDistribute super."data-default-instances-vector"; + "data-dispersal" = dontDistribute super."data-dispersal"; + "data-dword" = dontDistribute super."data-dword"; + "data-easy" = dontDistribute super."data-easy"; + "data-embed" = dontDistribute super."data-embed"; + "data-endian" = dontDistribute super."data-endian"; + "data-extend-generic" = dontDistribute super."data-extend-generic"; + "data-extra" = dontDistribute super."data-extra"; + "data-filepath" = dontDistribute super."data-filepath"; + "data-fin" = dontDistribute super."data-fin"; + "data-fin-simple" = dontDistribute super."data-fin-simple"; + "data-fix" = dontDistribute super."data-fix"; + "data-fix-cse" = dontDistribute super."data-fix-cse"; + "data-flags" = dontDistribute super."data-flags"; + "data-flagset" = dontDistribute super."data-flagset"; + "data-fresh" = dontDistribute super."data-fresh"; + "data-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-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"; + "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"; + "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"; + "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"; + "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-core" = doDistribute super."diagrams-core_1_3_0_7"; + "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; + "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; + "diagrams-lib" = doDistribute super."diagrams-lib_1_3_1_2"; + "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"; + "dictparser" = dontDistribute super."dictparser"; + "diet" = dontDistribute super."diet"; + "diff-gestalt" = dontDistribute super."diff-gestalt"; + "diff-parse" = dontDistribute super."diff-parse"; + "diffarray" = dontDistribute super."diffarray"; + "diffcabal" = dontDistribute super."diffcabal"; + "diffdump" = dontDistribute super."diffdump"; + "digamma" = dontDistribute super."digamma"; + "digest-pure" = dontDistribute super."digest-pure"; + "digestive-foundation-lucid" = dontDistribute super."digestive-foundation-lucid"; + "digestive-functors-happstack" = dontDistribute super."digestive-functors-happstack"; + "digestive-functors-heist" = dontDistribute super."digestive-functors-heist"; + "digestive-functors-hsp" = dontDistribute super."digestive-functors-hsp"; + "digestive-functors-scotty" = dontDistribute super."digestive-functors-scotty"; + "digestive-functors-snap" = dontDistribute super."digestive-functors-snap"; + "digit" = dontDistribute super."digit"; + "digitalocean-kzs" = dontDistribute super."digitalocean-kzs"; + "dimensional-codata" = dontDistribute super."dimensional-codata"; + "dimensional-tf" = dontDistribute super."dimensional-tf"; + "dingo-core" = dontDistribute super."dingo-core"; + "dingo-example" = dontDistribute super."dingo-example"; + "dingo-widgets" = dontDistribute super."dingo-widgets"; + "diophantine" = dontDistribute super."diophantine"; + "diplomacy" = dontDistribute super."diplomacy"; + "diplomacy-server" = dontDistribute super."diplomacy-server"; + "direct-binary-files" = dontDistribute super."direct-binary-files"; + "direct-daemonize" = dontDistribute super."direct-daemonize"; + "direct-fastcgi" = dontDistribute super."direct-fastcgi"; + "direct-http" = dontDistribute super."direct-http"; + "direct-murmur-hash" = dontDistribute super."direct-murmur-hash"; + "direct-plugins" = dontDistribute super."direct-plugins"; + "directed-cubical" = dontDistribute super."directed-cubical"; + "directory-layout" = dontDistribute super."directory-layout"; + "directory-listing-webpage-parser" = dontDistribute super."directory-listing-webpage-parser"; + "dirfiles" = dontDistribute super."dirfiles"; + "dirstream" = dontDistribute super."dirstream"; + "disassembler" = dontDistribute super."disassembler"; + "discogs-haskell" = dontDistribute super."discogs-haskell"; + "discordian-calendar" = dontDistribute super."discordian-calendar"; + "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-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"; + "dom-lt" = dontDistribute super."dom-lt"; + "dom-parser" = dontDistribute super."dom-parser"; + "dom-selector" = dontDistribute super."dom-selector"; + "domain-auth" = dontDistribute super."domain-auth"; + "dominion" = dontDistribute super."dominion"; + "domplate" = dontDistribute super."domplate"; + "dot2graphml" = dontDistribute super."dot2graphml"; + "dotfs" = dontDistribute super."dotfs"; + "dotgen" = dontDistribute super."dotgen"; + "double-metaphone" = dontDistribute super."double-metaphone"; + "dove" = dontDistribute super."dove"; + "dow" = dontDistribute super."dow"; + "download-curl" = dontDistribute super."download-curl"; + "download-media-content" = dontDistribute super."download-media-content"; + "dozenal" = dontDistribute super."dozenal"; + "dozens" = dontDistribute super."dozens"; + "dph-base" = dontDistribute super."dph-base"; + "dph-examples" = dontDistribute super."dph-examples"; + "dph-lifted-base" = dontDistribute super."dph-lifted-base"; + "dph-lifted-copy" = dontDistribute super."dph-lifted-copy"; + "dph-lifted-vseg" = dontDistribute super."dph-lifted-vseg"; + "dph-par" = dontDistribute super."dph-par"; + "dph-prim-interface" = dontDistribute super."dph-prim-interface"; + "dph-prim-par" = dontDistribute super."dph-prim-par"; + "dph-prim-seq" = dontDistribute super."dph-prim-seq"; + "dph-seq" = dontDistribute super."dph-seq"; + "dpkg" = dontDistribute super."dpkg"; + "drClickOn" = dontDistribute super."drClickOn"; + "draw-poker" = dontDistribute super."draw-poker"; + "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; + "dropbox-sdk" = dontDistribute super."dropbox-sdk"; + "dropsolve" = dontDistribute super."dropsolve"; + "ds-kanren" = dontDistribute super."ds-kanren"; + "dsh-sql" = dontDistribute super."dsh-sql"; + "dsmc" = dontDistribute super."dsmc"; + "dsmc-tools" = dontDistribute super."dsmc-tools"; + "dson" = dontDistribute super."dson"; + "dson-parsec" = dontDistribute super."dson-parsec"; + "dsp" = dontDistribute super."dsp"; + "dstring" = dontDistribute super."dstring"; + "dtab" = dontDistribute super."dtab"; + "dtd" = dontDistribute super."dtd"; + "dtd-text" = dontDistribute super."dtd-text"; + "dtd-types" = dontDistribute super."dtd-types"; + "dtrace" = dontDistribute super."dtrace"; + "dtw" = dontDistribute super."dtw"; + "dump" = dontDistribute super."dump"; + "duplo" = dontDistribute super."duplo"; + "dvda" = dontDistribute super."dvda"; + "dvdread" = dontDistribute super."dvdread"; + "dvi-processing" = dontDistribute super."dvi-processing"; + "dvorak" = dontDistribute super."dvorak"; + "dwarf" = dontDistribute super."dwarf"; + "dwarf-el" = dontDistribute super."dwarf-el"; + "dwarfadt" = dontDistribute super."dwarfadt"; + "dx9base" = dontDistribute super."dx9base"; + "dx9d3d" = dontDistribute super."dx9d3d"; + "dx9d3dx" = dontDistribute super."dx9d3dx"; + "dynamic-cabal" = dontDistribute super."dynamic-cabal"; + "dynamic-graph" = dontDistribute super."dynamic-graph"; + "dynamic-linker-template" = dontDistribute super."dynamic-linker-template"; + "dynamic-loader" = dontDistribute super."dynamic-loader"; + "dynamic-mvector" = dontDistribute super."dynamic-mvector"; + "dynamic-object" = dontDistribute super."dynamic-object"; + "dynamic-plot" = dontDistribute super."dynamic-plot"; + "dynamic-pp" = dontDistribute super."dynamic-pp"; + "dynobud" = dontDistribute super."dynobud"; + "dywapitchtrack" = dontDistribute super."dywapitchtrack"; + "dzen-utils" = dontDistribute super."dzen-utils"; + "eager-sockets" = dontDistribute super."eager-sockets"; + "easy-api" = dontDistribute super."easy-api"; + "easy-bitcoin" = dontDistribute super."easy-bitcoin"; + "easyjson" = dontDistribute super."easyjson"; + "easyplot" = dontDistribute super."easyplot"; + "easyrender" = dontDistribute super."easyrender"; + "ebeats" = dontDistribute super."ebeats"; + "ebnf-bff" = dontDistribute super."ebnf-bff"; + "ec2-signature" = dontDistribute super."ec2-signature"; + "ecdsa" = dontDistribute super."ecdsa"; + "ecma262" = dontDistribute super."ecma262"; + "ecu" = dontDistribute super."ecu"; + "ed25519" = dontDistribute super."ed25519"; + "ed25519-donna" = dontDistribute super."ed25519-donna"; + "eddie" = dontDistribute super."eddie"; + "edenmodules" = dontDistribute super."edenmodules"; + "edenskel" = dontDistribute super."edenskel"; + "edentv" = dontDistribute super."edentv"; + "edge" = dontDistribute super."edge"; + "edis" = dontDistribute super."edis"; + "edit-lenses" = dontDistribute super."edit-lenses"; + "edit-lenses-demo" = dontDistribute super."edit-lenses-demo"; + "editable" = dontDistribute super."editable"; + "editline" = dontDistribute super."editline"; + "editpipe" = dontDistribute super."editpipe"; + "effect-monad" = dontDistribute super."effect-monad"; + "effective-aspects" = dontDistribute super."effective-aspects"; + "effective-aspects-mzv" = dontDistribute super."effective-aspects-mzv"; + "effects" = dontDistribute super."effects"; + "effects-parser" = dontDistribute super."effects-parser"; + "effin" = dontDistribute super."effin"; + "egison" = dontDistribute super."egison"; + "egison-quote" = dontDistribute super."egison-quote"; + "egison-tutorial" = dontDistribute super."egison-tutorial"; + "ehaskell" = dontDistribute super."ehaskell"; + "ehs" = dontDistribute super."ehs"; + "eibd-client-simple" = dontDistribute super."eibd-client-simple"; + "eigen" = dontDistribute super."eigen"; + "eithers" = dontDistribute super."eithers"; + "ekg-bosun" = dontDistribute super."ekg-bosun"; + "ekg-carbon" = dontDistribute super."ekg-carbon"; + "ekg-log" = dontDistribute super."ekg-log"; + "ekg-push" = dontDistribute super."ekg-push"; + "ekg-rrd" = dontDistribute super."ekg-rrd"; + "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-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"; + "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"; + "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"; + "fix-imports" = dontDistribute super."fix-imports"; + "fix-parser-simple" = dontDistribute super."fix-parser-simple"; + "fix-symbols-gitit" = dontDistribute super."fix-symbols-gitit"; + "fixed-length" = dontDistribute super."fixed-length"; + "fixed-point" = dontDistribute super."fixed-point"; + "fixed-point-vector" = dontDistribute super."fixed-point-vector"; + "fixed-point-vector-space" = dontDistribute super."fixed-point-vector-space"; + "fixed-precision" = dontDistribute super."fixed-precision"; + "fixed-storable-array" = dontDistribute super."fixed-storable-array"; + "fixed-vector-binary" = dontDistribute super."fixed-vector-binary"; + "fixed-vector-cereal" = dontDistribute super."fixed-vector-cereal"; + "fixedprec" = dontDistribute super."fixedprec"; + "fixedwidth-hs" = dontDistribute super."fixedwidth-hs"; + "fixfile" = dontDistribute super."fixfile"; + "fixhs" = dontDistribute super."fixhs"; + "fixplate" = dontDistribute super."fixplate"; + "fixpoint" = dontDistribute super."fixpoint"; + "fixtime" = dontDistribute super."fixtime"; + "fizz-buzz" = dontDistribute super."fizz-buzz"; + "flaccuraterip" = dontDistribute super."flaccuraterip"; + "flamethrower" = dontDistribute super."flamethrower"; + "flamingra" = dontDistribute super."flamingra"; + "flat-maybe" = dontDistribute super."flat-maybe"; + "flat-tex" = dontDistribute super."flat-tex"; + "flexible-time" = dontDistribute super."flexible-time"; + "flexible-unlit" = dontDistribute super."flexible-unlit"; + "flexiwrap" = dontDistribute super."flexiwrap"; + "flexiwrap-smallcheck" = dontDistribute super."flexiwrap-smallcheck"; + "flickr" = dontDistribute super."flickr"; + "flippers" = dontDistribute super."flippers"; + "flite" = dontDistribute super."flite"; + "flo" = dontDistribute super."flo"; + "float-binstring" = dontDistribute super."float-binstring"; + "floating-bits" = dontDistribute super."floating-bits"; + "floatshow" = dontDistribute super."floatshow"; + "flow2dot" = dontDistribute super."flow2dot"; + "flowdock" = 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"; + "for-free" = dontDistribute super."for-free"; + "forbidden-fruit" = dontDistribute super."forbidden-fruit"; + "fordo" = dontDistribute super."fordo"; + "foreign-storable-asymmetric" = dontDistribute super."foreign-storable-asymmetric"; + "foreign-var" = dontDistribute super."foreign-var"; + "forger" = dontDistribute super."forger"; + "forkable-monad" = dontDistribute super."forkable-monad"; + "formal" = dontDistribute super."formal"; + "format" = dontDistribute super."format"; + "format-status" = dontDistribute super."format-status"; + "formattable" = dontDistribute super."formattable"; + "forml" = dontDistribute super."forml"; + "formlets" = dontDistribute super."formlets"; + "formlets-hsp" = dontDistribute super."formlets-hsp"; + "formura" = dontDistribute super."formura"; + "forth-hll" = dontDistribute super."forth-hll"; + "foscam-directory" = dontDistribute super."foscam-directory"; + "foscam-filename" = dontDistribute super."foscam-filename"; + "foscam-sort" = dontDistribute super."foscam-sort"; + "fountain" = dontDistribute super."fountain"; + "fpco-api" = dontDistribute super."fpco-api"; + "fpipe" = dontDistribute super."fpipe"; + "fpnla" = dontDistribute super."fpnla"; + "fpnla-examples" = dontDistribute super."fpnla-examples"; + "fptest" = dontDistribute super."fptest"; + "fquery" = dontDistribute super."fquery"; + "fractal" = dontDistribute super."fractal"; + "fractals" = dontDistribute super."fractals"; + "fraction" = dontDistribute super."fraction"; + "frag" = dontDistribute super."frag"; + "frame" = dontDistribute super."frame"; + "frame-markdown" = dontDistribute super."frame-markdown"; + "franchise" = dontDistribute super."franchise"; + "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-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-lens" = dontDistribute super."generics-sop-lens"; + "genericserialize" = dontDistribute super."genericserialize"; + "genetics" = dontDistribute super."genetics"; + "geni-gui" = dontDistribute super."geni-gui"; + "geni-util" = dontDistribute super."geni-util"; + "geniconvert" = dontDistribute super."geniconvert"; + "genifunctors" = dontDistribute super."genifunctors"; + "geniplate" = dontDistribute super."geniplate"; + "geniserver" = dontDistribute super."geniserver"; + "genprog" = dontDistribute super."genprog"; + "gentlemark" = dontDistribute super."gentlemark"; + "geo-resolver" = dontDistribute super."geo-resolver"; + "geo-uk" = dontDistribute super."geo-uk"; + "geocalc" = dontDistribute super."geocalc"; + "geocode-google" = dontDistribute super."geocode-google"; + "geodetic" = dontDistribute super."geodetic"; + "geodetics" = dontDistribute super."geodetics"; + "geohash" = dontDistribute super."geohash"; + "geoip2" = dontDistribute super."geoip2"; + "geojson" = dontDistribute super."geojson"; + "geojson-types" = dontDistribute super."geojson-types"; + "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-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-hplay" = dontDistribute super."ghcjs-hplay"; + "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" = doDistribute super."gi-gtk_3_0_3"; + "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"; + "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-cloudtrace" = dontDistribute super."gogol-cloudtrace"; + "gogol-compute" = dontDistribute super."gogol-compute"; + "gogol-container" = dontDistribute super."gogol-container"; + "gogol-core" = dontDistribute super."gogol-core"; + "gogol-customsearch" = dontDistribute super."gogol-customsearch"; + "gogol-dataflow" = dontDistribute super."gogol-dataflow"; + "gogol-datastore" = dontDistribute super."gogol-datastore"; + "gogol-debugger" = dontDistribute super."gogol-debugger"; + "gogol-deploymentmanager" = dontDistribute super."gogol-deploymentmanager"; + "gogol-dfareporting" = dontDistribute super."gogol-dfareporting"; + "gogol-discovery" = dontDistribute super."gogol-discovery"; + "gogol-dns" = dontDistribute super."gogol-dns"; + "gogol-doubleclick-bids" = dontDistribute super."gogol-doubleclick-bids"; + "gogol-doubleclick-search" = dontDistribute super."gogol-doubleclick-search"; + "gogol-drive" = dontDistribute super."gogol-drive"; + "gogol-fitness" = dontDistribute super."gogol-fitness"; + "gogol-fonts" = dontDistribute super."gogol-fonts"; + "gogol-freebasesearch" = dontDistribute super."gogol-freebasesearch"; + "gogol-fusiontables" = dontDistribute super."gogol-fusiontables"; + "gogol-games" = dontDistribute super."gogol-games"; + "gogol-games-configuration" = dontDistribute super."gogol-games-configuration"; + "gogol-games-management" = dontDistribute super."gogol-games-management"; + "gogol-genomics" = dontDistribute super."gogol-genomics"; + "gogol-gmail" = dontDistribute super."gogol-gmail"; + "gogol-groups-migration" = dontDistribute super."gogol-groups-migration"; + "gogol-groups-settings" = dontDistribute super."gogol-groups-settings"; + "gogol-identity-toolkit" = dontDistribute super."gogol-identity-toolkit"; + "gogol-latencytest" = dontDistribute super."gogol-latencytest"; + "gogol-logging" = dontDistribute super."gogol-logging"; + "gogol-maps-coordinate" = dontDistribute super."gogol-maps-coordinate"; + "gogol-maps-engine" = dontDistribute super."gogol-maps-engine"; + "gogol-mirror" = dontDistribute super."gogol-mirror"; + "gogol-monitoring" = dontDistribute super."gogol-monitoring"; + "gogol-oauth2" = dontDistribute super."gogol-oauth2"; + "gogol-pagespeed" = dontDistribute super."gogol-pagespeed"; + "gogol-partners" = dontDistribute super."gogol-partners"; + "gogol-play-moviespartner" = dontDistribute super."gogol-play-moviespartner"; + "gogol-plus" = dontDistribute super."gogol-plus"; + "gogol-plus-domains" = dontDistribute super."gogol-plus-domains"; + "gogol-prediction" = dontDistribute super."gogol-prediction"; + "gogol-proximitybeacon" = dontDistribute super."gogol-proximitybeacon"; + "gogol-pubsub" = dontDistribute super."gogol-pubsub"; + "gogol-qpxexpress" = dontDistribute super."gogol-qpxexpress"; + "gogol-replicapool" = dontDistribute super."gogol-replicapool"; + "gogol-replicapool-updater" = dontDistribute super."gogol-replicapool-updater"; + "gogol-resourcemanager" = dontDistribute super."gogol-resourcemanager"; + "gogol-resourceviews" = dontDistribute super."gogol-resourceviews"; + "gogol-shopping-content" = dontDistribute super."gogol-shopping-content"; + "gogol-siteverification" = dontDistribute super."gogol-siteverification"; + "gogol-spectrum" = dontDistribute super."gogol-spectrum"; + "gogol-sqladmin" = dontDistribute super."gogol-sqladmin"; + "gogol-storage" = dontDistribute super."gogol-storage"; + "gogol-storage-transfer" = dontDistribute super."gogol-storage-transfer"; + "gogol-tagmanager" = dontDistribute super."gogol-tagmanager"; + "gogol-taskqueue" = dontDistribute super."gogol-taskqueue"; + "gogol-translate" = dontDistribute super."gogol-translate"; + "gogol-urlshortener" = dontDistribute super."gogol-urlshortener"; + "gogol-useraccounts" = dontDistribute super."gogol-useraccounts"; + "gogol-webmaster-tools" = dontDistribute super."gogol-webmaster-tools"; + "gogol-youtube" = dontDistribute super."gogol-youtube"; + "gogol-youtube-analytics" = dontDistribute super."gogol-youtube-analytics"; + "gogol-youtube-reporting" = dontDistribute super."gogol-youtube-reporting"; + "gooey" = dontDistribute super."gooey"; + "google-dictionary" = dontDistribute super."google-dictionary"; + "google-drive" = dontDistribute super."google-drive"; + "google-html5-slide" = dontDistribute super."google-html5-slide"; + "google-mail-filters" = dontDistribute super."google-mail-filters"; + "google-oauth2" = dontDistribute super."google-oauth2"; + "google-search" = dontDistribute super."google-search"; + "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"; + "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"; + "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"; + "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-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" = doDistribute super."happstack-server_7_4_6_1"; + "happstack-server-tls" = doDistribute super."happstack-server-tls_7_1_6_1"; + "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"; + "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"; + "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-formatter" = dontDistribute super."haskell-formatter"; + "haskell-ftp" = dontDistribute super."haskell-ftp"; + "haskell-generate" = dontDistribute super."haskell-generate"; + "haskell-import-graph" = dontDistribute super."haskell-import-graph"; + "haskell-in-space" = dontDistribute super."haskell-in-space"; + "haskell-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-qrencode" = dontDistribute super."haskell-qrencode"; + "haskell-read-editor" = dontDistribute super."haskell-read-editor"; + "haskell-reflect" = dontDistribute super."haskell-reflect"; + "haskell-rules" = dontDistribute super."haskell-rules"; + "haskell-src-exts-qq" = dontDistribute super."haskell-src-exts-qq"; + "haskell-src-meta-mwotton" = dontDistribute super."haskell-src-meta-mwotton"; + "haskell-token-utils" = dontDistribute super."haskell-token-utils"; + "haskell-tor" = dontDistribute super."haskell-tor"; + "haskell-type-exts" = dontDistribute super."haskell-type-exts"; + "haskell-typescript" = dontDistribute super."haskell-typescript"; + "haskell-tyrant" = dontDistribute super."haskell-tyrant"; + "haskell-updater" = dontDistribute super."haskell-updater"; + "haskell-xmpp" = dontDistribute super."haskell-xmpp"; + "haskell2010" = dontDistribute super."haskell2010"; + "haskell98" = dontDistribute super."haskell98"; + "haskell98libraries" = dontDistribute super."haskell98libraries"; + "haskelldb" = dontDistribute super."haskelldb"; + "haskelldb-connect-hdbc" = dontDistribute super."haskelldb-connect-hdbc"; + "haskelldb-connect-hdbc-catchio-mtl" = dontDistribute super."haskelldb-connect-hdbc-catchio-mtl"; + "haskelldb-connect-hdbc-catchio-tf" = dontDistribute super."haskelldb-connect-hdbc-catchio-tf"; + "haskelldb-connect-hdbc-catchio-transformers" = dontDistribute super."haskelldb-connect-hdbc-catchio-transformers"; + "haskelldb-connect-hdbc-lifted" = dontDistribute super."haskelldb-connect-hdbc-lifted"; + "haskelldb-dynamic" = dontDistribute super."haskelldb-dynamic"; + "haskelldb-flat" = dontDistribute super."haskelldb-flat"; + "haskelldb-hdbc" = dontDistribute super."haskelldb-hdbc"; + "haskelldb-hdbc-mysql" = dontDistribute super."haskelldb-hdbc-mysql"; + "haskelldb-hdbc-odbc" = dontDistribute super."haskelldb-hdbc-odbc"; + "haskelldb-hdbc-postgresql" = dontDistribute super."haskelldb-hdbc-postgresql"; + "haskelldb-hdbc-sqlite3" = dontDistribute super."haskelldb-hdbc-sqlite3"; + "haskelldb-hsql" = dontDistribute super."haskelldb-hsql"; + "haskelldb-hsql-mysql" = dontDistribute super."haskelldb-hsql-mysql"; + "haskelldb-hsql-odbc" = dontDistribute super."haskelldb-hsql-odbc"; + "haskelldb-hsql-oracle" = dontDistribute super."haskelldb-hsql-oracle"; + "haskelldb-hsql-postgresql" = dontDistribute super."haskelldb-hsql-postgresql"; + "haskelldb-hsql-sqlite" = dontDistribute super."haskelldb-hsql-sqlite"; + "haskelldb-hsql-sqlite3" = dontDistribute super."haskelldb-hsql-sqlite3"; + "haskelldb-th" = dontDistribute super."haskelldb-th"; + "haskelldb-wx" = dontDistribute super."haskelldb-wx"; + "haskellscrabble" = dontDistribute super."haskellscrabble"; + "haskellscript" = dontDistribute super."haskellscript"; + "haskelm" = dontDistribute super."haskelm"; + "haskgame" = dontDistribute super."haskgame"; + "haskheap" = dontDistribute super."haskheap"; + "haskhol-core" = dontDistribute super."haskhol-core"; + "haskmon" = dontDistribute super."haskmon"; + "haskoin" = dontDistribute super."haskoin"; + "haskoin-core" = dontDistribute super."haskoin-core"; + "haskoin-crypto" = dontDistribute super."haskoin-crypto"; + "haskoin-node" = dontDistribute super."haskoin-node"; + "haskoin-protocol" = dontDistribute super."haskoin-protocol"; + "haskoin-script" = dontDistribute super."haskoin-script"; + "haskoin-util" = dontDistribute super."haskoin-util"; + "haskoin-wallet" = dontDistribute super."haskoin-wallet"; + "haskoon" = dontDistribute super."haskoon"; + "haskoon-httpspec" = dontDistribute super."haskoon-httpspec"; + "haskoon-salvia" = dontDistribute super."haskoon-salvia"; + "haskore" = dontDistribute super."haskore"; + "haskore-realtime" = dontDistribute super."haskore-realtime"; + "haskore-supercollider" = dontDistribute super."haskore-supercollider"; + "haskore-synthesizer" = dontDistribute super."haskore-synthesizer"; + "haskore-vintage" = dontDistribute super."haskore-vintage"; + "hasktags" = dontDistribute super."hasktags"; + "haslo" = dontDistribute super."haslo"; + "hasloGUI" = dontDistribute super."hasloGUI"; + "hasparql-client" = dontDistribute super."hasparql-client"; + "haspell" = dontDistribute super."haspell"; + "hasql-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"; + "hedis" = doDistribute super."hedis_0_6_10"; + "hedis-config" = dontDistribute super."hedis-config"; + "hedis-monadic" = dontDistribute super."hedis-monadic"; + "hedis-pile" = dontDistribute super."hedis-pile"; + "hedis-simple" = dontDistribute super."hedis-simple"; + "hedis-tags" = dontDistribute super."hedis-tags"; + "hedn" = dontDistribute super."hedn"; + "hein" = dontDistribute super."hein"; + "heist-aeson" = dontDistribute super."heist-aeson"; + "heist-async" = dontDistribute super."heist-async"; + "helics" = dontDistribute super."helics"; + "helics-wai" = dontDistribute super."helics-wai"; + "helisp" = dontDistribute super."helisp"; + "helium" = dontDistribute super."helium"; + "helix" = dontDistribute super."helix"; + "hell" = dontDistribute super."hell"; + "hellage" = dontDistribute super."hellage"; + "hellnet" = dontDistribute super."hellnet"; + "hello" = dontDistribute super."hello"; + "helm" = dontDistribute super."helm"; + "help-esb" = dontDistribute super."help-esb"; + "hemkay" = dontDistribute super."hemkay"; + "hemkay-core" = dontDistribute super."hemkay-core"; + "hemokit" = dontDistribute super."hemokit"; + "hen" = dontDistribute super."hen"; + "henet" = dontDistribute super."henet"; + "hepevt" = dontDistribute super."hepevt"; + "her-lexer" = dontDistribute super."her-lexer"; + "her-lexer-parsec" = dontDistribute super."her-lexer-parsec"; + "herbalizer" = dontDistribute super."herbalizer"; + "heredocs" = dontDistribute super."heredocs"; + "herf-time" = dontDistribute super."herf-time"; + "hermit" = dontDistribute super."hermit"; + "hermit-syb" = dontDistribute super."hermit-syb"; + "hero-club-five-tenets" = dontDistribute super."hero-club-five-tenets"; + "heroku" = dontDistribute super."heroku"; + "heroku-persistent" = dontDistribute super."heroku-persistent"; + "herringbone" = dontDistribute super."herringbone"; + "herringbone-embed" = dontDistribute super."herringbone-embed"; + "herringbone-wai" = dontDistribute super."herringbone-wai"; + "hesh" = dontDistribute super."hesh"; + "hesql" = dontDistribute super."hesql"; + "hetero-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"; + "homplexity" = dontDistribute super."homplexity"; + "honi" = dontDistribute super."honi"; + "honk" = dontDistribute super."honk"; + "hoobuddy" = dontDistribute super."hoobuddy"; + "hood" = dontDistribute super."hood"; + "hood-off" = dontDistribute super."hood-off"; + "hood2" = dontDistribute super."hood2"; + "hoodie" = dontDistribute super."hoodie"; + "hoodle" = dontDistribute super."hoodle"; + "hoodle-builder" = dontDistribute super."hoodle-builder"; + "hoodle-core" = dontDistribute super."hoodle-core"; + "hoodle-extra" = dontDistribute super."hoodle-extra"; + "hoodle-parser" = dontDistribute super."hoodle-parser"; + "hoodle-publish" = dontDistribute super."hoodle-publish"; + "hoodle-render" = dontDistribute super."hoodle-render"; + "hoodle-types" = dontDistribute super."hoodle-types"; + "hoogle-index" = dontDistribute super."hoogle-index"; + "hooks-dir" = dontDistribute super."hooks-dir"; + "hoovie" = dontDistribute super."hoovie"; + "hopencc" = dontDistribute super."hopencc"; + "hopencl" = dontDistribute super."hopencl"; + "hopfield" = dontDistribute super."hopfield"; + "hopfield-networks" = dontDistribute super."hopfield-networks"; + "hopfli" = dontDistribute super."hopfli"; + "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-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"; + "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; + "hsyscall" = dontDistribute super."hsyscall"; + "hszephyr" = dontDistribute super."hszephyr"; + "htags" = dontDistribute super."htags"; + "htar" = dontDistribute super."htar"; + "htiled" = dontDistribute super."htiled"; + "htime" = dontDistribute super."htime"; + "html-email-validate" = dontDistribute super."html-email-validate"; + "html-entities" = dontDistribute super."html-entities"; + "html-kure" = dontDistribute super."html-kure"; + "html-minimalist" = dontDistribute super."html-minimalist"; + "html-parse" = dontDistribute super."html-parse"; + "html-rules" = dontDistribute super."html-rules"; + "html-tokenizer" = dontDistribute super."html-tokenizer"; + "html-truncate" = dontDistribute super."html-truncate"; + "html2hamlet" = dontDistribute super."html2hamlet"; + "html5-entity" = dontDistribute super."html5-entity"; + "htodo" = dontDistribute super."htodo"; + "htrace" = dontDistribute super."htrace"; + "hts" = dontDistribute super."hts"; + "htsn" = dontDistribute super."htsn"; + "htsn-common" = dontDistribute super."htsn-common"; + "htsn-import" = dontDistribute super."htsn-import"; + "http-attoparsec" = dontDistribute super."http-attoparsec"; + "http-client-auth" = dontDistribute super."http-client-auth"; + "http-client-conduit" = dontDistribute super."http-client-conduit"; + "http-client-lens" = dontDistribute super."http-client-lens"; + "http-client-multipart" = dontDistribute super."http-client-multipart"; + "http-client-request-modifiers" = dontDistribute super."http-client-request-modifiers"; + "http-client-session" = dontDistribute super."http-client-session"; + "http-client-streams" = dontDistribute super."http-client-streams"; + "http-conduit-browser" = dontDistribute super."http-conduit-browser"; + "http-conduit-downloader" = dontDistribute super."http-conduit-downloader"; + "http-dispatch" = dontDistribute super."http-dispatch"; + "http-encodings" = dontDistribute super."http-encodings"; + "http-enumerator" = dontDistribute super."http-enumerator"; + "http-kinder" = dontDistribute super."http-kinder"; + "http-kit" = dontDistribute super."http-kit"; + "http-listen" = dontDistribute super."http-listen"; + "http-monad" = dontDistribute super."http-monad"; + "http-proxy" = dontDistribute super."http-proxy"; + "http-querystring" = dontDistribute super."http-querystring"; + "http-response-decoder" = dontDistribute super."http-response-decoder"; + "http-server" = dontDistribute super."http-server"; + "http-shed" = dontDistribute super."http-shed"; + "http-test" = dontDistribute super."http-test"; + "http-wget" = dontDistribute super."http-wget"; + "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"; + "hylogen" = dontDistribute super."hylogen"; + "hylolib" = dontDistribute super."hylolib"; + "hylotab" = dontDistribute super."hylotab"; + "hyloutils" = dontDistribute super."hyloutils"; + "hyperdrive" = dontDistribute super."hyperdrive"; + "hyperfunctions" = dontDistribute super."hyperfunctions"; + "hyperpublic" = dontDistribute super."hyperpublic"; + "hyphenate" = dontDistribute super."hyphenate"; + "hypher" = dontDistribute super."hypher"; + "hzaif" = dontDistribute super."hzaif"; + "hzk" = dontDistribute super."hzk"; + "i18n" = dontDistribute super."i18n"; + "iCalendar" = dontDistribute super."iCalendar"; + "iException" = dontDistribute super."iException"; + "iap-verifier" = dontDistribute super."iap-verifier"; + "ib-api" = dontDistribute super."ib-api"; + "iban" = dontDistribute super."iban"; + "ibus-hs" = dontDistribute super."ibus-hs"; + "ideas" = dontDistribute super."ideas"; + "ideas-math" = dontDistribute super."ideas-math"; + "idempotent" = dontDistribute super."idempotent"; + "identicon" = dontDistribute super."identicon"; + "identifiers" = dontDistribute super."identifiers"; + "idiii" = dontDistribute super."idiii"; + "idna" = dontDistribute super."idna"; + "idna2008" = dontDistribute super."idna2008"; + "ieee" = dontDistribute super."ieee"; + "ieee-utils" = dontDistribute super."ieee-utils"; + "ieee-utils-tempfix" = dontDistribute super."ieee-utils-tempfix"; + "ieee754-parser" = dontDistribute super."ieee754-parser"; + "ifcxt" = dontDistribute super."ifcxt"; + "iff" = dontDistribute super."iff"; + "ifscs" = dontDistribute super."ifscs"; + "ige-mac-integration" = dontDistribute super."ige-mac-integration"; + "igraph" = dontDistribute super."igraph"; + "igrf" = dontDistribute super."igrf"; + "ihaskell-display" = dontDistribute super."ihaskell-display"; + "ihaskell-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"; + "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-colors" = dontDistribute super."irc-colors"; + "irc-core" = dontDistribute super."irc-core"; + "irc-fun-bot" = dontDistribute super."irc-fun-bot"; + "irc-fun-client" = dontDistribute super."irc-fun-client"; + "irc-fun-color" = dontDistribute super."irc-fun-color"; + "irc-fun-messages" = dontDistribute super."irc-fun-messages"; + "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"; + "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-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-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"; + "keera-callbacks" = dontDistribute super."keera-callbacks"; + "keera-hails-i18n" = dontDistribute super."keera-hails-i18n"; + "keera-hails-mvc-controller" = dontDistribute super."keera-hails-mvc-controller"; + "keera-hails-mvc-environment-gtk" = dontDistribute super."keera-hails-mvc-environment-gtk"; + "keera-hails-mvc-model-lightmodel" = dontDistribute super."keera-hails-mvc-model-lightmodel"; + "keera-hails-mvc-model-protectedmodel" = dontDistribute super."keera-hails-mvc-model-protectedmodel"; + "keera-hails-mvc-solutions-config" = dontDistribute super."keera-hails-mvc-solutions-config"; + "keera-hails-mvc-solutions-gtk" = dontDistribute super."keera-hails-mvc-solutions-gtk"; + "keera-hails-mvc-view" = dontDistribute super."keera-hails-mvc-view"; + "keera-hails-mvc-view-gtk" = dontDistribute super."keera-hails-mvc-view-gtk"; + "keera-hails-reactive-fs" = dontDistribute super."keera-hails-reactive-fs"; + "keera-hails-reactive-gtk" = dontDistribute super."keera-hails-reactive-gtk"; + "keera-hails-reactive-network" = dontDistribute super."keera-hails-reactive-network"; + "keera-hails-reactive-polling" = dontDistribute super."keera-hails-reactive-polling"; + "keera-hails-reactive-wx" = dontDistribute super."keera-hails-reactive-wx"; + "keera-hails-reactive-yampa" = dontDistribute super."keera-hails-reactive-yampa"; + "keera-hails-reactivelenses" = dontDistribute super."keera-hails-reactivelenses"; + "keera-hails-reactivevalues" = dontDistribute super."keera-hails-reactivevalues"; + "keera-posture" = dontDistribute super."keera-posture"; + "keiretsu" = dontDistribute super."keiretsu"; + "kevin" = dontDistribute super."kevin"; + "keyed" = dontDistribute super."keyed"; + "keyring" = dontDistribute super."keyring"; + "keystore" = dontDistribute super."keystore"; + "keyvaluehash" = dontDistribute super."keyvaluehash"; + "keyword-args" = dontDistribute super."keyword-args"; + "kibro" = dontDistribute super."kibro"; + "kicad-data" = dontDistribute super."kicad-data"; + "kickass-torrents-dump-parser" = dontDistribute super."kickass-torrents-dump-parser"; + "kickchan" = dontDistribute super."kickchan"; + "kif-parser" = dontDistribute super."kif-parser"; + "kinds" = dontDistribute super."kinds"; + "kit" = dontDistribute super."kit"; + "kmeans-par" = dontDistribute super."kmeans-par"; + "kmeans-vector" = dontDistribute super."kmeans-vector"; + "knots" = dontDistribute super."knots"; + "koellner-phonetic" = dontDistribute super."koellner-phonetic"; + "kontrakcja-templates" = dontDistribute super."kontrakcja-templates"; + "korfu" = dontDistribute super."korfu"; + "kqueue" = dontDistribute super."kqueue"; + "krpc" = dontDistribute super."krpc"; + "ks-test" = dontDistribute super."ks-test"; + "ktx" = dontDistribute super."ktx"; + "kure-your-boilerplate" = dontDistribute super."kure-your-boilerplate"; + "kyotocabinet" = dontDistribute super."kyotocabinet"; + "l-bfgs-b" = dontDistribute super."l-bfgs-b"; + "labeled-graph" = dontDistribute super."labeled-graph"; + "labeled-tree" = dontDistribute super."labeled-tree"; + "laborantin-hs" = dontDistribute super."laborantin-hs"; + "labyrinth" = dontDistribute super."labyrinth"; + "labyrinth-server" = dontDistribute super."labyrinth-server"; + "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-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"; + "lazyarray" = dontDistribute super."lazyarray"; + "lazyio" = dontDistribute super."lazyio"; + "lazysmallcheck" = dontDistribute super."lazysmallcheck"; + "lazysplines" = dontDistribute super."lazysplines"; + "lbfgs" = dontDistribute super."lbfgs"; + "lcs" = dontDistribute super."lcs"; + "lda" = dontDistribute super."lda"; + "ldap-client" = dontDistribute super."ldap-client"; + "ldif" = dontDistribute super."ldif"; + "leaf" = dontDistribute super."leaf"; + "leaky" = dontDistribute super."leaky"; + "leancheck" = dontDistribute super."leancheck"; + "leankit-api" = dontDistribute super."leankit-api"; + "leapseconds-announced" = dontDistribute super."leapseconds-announced"; + "learn" = dontDistribute super."learn"; + "learn-physics" = dontDistribute super."learn-physics"; + "learn-physics-examples" = dontDistribute super."learn-physics-examples"; + "learning-hmm" = dontDistribute super."learning-hmm"; + "leetify" = dontDistribute super."leetify"; + "leksah" = dontDistribute super."leksah"; + "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-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-fusion-probe" = doDistribute super."list-fusion-probe_0_1_0_5"; + "list-grouping" = dontDistribute super."list-grouping"; + "list-mux" = dontDistribute super."list-mux"; + "list-remote-forwards" = dontDistribute super."list-remote-forwards"; + "list-t-attoparsec" = dontDistribute super."list-t-attoparsec"; + "list-t-html-parser" = dontDistribute super."list-t-html-parser"; + "list-t-http-client" = dontDistribute super."list-t-http-client"; + "list-t-libcurl" = dontDistribute super."list-t-libcurl"; + "list-t-text" = dontDistribute super."list-t-text"; + "list-tries" = dontDistribute super."list-tries"; + "list-zip-def" = dontDistribute super."list-zip-def"; + "listlike-instances" = dontDistribute super."listlike-instances"; + "lists" = dontDistribute super."lists"; + "listsafe" = dontDistribute super."listsafe"; + "lit" = dontDistribute super."lit"; + "literals" = dontDistribute super."literals"; + "live-sequencer" = dontDistribute super."live-sequencer"; + "ll-picosat" = dontDistribute super."ll-picosat"; + "llrbtree" = dontDistribute super."llrbtree"; + "llsd" = dontDistribute super."llsd"; + "llvm" = dontDistribute super."llvm"; + "llvm-analysis" = dontDistribute super."llvm-analysis"; + "llvm-base" = dontDistribute super."llvm-base"; + "llvm-base-types" = dontDistribute super."llvm-base-types"; + "llvm-base-util" = dontDistribute super."llvm-base-util"; + "llvm-data-interop" = dontDistribute super."llvm-data-interop"; + "llvm-extra" = dontDistribute super."llvm-extra"; + "llvm-ffi" = dontDistribute super."llvm-ffi"; + "llvm-general" = dontDistribute super."llvm-general"; + "llvm-general-pure" = dontDistribute super."llvm-general-pure"; + "llvm-general-quote" = dontDistribute super."llvm-general-quote"; + "llvm-ht" = dontDistribute super."llvm-ht"; + "llvm-pkg-config" = dontDistribute super."llvm-pkg-config"; + "llvm-pretty" = dontDistribute super."llvm-pretty"; + "llvm-pretty-bc-parser" = dontDistribute super."llvm-pretty-bc-parser"; + "llvm-tf" = dontDistribute super."llvm-tf"; + "llvm-tools" = dontDistribute super."llvm-tools"; + "lmdb" = dontDistribute super."lmdb"; + "lmonad" = dontDistribute super."lmonad"; + "lmonad-yesod" = dontDistribute super."lmonad-yesod"; + "loadavg" = dontDistribute super."loadavg"; + "local-address" = dontDistribute super."local-address"; + "local-search" = dontDistribute super."local-search"; + "located" = dontDistribute super."located"; + "located-base" = dontDistribute super."located-base"; + "locators" = dontDistribute super."locators"; + "loch" = dontDistribute super."loch"; + "lock-file" = dontDistribute super."lock-file"; + "locked-poll" = dontDistribute super."locked-poll"; + "lockfree-queue" = dontDistribute super."lockfree-queue"; + "log" = dontDistribute super."log"; + "log-effect" = dontDistribute super."log-effect"; + "log2json" = dontDistribute super."log2json"; + "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"; + "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"; + "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"; + "manatee" = dontDistribute super."manatee"; + "manatee-all" = dontDistribute super."manatee-all"; + "manatee-anything" = dontDistribute super."manatee-anything"; + "manatee-browser" = dontDistribute super."manatee-browser"; + "manatee-core" = dontDistribute super."manatee-core"; + "manatee-curl" = dontDistribute super."manatee-curl"; + "manatee-editor" = dontDistribute super."manatee-editor"; + "manatee-filemanager" = dontDistribute super."manatee-filemanager"; + "manatee-imageviewer" = dontDistribute super."manatee-imageviewer"; + "manatee-ircclient" = dontDistribute super."manatee-ircclient"; + "manatee-mplayer" = dontDistribute super."manatee-mplayer"; + "manatee-pdfviewer" = dontDistribute super."manatee-pdfviewer"; + "manatee-processmanager" = dontDistribute super."manatee-processmanager"; + "manatee-reader" = dontDistribute super."manatee-reader"; + "manatee-template" = dontDistribute super."manatee-template"; + "manatee-terminal" = dontDistribute super."manatee-terminal"; + "manatee-welcome" = dontDistribute super."manatee-welcome"; + "mancala" = dontDistribute super."mancala"; + "mandulia" = dontDistribute super."mandulia"; + "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"; + "mathblog" = dontDistribute super."mathblog"; + "mathgenealogy" = dontDistribute super."mathgenealogy"; + "mathista" = dontDistribute super."mathista"; + "mathlink" = dontDistribute super."mathlink"; + "matlab" = dontDistribute super."matlab"; + "matrix-market" = dontDistribute super."matrix-market"; + "matrix-market-pure" = dontDistribute super."matrix-market-pure"; + "matsuri" = dontDistribute super."matsuri"; + "maude" = dontDistribute super."maude"; + "maxent" = dontDistribute super."maxent"; + "maxsharing" = dontDistribute super."maxsharing"; + "maybe-justify" = dontDistribute super."maybe-justify"; + "maybench" = dontDistribute super."maybench"; + "mbox-tools" = dontDistribute super."mbox-tools"; + "mcmaster-gloss-examples" = dontDistribute super."mcmaster-gloss-examples"; + "mcmc-samplers" = dontDistribute super."mcmc-samplers"; + "mcmc-synthesis" = dontDistribute super."mcmc-synthesis"; + "mcpi" = dontDistribute super."mcpi"; + "mdapi" = dontDistribute super."mdapi"; + "mdcat" = dontDistribute super."mdcat"; + "mdo" = dontDistribute super."mdo"; + "mdp" = dontDistribute super."mdp"; + "mecab" = dontDistribute super."mecab"; + "mecha" = dontDistribute super."mecha"; + "mediawiki" = dontDistribute super."mediawiki"; + "mediawiki2latex" = dontDistribute super."mediawiki2latex"; + "medium-sdk-haskell" = dontDistribute super."medium-sdk-haskell"; + "meep" = dontDistribute super."meep"; + "mega-sdist" = dontDistribute super."mega-sdist"; + "megaparsec" = doDistribute super."megaparsec_4_4_0"; + "meldable-heap" = dontDistribute super."meldable-heap"; + "melody" = dontDistribute super."melody"; + "memcache" = dontDistribute super."memcache"; + "memcache-conduit" = dontDistribute super."memcache-conduit"; + "memcache-haskell" = dontDistribute super."memcache-haskell"; + "memcached" = dontDistribute super."memcached"; + "memexml" = dontDistribute super."memexml"; + "memo-ptr" = dontDistribute super."memo-ptr"; + "memo-sqlite" = dontDistribute super."memo-sqlite"; + "memscript" = dontDistribute super."memscript"; + "mersenne-random" = dontDistribute super."mersenne-random"; + "messente" = dontDistribute super."messente"; + "meta-misc" = dontDistribute super."meta-misc"; + "meta-par" = dontDistribute super."meta-par"; + "meta-par-accelerate" = dontDistribute super."meta-par-accelerate"; + "metadata" = dontDistribute super."metadata"; + "metamorphic" = dontDistribute super."metamorphic"; + "metaplug" = dontDistribute super."metaplug"; + "metric" = dontDistribute super."metric"; + "metricsd-client" = dontDistribute super."metricsd-client"; + "metronome" = dontDistribute super."metronome"; + "mezzolens" = dontDistribute super."mezzolens"; + "mfsolve" = dontDistribute super."mfsolve"; + "mgeneric" = dontDistribute super."mgeneric"; + "mi" = dontDistribute super."mi"; + "microbench" = dontDistribute super."microbench"; + "microformats2-types" = dontDistribute super."microformats2-types"; + "microlens-each" = dontDistribute super."microlens-each"; + "microtimer" = dontDistribute super."microtimer"; + "mida" = dontDistribute super."mida"; + "midi" = dontDistribute super."midi"; + "midi-alsa" = dontDistribute super."midi-alsa"; + "midi-music-box" = dontDistribute super."midi-music-box"; + "midi-util" = dontDistribute super."midi-util"; + "midimory" = dontDistribute super."midimory"; + "midisurface" = dontDistribute super."midisurface"; + "mighttpd" = dontDistribute super."mighttpd"; + "mighttpd2" = dontDistribute super."mighttpd2"; + "mikmod" = dontDistribute super."mikmod"; + "miku" = dontDistribute super."miku"; + "milena" = dontDistribute super."milena"; + "mime" = dontDistribute super."mime"; + "mime-directory" = dontDistribute super."mime-directory"; + "mime-string" = dontDistribute super."mime-string"; + "mines" = dontDistribute super."mines"; + "minesweeper" = dontDistribute super."minesweeper"; + "miniball" = dontDistribute super."miniball"; + "miniforth" = dontDistribute super."miniforth"; + "minilens" = dontDistribute super."minilens"; + "minimal-configuration" = dontDistribute super."minimal-configuration"; + "minimorph" = dontDistribute super."minimorph"; + "minimung" = dontDistribute super."minimung"; + "minions" = dontDistribute super."minions"; + "minioperational" = dontDistribute super."minioperational"; + "miniplex" = dontDistribute super."miniplex"; + "minirotate" = dontDistribute super."minirotate"; + "minisat" = dontDistribute super."minisat"; + "ministg" = dontDistribute super."ministg"; + "miniutter" = dontDistribute super."miniutter"; + "minst-idx" = dontDistribute super."minst-idx"; + "mirror-tweet" = dontDistribute super."mirror-tweet"; + "missing-py2" = dontDistribute super."missing-py2"; + "mix-arrows" = dontDistribute super."mix-arrows"; + "mixed-strategies" = dontDistribute super."mixed-strategies"; + "mkbndl" = dontDistribute super."mkbndl"; + "mkcabal" = dontDistribute super."mkcabal"; + "ml-w" = dontDistribute super."ml-w"; + "mlist" = dontDistribute super."mlist"; + "mmtl" = dontDistribute super."mmtl"; + "mmtl-base" = dontDistribute super."mmtl-base"; + "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-log" = dontDistribute super."monad-log"; + "monad-loops-stm" = dontDistribute super."monad-loops-stm"; + "monad-lrs" = dontDistribute super."monad-lrs"; + "monad-memo" = dontDistribute super."monad-memo"; + "monad-mersenne-random" = dontDistribute super."monad-mersenne-random"; + "monad-open" = dontDistribute super."monad-open"; + "monad-ox" = dontDistribute super."monad-ox"; + "monad-parallel-progressbar" = dontDistribute super."monad-parallel-progressbar"; + "monad-param" = dontDistribute super."monad-param"; + "monad-ran" = dontDistribute super."monad-ran"; + "monad-resumption" = dontDistribute super."monad-resumption"; + "monad-state" = dontDistribute super."monad-state"; + "monad-statevar" = dontDistribute super."monad-statevar"; + "monad-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-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-queue" = dontDistribute super."mongodb-queue"; + "mongrel2-handler" = dontDistribute super."mongrel2-handler"; + "monitor" = dontDistribute super."monitor"; + "mono-foldable" = dontDistribute super."mono-foldable"; + "monoid-absorbing" = dontDistribute super."monoid-absorbing"; + "monoid-owns" = dontDistribute super."monoid-owns"; + "monoid-record" = dontDistribute super."monoid-record"; + "monoid-statistics" = dontDistribute super."monoid-statistics"; + "monoid-subclasses" = doDistribute super."monoid-subclasses_0_4_2"; + "monoid-transformer" = dontDistribute super."monoid-transformer"; + "monoidplus" = dontDistribute super."monoidplus"; + "monoids" = dontDistribute super."monoids"; + "monomorphic" = dontDistribute super."monomorphic"; + "montage" = dontDistribute super."montage"; + "montage-client" = dontDistribute super."montage-client"; + "monte-carlo" = dontDistribute super."monte-carlo"; + "moo" = dontDistribute super."moo"; + "moonshine" = dontDistribute super."moonshine"; + "morfette" = dontDistribute super."morfette"; + "morfeusz" = dontDistribute super."morfeusz"; + "mosaico-lib" = dontDistribute super."mosaico-lib"; + "mount" = dontDistribute super."mount"; + "mp" = dontDistribute super."mp"; + "mp3decoder" = dontDistribute super."mp3decoder"; + "mpdmate" = dontDistribute super."mpdmate"; + "mpppc" = dontDistribute super."mpppc"; + "mpretty" = dontDistribute super."mpretty"; + "mpris" = dontDistribute super."mpris"; + "mprover" = dontDistribute super."mprover"; + "mps" = dontDistribute super."mps"; + "mpvguihs" = dontDistribute super."mpvguihs"; + "mqtt-hs" = dontDistribute super."mqtt-hs"; + "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"; + "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-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"; + "ohloh-hs" = dontDistribute super."ohloh-hs"; + "oi" = dontDistribute super."oi"; + "oidc-client" = dontDistribute super."oidc-client"; + "ois-input-manager" = dontDistribute super."ois-input-manager"; + "old-version" = dontDistribute super."old-version"; + "olwrapper" = dontDistribute super."olwrapper"; + "omaketex" = dontDistribute super."omaketex"; + "omega" = dontDistribute super."omega"; + "omnicodec" = dontDistribute super."omnicodec"; + "on-a-horse" = dontDistribute super."on-a-horse"; + "on-demand-ssh-tunnel" = dontDistribute super."on-demand-ssh-tunnel"; + "one-liner" = dontDistribute super."one-liner"; + "one-time-password" = dontDistribute super."one-time-password"; + "oneOfN" = dontDistribute super."oneOfN"; + "oneormore" = dontDistribute super."oneormore"; + "only" = dontDistribute super."only"; + "onu-course" = dontDistribute super."onu-course"; + "opaleye" = 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"; + "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"; + "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-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-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"; + "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"; + "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"; + "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"; + "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-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"; + "quadratic-irrational" = dontDistribute super."quadratic-irrational"; + "quantfin" = dontDistribute super."quantfin"; + "quantities" = dontDistribute super."quantities"; + "quantum-arrow" = dontDistribute super."quantum-arrow"; + "qudb" = dontDistribute super."qudb"; + "quenya-verb" = dontDistribute super."quenya-verb"; + "querystring-pickle" = dontDistribute super."querystring-pickle"; + "queue" = dontDistribute super."queue"; + "queuelike" = dontDistribute super."queuelike"; + "quick-generator" = dontDistribute super."quick-generator"; + "quick-schema" = dontDistribute super."quick-schema"; + "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"; + "rabocsv2qif" = dontDistribute super."rabocsv2qif"; + "rad" = dontDistribute super."rad"; + "radian" = dontDistribute super."radian"; + "radium" = dontDistribute super."radium"; + "radium-formula-parser" = dontDistribute super."radium-formula-parser"; + "radix" = dontDistribute super."radix"; + "rados-haskell" = dontDistribute super."rados-haskell"; + "rail-compiler-editor" = dontDistribute super."rail-compiler-editor"; + "rainbow-tests" = dontDistribute super."rainbow-tests"; + "rake" = dontDistribute super."rake"; + "rakhana" = dontDistribute super."rakhana"; + "ralist" = dontDistribute super."ralist"; + "rallod" = dontDistribute super."rallod"; + "raml" = dontDistribute super."raml"; + "rand-vars" = dontDistribute super."rand-vars"; + "randfile" = dontDistribute super."randfile"; + "random-access-list" = dontDistribute super."random-access-list"; + "random-derive" = dontDistribute super."random-derive"; + "random-eff" = dontDistribute super."random-eff"; + "random-effin" = dontDistribute super."random-effin"; + "random-extras" = dontDistribute super."random-extras"; + "random-hypergeometric" = dontDistribute super."random-hypergeometric"; + "random-stream" = dontDistribute super."random-stream"; + "random-variates" = dontDistribute super."random-variates"; + "randomgen" = dontDistribute super."randomgen"; + "randproc" = dontDistribute super."randproc"; + "randsolid" = dontDistribute super."randsolid"; + "range-space" = dontDistribute super."range-space"; + "rangemin" = dontDistribute super."rangemin"; + "ranges" = dontDistribute super."ranges"; + "rascal" = dontDistribute super."rascal"; + "rate-limit" = dontDistribute super."rate-limit"; + "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-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"; + "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-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"; + "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"; + "rubberband" = dontDistribute super."rubberband"; + "ruby-marshal" = dontDistribute super."ruby-marshal"; + "ruby-qq" = dontDistribute super."ruby-qq"; + "ruff" = dontDistribute super."ruff"; + "ruler" = dontDistribute super."ruler"; + "ruler-core" = dontDistribute super."ruler-core"; + "rungekutta" = dontDistribute super."rungekutta"; + "runghc" = dontDistribute super."runghc"; + "rwlock" = dontDistribute super."rwlock"; + "rws" = dontDistribute super."rws"; + "s-cargot" = dontDistribute super."s-cargot"; + "safe-access" = dontDistribute super."safe-access"; + "safe-failure" = dontDistribute super."safe-failure"; + "safe-failure-cme" = dontDistribute super."safe-failure-cme"; + "safe-freeze" = dontDistribute super."safe-freeze"; + "safe-globals" = dontDistribute super."safe-globals"; + "safe-lazy-io" = dontDistribute super."safe-lazy-io"; + "safe-length" = dontDistribute super."safe-length"; + "safe-plugins" = dontDistribute super."safe-plugins"; + "safe-printf" = dontDistribute super."safe-printf"; + "safeint" = dontDistribute super."safeint"; + "safer-file-handles" = dontDistribute super."safer-file-handles"; + "safer-file-handles-bytestring" = dontDistribute super."safer-file-handles-bytestring"; + "safer-file-handles-text" = dontDistribute super."safer-file-handles-text"; + "saferoute" = dontDistribute super."saferoute"; + "sai-shape-syb" = dontDistribute super."sai-shape-syb"; + "saltine" = dontDistribute super."saltine"; + "saltine-quickcheck" = dontDistribute super."saltine-quickcheck"; + "salvia" = dontDistribute super."salvia"; + "salvia-demo" = dontDistribute super."salvia-demo"; + "salvia-extras" = dontDistribute super."salvia-extras"; + "salvia-protocol" = dontDistribute super."salvia-protocol"; + "salvia-sessions" = dontDistribute super."salvia-sessions"; + "salvia-websocket" = dontDistribute super."salvia-websocket"; + "sample-frame" = dontDistribute super."sample-frame"; + "sample-frame-np" = dontDistribute super."sample-frame-np"; + "samtools" = dontDistribute super."samtools"; + "samtools-conduit" = dontDistribute super."samtools-conduit"; + "samtools-enumerator" = dontDistribute super."samtools-enumerator"; + "samtools-iteratee" = dontDistribute super."samtools-iteratee"; + "sandlib" = dontDistribute super."sandlib"; + "sarasvati" = dontDistribute super."sarasvati"; + "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"; + "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"; + "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-cairo" = dontDistribute super."sdl2-cairo"; + "sdl2-cairo-image" = dontDistribute super."sdl2-cairo-image"; + "sdl2-compositor" = dontDistribute super."sdl2-compositor"; + "sdl2-image" = dontDistribute super."sdl2-image"; + "sdl2-ttf" = dontDistribute super."sdl2-ttf"; + "sdnv" = dontDistribute super."sdnv"; + "sdr" = dontDistribute super."sdr"; + "seacat" = dontDistribute super."seacat"; + "seal-module" = dontDistribute super."seal-module"; + "search" = dontDistribute super."search"; + "sec" = dontDistribute super."sec"; + "secdh" = dontDistribute super."secdh"; + "seclib" = dontDistribute super."seclib"; + "second-transfer" = 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-syntax" = dontDistribute super."semigroupoids-syntax"; + "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"; + "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-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-quickcheck" = dontDistribute super."servant-quickcheck"; + "servant-response" = dontDistribute super."servant-response"; + "servant-router" = dontDistribute super."servant-router"; + "servant-scotty" = dontDistribute super."servant-scotty"; + "servant-swagger" = doDistribute super."servant-swagger_1_0_3"; + "servant-swagger-ui" = dontDistribute super."servant-swagger-ui"; + "ses-html-snaplet" = dontDistribute super."ses-html-snaplet"; + "sessions" = dontDistribute super."sessions"; + "set-cover" = dontDistribute super."set-cover"; + "set-with" = dontDistribute super."set-with"; + "setdown" = dontDistribute super."setdown"; + "setgame" = dontDistribute super."setgame"; + "setops" = dontDistribute super."setops"; + "setters" = dontDistribute super."setters"; + "settings" = dontDistribute super."settings"; + "sexp" = dontDistribute super."sexp"; + "sexp-grammar" = dontDistribute super."sexp-grammar"; + "sexp-show" = dontDistribute super."sexp-show"; + "sexpr" = dontDistribute super."sexpr"; + "sext" = dontDistribute super."sext"; + "sfml-audio" = dontDistribute super."sfml-audio"; + "sfmt" = dontDistribute super."sfmt"; + "sgd" = dontDistribute super."sgd"; + "sgf" = dontDistribute super."sgf"; + "sgrep" = dontDistribute super."sgrep"; + "sha-streams" = dontDistribute super."sha-streams"; + "shadower" = dontDistribute super."shadower"; + "shadowsocks" = dontDistribute super."shadowsocks"; + "shady-gen" = dontDistribute super."shady-gen"; + "shady-graphics" = dontDistribute super."shady-graphics"; + "shake-cabal-build" = dontDistribute super."shake-cabal-build"; + "shake-extras" = dontDistribute super."shake-extras"; + "shake-minify" = dontDistribute super."shake-minify"; + "shake-pack" = dontDistribute super."shake-pack"; + "shake-persist" = dontDistribute super."shake-persist"; + "shaker" = dontDistribute super."shaker"; + "shakespeare-babel" = dontDistribute super."shakespeare-babel"; + "shakespeare-css" = dontDistribute super."shakespeare-css"; + "shakespeare-i18n" = dontDistribute super."shakespeare-i18n"; + "shakespeare-js" = dontDistribute super."shakespeare-js"; + "shakespeare-text" = dontDistribute super."shakespeare-text"; + "shana" = dontDistribute super."shana"; + "shapefile" = dontDistribute super."shapefile"; + "shapely-data" = dontDistribute super."shapely-data"; + "sharc-timbre" = dontDistribute super."sharc-timbre"; + "shared-buffer" = dontDistribute super."shared-buffer"; + "shared-fields" = dontDistribute super."shared-fields"; + "shared-memory" = dontDistribute super."shared-memory"; + "sharedio" = dontDistribute super."sharedio"; + "she" = dontDistribute super."she"; + "shelduck" = dontDistribute super."shelduck"; + "shell-escape" = dontDistribute super."shell-escape"; + "shell-monad" = dontDistribute super."shell-monad"; + "shell-pipe" = dontDistribute super."shell-pipe"; + "shellish" = dontDistribute super."shellish"; + "shellmate" = dontDistribute super."shellmate"; + "shelly-extra" = dontDistribute super."shelly-extra"; + "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-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"; + "sirkel" = dontDistribute super."sirkel"; + "sitemap" = dontDistribute super."sitemap"; + "sized" = dontDistribute super."sized"; + "sized-types" = dontDistribute super."sized-types"; + "sized-vector" = dontDistribute super."sized-vector"; + "sizes" = dontDistribute super."sizes"; + "sjsp" = dontDistribute super."sjsp"; + "skeleton" = dontDistribute super."skeleton"; + "skell" = dontDistribute super."skell"; + "skemmtun" = dontDistribute super."skemmtun"; + "skulk" = dontDistribute super."skulk"; + "skype4hs" = dontDistribute super."skype4hs"; + "skypelogexport" = dontDistribute super."skypelogexport"; + "slack" = dontDistribute super."slack"; + "slack-api" = dontDistribute super."slack-api"; + "slack-notify-haskell" = dontDistribute super."slack-notify-haskell"; + "sleep" = dontDistribute super."sleep"; + "slice-cpp-gen" = dontDistribute super."slice-cpp-gen"; + "slidemews" = dontDistribute super."slidemews"; + "sloane" = dontDistribute super."sloane"; + "slot-lambda" = dontDistribute super."slot-lambda"; + "sloth" = dontDistribute super."sloth"; + "smallarray" = dontDistribute super."smallarray"; + "smallcheck-laws" = dontDistribute super."smallcheck-laws"; + "smallcheck-lens" = dontDistribute super."smallcheck-lens"; + "smallcheck-series" = dontDistribute super."smallcheck-series"; + "smallpt-hs" = dontDistribute super."smallpt-hs"; + "smallstring" = dontDistribute super."smallstring"; + "smaoin" = dontDistribute super."smaoin"; + "smartGroup" = dontDistribute super."smartGroup"; + "smartcheck" = dontDistribute super."smartcheck"; + "smartconstructor" = dontDistribute super."smartconstructor"; + "smartword" = dontDistribute super."smartword"; + "sme" = dontDistribute super."sme"; + "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"; + "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"; + "stack-hpc-coveralls" = dontDistribute super."stack-hpc-coveralls"; + "stack-prism" = dontDistribute super."stack-prism"; + "stack-run" = dontDistribute super."stack-run"; + "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; + "standalone-haddock" = dontDistribute super."standalone-haddock"; + "star-to-star" = dontDistribute super."star-to-star"; + "star-to-star-contra" = dontDistribute super."star-to-star-contra"; + "starling" = dontDistribute super."starling"; + "starrover2" = dontDistribute super."starrover2"; + "stash" = dontDistribute super."stash"; + "state" = dontDistribute super."state"; + "state-record" = dontDistribute super."state-record"; + "statechart" = dontDistribute super."statechart"; + "stateful-mtl" = dontDistribute super."stateful-mtl"; + "statethread" = dontDistribute super."statethread"; + "statgrab" = dontDistribute super."statgrab"; + "static-hash" = dontDistribute super."static-hash"; + "static-resources" = dontDistribute super."static-resources"; + "staticanalysis" = dontDistribute super."staticanalysis"; + "statistics-dirichlet" = dontDistribute super."statistics-dirichlet"; + "statistics-fusion" = dontDistribute super."statistics-fusion"; + "statistics-hypergeometric-genvar" = dontDistribute super."statistics-hypergeometric-genvar"; + "stats" = dontDistribute super."stats"; + "statsd" = dontDistribute super."statsd"; + "statsd-client" = dontDistribute super."statsd-client"; + "statsd-datadog" = dontDistribute super."statsd-datadog"; + "statvfs" = dontDistribute super."statvfs"; + "stb-image" = dontDistribute super."stb-image"; + "stb-truetype" = dontDistribute super."stb-truetype"; + "stdata" = dontDistribute super."stdata"; + "stdf" = dontDistribute super."stdf"; + "steambrowser" = dontDistribute super."steambrowser"; + "steeloverseer" = dontDistribute super."steeloverseer"; + "stemmer" = dontDistribute super."stemmer"; + "step-function" = dontDistribute super."step-function"; + "stepwise" = dontDistribute super."stepwise"; + "stickyKeysHotKey" = dontDistribute super."stickyKeysHotKey"; + "stitch" = dontDistribute super."stitch"; + "stm-channelize" = dontDistribute super."stm-channelize"; + "stm-chunked-queues" = dontDistribute super."stm-chunked-queues"; + "stm-firehose" = dontDistribute super."stm-firehose"; + "stm-io-hooks" = dontDistribute super."stm-io-hooks"; + "stm-lifted" = dontDistribute super."stm-lifted"; + "stm-linkedlist" = dontDistribute super."stm-linkedlist"; + "stm-orelse-io" = dontDistribute super."stm-orelse-io"; + "stm-promise" = dontDistribute super."stm-promise"; + "stm-queue-extras" = dontDistribute super."stm-queue-extras"; + "stm-sbchan" = dontDistribute super."stm-sbchan"; + "stm-split" = dontDistribute super."stm-split"; + "stm-tlist" = dontDistribute super."stm-tlist"; + "stmcontrol" = dontDistribute super."stmcontrol"; + "stomp-conduit" = dontDistribute super."stomp-conduit"; + "stomp-patterns" = dontDistribute super."stomp-patterns"; + "stomp-queue" = dontDistribute super."stomp-queue"; + "stompl" = dontDistribute super."stompl"; + "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"; + "str" = dontDistribute super."str"; + "stratum-tool" = dontDistribute super."stratum-tool"; + "stratux" = dontDistribute super."stratux"; + "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-histogram" = dontDistribute super."streaming-histogram"; + "streaming-png" = dontDistribute super."streaming-png"; + "streaming-utils" = dontDistribute super."streaming-utils"; + "streaming-wai" = dontDistribute super."streaming-wai"; + "strict-concurrency" = dontDistribute super."strict-concurrency"; + "strict-ghc-plugin" = dontDistribute super."strict-ghc-plugin"; + "strict-identity" = dontDistribute super."strict-identity"; + "strict-io" = dontDistribute super."strict-io"; + "strictify" = dontDistribute super."strictify"; + "strictly" = dontDistribute super."strictly"; + "string" = dontDistribute super."string"; + "string-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-hs" = dontDistribute super."symengine-hs"; + "sync" = dontDistribute super."sync"; + "synchronous-channels" = dontDistribute super."synchronous-channels"; + "syncthing-hs" = dontDistribute super."syncthing-hs"; + "synt" = dontDistribute super."synt"; + "syntactic" = dontDistribute super."syntactic"; + "syntactical" = dontDistribute super."syntactical"; + "syntax" = dontDistribute super."syntax"; + "syntax-attoparsec" = dontDistribute super."syntax-attoparsec"; + "syntax-example" = dontDistribute super."syntax-example"; + "syntax-example-json" = dontDistribute super."syntax-example-json"; + "syntax-pretty" = dontDistribute super."syntax-pretty"; + "syntax-printer" = dontDistribute super."syntax-printer"; + "syntax-trees" = dontDistribute super."syntax-trees"; + "syntax-trees-fork-bairyn" = dontDistribute super."syntax-trees-fork-bairyn"; + "synthesizer" = dontDistribute super."synthesizer"; + "synthesizer-alsa" = dontDistribute super."synthesizer-alsa"; + "synthesizer-core" = dontDistribute super."synthesizer-core"; + "synthesizer-dimensional" = dontDistribute super."synthesizer-dimensional"; + "synthesizer-filter" = dontDistribute super."synthesizer-filter"; + "synthesizer-inference" = dontDistribute super."synthesizer-inference"; + "synthesizer-llvm" = dontDistribute super."synthesizer-llvm"; + "synthesizer-midi" = dontDistribute super."synthesizer-midi"; + "sys-auth-smbclient" = dontDistribute super."sys-auth-smbclient"; + "sys-process" = dontDistribute super."sys-process"; + "system-canonicalpath" = dontDistribute super."system-canonicalpath"; + "system-command" = dontDistribute super."system-command"; + "system-gpio" = dontDistribute super."system-gpio"; + "system-inotify" = dontDistribute super."system-inotify"; + "system-lifted" = dontDistribute super."system-lifted"; + "system-random-effect" = dontDistribute super."system-random-effect"; + "system-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"; + "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-ht" = dontDistribute super."tagsoup-ht"; + "tagsoup-parsec" = dontDistribute super."tagsoup-parsec"; + "tai64" = dontDistribute super."tai64"; + "takahashi" = dontDistribute super."takahashi"; + "takusen-oracle" = dontDistribute super."takusen-oracle"; + "tamarin-prover" = dontDistribute super."tamarin-prover"; + "tamarin-prover-term" = dontDistribute super."tamarin-prover-term"; + "tamarin-prover-theory" = dontDistribute super."tamarin-prover-theory"; + "tamarin-prover-utils" = dontDistribute super."tamarin-prover-utils"; + "tamper" = dontDistribute super."tamper"; + "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"; + "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-translit" = dontDistribute super."text-icu-translit"; + "text-json-qq" = dontDistribute super."text-json-qq"; + "text-latin1" = dontDistribute super."text-latin1"; + "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"; + "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-data-compat" = dontDistribute super."th-data-compat"; + "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" = dontDistribute super."th-lift-instances"; + "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"; + "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"; + "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"; + "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-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"; + "unicoder" = dontDistribute super."unicoder"; + "uniform-io" = dontDistribute super."uniform-io"; + "uniform-pair" = dontDistribute super."uniform-pair"; + "union-find-array" = dontDistribute super."union-find-array"; + "union-map" = dontDistribute super."union-map"; + "unique" = dontDistribute super."unique"; + "unique-logic" = dontDistribute super."unique-logic"; + "unique-logic-tf" = dontDistribute super."unique-logic-tf"; + "uniqueid" = dontDistribute super."uniqueid"; + "unit" = dontDistribute super."unit"; + "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"; + "uom-plugin" = dontDistribute super."uom-plugin"; + "up" = dontDistribute super."up"; + "up-grade" = dontDistribute super."up-grade"; + "uploadcare" = dontDistribute super."uploadcare"; + "upskirt" = dontDistribute super."upskirt"; + "ureader" = dontDistribute super."ureader"; + "urembed" = dontDistribute super."urembed"; + "uri" = dontDistribute super."uri"; + "uri-conduit" = dontDistribute super."uri-conduit"; + "uri-enumerator" = dontDistribute super."uri-enumerator"; + "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; + "uri-template" = dontDistribute super."uri-template"; + "url-generic" = dontDistribute super."url-generic"; + "urlcheck" = dontDistribute super."urlcheck"; + "urldecode" = dontDistribute super."urldecode"; + "urldisp-happstack" = dontDistribute super."urldisp-happstack"; + "urlencoded" = dontDistribute super."urlencoded"; + "urn" = dontDistribute super."urn"; + "urxml" = dontDistribute super."urxml"; + "usb" = dontDistribute super."usb"; + "usb-enumerator" = dontDistribute super."usb-enumerator"; + "usb-hid" = dontDistribute super."usb-hid"; + "usb-id-database" = dontDistribute super."usb-id-database"; + "usb-iteratee" = dontDistribute super."usb-iteratee"; + "usb-safe" = dontDistribute super."usb-safe"; + "userid" = doDistribute super."userid_0_1_2_5"; + "utc" = dontDistribute super."utc"; + "utf8-env" = dontDistribute super."utf8-env"; + "utf8-prelude" = dontDistribute super."utf8-prelude"; + "uu-cco" = dontDistribute super."uu-cco"; + "uu-cco-examples" = dontDistribute super."uu-cco-examples"; + "uu-cco-hut-parsing" = dontDistribute super."uu-cco-hut-parsing"; + "uu-cco-uu-parsinglib" = dontDistribute super."uu-cco-uu-parsinglib"; + "uu-options" = dontDistribute super."uu-options"; + "uu-tc" = dontDistribute super."uu-tc"; + "uuagc" = dontDistribute super."uuagc"; + "uuagc-bootstrap" = dontDistribute super."uuagc-bootstrap"; + "uuagc-cabal" = dontDistribute super."uuagc-cabal"; + "uuagc-diagrams" = dontDistribute super."uuagc-diagrams"; + "uuagd" = dontDistribute super."uuagd"; + "uuid-aeson" = dontDistribute super."uuid-aeson"; + "uuid-le" = dontDistribute super."uuid-le"; + "uuid-quasi" = dontDistribute super."uuid-quasi"; + "uulib" = dontDistribute super."uulib"; + "uvector" = dontDistribute super."uvector"; + "uvector-algorithms" = dontDistribute super."uvector-algorithms"; + "uxadt" = dontDistribute super."uxadt"; + "uzbl-with-source" = dontDistribute super."uzbl-with-source"; + "v4l2" = dontDistribute super."v4l2"; + "v4l2-examples" = dontDistribute super."v4l2-examples"; + "vacuum" = dontDistribute super."vacuum"; + "vacuum-cairo" = dontDistribute super."vacuum-cairo"; + "vacuum-graphviz" = dontDistribute super."vacuum-graphviz"; + "vacuum-opengl" = dontDistribute super."vacuum-opengl"; + "vacuum-ubigraph" = dontDistribute super."vacuum-ubigraph"; + "valid-names" = dontDistribute super."valid-names"; + "validate" = dontDistribute super."validate"; + "validated-literals" = dontDistribute super."validated-literals"; + "validations" = dontDistribute super."validations"; + "value-supply" = dontDistribute super."value-supply"; + "vampire" = dontDistribute super."vampire"; + "var" = dontDistribute super."var"; + "varan" = dontDistribute super."varan"; + "variable-precision" = dontDistribute super."variable-precision"; + "variables" = dontDistribute super."variables"; + "varying" = dontDistribute super."varying"; + "vaultaire-common" = dontDistribute super."vaultaire-common"; + "vcache" = dontDistribute super."vcache"; + "vcache-trie" = dontDistribute super."vcache-trie"; + "vcard" = dontDistribute super."vcard"; + "vcatt" = dontDistribute super."vcatt"; + "vcd" = dontDistribute super."vcd"; + "vcs-revision" = dontDistribute super."vcs-revision"; + "vcs-web-hook-parse" = dontDistribute super."vcs-web-hook-parse"; + "vect-floating" = dontDistribute super."vect-floating"; + "vect-floating-accelerate" = dontDistribute super."vect-floating-accelerate"; + "vect-opengl" = dontDistribute super."vect-opengl"; + "vector-binary" = dontDistribute super."vector-binary"; + "vector-bytestring" = dontDistribute super."vector-bytestring"; + "vector-clock" = dontDistribute super."vector-clock"; + "vector-conduit" = dontDistribute super."vector-conduit"; + "vector-functorlazy" = dontDistribute super."vector-functorlazy"; + "vector-heterogenous" = dontDistribute super."vector-heterogenous"; + "vector-instances-collections" = dontDistribute super."vector-instances-collections"; + "vector-mmap" = dontDistribute super."vector-mmap"; + "vector-random" = dontDistribute super."vector-random"; + "vector-read-instances" = dontDistribute super."vector-read-instances"; + "vector-sized" = dontDistribute super."vector-sized"; + "vector-space-map" = dontDistribute super."vector-space-map"; + "vector-space-opengl" = dontDistribute super."vector-space-opengl"; + "vector-space-points" = dontDistribute super."vector-space-points"; + "vector-static" = dontDistribute super."vector-static"; + "vector-strategies" = dontDistribute super."vector-strategies"; + "verbalexpressions" = dontDistribute super."verbalexpressions"; + "verbosity" = dontDistribute super."verbosity"; + "verdict" = dontDistribute super."verdict"; + "verdict-json" = dontDistribute super."verdict-json"; + "verilog" = dontDistribute super."verilog"; + "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-examples" = dontDistribute super."vty-examples"; + "vty-menu" = dontDistribute super."vty-menu"; + "vty-ui" = dontDistribute super."vty-ui"; + "vty-ui-extras" = dontDistribute super."vty-ui-extras"; + "vulkan" = dontDistribute super."vulkan"; + "wacom-daemon" = dontDistribute super."wacom-daemon"; + "waddle" = dontDistribute super."waddle"; + "wai-accept-language" = dontDistribute super."wai-accept-language"; + "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-devel" = dontDistribute super."wai-devel"; + "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; + "wai-dispatch" = dontDistribute super."wai-dispatch"; + "wai-frontend-monadcgi" = dontDistribute super."wai-frontend-monadcgi"; + "wai-graceful" = dontDistribute super."wai-graceful"; + "wai-handler-devel" = dontDistribute super."wai-handler-devel"; + "wai-handler-fastcgi" = dontDistribute super."wai-handler-fastcgi"; + "wai-handler-scgi" = dontDistribute super."wai-handler-scgi"; + "wai-handler-snap" = dontDistribute super."wai-handler-snap"; + "wai-handler-webkit" = dontDistribute super."wai-handler-webkit"; + "wai-hastache" = dontDistribute super."wai-hastache"; + "wai-hmac-auth" = dontDistribute super."wai-hmac-auth"; + "wai-lens" = dontDistribute super."wai-lens"; + "wai-lite" = dontDistribute super."wai-lite"; + "wai-logger-prefork" = dontDistribute super."wai-logger-prefork"; + "wai-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-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"; + "wai-transformers" = doDistribute super."wai-transformers_0_0_4"; + "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"; + "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"; + "wx" = dontDistribute super."wx"; + "wxAsteroids" = dontDistribute super."wxAsteroids"; + "wxFruit" = dontDistribute super."wxFruit"; + "wxc" = dontDistribute super."wxc"; + "wxcore" = dontDistribute super."wxcore"; + "wxdirect" = dontDistribute super."wxdirect"; + "wxhnotepad" = dontDistribute super."wxhnotepad"; + "wxturtle" = dontDistribute super."wxturtle"; + "wybor" = dontDistribute super."wybor"; + "wyvern" = dontDistribute super."wyvern"; + "x-dsp" = dontDistribute super."x-dsp"; + "x11-xim" = dontDistribute super."x11-xim"; + "x11-xinput" = dontDistribute super."x11-xinput"; + "x509-util" = dontDistribute super."x509-util"; + "xattr" = dontDistribute super."xattr"; + "xbattbar" = dontDistribute super."xbattbar"; + "xcb-types" = dontDistribute super."xcb-types"; + "xcffib" = dontDistribute super."xcffib"; + "xchat-plugin" = dontDistribute super."xchat-plugin"; + "xcp" = dontDistribute super."xcp"; + "xdg-userdirs" = dontDistribute super."xdg-userdirs"; + "xdot" = dontDistribute super."xdot"; + "xfconf" = dontDistribute super."xfconf"; + "xhaskell-library" = dontDistribute super."xhaskell-library"; + "xhb" = dontDistribute super."xhb"; + "xhb-atom-cache" = dontDistribute super."xhb-atom-cache"; + "xhb-ewmh" = dontDistribute super."xhb-ewmh"; + "xhtml" = doDistribute super."xhtml_3000_2_1"; + "xhtml-combinators" = dontDistribute super."xhtml-combinators"; + "xilinx-lava" = dontDistribute super."xilinx-lava"; + "xine" = dontDistribute super."xine"; + "xing-api" = dontDistribute super."xing-api"; + "xinput-conduit" = dontDistribute super."xinput-conduit"; + "xkbcommon" = dontDistribute super."xkbcommon"; + "xkcd" = dontDistribute super."xkcd"; + "xlsx-templater" = dontDistribute super."xlsx-templater"; + "xml-basic" = dontDistribute super."xml-basic"; + "xml-catalog" = dontDistribute super."xml-catalog"; + "xml-enumerator" = dontDistribute super."xml-enumerator"; + "xml-enumerator-combinators" = dontDistribute super."xml-enumerator-combinators"; + "xml-extractors" = dontDistribute super."xml-extractors"; + "xml-helpers" = dontDistribute super."xml-helpers"; + "xml-html-conduit-lens" = dontDistribute super."xml-html-conduit-lens"; + "xml-monad" = dontDistribute super."xml-monad"; + "xml-parsec" = dontDistribute super."xml-parsec"; + "xml-picklers" = dontDistribute super."xml-picklers"; + "xml-pipe" = dontDistribute super."xml-pipe"; + "xml-prettify" = dontDistribute super."xml-prettify"; + "xml-push" = dontDistribute super."xml-push"; + "xml-query" = dontDistribute super."xml-query"; + "xml-query-xml-conduit" = dontDistribute super."xml-query-xml-conduit"; + "xml-query-xml-types" = dontDistribute super."xml-query-xml-types"; + "xml2html" = dontDistribute super."xml2html"; + "xml2json" = dontDistribute super."xml2json"; + "xml2x" = dontDistribute super."xml2x"; + "xmltv" = dontDistribute super."xmltv"; + "xmms2-client" = dontDistribute super."xmms2-client"; + "xmms2-client-glib" = dontDistribute super."xmms2-client-glib"; + "xmobar" = dontDistribute super."xmobar"; + "xmonad-bluetilebranch" = dontDistribute super."xmonad-bluetilebranch"; + "xmonad-contrib" = dontDistribute super."xmonad-contrib"; + "xmonad-contrib-bluetilebranch" = dontDistribute super."xmonad-contrib-bluetilebranch"; + "xmonad-contrib-gpl" = dontDistribute super."xmonad-contrib-gpl"; + "xmonad-entryhelper" = dontDistribute super."xmonad-entryhelper"; + "xmonad-eval" = dontDistribute super."xmonad-eval"; + "xmonad-extras" = dontDistribute super."xmonad-extras"; + "xmonad-screenshot" = dontDistribute super."xmonad-screenshot"; + "xmonad-utils" = dontDistribute super."xmonad-utils"; + "xmonad-wallpaper" = dontDistribute super."xmonad-wallpaper"; + "xmonad-windownames" = dontDistribute super."xmonad-windownames"; + "xmpipe" = dontDistribute super."xmpipe"; + "xorshift" = dontDistribute super."xorshift"; + "xosd" = dontDistribute super."xosd"; + "xournal-builder" = dontDistribute super."xournal-builder"; + "xournal-convert" = dontDistribute super."xournal-convert"; + "xournal-parser" = dontDistribute super."xournal-parser"; + "xournal-render" = dontDistribute super."xournal-render"; + "xournal-types" = dontDistribute super."xournal-types"; + "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-conduit" = dontDistribute super."yahoo-finance-conduit"; + "yahoo-web-search" = dontDistribute super."yahoo-web-search"; + "yajl" = dontDistribute super."yajl"; + "yajl-enumerator" = dontDistribute super."yajl-enumerator"; + "yall" = dontDistribute super."yall"; + "yamemo" = dontDistribute super."yamemo"; + "yaml-config" = dontDistribute super."yaml-config"; + "yaml-light-lens" = dontDistribute super."yaml-light-lens"; + "yaml-rpc" = dontDistribute super."yaml-rpc"; + "yaml-rpc-scotty" = dontDistribute super."yaml-rpc-scotty"; + "yaml-rpc-snap" = dontDistribute super."yaml-rpc-snap"; + "yaml-union" = dontDistribute super."yaml-union"; + "yaml2owl" = dontDistribute super."yaml2owl"; + "yamlkeysdiff" = dontDistribute super."yamlkeysdiff"; + "yampa-canvas" = dontDistribute super."yampa-canvas"; + "yampa-glfw" = dontDistribute super."yampa-glfw"; + "yampa-glut" = dontDistribute super."yampa-glut"; + "yampa2048" = dontDistribute super."yampa2048"; + "yaop" = dontDistribute super."yaop"; + "yap" = dontDistribute super."yap"; + "yarr" = dontDistribute super."yarr"; + "yarr-image-io" = dontDistribute super."yarr-image-io"; + "yate" = dontDistribute super."yate"; + "yavie" = dontDistribute super."yavie"; + "ycextra" = dontDistribute super."ycextra"; + "yeganesh" = dontDistribute super."yeganesh"; + "yeller" = dontDistribute super."yeller"; + "yeshql" = dontDistribute super."yeshql"; + "yesod-angular" = dontDistribute super."yesod-angular"; + "yesod-angular-ui" = dontDistribute super."yesod-angular-ui"; + "yesod-auth-bcrypt" = dontDistribute super."yesod-auth-bcrypt"; + "yesod-auth-kerberos" = dontDistribute super."yesod-auth-kerberos"; + "yesod-auth-ldap" = dontDistribute super."yesod-auth-ldap"; + "yesod-auth-ldap-mediocre" = dontDistribute super."yesod-auth-ldap-mediocre"; + "yesod-auth-ldap-native" = dontDistribute super."yesod-auth-ldap-native"; + "yesod-auth-oauth" = dontDistribute super."yesod-auth-oauth"; + "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; + "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; + "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; + "yesod-bootstrap" = dontDistribute super."yesod-bootstrap"; + "yesod-comments" = dontDistribute super."yesod-comments"; + "yesod-content-pdf" = dontDistribute super."yesod-content-pdf"; + "yesod-continuations" = dontDistribute super."yesod-continuations"; + "yesod-crud" = dontDistribute super."yesod-crud"; + "yesod-crud-persist" = dontDistribute super."yesod-crud-persist"; + "yesod-csp" = dontDistribute super."yesod-csp"; + "yesod-datatables" = dontDistribute super."yesod-datatables"; + "yesod-dsl" = dontDistribute super."yesod-dsl"; + "yesod-examples" = dontDistribute super."yesod-examples"; + "yesod-form-json" = dontDistribute super."yesod-form-json"; + "yesod-goodies" = dontDistribute super."yesod-goodies"; + "yesod-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"; + "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 87cca90b9555..bb4bfb920716 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -2070,6 +2070,7 @@ self: { process split strict tagsoup temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -2096,6 +2097,7 @@ self: { process split strict tagsoup temporary transformers ]; executableHaskellDepends = [ base cmdargs ]; + jailbreak = true; homepage = "http://byorgey.wordpress.com/blogliterately/"; description = "A tool for posting Haskelly articles to blogs"; license = "GPL"; @@ -6100,8 +6102,8 @@ self: { }: mkDerivation { pname = "FTPLine"; - version = "1.4.0.0"; - sha256 = "c51299b2769c0632174550dbdf6d3bbcca1e81ed26e08730caaedb2e8975dc5a"; + version = "1.4.1.1"; + sha256 = "b4a654625b7b405c076aff0f30e44c0d7ea14ed1f240b61c13b175339287d280"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -6760,7 +6762,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "Frames" = callPackage + "Frames_0_1_3" = callPackage ({ mkDerivation, base, ghc-prim, pipes, primitive, readable , template-haskell, text, transformers, vector, vinyl }: @@ -6776,6 +6778,25 @@ self: { ]; description = "Data frames For working with tabular data files"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "Frames" = callPackage + ({ mkDerivation, base, ghc-prim, pipes, primitive, readable + , template-haskell, text, transformers, vector, vinyl + }: + mkDerivation { + pname = "Frames"; + version = "0.1.4"; + sha256 = "3330b53867f07959c58b2cfc237390422ea08ca474b329547f092b6cb2bf39a0"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base ghc-prim pipes primitive readable template-haskell text + transformers vector vinyl + ]; + description = "Data frames For working with tabular data files"; + license = stdenv.lib.licenses.bsd3; }) {}; "Frank" = callPackage @@ -10088,6 +10109,7 @@ self: { executableHaskellDepends = [ base cmdargs containers deepseq hylolib mtl strict ]; + jailbreak = true; homepage = "http://www.glyc.dc.uba.ar/intohylo/htab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; @@ -17174,7 +17196,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "QuasiText" = callPackage + "QuasiText_0_1_2_5" = callPackage ({ mkDerivation, attoparsec, base, haskell-src-meta , template-haskell, text }: @@ -17188,6 +17210,24 @@ self: { homepage = "https://github.com/mikeplus64/QuasiText"; description = "A QuasiQuoter for Text"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "QuasiText" = callPackage + ({ mkDerivation, attoparsec, base, haskell-src-meta + , template-haskell, text, th-lift-instances + }: + mkDerivation { + pname = "QuasiText"; + version = "0.1.2.6"; + sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; + libraryHaskellDepends = [ + attoparsec base haskell-src-meta template-haskell text + th-lift-instances + ]; + homepage = "https://github.com/mikeplus64/QuasiText"; + description = "A QuasiQuoter for Text"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -18745,16 +18785,16 @@ self: { "SciFlow" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , fgl, graphviz, lens, mtl, optparse-applicative, shelly, split - , template-haskell, text, th-lift, yaml + , template-haskell, text, th-lift, transformers, yaml }: mkDerivation { pname = "SciFlow"; - version = "0.4.0"; - sha256 = "6ab39de90c8f4b31ee57ebab575db36d53ef1800895bc87cfa3b9d443807661b"; + version = "0.4.1"; + sha256 = "5e517ebe5bd29ce80606d7011a898bbcfb8f5538c5b888755ba7567405b7230c"; libraryHaskellDepends = [ base bytestring containers data-default-class fgl graphviz lens mtl optparse-applicative shelly split template-haskell text th-lift - yaml + transformers yaml ]; description = "Scientific workflow management system"; license = stdenv.lib.licenses.mit; @@ -18906,6 +18946,8 @@ self: { pname = "Shellac"; version = "0.9.9"; sha256 = "e64d4e16b10a79bd4a149e695873382ebf733f8915ae6791b08c494bea48a700"; + revision = "1"; + editedCabalFile = "3ffcc6aa147ae304774ddde0cd56e92f8d913f12d2e4a7d7fc0e66b7019007db"; libraryHaskellDepends = [ base directory mtl unix ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "A framework for creating shell envinronments"; @@ -18919,6 +18961,8 @@ self: { pname = "Shellac-compatline"; version = "0.9.9"; sha256 = "255b987acc54eccc6f6cb56ca6ee635fa2c0ab4e1ea1de1edd307a147553b162"; + revision = "1"; + editedCabalFile = "40f9d22abf36bdd38d2d5816851d279d1d33f6a5db365c83f34912f965be4873"; libraryHaskellDepends = [ base Shellac Shellac-readline ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "\"compatline\" backend module for Shellac"; @@ -18932,6 +18976,8 @@ self: { pname = "Shellac-editline"; version = "0.9.9"; sha256 = "87e12d5ab838d6ff004f0172c1b868e0ead3ae8fbf122286e221b60e67694e9c"; + revision = "1"; + editedCabalFile = "db50092611da270eff784c8cb0015967b43278132dd6d4c891ba508beda1caf3"; libraryHaskellDepends = [ base editline Shellac ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Editline backend module for Shellac"; @@ -18943,10 +18989,9 @@ self: { ({ mkDerivation, base, haskeline, mtl, Shellac }: mkDerivation { pname = "Shellac-haskeline"; - version = "0.2.0.2"; - sha256 = "0fdb0cbf8dd0fad1b8868c859b5113704912c703735cb39003cf079e5569e060"; + version = "0.2.1"; + sha256 = "046a34e2c01f2a883fab67dd0ade226b5b6cf48da689a51526730bfa90141552"; libraryHaskellDepends = [ base haskeline mtl Shellac ]; - jailbreak = true; description = "Haskeline backend module for Shellac"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -18958,6 +19003,8 @@ self: { pname = "Shellac-readline"; version = "0.9.9"; sha256 = "351fbc5e9a44abd2d3de95428a2b76c79974579c25cb76a8a7da7c1690eb8851"; + revision = "1"; + editedCabalFile = "1a1a54835703473ce18eb322e133610694af3e81ccca1c563e5bc46a033e3705"; libraryHaskellDepends = [ base readline Shellac ]; homepage = "http://rwd.rdockins.name/shellac/home/"; description = "Readline backend module for Shellac"; @@ -22487,6 +22534,27 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "abnf" = callPackage + ({ mkDerivation, attoparsec, base, containers, HUnit, megaparsec + , tasty, tasty-hunit, test-framework, test-framework-hunit, text + }: + mkDerivation { + pname = "abnf"; + version = "0.1.0.0"; + sha256 = "93ad5731678f114f2f26f341e49afcbb8f9c3c5b6a5d191bee4797b543080aa4"; + libraryHaskellDepends = [ + attoparsec base containers megaparsec text + ]; + testHaskellDepends = [ + attoparsec base containers HUnit megaparsec tasty tasty-hunit + test-framework test-framework-hunit text + ]; + jailbreak = true; + homepage = "https://github.com/Xandaros/abnf.git"; + description = "Parse ABNF and generate parsers for the specified document"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "abstract-deque" = callPackage ({ mkDerivation, array, base, containers, random, time }: mkDerivation { @@ -22620,11 +22688,12 @@ self: { pname = "accelerate"; version = "0.15.1.0"; sha256 = "db0f9a5bd8ba6e264561bb62b213384e70baae6fe90208ea2ee101f553556b1d"; + revision = "1"; + editedCabalFile = "12863bb93be03eaa18f06354aae0c3ba7a13a6a229d44d69c1b84b2f1873ff35"; libraryHaskellDepends = [ array base containers fclabels ghc-prim hashable hashtables pretty template-haskell unordered-containers ]; - jailbreak = true; homepage = "https://github.com/AccelerateHS/accelerate/"; description = "An embedded language for accelerated array processing"; license = stdenv.lib.licenses.bsd3; @@ -24460,7 +24529,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-compat" = callPackage + "aeson-compat_0_3_3_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans , bytestring, containers, exceptions, hashable, nats, QuickCheck , quickcheck-instances, scientific, semigroups, tagged, tasty @@ -24485,6 +24554,34 @@ self: { homepage = "https://github.com/phadej/aeson-compat#readme"; description = "Compatibility layer for aeson"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aeson-compat" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base-compat, base-orphans + , bytestring, containers, exceptions, hashable, nats, QuickCheck + , quickcheck-instances, scientific, semigroups, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, time-locale-compat + , unordered-containers, vector + }: + mkDerivation { + pname = "aeson-compat"; + version = "0.3.4.0"; + sha256 = "47edd45ac71bbbcd4f8a7349a02ae5d3672107f3a4f37e06e7a856a0ac3e88c9"; + libraryHaskellDepends = [ + aeson attoparsec base base-compat bytestring containers exceptions + hashable nats scientific semigroups tagged text time + time-locale-compat unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base base-compat base-orphans bytestring + containers exceptions hashable nats QuickCheck quickcheck-instances + scientific semigroups tagged tasty tasty-hunit tasty-quickcheck + text time time-locale-compat unordered-containers vector + ]; + homepage = "https://github.com/phadej/aeson-compat#readme"; + description = "Compatibility layer for aeson"; + license = stdenv.lib.licenses.bsd3; }) {}; "aeson-diff" = callPackage @@ -24662,7 +24759,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aeson-extra" = callPackage + "aeson-extra_0_3_1_1" = callPackage ({ mkDerivation, aeson, aeson-compat, base, base-compat, bytestring , containers, exceptions, hashable, parsec, quickcheck-instances , recursion-schemes, scientific, tasty, tasty-hunit @@ -24692,6 +24789,36 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "aeson-extra" = callPackage + ({ mkDerivation, aeson, aeson-compat, attoparsec, base, base-compat + , bytestring, containers, exceptions, hashable, parsec + , quickcheck-instances, recursion-schemes, scientific, tasty + , tasty-hunit, tasty-quickcheck, template-haskell, text, these + , time, time-parsers, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "aeson-extra"; + version = "0.3.2.0"; + sha256 = "7af0de540f971c156ec9ce16188233beefa24a4320e71f2344791bdf69ddec0d"; + libraryHaskellDepends = [ + aeson aeson-compat attoparsec base base-compat bytestring + containers exceptions hashable parsec recursion-schemes scientific + template-haskell text time time-parsers transformers + unordered-containers vector + ]; + testHaskellDepends = [ + aeson aeson-compat base base-compat bytestring containers + exceptions hashable parsec quickcheck-instances scientific tasty + tasty-hunit tasty-quickcheck template-haskell text these time + time-parsers unordered-containers vector + ]; + jailbreak = true; + homepage = "https://github.com/phadej/aeson-extra#readme"; + description = "Extra goodies for aeson"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "aeson-filthy" = callPackage ({ mkDerivation, aeson, base, bytestring, doctest, text , unordered-containers @@ -29146,6 +29273,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Elastic Compute Cloud SDK"; license = "unknown"; @@ -31583,6 +31711,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Storage Service SDK"; license = "unknown"; @@ -32494,6 +32623,7 @@ self: { amazonka-core amazonka-test base bytestring tasty tasty-hunit text time unordered-containers ]; + doCheck = false; homepage = "https://github.com/brendanhay/amazonka"; description = "Amazon Simple Workflow Service SDK"; license = "unknown"; @@ -35712,6 +35842,7 @@ self: { base blaze-html containers directory filepath JuicyPixels rasterific-svg svg-tree text ]; + doCheck = false; description = "Pretty rendering of Ascii diagram into svg or png"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -37287,6 +37418,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "authenticate-oauth_1_6" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring + , crypto-pubkey-types, data-default, http-client, http-types + , random, RSA, SHA, time, transformers, transformers-compat + }: + mkDerivation { + pname = "authenticate-oauth"; + version = "1.6"; + sha256 = "d26d9f10fd57e06fa2af066df65e578ff3ec7541efc3e6648b29a743b13f8375"; + libraryHaskellDepends = [ + base base64-bytestring blaze-builder bytestring crypto-pubkey-types + data-default http-client http-types random RSA SHA time + transformers transformers-compat + ]; + homepage = "http://github.com/yesodweb/authenticate"; + description = "Library to authenticate with OAuth for Haskell web applications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "authinfo-hs" = callPackage ({ mkDerivation, attoparsec, base, network, text }: mkDerivation { @@ -38096,7 +38247,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "aws" = callPackage + "aws_0_13_0" = callPackage ({ mkDerivation, aeson, attoparsec, base, base16-bytestring , base64-bytestring, blaze-builder, byteable, bytestring , case-insensitive, cereal, conduit, conduit-extra, containers @@ -38133,6 +38284,81 @@ self: { homepage = "http://github.com/aristidb/aws"; description = "Amazon Web Services (AWS) for Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aws_0_13_2" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , base64-bytestring, blaze-builder, byteable, bytestring + , case-insensitive, cereal, conduit, conduit-extra, containers + , cryptohash, data-default, directory, errors, filepath + , http-client, http-conduit, http-types, lifted-base, monad-control + , mtl, network, old-locale, QuickCheck, quickcheck-instances + , resourcet, safe, scientific, tagged, tasty, tasty-quickcheck + , text, time, transformers, transformers-base, unordered-containers + , utf8-string, vector, xml-conduit + }: + mkDerivation { + pname = "aws"; + version = "0.13.2"; + sha256 = "998a9ddc9bc3e74a292e733aac1e9af0ec654d17aa1834319f9f6af4d907ff59"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring base64-bytestring + blaze-builder byteable bytestring case-insensitive cereal conduit + conduit-extra containers cryptohash data-default directory filepath + http-conduit http-types lifted-base monad-control mtl network + old-locale resourcet safe scientific tagged text time transformers + unordered-containers utf8-string vector xml-conduit + ]; + testHaskellDepends = [ + aeson base bytestring errors http-client lifted-base monad-control + mtl QuickCheck quickcheck-instances resourcet tagged tasty + tasty-quickcheck text time transformers transformers-base + ]; + doCheck = false; + homepage = "http://github.com/aristidb/aws"; + description = "Amazon Web Services (AWS) for Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "aws" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base16-bytestring + , base64-bytestring, blaze-builder, byteable, bytestring + , case-insensitive, cereal, conduit, conduit-extra, containers + , cryptohash, data-default, directory, errors, filepath + , http-client, http-client-tls, http-conduit, http-types + , lifted-base, monad-control, mtl, network, old-locale, QuickCheck + , quickcheck-instances, resourcet, safe, scientific, tagged, tasty + , tasty-hunit, tasty-quickcheck, text, time, transformers + , transformers-base, unordered-containers, utf8-string, vector + , xml-conduit + }: + mkDerivation { + pname = "aws"; + version = "0.14.0"; + sha256 = "b5b959f9b0ae8c07baf91e067b4005dc554d76c1ab15d019f13a4dc88a8a813e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base base16-bytestring base64-bytestring + blaze-builder byteable bytestring case-insensitive cereal conduit + conduit-extra containers cryptohash data-default directory filepath + http-conduit http-types lifted-base monad-control mtl network + old-locale resourcet safe scientific tagged text time transformers + unordered-containers utf8-string vector xml-conduit + ]; + testHaskellDepends = [ + aeson base bytestring errors http-client http-client-tls http-types + lifted-base monad-control mtl QuickCheck quickcheck-instances + resourcet tagged tasty tasty-hunit tasty-quickcheck text time + transformers transformers-base + ]; + homepage = "http://github.com/aristidb/aws"; + description = "Amazon Web Services (AWS) for Haskell"; + license = stdenv.lib.licenses.bsd3; }) {}; "aws-cloudfront-signer" = callPackage @@ -41313,17 +41539,15 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "binary_0_8_3_0" = callPackage + "binary_0_8_4_0" = callPackage ({ mkDerivation, array, base, bytestring, Cabal, containers , directory, filepath, HUnit, QuickCheck, random, test-framework , test-framework-quickcheck2 }: mkDerivation { pname = "binary"; - version = "0.8.3.0"; - sha256 = "221385dde77d92f786c665ee6fce0a3beeb80e6a812b8edf9ded1b653f2ea821"; - revision = "1"; - editedCabalFile = "21a7449af6a6caa19c3b5c877c2331ccd3842ef1e9ab59c65918fbde0f6ac427"; + version = "0.8.4.0"; + sha256 = "d7a672366741152365a2c1e67525dc08bf606a4a8cae06f58c7f51a2e43f9018"; libraryHaskellDepends = [ array base bytestring containers ]; testHaskellDepends = [ array base bytestring Cabal containers directory filepath HUnit @@ -43368,16 +43592,23 @@ self: { }) {}; "bitcoin-payment-channel" = callPackage - ({ mkDerivation, base, base16-bytestring, base58string, binary - , bytestring, cereal, haskoin-core, hexstring, text, time + ({ mkDerivation, aeson, base, base16-bytestring, base58string + , base64-bytestring, binary, bytestring, cereal, haskoin-core + , hexstring, QuickCheck, scientific, text, time }: mkDerivation { pname = "bitcoin-payment-channel"; - version = "0.1.0.0"; - sha256 = "f474aab5245a31c50916c39f20ad674b624dba42c4059ff0be03c263da73f148"; + version = "0.1.1.0"; + sha256 = "5da23d31ac1a81ee9508d2e1a6f1f1c12bd34eeaab98fc63578a261e8a02e242"; + isLibrary = true; + isExecutable = true; libraryHaskellDepends = [ - base base16-bytestring base58string binary bytestring cereal - haskoin-core hexstring text time + aeson base base16-bytestring base58string base64-bytestring binary + bytestring cereal haskoin-core hexstring scientific text time + ]; + executableHaskellDepends = [ + aeson base base16-bytestring base58string base64-bytestring binary + bytestring cereal haskoin-core hexstring QuickCheck text time ]; homepage = "https://github.com/runeksvendsen/bitcoin-payment-channel"; description = "Library for working with Bitcoin payment channels"; @@ -44913,8 +45144,8 @@ self: { }: mkDerivation { pname = "bloomfilter-redis"; - version = "0.1.0.2"; - sha256 = "82cb0fc85eab0a2f661cad90eb5f6eab6380f5ecdff39299318af9a8193f4052"; + version = "0.1.0.3"; + sha256 = "2d7285018f40345aac3f5bab4d17b95cb469b071e1beb75d7f48dfc09cf51a73"; libraryHaskellDepends = [ arithmoi base binary bytestring hashable hedis ]; @@ -44922,7 +45153,6 @@ self: { base bytestring hashable hedis QuickCheck tasty tasty-hunit tasty-quickcheck tasty-rerun ]; - jailbreak = true; description = "Distributed bloom filters on Redis (using the Hedis client)"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -45127,15 +45357,15 @@ self: { }) {}; "bond" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, cmdargs, derive - , Diff, directory, filepath, HUnit, monad-loops, mtl, parsec - , pretty, process, QuickCheck, scientific, shakespeare, tasty - , tasty-golden, tasty-hunit, tasty-quickcheck, text + ({ mkDerivation, aeson, aeson-pretty, async, base, bytestring + , cmdargs, derive, Diff, directory, filepath, HUnit, monad-loops + , mtl, parsec, pretty, process, QuickCheck, scientific, shakespeare + , tasty, tasty-golden, tasty-hunit, tasty-quickcheck, text }: mkDerivation { pname = "bond"; - version = "0.4.0.2"; - sha256 = "866c6880600baa54114914e005dd994bacc33377470bd31405bda0c9f47a3825"; + version = "0.4.1.0"; + sha256 = "6a18c8ac814ee9bfea069dfde24cc5d357f05a2b67c0429a0e135f83bf44e6a5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45144,14 +45374,13 @@ self: { ]; executableHaskellDepends = [ aeson async base bytestring cmdargs directory filepath monad-loops - process text + parsec process text ]; testHaskellDepends = [ - aeson base bytestring cmdargs derive Diff directory filepath HUnit - monad-loops pretty QuickCheck tasty tasty-golden tasty-hunit - tasty-quickcheck text + aeson aeson-pretty base bytestring cmdargs derive Diff directory + filepath HUnit monad-loops parsec pretty QuickCheck tasty + tasty-golden tasty-hunit tasty-quickcheck text ]; - jailbreak = true; homepage = "https://github.com/Microsoft/bond"; description = "Bond schema compiler and code generator"; license = stdenv.lib.licenses.mit; @@ -45315,7 +45544,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "boomerang" = callPackage + "boomerang_1_4_5_1" = callPackage ({ mkDerivation, base, mtl, template-haskell, text }: mkDerivation { pname = "boomerang"; @@ -45324,6 +45553,18 @@ self: { libraryHaskellDepends = [ base mtl template-haskell text ]; description = "Library for invertible parsing and printing"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "boomerang" = callPackage + ({ mkDerivation, base, mtl, template-haskell, text }: + mkDerivation { + pname = "boomerang"; + version = "1.4.5.2"; + sha256 = "86de45d4407deba2f5441e3867fdc603a7b0cee35080bed181fdefe2c8a0a2be"; + libraryHaskellDepends = [ base mtl template-haskell text ]; + description = "Library for invertible parsing and printing"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -45673,7 +45914,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "brainfuck" = callPackage + "brainfuck_0_1_0_2" = callPackage ({ mkDerivation, array, base, mtl, unix }: mkDerivation { pname = "brainfuck"; @@ -45686,6 +45927,21 @@ self: { jailbreak = true; description = "Brainfuck interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "brainfuck" = callPackage + ({ mkDerivation, array, base, mtl, unix }: + mkDerivation { + pname = "brainfuck"; + version = "0.1.0.3"; + sha256 = "0db5370311ec8a3a1673fd04e502fd10e0afa0df5ee25d3a917937d3d9668bf6"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ array base mtl ]; + executableHaskellDepends = [ array base mtl unix ]; + description = "Brainfuck interpreter"; + license = "GPL"; }) {}; "brainfuck-monad" = callPackage @@ -46645,12 +46901,12 @@ self: { ({ mkDerivation, base, ghc-prim, integer-gmp }: mkDerivation { pname = "bv"; - version = "0.4.0"; - sha256 = "aaf6adc5aeccdf7bdaf7b5f832f339cbca45747745cd3bf52f30b496c70cb439"; + version = "0.4.1"; + sha256 = "dd092150f1792e76e168365d69798d3a27b911ce9de8b21a47c5fed42acf45bb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - homepage = "http://bitbucket.org/iago/bv-haskell"; + homepage = "https://github.com/iagoabal/haskell-bv"; description = "Bit-vector arithmetic library"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -52092,8 +52348,8 @@ self: { }: mkDerivation { pname = "cgrep"; - version = "6.6.9"; - sha256 = "723bf852fcd5174204bf9fee0909024ab0376e52275fca1b722d9e8dcac2e467"; + version = "6.6.13"; + sha256 = "b10853efadd6e75395ca92ba2c7ac71ba137496f1844b79048db42f74da04931"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -52721,8 +52977,8 @@ self: { }: mkDerivation { pname = "chorale"; - version = "0.1.3"; - sha256 = "c8c1130d15e2c3a7ce9152b408eed3159ba0f05e3d04182a8dae8a56e445d301"; + version = "0.1.5"; + sha256 = "cff064b97b28d61dc0a982c8a4c7cf8a7c527a099b29b0e01c8c2fb6dc08f681"; libraryHaskellDepends = [ base containers safe ]; testHaskellDepends = [ base containers HUnit ieee754 QuickCheck safe test-framework @@ -52734,6 +52990,24 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "chorale-geo" = callPackage + ({ mkDerivation, base, binary, chorale, HUnit, ieee754, QuickCheck + , test-framework, test-framework-hunit, test-framework-quickcheck2 + }: + mkDerivation { + pname = "chorale-geo"; + version = "0.1.2"; + sha256 = "acc8d32f5c4652e58cae069df232cf487479d8cda92b444e0c797c3cc2f895a3"; + libraryHaskellDepends = [ base binary chorale ]; + testHaskellDepends = [ + base binary chorale HUnit ieee754 QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/mocnik-science/chorale-geo"; + description = "A module containing basic geo functions"; + license = stdenv.lib.licenses.mit; + }) {}; + "chp" = callPackage ({ mkDerivation, base, containers, deepseq, extensible-exceptions , pretty, stm @@ -62730,8 +63004,8 @@ self: { ({ mkDerivation, array, base, containers, parallel }: mkDerivation { pname = "cpsa"; - version = "3.3.0"; - sha256 = "1ec656f97612b82870000f96a3fa147796e67c305d433efd6958f9b5d794a8c0"; + version = "3.3.1"; + sha256 = "05080b614849554de2387f5478868ab670bd7cf2c97b2fbffc90c84941cac0fa"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ array base containers parallel ]; @@ -65438,10 +65712,9 @@ self: { ({ mkDerivation, arithmoi, base, containers }: mkDerivation { pname = "cyclotomic"; - version = "0.4.4"; - sha256 = "72ef126d3bf18542a709d740baef78dc4e4a065e1044fd50274a3730e3feeb97"; + version = "0.4.4.1"; + sha256 = "5940a639b7081a326719ba31b724b27e6febb609e8ef38c12b979986e58b2b17"; libraryHaskellDepends = [ arithmoi base containers ]; - jailbreak = true; description = "A subfield of the complex numbers for exact calculation"; license = stdenv.lib.licenses.gpl3; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -68724,7 +68997,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "debian-build" = callPackage + "debian-build_0_9_1_0" = callPackage ({ mkDerivation, base, Cabal, directory, filepath, process, split , transformers }: @@ -68741,6 +69014,26 @@ self: { homepage = "http://twitter.com/khibino/"; description = "Debian package build sequence tools"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "debian-build" = callPackage + ({ mkDerivation, base, Cabal, directory, filepath, process, split + , transformers + }: + mkDerivation { + pname = "debian-build"; + version = "0.9.2.0"; + sha256 = "7d911ef9300a073f8e0db17c3480790a8c6da712ed8141c65098fc7ca99da750"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base Cabal directory filepath process split transformers + ]; + executableHaskellDepends = [ base filepath transformers ]; + homepage = "http://twitter.com/khibino/"; + description = "Debian package build sequence tools"; + license = stdenv.lib.licenses.bsd3; }) {}; "debug-diff" = callPackage @@ -71267,7 +71560,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-core" = callPackage + "diagrams-core_1_3_0_7" = callPackage ({ mkDerivation, adjunctions, base, containers, distributive , dual-tree, lens, linear, monoid-extras, mtl, semigroups , unordered-containers @@ -71284,6 +71577,25 @@ self: { homepage = "http://projects.haskell.org/diagrams"; description = "Core libraries for diagrams EDSL"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "diagrams-core" = callPackage + ({ mkDerivation, adjunctions, base, containers, distributive + , dual-tree, lens, linear, monoid-extras, mtl, semigroups + , unordered-containers + }: + mkDerivation { + pname = "diagrams-core"; + version = "1.3.0.8"; + sha256 = "356f5fd77916422616e77fcdcde44aa76c0ff74c9ec9d56c20a54abd96459c73"; + libraryHaskellDepends = [ + adjunctions base containers distributive dual-tree lens linear + monoid-extras mtl semigroups unordered-containers + ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Core libraries for diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; }) {}; "diagrams-graphviz" = callPackage @@ -71776,7 +72088,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-lib" = callPackage + "diagrams-lib_1_3_1_2" = callPackage ({ mkDerivation, active, adjunctions, array, base, colour , containers, data-default-class, diagrams-core, diagrams-solve , directory, distributive, dual-tree, exceptions, filepath @@ -71804,6 +72116,33 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-lib" = callPackage + ({ mkDerivation, active, adjunctions, array, base, colour + , containers, data-default-class, diagrams-core, diagrams-solve + , directory, distributive, dual-tree, exceptions, filepath + , fingertree, fsnotify, hashable, intervals, JuicyPixels, lens + , linear, monoid-extras, mtl, optparse-applicative, process + , semigroups, tagged, tasty, tasty-hunit, text, transformers + , unordered-containers + }: + mkDerivation { + pname = "diagrams-lib"; + version = "1.3.1.3"; + sha256 = "0bf7e87e0d60af17ebf57d9d770cadc447da8db38b9f54114dd30e25a68d79e8"; + libraryHaskellDepends = [ + active adjunctions array base colour containers data-default-class + diagrams-core diagrams-solve directory distributive dual-tree + exceptions filepath fingertree fsnotify hashable intervals + JuicyPixels lens linear monoid-extras mtl optparse-applicative + process semigroups tagged text transformers unordered-containers + ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + homepage = "http://projects.haskell.org/diagrams"; + description = "Embedded domain-specific language for declarative graphics"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-pandoc" = callPackage ({ mkDerivation, base, diagrams-builder, diagrams-cairo , diagrams-lib, directory, filepath, linear, optparse-applicative @@ -82550,6 +82889,8 @@ self: { pname = "extensible-effects"; version = "1.11.0.3"; sha256 = "ae44bc66608f000a9da20d8ae53c1e2a0ed4c46fa7b9bab2f5d44c0da1c1ebb3"; + revision = "1"; + editedCabalFile = "def49e30602186aff0bfaa3651556f0c1159084b44d6c4d50d6e69668b8146fa"; libraryHaskellDepends = [ base transformers transformers-base type-aligned void ]; @@ -82557,6 +82898,7 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 test-framework-th void ]; + jailbreak = true; homepage = "https://github.com/suhailshergill/extensible-effects"; description = "An Alternative to Monad Transformers"; license = stdenv.lib.licenses.mit; @@ -85719,7 +86061,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "file-modules" = callPackage + "file-modules_0_1_2_2" = callPackage ({ mkDerivation, async, base, directory, filepath, haskell-src-exts , MissingH }: @@ -85738,6 +86080,30 @@ self: { homepage = "https://github.com/yamadapc/stack-run-auto"; description = "Takes a Haskell source-code file and outputs its modules"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "file-modules" = callPackage + ({ mkDerivation, async, base, directory, filepath, haskell-src-exts + , MissingH, regex-compat, regex-pcre + }: + mkDerivation { + pname = "file-modules"; + version = "0.1.2.3"; + sha256 = "e932a7087e2de523a2c9bebc4070623e6d87520ea31439377be0b1c0845b8c95"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base directory filepath haskell-src-exts MissingH + regex-compat regex-pcre + ]; + executableHaskellDepends = [ + async base directory filepath haskell-src-exts MissingH + regex-compat regex-pcre + ]; + homepage = "https://github.com/yamadapc/stack-run-auto"; + description = "Takes a Haskell source-code file and outputs its modules"; + license = stdenv.lib.licenses.mit; }) {}; "filecache" = callPackage @@ -90164,6 +90530,19 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "funnyprint" = callPackage + ({ mkDerivation, base, hscolour, ipprint, tasty, tasty-hspec }: + mkDerivation { + pname = "funnyprint"; + version = "0.0.2"; + sha256 = "0a551c9097a9a622b86ccf974930afd245a7d0b165ff2fffc682805e6a7bb8e1"; + libraryHaskellDepends = [ base hscolour ipprint ]; + testHaskellDepends = [ base hscolour ipprint tasty tasty-hspec ]; + homepage = "https://github.com/Pitometsu/funnyprint#readme"; + description = "funnyPrint function to colorize GHCi output"; + license = stdenv.lib.licenses.mit; + }) {}; + "funpat" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -92259,8 +92638,8 @@ self: { }: mkDerivation { pname = "ghc-exactprint"; - version = "0.5.1.0"; - sha256 = "e9e768a17ef826907bddeb1709a8709f9ce4414e6df80c789a28b583852e656f"; + version = "0.5.1.1"; + sha256 = "ab88a158b659641a1a940b1ebeaeefe8d41e53f1da2bee139914bbad21f15d8a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -92410,6 +92789,7 @@ self: { monad-journal mtl optparse-applicative parsec process process-streaming safe syb transformers ]; + doCheck = false; homepage = "https://github.com/carlohamalainen/ghc-imported-from"; description = "Find the Haddock documentation for a symbol"; license = stdenv.lib.licenses.bsd3; @@ -100834,8 +101214,8 @@ self: { }: mkDerivation { pname = "gtk"; - version = "0.14.4"; - sha256 = "2d701bf9f9865c3a13f6ccc0dff8088b32571d4add236db72cc9d3760ea54466"; + version = "0.14.5"; + sha256 = "ffdfb54247dfbdf3b9936504802e3e0d2238cf5a0c145e745899d2c17f7c7001"; libraryHaskellDepends = [ array base bytestring cairo containers gio glib mtl pango text ]; @@ -100846,24 +101226,6 @@ self: { license = stdenv.lib.licenses.lgpl21; }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk_0_14_5" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk2, mtl, pango, text - }: - mkDerivation { - pname = "gtk"; - version = "0.14.5"; - sha256 = "ffdfb54247dfbdf3b9936504802e3e0d2238cf5a0c145e745899d2c17f7c7001"; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk2 ]; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {gtk2 = pkgs.gnome2.gtk;}; - "gtk-helpers" = callPackage ({ mkDerivation, array, base, gio, glib, gtk, mtl, process , template-haskell @@ -101424,30 +101786,6 @@ self: { }) {inherit (pkgs) gtk3;}; "gtk3" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, containers, gio - , glib, gtk3, mtl, pango, text, time, transformers - }: - mkDerivation { - pname = "gtk3"; - version = "0.14.4"; - sha256 = "01eee85bac2bcdb85aefa336e34879720ad336811e106644e52a69952762d020"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk3 ]; - executableHaskellDepends = [ - array base cairo text time transformers - ]; - doHaddock = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ 3 graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) gtk3;}; - - "gtk3_0_14_5" = callPackage ({ mkDerivation, array, base, bytestring, cairo, containers, gio , glib, gtk3, mtl, pango, text, time, transformers }: @@ -101464,7 +101802,7 @@ self: { executableHaskellDepends = [ array base cairo text time transformers ]; - jailbreak = true; + doHaddock = false; homepage = "http://projects.haskell.org/gtk2hs/"; description = "Binding to the Gtk+ 3 graphical user interface library"; license = stdenv.lib.licenses.lgpl21; @@ -102265,7 +102603,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hPDB" = callPackage + "hPDB_1_2_0_5" = callPackage ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq , directory, ghc-prim, iterable, mmap, mtl, Octree, parallel , QuickCheck, tagged, template-haskell, text, vector, zlib @@ -102282,6 +102620,27 @@ self: { homepage = "https://github.com/BioHaskell/hPDB"; description = "Protein Databank file format library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hPDB" = callPackage + ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq + , directory, ghc-prim, iterable, mmap, mtl, Octree, parallel + , QuickCheck, tagged, template-haskell, text, unordered-containers + , vector, zlib + }: + mkDerivation { + pname = "hPDB"; + version = "1.2.0.9"; + sha256 = "444b884c1e9af07ae75784d13c83736bcd94b7d766e2ec11d696e8adef8f8ecd"; + libraryHaskellDepends = [ + AC-Vector base bytestring containers deepseq directory ghc-prim + iterable mmap mtl Octree parallel QuickCheck tagged + template-haskell text unordered-containers vector zlib + ]; + homepage = "https://github.com/BioHaskell/hPDB"; + description = "Protein Databank file format library"; + license = stdenv.lib.licenses.bsd3; }) {}; "hPDB-examples_1_1_2" = callPackage @@ -102335,7 +102694,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hPDB-examples" = callPackage + "hPDB-examples_1_2_0_2" = callPackage ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq , directory, ghc-prim, GLUT, hPDB, IfElse, iterable, mtl, Octree , OpenGL, process, QuickCheck, template-haskell, text, text-format @@ -102360,6 +102719,33 @@ self: { homepage = "https://github.com/BioHaskell/hPDB-examples"; description = "Examples for hPDB library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hPDB-examples" = callPackage + ({ mkDerivation, AC-Vector, base, bytestring, containers, deepseq + , directory, ghc-prim, GLUT, hPDB, IfElse, iterable, mtl, Octree + , OpenGL, process, QuickCheck, template-haskell, text, text-format + , time, vector + }: + mkDerivation { + pname = "hPDB-examples"; + version = "1.2.0.7"; + sha256 = "3330e001829767acfa862897c4df85d5d349e6fd2630f7d7ac7e6f5d4fde981b"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + AC-Vector base bytestring containers deepseq directory ghc-prim + GLUT hPDB iterable mtl Octree OpenGL QuickCheck template-haskell + text text-format vector + ]; + testHaskellDepends = [ + AC-Vector base bytestring containers deepseq directory ghc-prim + hPDB IfElse iterable mtl process template-haskell text time vector + ]; + homepage = "https://github.com/BioHaskell/hPDB-examples"; + description = "Examples for hPDB library"; + license = stdenv.lib.licenses.bsd3; }) {}; "hPushover" = callPackage @@ -103858,8 +104244,8 @@ self: { }: mkDerivation { pname = "hailgun"; - version = "0.4.0.4"; - sha256 = "ccd6088dbd1d5a8562364ad643db49059f498db621b288f891d5197d338d1859"; + version = "0.4.0.5"; + sha256 = "b314252ae3c7346e67b1e17b719fc9eefc743eb14f6be5ea095ba3f4fd773e16"; libraryHaskellDepends = [ aeson base bytestring email-validate exceptions filepath http-client http-client-tls http-types tagsoup text time @@ -104755,8 +105141,8 @@ self: { }: mkDerivation { pname = "hakyll-filestore"; - version = "0.1.0"; - sha256 = "3e7c848197a12c83af870000a78ffa89e77eb55b13f957c2a4cc8491d9351b60"; + version = "0.1.1"; + sha256 = "749551476fc7bbcf10309e6fea7df6660ed44cf1fd0665230882753301cce307"; libraryHaskellDepends = [ base filestore hakyll time time-locale-compat ]; @@ -106125,7 +106511,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-server" = callPackage + "happstack-server_7_4_6_1" = callPackage ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring , containers, directory, exceptions, extensible-exceptions , filepath, hslogger, html, HUnit, monad-control, mtl, network @@ -106155,7 +106541,37 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-server-tls" = callPackage + "happstack-server" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring + , containers, directory, exceptions, extensible-exceptions + , filepath, hslogger, html, HUnit, monad-control, mtl, network + , network-uri, old-locale, parsec, process, sendfile, syb + , system-filepath, template-haskell, text, threads, time + , time-compat, transformers, transformers-base, transformers-compat + , unix, utf8-string, xhtml, zlib + }: + mkDerivation { + pname = "happstack-server"; + version = "7.4.6.2"; + sha256 = "0725900491022e8073d0d61408c2f1d170dbeb7c51bc52e1716c9bf829763b09"; + libraryHaskellDepends = [ + base base64-bytestring blaze-html bytestring containers directory + exceptions extensible-exceptions filepath hslogger html + monad-control mtl network network-uri old-locale parsec process + sendfile syb system-filepath template-haskell text threads time + time-compat transformers transformers-base transformers-compat unix + utf8-string xhtml zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit parsec zlib + ]; + homepage = "http://happstack.com"; + description = "Web related tools and services"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "happstack-server-tls_7_1_6_1" = callPackage ({ mkDerivation, base, bytestring, extensible-exceptions , happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile , time, unix @@ -106176,6 +106592,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; + "happstack-server-tls" = callPackage + ({ mkDerivation, base, bytestring, extensible-exceptions + , happstack-server, hslogger, HsOpenSSL, network, openssl, sendfile + , time, unix + }: + mkDerivation { + pname = "happstack-server-tls"; + version = "7.1.6.2"; + sha256 = "bc3e5a908871f1a242e099ff401e45284dcec07e8842e033d5f457ac7bd2f0d5"; + libraryHaskellDepends = [ + base bytestring extensible-exceptions happstack-server hslogger + HsOpenSSL network sendfile time unix + ]; + librarySystemDepends = [ openssl ]; + homepage = "http://www.happstack.com/"; + description = "extend happstack-server with https:// support (TLS/SSL)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) openssl;}; + "happstack-server-tls-cryptonite" = callPackage ({ mkDerivation, base, bytestring, cryptonite, data-default-class , extensible-exceptions, happstack-server, hslogger, network @@ -107695,7 +108131,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "haskell-gi" = callPackage + "haskell-gi_0_17_3" = callPackage ({ mkDerivation, base, bytestring, Cabal, containers, directory , file-embed, filepath, glib, gobjectIntrospection, haskell-gi-base , mtl, pretty-show, process, safe, text, transformers, xdg-basedir @@ -107719,6 +108155,33 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Generate Haskell bindings for GObject Introspection capable libraries"; license = stdenv.lib.licenses.lgpl21; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; + + "haskell-gi" = callPackage + ({ mkDerivation, base, bytestring, Cabal, containers, directory + , file-embed, filepath, glib, gobjectIntrospection, haskell-gi-base + , mtl, pretty-show, process, safe, text, transformers, xdg-basedir + , xml-conduit + }: + mkDerivation { + pname = "haskell-gi"; + version = "0.17.4"; + sha256 = "e3c306c877f3b28e66f49b1187671233d4a3e15d0d0ed7931213624b67fb733b"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring Cabal containers directory file-embed filepath + haskell-gi-base mtl pretty-show process safe text transformers + xdg-basedir xml-conduit + ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; + executableHaskellDepends = [ + base containers directory filepath haskell-gi-base pretty-show text + ]; + homepage = "https://github.com/haskell-gi/haskell-gi"; + description = "Generate Haskell bindings for GObject Introspection capable libraries"; + license = stdenv.lib.licenses.lgpl21; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; @@ -108244,18 +108707,18 @@ self: { "haskell-player" = callPackage ({ mkDerivation, base, brick, bytestring, data-default, directory - , filepath, microlens, process, text, transformers, vector, vty - , xml-conduit + , filepath, microlens, process, text, transformers, unix, vector + , vty, xml-conduit }: mkDerivation { pname = "haskell-player"; - version = "0.1.3.1"; - sha256 = "f818006cf015d99e8fa9b255063ff848312db577a93d868eb0a83f42e5e2d3f7"; + version = "0.1.3.3"; + sha256 = "e28e264e3ca75dbc254aa57b96cdeb3dee163ced9f259e22c21e2a20db44e5c4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base brick bytestring data-default directory filepath microlens - process text transformers vector vty xml-conduit + process text transformers unix vector vty xml-conduit ]; executableHaskellDepends = [ base ]; testHaskellDepends = [ base ]; @@ -109474,14 +109937,15 @@ self: { ({ mkDerivation, aeson, base, base16-bytestring, binary, byteable , bytestring, conduit, containers, cryptohash, deepseq, either , entropy, HUnit, largeword, mtl, murmur3, network, pbkdf - , QuickCheck, secp256k1, split, string-conversions, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time + , QuickCheck, safe, scientific, secp256k1, split + , string-conversions, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time, unordered-containers , vector }: mkDerivation { pname = "haskoin-core"; - version = "0.2.0"; - sha256 = "d714fc5b3b282e5d3d0237c6223933724324e21be1baef11fe7fb28dcb7affb8"; + version = "0.3.0"; + sha256 = "eda63e201e25598815af84a5766a3f2aff7460af9aedc38f2e03a240ad0fce1d"; libraryHaskellDepends = [ aeson base base16-bytestring binary byteable bytestring conduit containers cryptohash deepseq either entropy largeword mtl murmur3 @@ -109490,10 +109954,10 @@ self: { ]; testHaskellDepends = [ aeson base binary bytestring containers HUnit largeword mtl - QuickCheck secp256k1 split string-conversions test-framework - test-framework-hunit test-framework-quickcheck2 text + QuickCheck safe scientific secp256k1 split string-conversions + test-framework test-framework-hunit test-framework-quickcheck2 text + unordered-containers vector ]; - jailbreak = true; homepage = "http://github.com/haskoin/haskoin"; description = "Implementation of the core Bitcoin protocol features"; license = stdenv.lib.licenses.publicDomain; @@ -109528,26 +109992,30 @@ self: { "haskoin-node" = callPackage ({ mkDerivation, aeson, async, base, binary, bytestring , concurrent-extra, conduit, conduit-extra, containers - , data-default, deepseq, either, exceptions, haskoin-core, HUnit - , leveldb-haskell, lifted-async, lifted-base, monad-control - , monad-logger, mtl, network, QuickCheck, random, stm, stm-chans - , stm-conduit, string-conversions, test-framework - , test-framework-hunit, test-framework-quickcheck2, text, time + , data-default, deepseq, either, esqueleto, exceptions + , haskoin-core, HUnit, largeword, lifted-async, lifted-base + , monad-control, monad-logger, mtl, network, persistent + , persistent-sqlite, persistent-template, QuickCheck, random + , resource-pool, resourcet, stm, stm-chans, stm-conduit + , string-conversions, test-framework, test-framework-hunit + , test-framework-quickcheck2, text, time }: mkDerivation { pname = "haskoin-node"; - version = "0.2.0"; - sha256 = "2fd8db2a4571d6fab610d3902dee91e7bae15085e49e4167f0ad4bd823ddb0d2"; + version = "0.3.0"; + sha256 = "b44e3ad573fc68a40c585748892d6e4bf6207f1100d461ff8cab52d802a8c791"; libraryHaskellDepends = [ aeson async base binary bytestring concurrent-extra conduit - conduit-extra containers data-default deepseq either exceptions - haskoin-core leveldb-haskell lifted-async lifted-base monad-control - monad-logger mtl network random stm stm-chans stm-conduit + conduit-extra containers data-default deepseq either esqueleto + exceptions haskoin-core largeword lifted-async lifted-base + monad-control monad-logger mtl network persistent + persistent-template random resource-pool stm stm-chans stm-conduit string-conversions text time ]; testHaskellDepends = [ - base HUnit QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 + base haskoin-core HUnit monad-logger mtl persistent + persistent-sqlite QuickCheck resourcet test-framework + test-framework-hunit test-framework-quickcheck2 ]; jailbreak = true; homepage = "http://github.com/haskoin/haskoin"; @@ -109628,12 +110096,12 @@ self: { }) {}; "haskoin-wallet" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, conduit - , containers, daemons, data-default, deepseq, directory, esqueleto - , exceptions, file-embed, filepath, haskoin-core, haskoin-node - , HUnit, leveldb-haskell, lifted-async, lifted-base, monad-control - , monad-logger, mtl, persistent, persistent-sqlite - , persistent-template, QuickCheck, resourcet, SafeSemaphore, split + ({ mkDerivation, aeson, aeson-pretty, base, binary, bytestring + , conduit, containers, daemons, data-default, deepseq, directory + , esqueleto, exceptions, file-embed, filepath, haskeline + , haskoin-core, haskoin-node, HUnit, lifted-async, lifted-base + , monad-control, monad-logger, mtl, persistent, persistent-sqlite + , persistent-template, QuickCheck, resourcet, semigroups, split , stm, stm-chans, stm-conduit, string-conversions, test-framework , test-framework-hunit, test-framework-quickcheck2, text, time , transformers-base, unix, unordered-containers, yaml @@ -109641,16 +110109,16 @@ self: { }: mkDerivation { pname = "haskoin-wallet"; - version = "0.2.0"; - sha256 = "96cf7a0e3310cf1403417287ef4a101f2cb4dbf284b546ebf5b9d3dc426019b9"; + version = "0.3.0"; + sha256 = "9ef76ec2515a02ec65d5c89d957c596b4b5766b62c56a0ac4683606ab79917f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - aeson aeson-pretty base bytestring conduit containers daemons - data-default deepseq directory esqueleto exceptions file-embed - filepath haskoin-core haskoin-node leveldb-haskell lifted-async - lifted-base monad-control monad-logger mtl persistent - persistent-sqlite persistent-template resourcet SafeSemaphore split + aeson aeson-pretty base binary bytestring conduit containers + daemons data-default deepseq directory esqueleto exceptions + file-embed filepath haskeline haskoin-core haskoin-node + lifted-async lifted-base monad-control monad-logger mtl persistent + persistent-sqlite persistent-template resourcet semigroups split stm stm-chans stm-conduit string-conversions text time transformers-base unix unordered-containers yaml zeromq4-haskell ]; @@ -109658,8 +110126,9 @@ self: { testHaskellDepends = [ aeson base bytestring containers directory haskoin-core haskoin-node HUnit monad-logger mtl persistent persistent-sqlite - QuickCheck resourcet test-framework test-framework-hunit - test-framework-quickcheck2 text + QuickCheck resourcet stm stm-chans string-conversions + test-framework test-framework-hunit test-framework-quickcheck2 text + unordered-containers ]; jailbreak = true; homepage = "http://github.com/haskoin/haskoin"; @@ -111638,8 +112107,8 @@ self: { pname = "hblas"; version = "0.3.2.1"; sha256 = "3e159cc8c98735861edad47cd4da11bd5862bb629601a9bc441960c921ae8215"; - revision = "1"; - editedCabalFile = "cf7946aba77f6f23a665fe06859a6ba306b513f5849f9828ed171e84bad4a43e"; + revision = "2"; + editedCabalFile = "48b2f43d8ac30594dc0fbcadc4f4a7a478394da7f223bc909aa18bdcadb99d09"; libraryHaskellDepends = [ base primitive storable-complex vector ]; librarySystemDepends = [ blas liblapack ]; testHaskellDepends = [ base HUnit tasty tasty-hunit vector ]; @@ -114493,6 +114962,7 @@ self: { executableHaskellDepends = [ base directory filepath hylolib mtl random ]; + jailbreak = true; homepage = "http://www.glyc.dc.uba.ar/intohylo/hgen.php"; description = "Random generation of modal and hybrid logic formulas"; license = "GPL"; @@ -115793,7 +116263,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hint" = callPackage + "hint_0_5_2" = callPackage ({ mkDerivation, base, directory, exceptions, extensible-exceptions , filepath, ghc, ghc-paths, HUnit, mtl, random, unix }: @@ -115815,6 +116285,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "hint" = callPackage + ({ mkDerivation, base, directory, exceptions, extensible-exceptions + , filepath, ghc, ghc-paths, HUnit, mtl, random, unix + }: + mkDerivation { + pname = "hint"; + version = "0.6.0"; + sha256 = "dc3d3a0ede8e03265bc93456d10cea93fbc4fe8e445e80b7abea71a484421ab9"; + libraryHaskellDepends = [ + base directory exceptions filepath ghc ghc-paths mtl random unix + ]; + testHaskellDepends = [ + base directory exceptions extensible-exceptions filepath HUnit + ]; + homepage = "https://github.com/mvdan/hint"; + description = "Runtime Haskell interpreter (GHC API wrapper)"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hint-server" = callPackage ({ mkDerivation, base, eprocess, exceptions, hint, monad-loops, mtl }: @@ -119340,8 +119830,8 @@ self: { }: mkDerivation { pname = "homplexity"; - version = "0.4.3.2"; - sha256 = "b00c281e2598ec8a1fbf5fadac5b689a690af17c4bfe7329694281999ae9d554"; + version = "0.4.3.3"; + sha256 = "a536f540770c741a12387df2e6f68042f9644311e9077dbdd7d59a4551753609"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -120933,8 +121423,8 @@ self: { }: mkDerivation { pname = "hpath"; - version = "0.7.3"; - sha256 = "0ad9168190beae49910b056da29b9d3b4ca15378219ee30b941d956d47fe8dbb"; + version = "0.8.0"; + sha256 = "83f5077527f698c1cae9152d33710a0b6c8bee0227c81078a992b750fefbaba7"; libraryHaskellDepends = [ base bytestring deepseq exceptions hspec simple-sendfile unix unix-bytestring utf8-string word8 @@ -120944,7 +121434,7 @@ self: { unix-bytestring utf8-string ]; description = "Support for well-typed paths"; - license = stdenv.lib.licenses.gpl2; + license = stdenv.lib.licenses.bsd3; }) {}; "hpc_0_6_0_3" = callPackage @@ -126388,7 +126878,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hsx2hs" = callPackage + "hsx2hs_0_13_4" = callPackage ({ mkDerivation, base, bytestring, haskell-src-exts , haskell-src-meta, mtl, template-haskell, utf8-string }: @@ -126406,6 +126896,26 @@ self: { homepage = "https://github.com/seereason/hsx2hs"; description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsx2hs" = callPackage + ({ mkDerivation, base, bytestring, haskell-src-exts + , haskell-src-meta, mtl, template-haskell, utf8-string + }: + mkDerivation { + pname = "hsx2hs"; + version = "0.13.5"; + sha256 = "0dbaa29287ef82bfbe573f399a635aa109fe675e4dd91f3ee8c2cefd5593ed6e"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring haskell-src-exts haskell-src-meta mtl + template-haskell utf8-string + ]; + homepage = "https://github.com/seereason/hsx2hs"; + description = "HSX (Haskell Source with XML) allows literal XML syntax in Haskell source code"; + license = stdenv.lib.licenses.bsd3; }) {}; "hsyscall" = callPackage @@ -126435,12 +126945,12 @@ self: { maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "hsyslog_3" = callPackage + "hsyslog_4" = callPackage ({ mkDerivation, base, bytestring, QuickCheck }: mkDerivation { pname = "hsyslog"; - version = "3"; - sha256 = "05f4e76d2ce32fbe97a703963a7d1dc1809835c3d8ad8c7d3a1d580a6a34f060"; + version = "4"; + sha256 = "33d5fca76dbf8f1675258e81af5e53ee7c659cfee9cc78ea202c78ba05003a49"; libraryHaskellDepends = [ base bytestring ]; testHaskellDepends = [ base bytestring QuickCheck ]; homepage = "http://github.com/peti/hsyslog"; @@ -128989,7 +129499,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "http-types" = callPackage + "http-types_0_9" = callPackage ({ mkDerivation, array, base, blaze-builder, bytestring , case-insensitive, doctest, hspec, QuickCheck , quickcheck-instances, text @@ -129008,6 +129518,28 @@ self: { homepage = "https://github.com/aristidb/http-types"; description = "Generic HTTP types for Haskell (for both client and server code)"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "http-types" = callPackage + ({ mkDerivation, array, base, blaze-builder, bytestring + , case-insensitive, doctest, hspec, QuickCheck + , quickcheck-instances, text + }: + mkDerivation { + pname = "http-types"; + version = "0.9.1"; + sha256 = "7bed648cdc1c69e76bf039763dbe1074b55fd2704911dd0cb6b7dfebf1b6f550"; + libraryHaskellDepends = [ + array base blaze-builder bytestring case-insensitive text + ]; + testHaskellDepends = [ + base blaze-builder bytestring doctest hspec QuickCheck + quickcheck-instances text + ]; + homepage = "https://github.com/aristidb/http-types"; + description = "Generic HTTP types for Haskell (for both client and server code)"; + license = stdenv.lib.licenses.bsd3; }) {}; "http-wget" = callPackage @@ -131145,19 +131677,19 @@ self: { "hylogen" = callPackage ({ mkDerivation, aeson, base, bytestring, data-reify, filepath - , fsnotify, http-types, process, text, vector-space, wai, warp - , websockets + , fsnotify, hint, http-types, process, text, vector-space, wai + , warp, websockets }: mkDerivation { pname = "hylogen"; - version = "0.1.2.3"; - sha256 = "39666d39f97baa9ebd7836cc59522548a235f95f2ccfba95a72fb7ada07bd3b0"; + version = "0.1.3.0"; + sha256 = "ef7859d0f9195a63f770e7c961f4f4ae6bb1e2706da6e84e0b54e20e5d133ba5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; executableHaskellDepends = [ - aeson base bytestring filepath fsnotify http-types process text wai - warp websockets + aeson base bytestring filepath fsnotify hint http-types process + text wai warp websockets ]; jailbreak = true; homepage = "https://github.com/sleexyz/hylogen"; @@ -131167,17 +131699,16 @@ self: { }) {}; "hylolib" = callPackage - ({ mkDerivation, array, base, containers, mtl, pretty, QuickCheck - , random, uniplate + ({ mkDerivation, array, base, containers, mtl, pretty, random + , uniplate }: mkDerivation { pname = "hylolib"; - version = "1.4.0"; - sha256 = "426ee0b316bcb38569691c5299cb6ab3fbd27451ba8e8f8f7c2b8b6c2e451398"; + version = "1.5.1"; + sha256 = "890f96a9217842911d4a3ba5a9600810be72947e25f24b9e29ca8e3b7b306882"; libraryHaskellDepends = [ - array base containers mtl pretty QuickCheck random uniplate + array base containers mtl pretty random uniplate ]; - jailbreak = true; description = "Tools for hybrid logics related programs"; license = "GPL"; hydraPlatforms = [ "x86_64-darwin" ]; @@ -131192,6 +131723,7 @@ self: { isLibrary = false; isExecutable = true; executableHaskellDepends = [ base hylolib mtl ]; + jailbreak = true; homepage = "http://www.glyc.dc.uba.ar/intohylo/hylotab.php"; description = "Tableau based theorem prover for hybrid logics"; license = "GPL"; @@ -131209,6 +131741,7 @@ self: { executableHaskellDepends = [ base containers hylolib mtl uniplate ]; + jailbreak = true; description = "Very small programs for hybrid logics"; license = "GPL"; hydraPlatforms = [ "x86_64-darwin" ]; @@ -136454,15 +136987,14 @@ self: { }: mkDerivation { pname = "ircbot"; - version = "0.6.4"; - sha256 = "ad3a34a57abe03f2b56f459a92e40cd3500cc605545eeab24bd16604eeac9c08"; + version = "0.6.5"; + sha256 = "eaeb733a499645645dc146f9e8b39766df2bae3924dcf00e98132dd2410e5ead"; libraryHaskellDepends = [ base bytestring containers directory filepath irc mtl network parsec random SafeSemaphore stm time unix ]; - jailbreak = true; - homepage = "http://hub.darcs.net/stepcut/ircbot"; - description = "A library for writing irc bots"; + homepage = "https://github.com/stepcut/ircbot"; + description = "A library for writing IRC bots"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -139807,6 +140339,7 @@ self: { scientific semigroups tasty tasty-hunit tasty-quickcheck tasty-th text time unordered-containers vector ]; + doCheck = false; homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; description = "JSON Web Token (JWT) decoding and encoding"; license = stdenv.lib.licenses.mit; @@ -144381,10 +144914,9 @@ self: { ({ mkDerivation, base, parsec, wl-pprint }: mkDerivation { pname = "language-webidl"; - version = "0.1.1.0"; - sha256 = "2318258e89b6301ae23fde9e4301f40e354f7cd4a8953c55de3291259f2cde19"; + version = "0.1.1.1"; + sha256 = "b2d096f8f44ee131e7bb06df246fa163b5da6a6eac0a3e385642fb14d5c19d18"; libraryHaskellDepends = [ base parsec wl-pprint ]; - jailbreak = true; description = "Parser and Pretty Printer for WebIDL"; license = stdenv.lib.licenses.mit; }) {}; @@ -145083,8 +145615,8 @@ self: { }: mkDerivation { pname = "learn-physics"; - version = "0.6.0.0"; - sha256 = "6403b807172ceebb2081a580489e4e9a5d7a451f07f0228863db7ac46fdec8de"; + version = "0.6.0.1"; + sha256 = "c45787f96c1645a75063694d2fa71baf9a30c5568026ea7c54d5690fd25bc107"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -145494,14 +146026,13 @@ self: { pname = "lens-action"; version = "0.2.0.2"; sha256 = "e26c70b2de68a7cfbce97bcdabdcdfb45b2c50708207a14f8dd24c3e29c6d371"; - revision = "1"; - editedCabalFile = "a2f782186ca73d315a68a1e8430ae56ef4fd468237ab3d11b86a95efc41b18ae"; + revision = "2"; + editedCabalFile = "f2f18c678cce0e700a1cb84a093a4643df46298adc5eb2ab6210f6fdcd7e0bfc"; libraryHaskellDepends = [ base comonad contravariant lens mtl profunctors semigroupoids semigroups transformers ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "http://github.com/ekmett/lens-action/"; description = "Monadic Getters and Folds"; license = stdenv.lib.licenses.bsd3; @@ -147709,6 +148240,7 @@ self: { base binary bytestring directory doctest filepath HUnit lens simple-reflect test-framework test-framework-hunit ]; + doCheck = false; homepage = "http://github.com/ekmett/linear/"; description = "Linear Algebra"; license = stdenv.lib.licenses.bsd3; @@ -148432,7 +148964,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "list-fusion-probe" = callPackage + "list-fusion-probe_0_1_0_5" = callPackage ({ mkDerivation, base, tasty, tasty-hunit }: mkDerivation { pname = "list-fusion-probe"; @@ -148443,6 +148975,19 @@ self: { jailbreak = true; description = "testing list fusion for success"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "list-fusion-probe" = callPackage + ({ mkDerivation, base, tasty, tasty-hunit }: + mkDerivation { + pname = "list-fusion-probe"; + version = "0.1.0.6"; + sha256 = "7682145460eb6a18406743e74710acbefda2b836e82f73a8d46aab48d5baa6b1"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ base tasty tasty-hunit ]; + description = "testing list fusion for success"; + license = stdenv.lib.licenses.bsd3; }) {}; "list-grouping" = callPackage @@ -151279,16 +151824,13 @@ self: { }: mkDerivation { pname = "lzma"; - version = "0.0.0.1"; - sha256 = "576583fa5ac2110ca62f24dea62a1bb6effeba51c31b9fe06862dcfa8f7a38ac"; - revision = "1"; - editedCabalFile = "8ceb5cde6e8f9769e12c1fdb1a5f5c25f1d1aaa045741c991c29659dc6c74fa1"; + version = "0.0.0.2"; + sha256 = "09b45eb9fd47913c2cd2aa8e1e9544df21b96f24ea21615fde3b681ecde26b9a"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ lzma ]; testHaskellDepends = [ base bytestring HUnit QuickCheck tasty tasty-hunit tasty-quickcheck ]; - jailbreak = true; homepage = "https://github.com/hvr/lzma"; description = "LZMA/XZ compression and decompression"; license = stdenv.lib.licenses.bsd3; @@ -151594,15 +152136,14 @@ self: { }: mkDerivation { pname = "machines"; - version = "0.6"; - sha256 = "69a54f22a9788e4a7ef2691c49626cd1c22465da2b9f903839d7b20c41eb11f6"; + version = "0.6.1"; + sha256 = "a58b84d51a62d3944ac4706ba9163e5b34e27c4b241ab7caa4328b2ad189dc56"; libraryHaskellDepends = [ adjunctions base comonad containers distributive free mtl pointed profunctors semigroupoids semigroups transformers transformers-compat void ]; testHaskellDepends = [ base directory doctest filepath ]; - jailbreak = true; homepage = "http://github.com/ekmett/machines/"; description = "Networked stream transducers"; license = stdenv.lib.licenses.bsd3; @@ -161472,7 +162013,6 @@ self: { editedCabalFile = "5c60cf960eb6ea4f9d82741534d95c34b241c681e8ca8647cd5e0495f30d8bdf"; libraryHaskellDepends = [ base containers ]; testHaskellDepends = [ base doctest Glob ]; - doCheck = false; description = "The Data.MultiSet container type"; license = stdenv.lib.licenses.bsd3; }) {}; @@ -162772,8 +163312,11 @@ self: { pname = "nano-md5"; version = "0.1.2"; sha256 = "73a93b3b0f1542f346080049b152288751f214eb38d3014f157b026e8e1faba1"; + revision = "1"; + editedCabalFile = "8ab99bab8912dff1faaeb2b7acc7a15b705b135c24f7262147be56331d707a24"; libraryHaskellDepends = [ base bytestring ]; librarySystemDepends = [ openssl ]; + jailbreak = true; homepage = "http://code.haskell.org/~dons/code/nano-md5"; description = "Efficient, ByteString bindings to OpenSSL"; license = stdenv.lib.licenses.bsd3; @@ -165630,6 +166173,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "neural" = callPackage + ({ mkDerivation, ad, array, attoparsec, base, deepseq, directory + , doctest, filepath, ghc-typelits-natnormalise, hspec, lens + , MonadRandom, mtl, parallel, pipes, profunctors, STMonadTrans + , text, transformers, typelits-witnesses, vector + }: + mkDerivation { + pname = "neural"; + version = "0.1.0.0"; + sha256 = "388d7d83a4afa3b2e9a21e25680ffedbddf31432df534ed50052a6e9829f87aa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + ad array base deepseq directory filepath ghc-typelits-natnormalise + hspec lens MonadRandom mtl parallel pipes profunctors STMonadTrans + text transformers typelits-witnesses vector + ]; + executableHaskellDepends = [ attoparsec base MonadRandom text ]; + testHaskellDepends = [ base doctest hspec MonadRandom ]; + jailbreak = true; + homepage = "http://github.com/brunjlar/neural"; + description = "Neural Networks in native Haskell"; + license = stdenv.lib.licenses.mit; + }) {}; + "newports" = callPackage ({ mkDerivation, base, directory, old-time }: mkDerivation { @@ -166875,6 +167443,7 @@ self: { ]; testHaskellDepends = [ base directory doctest filepath ]; jailbreak = true; + doCheck = false; homepage = "https://github.com/nikita-volkov/numeric-qq"; description = "Quasi-quoters for numbers of different bases"; license = stdenv.lib.licenses.mit; @@ -167355,8 +167924,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.6.0"; - sha256 = "2cd73f5336d0f32001e42e386446f197c7c3b6deb7cf407520b3c5dead8a6ff8"; + version = "0.6.2"; + sha256 = "74d85a69dbf9947e2a4bec81bde8dc73b3d3cfe4d9991047e2f15b4d6a5e43e8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -170871,7 +171440,7 @@ self: { maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; - "pandoc" = callPackage + "pandoc_1_17_0_3" = callPackage ({ mkDerivation, aeson, ansi-terminal, array, base , base64-bytestring, binary, blaze-html, blaze-markup, bytestring , cmark, containers, data-default, deepseq, Diff, directory @@ -170917,6 +171486,54 @@ self: { homepage = "http://pandoc.org"; description = "Conversion between markup formats"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + maintainers = with stdenv.lib.maintainers; [ peti ]; + }) {}; + + "pandoc" = 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.1"; + sha256 = "5978baaf664ce254b508108a6be9d5a11a2c2ac61462ae85286be2ecdb010c86"; + 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"; maintainers = with stdenv.lib.maintainers; [ peti ]; }) {}; @@ -171153,7 +171770,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "pandoc-citeproc" = callPackage + "pandoc-citeproc_0_9_1_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 @@ -171187,6 +171804,40 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pandoc-citeproc" = callPackage + ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring + , containers, data-default, directory, filepath, hs-bibutils, mtl + , old-locale, pandoc, pandoc-types, parsec, process, rfc5051 + , setenv, split, syb, tagsoup, temporary, text, time + , unordered-containers, vector, xml-conduit, yaml + }: + mkDerivation { + pname = "pandoc-citeproc"; + version = "0.10"; + sha256 = "2465117b5e922d8c93f6ebf3b99d76c90d31573d01bd9935f5a1cc7be1cdb702"; + 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 containers directory + filepath pandoc pandoc-types process syb temporary text vector yaml + ]; + testHaskellDepends = [ + aeson base bytestring directory filepath pandoc pandoc-types + process temporary text yaml + ]; + 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 }: @@ -176576,8 +177227,8 @@ self: { }: mkDerivation { pname = "phoityne-vscode"; - version = "0.0.4.0"; - sha256 = "2a5bdf5cac4e6a168ba37ec0ccc3982c038d88e305c532df4c1b254dd8749794"; + version = "0.0.5.0"; + sha256 = "f3715acd5d427eb249b1df2c806b3dd6d5ddbc3124dc82284035df671e1d8cdf"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -178062,31 +178713,49 @@ self: { }) {}; "pipes-key-value-csv" = callPackage - ({ mkDerivation, base, containers, contravariant + ({ mkDerivation, base, bifunctors, containers, contravariant , data-default-class, lens, mtl, pipes, pipes-bytestring , pipes-group, pipes-parse, pipes-safe, pipes-text, QuickCheck - , reflection, text, transformers, validation, vinyl, vinyl-utils + , reflection, semigroupoids, text, transformers, vinyl, vinyl-utils }: mkDerivation { pname = "pipes-key-value-csv"; - version = "0.2.0.0"; - sha256 = "c240c100bec682c61312c4bf4af20beefd167a88a75fe9fb8bb2410350204a04"; + version = "0.4.0.0"; + sha256 = "1792858c4359a6c0ed9c685d422005c285853ac8382cb14390c2d00829ec427e"; libraryHaskellDepends = [ - base containers data-default-class lens mtl pipes pipes-bytestring - pipes-group pipes-parse pipes-safe pipes-text reflection text vinyl - vinyl-utils + base bifunctors containers data-default-class lens mtl pipes + pipes-bytestring pipes-group pipes-parse pipes-safe pipes-text + reflection semigroupoids text vinyl vinyl-utils ]; testHaskellDepends = [ base contravariant data-default-class lens pipes pipes-text - QuickCheck reflection text transformers validation vinyl - vinyl-utils + QuickCheck reflection text transformers vinyl vinyl-utils ]; - jailbreak = true; homepage = "https://github.com/marcinmrotek/key-value-csv"; description = "Streaming processing of CSV files preceded by key-value pairs"; license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-lzma" = callPackage + ({ mkDerivation, base, bytestring, lzma, pipes, pipes-bytestring + , QuickCheck + }: + mkDerivation { + pname = "pipes-lzma"; + version = "0.1.1.0"; + sha256 = "8d5af5806d20ac9b8e0b416a0c36cb6b8039ac55c0cb2831252a8f6c75da01f2"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base bytestring lzma pipes ]; + executableHaskellDepends = [ base pipes pipes-bytestring ]; + testHaskellDepends = [ + base bytestring pipes pipes-bytestring QuickCheck + ]; + homepage = "http://github.com/bgamari/pipes-lzma"; + description = "LZMA compressors and decompressors for the Pipes package"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipes-mongodb" = callPackage ({ mkDerivation, base, monad-control, mongoDB, pipes, text }: mkDerivation { @@ -178287,6 +178956,25 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "pipes-s3" = callPackage + ({ mkDerivation, aws, base, bytestring, http-client + , http-client-tls, pipes, pipes-bytestring, pipes-safe, resourcet + , text, transformers + }: + mkDerivation { + pname = "pipes-s3"; + version = "0.1.0.0"; + sha256 = "a41869e5fa135c8abb3749474cb4c7e9fd572de201109de79176a4c09e33d813"; + libraryHaskellDepends = [ + aws base bytestring http-client http-client-tls pipes + pipes-bytestring pipes-safe resourcet text transformers + ]; + jailbreak = true; + homepage = "http://github.com/bgamari/pipes-s3"; + description = "A simple interface for streaming data to and from Amazon S3"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "pipes-safe_2_2_2" = callPackage ({ mkDerivation, base, containers, exceptions, pipes, transformers }: @@ -179910,6 +180598,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pomodoro" = callPackage + ({ mkDerivation, base, bytestring, cereal, directory, filepath + , heredoc, libnotify, network, process, time, unix, wx, wxcore + }: + mkDerivation { + pname = "pomodoro"; + version = "0.1.0.1"; + sha256 = "d85a5b11571ba77b0a1220e8a20372717157967ec62dc6b88a1d40e02b610478"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring cereal directory filepath heredoc libnotify network + process time unix wx wxcore + ]; + jailbreak = true; + description = "pomodoro timer"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "ponder" = callPackage ({ mkDerivation, base, mtl }: mkDerivation { @@ -181071,6 +181778,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "postgresql-simple-bind" = callPackage + ({ mkDerivation, attoparsec, base, bytestring, case-conversion + , heredoc, HUnit, postgresql-simple, template-haskell, text, time + }: + mkDerivation { + pname = "postgresql-simple-bind"; + version = "0.1.0.0"; + sha256 = "179b91ff7bc98ba3c818a8b8d181c20d607c198344afc3916abd7cf8fb598371"; + libraryHaskellDepends = [ + attoparsec base bytestring heredoc postgresql-simple + template-haskell text time + ]; + testHaskellDepends = [ + attoparsec base bytestring case-conversion HUnit postgresql-simple + text + ]; + jailbreak = true; + description = "A FFI-like bindings for PostgreSQL stored functions"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "postgresql-simple-migration" = callPackage ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash , directory, hspec, postgresql-simple, text, time @@ -182021,12 +182749,12 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "pretty_1_1_3_3" = callPackage + "pretty_1_1_3_4" = callPackage ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck }: mkDerivation { pname = "pretty"; - version = "1.1.3.3"; - sha256 = "3b632679f51cc709ec96e51c6a03bbc1ded8dbc5c8ea3fda75501cf7962f9798"; + version = "1.1.3.4"; + sha256 = "a7a4af750533c563d2d422b8424849c11a834fefd1172a1b2ca0cbd4763be25d"; libraryHaskellDepends = [ base deepseq ghc-prim ]; testHaskellDepends = [ base deepseq ghc-prim QuickCheck ]; homepage = "http://github.com/haskell/pretty"; @@ -184644,6 +185372,18 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "pulse" = callPackage + ({ mkDerivation, async, base, containers, time }: + mkDerivation { + pname = "pulse"; + version = "0.1.0.0"; + sha256 = "cde4b4e00f4afdc36916ccb8319756e4743c31086fedcad4b9039e506122f85a"; + libraryHaskellDepends = [ async base containers time ]; + homepage = "https://github.com/agrafix/pulse#readme"; + description = "Synchronize actions to a time pulse"; + license = stdenv.lib.licenses.mit; + }) {}; + "pulse-simple" = callPackage ({ mkDerivation, base, bytestring, libpulseaudio }: mkDerivation { @@ -185170,6 +185910,7 @@ self: { HUnit mtl optparse-applicative parsec process silently stm text time transformers transformers-compat utf8-string vector ]; + doCheck = false; homepage = "http://www.purescript.org/"; description = "PureScript Programming Language Compiler"; license = stdenv.lib.licenses.mit; @@ -185181,8 +185922,8 @@ self: { }: mkDerivation { pname = "purescript-bridge"; - version = "0.4.0.0"; - sha256 = "f58f12eaeab88ab31d7e16de761cfdf21e3ea12acc99c899528242d404538600"; + version = "0.6.0.0"; + sha256 = "21d7653da75b15adf8d0f253ee4cad5fbc2edd2125d8dc11646c7ff8b82ed542"; libraryHaskellDepends = [ base containers directory filepath generic-deriving lens mtl text transformers @@ -186887,6 +187628,8 @@ self: { pname = "rainbow"; version = "0.28.0.0"; sha256 = "f37da696d9ca7ed36fab25e483c72506d46fdb5446eebf14db8bcc8c2ade8477"; + revision = "1"; + editedCabalFile = "b5ddf922888b357a898de3b1291225e051eecf881445893f003ad2c3a7ebad72"; libraryHaskellDepends = [ base bytestring microlens microlens-th process text ]; @@ -187192,7 +187935,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "random-fu" = callPackage + "random-fu_0_2_6_2" = callPackage ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops , mtl, random-shuffle, random-source, rvar, syb, template-haskell , transformers, vector @@ -187211,6 +187954,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "random-fu" = callPackage + ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops + , mtl, random-shuffle, random-source, rvar, syb, template-haskell + , transformers, vector + }: + mkDerivation { + pname = "random-fu"; + version = "0.2.7.0"; + sha256 = "b6b3a4b3ede34991d26e0447f90b14fa66af61f376fa0aed2e0899fdc879b0c4"; + libraryHaskellDepends = [ + base erf log-domain math-functions monad-loops mtl random-shuffle + random-source rvar syb template-haskell transformers vector + ]; + homepage = "https://github.com/mokus0/random-fu"; + description = "Random number generation"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "random-hypergeometric" = callPackage ({ mkDerivation, base, Cabal, cabal-test-quickcheck, math-functions , mwc-random, QuickCheck, random-fu, vector @@ -188021,8 +188783,8 @@ self: { }: mkDerivation { pname = "react-flux"; - version = "1.0.7"; - sha256 = "3d93ffdffbf966f208001be1e7f0b3b0275f7b2f5634bfee566cb2add589be33"; + version = "1.1.0"; + sha256 = "0b8f5ffd4699ae584c89717f320cfc0ddc040481198ca9c7828c7c1e74ec4be9"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -193513,6 +194275,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.13"; sha256 = "7a9457b06bc4ba3613b2e6c49f6fe052ab76cd1c345dceb3f0596d057eab2b3b"; + revision = "1"; + editedCabalFile = "2ce5634ffa3c176dd51d3658e156946aaf6484edc3923db9ec39919c9724323e"; libraryHaskellDepends = [ aeson base binary bytestring hashable mtl network old-locale scientific template-haskell text time unordered-containers vector @@ -193540,6 +194304,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.16"; sha256 = "c1293c7246c81b884b545f82590624e161b74fcb53ed6a3100895c5989e193f4"; + revision = "1"; + editedCabalFile = "3da133ee3d9c9c92bd6b1bfd4a61380426c7428f85564d7adc00a501d80b3f16"; libraryHaskellDepends = [ aeson base binary bytestring hashable mtl network old-locale scientific template-haskell text time unordered-containers vector @@ -193567,6 +194333,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.18"; sha256 = "9fd0a6dcb57340e6627454494da54559b066a2d8df0c89aa31f1869d265849fe"; + revision = "1"; + editedCabalFile = "51eb15a69ce9b15a6bd226ebfaf9c450315ed6f4c6c0c0b30d691f0c7518f886"; libraryHaskellDepends = [ aeson base binary bytestring hashable mtl network old-locale scientific template-haskell text time unordered-containers vector @@ -193594,6 +194362,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.19"; sha256 = "d1db41828f7290919cb25be67b86c8f5834266ab52485ffc6f638447ddf5f57b"; + revision = "1"; + editedCabalFile = "be1f4bd6598b120520a06e24ee0b63e98a65658bdfcc22021e380e89517c0b8e"; libraryHaskellDepends = [ aeson base binary bytestring hashable mtl network old-locale scientific template-haskell text time unordered-containers vector @@ -193621,6 +194391,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.20"; sha256 = "9cd46fed35bfb1b09283e9109e6da5d848b6e50794e4debe4819f3654d4b8381"; + revision = "1"; + editedCabalFile = "1b9f88381169545897d7f42710533d4f94fd1b33368be1fc8179f66dcd993b71"; libraryHaskellDepends = [ aeson base binary bytestring hashable mtl network old-locale scientific template-haskell text time unordered-containers vector @@ -193648,6 +194420,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.22"; sha256 = "4a192e989e1f1b60398123ad2c74701203b66a33a220f1b5c47ad495e98575bb"; + revision = "1"; + editedCabalFile = "cd3c49b103352e43c82641e8d61f7ea048e3b5e2308274024d421739b1180a46"; libraryHaskellDepends = [ aeson base binary bytestring containers hashable mtl network old-locale scientific stm template-haskell text time @@ -193676,6 +194450,8 @@ self: { pname = "rethinkdb-client-driver"; version = "0.0.23"; sha256 = "cee5a3cb533bb49e6fd5416216a4d24641fa634524a938fc51342ab37ac20443"; + revision = "1"; + editedCabalFile = "f4bb378321ec9f06093949cf541a82aa2e5650475a696dd1cbabdfd9dc17fbed"; libraryHaskellDepends = [ aeson base binary bytestring containers hashable mtl network old-locale scientific stm template-haskell text time @@ -193860,6 +194636,7 @@ self: { base data-default-class exceptions ghc-prim hspec HUnit mtl QuickCheck random stm time transformers ]; + doCheck = false; homepage = "http://github.com/Soostone/retry"; description = "Retry combinators for monadic actions that may fail"; license = stdenv.lib.licenses.bsd3; @@ -195518,7 +196295,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "rvar" = callPackage + "rvar_0_2_0_2" = callPackage ({ mkDerivation, base, MonadPrompt, mtl, random-source , transformers }: @@ -195533,6 +196310,23 @@ self: { homepage = "https://github.com/mokus0/random-fu"; description = "Random Variables"; license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "rvar" = callPackage + ({ mkDerivation, base, MonadPrompt, mtl, random-source + , transformers + }: + mkDerivation { + pname = "rvar"; + version = "0.2.0.3"; + sha256 = "d78aaf2ffdba182dda95d1692fec7abc5d77fa371120618a397b5675438c6bc0"; + libraryHaskellDepends = [ + base MonadPrompt mtl random-source transformers + ]; + homepage = "https://github.com/mokus0/random-fu"; + description = "Random Variables"; + license = stdenv.lib.licenses.publicDomain; }) {}; "rwlock" = callPackage @@ -195910,6 +196704,7 @@ self: { quickcheck-instances tasty tasty-quickcheck template-haskell time vector ]; + doCheck = false; homepage = "http://acid-state.seize.it/safecopy"; description = "Binary serialization with version control"; license = stdenv.lib.licenses.publicDomain; @@ -200043,6 +200838,31 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "servant-auth-cookie" = callPackage + ({ mkDerivation, base, base64-bytestring, blaze-html, blaze-markup + , bytestring, cereal, cookie, cryptonite, http-media, http-types + , memory, servant, servant-server, text, time, transformers, wai + , warp + }: + mkDerivation { + pname = "servant-auth-cookie"; + version = "0.1.0.0"; + sha256 = "b2c865ce075f24445331815daff87f5c9618b5e84cf6a94359668b4d894caccb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base64-bytestring bytestring cereal cookie cryptonite + http-types memory servant servant-server time transformers wai + ]; + executableHaskellDepends = [ + base blaze-html blaze-markup bytestring cereal http-media servant + servant-server text wai warp + ]; + jailbreak = true; + description = "Authentication via encrypted cookies"; + license = stdenv.lib.licenses.gpl3; + }) {}; + "servant-blaze_0_4_4_6" = callPackage ({ mkDerivation, base, blaze-html, http-media, servant }: mkDerivation { @@ -205745,8 +206565,8 @@ self: { ({ mkDerivation, base, hspec, QuickCheck }: mkDerivation { pname = "skulk"; - version = "0.1.2.0"; - sha256 = "c1da538d08786105822677a01d6cfe0a5e7d2a3e66babd0fc64084f638403300"; + version = "0.1.3.0"; + sha256 = "59653d32e998891cd94fa3aab3a56b6866b9cbc8a0f01f7a1c4f8a9890c4d8a9"; libraryHaskellDepends = [ base ]; testHaskellDepends = [ base hspec QuickCheck ]; homepage = "http://github.com/geekyfox/skulk"; @@ -208615,8 +209435,9 @@ self: { pname = "snowflake"; version = "0.1.1.1"; sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; + revision = "1"; + editedCabalFile = "0a7ec7d48cb1dd005020970205b7fce596a3ead1d02d05e0ee3e221bb51dbbf8"; libraryHaskellDepends = [ base time ]; - jailbreak = true; description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; license = stdenv.lib.licenses.asl20; }) {}; @@ -210276,21 +211097,23 @@ self: { "sproxy-web" = callPackage ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , configurator, data-default-class, directory, filepath, hflags - , http-types, mtl, postgresql-simple, resource-pool, scotty, text - , wai, wai-extra, wai-middleware-static, warp + , configurator, data-default-class, directory, docopt, filepath + , http-types, interpolatedstring-perl6, mtl, network + , postgresql-simple, resource-pool, scotty, text, unix, wai + , wai-extra, wai-middleware-static, warp }: mkDerivation { pname = "sproxy-web"; - version = "0.3.1"; - sha256 = "925919132d4911dba38f6c29888dad712e780bf8329b5d4cbdcc2ed30e6e9ee5"; + version = "0.4"; + sha256 = "453cf3f9a12e23c2d00ef5c51de2fee75427fd1de955d0735b0ebf3153ae8c3d"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson base blaze-html blaze-markup bytestring configurator - data-default-class directory filepath hflags http-types mtl - postgresql-simple resource-pool scotty text wai wai-extra - wai-middleware-static warp + data-default-class directory docopt filepath http-types + interpolatedstring-perl6 mtl network postgresql-simple + resource-pool scotty text unix wai wai-extra wai-middleware-static + warp ]; description = "Web interface to sproxy database"; license = stdenv.lib.licenses.mit; @@ -216342,8 +217165,8 @@ self: { ({ mkDerivation, base, containers, mtl, QuickCheck }: mkDerivation { pname = "subwordgraph"; - version = "1.0.0"; - sha256 = "e662eec910320fb4dd017ff40fa24bd7f050991d5bfea64de0632670d296c26d"; + version = "1.0.1"; + sha256 = "d75e443150f9ee4d09b1434d0815f7afbd1e047561cd55f159d07147f774cb2b"; libraryHaskellDepends = [ base containers mtl ]; testHaskellDepends = [ base containers mtl QuickCheck ]; homepage = "https://github.com/danielnowakowski/Subword-Graph"; @@ -221941,6 +222764,7 @@ self: { base Cabal directory filepath fsnotify hint mtl system-filepath time unix ]; + jailbreak = true; homepage = "http://github.com/roman/testloop"; description = "Quick feedback loop for test suites"; license = stdenv.lib.licenses.mit; @@ -223457,6 +224281,17 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "th-data-compat" = callPackage + ({ mkDerivation, base, template-haskell }: + mkDerivation { + pname = "th-data-compat"; + version = "0.0.1.0"; + sha256 = "2788c2425a4b9d945ae69469e60fd4b977b43ba8a0508382a21a40659337dbee"; + libraryHaskellDepends = [ base template-haskell ]; + description = "Compatibility for data definition template of TH"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "th-desugar_1_4_2" = callPackage ({ mkDerivation, base, containers, hspec, HUnit, mtl, syb , template-haskell @@ -224631,6 +225466,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "throttled-io-loop" = callPackage + ({ mkDerivation, base, hspec, natural-numbers, QuickCheck, time }: + mkDerivation { + pname = "throttled-io-loop"; + version = "0.1.0.2"; + sha256 = "d5284e5d7e49905a2b9a63963816ee85086197d0f27af0bfa2d6e1cd1d71350c"; + libraryHaskellDepends = [ base natural-numbers time ]; + testHaskellDepends = [ base hspec QuickCheck ]; + homepage = "https://github.com/AxialExchange/haskell-throttled-io-loop#readme"; + description = "Loop over an action but throttle it to a certain rate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "through-text" = callPackage ({ mkDerivation, base, bytestring, case-insensitive, text }: mkDerivation { @@ -224786,7 +225634,7 @@ self: { license = stdenv.lib.licenses.gpl3; }) {}; - "tidal" = callPackage + "tidal_0_7_1" = callPackage ({ mkDerivation, base, binary, bytestring, colour, containers , hashable, hmt, hosc, mersenne-random-pure64, mtl, parsec , PortMidi, process, serialport, text, time, transformers @@ -224804,21 +225652,39 @@ self: { homepage = "http://tidal.lurk.org/"; description = "Pattern language for improvised music"; license = stdenv.lib.licenses.gpl3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tidal" = callPackage + ({ mkDerivation, base, binary, bytestring, colour, containers + , hashable, hmt, hosc, mersenne-random-pure64, mtl, parsec, process + , text, time, transformers, websockets + }: + mkDerivation { + pname = "tidal"; + version = "0.8"; + sha256 = "75ecf92a7cc0277cccad934183ec9b0e49d9639b9a1db9728602a97ca8275035"; + libraryHaskellDepends = [ + base binary bytestring colour containers hashable hmt hosc + mersenne-random-pure64 mtl parsec process text time transformers + websockets + ]; + homepage = "http://tidal.lurk.org/"; + description = "Pattern language for improvised music"; + license = stdenv.lib.licenses.gpl3; }) {}; "tidal-midi" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, hosc - , PortMidi, process, tidal, time + ({ mkDerivation, base, containers, PortMidi, tidal, time + , transformers }: mkDerivation { pname = "tidal-midi"; - version = "0.6"; - sha256 = "ff5595e51cf5d93f12ab89465fccfd0cb7905d58ebb93c0d706fd782075e4597"; + version = "0.8"; + sha256 = "dd8d39af0871a730017c712624fc86ba5c25add7737511610ac849d9d54bcd79"; libraryHaskellDepends = [ - base bytestring containers hashable hosc PortMidi process tidal - time + base containers PortMidi tidal time transformers ]; - jailbreak = true; homepage = "http://tidal.lurk.org/"; description = "MIDI support for tidal"; license = stdenv.lib.licenses.gpl3; @@ -224834,7 +225700,6 @@ self: { libraryHaskellDepends = [ base bytestring containers serialport tidal ]; - jailbreak = true; homepage = "http://tidalcycles.org/"; description = "Serial support for tidal"; license = stdenv.lib.licenses.gpl3; @@ -225412,6 +226277,35 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "timemap_0_0_3" = callPackage + ({ mkDerivation, base, containers, focus, hashable, list-t + , QuickCheck, quickcheck-instances, stm, stm-containers, tasty + , tasty-hunit, tasty-quickcheck, time, unordered-containers + }: + mkDerivation { + pname = "timemap"; + version = "0.0.3"; + sha256 = "4a88aa0f9c7f13390bf842fd93d0d22cbf92aed0f7a7c6cec06eca38a45ed89f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers focus hashable list-t stm stm-containers time + unordered-containers + ]; + executableHaskellDepends = [ + base containers focus hashable list-t stm stm-containers time + unordered-containers + ]; + testHaskellDepends = [ + base containers focus hashable list-t QuickCheck + quickcheck-instances stm stm-containers tasty tasty-hunit + tasty-quickcheck time unordered-containers + ]; + description = "A mutable hashmap, implicitly indexed by UTCTime"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "timeout" = callPackage ({ mkDerivation, base, exceptions, mtl, QuickCheck, tasty , tasty-quickcheck, time @@ -225497,6 +226391,17 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "timeprint" = callPackage + ({ mkDerivation, base, datetime }: + mkDerivation { + pname = "timeprint"; + version = "0.1.0.3"; + sha256 = "6f11850c81aff89f10516ada477c7d40bb73007606f5e7b544e220181709cbaa"; + libraryHaskellDepends = [ base datetime ]; + description = "Prints timestamps after each line evaluated"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "timerep" = callPackage ({ mkDerivation, attoparsec, base, monoid-subclasses, QuickCheck , tasty, tasty-hunit, tasty-quickcheck, text, time @@ -231984,7 +232889,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "unlambda" = callPackage + "unlambda_0_1_4_1" = callPackage ({ mkDerivation, array, base, mtl, unix }: mkDerivation { pname = "unlambda"; @@ -231997,6 +232902,21 @@ self: { jailbreak = true; description = "Unlambda interpreter"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "unlambda" = callPackage + ({ mkDerivation, array, base, mtl, unix }: + mkDerivation { + pname = "unlambda"; + version = "0.1.4.2"; + sha256 = "523f0ea20464fc6fc055526c3fe6f9de03826ae89fb96a8fa68bd56cddfcfeaa"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ array base mtl ]; + executableHaskellDepends = [ base unix ]; + description = "Unlambda interpreter"; + license = "GPL"; }) {}; "unlit" = callPackage @@ -232982,7 +233902,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "userid" = callPackage + "userid_0_1_2_5" = callPackage ({ mkDerivation, aeson, base, boomerang, safecopy, web-routes , web-routes-th }: @@ -233000,6 +233920,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "userid" = callPackage + ({ mkDerivation, aeson, base, boomerang, safecopy, web-routes + , web-routes-th + }: + mkDerivation { + pname = "userid"; + version = "0.1.2.6"; + sha256 = "2a6972e25defb31b57055249888ec19565e0f1b884da1235ef1af76d11f44ab1"; + libraryHaskellDepends = [ + aeson base boomerang safecopy web-routes web-routes-th + ]; + homepage = "http://www.github.com/Happstack/userid"; + description = "The UserId type and useful instances for web development"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "users_0_1_0_0" = callPackage ({ mkDerivation, aeson, base, path-pieces, text, time }: mkDerivation { @@ -238980,7 +239917,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "wai-middleware-verbs" = callPackage + "wai-middleware-verbs_0_2_0" = callPackage ({ mkDerivation, base, errors, exceptions, hashable, http-types , mmorph, monad-logger, mtl, resourcet, text, transformers , transformers-base, unordered-containers, wai @@ -239006,6 +239943,32 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "wai-middleware-verbs" = callPackage + ({ mkDerivation, base, errors, exceptions, hashable, http-types + , mmorph, monad-logger, mtl, resourcet, text, transformers + , transformers-base, unordered-containers, wai + , wai-middleware-content-type, wai-transformers, warp + }: + mkDerivation { + pname = "wai-middleware-verbs"; + version = "0.3.0"; + sha256 = "cfc8b80412a6fe3e4ee4e4828be478d28cdb8aadc063c7c229a44a74a4aa9806"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet transformers transformers-base unordered-containers wai + ]; + executableHaskellDepends = [ + base errors exceptions hashable http-types mmorph monad-logger mtl + resourcet text transformers transformers-base unordered-containers + wai wai-middleware-content-type wai-transformers warp + ]; + description = "Route different middleware responses based on the incoming HTTP verb"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "wai-predicates_0_8_4" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , bytestring-conversion, case-insensitive, cookie, http-types @@ -239646,7 +240609,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "wai-transformers" = callPackage + "wai-transformers_0_0_4" = callPackage ({ mkDerivation, base, exceptions, transformers, wai }: mkDerivation { pname = "wai-transformers"; @@ -239655,6 +240618,18 @@ self: { libraryHaskellDepends = [ base exceptions transformers wai ]; 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 }: + mkDerivation { + pname = "wai-transformers"; + version = "0.0.5"; + sha256 = "f9b572b2fd7b803e06226ef73c07318928f2b684865ec13c02cd53ef015f9c7a"; + libraryHaskellDepends = [ base exceptions transformers wai ]; + description = "Simple parameterization of Wai's Application type"; + license = stdenv.lib.licenses.bsd3; }) {}; "wai-util" = callPackage @@ -239944,8 +240919,8 @@ self: { pname = "waitra"; version = "0.0.4.0"; sha256 = "5610c69eb377e2714c3e502cf47fff7e116e356890aefb1f4144d3e6c1b16c12"; - revision = "1"; - editedCabalFile = "baf3d8d646916af447598800696001326206f154efe3a020a5d1c1de46a6114b"; + revision = "2"; + editedCabalFile = "7b2f9d4fe0358eb303c3993233b05c1505f4021ebee41fccfad0b6badbf8bd8f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -239956,7 +240931,6 @@ self: { testHaskellDepends = [ aeson base http-types tasty tasty-hunit wai wai-extra ]; - jailbreak = true; homepage = "https://github.com/futurice/waitra"; description = "A very simple Wai router"; license = stdenv.lib.licenses.mit; @@ -240556,8 +241530,8 @@ self: { pname = "warp"; version = "3.1.2"; sha256 = "b845179b3ec3e78d94408da61fdc9195807adaa25646205769e9a2b0b6ab48f9"; - revision = "2"; - editedCabalFile = "c2b806e76b7fa1b075ab35cb9a806b25984296d0f7639c1486a6f5ca3373e85b"; + revision = "3"; + editedCabalFile = "09dad3d1a5eb3eb48ca34b7f5eb60f2da775eb45f8a5d21efea711bd83e9e016"; libraryHaskellDepends = [ array auto-update base blaze-builder bytestring case-insensitive containers ghc-prim hashable http-date http-types http2 iproute @@ -241562,7 +242536,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "web-routes-th" = callPackage + "web-routes-th_0_22_4" = callPackage ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split , template-haskell, text, web-routes }: @@ -241576,6 +242550,23 @@ self: { testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ]; description = "Support for deriving PathInfo using Template Haskell"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "web-routes-th" = callPackage + ({ mkDerivation, base, hspec, HUnit, parsec, QuickCheck, split + , template-haskell, text, web-routes + }: + mkDerivation { + pname = "web-routes-th"; + version = "0.22.5"; + sha256 = "1a4d3d51e67abb9c0906fbc586c2f8fa1fc2e251e944eb918ba38dd6796b3355"; + libraryHaskellDepends = [ + base parsec split template-haskell text web-routes + ]; + testHaskellDepends = [ base hspec HUnit QuickCheck web-routes ]; + description = "Support for deriving PathInfo using Template Haskell"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -243788,7 +244779,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wordpass" = callPackage + "wordpass_1_0_0_5" = callPackage ({ mkDerivation, base, containers, deepseq, directory, filepath , hflags, random-fu, random-source, text, unix-compat, vector }: @@ -243812,6 +244803,30 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "wordpass" = callPackage + ({ mkDerivation, base, containers, deepseq, directory, filepath + , hflags, random-fu, random-source, text, unix-compat, vector + }: + mkDerivation { + pname = "wordpass"; + version = "1.0.0.6"; + sha256 = "ef8888709fe0f0146b6cf3739191b4ca1c5df10f77a70da15d88deed1e925a37"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers deepseq directory filepath random-fu random-source + text unix-compat vector + ]; + executableHaskellDepends = [ + base containers deepseq directory filepath hflags random-fu + random-source text unix-compat vector + ]; + homepage = "https://github.com/mgajda/wordpass"; + description = "Dictionary-based password generator"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "words" = callPackage ({ mkDerivation, base, directory, text }: mkDerivation { @@ -251843,6 +252858,8 @@ self: { pname = "yesod-core"; version = "1.4.15"; sha256 = "b9878ee01f66346967a157c597d284735c66db61a18a93c319b85233500050b4"; + revision = "1"; + editedCabalFile = "1debc26f91a3f7bc629fadb386cbfe5fdd1987245475a40920826db885992ef9"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -251860,6 +252877,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -251883,6 +252901,8 @@ self: { pname = "yesod-core"; version = "1.4.15.1"; sha256 = "a414a0eb14b4b88ad4d6ec22db9837b4ead9c7958cf236476dce963555a75e29"; + revision = "1"; + editedCabalFile = "8c79b07d7501154beeeaaefb32e7c4845c3c62bdc04d829092d3a7e986812c69"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -251900,6 +252920,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -251923,6 +252944,8 @@ self: { pname = "yesod-core"; version = "1.4.17"; sha256 = "954f0851ec388ef9b9009e087d7b8c214481f7e5bd4c3dff2828030780d0eadf"; + revision = "1"; + editedCabalFile = "449d207a5f7e14ecc34ae0a7769f0eebcc6a511480d99812ff32152680b577da"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -251940,6 +252963,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -251963,6 +252987,8 @@ self: { pname = "yesod-core"; version = "1.4.18.1"; sha256 = "8964a1ce27f7d15037eee05611546a8e5e183640115e92e70fc73e1116beddb0"; + revision = "1"; + editedCabalFile = "fc50a6c2fc420b84029d8079ea1ed5b15e0f52f0dcbcdbd117e0d951635a83c6"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -251980,6 +253006,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -252003,6 +253030,8 @@ self: { pname = "yesod-core"; version = "1.4.19"; sha256 = "8425c1df703521b020b476035f572e953ac356ce6f5e35c424b29f0d5ff76ded"; + revision = "1"; + editedCabalFile = "ec5182e35997122413eca1ba8d84c8e9b7d7620be2edc04023e823e64aaa0981"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -252020,6 +253049,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -252043,6 +253073,8 @@ self: { pname = "yesod-core"; version = "1.4.20"; sha256 = "a47689a8d681e1083538ea9126601f70db3869a74170901de29250ce3d9c1bda"; + revision = "2"; + editedCabalFile = "b037a451668ea9c62f65500b14a1fc2ab932bd8abc2430f67378e2ad04434e7e"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -252060,6 +253092,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -252083,6 +253116,8 @@ self: { pname = "yesod-core"; version = "1.4.20.1"; sha256 = "e742d6cb5b7f65b97f9dbb7e9586ef4cc27169aa7ac7a030119e6c52b69c4f86"; + revision = "2"; + editedCabalFile = "fa05a319d9a2ec8038117c5f33d25af3eedcd5b6e57a21e52b029e76857ca5b3"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -252100,6 +253135,7 @@ self: { resourcet shakespeare streaming-commons template-haskell text transformers wai wai-extra ]; + jailbreak = true; homepage = "http://www.yesodweb.com/"; description = "Creation of type-safe, RESTful web applications"; license = stdenv.lib.licenses.mit; @@ -252123,6 +253159,8 @@ self: { pname = "yesod-core"; version = "1.4.20.2"; sha256 = "cfa62e47de410bff1fd37571a3c7fda92b0a5cd28e1df8d466c7a65b5a2e6f28"; + revision = "1"; + editedCabalFile = "d3ea0bd56e9f330acefe04e11f9dae88cc28f07f22326ff5110001762c5ea095"; libraryHaskellDepends = [ aeson auto-update base blaze-builder blaze-html blaze-markup byteable bytestring case-insensitive cereal clientsession conduit @@ -252906,14 +253944,13 @@ self: { }: mkDerivation { pname = "yesod-markdown"; - version = "0.11.0"; - sha256 = "80465e11fc54ee786109f8e2d2d6c4560ee44e5a1de46618c95c56eeb29ea433"; + version = "0.11.1"; + sha256 = "76ce2fbc55ed6e23c70fea32441c38a6466888695b8c48035471343c407efd2f"; libraryHaskellDepends = [ base blaze-html blaze-markup bytestring directory pandoc persistent shakespeare texmath text xss-sanitize yesod-core yesod-form ]; testHaskellDepends = [ base blaze-html hspec text ]; - jailbreak = true; homepage = "http://github.com/pbrisbin/yesod-markdown"; description = "Tools for using markdown in a yesod application"; license = stdenv.lib.licenses.gpl2; From 513d648f40a178315b830fffd34903e542a5f103 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 5 Jun 2016 17:47:35 +0200 Subject: [PATCH 288/520] configuration-common.nix: drop obsolete overrides --- pkgs/development/haskell-modules/configuration-common.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 9f1d1b56d3ca..08df6545550d 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -5,10 +5,8 @@ with import ./lib.nix { inherit pkgs; }; self: super: { # Some packages need a non-core version of Cabal. - Cabal_1_18_1_7 = dontCheck super.Cabal_1_18_1_7; - Cabal_1_20_0_4 = dontCheck super.Cabal_1_20_0_4; - Cabal_1_22_4_0 = (dontCheck super.Cabal_1_22_4_0).overrideScope (self: super: { binary = self.binary_0_7_6_1; }); - cabal-install = (dontCheck super.cabal-install).overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.overrideScope (self: super: { binary = self.binary_0_7_6_1; }); + cabal-install = super.cabal-install.overrideScope (self: super: { Cabal = self.Cabal_1_24_0_0; }); cabal-install_1_18_1_0 = (dontCheck super.cabal-install_1_18_1_0).overrideScope (self: super: { Cabal = self.Cabal_1_18_1_7; }); # Link statically to avoid runtime dependency on GHC. From c7639f4e5605d84fa9ffb24ef99516f31370fda2 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 5 Jun 2016 17:48:35 +0200 Subject: [PATCH 289/520] haskell-esqueleto: remove broken overrides These overrides didn't work, because they created a mixture of different versions of 'persistent' in the build tree. Furthermore, we cannot pin specific versions like that in configuration-common.nix because this breaks builds in other package sets, i.e. the LTS variants. --- pkgs/development/haskell-modules/configuration-common.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 08df6545550d..5c3c5cb3504a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1013,12 +1013,4 @@ self: super: { cairo = addBuildTool super.cairo self.gtk2hs-buildtools; pango = addBuildTool super.pango self.gtk2hs-buildtools; - # esqueleto requires an older version of the persistent library, and - # corresponding versions of -template and -sqlite for for its test - # suite. - esqueleto = super.esqueleto.overrideScope (self: super: { - persistent-template = super.persistent-template_2_1_8_1; - persistent-sqlite = super.persistent-sqlite_2_2_1; - persistent = super.persistent_2_2_4_1; - }); } From 1845843cdd355a846dfa9e0eb1c3cb47c5578ef0 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 5 Jun 2016 17:51:15 +0200 Subject: [PATCH 290/520] git-annex: take this tool from LTS Haskell while Stackage Nightly is broken --- pkgs/applications/version-management/git-and-tools/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index 8aae86b5536f..ab111a7f2f71 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -37,7 +37,7 @@ rec { svnSupport = true; })); - git-annex = pkgs.haskellPackages.git-annex-with-assistant; + git-annex = pkgs.haskell.packages.lts.git-annex-with-assistant; gitAnnex = git-annex; git-annex-remote-b2 = pkgs.goPackages.git-annex-remote-b2; From a01fab64e2683531c0fb28e2582a2129b251ffd3 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 5 Jun 2016 18:06:01 +0200 Subject: [PATCH 291/520] haskell-binary: update overrides for 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 89755799af8c..b4ea8fd95b9b 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_3_0; + binary = self.binary_0_8_4_0; deepseq = self.deepseq_1_3_0_1; haskeline = self.haskeline_0_7_2_1; hoopl = self.hoopl_3_10_2_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.2.x.nix index d4c3ae73114d..2507f9d6aed7 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_3_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_0; process = self.process_1_2_3_0; }; # Newer versions don't compile. Cabal_1_18_1_7 = dontJailbreak super.Cabal_1_18_1_7; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix index 977fffbd5584..980f4159bc10 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_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 4ce544534fc3..1eebbf2ced96 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_3_0; }; + Cabal_1_22_4_0 = super.Cabal_1_22_4_0.override { binary = dontCheck self.binary_0_8_4_0; }; # Avoid inconsistent 'binary' versions from 'text' and 'Cabal'. - cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_3_0; }); + cabal-install = super.cabal-install.overrideScope (self: super: { binary = dontCheck self.binary_0_8_4_0; }); # https://github.com/tibbe/hashable/issues/85 hashable = dontCheck super.hashable; From 0cc1b3744e439c6809832e8489793204ef6c9393 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 5 Jun 2016 17:57:23 +0200 Subject: [PATCH 292/520] haskell-semigroups: fix build with older compilers --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 4 ++-- pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 1eebbf2ced96..b48f9cfd33cb 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -96,7 +96,7 @@ self: super: { # Needs void on pre 7.10.x compilers. conduit = addBuildDepend super.conduit self.void; - # Needs nats on pre 7.10.x compilers. - semigroups = addBuildDepend super.semigroups self.nats; + # Needs additional inputs on pre 7.10.x compilers. + semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers transformers]); } diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix index 675a9619d313..b405baa37a16 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.8.x.nix @@ -139,7 +139,7 @@ self: super: { conduit = addBuildDepend super.conduit self.void; conduit_1_2_5 = addBuildDepend super.conduit_1_2_5 self.void; - # Needs nats on pre 7.10.x compilers. - semigroups = addBuildDepend super.semigroups self.nats; + # Needs additional inputs on pre 7.10.x compilers. + semigroups = addBuildDepends super.semigroups (with self; [nats tagged unordered-containers]); } From e8108e0d2227d0e848615c02101cf57f85be3a06 Mon Sep 17 00:00:00 2001 From: michael bishop Date: Mon, 6 Jun 2016 05:00:15 -0300 Subject: [PATCH 293/520] toxvpn: update versions and allow systemd to be optional --- pkgs/tools/networking/toxvpn/default.nix | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/tools/networking/toxvpn/default.nix b/pkgs/tools/networking/toxvpn/default.nix index 3b5627db2156..59aad8d95483 100644 --- a/pkgs/tools/networking/toxvpn/default.nix +++ b/pkgs/tools/networking/toxvpn/default.nix @@ -4,28 +4,28 @@ with lib; let libtoxcoreLocked = stdenv.lib.overrideDerivation libtoxcore (oldAttrs: { - name = "libtoxcore-20151110"; + name = "libtoxcore-20160319"; src = fetchFromGitHub { owner = "irungentoo"; repo = "toxcore"; - rev = "22634a4b93dda5b17cb357cd84ac46fcfdc22519"; - sha256 = "01i92wm5lg2p7k71qn23sfh01xi8acdrwn23rk52n54h424l1fgy"; + rev = "532629d486e3361c7d8d95b38293cc7d61dc4ee5"; + sha256 = "0x8mjrjiafgia9vy7w4zhfzicr2fljx8xgm2ppi4kva2r2z1wm2f"; }; }); in stdenv.mkDerivation { - name = "toxvpn-20151111"; + name = "toxvpn-20160606"; src = fetchFromGitHub { owner = "cleverca22"; repo = "toxvpn"; - rev = "1d06bb7da277d46abb8595cf152210c4ccf0ba7d"; - sha256 = "1himrbdgsbkfha1d87ysj2hwyz4a6z9yxqbai286imkya84q7r15"; + rev = "50a0a439a6b11579bab7cc0744a18a9addc5eb5c"; + sha256 = "12dkvsqs4fljwa1367jzqaynf6i8c98y9fs2lm2mqp3wkw0r3rg9"; }; - buildInputs = [ cmake libtoxcoreLocked jsoncpp libsodium systemd libcap ]; + buildInputs = [ cmake libtoxcoreLocked jsoncpp libsodium libcap ] ++ optional (systemd != null) systemd; - cmakeFlags = [ "-DSYSTEMD=1" ]; + cmakeFlags = optional (systemd != null) [ "-DSYSTEMD=1" ]; meta = with stdenv.lib; { description = "A powerful tool that allows one to make tunneled point to point connections over Tox"; From d7de8bc6e9fce3c332050eb37c2be24da40d25a5 Mon Sep 17 00:00:00 2001 From: FlorentBecker Date: Mon, 6 Jun 2016 10:49:00 +0200 Subject: [PATCH 294/520] patoline: remove (source is unavailable) (#15918) --- pkgs/tools/typesetting/patoline/default.nix | 51 --------------------- pkgs/top-level/all-packages.nix | 24 ---------- 2 files changed, 75 deletions(-) delete mode 100644 pkgs/tools/typesetting/patoline/default.nix diff --git a/pkgs/tools/typesetting/patoline/default.nix b/pkgs/tools/typesetting/patoline/default.nix deleted file mode 100644 index a39105c83145..000000000000 --- a/pkgs/tools/typesetting/patoline/default.nix +++ /dev/null @@ -1,51 +0,0 @@ - -{ stdenv, fetchurl, ncurses, mesa, freeglut, libzip, - ocaml, findlib, camomile, - dypgen, ocaml_sqlite3, camlzip, - lablgtk, camlimages, ocaml_cairo, - lablgl, ocamlnet, cryptokit, - ocaml_pcre }: - -let - ocaml_version = (builtins.parseDrvName ocaml.name).version; -in - -stdenv.mkDerivation { - name = "patoline-0.1"; - - src = fetchurl { - url = "http://lama.univ-savoie.fr/patoline/patoline-0.1.tar.bz"; - sha256 = "c5ac8dcb87ceecaf11876bd0dd425bd0f04d43265adc2cbcb1f1e82a78846d49"; - }; - - createFindlibDestdir = true; - - buildInputs = [ ocaml findlib dypgen camomile ocaml_sqlite3 camlzip - lablgtk camlimages ocaml_cairo - lablgl ocamlnet cryptokit - ocaml_pcre ncurses mesa freeglut libzip ]; - - propagatedbuildInputs = [ camomile - dypgen ocaml_sqlite3 camlzip - lablgtk camlimages ocaml_cairo - lablgl ocamlnet cryptokit - ocaml_pcre ncurses mesa freeglut libzip ]; - - buildPhase = '' - ocaml configure.ml \ - --prefix $out \ - --ocaml-libs $out/lib/ocaml/${ocaml_version}/site-lib \ - --ocamlfind-dir $out/lib/ocaml/${ocaml_version}/site-lib \ - --fonts-dir $out/share/patoline/fonts \ - --grammars-dir $out/share/patoline/grammars \ - --hyphen-dir $out/share/patoline/hyphen - - make - ''; - - - meta = { - homepage = http://patoline.com; - description = "Patoline ocaml based typesetting system"; - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3db71424d5a5..46f6a9138e1a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4960,8 +4960,6 @@ in dypgen = callPackage ../development/ocaml-modules/dypgen { }; - patoline = callPackage ../tools/typesetting/patoline { }; - gapi_ocaml = callPackage ../development/ocaml-modules/gapi-ocaml { }; gg = callPackage ../development/ocaml-modules/gg { }; @@ -16916,28 +16914,6 @@ in inherit (stdenv) mkDerivation; }; - # patoline requires a rather large ocaml compilation environment. - # this is why it is build as an environment and not just a normal package. - # remark : the emacs mode is also installed, but you have to adjust your load-path. - PatolineEnv = pack: myEnvFun { - name = "patoline"; - buildInputs = [ stdenv ncurses mesa freeglut libzip gcc - pack.ocaml pack.findlib pack.camomile - pack.dypgen pack.ocaml_sqlite3 pack.camlzip - pack.lablgtk pack.camlimages pack.ocaml_cairo - pack.lablgl pack.ocamlnet pack.cryptokit - pack.ocaml_pcre pack.patoline - ]; - # this is to circumvent the bug with libgcc_s.so.1 which is - # not found when using thread - extraCmds = '' - LD_LIBRARY_PATH=\$LD_LIBRARY_PATH:${gcc.cc}/lib - export LD_LIBRARY_PATH - ''; - }; - - patoline = PatolineEnv ocamlPackages_4_00_1; - znc = callPackage ../applications/networking/znc { }; zncModules = recurseIntoAttrs ( From d3393473df075ebab2215af75448510d13634529 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Mon, 6 Jun 2016 08:56:08 +0000 Subject: [PATCH 295/520] unibilium: enable on darwin (#16012) --- pkgs/development/libraries/unibilium/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/unibilium/default.nix b/pkgs/development/libraries/unibilium/default.nix index 63bd86ca991a..cf34c96a2fef 100644 --- a/pkgs/development/libraries/unibilium/default.nix +++ b/pkgs/development/libraries/unibilium/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { meta = with lib; { description = "A very basic terminfo library"; license = licenses.lgpl3Plus; - platforms = platforms.linux; + platforms = platforms.linux ++ platforms.darwin; maintainers = with maintainers; [ pSub ]; }; } From ab5a5f760fcc1e80331e5a8d84dcff21c0e37662 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Mon, 6 Jun 2016 11:09:47 +0200 Subject: [PATCH 296/520] libexttextcat: homepage has moved --- pkgs/development/libraries/libexttextcat/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libexttextcat/default.nix b/pkgs/development/libraries/libexttextcat/default.nix index 6aaadb0b02eb..a9b6394ed5ba 100644 --- a/pkgs/development/libraries/libexttextcat/default.nix +++ b/pkgs/development/libraries/libexttextcat/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation rec { meta = { description = "An N-Gram-Based Text Categorization library primarily intended for language guessing"; - homepage = http://www.freedesktop.org/wiki/Software/libexttextcat; + homepage = https://wiki.documentfoundation.org/Libexttextcat; platforms = stdenv.lib.platforms.all; }; } From 3de59a83dafe8a1b102bf30e3c1256367a30709c Mon Sep 17 00:00:00 2001 From: Jiri Danek Date: Fri, 3 Jun 2016 10:10:13 +0200 Subject: [PATCH 297/520] dart: 0.4 -> 1.16.1 --- .../development/interpreters/dart/default.nix | 60 +++++++++++-------- 1 file changed, 35 insertions(+), 25 deletions(-) diff --git a/pkgs/development/interpreters/dart/default.nix b/pkgs/development/interpreters/dart/default.nix index dd0d0e94482c..d32f415732b9 100644 --- a/pkgs/development/interpreters/dart/default.nix +++ b/pkgs/development/interpreters/dart/default.nix @@ -1,10 +1,27 @@ -{ stdenv, fetchurl }: - -assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux"; +{ stdenv, fetchurl, unzip }: +let + version = "1.16.1"; +in stdenv.mkDerivation { - name = "dart-0.4"; - + name = "dart-${version}"; + + nativeBuildInputs = [ + unzip + ]; + + src = + if stdenv.system == "x86_64-linux" then + fetchurl { + url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-x64-release.zip"; + sha256 = "01cbnc8hd2wwprmivppmzvld9ps644k16wpgqv31h1596l5p82n2"; + } + else + fetchurl { + url = "https://storage.googleapis.com/dart-archive/channels/stable/release/${version}/sdk/dartsdk-linux-ia32-release.zip"; + sha256 = "0jfwzc3jbk4n5j9ka59s9bkb25l5g85fl1nf676mvj36swcfykx3"; + }; + installPhase = '' mkdir -p $out cp -R * $out/ @@ -12,28 +29,21 @@ stdenv.mkDerivation { patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \ --set-rpath $libPath \ $out/bin/dart - - # Hack around weird dart2js resolving bug - mv $out/bin/dart2js $out/bin/.dart2js - echo "#!/bin/sh" > $out/bin/dart2js - echo "$out/bin/.dart2js \$*" >> $out/bin/dart2js - chmod +x $out/bin/dart2js ''; - - - src = - if stdenv.system == "x86_64-linux" then - fetchurl { - url = http://download.zef.s3.amazonaws.com/dartsdk-m4-linux-64.tar.gz; - sha256 = "1riwxxczskfsaax7n03m7isnbxf3walky0cac1w8j5apr1xvg5ma"; - } - else - fetchurl { - url = http://download.zef.s3.amazonaws.com/dartsdk-m4-linux-32.tar.gz; - sha256 = "00935c4vxfj2h3x354g75qdazswwissbwc7kj5k05l1m3lizikf6"; - }; - + libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.cc ]; dontStrip = true; + + meta = { + platforms = [ "i686-linux" "x86_64-linux" ]; + homepage = "https://www.dartlang.org/"; + description = "Scalable programming language, with robust libraries and runtimes, for building web, server, and mobile apps"; + longDescription = '' + Dart is a class-based, single inheritance, object-oriented language + with C-style syntax. It offers compilation to JavaScript, interfaces, + mixins, abstract classes, reified generics, and optional typing. + ''; + license = stdenv.lib.licenses.bsd3; + }; } From 3a3ed33f2628048d2f8aabe683cc46cf6f70886d Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 6 Jun 2016 12:28:38 +0200 Subject: [PATCH 298/520] abcde: fix flac bin output --- pkgs/applications/audio/abcde/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/abcde/default.nix b/pkgs/applications/audio/abcde/default.nix index b5ccde86619a..01b848d2d95d 100644 --- a/pkgs/applications/audio/abcde/default.nix +++ b/pkgs/applications/audio/abcde/default.nix @@ -52,7 +52,7 @@ in --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' wrapProgram "$out/bin/abcde" --prefix PATH ":" \ - "$out/bin:${which}/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbis-tools}/bin:${id3v2}/bin:${eyeD3}/bin:${lame}/bin:${flac}/bin" + "$out/bin:${which}/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbis-tools}/bin:${id3v2}/bin:${eyeD3}/bin:${lame}/bin:${flac.bin}/bin" wrapProgram "$out/bin/cddb-tool" --prefix PATH ":" \ "${wget}/bin" From 28ddc8c043762cf75855c00e55d70822d1912bdb Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Mon, 6 Jun 2016 13:00:44 +0200 Subject: [PATCH 299/520] neovim: pkgs argument was unused --- pkgs/applications/editors/neovim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix index 5f7af3b00825..d00d9a79ac77 100644 --- a/pkgs/applications/editors/neovim/default.nix +++ b/pkgs/applications/editors/neovim/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, cmake, gettext, glib, libmsgpack, libtermkey , libtool, libuv, lua, luajit, luaPackages, man, ncurses, perl, pkgconfig , unibilium, makeWrapper, vimUtils, xsel -, pkgs + , withPython ? true, pythonPackages, extraPythonPackages ? [] , withPython3 ? true, python3Packages, extraPython3Packages ? [] , withJemalloc ? true, jemalloc From 366d98497ff0764526bd4aec2c491e49ab1eb51e Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sat, 2 Apr 2016 10:36:47 +0200 Subject: [PATCH 300/520] vala_0_32: init at 0.32.0 --- pkgs/development/compilers/vala/0.32.nix | 30 ++++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/compilers/vala/0.32.nix diff --git a/pkgs/development/compilers/vala/0.32.nix b/pkgs/development/compilers/vala/0.32.nix new file mode 100644 index 000000000000..8ae76ec1b05d --- /dev/null +++ b/pkgs/development/compilers/vala/0.32.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, flex, bison, libxslt +, glib, libiconv, libintlOrEmpty +}: + +let + major = "0.32"; + minor = "0"; + sha256 = "0vpvq403vdd25irvgk7zibz3nw4x4i17m0dgnns8j1q4vr7am8h7"; +in +stdenv.mkDerivation rec { + name = "vala-${major}.${minor}"; + + meta = { + description = "Compiler for GObject type system"; + homepage = "http://live.gnome.org/Vala"; + license = stdenv.lib.licenses.lgpl21Plus; + platforms = stdenv.lib.platforms.unix; + maintainers = with stdenv.lib.maintainers; [ antono lethalman ]; + }; + + src = fetchurl { + url = "mirror://gnome/sources/vala/${major}/${name}.tar.xz"; + inherit sha256; + }; + + nativeBuildInputs = [ pkgconfig flex bison libxslt ]; + + buildInputs = [ glib libiconv ] + ++ libintlOrEmpty; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 46f6a9138e1a..dc6087252b9e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5386,6 +5386,8 @@ in vala_0_28 = callPackage ../development/compilers/vala/0.28.nix { }; + vala_0_32 = callPackage ../development/compilers/vala/0.32.nix { }; + vs90wrapper = callPackage ../development/compilers/vs90wrapper { }; webdsl = callPackage ../development/compilers/webdsl { }; From 793ffb14a4e976080d74f1d22ceb945aff1309dd Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 3 Apr 2016 08:06:59 +0200 Subject: [PATCH 301/520] glibmm: 2.46.3 -> 2.48.1 --- pkgs/development/libraries/glibmm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/glibmm/default.nix b/pkgs/development/libraries/glibmm/default.nix index 6d15faf95490..e96665dbccb4 100644 --- a/pkgs/development/libraries/glibmm/default.nix +++ b/pkgs/development/libraries/glibmm/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, pkgconfig, gnum4, glib, libsigcxx }: let - ver_maj = "2.46"; - ver_min = "3"; + ver_maj = "2.48"; + ver_min = "1"; in stdenv.mkDerivation rec { name = "glibmm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/glibmm/${ver_maj}/${name}.tar.xz"; - sha256 = "c78654addeb27a1213bedd7cd21904a45bbb98a5ba2f2f0de2b2f1a5682d86cf"; + sha256 = "1pvw2mrm03p51p03179rb6fk9p42iykkwj1jcdv7jr265xymy8nw"; }; outputs = [ "dev" "out" ]; From e28a8c6d6caea9ec87a3fe3a875e88225126c470 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 3 Apr 2016 07:27:52 +0200 Subject: [PATCH 302/520] gtkmm: 3.18.0 -> 3.20.0 --- pkgs/development/libraries/gtkmm/3.x.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gtkmm/3.x.nix b/pkgs/development/libraries/gtkmm/3.x.nix index 1401f763c3d2..37b1f816923e 100644 --- a/pkgs/development/libraries/gtkmm/3.x.nix +++ b/pkgs/development/libraries/gtkmm/3.x.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, pkgconfig, gtk3, glibmm, cairomm, pangomm, atkmm, epoxy }: let - ver_maj = "3.18"; + ver_maj = "3.20"; ver_min = "0"; in stdenv.mkDerivation rec { @@ -9,7 +9,7 @@ stdenv.mkDerivation rec { src = fetchurl { url = "mirror://gnome/sources/gtkmm/${ver_maj}/${name}.tar.xz"; - sha256 = "829fa113daed74398c49c3f2b7672807f58ba85d0fa463f5bc726e1b0138b86b"; + sha256 = "12h2kd22iayvjfhmgjccm33igrbvqdj7hym31fsa1y0dhwzmf8gh"; }; nativeBuildInputs = [ pkgconfig ]; @@ -18,7 +18,9 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ glibmm gtk3 atkmm cairomm pangomm ]; enableParallelBuilding = true; - doCheck = true; + + # https://bugzilla.gnome.org/show_bug.cgi?id=764521 + doCheck = false; meta = with stdenv.lib; { description = "C++ interface to the GTK+ graphical user interface library"; From fbbe6e24974f4bf6bda118e203d0c31402f51031 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 3 Apr 2016 08:06:03 +0200 Subject: [PATCH 303/520] pangomm: 2.38.1 -> 2.40.0 --- pkgs/development/libraries/pangomm/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/pangomm/default.nix b/pkgs/development/libraries/pangomm/default.nix index c13af349d43e..0de99ece5c43 100644 --- a/pkgs/development/libraries/pangomm/default.nix +++ b/pkgs/development/libraries/pangomm/default.nix @@ -1,15 +1,15 @@ { stdenv, fetchurl, pkgconfig, pango, glibmm, cairomm }: let - ver_maj = "2.38"; - ver_min = "1"; + ver_maj = "2.40"; + ver_min = "0"; in stdenv.mkDerivation rec { name = "pangomm-${ver_maj}.${ver_min}"; src = fetchurl { url = "mirror://gnome/sources/pangomm/${ver_maj}/${name}.tar.xz"; - sha256 = "effb18505b36d81fc32989a39ead8b7858940d0533107336a30bc3eef096bc8b"; + sha256 = "03fpqdjp7plybf4zsgszbm8yhgl28vmajzfpmaqcsmyfvjlszl3x"; }; nativeBuildInputs = [ pkgconfig ]; From 289aadc542e9e98c28613d824fa58ee0741ae4c9 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 30 Mar 2016 16:55:58 +0200 Subject: [PATCH 304/520] clutter_1_26: init at 1.26.0 --- pkgs/development/libraries/clutter/1.26.nix | 52 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 ++ 2 files changed, 56 insertions(+) create mode 100644 pkgs/development/libraries/clutter/1.26.nix diff --git a/pkgs/development/libraries/clutter/1.26.nix b/pkgs/development/libraries/clutter/1.26.nix new file mode 100644 index 000000000000..07f63e1e603c --- /dev/null +++ b/pkgs/development/libraries/clutter/1.26.nix @@ -0,0 +1,52 @@ +{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes +, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib, +gobjectIntrospection +}: + +let + ver_maj = "1.26"; + ver_min = "0"; +in +stdenv.mkDerivation rec { + name = "clutter-${ver_maj}.${ver_min}"; + + src = fetchurl { + url = "mirror://gnome/sources/clutter/${ver_maj}/${name}.tar.xz"; + sha256 = "01nfjd4k7j2n3agpx2d9ncff86nfsqv4n23465rb9zmk4iw4wlb7"; + }; + + nativeBuildInputs = [ pkgconfig ]; + propagatedBuildInputs = + [ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango + atk json_glib gobjectIntrospection + ]; + + configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK + + #doCheck = true; # no tests possible without a display + + meta = { + description = "Clutter, a library for creating fast, dynamic graphical user interfaces"; + + longDescription = + '' Clutter is free software library for creating fast, compelling, + portable, and dynamic graphical user interfaces. It is a core part + of MeeGo, and is supported by the open source community. Its + development is sponsored by Intel. + + Clutter uses OpenGL for rendering (and optionally OpenGL|ES for use + on mobile and embedded platforms), but wraps an easy to use, + efficient, flexible API around GL's complexity. + + Clutter enforces no particular user interface style, but provides a + rich, generic foundation for higher-level toolkits tailored to + specific needs. + ''; + + license = stdenv.lib.licenses.lgpl2Plus; + homepage = http://www.clutter-project.org/; + + maintainers = with stdenv.lib.maintainers; [ urkud lethalman ]; + platforms = stdenv.lib.platforms.mesaPlatforms; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index dc6087252b9e..5f453d6a7194 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6769,6 +6769,10 @@ in cogl = cogl_1_22; }; + clutter_1_26 = callPackage ../development/libraries/clutter/1.26.nix { + cogl = cogl_1_22; + }; + clutter-gst = callPackage ../development/libraries/clutter-gst { }; clutter-gst_3_0 = callPackage ../development/libraries/clutter-gst/3.0.nix { From 1930545c06d6f191e91741b9370157911d7f6846 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 30 Mar 2016 17:01:42 +0200 Subject: [PATCH 305/520] clutter-gtk-1.8: init at 1.8.0 --- .../development/libraries/clutter-gtk/1.8.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 3 +++ 2 files changed, 28 insertions(+) create mode 100644 pkgs/development/libraries/clutter-gtk/1.8.nix diff --git a/pkgs/development/libraries/clutter-gtk/1.8.nix b/pkgs/development/libraries/clutter-gtk/1.8.nix new file mode 100644 index 000000000000..a126f7709449 --- /dev/null +++ b/pkgs/development/libraries/clutter-gtk/1.8.nix @@ -0,0 +1,25 @@ +{ fetchurl, stdenv, pkgconfig, gobjectIntrospection, clutter, gtk3 }: + +stdenv.mkDerivation rec { + major = "1.8"; + minor = "0"; + name = "clutter-gtk-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/clutter-gtk/${major}/${name}.tar.xz"; + sha256 = "07dzvx0b3fsswxnpxgk0adjgccnrvbxsd971naqwndnfivbgjbkl"; + }; + + propagatedBuildInputs = [ clutter gtk3 ]; + nativeBuildInputs = [ pkgconfig gobjectIntrospection ]; + + postBuild = "rm -rf $out/share/gtk-doc"; + + meta = { + description = "Clutter-GTK"; + homepage = http://www.clutter-project.org/; + license = stdenv.lib.licenses.lgpl2Plus; + maintainers = with stdenv.lib.maintainers; [ urkud lethalman ]; + platforms = stdenv.lib.platforms.gnu; # arbitrary choice + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5f453d6a7194..85b48c63d344 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6784,6 +6784,9 @@ in clutter_gtk_1_6 = callPackage ../development/libraries/clutter-gtk/1.6.nix { clutter = clutter_1_22; }; + clutter_gtk_1_8 = callPackage ../development/libraries/clutter-gtk/1.8.nix { + clutter = clutter_1_26; + }; cminpack = callPackage ../development/libraries/cminpack { }; From 47b19b5645d61e35a30a41f999ca710e57a52273 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 30 Mar 2016 17:05:03 +0200 Subject: [PATCH 306/520] clutter-gst: 3.0.4 -> 3.0.18 --- pkgs/development/libraries/clutter-gst/3.0.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/clutter-gst/3.0.nix b/pkgs/development/libraries/clutter-gst/3.0.nix index 617501130ca3..c2bec3a7f1de 100644 --- a/pkgs/development/libraries/clutter-gst/3.0.nix +++ b/pkgs/development/libraries/clutter-gst/3.0.nix @@ -1,11 +1,13 @@ { fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl }: stdenv.mkDerivation rec { - name = "clutter-gst-3.0.4"; + major = "3.0"; + minor = "18"; + name = "clutter-gst-${major}.${minor}"; src = fetchurl { - url = "mirror://gnome/sources/clutter-gst/3.0/${name}.tar.xz"; - sha256 = "0ahn6m9ca78cgf7xad16sb50x4dx0fcn5ircllilkir84iri2466"; + url = "mirror://gnome/sources/clutter-gst/${major}/${name}.tar.xz"; + sha256 = "14w0pi9myvcn1yxzmk9sk8dghj17m5ji3aqdpfjikk90c060vv0a"; }; propagatedBuildInputs = [ clutter gtk3 glib cogl ]; From e148cf2bcacd10fb257610c006eef3d88c1f3286 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sat, 2 Apr 2016 07:10:49 +0200 Subject: [PATCH 307/520] uhttpmock: init at 0.5.0 --- .../libraries/uhttpmock/default.nix | 24 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/uhttpmock/default.nix diff --git a/pkgs/development/libraries/uhttpmock/default.nix b/pkgs/development/libraries/uhttpmock/default.nix new file mode 100644 index 000000000000..81ca7e750212 --- /dev/null +++ b/pkgs/development/libraries/uhttpmock/default.nix @@ -0,0 +1,24 @@ +{ stdenv, lib, fetchFromGitLab, autoconf, gtk_doc, automake, libtool, pkgconfig, glib, libsoup, gobjectIntrospection }: + +stdenv.mkDerivation rec { + version="0.5.0"; + name = "uhttpmock-${version}"; + + src = fetchFromGitLab { + repo = "uhttpmock"; + owner = "uhttpmock"; + rev = version; + sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4"; + }; + + buildInputs = [ autoconf gtk_doc automake libtool pkgconfig glib libsoup gobjectIntrospection ]; + + preConfigure = "./autogen.sh"; + + meta = with lib; { + description = "Project for mocking web service APIs which use HTTP or HTTPS"; + homepage = https://gitlab.com/groups/uhttpmock/; + license = licenses.lgpl21; + maintainers = with maintainers; [ DamienCassou ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 85b48c63d344..94d06e9c7979 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3786,6 +3786,8 @@ in udunits = callPackage ../development/libraries/udunits { }; + uhttpmock = callPackage ../development/libraries/uhttpmock { }; + uim = callPackage ../tools/inputmethods/uim { inherit (pkgs.kde4) kdelibs; }; From 9afd1161e715a7966a1f29bf6626e505ef2a7f2b Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sun, 3 Apr 2016 10:31:52 +0200 Subject: [PATCH 308/520] inkscape: fix due to glibmm update --- pkgs/applications/graphics/inkscape/default.nix | 2 ++ .../graphics/inkscape/deprecated-scopedptr.patch | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 pkgs/applications/graphics/inkscape/deprecated-scopedptr.patch diff --git a/pkgs/applications/graphics/inkscape/default.nix b/pkgs/applications/graphics/inkscape/default.nix index 3704ea2f9c41..e009676f2f19 100644 --- a/pkgs/applications/graphics/inkscape/default.nix +++ b/pkgs/applications/graphics/inkscape/default.nix @@ -25,6 +25,8 @@ stdenv.mkDerivation rec { sha256 = "06ql3x732x2rlnanv0a8aharsnj91j5kplksg574090rks51z42d"; }; + patches = [ ./deprecated-scopedptr.patch ]; + postPatch = '' patchShebangs share/extensions '' diff --git a/pkgs/applications/graphics/inkscape/deprecated-scopedptr.patch b/pkgs/applications/graphics/inkscape/deprecated-scopedptr.patch new file mode 100644 index 000000000000..94ae901394fa --- /dev/null +++ b/pkgs/applications/graphics/inkscape/deprecated-scopedptr.patch @@ -0,0 +1,16 @@ +glibmm deprecated ScopedPtr +--- +diff -u src/ui/clipboard.cpp src/ui/clipboard.cpp +--- a/src/ui/clipboard.cpp 2015-01-28 04:32:28.162676000 +0100 ++++ b/src/ui/clipboard.cpp 2016-04-03 09:13:12.360980533 +0200 +@@ -1402,7 +1402,7 @@ + + Glib::ustring target; + if (atom_name) { +- target = Glib::ScopedPtr(atom_name).get(); //This frees the gchar*. ++ target = Glib::make_unique_ptr_gfree(atom_name).get(); //This frees the gchar*. + } + + listTargets.push_back(target); + +Diff finished. Sun Apr 3 09:13:51 2016 From 99cfbda5c61416b37e4e49c0f6da4310cd993e14 Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Sat, 4 Jun 2016 15:10:26 +0200 Subject: [PATCH 309/520] libchamplain: 0.12.11 -> 0.12.13 --- pkgs/development/libraries/libchamplain/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libchamplain/default.nix b/pkgs/development/libraries/libchamplain/default.nix index c964801f300e..053d6ba8e7d4 100644 --- a/pkgs/development/libraries/libchamplain/default.nix +++ b/pkgs/development/libraries/libchamplain/default.nix @@ -1,13 +1,13 @@ { fetchurl, stdenv, pkgconfig, glib, gtk3, cairo, clutter, sqlite , clutter_gtk, libsoup /*, libmemphis */ }: -let version = "0.12.11"; in +let version = "0.12.13"; in stdenv.mkDerivation rec { name = "libchamplain-${version}"; src = fetchurl { url = "mirror://gnome/sources/libchamplain/0.12/libchamplain-${version}.tar.xz"; - sha256 = "19aadn4lh6mzpz2qzi5l1qcbi11a57qqv1zxp2n10z4nin4287l5"; + sha256 = "1arzd1hsgq14rbiwa1ih2g250x6ljna2s2kiqfrw155c612s9cxk"; }; buildInputs = [ pkgconfig ]; From 8ad607040ef622771572e282bdda49af99b2d2a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 6 Jun 2016 13:06:44 +0100 Subject: [PATCH 310/520] travis-ci: attempt to fix linux builds --- maintainers/scripts/travis-nox-review-pr.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/maintainers/scripts/travis-nox-review-pr.sh b/maintainers/scripts/travis-nox-review-pr.sh index f797352c5408..a366ac435bd1 100755 --- a/maintainers/scripts/travis-nox-review-pr.sh +++ b/maintainers/scripts/travis-nox-review-pr.sh @@ -13,6 +13,10 @@ if [[ $1 == nix ]]; then sudo mkdir /etc/nix sudo sh -c 'echo "build-max-jobs = 4" > /etc/nix/nix.conf' + # Nix builds in /tmp and we need exec support + sudo mount + sudo mount -o remount,exec /run + # Verify evaluation echo "=== Verifying that nixpkgs evaluates..." nix-env -f. -qa --json >/dev/null From b886ce25c1bce03dcd5a92654007405f69cc1ad8 Mon Sep 17 00:00:00 2001 From: Profpatsch Date: Mon, 6 Jun 2016 13:42:07 +0200 Subject: [PATCH 311/520] abcde: use makeBinPath to construct wrapper PATH --- pkgs/applications/audio/abcde/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/audio/abcde/default.nix b/pkgs/applications/audio/abcde/default.nix index 01b848d2d95d..dba813b39e1d 100644 --- a/pkgs/applications/audio/abcde/default.nix +++ b/pkgs/applications/audio/abcde/default.nix @@ -52,7 +52,7 @@ in --replace '#!/usr/bin/perl' '#!${perl}/bin/perl' wrapProgram "$out/bin/abcde" --prefix PATH ":" \ - "$out/bin:${which}/bin:${libcdio}/bin:${cddiscid}/bin:${wget}/bin:${vorbis-tools}/bin:${id3v2}/bin:${eyeD3}/bin:${lame}/bin:${flac.bin}/bin" + ${stdenv.lib.makeBinPath [ "$out" which libcdio cddiscid wget vorbis-tools id3v2 eyeD3 lame flac ]} wrapProgram "$out/bin/cddb-tool" --prefix PATH ":" \ "${wget}/bin" From 894b011381f05c6c3318611d7b67892ceb1e7a9a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 6 Jun 2016 16:18:53 +0200 Subject: [PATCH 312/520] geolite-legacy: 2016-05-31 -> 2016-06-06 --- pkgs/data/misc/geolite-legacy/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index de2ed1dde3b0..3086bc56ee78 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,7 +8,7 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-05-31"; + version = "2016-06-06"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" @@ -24,10 +24,10 @@ stdenv.mkDerivation rec { "1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "1hipamfmbmw6ifw60wh2a839ns2y9whms5zrwx06n2h3rgv26a60"; + "102lpcwsbrqin6wpg887hs0p05zcs7rdgrl9qv8x4mfrgnp0vk91"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "02iy4k1khjb3rm2w2hzblvjkhphs8ykq8s4maixc28ac8hy7lg9v"; + "06jglp1786bbgfn8wb1y8yxx3djzcfimacrmycwwyvgn1a5i80ay"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; From 354e58927588f39c1b1cbd572ee46b98eb2c47fa Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Mon, 6 Jun 2016 13:08:43 +0200 Subject: [PATCH 313/520] lambda-term: 1.8 -> 1.10 --- pkgs/development/ocaml-modules/lambda-term/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/ocaml-modules/lambda-term/default.nix b/pkgs/development/ocaml-modules/lambda-term/default.nix index ec9232645e76..60afad57b57b 100644 --- a/pkgs/development/ocaml-modules/lambda-term/default.nix +++ b/pkgs/development/ocaml-modules/lambda-term/default.nix @@ -1,19 +1,19 @@ -{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }: +{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed }: assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01"; stdenv.mkDerivation rec { - version = "1.8"; + version = "1.10"; name = "lambda-term-${version}"; src = fetchurl { - url = https://github.com/diml/lambda-term/archive/1.8.tar.gz; - sha256 = "0hy11x48q5bbh9czjp0w756cyxzr2c6qcnfm5n9f0i1l4qljwpgc"; + url = "https://github.com/diml/lambda-term/archive/${version}.tar.gz"; + sha256 = "1kwpsqds51xmy3z3ddkam92hkl7arlzy9awhzsq62ysxcl91fb8m"; }; buildInputs = [ libev ocaml findlib ocaml_react ]; - propagatedBuildInputs = [ camlp4 zed ocaml_lwt ]; + propagatedBuildInputs = [ zed ocaml_lwt ]; createFindlibDestdir = true; From 64674d24c38a4518d1a22cf81d79751bed158ac9 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sun, 5 Jun 2016 21:18:23 +0200 Subject: [PATCH 314/520] utop: 1.17 -> 1.19.2 --- pkgs/development/tools/ocaml/utop/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/ocaml/utop/default.nix b/pkgs/development/tools/ocaml/utop/default.nix index b5de65b7c10f..45888924a2ef 100644 --- a/pkgs/development/tools/ocaml/utop/default.nix +++ b/pkgs/development/tools/ocaml/utop/default.nix @@ -1,23 +1,24 @@ {stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper, - ocaml_react, camomile, zed, cppo, camlp4 + ocaml_react, camomile, zed, cppo, camlp4, ppx_tools }: stdenv.mkDerivation rec { - version = "1.17"; + version = "1.19.2"; name = "utop-${version}"; src = fetchurl { url = "https://github.com/diml/utop/archive/${version}.tar.gz"; - sha256 = "0l9lz2nypl2ls3kqzmp738m02yvscabhsfpj70ckp0p98pimnnfd"; + sha256 = "0hxybkqmrh0sz1yyyrgzdmxp46gda4vk22pv07s0qpfg2dpv56jh"; }; - buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ]; + buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ppx_tools ]; propagatedBuildInputs = [ lambdaTerm ocaml_lwt ]; createFindlibDestdir = true; - configureFlags = "--enable-camlp4"; + configureFlags = [ "--enable-camlp4" ] + ++ stdenv.lib.optional (ppx_tools != null) "--enable-interact"; buildPhase = '' make From 21c83f294d13493690f565d86e4097192c9621bc Mon Sep 17 00:00:00 2001 From: rushmorem Date: Mon, 6 Jun 2016 12:58:51 +0200 Subject: [PATCH 315/520] kubernetes: v1.0.3 -> v1.2.4 --- .../networking/cluster/kubernetes/default.nix | 14 +++++++------- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/applications/networking/cluster/kubernetes/default.nix b/pkgs/applications/networking/cluster/kubernetes/default.nix index 56d4cc7e769b..bc3247c4b3db 100644 --- a/pkgs/applications/networking/cluster/kubernetes/default.nix +++ b/pkgs/applications/networking/cluster/kubernetes/default.nix @@ -2,21 +2,21 @@ stdenv.mkDerivation rec { name = "kubernetes-${version}"; - version = "1.0.3"; + version = "1.2.4"; src = fetchFromGitHub { - owner = "GoogleCloudPlatform"; + owner = "kubernetes"; repo = "kubernetes"; rev = "v${version}"; - sha256 = "12wqw9agiz07wlw1sd0n41fn6xf74zn5sv37hslfa77w2d4ri5yb"; + sha256 = "1a3y0f1l008ywkwwygg9vn2rb722c54i3pbgqks38gw1yyvgbiih"; }; buildInputs = [ makeWrapper which go iptables rsync ]; buildPhase = '' GOPATH=$(pwd):$(pwd)/Godeps/_workspace - mkdir -p $(pwd)/Godeps/_workspace/src/github.com/GoogleCloudPlatform - ln -s $(pwd) $(pwd)/Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes + mkdir -p $(pwd)/Godeps/_workspace/src/k8s.io + ln -s $(pwd) $(pwd)/Godeps/_workspace/src/k8s.io/kubernetes substituteInPlace "hack/lib/golang.sh" --replace "_cgo" "" patchShebangs ./hack @@ -46,9 +46,9 @@ stdenv.mkDerivation rec { ''; meta = with stdenv.lib; { - description = "Open source implementation of container cluster management"; + description = "Production-Grade Container Scheduling and Management"; license = licenses.asl20; - homepage = https://github.com/GoogleCloudPlatform; + homepage = http://kubernetes.io; maintainers = with maintainers; [offline]; platforms = [ "x86_64-linux" ]; }; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 46f6a9138e1a..c05e16ace56d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13178,7 +13178,7 @@ in ksuperkey = callPackage ../tools/X11/ksuperkey { }; kubernetes = callPackage ../applications/networking/cluster/kubernetes { - go = go_1_4; + go = go_1_6; }; lame = callPackage ../development/libraries/lame { }; From 697437c8e7c49beec77dc853d051f06656d3439b Mon Sep 17 00:00:00 2001 From: taku0 Date: Tue, 7 Jun 2016 03:23:43 +0900 Subject: [PATCH 316/520] firefox-bin: 46.0.1 -> 47.0 --- .../browsers/firefox-bin/sources.nix | 370 +++++++++--------- 1 file changed, 186 insertions(+), 184 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/sources.nix b/pkgs/applications/networking/browsers/firefox-bin/sources.nix index 1c588af4992f..8c9d08343d48 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/sources.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/sources.nix @@ -1,190 +1,192 @@ -# This file is generated from generate_nix.rb. DO NOT EDIT. -# Execute the following command in a temporary directory to update the file. +# This file is generated from generate_sources.rb. DO NOT EDIT. +# Execute the following command to update the file. # -# ruby generate_source.rb 46.0.1 > sources.nix +# ruby generate_sources.rb 46.0.1 > sources.nix { - version = "46.0.1"; + version = "47.0"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha512 = "f6d47d90c084b78085b7fd9553217a982e391c146eed82323dd6b5e75bfa12ec48acf068b7e85fc74fc3d18bdf37ddba385b0b53c74f91a2e11a45d000a6a515"; } - { locale = "ach"; arch = "linux-x86_64"; sha512 = "7b561ee5a1e7e1d52a6be6775f5c3e9f2e0a5bf13910241d8dad228e0f8d5e5c452efd9beddc3cd9153766750134503ee3246dd1fa0b692c0ce9549b6bc3b32f"; } - { locale = "af"; arch = "linux-i686"; sha512 = "cfcb27c3b2a0ce16faf5911bfdd7f0512144580765d5a086298c73476005e629ab414d6c85a862bbb5bbe1677e5efdbe88f9a2e0f41055d3f0b83717efe550bc"; } - { locale = "af"; arch = "linux-x86_64"; sha512 = "8d3f25168f7af269dd863d64576d0b4926adba71f6e2d3aee302e81b864eb85ccb4792b3e7e38cb12e2f949a0575d50002330af8aea8a21bee28a3b50f54a865"; } - { locale = "an"; arch = "linux-i686"; sha512 = "574c6a6985635c04f781233fe76ff53cf1608666e1fdf5958a95afbe85dea696265005b7f6ef5633b3124a25c673ec1b83de1fe9aff17e3d88cc9a1f6177aa2a"; } - { locale = "an"; arch = "linux-x86_64"; sha512 = "f057e6f20ebd20b5f6caafcf9117fb80af2c671f8fe5aa5814b0839e379e79f90b03228c0cca3ce6412ce3391b5a15c6cb464c8598c5bd6efbad11795eb247fc"; } - { locale = "ar"; arch = "linux-i686"; sha512 = "3ed1904d3470265cf0af654952395795b44b8b33d8e6e17ae8d4a7e48c381c8ec1b17e297e491ddc3434fe4a5bc5403ba23e328a13ed37ff119fbbd98b2646df"; } - { locale = "ar"; arch = "linux-x86_64"; sha512 = "d8a2ef1b106241a1acf71a1e2e7fd6c2bbecb14ce137ca35cf206616e08900c20f4ede255913571a2cf04467e62758f580d72701be2ec4d2a8bced4a346a2a3b"; } - { locale = "as"; arch = "linux-i686"; sha512 = "b82397fd21af47630b284e7897119660b5d83775b684b6d1dd3ba06184a37262a6569b499d0f2a3431d576d1ea862c89dcd9a8d442f76d385fbfc2428fdda390"; } - { locale = "as"; arch = "linux-x86_64"; sha512 = "16a2672b532426e024ff8900853c2eca8498337b5e628d02e3b61950e33b01bbf202c9448200e7107ced7357c41797b2858a01982f21badbcdaf5df9dec750fb"; } - { locale = "ast"; arch = "linux-i686"; sha512 = "a1fbe0bf3daa30252a525a435eaf276ee29c51e7bc9f34826e1fd4817577d3cba8bad47af5bd5a31b0d77939e6475b81d1f6858364d2425df5d94724d3569228"; } - { locale = "ast"; arch = "linux-x86_64"; sha512 = "e11e54442d958f98b5e36747fdd7f95341129ae6888c61d98465608c48526465197a33c8f9c299cc5b2ce620b72734d2f2d6d15c05f0725c6b20bb62e47a0521"; } - { locale = "az"; arch = "linux-i686"; sha512 = "3cc0a9e3276b283890b8ae9404b562b1cebe0893f459f31f9893d3c6d73cb074bedf51ce11eb062373d79273005cda0485b26a9de09c7358d589137d7c641cba"; } - { locale = "az"; arch = "linux-x86_64"; sha512 = "955d0e39c9d82d43a137f933e9c34a2e28103c79511121e4e25ee97f9b6abfbb10f5a8ada0c1d31fca8dfdf37b18d62c1fa5715483c6dd60aba584012a7eff7b"; } - { locale = "be"; arch = "linux-i686"; sha512 = "7d1251a115f7b590e1fdda6ce95c6a883ded1e477028c1f47bff3c6d41308fbd6e636e81e551ed629d6c885a1a348091c582c26f610aae7e0313024949bcd963"; } - { locale = "be"; arch = "linux-x86_64"; sha512 = "b23476c0259ede183fa4ed7193e80ce741ed05b3b88935f88291cdf6ce14235e1d31bafaf25edc16b5a7cb62c9671dbb235782913e9fbf10db48ff9f022c8043"; } - { locale = "bg"; arch = "linux-i686"; sha512 = "736dcecd01eafe4ca71da494ada47dc434eded887e8100db1c308ad0ae1d35d6ce565535fe153773896482312b65d73cad9d09478830420b5490370f00059c98"; } - { locale = "bg"; arch = "linux-x86_64"; sha512 = "c25d754286263ed58772f6bc1a13dd3c2525eb973b9cb4783fa2c57b80e117df5f8c5524aa60fccef158b4d80ddf214b50ce7b9e8631b14e60aad0bb6158f4d5"; } - { locale = "bn-BD"; arch = "linux-i686"; sha512 = "7e9ff9e316b253e8f3da135535fa38a70ad34183ab4a46d865c1384ae7df72cdcf9eeb8e85fc7e3fe0e0f8c01d50fc3212631f49ad74e34b236a652c929f1149"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "e26be6867709dc3827ad893efb7bb64c510506582683f4c82b7f5dc2931cd34075bb2001da6b3671532ab1a500d097b21388dcb0400f11c6c5c341fe1edf9136"; } - { locale = "bn-IN"; arch = "linux-i686"; sha512 = "eb93ac222e6d156b044e19d945d7b74ac70224f295cc533012ed6978faf07e0c8214ea6eae355b9905dfedba8a9fba9601224c1eb8c11a6c7e9575cf90ed0ccf"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "4030a6653fb4326ab8d4bc27b9d3e194760d2bd04749f102014b805253438ec04f0a1df0d5f14e62f35227b671de193213e79be947bbc31dc772885048b1001c"; } - { locale = "br"; arch = "linux-i686"; sha512 = "dbd75807aab017e012be8138fc6f2b470cf88a7f9afae01de4296dbcbcc4a37754f9d23fcc892efcde4df4e9b8a16c93201c3f93f976987b6be4f80a907483fb"; } - { locale = "br"; arch = "linux-x86_64"; sha512 = "0b06186b4ac5c5d69b46b4d571acc23d5193e4dafb1cac4ebaf36f7fd1f12ff4316d47f8340abce72dfe5b8801294256a9c029b6bf9fb77c7ee6174d6178378f"; } - { locale = "bs"; arch = "linux-i686"; sha512 = "e708a86177d3d3a855a981ee81c7bc163e886c279f84c6dcfdd3f6dc2c58d0661fcf416b2afd8b74ba127713e5fc39b9f188341b2e84fa03476c07b74ea07a97"; } - { locale = "bs"; arch = "linux-x86_64"; sha512 = "aaccaef63d0150bd2f0bb3cb978fa0d99f8b25ee70d4621ffd5bd7d7843ab92ac778cf9ac85c9762583706a78a5bb5e0066bc46c880c96623b92acd919e37246"; } - { locale = "ca"; arch = "linux-i686"; sha512 = "ed0f97e485abc2342dac0083311537b98d5c38005bd6ed1fdf817d1d186442cbfb1a71bcb1f62e09e873c36e350e8905611e3013a6dea20921b9516f82ae4daf"; } - { locale = "ca"; arch = "linux-x86_64"; sha512 = "16a6cf783feff0658bc41e893873bf5621e2b663834cfe13bfc07980af290ad2f582ffe08af8bbc46624e6eebcc468c3cdd928b2392a57dd8a730c2ca98a476d"; } - { locale = "cs"; arch = "linux-i686"; sha512 = "c8e0e40a4001ad734c23f407c126ddaf36e967ae7a08c34f3e562ca986fe941891f3580e39ac3b521b9c8c18b9e21bc37595716f943d252e69d03fa5a18a73c8"; } - { locale = "cs"; arch = "linux-x86_64"; sha512 = "f5a9091c4202a578dfb7a863c5bd5229882af85fd1b0d3ad491963f928e9f91c78a742d3e68379df233346169351db4b1773517194a1c48e533978f7189988eb"; } - { locale = "cy"; arch = "linux-i686"; sha512 = "ef2ac5d8a9881d3f1659533a88cb4b9ca1bf50b5dfb11f7efbeee9c51ddebffdb302ad80fe88760b9a592c670f93375551c85f37840b9f35f2729b575dd0d273"; } - { locale = "cy"; arch = "linux-x86_64"; sha512 = "fd091f53184e6ad5cc4dfa92cb9fd146fa116055576b51de51ad8e335babdd55f62083568eb34821c0cdc882d61854f9f1f69ffc3913f711b9f6ae7b42d096a9"; } - { locale = "da"; arch = "linux-i686"; sha512 = "b45f88694c49a59110d1bd19af371fe8308200de9d21858d71ff69bbb3a75c2f71e9c7691513359cac7085173fa4678aecea12db5f274e7f0855680f6e8434ba"; } - { locale = "da"; arch = "linux-x86_64"; sha512 = "65c8bbbaf59e749502b35412e3ced200e1d5028b615b27e519932cf87d0c18e9dfa767c90f933bdfc3afe064e0b5630605338e8c14f405b9a3fd15ff350cff59"; } - { locale = "de"; arch = "linux-i686"; sha512 = "9c55735b51f7290f90b665c91fbdeebf285e82c30ea0462670064c6f30b3ca778cc0f7dc005df3308a46430b20e2aefc9fa4176f4b119c1a1a67750e646639bf"; } - { locale = "de"; arch = "linux-x86_64"; sha512 = "4871350400a76ec4a2af37f1c166da9b1c28314afca1e5c73e4180b6d8f023b036d9d4cf06a52460cc2bc2dac8e086862d433ff70b0e9add80c4f6bd086e7085"; } - { locale = "dsb"; arch = "linux-i686"; sha512 = "16a12385c1d2d7efd17fd904dc5b6c223319a482d673953b1897db908c8c80f58943d14ca8c88b82beab4a94548ad3d8d0f7c6e47f9bb219e22078ebd3b6f90e"; } - { locale = "dsb"; arch = "linux-x86_64"; sha512 = "a81c4e8d18d042bd555fb163de4505f326ed9c40244cfc84db7fa9d346e532a8e8e78218cbd78bc4ac751ed04c3f3e4573edb0b21786f231a08547ba4e63f1b4"; } - { locale = "el"; arch = "linux-i686"; sha512 = "50d0ce8a20a0bb6d5b3ba88d70428aa40dcdbc7993bd8802c3f77bf2e82552d6e9c5ff8fbfa8731b38ebea0511a18e65dab7fac92dee0714be7c5e539e3a8965"; } - { locale = "el"; arch = "linux-x86_64"; sha512 = "d8a0fa5a3c0cf0de77aa9dd0882d35a336db5f068e9dd87169201e5d5bf4960880975f3c7af193ee537c6692dab3a86bfc57416f9132791a32094c6b12e05a3b"; } - { locale = "en-GB"; arch = "linux-i686"; sha512 = "7c509f7c1760474f41f31260f30ca8aa6fd89f8fde699b4c6adfcbe73dd40b320397f3753d40467a60cb915a6a91745733019ea9d33452bcdadab8950e20d165"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "ab5f82317bd2f7aeb68295c39526fbdf1f7c8301b5805dda530d1c0f40922622bf75a9bcaf543036c9f039222a59d70054d63561f851ff7e5c10e87794d64148"; } - { locale = "en-US"; arch = "linux-i686"; sha512 = "d8824a0b2dfb44558308a7f240884c0f73b3face4077f59c01fd8352d33137f4799e417de9befe6865ede03dbc77ea5700e95d87783363a332028bc26ea681b2"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "417c63be1d010cf134940be7f30a69d33dbe005a7789cfebb1161f2aed8384f90b5cea6c097bdb2102737b948684657bf2bf704324f131a4e6b41e56161e4235"; } - { locale = "en-ZA"; arch = "linux-i686"; sha512 = "a9468aa01d2223c254a7c07407a4e3941a5433d5237489b097ea6298537867679fbd6baafead460bc18951d1401e8c3fc100fe28492cbd745772afdb7b708541"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "1e249c7342fa47c868489ff8ace68696b51b83563677c232f854f29f864881823e451113af444cc6f761539b590192a03461069d175ea50304308e5a490bb8a9"; } - { locale = "eo"; arch = "linux-i686"; sha512 = "e96b37a25ab897ff4956b42f75b2b1a4f7bd60ca54939712fc356e77e2e2d8255bcec767971ac3f4215894e2b90a5204e72e70b05c28173a1179a5d8d5810b0d"; } - { locale = "eo"; arch = "linux-x86_64"; sha512 = "0679199691f725cc1d3224cf351c7910a50d6e68496b53a780ae1ef42ac13ce0616eab370db310b0226205709ce6c0fb414d2503c8ea7b3c8c53fbcdb30ea470"; } - { locale = "es-AR"; arch = "linux-i686"; sha512 = "c5f813bb95f547d220ea6de23d57dae990904e7921880eccac0a987668103ed53086deeadfeb9ca548bfc5f9e4b56d0c90de15ce29fe4c5e40a6e0e084732ae5"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "e3353f9f4621a6e2a3a84d7ebe5dafae8a5f7912afb3c7c949590abfb40b3c8fff2baefe635a435ac5b50e402ab60cbbc2a34b653e31b868e885acc0002fd774"; } - { locale = "es-CL"; arch = "linux-i686"; sha512 = "5538d7633a1d1b8cfe3304fe1e6d443ef329554f299c43b0efc0bd8e5d4db07cd5f894741d8ea9ccb3d20bd2d058a7239d89cbc37807ceed5931d820db364ff5"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "685c1b68c412473d3f1449dd26b69b0182a2ef3e298e240cb147ad134b3f18a4c88aecd2e328f87106a2a2be70dcad06f8637cbf15f89320e196c4710aefd417"; } - { locale = "es-ES"; arch = "linux-i686"; sha512 = "095b8453d3a6f829a9be6445a345293e1697e2253346da2c6d22958d19f921dab897d52782ff901dcbd5710ee62641d6ca45675b4afc8b15874dfc3f40184649"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "8f9699720a1e4b2ad92d6dd32bb553e5ec2a7c1038f8f8469809f351b6798f94190b2f8e9ec45b2888422d64dfb6106e1e5d5272d9275794ae1c3e5d23c43340"; } - { locale = "es-MX"; arch = "linux-i686"; sha512 = "fa3116b5b40f4e844d39380832bded90bb7dee573c475fe7f4002fc871846fa6f52cc090d5704049e5ff296c93132bec6d6923f707aaa6212d524b4aa514b42b"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "a6d577f962ca2b9ebe7c4fadb372ff3322a40aefa4229b7a2adae05e6ddc8ef60e90134c15604c8cf88b794f545f566dc090a55ac36e93fcd03333680043c4a9"; } - { locale = "et"; arch = "linux-i686"; sha512 = "c4e6e4de6e3b7e28027ef44c995fa87baf22f97bde603f9b2ca08d9282efacfc8ee410557658b6fefa9867aaea6ed35161f1ba6bcf83eb3581c28a68c573fadd"; } - { locale = "et"; arch = "linux-x86_64"; sha512 = "e4362621a4fa025388b565ebf7b3ce1d94976a1421e5d73a98647e9d0d3159b45444eb0f84462d668026567aaf6c8971b7bdd075c5b498b95a78c4dc84f6d368"; } - { locale = "eu"; arch = "linux-i686"; sha512 = "43f58f824deab2d145bfb4200bc942b29975a86ee66c760b955f3b6647d0f8acbd116b175c4a1c7b4be9beaa62f7c56a8ff132a3cef41c1fa3cc7246ce3bdfac"; } - { locale = "eu"; arch = "linux-x86_64"; sha512 = "a4a3091e35e276ee0b8db78993174f18efe1dea0c2ae3fbcdf6c75102a0f0baf4177c4b08d5532267ccf6991d3ebf96a0b9c2e4b6d2fb405a230d6ef3ebac98f"; } - { locale = "fa"; arch = "linux-i686"; sha512 = "b78c60eb33a408ddc37d09d00bf077958dc75ad50e34b41cf41cf0ee3ab1e6a133a01b7759015d2be3869c621a20bf92e13a1ac39f998040650dd228381b3ecb"; } - { locale = "fa"; arch = "linux-x86_64"; sha512 = "e95b6fe546f41f24b749dfcfd9c98129f97b1b0034e1af8f787203ece66f60c30a6670c1fd76b14433efdddb834c95751d4bb61c3b269dceacd46d9e0a515706"; } - { locale = "ff"; arch = "linux-i686"; sha512 = "398a80d6d4511a9c372727ab6a52a85db90ad8cc922f5d709471a40151e81319b5683d84110541bc721a8c15b18617e5ac44f7f54f2b2f11a2b7125e914d1f3f"; } - { locale = "ff"; arch = "linux-x86_64"; sha512 = "3b4371581bc077c77d7ee5781fbc82d82d746f82babbe66aeb1ca0d7c6a3fc168e0eedaccd8bce8cec67bbb072158beee8efa49523fc90ac3ddc481d1966c8f8"; } - { locale = "fi"; arch = "linux-i686"; sha512 = "2f9276a91d2ff06142ba2b3df972d3bbcb61d43a9f8116cf32f09ee1c739a8386704b2fefa1ee45282a6a81b4009ab5deaef214120d5705ab65e768b28f8e981"; } - { locale = "fi"; arch = "linux-x86_64"; sha512 = "a803ebabe7f4ec0004d6ea888e70bc97c23a4d533ea9fe7e546031e530a32c4bdba2cf72549dd58939f92b1e0373dd9fd66833bb56706a877d75db4d7c5ccbca"; } - { locale = "fr"; arch = "linux-i686"; sha512 = "30d473d7f05e5082f5318033186bced91a087ede297581b06ef6b3383444fbc9e16f558694381574191564459b43c271ba255b6b3b3ac5d96a0bcf1e7b066b44"; } - { locale = "fr"; arch = "linux-x86_64"; sha512 = "d5bddce8fe9b6c2844cbedfe8c73930159fb189608e282dc0afeffe0e40fe8573eb3a6769fb18280c5aae58c90eec7d6808f18944ba8065476f84d9938c7f9c5"; } - { locale = "fy-NL"; arch = "linux-i686"; sha512 = "3757da3afd154b88a64bd6f505c89e2fb3df8d966d2219404bda36c3d00f90e69c35f6d1c5d33c1eec0075e2ccf7982bcbfcfc7766b62a5660a73d6a00bfc966"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "4101d6c0d8c257490781b90e93acb75f72486be9e7661f82c3c6cce3be387a51d03d458c7ef55cbbd9f0469ad1119405856c12b28f47d4262d89fccb773facd6"; } - { locale = "ga-IE"; arch = "linux-i686"; sha512 = "56ffc97d50570a0a155cb30e389b5590aaafae32b4a326c2d9deaa2a61ebef272709eb6173682e1c10f0f5e24523fd8d8ab53ee2f35bf9787bdf7c29ae4574de"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "faaef2808b901c5ef0d74d1bc69280f67b233ab720eb8139eb23ff9977c3ae32063b1ea1d948ed2240a4cb921ad2e07df06c71a99b210021d9a8f9178d6bc4d8"; } - { locale = "gd"; arch = "linux-i686"; sha512 = "0396cbd5bf6c3a9dfd829d1cf388e3b980b8b0e3a45659c4c339f867ae485c252e296a141035820f47d8fdb05c10350eb53e6da9d7d2942e77e1c04142440758"; } - { locale = "gd"; arch = "linux-x86_64"; sha512 = "1208d5cfc20dbc18a0a6e6dcef47425c36cdb5b98ac41e7d7b53c74d64ba0a4490273628ff23ca91f2ca4e016702d7e8ab4457219b5aa06f38f787243befab7d"; } - { locale = "gl"; arch = "linux-i686"; sha512 = "775403801f21d821b586b866820c9759fa88e7b0507d0477d29ac033ef3d40bb78fdc6b88cd4d7e5bc4fb6bbd38d950432db339da7a28e8283d07eed00d2aaeb"; } - { locale = "gl"; arch = "linux-x86_64"; sha512 = "d8a1088bdd413ae82cc488cce1d87a13f85fabb6fabe25dd343a806ff2c7a7d17c90275c5002434e07acdeddb893b34532f0265e7a6f9e18a312bd0903c76738"; } - { locale = "gn"; arch = "linux-i686"; sha512 = "a7bc239dd02bcf0e7e08016cbbf925f23811f63679956adc3a327849533c37983837c5de5a7620eafbacdedb9af892d51f4ee43df5a722795913d992b25ccd1e"; } - { locale = "gn"; arch = "linux-x86_64"; sha512 = "10c44f03df9b183b1e2f27f7a1628bb0cbae24f06d0395f4b57584905c5e8998535cd45030d2e4e93b9390a6d6e4a6f2cbc8a68a8bfdad978b4eee2790f84537"; } - { locale = "gu-IN"; arch = "linux-i686"; sha512 = "fcbae07a790973fd3fb16de39d8cadaddaf203efbeb3cc37065ad85ef9ee32ed02080c00343f8028f54898e44aecacc7936529cb3107323a869b9978fd85a5fa"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "16ac0309932e46e035537a9a17aaa44c523715ac5ec189935533d3ce473f8323f9784c742ae8e0527db8988b56efd2dee40062cf6eb4c2fa5982d435d0aa794a"; } - { locale = "he"; arch = "linux-i686"; sha512 = "b9ab9857549cecb2ea706f240bd988c9dbc9e24173e4c37443cb3915664e03f60042f72474fb726811dd0e08780251bee8ca353b299b761a6bcbe2bc6bbef368"; } - { locale = "he"; arch = "linux-x86_64"; sha512 = "0bffc9d5939f8347d1c08b4ca5a9dd64e53d7c15e8c08b4a6a1c51b089fcfa5e9e80b47d71728e5279eb57c0393e7e2e6f91a6ed891e30d73b02a3fe36a5aa1c"; } - { locale = "hi-IN"; arch = "linux-i686"; sha512 = "4a2485c41c48e6a3235084318df1b7a1acb3f032e9ffaf381587eb61459e04112bb9bc66775fd43f8d6f71e38ea78179b34ed2338235648f0de29f43ac2f8ed9"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "721994a7f480bcbb149ff4d1ee3e8ff230098dda8ef434276a73b42098a5d5900b000ed0409586236b33e25c4d6b943a0fe8fd1823e7c4a44ffeb41cfa2a9911"; } - { locale = "hr"; arch = "linux-i686"; sha512 = "4d0af384a421871a87a23232dcf272cecdf16d0901017f6485cdf2b851c48e02e0f4349714bb628dd1d34121b7d428e746abcce7130216d283ff858a4da749c8"; } - { locale = "hr"; arch = "linux-x86_64"; sha512 = "8565b7d30dfb1070d82f34cbcb9f7913fba78beda600214a306594deb2f01dde893a1e1b9753efcaa686a385ec14799ac1e1a96ce9ca80fd0e0731691e7b46fb"; } - { locale = "hsb"; arch = "linux-i686"; sha512 = "784dec7015875dcdb784e909c3b7f0e6bc09bac753b4bec4bcb0cb9413922a0887959d999ea3ec2e85cc361618cabcd59e6eb9f1993079eebd0f981e79a33070"; } - { locale = "hsb"; arch = "linux-x86_64"; sha512 = "8f9baaf433fc34278c2ee78d5c38f71c9a02b26c18500688225f03bca8eb1fc5460dcfb20f6d4f1bd54fe4095a09a94b45fc695a38c69e4aa52b6457f65c461b"; } - { locale = "hu"; arch = "linux-i686"; sha512 = "61ba87779c9a669d088af105266818be476aeff86fe93342dee90fec2aeaf687c437f9b05e71c249e2147eae10c2194fdd14c8f44ce31bc4f530f52224e844c8"; } - { locale = "hu"; arch = "linux-x86_64"; sha512 = "852785314f3b56eb0cf0ff756518b428e5276e18e476cc1dc2fb8ff37b66cf1857fb28f40b5c86e7626f3684112943d117cefed4527aefcae03b10b871266737"; } - { locale = "hy-AM"; arch = "linux-i686"; sha512 = "f0a2329583a806a882b0d4fb7792badc074d1bb87e243a6f71327574b47f7fdddd9eea1b89f3d08f11b9436a4f6b8e558e9e52c645b18d56e3587407983c56ed"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "bf5c397b2bc3ef4cc1228df95989adb03c347ceca0630ece474e92af316289ef877ee3a9266d55a55aa6d770d48dff745515d7b8c8c868fcf788eb3587c8fa50"; } - { locale = "id"; arch = "linux-i686"; sha512 = "08d0959fe051109bbbf2e5b3c72bf4b7d4b3e4c92994b7487d5be50636599369bd74e7b8433142424dc64ffc1657a3e64f2c37c88af16d3f04e1679c0bf4c73d"; } - { locale = "id"; arch = "linux-x86_64"; sha512 = "a163d4270ec8e090b69cff1f94c2ea0d488dace58483f7ee1844af1db5fdd120bab3304b50feeed615fde478b18b0ceed5bddd2e2415a783ab4941c235db4691"; } - { locale = "is"; arch = "linux-i686"; sha512 = "249c58f2ba60deaa93d36e4d3bb4aab80be8a8d45c8669bb659a14edf1afc3a9a7441ed8e05e4724c5e64a153b583a1f43820068cc49f719b58fbfa36d059f22"; } - { locale = "is"; arch = "linux-x86_64"; sha512 = "b2468ba5d1bd46b8772d022f6d2e7ddc2661a83c0aa3d5573d3a892944abbd9952a4854bdc7be4fa899309340e712e5ca13ab3bd5d11e9e07ff50c26b5942248"; } - { locale = "it"; arch = "linux-i686"; sha512 = "2716f0138f74c2253355c1c00542503908a747ba0f0b26f4e79ffa8c3e343038e0e1b6c8d1fe02ba5bf1a0d8b0ffd22b7afe53b1a7964eb304e5ef263c04ce8e"; } - { locale = "it"; arch = "linux-x86_64"; sha512 = "25a51e8f55e1fbaf2ad9b496c4d9c80fdd21675af106fce1a71893bfa828e27e5d9c610e176ca80dcff6b5d0a7a6c860229586cd1f8619ca4eb8856f095336fb"; } - { locale = "ja"; arch = "linux-i686"; sha512 = "e2f69658e4a4d6f08f6a0f603355f6c421feba8b523aeddd34121f26ca42092c004fc678821286af355971cb8cf1156755796589bb5c5eb1ecdd8d0b6dc214f3"; } - { locale = "ja"; arch = "linux-x86_64"; sha512 = "344c9c073e7175e71b4484a9e2e8283a12034d752e6597a604dd219997181531302250bc8a37c4ca442d58076232fa2c250356194e710dc8a00be03a0e874bf7"; } - { locale = "kk"; arch = "linux-i686"; sha512 = "accdcd87c2b20fb6ff913978e117272613ebfd9154d20b12410930ef1c6b3375425c8c4fa20ee8e8e393fc906f422cbd5cb24f6d2914d5bef89e0254d075e0c8"; } - { locale = "kk"; arch = "linux-x86_64"; sha512 = "6a446286f867fd2775b0863c8aada5b4b8349c114589f869c8d1ef488bb1027dd98dd74ef0fd0fa1b16fb135265a7be8d7624f84b32dc42d29c7d4a65ab1e153"; } - { locale = "km"; arch = "linux-i686"; sha512 = "ee879b225b8f412a8117c33d6c5a9c617b9555d44fc393d6742844083ee83248f8434d00723db2283153496b0886080c20e67df9d7268a6c185a8a1f5b01e491"; } - { locale = "km"; arch = "linux-x86_64"; sha512 = "7cc1cb48aa31784c28f74f1968b798b34025ee20e7088eee2a33cc4f9919b59862b75f791f09f63c7f25cce29043750070064921d327c48a516fc22f26073a32"; } - { locale = "kn"; arch = "linux-i686"; sha512 = "9868cc4cbaab89dc4425ba14f621750a017a67d5be1a6a63b3a31d0482908e0225d40bc26fedca3472669185d43a780ae4e897994b309644a9d1f80edd2470f2"; } - { locale = "kn"; arch = "linux-x86_64"; sha512 = "d6c5ce52d8545935c28387b5a314d1b0fb11bed03111fc7c66da3dbffb72e7fd2ba6c12b7f2ccad3f5df45f897e8c8227428040709c1cb6f3302d06fe050714b"; } - { locale = "ko"; arch = "linux-i686"; sha512 = "3be5f165bed0e7ef2c4f88a9799485d12a7a6f99c4efd84bf9aa21abe787ed790d6ec103a7b95015bd64987d231303aac17a8947c8acc7127ddffdbe7e3fb4a1"; } - { locale = "ko"; arch = "linux-x86_64"; sha512 = "05a55063f9d9781074c76287ba9d1aef707a603510df956019e65f0a07412850ec29a44fefbb71f0ce8d3f419a40e06f725c2f23b05e8051783bda8f1dfc1d23"; } - { locale = "lij"; arch = "linux-i686"; sha512 = "3d9b7cefbf4cdae6855b2c5315cf192e6f04d4af115727ea275aef40b8819cb0a4bb31b7703cfca0812bd58f0d4158c53a5e0b4140cde6825338fa2bc5aab5e8"; } - { locale = "lij"; arch = "linux-x86_64"; sha512 = "2f050e77efab6947746f582246290b3709e206520836912c52fea9208a25f7fa5bb7bce0fa1ab2adb723acdc0586245eb1c68c3b172096af7bebb04c864405a1"; } - { locale = "lt"; arch = "linux-i686"; sha512 = "f438a37846f95c714650f882ef2ff20b9e82d352eb8159d7001d110f9b20347fe5d19ab0805ff95c3c9007a4cc7dbd4a75b9a28290cd21d2affdbe81defa58fb"; } - { locale = "lt"; arch = "linux-x86_64"; sha512 = "f4726e669e71669c3f9e9524e75e749386062a91e0909dc371a7b4ed0dae73647a855c052eb3d8fc8283438782192b2d35b795b2c0dc498e69e5b29916d1b57c"; } - { locale = "lv"; arch = "linux-i686"; sha512 = "49e4dd4349ac80e26cea7276c08de679e8d25a953a24f44ccf029f5cbb2c8f62dd650d53ed8967644f22a9df0d83665661190f20263c89cdeac264578d21486c"; } - { locale = "lv"; arch = "linux-x86_64"; sha512 = "91e8712263fafbe742bef2b1adba0cd34eac4453bb57f6439335ffd3014a663e6b0f383a085a22e58d271ec9f14de7ad6060cce2957f595a9ff659fcec5bd409"; } - { locale = "mai"; arch = "linux-i686"; sha512 = "bf916dd9a96080b25753684f63df03548a99943d3c301b760c692379224f093670f0040b126d4a948f0c0ae64a7138fe1be83814f18940f761cbf52dc0d1fe32"; } - { locale = "mai"; arch = "linux-x86_64"; sha512 = "99016417b0f1d433acd8db0eab87973b7c3155ee9efa0e24f8deda25293c23b08337eb17006cfadc99bb8d2bb51dcb519e4270872a63986a75d44929cf74378f"; } - { locale = "mk"; arch = "linux-i686"; sha512 = "7ab1081f03f59d56ba2f40845a7c2249c20c87d836e886aca140471ba4fe59b4cc9cfcf765995d89735d4253c70d3dc44185e52caca798d1641831fcd1f49e3d"; } - { locale = "mk"; arch = "linux-x86_64"; sha512 = "a8ff017f9678018384056b2b2c47c8250a13b4ff4ff4a48c2c25e4afe9531a033253a8375180b58654605026f07da3f6420177bd599277e1a7f280f17c4a493e"; } - { locale = "ml"; arch = "linux-i686"; sha512 = "18f092773c075cb74e7215f834c7cc495a21a768bb50981c6de3c10c83c57459519f38e936fa99112c896696c3282da53c4446958f0f66799c7bfc16634dbcd6"; } - { locale = "ml"; arch = "linux-x86_64"; sha512 = "b10f45e990b0d621a5c907fe166b8f8d57b071a4d45037c34736fc172b255485c43620b083eecb51da47a8ab827bc1c900b48ab1820844b374d46cd97dd7d1e3"; } - { locale = "mr"; arch = "linux-i686"; sha512 = "e27204611b031ba9ef3e537d1983ac79c1c0ee170e0c18fe6af4ce101165b50cba64c0ec965356dbffeb3d33c8964457cefa54de54ef3bec8657dc30825aee9e"; } - { locale = "mr"; arch = "linux-x86_64"; sha512 = "48446f72998b100922e506ae4d6a7528496ac96ccc6faae37e52098c1031ac3a5ef1158e308fca7e7f93abbc858a9d97000568aaded5a439da66710945ce2b66"; } - { locale = "ms"; arch = "linux-i686"; sha512 = "cf8257b14717e23f0362973d8e1913bc230650754616efcfc9451f48dde6100d6ac43f4a21fd06c84809707a65985a788c73d9dd5b6f28f4fffaa1818e2ac2b4"; } - { locale = "ms"; arch = "linux-x86_64"; sha512 = "a25ff650f0fa0a7e153c03d413b5745b00eee731aec8bdb84ae69e0ea0e967a6dcc9329adea086d9ff7d8b76e35154936e716440b73f61242681f3527e272bcf"; } - { locale = "nb-NO"; arch = "linux-i686"; sha512 = "98b31be954a71ef221d5fb7f84de52a7f5e2e1cfee20d432b82236d1aaed7dafc63d05163b1946ed6619f12e9c4b6d29761c75ee3f1858112bcbbb373705ab08"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "14ad4ebe13d1952dfcb46443effd2bef636aa5d59235fae54665a3bf2575da8a37c9ca5149732b83ea2724f3bc87c24d7f5f0175e0e296144f7348a987a99486"; } - { locale = "nl"; arch = "linux-i686"; sha512 = "86313d415f0c0cbdf29bf148048b3c230382dc17193f8f72f7ee61ac8d3b253cfaa3af8c633662d14c2d2ccb9308d5cf612eaf1ba36a19f44f560771410a7e4b"; } - { locale = "nl"; arch = "linux-x86_64"; sha512 = "971fe2e96df5411949f783c2b0af9b610bd1069bc135ba4f70cc5ed267fc80dbde032f2bd0df6897dbe8b5e9c6c130a5cd91b174fd0638bf602324fc91ed6636"; } - { locale = "nn-NO"; arch = "linux-i686"; sha512 = "ba19b2698072a4df36c5a1a279f4c3a175ec713db0fa737865aad38c2a72a76ec70353268723b55bc4aabb9c80b54357111cae62d572455d1f92599f6cbaa102"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "f1d8796fb582e9734de4e505f88fec21abb2b4012d4ca0d2193c90a6164dce77ba33ab46cdbbe9f136bd2d89668cb86953517c51fcca7369636277f14cdf550d"; } - { locale = "or"; arch = "linux-i686"; sha512 = "1d77a35547d7011fbbca3cc87f7739b54b4262fdecb9478f572095cb892ebd03724357f35ac19706161fc2e4ac1f1494652f918ef12539fe7f2741794439752d"; } - { locale = "or"; arch = "linux-x86_64"; sha512 = "5a75b99ef9aac1881be88b77618262be95122cc93b957f0ba9a7bf6e1e2f4705078eb884096201caebf3f5d4e64aedccf55d0fd9dab63d1772121853a1c16507"; } - { locale = "pa-IN"; arch = "linux-i686"; sha512 = "3785c52e02c69b5526d87bbcc383bf9556af1a077b3d3f8a891d51e9ada3bbfdbd769fc23248f482f7a0be056623a73289605d9e7b429b4fa161dd311fabedde"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "13f20bcf0e518ab28dc35ef0e9eda84e4af4813e6e783303da78c1775f557cba27118f3efab6ffc6c7973d43c6e85d7474861d4b0a11319e175a8dc3959d221b"; } - { locale = "pl"; arch = "linux-i686"; sha512 = "a018afb8480cd080d472fd57f76f9bec10a7ca36f002f82cccd3f5f2020a276aba56207138d8e01ad602941bac910552c64df961df1c22f643829eb1145431f3"; } - { locale = "pl"; arch = "linux-x86_64"; sha512 = "3fb6f3ef60f577550173a893b9a7033f22dfffa6f8198b9e6be3d643da604a87cfc6fa2583ed46b2bb572cef1656d3901f849b5aad2b515ea1d275a41b44c560"; } - { locale = "pt-BR"; arch = "linux-i686"; sha512 = "60ab5ef83df1d9a4de6b687b124ca8d97dc7f7cd86021e5401365efbd7294d9c8f459bde56994a5aea9ca688597ec5b5a77567a41a60965b7f7a73b11de72622"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "27acfc996b32f949b8d5c01427520250d07d63e927febf6381be51abea12e9c8f8c4b404fce95e9b57ed9dcd58bc1f836e99517a000e7af8632ced98c52609e5"; } - { locale = "pt-PT"; arch = "linux-i686"; sha512 = "e01c4186e58fa418a56e4b76d05b8fc42479f077465d9f6fcad984689375d72749ab623245ea64493365f02a3080491cf401f0dd11e310d79a1a15db841a37b0"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "9ab7ba71df7343aed687f6a2636b72e09427e06ace51983994b2c4d112f19fe124819a6a6164fcbdbd33192bfe1cfe53dda0d7c86457b9d73b8e043b4d6283e3"; } - { locale = "rm"; arch = "linux-i686"; sha512 = "0cbf512e18f0e11154e62057fd5e91a8dfa1dde5da7574f64038a85bb00e72a41d3f8cb20879dc0b7a0eaf4a8ac20d2f7bd7d9f1339019efd92fc6b9899b08c8"; } - { locale = "rm"; arch = "linux-x86_64"; sha512 = "3fc727528ab5365d0dd64bc57d449f508c932651130017abf95bc20e5314bcced1a7167333bc5c501386e34d9ba4dcae888d16cb2cece8d02a1bd716d8a08ec3"; } - { locale = "ro"; arch = "linux-i686"; sha512 = "bbd61341279fb44931800c95266965e1786f9fcd63a2bde0ea9f667a9464de685d4facd64ce80f17e02e70113c145576d47126ff6b92ee5f064d5edba00d8a5f"; } - { locale = "ro"; arch = "linux-x86_64"; sha512 = "d505aa36608d4b4250aafb5e222107f0b8d18b7e1c3d214ce4cb0cb96c8130e2a67b35048fb5d509730d6d00abb62210e5c251ea38882852016c2eaf2f74f895"; } - { locale = "ru"; arch = "linux-i686"; sha512 = "5df2e92197eda83b7604565875844faab64c3b1b5ae61480fb1aaad29fae9c40c905470105325ef4128f31bf249967c542552248a3cf5ce208f81a59f15b1395"; } - { locale = "ru"; arch = "linux-x86_64"; sha512 = "ce0f678554123ec89379e68b809d9c000b151ad88975b2cd0e4c69a7b0917c52ec8b2a6a06578a7b644837fab718b301b704dba59848a4773ab272c235655d29"; } - { locale = "si"; arch = "linux-i686"; sha512 = "2d1dc24a65a747724b3d874e4ce61cf9adf23ff280108d528e75b1c0861859633b98d8f719285034cf9148c551fb509fed6df189a2b69dcc8d4e6ad3ada61921"; } - { locale = "si"; arch = "linux-x86_64"; sha512 = "2351940a022ed65df456a14a0eced296e9ee70b3b2f0343cd65b78c7d6a7a7e7a201e95d5418eb40ba88757f34902ef3f7cbe2ec0e24f6aa051064ec1b490049"; } - { locale = "sk"; arch = "linux-i686"; sha512 = "e2ad162074bba4d971a02684a4c5f4d84627a7af4027de55a7698e33a6450d137081039527ba478977b1098595a90e6a8c0ed586be1991605e2d82d104522ee4"; } - { locale = "sk"; arch = "linux-x86_64"; sha512 = "963db53c67e1ea6f7919939ed6100cd8055da79af96f5d7038ad298c597fa619ca0c01ec64198a757a1307ce6590b1b67fc90169d78eb19492a993a29500a2e9"; } - { locale = "sl"; arch = "linux-i686"; sha512 = "2a72ebf8fc40a4b8e4f1633efe7f0383813ca1e1bd25d5040dffacc332e9a2a8ce653be42a79ea45c7560e41678832ed665e06fcaacb9d850ccc6b46b0bcf61f"; } - { locale = "sl"; arch = "linux-x86_64"; sha512 = "b22284cc397b0233dc6d00da5d222998024d47da7b967de9380c50bf699def1b79a21df280040da5b850d6713d521c39d8f046e3caf817792bcb1c716fca8370"; } - { locale = "son"; arch = "linux-i686"; sha512 = "36d4430fdcf4412aeb5f006269327276f90bafaa65ac817feff16fc23f2199e8cc6bc1c3441b9888c6b6723a70c2f030fd9a855a86516b89adb8c537dca4acf9"; } - { locale = "son"; arch = "linux-x86_64"; sha512 = "8bd790a9d027beb003456017a28d9b3c70aeb21afc65032c70e9579b3733a7f5e9cd86841d40bff02918639518593c988c575ef5fa044fef5daf21b83ddb98cf"; } - { locale = "sq"; arch = "linux-i686"; sha512 = "abbb952991f20a728d9ce2a098f605a8e163dce73c065aa3ade72e2ef45bffc2a8cc668369d90ae18702502a829ede1c33ee266a286247ce0d6b11198847d195"; } - { locale = "sq"; arch = "linux-x86_64"; sha512 = "3cabe8fce7455eee9ebd2cf294e1ff345eeb00a683f5b4b65f404560d9cd5b5033576207c3da20fd0919e823fcd256e2518c55c951dc1ee3ec5c61c122a2a1f7"; } - { locale = "sr"; arch = "linux-i686"; sha512 = "7011df81c9ee333838a80e013746ceef2ca3dd25f65d530d22e71f11742899f9790d0acefb12e162c7f51a6d8ee1c9a1089e91029ba994534498a04cea1f407f"; } - { locale = "sr"; arch = "linux-x86_64"; sha512 = "66d5f9ee32f81ce73e9068a8c0610c06a8e89182e04701704cef9bd666d7b070fefb902eb3f5d457b360812d8be0682904faf80edf1891f614c9cb6ff0d65e6d"; } - { locale = "sv-SE"; arch = "linux-i686"; sha512 = "2e62d438b36418d21f821d764e1e91789e6f780d676354431816b8c5eacd81752b55a2ea438f6ce16dc7393670d21fb8966b899f933487efa38e4b2356cd60c1"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "f295eae86e011f09969b0b82f4d41a3e886a53080bb6db350b07cb4eeb83b7c20c0bc1f908fc0b5212ebf19dcdcb8d1ad5814818973823690e55f02af9b77f4c"; } - { locale = "ta"; arch = "linux-i686"; sha512 = "ad2adc9a5ea313a8d654ec2a5c38b4ef08c42be0330c038e1da08a83fc1615425cf0de1c6edc612f1e5c37687564a8b6809ca1328830ad2b73760d439b63832d"; } - { locale = "ta"; arch = "linux-x86_64"; sha512 = "c0557d9217bdb861fa07774e08c6617ca5aca8ad1a140ecf5ed3950967626ff2eb9d3b34152d021e4ec6e2e95078a34f92eb6ec242da5f3069e1f8a771721cb0"; } - { locale = "te"; arch = "linux-i686"; sha512 = "7e8d1d99f651f1bfad0d173ac223d1458e82d2bb507aa1d06da2f66cb969c9d0ae1756a22fbb38b0937a3a615cd28414da4c9621440d99f5a867a16ea74ecf50"; } - { locale = "te"; arch = "linux-x86_64"; sha512 = "ae2c563816c992cc72f17af8833f26b5da990ee228481151ed173c858d2c151df19bf80fb514b9ac79408f737077b31cf43a27f1740777ce45b06b22c87df060"; } - { locale = "th"; arch = "linux-i686"; sha512 = "294b297618a358c58f6b3fc6d9969b4b687153df233d409404a82e4d4bec7c67e40aeeb42094ff0f5f4517ad53b666a8eac22e087718501ff1e6ae42a939f99a"; } - { locale = "th"; arch = "linux-x86_64"; sha512 = "e87a3d13493171c18e2aef32a98648573b891f993d1f0d89aaa0df96011f1473074d40db27f1168a1d15494745a228b60bb6d6b171b024c225334070ea92cb40"; } - { locale = "tr"; arch = "linux-i686"; sha512 = "7fd7d196f406d80a8444fa58d8c3426160c19ef63a8e3846b0f0429d0db9b7d7366d82d94fe6b3f3367b573264b9f9cd84e41e1c45f71443a719393cb72255b1"; } - { locale = "tr"; arch = "linux-x86_64"; sha512 = "8e84394c1d0b7071e59185f11c72a88f05ddec013d5e95ffaaaa4bd7d40ebfaca2016fabb62d21d40326400c7f291463b14ed50c7b8616372862242b3bbb7e59"; } - { locale = "uk"; arch = "linux-i686"; sha512 = "31b888021abfd08b808ff41715429a1a1018719165e0484ce6dab26b1ab73a5268e46237b463ef7e25e47342931e1f3c9db053e057daa62ff0a9911edf9ae4a9"; } - { locale = "uk"; arch = "linux-x86_64"; sha512 = "a11751be6d26e81899a850d22ac5e78e2b58abfdfe4f9f2559b31b973a6ece1530b91d7bab109870d01e67ec18117b8fa88dcdcf9fa7ba51e606cdb4e25d7823"; } - { locale = "uz"; arch = "linux-i686"; sha512 = "9818a80f5270b3d8f0741cd7b108b7ae115cc465c83c3aabf177dd7cea681272d14790cfc0dd167aa7d7299f8fc03d28c178f216da55103f7e0a92901efc1699"; } - { locale = "uz"; arch = "linux-x86_64"; sha512 = "6870938bcff8a4d1854dd61d9d7067e780018ac0b4fc00c4e8b4e81f72f4952b26b069288f4831b6335da49330ccc296f2868b8491a10c4670bf068d1eaa4119"; } - { locale = "vi"; arch = "linux-i686"; sha512 = "e267225667c1dcd3f4f1b1421b73d36149656d541b6b6786528c38b78ad37e1ce067680359df54320a814812f85ea0644efab90ae8e82f71e2710a030d609110"; } - { locale = "vi"; arch = "linux-x86_64"; sha512 = "a437a31a83d6eddc3db5ae430e3548843fde5b0c56ff29dbe42670e70388b23e7aa31e1bb2ada8868d514ed06028b2c6d0c23aaed17b397cdf002bf36691aa6e"; } - { locale = "xh"; arch = "linux-i686"; sha512 = "01d2b86cb0fed4ce7b48c54df75e340b95d876f2bef521de69962c0d4fcd531fb32960ba6fc30f4eecb9781d165ab7b5818d472954d2083c2b5093df21aa0f14"; } - { locale = "xh"; arch = "linux-x86_64"; sha512 = "4fefaa22e79288e9db20415538a3e923bce31f2d3a27b63daa8d16aace0ce1ccece25f841ec28dca6a1b9e396e7279842c3ea226e96f47f66e63dfe1ee32558e"; } - { locale = "zh-CN"; arch = "linux-i686"; sha512 = "811eff9c31525b6a2d794220f82e0eeee7c240a0feb1b6091f758d476a1fa4c3bc8e75366de24318a4e6595989a4312208f5a47ed39772e4370b1c85dffe9cec"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "d6b1bf7e3cd89dfeb78474daddcb91f1a709d1f5568192b406ba7b7a790ea9968d93e60d3e635ee4712e598b6f4dadbe7b19be0930ba67c4756669e34dc553e3"; } - { locale = "zh-TW"; arch = "linux-i686"; sha512 = "a734f6c36ff898a9aa5d8d27ad5303cef8de0e141921ce95624dcebfd57a0364bef7d4e443a93d67c98dea67ea888c856573c354cdbaf31d27bbba23cc396190"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "d12bcd38d2b65c9be8fd033bd896afdd88867841e4e55018f2f45ea84ad1496a74500db86fbc95fe887441fa8be501981754f2c0f3f97811b9d2713f86bf8f18"; } + { locale = "ach"; arch = "linux-i686"; sha512 = "92a2932972df78069004443cfc09333fe61cbd2d26cdd364591d9351a38d4174bca93060dbc8622a22babf3e84a8981dc03913f5196dbe8073b3e879fd1d4228"; } + { locale = "ach"; arch = "linux-x86_64"; sha512 = "84d86ebf8df0734b83ef8ecc1c3571b9543a6a13a39539fdc73b2f1f12dcd0ae77cdd322f887babd4e4370d40e493f86c424d94785c9ef94ccf28e9acfffeafd"; } + { locale = "af"; arch = "linux-i686"; sha512 = "d36fc79b5c26d8eaca7b24ad88808d63c18a6b8a77e8406461cdf31f992f123137c38acc5946fa810f427d7ceb3db492fbea0e2a6bbaa7c92d98eee84a33209e"; } + { locale = "af"; arch = "linux-x86_64"; sha512 = "3bfed126d572730d2a454380030ce3ebd8caf6e0363eb67324a29ac643af7a62ff23f076df2830072a54535b9b6e37a6856aa8676d08ca652f98247b710cd2ed"; } + { locale = "an"; arch = "linux-i686"; sha512 = "7a65b66e0fb5903d78d619bbf457df82365b833f22b47823c0f2c894053ea2f2c034eca15fffaa8cd9d3f5e5b07a8cbce888bc7b5857925fbbf6a29ce2b089da"; } + { locale = "an"; arch = "linux-x86_64"; sha512 = "5b1efef3e7890f8bf58408bf27247bbe6fd92e3f6b170cd1963b6df08bc7ee1a145a8213f0cd950bd4b65c8a7d5671cfa71eb121a7dffece2ee038c654c0b95e"; } + { locale = "ar"; arch = "linux-i686"; sha512 = "ea79296637247369c781cebecb6f779a7b7f106a664171e5cab4c33de14a1c5ab0a46f728bd8f5d45c81b6e4655cdf91cd9488035c8fce9b340e31ea97666aa3"; } + { locale = "ar"; arch = "linux-x86_64"; sha512 = "7419e5db20d2a733ad499d161be71804bf42e059787e32a1c87e976f168591b7c379c8f5c22a39350c6fbc04a62436de141448b2c2567e8dcc360e76a8a02624"; } + { locale = "as"; arch = "linux-i686"; sha512 = "b23ab0f326a2a30da54989e4fababbd39b49d64df3d49bad049ad44d68209354d0bf79380916b80c9441d87826a8cce4e644965427f3b4803f443d61b6f12dab"; } + { locale = "as"; arch = "linux-x86_64"; sha512 = "05026ebfa2a478c5641822ceb37395360699e9dd03114a60e8af5fa0ef50a94e0dc582a8a5ca1e7f4dff035e049cee15959b4ff3b312b53ea3129ba752ab01c1"; } + { locale = "ast"; arch = "linux-i686"; sha512 = "3b3096e551400d8daaeeffe04f1fb75657257b3cd30fa6a689683474382de4f669b67f39106f2b3858ca08c2aec5f3d7b67cd27f24c706ad5412623fe7c7c9b8"; } + { locale = "ast"; arch = "linux-x86_64"; sha512 = "7639a47e56d9f07d2e6a64dc580e1df0282246d8f6f92b9620bc9ba1d8de14aca7889902e898adecbe16a4eae882710e6bfef807831351c0d003a75f5021ac5b"; } + { locale = "az"; arch = "linux-i686"; sha512 = "bc9ddf38b3fc883e24e0a78b50209e3d790a7cfd5e2c466a4625faf45923bd7c0c6ed31d877a0bf74d8f99fe08068dca4879bc895b685c93b4783f6da6641533"; } + { locale = "az"; arch = "linux-x86_64"; sha512 = "eca5c5c1fdc9d45669821a10491d4cacbcddf1336d3efa33c95bbfd9242e5484afe468dd7c69173bb33ee7ce154bd504ac66b53c5b03f8370b5de33c99d516d4"; } + { locale = "be"; arch = "linux-i686"; sha512 = "23a6d5384d01bc91ef4241953ca901ca0bc49bce070c8dd1b9fc2423e6713209368b2fffdc3253c24cb99f626ea30491468a50e200dcbd975e6a35b4312a92db"; } + { locale = "be"; arch = "linux-x86_64"; sha512 = "eb3dd4fdaef8bed4abe363b99e3bf2d989bd5df4a919d863c92bb4bbbc1aa65feb9271d25c21b6330ea94d0ef8b40c1720bc562655fc7b7dd3e7d214a6362569"; } + { locale = "bg"; arch = "linux-i686"; sha512 = "00c8bf5cbcb3d03e6cb80cbc011d04170c826a144d12c197a362a0f64df68a5e42ebe7305fde503c0ccf1c36265599ae0a63cdef45490ede7bbe41beb99320aa"; } + { locale = "bg"; arch = "linux-x86_64"; sha512 = "4f378f3ae84c7ef5a6a70a97a8dec0911fe88838433e83dae36a3ec40446ae23f400145e684dcf3a4ab1f9fd8c5ea88e1526d478934de4a916fa67cc3be5d032"; } + { locale = "bn-BD"; arch = "linux-i686"; sha512 = "075d87f42ce552381d2132cf92391eead6cb79b8c2068706e4e63fdefd2964cd0f26153bd9c0cf0702491d0f1d96f1eb35d6fba1b6e670d7280507a7a6f5e2d2"; } + { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "30911670c47f75fc73d295d63d3531c30f61be17356f13adf69457016a77041667b84ce978b7d3fa0743fd5bf9576d0cd64b9c2cddc7413c38b149191330dd88"; } + { locale = "bn-IN"; arch = "linux-i686"; sha512 = "646bf28020d7532c100d8323529dd8410ea3e5d918f66fc2d9b5daf7217a8f105d9498ddec302afdef5971f2c9caa54fe491b8c677f375590a55ef0e764b2160"; } + { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "9c9ef3e941dcdfc1dd1e6a8ab81b3735b71907c0e3c45e2ed0369d541f850fc7f200170ae2adeb0068e375417e7fb5ff28af9b43d53b6245fea7b7c2c83c5088"; } + { locale = "br"; arch = "linux-i686"; sha512 = "8bc59c85a617fa0a07968597ffb72654fc714c78165318032cd229cec60310bc6e9a31ffa7c4d96c57b9b09e5623f324dcb753f127f11f68b70b9eef2e920c32"; } + { locale = "br"; arch = "linux-x86_64"; sha512 = "725c98dbe60e48e24ba41c36930f67788eabb0bff3fdb93f9a794b36426147dc5a0e8250b1a81913a31beacf13541a06e53f626626c9e2fb94a46e8bf9346cec"; } + { locale = "bs"; arch = "linux-i686"; sha512 = "370b497ead2e133d90d0a5ebfb76bddd806134c2bba4ced17e817a46c04bf39e366b646d58a59f7163ef9916072032e6657af68489645ba8e48559eed4596f28"; } + { locale = "bs"; arch = "linux-x86_64"; sha512 = "2f3ebfd18e9dfed7170180e3560d3fffc7169da6c0159d4abac01d9efa5974c1b2eb027a6cb8ea48ecd1f300dbd0b65943eab5b703d4bc2a605e35c87c791fd7"; } + { locale = "ca"; arch = "linux-i686"; sha512 = "ec9f844e8c2ed13afd2d123e88de8a83ab3b166cab1aaed841b5c5910e816148e6085bd4b3eae5027cb5071ff8b90cdc9807c563f77138ffa48978fed264adcb"; } + { locale = "ca"; arch = "linux-x86_64"; sha512 = "f4cb217879e96a094f87f58c6b46a992d106c4587e58331799d5ac5c5cf21b8b438477d56b9f9428aa4540b8d2eeb4fd4f79bf527d5826877f1b8813c55051f3"; } + { locale = "cak"; arch = "linux-i686"; sha512 = "f7d0c195394221a256ac9eb6de074bf317f5c4fd08d8a93ce551ed2062761e0e13f3d61f9c7ff3f64b5f4cd26dc80c2c09b05301d56138e5db56796eca78ab0d"; } + { locale = "cak"; arch = "linux-x86_64"; sha512 = "7148d683c950041db3eee355a978f86325a1849bd082c6c33c32fa76ce4bbe2e26e2aef48032cbf42867c90c994383e59d2c34728371007a6b0072ae6e8d225b"; } + { locale = "cs"; arch = "linux-i686"; sha512 = "f22232a3f5177d6538ab43130dbb0601f3fcb329d77b25ee3929a698c1104d7c966aa3652e33bb47307ced861a709031993e2e0e91c2c80902cd607db8473595"; } + { locale = "cs"; arch = "linux-x86_64"; sha512 = "00eac002d4c2629b7f0e379b3d6266a791392d7587d39b28bfb155d9b2d2add4332deb4a6d587deb274e087cd0d21553eb3133cbbc423a102e831cbe7d329306"; } + { locale = "cy"; arch = "linux-i686"; sha512 = "641048f0cc8f80d2af907ed9ce4c35ee3ca5bc587df6b5240dcbcb9a2831f412855d5c68daf8c295a3e10c212c1282eb1f25a860a9330ab30f3b14e7537a23e9"; } + { locale = "cy"; arch = "linux-x86_64"; sha512 = "b9a0f3316f1498991b2f9a721812221052832eaf3861a3bd818c3780f7a0ba93d424d8614f8eb3cace9158a954747d56958dbf482dc3661f19bc2df1d2b1dd12"; } + { locale = "da"; arch = "linux-i686"; sha512 = "01492735fa343c20eb58af892c93016affc608af2f09f3ac239c29540d7b6c9d886dbf12aae00b60a97a1a53c0a55db4b62fc271e41241710226a25c791b40c9"; } + { locale = "da"; arch = "linux-x86_64"; sha512 = "e2386a3b7edcdb082502506d166938216b9138870e93786fbb2c2331f1a8782ee7cfc9ad5f7c4d7a6147701d34a451069f677ad56d64cbcb05a9c963f3a7d8e3"; } + { locale = "de"; arch = "linux-i686"; sha512 = "f287674bd825c0c829a19b7e3a6d54f0a12a882cb9b9fa95cdd5c032fd8a859b0d387115d8b9636592328c4508ca445133a08db3b6fde896cf6ba146e490d851"; } + { locale = "de"; arch = "linux-x86_64"; sha512 = "2b1ac26be4020d8ec989eb6678a10d293569f53d0a20fba1210cb788792a4b545eb6ee6d6979635ed55d78d493946f3aeb254bb73cc23549062e92f924dd25f5"; } + { locale = "dsb"; arch = "linux-i686"; sha512 = "e4ba2166cdccb6d13bee503021e26b240cdeae94db2536892e8171b2d07ca7744dcf8d428ce70d04c9d1d4938793301a8bf67d8549d25c9b464be64c0d0a2b81"; } + { locale = "dsb"; arch = "linux-x86_64"; sha512 = "f778140b07658aa55ee4646f3362300b4967dc4a6a96188915af9dc67899b0587f500dec646614f829bdd3d713f17b0286984919bd6a1b25c6d7028990d2b6d3"; } + { locale = "el"; arch = "linux-i686"; sha512 = "0c387507189de21329cebb7959cae4c5ee29339d3dccd9a4c5b216425e19a12f4fa05a73369d66fda4f02239f4a36722cf6ec7ebba9ffaaad2344346b1004aee"; } + { locale = "el"; arch = "linux-x86_64"; sha512 = "8035059db6fd46153e11335b5feeb782b54ee9bad07ac0ff5e605b00a1af9948a0348b927dceab740ba74905e592cace164c0c08786afef210bbf3c5f3d0169b"; } + { locale = "en-GB"; arch = "linux-i686"; sha512 = "0f31c9b6011ff83e0df95f0478b2eb3c58a1b2ca6a2120658543b73a61d2e88440bfa4bc3f3167c4580b597fdcfcc3434934f86774486458b860568f5cd6e5e6"; } + { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "d1c3f5695dd32c899b2ae9cbc386724d80738b12d525be4e0119bcf4909863991f96c384b26599e30d503ab4ee6252b2df6fb49ff8e7b9fc5c4e655e2d5dfec7"; } + { locale = "en-US"; arch = "linux-i686"; sha512 = "ddc441efc3f8892cc4473a4398fb30e616ea09fa1f1ca3a53a5cb4e645a4501a1625e2381569414422c1754710531a4c4e3f49c755d3b42245dbe5e852e61bfc"; } + { locale = "en-US"; arch = "linux-x86_64"; sha512 = "42b8e0c557319a51316c96c85d5cdbe68b8c54c01720ea3b2f65d484706bc82de10313dd6d158baf47112282193c475c5cdedc9429c365ec49f0f9534ab341b1"; } + { locale = "en-ZA"; arch = "linux-i686"; sha512 = "4f01137b3511db5c99d3dd9f9e6ebcb36109c808bb23400e628b19234d6b8d57a24d5442c30db70e4afe64424a635422bb433f63e3e5c565eb8a4ecfc0730adf"; } + { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "eca31919b9742b9f0ce8e0be04db3a71c52a5956966343012ce5d334409b3dc5612d417eabf2f06dca89e148a481f170cfba1e43c7cff231f12be1cf0dec5a2f"; } + { locale = "eo"; arch = "linux-i686"; sha512 = "14ad428fbdfec786d7e12fc9b8c60a3d539e48f8eb4161014759345139d7b1662ea210ae2ab3c0ce1bbbf2d1ccd34c384228294f52cfb5895bd6bf0b0741f4a8"; } + { locale = "eo"; arch = "linux-x86_64"; sha512 = "ebec08ec12ab13150f677bb53441dc1fd1ed320ca53531a59548f22b68a0af8463d69ddfc222b8d3f7817299c2e825eb3b9ef12177f545add9a54ee8f74d0be9"; } + { locale = "es-AR"; arch = "linux-i686"; sha512 = "07d86bbbd1ce48268eee9e7cde42b31c426441012b3afcdd56e479278e3a94165aed3577a27f102114516bea2e79f9c1ca74d87b0e3e65dfb94413bff86337a9"; } + { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "35c91fde1523b22a5cad3ef975912b49a3713b3f7845b0f99e317f6226687e2ca4fc74f39b53f45f1a65b53c85364d03c9549889dbb3f4ecc921e354640e36a9"; } + { locale = "es-CL"; arch = "linux-i686"; sha512 = "9098c0da3ccbedf8257fd35171aaac912e071ec9f71c0f88b869599e479552c58733f5b2b911a83efa2bdff39801c61b8652be4dad45f339b7a1a5206235d1e9"; } + { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "176eb04bb057b775d9826a00fe2862c2f529397d11f19d5f74ef8d39773e4da1fa6ef0463803630f2720235febf2ede8b48af3e9fa11cc8e22e93fda5a817feb"; } + { locale = "es-ES"; arch = "linux-i686"; sha512 = "673f824cdc235ef8e80b1671ef7915bd151a11d9a2923d1541caafe0e3cab87fa3935259289a369a3ab4242cc248552e2353e964c09251c6b3bea6696c00788b"; } + { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "31646e64273b98fb8cdbb104be8bc16d4e643f2b2ab0f837ffa581400e3aa252b4327ae4eb22f8128427410f73710a58d877bb0a6c6942e627be59f90eda2c2f"; } + { locale = "es-MX"; arch = "linux-i686"; sha512 = "90e763b7d0ffbc6392fe7797a1d2346aea6786d299f5dc202436a839617c974d3f362f4b971d8b89316da47ff1c68a898ef17efadd4582556cb35fe395888bc4"; } + { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "cf1a92b03a5e761c7d32558a1b022a7d02f404fdc40342482d5c20cf529cfebd4fbce1bb2ca0ae25c0ec9cadd467acef8df8f2b8013bbd8ce8f0cb7bc1bb7cd2"; } + { locale = "et"; arch = "linux-i686"; sha512 = "1a7cff9b68f910d612eabd03c55e766f3cdd159a6f81e422144565bf93f267780249bd26f347667e5cb746810cfe5b54e0ffdd860fa0b285b1218919fc89da11"; } + { locale = "et"; arch = "linux-x86_64"; sha512 = "fac08053004c7db0f18195846f8fa2f272dc66a3091f51e54764255b2abb34649482bbcc1cb6d3dafc3fd5f1bd352504e7edfa06260cf4604c7870fbbc14282d"; } + { locale = "eu"; arch = "linux-i686"; sha512 = "fe3f9f749735e7b80db6909ef6fbb0074a6773d1835c1e41c9ae652b89722b3ce800462380bfdf07806042a195df496642e6e61277038bfa15e18f8495228ef9"; } + { locale = "eu"; arch = "linux-x86_64"; sha512 = "3a2da4ab5d1e453e0fec7aae68fc89e43618743a9ff492214f2ae2ccde6d427a2d5d7f7dba3d5e9a2cec2a129a207da53fb7681bea4705ba0752aae27d069914"; } + { locale = "fa"; arch = "linux-i686"; sha512 = "3440957701b88cc09320bdd2f142f416ba0a1d87290ca5b46e025cc1fe314bb4ce148f510b8bf517276389d995588d1acc818469466967c777a285ce03810610"; } + { locale = "fa"; arch = "linux-x86_64"; sha512 = "a9a7932c9fa3b5ea200ed848f310690de265fb19e691e41c4eda71e8611bd5973b85e6d6856408311861c8f06ea25b09dece55e5f220df6734488c20c6bf28c5"; } + { locale = "ff"; arch = "linux-i686"; sha512 = "f38ddf40a6682a03f1230a3295dc426790442694f55dae23e0be1b6a4cd844d54efb13f84abfd27fc3d798aad9921bd01167afb55244f9ebd24606246a8875c0"; } + { locale = "ff"; arch = "linux-x86_64"; sha512 = "8d321bc31fae8eb41f48841cf26cacc5ec43042e43609a085cebc8dab05da909def1e26f5fdaead33bc5964dbe6580167e0d518e2fdba558da41fdd1f8badf05"; } + { locale = "fi"; arch = "linux-i686"; sha512 = "94795ea0110d479e9da0b7adaab6513f01d53ce131f78b8092b1e1d9964736eea9be8430f409d511c10da89d09bcb09b728499ac097310d326778c8f9ad17f8a"; } + { locale = "fi"; arch = "linux-x86_64"; sha512 = "19eee17211938da6fec59b2b665eb3bd27bfddbc21f7b5e86d63e96902234255c72365ad1299542caa0d59400c96e307f4bed7b87aeeefeaf717d24e39372234"; } + { locale = "fr"; arch = "linux-i686"; sha512 = "8ec0ef5d8273bcacc9f02393eb4376dd2ac441789fd269912bd06b153dc8f93a0472c86d1d5c2978408ddee218ee471fa4ea7d48a99274d4f1d88372a3ae5df3"; } + { locale = "fr"; arch = "linux-x86_64"; sha512 = "6104bbbe8570685e071d51f6cef1ed20309b7a79390e97a9af54db5c745082ac742a5d3018925d338503ee0bf2f22aea6b530eee4ab3f9ae8067f473ffc9485a"; } + { locale = "fy-NL"; arch = "linux-i686"; sha512 = "b0eff69223d7f2fe3bf023a72156083333dcabbd27d02d62f04088c51b987c360953649bf9d82a886925c07df66663f41ef0c27270ff75c2fc7146f824eb68a8"; } + { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "b486989c8c3d19864db6ecf99c49af8385a0b61ae4e354593a0dd967a01a14db9fdb496e9cdb914b760a6efe0801469c903c0eb74b924bd143cceb5efe57cbce"; } + { locale = "ga-IE"; arch = "linux-i686"; sha512 = "7a160052680f7a9c2950cb505b9705d8b71d997ac22adae105e1bebced242d7808ce0f10c8bdb2f7b35be4bb0d0b486d24469919d45b9c946284966024ea0924"; } + { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "6c1806c6ae06ab138259a6c2b5d19c7e6c94fc1f96f82646ba03aca9b4ba8a35333777add20b9fd3949056c151f24da33068a135fe2c234e3e59a6f264245ddb"; } + { locale = "gd"; arch = "linux-i686"; sha512 = "c516e888ffef6549b6fab1b1795185c296c22f4b5a39219f98b6e0de6df2ab8480a9386f47267ba97a6683f52011b8deecc2ffb24dcf00d63e420a1e8deeb395"; } + { locale = "gd"; arch = "linux-x86_64"; sha512 = "8379b6210a6fc65b6809ae7fa17ddd913e124742709681f3d7cd35a2e978ddd779f7482f83640f766db91c007530535f6ba4136212454314e66d904ef5d1ef0c"; } + { locale = "gl"; arch = "linux-i686"; sha512 = "b94883d5676116941a08f0df42f0fde4adc5346165eec2d13998e99950ebb895f83050947ab4a5aaaad9c08040402923042f3d555f15b754241cf09148339092"; } + { locale = "gl"; arch = "linux-x86_64"; sha512 = "272b2f8361cfcb22ef8365954b0ce4a4fe7146b94785f283558262df95674d4c43df4f3cf4527c54112588bfdfa69f88f14b4bbca653d72bb1e4e9425a7523d8"; } + { locale = "gn"; arch = "linux-i686"; sha512 = "2f4513301c628bb209ab086ac1a956934cff334dc9905c1bdf1360695c391f67c5adee2fbfc41f80f19691acb9943bebb8b343fd540d428226e8314ef91ff983"; } + { locale = "gn"; arch = "linux-x86_64"; sha512 = "abce4d14340909c1e08f76d66f32b2833029c3a02a0815ac0091946361495ca5c30f6d7270426e9fe69286404294af6575af83b1078c7b226822eddcdde0957f"; } + { locale = "gu-IN"; arch = "linux-i686"; sha512 = "9d60dfa7b114c4a65da19f1cf153e178ea99097ba7f3af6db0b62651a5e71d2bc7e7cf499bc37e78c6cd6e58774364e4a628f43a47b70f54dce8f14df8be6b43"; } + { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "747161f8fff06b3a7bc18842fdbf7b5e2c9744d379ac4d0c0162797c0a09a155a62eea2c8e8dbec45776a16a7f99ec8bd770d5f8e6248a45b85074045afcac39"; } + { locale = "he"; arch = "linux-i686"; sha512 = "cfbc9521be480014bec73b69dd7c605d65a96c7ed881b384501c70280655c4c0661ad764195d289b422dc19da370492762ab40269fd5a0ce5377781f9d6be18f"; } + { locale = "he"; arch = "linux-x86_64"; sha512 = "7ef7f3633a54e9b5daab32e410df1b9d9abdbf753585dcbfc92aae8f4b15fc6695fb745ce552e7a62b74ad83b9b3ab729b8d74b159c9103a057a168457d25c4d"; } + { locale = "hi-IN"; arch = "linux-i686"; sha512 = "95eda3ea3b56384800639d1c7071d2684d4cacfdf6d1639e311f5ffa215fc08952e12a33cab60c44092b7a7756388390afa3d41a41c27e1e0d0c5a713ae54c2d"; } + { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "af60392fe55b23cb8763a18ebea264cf8867388eab59ea1707f7b27056ce4b9ef5ab68406ec5ea2b50d27787fb3dfe3d18bdf925ee0c27c09d3429a6eb011a39"; } + { locale = "hr"; arch = "linux-i686"; sha512 = "d4c9152e1c69d61cbb77343c7b1f0678ba5698a5c9c367f7dadce3c4218d073f5cf7daf606e140298ab862c33bf2bca051f9dbb3fba0938562ad07afe57bbb9e"; } + { locale = "hr"; arch = "linux-x86_64"; sha512 = "4ff85cb022ebd2433971abf54a32fbf4c8ce0ca21171e7f3a398e50d18ba4f43f7ab3be305ff2c4cef5dd08ef7577202003182347b46d461b7d4828f51e5e100"; } + { locale = "hsb"; arch = "linux-i686"; sha512 = "50648eac33c88a4d408a15c077c8b2b09c5250628c1cda4007756e437c578438193777ebd465bf81a76a10dd27a49d1887b69d5ed3bbefe0ba196ef5f144323b"; } + { locale = "hsb"; arch = "linux-x86_64"; sha512 = "631fe11f0764c3d039c18c4154b0099a43ee432b294466fc43e7f842cf63ea8ac5a4e15f44a57ab28e7250c03787b9ef18bbc36abbec21a6cfe9de58367f9a4f"; } + { locale = "hu"; arch = "linux-i686"; sha512 = "5deee7e35c7bb3988eb44f3c7882e587beea64e075b2dee824d0e7bc4555d5086302afa97a845f7f0980046e3798f2e2425782e51b26e7f805b907b0512539c8"; } + { locale = "hu"; arch = "linux-x86_64"; sha512 = "1745e3daf78707c85e59fa404f2acee9899d84e9dd757a7fc0ed7e523a2f0cfedc6a48d8b65723a89e4e956135d67b8d7a8448b03e5f9ab8f2480a552713e93c"; } + { locale = "hy-AM"; arch = "linux-i686"; sha512 = "0b9ef751c0c1881195e453521478c48d01adb303ea04758d450c48a6895dc6b8ddd5cd3502fe86cf1a3dbabb2ada9c5684a3330e8a7ce47a7b902c9b00651666"; } + { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "048e01c8981064c5f692c0f3a76fc0c67d01155b503813599787b8d17c44133ff554ae84ab82612c00cfcbda631e3c01d22ea93e51842594d67ddcfa2d650e18"; } + { locale = "id"; arch = "linux-i686"; sha512 = "057464e35bdd3159f538646f822137623d4b0b461ec9c1b0121321d4eb25db09ed74dd3959bbd0435d42e74eaefe2cf384d3510e2ecae53aeeaeb8bc728e3c31"; } + { locale = "id"; arch = "linux-x86_64"; sha512 = "ff29884dfd0a0bbb962b9c3767c3144998a3c6f09913d1939f511686cdb388d1bbf3cecfb7d93d2803553f188574a1fd3818532a1e4bf80a3f4d6f1768547aa4"; } + { locale = "is"; arch = "linux-i686"; sha512 = "f5fe21d04987e660374616cdfab43aeb4a4d314adb27443b0d0c8e8ae5764101b14de6e9e1e88bc8fa6b94e229e0f72d6ab12c3557a6085d2e6e3626e85885a7"; } + { locale = "is"; arch = "linux-x86_64"; sha512 = "e9bd6410603adf1bd56a47685b6ccceca48e929b0b869ef5bf4459c926e9b4230ec8fbf2324a0a52b0dce6c88baf2199e367265e89692c452e954833e403831e"; } + { locale = "it"; arch = "linux-i686"; sha512 = "049a94c20d5c66ef0209b281e150191dcae6ac34464ecb6c30a1d7c72638fd66992cf4f334b5e0e8c4317cdd84383368b31ee77e3280be8293b4d6d648cc0e8a"; } + { locale = "it"; arch = "linux-x86_64"; sha512 = "ec76515cb83c61f09c5499c78a94d83780ce4cff537fadb1a49c3a432d0ba808bde0a8f27b3709c68d57603e4fdfc8d9ad2e0a5d37dcd9522765b509aa279388"; } + { locale = "ja"; arch = "linux-i686"; sha512 = "397cc357287a48df4749d3ac2850b7a1fe840790da58808c381c34fe20403084b514e818b49edd09a151305b9828f368821d9c258722ae979f7078946c4c2643"; } + { locale = "ja"; arch = "linux-x86_64"; sha512 = "d04e8d136e46a764e77fbac6dcad2eda23b60b07dfcc7d1faedf10b079b6ff0d64af4b50dc459657315880dabf1a1cf6cc19a628c4e1118c36683e2f91fc8eca"; } + { locale = "kk"; arch = "linux-i686"; sha512 = "bce4da2456d92b97bd48a94802b6c8269c22b7e5643380c5429fb080de00a2dfae7408a125795d48d53c7580a4dc9bde0b5c050ddbeb62378fe8693cd4e3dfc9"; } + { locale = "kk"; arch = "linux-x86_64"; sha512 = "2fc1f92a38176b27775779bda30bb9e3373b0a811bceb9b0347b7a8dba2665252d7dce65765375c7bc4302268b017883a32725ece8170263754ed274b754d02e"; } + { locale = "km"; arch = "linux-i686"; sha512 = "c2886cf296a78990f015f63dfbb2e3ce465cc30cecf7ce9458ecb6e0a125a534464c5a9f78a488ce709f352a7fbce1ac0bab0017f46c3c6763b7dedb4a1058c9"; } + { locale = "km"; arch = "linux-x86_64"; sha512 = "28d366c21242bdbbbb202fe46472f5666868dda7dcd5caf2aaeb474fd1f214a6ac2e95c3772e34b00b7f074d02c540e894a58327b2813cbbc312b136d381cacc"; } + { locale = "kn"; arch = "linux-i686"; sha512 = "2d55511ab838a8af5ef8f8c30ba4a3526cdc13565b3ae149164fd5b1e1c5f2c4be393c6ec7806a7f805e8d09bb72a1b174cc3cc4f160d4ab2b0a3f9ef04ce36e"; } + { locale = "kn"; arch = "linux-x86_64"; sha512 = "49a0f082c1a619fef966333dd85abaa2a48042fe15759e7ee72c054c43e27bf5d9e68c6ea44f98a443cf5faeadecf1078d23dfde581ff5669ba572ee246d0c0b"; } + { locale = "ko"; arch = "linux-i686"; sha512 = "23922095cd3729e35b40a83c2ada94784927b52258b7f010e970b6f965081645ecb2ba585801a09e833d0cca8449c92a273810bc815677eb786a88e77e32b42a"; } + { locale = "ko"; arch = "linux-x86_64"; sha512 = "10faafeaa59606617e807fd8ff0e9040a4de97f213f8c94c2a84ccababca5425c8365b60c80cb12fcfa5b4d80721b3b6d5351fcfccfc90f3c04096e69c818259"; } + { locale = "lij"; arch = "linux-i686"; sha512 = "f00aa4352607ec8c7fba3d66ed141a1f75a324bd63e827957aa07b55800ce4a621125c9900e186ebe30aafb230ef7db7048a63b8218d77e39139c49f82edd5ca"; } + { locale = "lij"; arch = "linux-x86_64"; sha512 = "b3f8916360f8188b8448f83421bcfb438003c1f989d97a804f28750e107679407df73cad69cd9496eb7a6a9fb71a12e93fc1e20c5a4ff602c671e1cd09cc13ca"; } + { locale = "lt"; arch = "linux-i686"; sha512 = "6525f0bfaa3ed910dd7d49d4b24476c99662b3034287fc33cea58690afa070f113123c3932dbc59d414d8227e60aa63075c141e4b1ebd26376fcee3d49f14a4c"; } + { locale = "lt"; arch = "linux-x86_64"; sha512 = "537f1726b7c8701a1ce513931c8bd6b0bacd11c5e91eaf2f9064ab87b001558a31f7ed71147c4a77a40f9ef6fb97d98a9f9927eb6a394478107b4abea78d39d4"; } + { locale = "lv"; arch = "linux-i686"; sha512 = "0f2b5709083138d676196155afd2f53ad92a3660b2dd3c36b7e5f780d011bc08c17334753fa2b9a4f8a85a3c2c528fbfdc450e32db796d1752745560635ec58c"; } + { locale = "lv"; arch = "linux-x86_64"; sha512 = "430b453951c20af4268a7586ec619ad095da12c5e8b8f854fa80d21b797814301edb69cdc5c510de18e6a1d35f7f646ab4a67dd28ec46f9624079686d5f1f3f2"; } + { locale = "mai"; arch = "linux-i686"; sha512 = "96685525b23d8f28abc351d661c3b7d43f96d508b514dc804640bbbcd6aa30285e893cb2dc12f8cd6da42e931aa9cf35fb487fede896eb55a1817e5091d99aea"; } + { locale = "mai"; arch = "linux-x86_64"; sha512 = "3a5d892471366c9bc6b82589fb2c8659b228823f76507468bc9c7be8bc3af425ff397a6409e78a5b0662a0257c27a4b62fed0b1d66201ade162fe952aeead813"; } + { locale = "mk"; arch = "linux-i686"; sha512 = "ba686c0bb59ecfb7632f86c92b99bb7f6a4ea0f15e52fe78886831ef744332d770543e30f11a1bee904b40230b174eae5db86e2e694b678b0d1a25b750bda94e"; } + { locale = "mk"; arch = "linux-x86_64"; sha512 = "8bfa03a196396d209a5d6e335cbfbcfffb2fd6aaa3c61eb4f1abefa4cfeb0d6f58fa41b89b093a2f84b65a0f3536ac0efe227625290d03457f36ec35727740c8"; } + { locale = "ml"; arch = "linux-i686"; sha512 = "20f877c059f0f893bb60a5429c663920c9e12e112ac39359437148ffbbc06612b868e891a4c03e922a293e59b23cf6b96ec89ca474462fb6d9f3e82485e7b982"; } + { locale = "ml"; arch = "linux-x86_64"; sha512 = "5e3b656ca1045cb07ab1db320ca35228de86d5bcd3da0ceae24c005a7d6e7a74d2b3b812d24da89b0d2967bd499f17aaef85545eebece4317c4ae0855feb6eff"; } + { locale = "mr"; arch = "linux-i686"; sha512 = "09a65ffe81eb7c9ab1a6984b93391e2a1e0da895178fe606d69d91ccc95be14f3259c5b1fb7ea8cbe89e20a81ec6178f43be492693857b1f9cc34670ec4f0c69"; } + { locale = "mr"; arch = "linux-x86_64"; sha512 = "638df1d240389d5507ed91f8a47075d8f77f81f178ae840f24cf7e19b037b76f3fa36755189724d76e739e9ac5edfe06d86fe7a5bfe559a8c14852f5ede1a173"; } + { locale = "ms"; arch = "linux-i686"; sha512 = "68c89341714b165a4ca0008d4e934ad9b04d0b5ad219faad6d3e4827fcffd7e302510e1a73f628851f6d4c2e48e47f27e6b130f88e94d36e5c882ffb7da37c50"; } + { locale = "ms"; arch = "linux-x86_64"; sha512 = "83acc1a93aa8d6de14c87eff4c3321cf8aec4927b049b5d6bc56fc22ba74b0894242a69676098d7f66bd054dc98eeb73521fd7dfaea3ef04a1f7a6c4d43895fc"; } + { locale = "nb-NO"; arch = "linux-i686"; sha512 = "81016f0fb40fae025fb77295f1aed42d0bad74fe4421a8e10e7164945af46edde0c2a7a82b6e048dc52c60bc378577b9fc151e81cd32d131bf93f7b56ffe1fac"; } + { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "dc646ea14b0d8812ae064dea4eadaa33701754a293d919bdd640ea266a16ad8af64f9fb06c6aaf227a5824b5a43179d59183a5d0435ba2ef8fc7452f4b53c6c2"; } + { locale = "nl"; arch = "linux-i686"; sha512 = "4dbb3144b5c4c83fd4ea4332e970b54628f7b81f23e77d0dbf4420e24357e79492be7e8ee1d9699d4fdaad126276dd0b5be94f80d44b3610dff0f914227bb79b"; } + { locale = "nl"; arch = "linux-x86_64"; sha512 = "83391cd1d6ba8aaca3b87e77156978884cb80a3a5e99780299b3d294d6956ab0f90af6dc365fb918e04d02d4813386967e81eeab2ac87acfb39fd1915a341327"; } + { locale = "nn-NO"; arch = "linux-i686"; sha512 = "a9e6f6131f8f7f05a7237b15d1eaef8c87ff537a918d908e3c826903d68f5e21908a38d96372034ec538ee4f99aedd5e7b5e3d12016d0dc47e6b5e33fa59c57c"; } + { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "b967378d6e1eba4aeca4bb1273395c06d272fca7b5ed652c773bc3676989ecd620055ce5813046747e3b76c0846688367a7e6f2c2523ad20f8d3d1e43822ed3e"; } + { locale = "or"; arch = "linux-i686"; sha512 = "44d2a4b5567749a546c414f2eba1f71e0976c6992755faf7b0268f579030ff26d31da9b252c0abc5f1906910ecb27b21c551390739945d0bee3e785d909e4de8"; } + { locale = "or"; arch = "linux-x86_64"; sha512 = "0458ded3dfd45c998afce1b7c9c202e948451f372d55cf7698917db1c5321283b62068eb20d4a6e79555a2e987150c8acd650c9146a5a2fa7fa61f625d2cf62a"; } + { locale = "pa-IN"; arch = "linux-i686"; sha512 = "dc5471efea10dd5d3bdf476140b79de4acaa243f3052f36e94d9f61cb6a6bb6dcb36912f7ddd387fb1b340a2efc90c5ea382f8bb6dcea02dd6c9f31f7796e642"; } + { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "65497656d473c0e8c9f78c245145815529f4a15aa851fd2864447cf1e740c76c088256f34acd6ed6bdd437ea029eb4b1f04c3b8980dfca916df6d99b2d68b5dd"; } + { locale = "pl"; arch = "linux-i686"; sha512 = "998d9ba179347d5aa87832eef4b283be1bb09edc16da3d2e59227db6687e062fd194e442ca35a94705b08b32f26ea0cf4d6baf0923df62fa37bc9beb35fc1f15"; } + { locale = "pl"; arch = "linux-x86_64"; sha512 = "629a9c4d5f8c11973e517bfaf9b5b7f5dbc4e107cb23b40ef5d554a3203451517ab79fa94128a29b77a11624c8f251fc566234b9419b63ec0cf6420ad54dd272"; } + { locale = "pt-BR"; arch = "linux-i686"; sha512 = "e28c3b29cd98a86e95803c7bd94aab5e75b2e503238d07eb52b896fd10bce36323dcd5647955f1d0eaf6e412388c182dcc3e0d343df3bc9e5b5aa8b796ff4c10"; } + { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "bb07881bb3887eca2fc9f02f779fd8833dcc42a0b3a194e7e9354e39cf01ac28a9e5d9456eeb0e1f538912845b38253a08642a9f092d0dd805ce16d06f3b2d8e"; } + { locale = "pt-PT"; arch = "linux-i686"; sha512 = "b80271f97cc1633be71fdaa45e30fda429aecda8c0fdce27beef058809c10fbe0619f3221c615605b7c9d50ddbc56dd5cb11b0d498fef1f0fc1c6c9a3178988d"; } + { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "2e3dd084f584f3a9515e927bf698c1e315e75d3ecd2b2d819dcfee15e1eed55b6c7255ce1040cc382aaada293ab40936366b9720620cbcab1eaff3e6490d9619"; } + { locale = "rm"; arch = "linux-i686"; sha512 = "24a88a708e13798bd4fe4bb1ca6622b1b22e586a6839157bd48fa5d32428bcc7cc1e2c415b24aed388228d8544f64b06c4c5bfb85865795e2a2bd4518a9fc7c5"; } + { locale = "rm"; arch = "linux-x86_64"; sha512 = "5a3ad81e9b469129ccf38658e393f3ba76ac4af0c98dcadb2d3d82dc23bcb917890d776be3259d5b513d5f5a6fda17bd2bf83838d7522bdc16a0f3a174ffeecd"; } + { locale = "ro"; arch = "linux-i686"; sha512 = "504874d47e06b15025c58368057ae5de7aa70fdd7f60a332534acbb9bf78bea759887cb9d5ff9abead788191eead1ac4263043c52d9ee46a171739fdd2cdcb68"; } + { locale = "ro"; arch = "linux-x86_64"; sha512 = "950962813b5ee0c7b5ab4fe5948a57cb72d4c8393181c943deb6629a4106fcf02b10f68127423d892bf97c0ed657eb2ae4536d7064a056367a562d0a24214d21"; } + { locale = "ru"; arch = "linux-i686"; sha512 = "277a422c76af287213da3dba4ce5d39f482dc2c5d3d0bec437acb970de10f68905fbff18c2cc2f73a68bdf770e3ae3de7c4809175683b08f0c3c964fcf568031"; } + { locale = "ru"; arch = "linux-x86_64"; sha512 = "98996dd94bead64b843c076f27cc79f9ccf43c41789299d4a7b71c5b7f5dc66c53fc1d5bb40bb74e50ee0b601bd8250223701125079fe04265b120841a6c07bf"; } + { locale = "si"; arch = "linux-i686"; sha512 = "45bd3b23a6387aa6dc0919c763885a58c11e292ce6c492008cb41a89da654b36b43638a9af9dde9f66c6fc6dd7bf58e5f4e1a7224d52b22100c98d777f4ade1f"; } + { locale = "si"; arch = "linux-x86_64"; sha512 = "f19242ad61048febbce7db34b5be4a018f90afefad79f17708987f17894ba363f11cff21bdc5b25dd133f0392374e5439f88de9706ea629badac6932f689c8a8"; } + { locale = "sk"; arch = "linux-i686"; sha512 = "c5ad7b7a0380d18680446887e1345ae73ed831a194096f99994b5b0d9b2bca636d92979a110505898130d1a5f40d8cbf1317b869294f4ba18f1a20daed2646f0"; } + { locale = "sk"; arch = "linux-x86_64"; sha512 = "30ec8e2d2d02f8d90f63fea5e1bd40ee0b6ec63bca2b903c227de461b9cce2c505e7197ade37513a9a417b0f4c2e6411db36e6d029b8a69dada4e7f43f426b83"; } + { locale = "sl"; arch = "linux-i686"; sha512 = "6bc12807f07a9614041860a0d0dd811ee91c18ebf22302baf62c9d9efed70a17681c88b2843fe43fb40c69afa39d794743e6be344268bcab848f10ad93535a03"; } + { locale = "sl"; arch = "linux-x86_64"; sha512 = "e269decbe5f1809f334999fd20f6a42c355edef0dfe94d205f48681ec713be9d9443d2bec4336eb899e6ec7613525dce10866105b629188ba18e38df18aa5e3c"; } + { locale = "son"; arch = "linux-i686"; sha512 = "abcf9a5636d607c7ecab13b880283a44b9b22fde95705ed3125d83ccca5962df885b8b9c6563c983a99239a64db48115eaf070506feae0f5098a1fb5988a9cbe"; } + { locale = "son"; arch = "linux-x86_64"; sha512 = "d35d7b7e3adf6be52b0a0df9aeceb1e2c7f11debd71bb0774aa3d049b12000a6c06df82500ef1c267f5db9a8bd29f3a6f937ab4fd020cfd68087f7ff1c3e6638"; } + { locale = "sq"; arch = "linux-i686"; sha512 = "64061510d35d2c935d1644b2211b938aae9bb8908e0bbfad96706e82a1d18f2b7008c9eaf9538188de9c6ed4b19a32d50722c8df030f2eeb4470d90f682202a8"; } + { locale = "sq"; arch = "linux-x86_64"; sha512 = "0d4a3cda3ee9691a5b60924c07eabd3a14f1679f83ca974ef294ebe347a078a95e29cd86a74e39b71a8c81ba2261a7aa694cef959068759b66b82622fe84035c"; } + { locale = "sr"; arch = "linux-i686"; sha512 = "a3b51cb022a5944afa77a77916150bfd13b803d75389a5d459cc104a55418c709d846997886dc8d4e7b8a56d2e980b772048a23b0b790d28868db24eb30ba71a"; } + { locale = "sr"; arch = "linux-x86_64"; sha512 = "dfde37d5efd379d7ef103792de62ad4f1974124357ddff85a7efad1f4aab82ce5e91746562bbce4a4a0c8ea291014b0a9d7ece17cf8bc77b0ce4a13b9b310161"; } + { locale = "sv-SE"; arch = "linux-i686"; sha512 = "5b8b27d0bdf9bf755e1925aa709d2627aa4a40beca6a330b22345517b93cc7b27f83218111e9344505882b1f1e38c7de874147dbc9f8b378bf6dc328620e9a53"; } + { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "4a3461ada07583650f9b3a7ac159b190640e7f30274068d2c9c448aec2cffc4c41d3280c1598d8db2f114315e46b391f5b4f0307882400c1795db63eb5fb716f"; } + { locale = "ta"; arch = "linux-i686"; sha512 = "8a57312955afdf8bbe1502ec669623abddf6b8252281d96009aecc86e9c0538d72c9f8469ed1206abee77f7ec3db58486523cbb6590844516af92ab596d74c1b"; } + { locale = "ta"; arch = "linux-x86_64"; sha512 = "cd3910562d3bc34c83e6d0f896073077e49c1be696e5fb5357533726f9fc9f8ca002ad04aa118c9ab88fb09d73c6b9a8d537f00a6c1fb6c5534d2b39b8e923e8"; } + { locale = "te"; arch = "linux-i686"; sha512 = "3c3baff91af1ad7f73e6f51994bd70b5499dfea53318318eb6cffc41e465b839980414a5d13a25652e2cf1a47c19f98c2866603911f135f2de1da44c376a2d76"; } + { locale = "te"; arch = "linux-x86_64"; sha512 = "9e42cfc73b09e8508cf490095973fb46dbeb31dc245fe3c678418aca285adca83ed42622b33645fdada11354ed8388c11572cd34ccfe7b3ee8c4b4184f3c217e"; } + { locale = "th"; arch = "linux-i686"; sha512 = "16b0c10f00bd326a3bb175979c58f4903e9e3167fa603cd13ee2294c44503acff2ab5a3aa13d9d9ecbbb529816c80a78df4a12ae114297082959cf3a33af39b8"; } + { locale = "th"; arch = "linux-x86_64"; sha512 = "fdfdb7622a8e856b3c2f398f20caf1bbcd723fb874585d9c3a767d13b3f21d226f65dbe54960d3ea9c44cbe5cb92e7ab7e57fecc6182317825d7d3788700dcbc"; } + { locale = "tr"; arch = "linux-i686"; sha512 = "2a847c3f882652c925a8421b3af7761400d1f94444b70ad7fd0f5645b769a9adaad7ae594bb8ddad30e1f39c0230db02c94097f1e86e6ba1913d0c6f104f4b38"; } + { locale = "tr"; arch = "linux-x86_64"; sha512 = "86087814f8eb3fd2f534dedcd78b0aa34cf44b8820e640ff96df23f4170145ce122faa0fb00607bbefb515a5d64cdd025388a607d01b40a3c369a2b543568e29"; } + { locale = "uk"; arch = "linux-i686"; sha512 = "12a27ca604205bff7914910ed4354b80422dcbcbccb07fc50b0ec34aabacac42cc105bd5fa049422a3dbaf549aba8c58c7b13bbf884a59fe62af04f47e747743"; } + { locale = "uk"; arch = "linux-x86_64"; sha512 = "bde5e9a5f6ca31eabb71e8985c91b9e8dd75a3b053907d3b3dcc5f40b657208d867f49053fc89b19b6d8da889da97eece87c8d48fcf84434b3a878802ba4fd7b"; } + { locale = "uz"; arch = "linux-i686"; sha512 = "4006a6fe98e5aa3ae4602be834bee3dff63fadf83f40469a077e60122469a177df78f5d172d9ee13c59070cbc19ab38ca3d2c4d332dc8a322af3950fe607de14"; } + { locale = "uz"; arch = "linux-x86_64"; sha512 = "fdce9f14896de72ab7d56db328414096e57a40a27a161335f3655d3f492e3c654f3140d786b64a74622987171d7383ce32a3e739e292f5666eb9c39c54abc040"; } + { locale = "vi"; arch = "linux-i686"; sha512 = "63a108ac72d82e42d088be0c732393c776d108881e6d33bbc3d561e3491f878c8d9850f34cec4db2e25f3a1346db3bda19d09bcde49a16a37c56af610ec1be95"; } + { locale = "vi"; arch = "linux-x86_64"; sha512 = "85f3dade252822685486e4697f63b33423e2b45eeb3afdf48bb3ce32ce50f59f7d51d058595a2319049e6dc10fdf9dd95921508b4b6c1833951542d479c1dc39"; } + { locale = "xh"; arch = "linux-i686"; sha512 = "42627ed1ce5fbf15c325083c472bcb6c96a4de163909ba1fbea1f9e55fdcdcefd44f9ccfa83988c9fc741fb23651cde7abd119cf6badf42bcbf7aade693a59a4"; } + { locale = "xh"; arch = "linux-x86_64"; sha512 = "c615d0713b8e6e5bbec38617941d5ebe23d41e03cc68866387ca676c042432907b2f7a32845c4f32d4c198ef5f4eaae69b6fccbbc62e6970b5fc88223d70f998"; } + { locale = "zh-CN"; arch = "linux-i686"; sha512 = "345f931bd3d0848296d08106b820858be8e747c0b88ce7246c9e64a4d80091c21b6c9471af56ddaf653c93895611def817b616a46222276f9c82159f9e5f52ad"; } + { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "8a47c1adefd06b85b8834b84159790fdc97cb077ff7990bd39843de99527713bae8d0f16e23c683f075aa55d27037d888aaab54010fffb83f3368e4e15be9358"; } + { locale = "zh-TW"; arch = "linux-i686"; sha512 = "b46b59699fe729be3114306bbc9b4a884b1f6f763dd3010e569e0233509b58a06ff38657a0b364e2665ee477cac70417fefc991f6a127801f17b04e9062f63df"; } + { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "6df4202e93541bec3bf2c701b48720109baeb7ae3833f62eabf56b7e934a560151bf101d1ed1293f945a919e3d1bf6e7495ee00d6aa7a22ce8064aca4f0b3778"; } ]; } From da62589d8eb1efbb4bb51e165cbbe4c1a5d964ea Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Tue, 29 Mar 2016 10:34:52 +0200 Subject: [PATCH 317/520] gnome3_20: Add GNOME 3.20 package set --- .../services/x11/desktop-managers/gnome3.nix | 1 - nixos/tests/gnome3_20-gdm.nix | 41 ++ nixos/tests/gnome3_20.nix | 38 ++ .../gnome-3/3.20/apps/accerciser/default.nix | 28 ++ .../gnome-3/3.20/apps/bijiben/default.nix | 36 ++ .../gnome-3/3.20/apps/bijiben/src.nix | 10 + .../gnome-3/3.20/apps/cheese/default.nix | 26 ++ .../desktops/gnome-3/3.20/apps/cheese/src.nix | 10 + .../gnome-3/3.20/apps/evolution/default.nix | 49 +++ .../gnome-3/3.20/apps/evolution/src.nix | 10 + .../gnome-3/3.20/apps/file-roller/default.nix | 22 + .../gnome-3/3.20/apps/file-roller/src.nix | 10 + .../gnome-3/3.20/apps/gedit/default.nix | 31 ++ pkgs/desktops/gnome-3/3.20/apps/gedit/src.nix | 10 + .../gnome-3/3.20/apps/glade/default.nix | 30 ++ pkgs/desktops/gnome-3/3.20/apps/glade/src.nix | 10 + .../gnome-3/3.20/apps/gnome-boxes/default.nix | 42 ++ .../gnome-3/3.20/apps/gnome-boxes/src.nix | 10 + .../3.20/apps/gnome-calendar/default.nix | 22 + .../gnome-3/3.20/apps/gnome-calendar/src.nix | 10 + .../3.20/apps/gnome-characters/default.nix | 19 + .../3.20/apps/gnome-characters/src.nix | 10 + .../3.20/apps/gnome-clocks/default.nix | 27 ++ .../gnome-3/3.20/apps/gnome-clocks/src.nix | 10 + .../3.20/apps/gnome-documents/default.nix | 39 ++ .../gnome-3/3.20/apps/gnome-documents/src.nix | 10 + .../gnome-getting-started-docs/default.nix | 15 + .../apps/gnome-getting-started-docs/src.nix | 10 + .../gnome-3/3.20/apps/gnome-logs/default.nix | 21 + .../gnome-3/3.20/apps/gnome-logs/src.nix | 10 + .../gnome-3/3.20/apps/gnome-maps/default.nix | 25 ++ .../gnome-3/3.20/apps/gnome-maps/soup.patch | 12 + .../gnome-3/3.20/apps/gnome-maps/src.nix | 10 + .../gnome-3/3.20/apps/gnome-music/default.nix | 30 ++ .../gnome-3/3.20/apps/gnome-music/src.nix | 10 + .../3.20/apps/gnome-nettool/default.nix | 26 ++ .../3.20/apps/gnome-photos/default.nix | 31 ++ .../gnome-3/3.20/apps/gnome-photos/src.nix | 10 + .../3.20/apps/gnome-weather/default.nix | 19 + .../gnome-3/3.20/apps/gnome-weather/src.nix | 10 + .../3.20/apps/nautilus-sendto/default.nix | 22 + .../gnome-3/3.20/apps/polari/default.nix | 22 + .../desktops/gnome-3/3.20/apps/polari/src.nix | 10 + .../gnome-3/3.20/apps/seahorse/default.nix | 35 ++ .../gnome-3/3.20/apps/seahorse/src.nix | 10 + .../gnome-3/3.20/apps/vinagre/default.nix | 21 + .../gnome-3/3.20/apps/vinagre/src.nix | 10 + .../3.20/core/adwaita-icon-theme/default.nix | 21 + .../3.20/core/adwaita-icon-theme/src.nix | 10 + .../gnome-3/3.20/core/baobab/default.nix | 32 ++ .../desktops/gnome-3/3.20/core/baobab/src.nix | 10 + .../gnome-3/3.20/core/caribou/default.nix | 31 ++ .../3.20/core/dconf-editor/default.nix | 16 + .../gnome-3/3.20/core/dconf-editor/src.nix | 10 + .../gnome-3/3.20/core/dconf/default.nix | 23 + .../gnome-3/3.20/core/empathy/default.nix | 57 +++ .../gnome-3/3.20/core/eog/default.nix | 20 + pkgs/desktops/gnome-3/3.20/core/eog/src.nix | 10 + .../gnome-3/3.20/core/epiphany/default.nix | 34 ++ .../3.20/core/epiphany/libxml_depend.patch | 10 + .../gnome-3/3.20/core/epiphany/src.nix | 10 + .../gnome-3/3.20/core/evince/default.nix | 63 +++ .../desktops/gnome-3/3.20/core/evince/src.nix | 10 + .../core/evolution-data-server/default.nix | 30 ++ .../3.20/core/evolution-data-server/src.nix | 10 + .../gnome-3/3.20/core/folks/default.nix | 43 ++ .../gnome-3/3.20/core/gconf/default.nix | 32 ++ .../gnome-3/3.20/core/gcr/default.nix | 28 ++ pkgs/desktops/gnome-3/3.20/core/gcr/src.nix | 10 + .../3.20/core/gdm/3.16-wip/default.nix | 41 ++ .../3.16-wip/disable_x_access_control.patch | 15 + .../3.20/core/gdm/3.16-wip/sessions_dir.patch | 17 + .../3.20/core/gdm/3.16-wip/xserver_path.patch | 83 ++++ .../gnome-3/3.20/core/gdm/default.nix | 42 ++ .../core/gdm/disable_x_access_control.patch | 13 + .../gnome-3/3.20/core/gdm/libsystemd.patch | 21 + .../3.20/core/gdm/no-dbus-launch.patch | 20 + .../gnome-3/3.20/core/gdm/sessions_dir.patch | 17 + pkgs/desktops/gnome-3/3.20/core/gdm/src.nix | 10 + .../gnome-3/3.20/core/gdm/xserver_path.patch | 15 + .../3.20/core/geocode-glib/default.nix | 14 + .../gnome-3/3.20/core/geocode-glib/src.nix | 10 + .../gnome-3/3.20/core/gjs/default.nix | 20 + pkgs/desktops/gnome-3/3.20/core/gjs/src.nix | 10 + .../3.20/core/gnome-backgrounds/default.nix | 12 + .../3.20/core/gnome-backgrounds/src.nix | 10 + .../3.20/core/gnome-bluetooth/default.nix | 23 + .../gnome-3/3.20/core/gnome-bluetooth/src.nix | 12 + .../3.20/core/gnome-calculator/default.nix | 26 ++ .../3.20/core/gnome-calculator/src.nix | 10 + .../3.20/core/gnome-common/default.nix | 17 + .../gnome-3/3.20/core/gnome-common/src.nix | 10 + .../3.20/core/gnome-contacts/default.nix | 47 +++ .../3.20/core/gnome-contacts/gio_unix.patch | 10 + .../gnome-3/3.20/core/gnome-contacts/src.nix | 10 + .../core/gnome-control-center/default.nix | 57 +++ .../3.20/core/gnome-control-center/src.nix | 10 + .../3.20/core/gnome-desktop/default.nix | 24 ++ .../gnome-3/3.20/core/gnome-desktop/src.nix | 10 + .../3.20/core/gnome-dictionary/default.nix | 32 ++ .../3.20/core/gnome-dictionary/src.nix | 10 + .../3.20/core/gnome-disk-utility/default.nix | 35 ++ .../3.20/core/gnome-disk-utility/src.nix | 10 + .../3.20/core/gnome-font-viewer/default.nix | 31 ++ .../3.20/core/gnome-font-viewer/src.nix | 10 + .../3.20/core/gnome-keyring/default.nix | 34 ++ .../gnome-3/3.20/core/gnome-keyring/src.nix | 10 + .../gnome-3/3.20/core/gnome-menus/default.nix | 22 + .../core/gnome-online-accounts/default.nix | 28 ++ .../3.20/core/gnome-online-accounts/src.nix | 10 + .../3.20/core/gnome-online-miners/default.nix | 28 ++ .../3.20/core/gnome-online-miners/src.nix | 10 + .../3.20/core/gnome-screenshot/default.nix | 31 ++ .../3.20/core/gnome-screenshot/src.nix | 10 + .../3.20/core/gnome-session/default.nix | 26 ++ .../gnome-3/3.20/core/gnome-session/src.nix | 10 + .../core/gnome-settings-daemon/default.nix | 31 ++ .../3.20/core/gnome-settings-daemon/src.nix | 10 + .../core/gnome-shell-extensions/default.nix | 19 + .../3.20/core/gnome-shell-extensions/src.nix | 10 + .../gnome-3/3.20/core/gnome-shell/default.nix | 58 +++ .../gnome-3/3.20/core/gnome-shell/src.nix | 10 + .../3.20/core/gnome-system-log/default.nix | 36 ++ .../core/gnome-system-monitor/default.nix | 32 ++ .../3.20/core/gnome-system-monitor/src.nix | 10 + .../3.20/core/gnome-terminal/default.nix | 23 + .../gnome-3/3.20/core/gnome-terminal/src.nix | 10 + .../core/gnome-themes-standard/default.nix | 14 + .../3.20/core/gnome-themes-standard/src.nix | 10 + .../3.20/core/gnome-user-docs/default.nix | 15 + .../gnome-3/3.20/core/gnome-user-docs/src.nix | 10 + .../3.20/core/gnome-user-share/default.nix | 45 ++ .../3.20/core/gnome-user-share/src.nix | 12 + .../3.20/core/grilo-plugins/default.nix | 29 ++ .../gnome-3/3.20/core/grilo/default.nix | 35 ++ .../gnome-3/3.20/core/grilo/setup-hook.sh | 7 + .../gsettings-desktop-schemas/default.nix | 22 + .../core/gsettings-desktop-schemas/src.nix | 10 + .../gnome-3/3.20/core/gsound/default.nix | 22 + .../3.20/core/gtksourceview/default.nix | 22 + .../core/gtksourceview/nix_share_path.patch | 11 + .../gnome-3/3.20/core/gtksourceview/src.nix | 10 + .../gnome-3/3.20/core/gucharmap/default.nix | 33 ++ .../gnome-3/3.20/core/gucharmap/src.nix | 10 + .../gnome-3/3.20/core/libcroco/default.nix | 21 + .../gnome-3/3.20/core/libgdata/default.nix | 30 ++ .../gnome-3/3.20/core/libgee/default.nix | 26 ++ .../core/libgee/fix_introspection_paths.patch | 13 + .../gnome-3/3.20/core/libgee/libgee-1.nix | 26 ++ .../3.20/core/libgnome-keyring/default.nix | 26 ++ .../gnome-3/3.20/core/libgnomekbd/default.nix | 24 ++ .../gnome-3/3.20/core/libgweather/default.nix | 17 + .../gnome-3/3.20/core/libgweather/src.nix | 10 + .../gnome-3/3.20/core/libgxps/default.nix | 21 + .../gnome-3/3.20/core/libpeas/default.nix | 20 + .../gnome-3/3.20/core/libpeas/src.nix | 10 + .../gnome-3/3.20/core/libzapojit/default.nix | 16 + .../gnome-3/3.20/core/mutter/default.nix | 31 ++ .../gnome-3/3.20/core/mutter/math.patch | 10 + .../desktops/gnome-3/3.20/core/mutter/src.nix | 10 + .../gnome-3/3.20/core/mutter/x86.patch | 33 ++ .../gnome-3/3.20/core/nautilus/default.nix | 20 + .../3.20/core/nautilus/extension_dir.patch | 24 ++ .../gnome-3/3.20/core/nautilus/src.nix | 10 + .../gnome-3/3.20/core/rest/default.nix | 19 + .../gnome-3/3.20/core/sushi/default.nix | 40 ++ pkgs/desktops/gnome-3/3.20/core/sushi/src.nix | 10 + .../3.20/core/totem-pl-parser/default.nix | 20 + .../gnome-3/3.20/core/totem/default.nix | 42 ++ pkgs/desktops/gnome-3/3.20/core/totem/src.nix | 10 + .../gnome-3/3.20/core/tracker/default.nix | 48 +++ .../gnome-3/3.20/core/tracker/src.nix | 11 + .../gnome-3/3.20/core/vino/default.nix | 25 ++ pkgs/desktops/gnome-3/3.20/core/vino/src.nix | 10 + pkgs/desktops/gnome-3/3.20/core/vte/2.90.nix | 40 ++ .../gnome-3/3.20/core/vte/default.nix | 59 +++ pkgs/desktops/gnome-3/3.20/core/vte/src.nix | 10 + .../gnome-3/3.20/core/yelp-tools/default.nix | 17 + .../gnome-3/3.20/core/yelp-tools/src.nix | 10 + .../gnome-3/3.20/core/yelp-xsl/default.nix | 18 + .../gnome-3/3.20/core/yelp-xsl/src.nix | 10 + .../gnome-3/3.20/core/yelp/default.nix | 26 ++ pkgs/desktops/gnome-3/3.20/core/yelp/src.nix | 10 + .../gnome-3/3.20/core/zenity/default.nix | 19 + .../desktops/gnome-3/3.20/core/zenity/src.nix | 10 + pkgs/desktops/gnome-3/3.20/default.nix | 397 ++++++++++++++++++ .../gnome-3/3.20/desktop/rarian/default.nix | 16 + .../gnome-3/3.20/devtools/anjuta/default.nix | 24 ++ .../gnome-3/3.20/devtools/anjuta/src.nix | 10 + .../gnome-3/3.20/devtools/devhelp/default.nix | 18 + .../gnome-3/3.20/devtools/devhelp/src.nix | 10 + .../gnome-3/3.20/devtools/gdl/default.nix | 15 + .../gnome-3/3.20/devtools/gdl/src.nix | 10 + .../devtools/gnome-devel-docs/default.nix | 15 + .../3.20/devtools/gnome-devel-docs/src.nix | 10 + .../gnome-3/3.20/games/aisleriot/default.nix | 20 + .../gnome-3/3.20/games/aisleriot/src.nix | 10 + .../3.20/games/five-or-more/default.nix | 19 + .../gnome-3/3.20/games/five-or-more/src.nix | 10 + .../3.20/games/four-in-a-row/default.nix | 19 + .../gnome-3/3.20/games/four-in-a-row/src.nix | 10 + .../3.20/games/gnome-chess/default.nix | 19 + .../gnome-3/3.20/games/gnome-chess/src.nix | 10 + .../3.20/games/gnome-klotski/default.nix | 19 + .../gnome-3/3.20/games/gnome-klotski/src.nix | 10 + .../3.20/games/gnome-mahjongg/default.nix | 19 + .../gnome-3/3.20/games/gnome-mahjongg/src.nix | 10 + .../3.20/games/gnome-mines/default.nix | 19 + .../gnome-3/3.20/games/gnome-mines/src.nix | 10 + .../3.20/games/gnome-nibbles/default.nix | 21 + .../gnome-3/3.20/games/gnome-nibbles/src.nix | 10 + .../3.20/games/gnome-robots/default.nix | 20 + .../gnome-3/3.20/games/gnome-robots/src.nix | 10 + .../3.20/games/gnome-sudoku/default.nix | 17 + .../gnome-3/3.20/games/gnome-sudoku/src.nix | 10 + .../3.20/games/gnome-taquin/default.nix | 19 + .../gnome-3/3.20/games/gnome-taquin/src.nix | 10 + .../3.20/games/gnome-tetravex/default.nix | 18 + .../gnome-3/3.20/games/gnome-tetravex/src.nix | 10 + .../gnome-3/3.20/games/hitori/default.nix | 24 ++ .../gnome-3/3.20/games/hitori/src.nix | 10 + .../gnome-3/3.20/games/iagno/default.nix | 19 + .../desktops/gnome-3/3.20/games/iagno/src.nix | 10 + .../gnome-3/3.20/games/lightsoff/default.nix | 19 + .../gnome-3/3.20/games/lightsoff/src.nix | 10 + .../3.20/games/quadrapassel/default.nix | 21 + .../gnome-3/3.20/games/quadrapassel/src.nix | 10 + .../gnome-3/3.20/games/swell-foop/default.nix | 19 + .../gnome-3/3.20/games/swell-foop/src.nix | 10 + .../gnome-3/3.20/games/tali/default.nix | 19 + pkgs/desktops/gnome-3/3.20/games/tali/src.nix | 10 + pkgs/desktops/gnome-3/3.20/installer.nix | 15 + ...d-with-evolution-data-server-3.13.90.patch | 39 ++ .../gnome-3/3.20/misc/california/default.nix | 39 ++ .../gnome-3/3.20/misc/geary/default.nix | 49 +++ .../3.20/misc/geary/disable_valadoc.patch | 24 ++ .../gnome-3/3.20/misc/gexiv2/default.nix | 28 ++ .../gnome-3/3.20/misc/gfbgraph/default.nix | 23 + .../gnome-3/3.20/misc/gitg/default.nix | 43 ++ pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix | 10 + ...themes-and-icons-in-system-data-dirs.patch | 120 ++++++ ...-multiple-entries-for-a-single-theme.patch | 100 +++++ ...reate-config-dir-if-it-doesn-t-exist.patch | 29 ++ .../3.20/misc/gnome-tweak-tool/default.nix | 44 ++ .../gnome-tweak-tool/find_gsettings.patch | 22 + .../3.20/misc/gnome-tweak-tool/src.nix | 10 + .../3.20/misc/gnome-video-effects/default.nix | 20 + .../gnome-3/3.20/misc/gpaste/default.nix | 45 ++ .../gnome-3/3.20/misc/gspell/default.nix | 11 + .../desktops/gnome-3/3.20/misc/gspell/src.nix | 10 + .../gnome-3/3.20/misc/gtkhtml/default.nix | 16 + .../gnome-3/3.20/misc/gtkhtml/src.nix | 10 + .../3.20/misc/libgames-support/default.nix | 22 + .../gnome-3/3.20/misc/libgda/default.nix | 20 + .../desktops/gnome-3/3.20/misc/libgda/src.nix | 10 + .../3.20/misc/libgit2-glib/default.nix | 13 + .../gnome-3/3.20/misc/libgit2-glib/src.nix | 12 + .../gnome-3/3.20/misc/libmediaart/default.nix | 22 + .../gnome-3/3.20/misc/pomodoro/default.nix | 50 +++ pkgs/top-level/all-packages.nix | 3 +- 260 files changed, 5773 insertions(+), 2 deletions(-) create mode 100644 nixos/tests/gnome3_20-gdm.nix create mode 100644 nixos/tests/gnome3_20.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/accerciser/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/bijiben/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/bijiben/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/cheese/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/evolution/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/file-roller/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gedit/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gedit/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/glade/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/glade/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-characters/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-characters/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-documents/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-logs/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-logs/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-maps/soup.patch create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-maps/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-music/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-music/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-nettool/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-weather/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/gnome-weather/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/nautilus-sendto/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/polari/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/polari/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/seahorse/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/vinagre/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/apps/vinagre/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/baobab/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/baobab/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/caribou/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/dconf-editor/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/dconf/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/empathy/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/eog/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/eog/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/epiphany/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/evince/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/evince/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/evolution-data-server/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/folks/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gconf/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gcr/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gcr/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/disable_x_access_control.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/sessions_dir.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/xserver_path.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/disable_x_access_control.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/libsystemd.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/no-dbus-launch.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/sessions_dir.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gdm/xserver_path.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/geocode-glib/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/geocode-glib/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gjs/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gjs/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-calculator/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-common/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-common/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-contacts/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-contacts/gio_unix.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-contacts/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-control-center/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-control-center/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-desktop/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-keyring/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-menus/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-session/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-terminal/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gnome-user-share/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/grilo/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh create mode 100644 pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gsound/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gtksourceview/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gtksourceview/nix_share_path.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gucharmap/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/gucharmap/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgee/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgee/fix_introspection_paths.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgee/libgee-1.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgnome-keyring/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgnomekbd/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgweather/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgweather/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libgxps/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/libzapojit/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/mutter/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/mutter/math.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/mutter/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/mutter/x86.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/nautilus/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/nautilus/extension_dir.patch create mode 100644 pkgs/desktops/gnome-3/3.20/core/nautilus/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/rest/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/sushi/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/sushi/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/totem-pl-parser/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/totem/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/totem/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/tracker/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/tracker/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/vino/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/vino/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/vte/2.90.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/vte/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/vte/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp-tools/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp-tools/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp-xsl/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp-xsl/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/yelp/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/zenity/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/core/zenity/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/desktop/rarian/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/anjuta/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/anjuta/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/devhelp/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/devhelp/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/gdl/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/gdl/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/aisleriot/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/aisleriot/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/five-or-more/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/five-or-more/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/four-in-a-row/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/four-in-a-row/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-chess/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-chess/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-klotski/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-klotski/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-mines/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-robots/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-robots/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-taquin/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-taquin/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/hitori/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/hitori/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/iagno/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/iagno/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/lightsoff/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/lightsoff/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/quadrapassel/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/quadrapassel/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/swell-foop/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/swell-foop/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/tali/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/games/tali/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/installer.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/california/0002-Build-with-evolution-data-server-3.13.90.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/california/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/geary/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gexiv2/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gfbgraph/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gitg/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0001-Search-for-themes-and-icons-in-system-data-dirs.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0002-Don-t-show-multiple-entries-for-a-single-theme.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0003-Create-config-dir-if-it-doesn-t-exist.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/find_gsettings.patch create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gnome-video-effects/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gspell/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gtkhtml/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/gtkhtml/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libgames-support/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libgda/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libgda/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/src.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/libmediaart/default.nix create mode 100644 pkgs/desktops/gnome-3/3.20/misc/pomodoro/default.nix diff --git a/nixos/modules/services/x11/desktop-managers/gnome3.nix b/nixos/modules/services/x11/desktop-managers/gnome3.nix index b8d19eb80c85..91601f387cbe 100644 --- a/nixos/modules/services/x11/desktop-managers/gnome3.nix +++ b/nixos/modules/services/x11/desktop-managers/gnome3.nix @@ -81,7 +81,6 @@ in { }; environment.gnome3.packageSet = mkOption { - type = types.nullOr types.package; default = null; example = literalExample "pkgs.gnome3_18"; description = "Which GNOME 3 package set to use."; diff --git a/nixos/tests/gnome3_20-gdm.nix b/nixos/tests/gnome3_20-gdm.nix new file mode 100644 index 000000000000..8b1e9afedfb9 --- /dev/null +++ b/nixos/tests/gnome3_20-gdm.nix @@ -0,0 +1,41 @@ +import ./make-test.nix ({ pkgs, ...} : { + name = "gnome3-gdm"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ lethalman ]; + }; + + machine = + { config, pkgs, ... }: + + { imports = [ ./common/user-account.nix ]; + + services.xserver.enable = true; + + services.xserver.displayManager.gdm = { + enable = true; + autoLogin = { + enable = true; + user = "alice"; + }; + }; + services.xserver.desktopManager.gnome3.enable = true; + environment.gnome3.packageSet = pkgs.gnome3_20; + + virtualisation.memorySize = 512; + }; + + testScript = + '' + $machine->waitForX; + $machine->sleep(15); + + # Check that logging in has given the user ownership of devices. + $machine->succeed("getfacl /dev/snd/timer | grep -q alice"); + + $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'"); + $machine->succeed("xauth merge ~alice/.Xauthority"); + $machine->waitForWindow(qr/Terminal/); + $machine->sleep(20); + $machine->screenshot("screen"); + ''; +}) diff --git a/nixos/tests/gnome3_20.nix b/nixos/tests/gnome3_20.nix new file mode 100644 index 000000000000..51c83a4e3129 --- /dev/null +++ b/nixos/tests/gnome3_20.nix @@ -0,0 +1,38 @@ +import ./make-test.nix ({ pkgs, ...} : { + name = "gnome3"; + meta = with pkgs.stdenv.lib.maintainers; { + maintainers = [ domenkozar eelco chaoflow lethalman ]; + }; + + machine = + { config, pkgs, ... }: + + { imports = [ ./common/user-account.nix ]; + + services.xserver.enable = true; + + services.xserver.displayManager.auto.enable = true; + services.xserver.displayManager.auto.user = "alice"; + services.xserver.desktopManager.gnome3.enable = true; + + environment.gnome3.packageSet = pkgs.gnome3_20; + + virtualisation.memorySize = 512; + }; + + testScript = + '' + $machine->waitForX; + $machine->sleep(15); + + # Check that logging in has given the user ownership of devices. + $machine->succeed("getfacl /dev/snd/timer | grep -q alice"); + + $machine->succeed("su - alice -c 'DISPLAY=:0.0 gnome-terminal &'"); + $machine->succeed("xauth merge ~alice/.Xauthority"); + $machine->waitForWindow(qr/Terminal/); + $machine->mustSucceed("timeout 900 bash -c 'journalctl -f|grep -m 1 \"GNOME Shell started\"'"); + $machine->sleep(10); + $machine->screenshot("screen"); + ''; +}) diff --git a/pkgs/desktops/gnome-3/3.20/apps/accerciser/default.nix b/pkgs/desktops/gnome-3/3.20/apps/accerciser/default.nix new file mode 100644 index 000000000000..a2813e0581b3 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/accerciser/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, itstool, libxml2, python3, python3Packages, pyatspi, at_spi2_core +, dbus, intltool, libwnck3 }: + +stdenv.mkDerivation rec { + name = "accerciser-3.14.0"; + + src = fetchurl { + url = "mirror://gnome/sources/accerciser/3.14/${name}.tar.xz"; + sha256 = "0x05gpajpcs01g7m34g6fxz8122cf9kx3k0lchwl34jy8xfr39gm"; + }; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook itstool libxml2 python3 pyatspi + python3Packages.pygobject3 python3Packages.ipython + at_spi2_core dbus intltool libwnck3 gnome3.defaultIconTheme + ]; + + wrapPrefixVariables = [ "PYTHONPATH" ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Accerciser; + description = "Interactive Python accessibility explorer"; + maintainers = gnome3.maintainers; + license = licenses.bsd3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/bijiben/default.nix b/pkgs/desktops/gnome-3/3.20/apps/bijiben/default.nix new file mode 100644 index 000000000000..00895f9a2bb2 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/bijiben/default.nix @@ -0,0 +1,36 @@ +{ stdenv, intltool, fetchurl, pkgconfig, glib +, evolution_data_server, evolution, sqlite +, makeWrapper, itstool, desktop_file_utils +, clutter_gtk, libuuid, webkitgtk, zeitgeist +, gnome3, librsvg, gdk_pixbuf, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ pkgconfig glib intltool itstool libxml2 + clutter_gtk libuuid webkitgtk gnome3.tracker + gnome3.gnome_online_accounts zeitgeist desktop_file_utils + gnome3.gsettings_desktop_schemas makeWrapper + gdk_pixbuf gnome3.defaultIconTheme librsvg + evolution_data_server evolution sqlite ]; + + enableParallelBuilding = true; + + preFixup = '' + wrapProgram "$out/bin/bijiben" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Bijiben; + description = "Note editor designed to remain simple to use"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/bijiben/src.nix b/pkgs/desktops/gnome-3/3.20/apps/bijiben/src.nix new file mode 100644 index 000000000000..83961869826b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/bijiben/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "bijiben-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/bijiben/3.20/bijiben-3.20.2.tar.xz; + sha256 = "5774dfdedb79f5ffe5bac3cebe0816dc7e6410381744dcb999815061dee6a981"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix new file mode 100644 index 000000000000..db50656cf37a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/cheese/default.nix @@ -0,0 +1,26 @@ +{ stdenv, intltool, fetchurl, wrapGAppsHook, gnome-video-effects, libcanberra_gtk3 +, pkgconfig, gtk3, glib, clutter_gtk, clutter-gst, udev, gst_all_1, itstool +, libgudev +, adwaita-icon-theme, librsvg, gdk_pixbuf, gnome3, gnome_desktop, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 glib intltool wrapGAppsHook gnome-video-effects itstool + gdk_pixbuf adwaita-icon-theme librsvg udev gst_all_1.gstreamer libxml2 + gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good gnome_desktop + gst_all_1.gst-plugins-bad clutter_gtk clutter-gst + libcanberra_gtk3 libgudev ]; + + enableParallelBuilding = true; + + NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Cheese; + description = "Take photos and videos with your webcam, with fun graphical effects"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/cheese/src.nix b/pkgs/desktops/gnome-3/3.20/apps/cheese/src.nix new file mode 100644 index 000000000000..3ca8c8c73c8c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/cheese/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "cheese-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/cheese/3.20/cheese-3.20.2.tar.xz; + sha256 = "b7c18719b708e039c063ef09278ee813923556e06af4a7e9598c5d3bdeb83775"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/evolution/default.nix b/pkgs/desktops/gnome-3/3.20/apps/evolution/default.nix new file mode 100644 index 000000000000..a9bb87d4dddf --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/evolution/default.nix @@ -0,0 +1,49 @@ +{ stdenv, intltool, fetchurl, libxml2, webkitgtk, highlight +, pkgconfig, gtk3, glib, libnotify, gtkspell3 +, makeWrapper, itstool, shared_mime_info, libical, db, gcr, sqlite +, gnome3, librsvg, gdk_pixbuf, libsecret, nss, nspr, icu, libtool +, libcanberra_gtk3, bogofilter, gst_all_1, procps, p11_kit }: + +let + majVer = gnome3.version; +in stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + propagatedBuildInputs = [ gnome3.gtkhtml ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 libtool + gdk_pixbuf gnome3.defaultIconTheme librsvg db icu + gnome3.evolution_data_server libsecret libical gcr + webkitgtk shared_mime_info gnome3.gnome_desktop gtkspell3 + libcanberra_gtk3 bogofilter gnome3.libgdata sqlite + gst_all_1.gstreamer gst_all_1.gst-plugins-base p11_kit + nss nspr libnotify procps highlight gnome3.libgweather + gnome3.gsettings_desktop_schemas makeWrapper ]; + + configureFlags = [ "--disable-spamassassin" "--disable-pst-import" "--disable-autoar" + "--disable-libcryptui" ]; + + NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; + + enableParallelBuilding = true; + + preFixup = '' + for f in $out/bin/* $out/libexec/*; do + wrapProgram "$f" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + done + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Evolution; + description = "Personal information management application that provides integrated mail, calendaring and address book functionality"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix new file mode 100644 index 000000000000..c68ee65cb8b3 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/evolution/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "evolution-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/evolution/3.20/evolution-3.20.2.tar.xz; + sha256 = "66fa6e18c4e6a29c44870d5786e4dbb82507a8254bca9e27e802625081fca630"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix new file mode 100644 index 000000000000..df90c7b29773 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/file-roller/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, glib, pkgconfig, gnome3, intltool, itstool, libxml2, libarchive +, attr, bzip2, acl, wrapGAppsHook, librsvg, gdk_pixbuf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # TODO: support nautilus + # it tries to create {nautilus}/lib/nautilus/extensions-3.0/libnautilus-fileroller.so + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ glib gnome3.gtk intltool itstool libxml2 libarchive + gnome3.defaultIconTheme attr bzip2 acl gdk_pixbuf librsvg + gnome3.dconf ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/FileRoller; + description = "Archive manager for the GNOME desktop environment"; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/file-roller/src.nix b/pkgs/desktops/gnome-3/3.20/apps/file-roller/src.nix new file mode 100644 index 000000000000..dbea187cee02 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/file-roller/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "file-roller-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/file-roller/3.20/file-roller-3.20.2.tar.xz; + sha256 = "93188a7ac9285cb85551c327082aeaeb51ac39a9722cb96b0e29d5ec2ae353c6"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gedit/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gedit/default.nix new file mode 100644 index 000000000000..d0c48752e733 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gedit/default.nix @@ -0,0 +1,31 @@ +{ stdenv, intltool, fetchurl, enchant, isocodes +, pkgconfig, gtk3, glib +, bash, wrapGAppsHook, itstool, libsoup, libxml2 +, gnome3, librsvg, gdk_pixbuf, file, gspell }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ gtk3 glib intltool itstool enchant isocodes + gdk_pixbuf gnome3.defaultIconTheme librsvg libsoup + gnome3.libpeas gnome3.gtksourceview libxml2 + gnome3.gsettings_desktop_schemas gnome3.dconf file gspell ]; + + enableParallelBuilding = true; + + preFixup = '' + gappsWrapperArgs+=(--prefix LD_LIBRARY_PATH : "${gnome3.libpeas}/lib:${gnome3.gtksourceview}/lib") + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Gedit; + description = "Official text editor of the GNOME desktop environment"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gedit/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gedit/src.nix new file mode 100644 index 000000000000..c511bc663a55 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gedit/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gedit-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gedit/3.20/gedit-3.20.2.tar.xz; + sha256 = "32a1276a71a0d4a5af4e20a87bc273170ba8e075fc1ca7f51c8d3a6c150463f8"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/glade/default.nix b/pkgs/desktops/gnome-3/3.20/apps/glade/default.nix new file mode 100644 index 000000000000..a0f8d9669556 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/glade/default.nix @@ -0,0 +1,30 @@ +{ stdenv, intltool, fetchurl, python +, pkgconfig, gtk3, glib +, makeWrapper, itstool, libxml2, docbook_xsl +, gnome3, librsvg, gdk_pixbuf, libxslt }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 python + gnome3.gsettings_desktop_schemas makeWrapper docbook_xsl + gdk_pixbuf gnome3.defaultIconTheme librsvg libxslt ]; + + enableParallelBuilding = true; + + preFixup = '' + wrapProgram "$out/bin/glade" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Glade; + description = "User interface designer for GTK+ applications"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/glade/src.nix b/pkgs/desktops/gnome-3/3.20/apps/glade/src.nix new file mode 100644 index 000000000000..d32dbd94d059 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/glade/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "glade-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/glade/3.20/glade-3.20.0.tar.xz; + sha256 = "82d96dca5dec40ee34e2f41d49c13b4ea50da8f32a3a49ca2da802ff14dc18fe"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/default.nix new file mode 100644 index 000000000000..1edea6b888ba --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, makeWrapper, pkgconfig, intltool, itstool, libvirt-glib +, glib, gobjectIntrospection, libxml2, gtk3, gtkvnc, libvirt, spice_gtk +, spice_protocol, libuuid, libsoup, libosinfo, systemd, tracker, vala +, libcap_ng, libcap, yajl, gmp, gdbm, cyrus_sasl, gnome3, librsvg +, desktop_file_utils, mtools, cdrkit, libcdio, numactl, xen +, libusb, libarchive, acl, libgudev, qemu +}: + +# TODO: ovirt (optional) + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + enableParallelBuilding = true; + + doCheck = true; + + buildInputs = [ + makeWrapper pkgconfig intltool itstool libvirt-glib glib + gobjectIntrospection libxml2 gtk3 gtkvnc libvirt spice_gtk spice_protocol + libuuid libsoup libosinfo systemd tracker vala libcap_ng libcap yajl gmp + gdbm cyrus_sasl gnome3.defaultIconTheme libusb libarchive + librsvg desktop_file_utils acl libgudev numactl xen + ]; + + preFixup = '' + for prog in "$out/bin/"*; do + wrapProgram "$prog" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" \ + --prefix PATH : "${mtools}/bin:${cdrkit}/bin:${libcdio}/bin:${qemu}/bin" + done + ''; + + meta = with stdenv.lib; { + description = "Simple GNOME 3 application to access remote or virtual systems"; + homepage = https://wiki.gnome.org/action/show/Apps/Boxes; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = with maintainers; [ bjornfor ]; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/src.nix new file mode 100644 index 000000000000..1d53821b13a2 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-boxes/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-boxes-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-boxes/3.20/gnome-boxes-3.20.2.tar.xz; + sha256 = "c0379ce1de9d2a43a6875cbe1f2ef7ef69161b284926d59c44246a9142130fc5"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix new file mode 100644 index 000000000000..cbd5a84bdb55 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, evolution_data_server, sqlite, libxml2, libsoup +, glib, gnome_online_accounts }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool evolution_data_server + sqlite libxml2 libsoup glib gnome3.defaultIconTheme gnome_online_accounts + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Calendar; + description = "Simple and beautiful calendar application for GNOME"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/src.nix new file mode 100644 index 000000000000..4871139a6f31 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-calendar/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-calendar-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-calendar/3.20/gnome-calendar-3.20.2.tar.xz; + sha256 = "f132cff56310b83cf086628e949685b04cdaf872e989d67dbb8a3e4e9943deee"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/default.nix new file mode 100644 index 000000000000..4571a5d50e8b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, gjs, gdk_pixbuf, librsvg }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool gjs gdk_pixbuf + librsvg gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Design/Apps/CharacterMap; + description = "Simple utility application to find and insert unusual characters"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/src.nix new file mode 100644 index 000000000000..d29173c23ff4 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-characters/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-characters-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-characters/3.20/gnome-characters-3.20.1.tar.xz; + sha256 = "6891eed27a5b023200992540266a9216d081eef890d6d0836380dc3c0033857c"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/default.nix new file mode 100644 index 000000000000..e39614e765d6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/default.nix @@ -0,0 +1,27 @@ +{ stdenv, intltool, fetchurl, libgweather, libnotify +, pkgconfig, gtk3, glib, gsound +, makeWrapper, itstool, libcanberra_gtk3, libtool +, gnome3, librsvg, gdk_pixbuf, geoclue2, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libcanberra_gtk3 + gnome3.gsettings_desktop_schemas makeWrapper + gdk_pixbuf gnome3.defaultIconTheme librsvg + gnome3.gnome_desktop gnome3.geocode_glib geoclue2 + libgweather libnotify libtool gsound + wrapGAppsHook ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Clocks; + description = "Clock application designed for GNOME 3"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/src.nix new file mode 100644 index 000000000000..30fccb61d34f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-clocks/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-clocks-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-clocks/3.20/gnome-clocks-3.20.1.tar.xz; + sha256 = "92ad7b409c5118464af49ca28262ae43e9d377435ad2b10048b23e6e11ae476f"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix new file mode 100644 index 000000000000..7f1f70114b7b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/default.nix @@ -0,0 +1,39 @@ +{ stdenv, intltool, fetchurl, evince, gjs +, pkgconfig, gtk3, glib +, makeWrapper, itstool, libxslt, webkitgtk +, gnome3, librsvg, gdk_pixbuf, libsoup, docbook_xsl +, gobjectIntrospection, json_glib, inkscape, poppler_utils +, gmp, desktop_file_utils, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + configureFlags = [ "--enable-getting-started" ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxslt + docbook_xsl desktop_file_utils inkscape poppler_utils + gnome3.gsettings_desktop_schemas makeWrapper gmp + gdk_pixbuf gnome3.defaultIconTheme librsvg evince + libsoup webkitgtk gjs gobjectIntrospection gnome3.rest + gnome3.tracker gnome3.libgdata gnome3.gnome_online_accounts + gnome3.gnome_desktop gnome3.libzapojit json_glib + wrapGAppsHook ]; + + enableParallelBuilding = true; + + preFixup = '' + substituteInPlace $out/bin/gnome-documents --replace gapplication "${glib}/bin/gapplication" + + gappsWrapperArgs+=(--run 'if [ -z "$XDG_CACHE_DIR" ]; then XDG_CACHE_DIR=$HOME/.cache; fi; if [ -w "$XDG_CACHE_DIR/.." ]; then mkdir -p "$XDG_CACHE_DIR/gnome-documents"; fi') + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Documents; + description = "Document manager application designed to work with GNOME 3"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/src.nix new file mode 100644 index 000000000000..db5d2c610c99 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-documents/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-documents-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-documents/3.20/gnome-documents-3.20.0.tar.xz; + sha256 = "a5fa496c5e80eccb8d2e5bba7f4d7dc4cc6c9f53d5bc028402428771be1237d2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/default.nix new file mode 100644 index 000000000000..0c75ebd7c783 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ intltool itstool libxml2 ]; + + meta = with stdenv.lib; { + homepage = https://live.gnome.org/DocumentationProject; + description = "Help a new user get started in GNOME"; + maintainers = gnome3.maintainers; + license = licenses.cc-by-sa-30; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/src.nix new file mode 100644 index 000000000000..2550b1a46b4d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-getting-started-docs/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-getting-started-docs-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-getting-started-docs/3.20/gnome-getting-started-docs-3.20.0.tar.xz; + sha256 = "0dc3a69d646c3ee3c6ef1a34dbc7f469d66275bd20215071fd495ae5900fcfdc"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/default.nix new file mode 100644 index 000000000000..d4135fdb1bae --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, itstool, libxml2, systemd }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + configureFlags = [ "--disable-tests" ]; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 + systemd gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Logs; + description = "A log viewer for the systemd journal"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/src.nix new file mode 100644 index 000000000000..81f5c29d7cae --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-logs/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-logs-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-logs/3.20/gnome-logs-3.20.1.tar.xz; + sha256 = "b797841faac4e176c64497837de27b1b953d16d2482e8a773a48b38117b1367e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix new file mode 100644 index 000000000000..b9aac0539ae5 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/default.nix @@ -0,0 +1,25 @@ +{ stdenv, fetchurl, intltool, pkgconfig, gnome3, gtk3 +, gobjectIntrospection, gdk_pixbuf, librsvg, autoreconfHook +, geoclue2, wrapGAppsHook, folks, libchamplain, gfbgraph, file, libsoup }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + buildInputs = [ pkgconfig intltool gobjectIntrospection wrapGAppsHook + gtk3 geoclue2 gnome3.gjs gnome3.libgee folks gfbgraph + gnome3.geocode_glib libchamplain file libsoup + gdk_pixbuf librsvg autoreconfHook + gnome3.gnome_online_accounts gnome3.defaultIconTheme ]; + + patches = [ ./soup.patch ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Maps; + description = "A map application for GNOME 3"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/soup.patch b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/soup.patch new file mode 100644 index 000000000000..ef8c7a1287db --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/soup.patch @@ -0,0 +1,12 @@ +--- gnome-maps-3.18.0/configure.ac.orig 2015-09-24 18:38:31.912498368 +0200 ++++ gnome-maps-3.18.0/configure.ac 2015-09-24 18:38:40.783320413 +0200 +@@ -50,8 +50,9 @@ + folks >= $FOLKS_MIN_VERSION + geocode-glib-1.0 >= $GEOCODE_MIN_VERSION + champlain-0.12 >= $CHAMPLAIN_MIN_VERSION + libxml-2.0 + rest-0.7 ++ libsoup-2.4 + ]) + AC_SUBST(GNOME_MAPS_LIB_CFLAGS) + AC_SUBST(GNOME_MAPS_LIB_LIBS) diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/src.nix new file mode 100644 index 000000000000..1ef58f33c90d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-maps/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-maps-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-maps/3.20/gnome-maps-3.20.1.tar.xz; + sha256 = "4874d10a3cfdffd5d1db6084d67b5e8dc8c2db2ff995302b80060ecfc5e99bd5"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-music/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-music/default.nix new file mode 100644 index 000000000000..f48feb205790 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-music/default.nix @@ -0,0 +1,30 @@ +{ stdenv, intltool, fetchurl, gdk_pixbuf, tracker +, python3, libxml2, python3Packages, libnotify, wrapGAppsHook +, pkgconfig, gtk3, glib, cairo +, makeWrapper, itstool, gnome3, librsvg, gst_all_1 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.libmediaart + gdk_pixbuf gnome3.defaultIconTheme librsvg python3 + gnome3.grilo gnome3.grilo-plugins gnome3.totem-pl-parser libxml2 libnotify + python3Packages.pycairo python3Packages.dbus python3Packages.requests2 + python3Packages.pygobject3 gst_all_1.gstreamer gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad wrapGAppsHook + gnome3.gsettings_desktop_schemas makeWrapper tracker ]; + + wrapPrefixVariables = [ "PYTHONPATH" ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Music; + description = "Music player and management application for the GNOME desktop environment"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-music/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-music/src.nix new file mode 100644 index 000000000000..43cec97929c2 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-music/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-music-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-music/3.20/gnome-music-3.20.2.tar.xz; + sha256 = "ca328bfd85ba8cb651e4e3c5d56499b111cb95b4f3e9b2e482cca7830213c7a0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-nettool/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-nettool/default.nix new file mode 100644 index 000000000000..4c152777f2cb --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-nettool/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, libgtop, intltool, itstool, libxml2, nmap, inetutils }: + +stdenv.mkDerivation rec { + name = "gnome-nettool-3.8.1"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-nettool/3.8/${name}.tar.xz"; + sha256 = "1c9cvzvyqgfwa5zzyvp7118pkclji62fkbb33g4y9sp5kw6m397h"; + }; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook libgtop intltool itstool libxml2 + gnome3.defaultIconTheme + ]; + + propagatedUserEnvPkgs = [ nmap inetutils ]; + + meta = with stdenv.lib; { + homepage = http://projects.gnome.org/gnome-network; + description = "A collection of networking tools"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix new file mode 100644 index 000000000000..09e0d9505ff1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/default.nix @@ -0,0 +1,31 @@ +{ stdenv, intltool, fetchurl, exempi, libxml2 +, pkgconfig, gtk3, glib +, makeWrapper, itstool, gegl, babl, lcms2 +, desktop_file_utils, gmp, libmediaart, wrapGAppsHook +, gnome3, librsvg, gdk_pixbuf, libexif, gexiv2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool gegl babl gnome3.libgdata + gnome3.gsettings_desktop_schemas makeWrapper gmp libmediaart + gdk_pixbuf gnome3.defaultIconTheme librsvg exempi + gnome3.gfbgraph gnome3.grilo-plugins gnome3.grilo + gnome3.gnome_online_accounts gnome3.gnome_desktop + lcms2 libexif gnome3.tracker libxml2 desktop_file_utils + wrapGAppsHook gexiv2 ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Photos; + description = "Photos is an application to access, organize and share your photos with GNOME 3"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} 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 new file mode 100644 index 000000000000..48d0cc385197 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-photos/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-photos-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-photos/3.20/gnome-photos-3.20.1.tar.xz; + sha256 = "7639cc9367aa0f4bbf54aa46edaeedb91fcce85d387e8ffb669470710e247e5a"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/default.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/default.nix new file mode 100644 index 000000000000..599bed87d6ee --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook, gjs +, libgweather, intltool, itstool, geoclue2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook gjs intltool itstool + libgweather gnome3.defaultIconTheme geoclue2 + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Weather; + description = "Access current weather conditions and forecasts"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/src.nix b/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/src.nix new file mode 100644 index 000000000000..8229ad4dc045 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/gnome-weather/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-weather-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-weather/3.20/gnome-weather-3.20.1.tar.xz; + sha256 = "e310ecd56f396ac0e8e5652ac8b63258720034e23afbf32fbb2d509f25bbb2b6"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/nautilus-sendto/default.nix b/pkgs/desktops/gnome-3/3.20/apps/nautilus-sendto/default.nix new file mode 100644 index 000000000000..093900dcb7ab --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/nautilus-sendto/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, glib, pkgconfig, gnome3, intltool +, gobjectIntrospection, makeWrapper }: + +stdenv.mkDerivation rec { + name = "nautilus-sendto-${version}"; + + version = "3.8.1"; + + src = fetchurl { + url = "mirror://gnome/sources/nautilus-sendto/3.8/${name}.tar.xz"; + sha256 = "03fa46bff271acdbdedab6243b2a84e5ed3daa19c81b69d087b3e852c8fe5dab"; + }; + + buildInputs = [ glib pkgconfig gobjectIntrospection intltool makeWrapper ]; + + meta = with stdenv.lib; { + description = "Integrates Evolution and Pidgin into the Nautilus file manager"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/polari/default.nix b/pkgs/desktops/gnome-3/3.20/apps/polari/default.nix new file mode 100644 index 000000000000..8efaa4e4aac8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/polari/default.nix @@ -0,0 +1,22 @@ +{ stdenv, intltool, fetchurl, gdk_pixbuf, adwaita-icon-theme +, telepathy_glib, gjs, itstool, telepathy_idle +, pkgconfig, gtk3, glib, librsvg, gnome3, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ telepathy_idle ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool adwaita-icon-theme wrapGAppsHook + telepathy_glib gjs gdk_pixbuf librsvg ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Polari; + description = "IRC chat client designed to integrate with the GNOME desktop"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/polari/src.nix b/pkgs/desktops/gnome-3/3.20/apps/polari/src.nix new file mode 100644 index 000000000000..3585deac26f4 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/polari/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "polari-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/polari/3.20/polari-3.20.2.tar.xz; + sha256 = "4b7641e54ee8a2e6018e1b4cea4802d94d90c2f09b9558e0a767838effd1347f"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix new file mode 100644 index 000000000000..3b78babadd9a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/seahorse/default.nix @@ -0,0 +1,35 @@ +{ stdenv, intltool, fetchurl, vala +, pkgconfig, gtk3, glib +, makeWrapper, itstool, gnupg, libsoup +, gnome3, librsvg, gdk_pixbuf, gpgme +, libsecret, avahi, p11_kit, openssh }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gcr + gnome3.gsettings_desktop_schemas makeWrapper gnupg + gdk_pixbuf gnome3.defaultIconTheme librsvg gpgme + libsecret avahi libsoup p11_kit vala gnome3.gcr + openssh ]; + + preFixup = '' + wrapProgram "$out/bin/seahorse" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Seahorse; + description = "Application for managing encryption keys and passwords in the GnomeKeyring"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/seahorse/src.nix b/pkgs/desktops/gnome-3/3.20/apps/seahorse/src.nix new file mode 100644 index 000000000000..0ae195a0a7ba --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/seahorse/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "seahorse-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/seahorse/3.20/seahorse-3.20.0.tar.xz; + sha256 = "e2b07461ed54a8333e5628e9b8e517ec2b731068377bf376570aad998274c6df"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/vinagre/default.nix b/pkgs/desktops/gnome-3/3.20/apps/vinagre/default.nix new file mode 100644 index 000000000000..8b8b6248642c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/vinagre/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, vte, libxml2, gtkvnc, intltool +, libsecret, itstool, makeWrapper, librsvg }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 vte libxml2 gtkvnc intltool libsecret + itstool makeWrapper gnome3.defaultIconTheme librsvg ]; + + preFixup = '' + wrapProgram "$out/bin/vinagre" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH:$out/share" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Vinagre; + description = "Remote desktop viewer for GNOME"; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/apps/vinagre/src.nix b/pkgs/desktops/gnome-3/3.20/apps/vinagre/src.nix new file mode 100644 index 000000000000..ceb419cfdeed --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/apps/vinagre/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "vinagre-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/vinagre/3.20/vinagre-3.20.2.tar.xz; + sha256 = "5fc78ef9ab9ee7d4e3c50d38d82d9bcbd915191bcf0349d55a2fd56eaa87eaa0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/default.nix b/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/default.nix new file mode 100644 index 000000000000..3c3a05dc3af8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3 +, iconnamingutils, gtk, gdk_pixbuf, librsvg, hicolor_icon_theme }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # For convenience, we can specify adwaita-icon-theme only in packages + propagatedBuildInputs = [ hicolor_icon_theme ]; + + buildInputs = [ gdk_pixbuf librsvg ]; + + nativeBuildInputs = [ pkgconfig intltool iconnamingutils gtk ]; + + # remove a tree of dirs with no files within + postInstall = '' rm -rf "$out/locale" ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/src.nix b/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/src.nix new file mode 100644 index 000000000000..e7eba88d2a3d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/adwaita-icon-theme/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "adwaita-icon-theme-3.20"; + + src = fetchurl { + url = mirror://gnome/sources/adwaita-icon-theme/3.20/adwaita-icon-theme-3.20.tar.xz; + sha256 = "7a0a887349f340dd644032f89d81264b694c4b006bd51af1c2c368d431e7ae35"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix new file mode 100644 index 000000000000..2ff85662bbbb --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/baobab/default.nix @@ -0,0 +1,32 @@ +{ stdenv, intltool, fetchurl, vala, libgtop +, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool, libxml2 +, gnome3, librsvg, gdk_pixbuf, file }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ vala pkgconfig gtk3 glib libgtop intltool itstool libxml2 + gnome3.gsettings_desktop_schemas makeWrapper file + gdk_pixbuf gnome3.defaultIconTheme librsvg ]; + + preFixup = '' + wrapProgram "$out/bin/baobab" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Baobab; + description = "Graphical application to analyse disk usage in any Gnome environment"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/baobab/src.nix b/pkgs/desktops/gnome-3/3.20/core/baobab/src.nix new file mode 100644 index 000000000000..c72e5428c09a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/baobab/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "baobab-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/baobab/3.20/baobab-3.20.1.tar.xz; + sha256 = "e9dff12a76b0d730ce224215860512eb0188280c622faf186937563b96249d1f"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/caribou/default.nix b/pkgs/desktops/gnome-3/3.20/core/caribou/default.nix new file mode 100644 index 000000000000..c2cb6a661abe --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/caribou/default.nix @@ -0,0 +1,31 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, clutter, dbus, pythonPackages, libxml2, autoconf +, libxklavier, libXtst, gtk2, intltool, libxslt, at_spi2_core, automake114x }: + +let + majorVersion = "0.4"; +in +stdenv.mkDerivation rec { + name = "caribou-${majorVersion}.18.1"; + + src = fetchurl { + url = "mirror://gnome/sources/caribou/${majorVersion}/${name}.tar.xz"; + sha256 = "0l1ikx56ddgayvny3s2xv8hs3p23xsclw4zljs3cczv4b89dzymf"; + }; + + buildInputs = with gnome3; + [ glib pkgconfig gtk clutter at_spi2_core dbus pythonPackages.python automake114x + pythonPackages.pygobject3 libxml2 libXtst gtk2 intltool libxslt autoconf ]; + + propagatedBuildInputs = [ gnome3.libgee libxklavier ]; + + preBuild = '' + patchShebangs . + substituteInPlace libcaribou/Makefile.am --replace "--shared-library=libcaribou.so.0" "--shared-library=$out/lib/libcaribou.so.0" + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/dconf-editor/default.nix b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/default.nix new file mode 100644 index 000000000000..bf39965bf779 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/default.nix @@ -0,0 +1,16 @@ +{ stdenv, fetchurl, vala, libxslt, pkgconfig, glib, dbus_glib, gnome3 +, libxml2, intltool, docbook_xsl_ns, docbook_xsl, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ vala libxslt glib dbus_glib gnome3.gtk libxml2 gnome3.defaultIconTheme + intltool docbook_xsl docbook_xsl_ns gnome3.dconf ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} 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 new file mode 100644 index 000000000000..5980c0fc6af6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/dconf-editor/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "dconf-editor-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/dconf-editor/3.20/dconf-editor-3.20.2.tar.xz; + sha256 = "486dcb60001b934186f3c3591897d986459bf240f35641fbb59ee957c15af2be"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/dconf/default.nix b/pkgs/desktops/gnome-3/3.20/core/dconf/default.nix new file mode 100644 index 000000000000..990e2007a23f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/dconf/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, vala, libxslt, pkgconfig, glib, dbus_glib, gnome3 +, libxml2, intltool, docbook_xsl_ns, docbook_xsl, makeWrapper }: + +let + majorVersion = "0.24"; +in +stdenv.mkDerivation rec { + name = "dconf-${version}"; + version = "${majorVersion}.0"; + + src = fetchurl { + url = "mirror://gnome/sources/dconf/${majorVersion}/${name}.tar.xz"; + sha256 = "4373e0ced1f4d7d68d518038796c073696280e22957babb29feb0267c630fec2"; + }; + + buildInputs = [ vala libxslt pkgconfig glib dbus_glib gnome3.gtk libxml2 + intltool docbook_xsl docbook_xsl_ns makeWrapper ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix b/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix new file mode 100644 index 000000000000..207ccbe1d367 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/empathy/default.nix @@ -0,0 +1,57 @@ +{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib +, file, librsvg, gnome3, gdk_pixbuf +, dbus_glib, dbus_libs, telepathy_glib, telepathy_farstream +, clutter_gtk, clutter-gst, gst_all_1, cogl, gnome_online_accounts +, gcr, libsecret, folks, libpulseaudio, telepathy_mission_control +, telepathy_logger, libnotify, clutter, libsoup, gnutls +, evolution_data_server +, libcanberra_gtk3, p11_kit, farstream, libtool, shared_mime_info +, bash, makeWrapper, itstool, libxml2, libxslt, icu, libgee }: + +# TODO: enable more features + +let + majorVersion = "3.12"; +in +stdenv.mkDerivation rec { + name = "empathy-${majorVersion}.11"; + + src = fetchurl { + url = "mirror://gnome/sources/empathy/${majorVersion}/${name}.tar.xz"; + sha256 = "11yl8msyf017197fm6h15yw159yjp9i08566l967yashbx7gzr6i"; + }; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard + gnome_online_accounts shared_mime_info ]; + propagatedBuildInputs = [ folks telepathy_logger evolution_data_server + telepathy_mission_control ]; + buildInputs = [ pkgconfig gtk3 glib webkitgtk intltool itstool + libxml2 libxslt icu file makeWrapper + telepathy_glib clutter_gtk clutter-gst cogl + gst_all_1.gstreamer gst_all_1.gst-plugins-base + gcr libsecret libpulseaudio gnome3.yelp_xsl gdk_pixbuf + libnotify clutter libsoup gnutls libgee p11_kit + libcanberra_gtk3 telepathy_farstream farstream + gnome3.defaultIconTheme gnome3.gsettings_desktop_schemas + file libtool librsvg ]; + + NIX_CFLAGS_COMPILE = [ "-I${dbus_glib}/include/dbus-1.0" + "-I${dbus_libs}/include/dbus-1.0" + "-I${dbus_libs}/lib/dbus-1.0/include" ]; + + preFixup = '' + for f in $out/bin/* $out/libexec/*; do + wrapProgram $f \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + done + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Empathy; + description = "Messaging program which supports text, voice, video chat, and file transfers over many different protocols"; + maintainers = gnome3.maintainers; + # TODO: license = [ licenses.gpl2 licenses.lgpl2 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/eog/default.nix b/pkgs/desktops/gnome-3/3.20/core/eog/default.nix new file mode 100644 index 000000000000..5f36f25e095e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/eog/default.nix @@ -0,0 +1,20 @@ +{ fetchurl, stdenv, intltool, pkgconfig, itstool, libxml2, libjpeg, gnome3 +, shared_mime_info, wrapGAppsHook, librsvg, libexif }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = with gnome3; + [ intltool itstool libxml2 libjpeg gtk glib libpeas librsvg + gsettings_desktop_schemas shared_mime_info adwaita-icon-theme + gnome_desktop libexif dconf ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/EyeOfGnome; + platforms = platforms.linux; + description = "GNOME image viewer"; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/eog/src.nix b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix new file mode 100644 index 000000000000..90a4a8537fb5 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/eog/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "eog-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/eog/3.20/eog-3.20.2.tar.xz; + sha256 = "d7d022af85ea0046e90b02fc94672757300bbbdb422eef2be2afc99fc2cd87e7"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/default.nix b/pkgs/desktops/gnome-3/3.20/core/epiphany/default.nix new file mode 100644 index 000000000000..322dd3bedac6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/epiphany/default.nix @@ -0,0 +1,34 @@ +{ stdenv, intltool, fetchurl, pkgconfig, gtk3, glib, nspr, icu +, bash, wrapGAppsHook, gnome3, libwnck3, libxml2, libxslt, libtool +, webkitgtk, libsoup, glib_networking, libsecret, gnome_desktop, libnotify, p11_kit +, sqlite, gcr, avahi, nss, isocodes, itstool, file, which +, gdk_pixbuf, librsvg, gnome_common }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # Tests need an X display + configureFlags = [ "--disable-static --disable-tests" ]; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + nativeBuildInputs = [ pkgconfig file wrapGAppsHook ]; + + buildInputs = [ gtk3 glib intltool libwnck3 libxml2 libxslt pkgconfig file + webkitgtk libsoup libsecret gnome_desktop libnotify libtool + sqlite isocodes nss itstool p11_kit nspr icu gnome3.yelp_tools + gdk_pixbuf gnome3.defaultIconTheme librsvg which gnome_common + gcr avahi gnome3.gsettings_desktop_schemas gnome3.dconf ]; + + NIX_CFLAGS_COMPILE = "-I${nspr}/include/nspr -I${nss}/include/nss -I${glib}/include/gio-unix-2.0"; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Epiphany; + description = "WebKit based web browser for GNOME"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch b/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch new file mode 100644 index 000000000000..89e3694a02d9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/epiphany/libxml_depend.patch @@ -0,0 +1,10 @@ +--- configure.ac.orig 2015-04-08 18:53:52.284580835 +0200 ++++ configure.ac 2015-04-08 18:55:55.697225280 +0200 +@@ -113,6 +113,7 @@ + PKG_CHECK_MODULES(WEB_EXTENSION, [ + webkit2gtk-web-extension-4.0 >= $WEBKIT_GTK_REQUIRED + libsecret-1 >= $LIBSECRET_REQUIRED ++ libxml-2.0 >= $LIBXML_REQUIRED + ]) + AC_SUBST(WEB_EXTENSION_CFLAGS) + AC_SUBST(WEB_EXTENSION_LIBS) diff --git a/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix new file mode 100644 index 000000000000..1738b14e17b6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/epiphany/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "epiphany-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/epiphany/3.20/epiphany-3.20.2.tar.xz; + sha256 = "d107ea1d621e91b1c5a7b51435fa81684d4cd4dd2c6fd71adf95e9a46fe6237a"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/default.nix b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix new file mode 100644 index 000000000000..d0857a1d32ad --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/evince/default.nix @@ -0,0 +1,63 @@ +{ fetchurl, stdenv, pkgconfig, intltool, perl, perlXMLParser, libxml2 +, glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info, itstool, gnome3 +, poppler, ghostscriptX, djvulibre, libspectre, libsecret , wrapGAppsHook +, librsvg, gobjectIntrospection +, recentListSize ? null # 5 is not enough, allow passing a different number +, supportXPS ? false # Open XML Paper Specification via libgxps +}: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ + intltool perl perlXMLParser libxml2 + glib gtk3 pango atk gdk_pixbuf gobjectIntrospection + itstool gnome3.adwaita-icon-theme + gnome3.libgnome_keyring gnome3.gsettings_desktop_schemas + poppler ghostscriptX djvulibre libspectre + libsecret librsvg gnome3.adwaita-icon-theme gnome3.dconf + ] ++ stdenv.lib.optional supportXPS gnome3.libgxps; + + configureFlags = [ + "--disable-nautilus" # Do not use nautilus + "--enable-introspection" + (if supportXPS then "--enable-xps" else "--disable-xps") + ]; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + preConfigure = with stdenv.lib; + optionalString doCheck '' + for file in test/*.py; do + echo "patching $file" + sed '1s,/usr,${python},' -i "$file" + done + '' + optionalString (recentListSize != null) '' + sed -i 's/\(gtk_recent_chooser_set_limit .*\)5)/\1${builtins.toString recentListSize})/' shell/ev-open-recent-action.c + sed -i 's/\(if (++n_items == \)5\(.*\)/\1${builtins.toString recentListSize}\2/' shell/ev-window.c + ''; + + preFixup = '' + gappsWrapperArgs+=(--prefix XDG_DATA_DIRS : "${shared_mime_info}/share") + ''; + + doCheck = false; # would need pythonPackages.dogTail, which is missing + + meta = with stdenv.lib; { + homepage = http://www.gnome.org/projects/evince/; + description = "GNOME's document viewer"; + + longDescription = '' + Evince is a document viewer for multiple document formats. It + currently supports PDF, PostScript, DjVu, TIFF and DVI. The goal + of Evince is to replace the multiple document viewers that exist + on the GNOME Desktop with a single simple application. + ''; + + license = stdenv.lib.licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = [ maintainers.vcunat ]; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/evince/src.nix b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix new file mode 100644 index 000000000000..1f20db4a97e9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/evince/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "evince-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/evince/3.20/evince-3.20.0.tar.xz; + sha256 = "cf8358a453686c2a7f85d245f83fe918c0ce02eb6532339f3e02e31249a5a280"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/default.nix b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/default.nix new file mode 100644 index 000000000000..c12b3daa8c9c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/default.nix @@ -0,0 +1,30 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, python +, intltool, libsoup, libxml2, libsecret, icu, sqlite +, p11_kit, db, nspr, nss, libical, gperf, makeWrapper, valaSupport ? true, vala }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = with gnome3; + [ pkgconfig glib python intltool libsoup libxml2 gtk gnome_online_accounts + gcr p11_kit libgweather libgdata gperf makeWrapper icu sqlite gsettings_desktop_schemas ] + ++ stdenv.lib.optional valaSupport vala; + + propagatedBuildInputs = [ libsecret nss nspr libical db ]; + + # uoa irrelevant for now + configureFlags = [ "--disable-uoa" "--disable-google-auth" ] + ++ stdenv.lib.optional valaSupport "--enable-vala-bindings"; + + preFixup = '' + for f in "$out/libexec/"*; do + wrapProgram "$f" --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + done + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} 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 new file mode 100644 index 000000000000..82ea796c3b04 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/evolution-data-server/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "evolution-data-server-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/evolution-data-server/3.20/evolution-data-server-3.20.2.tar.xz; + sha256 = "8cdc74b08f1404f5df4b8cf5ccc4999a3e70a1db9ce472f71b623266941ffad9"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/folks/default.nix b/pkgs/desktops/gnome-3/3.20/core/folks/default.nix new file mode 100644 index 000000000000..6e200bdb3188 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/folks/default.nix @@ -0,0 +1,43 @@ +{ fetchurl, stdenv, pkgconfig, glib, gnome3, nspr, intltool +, vala, sqlite, libxml2, dbus_glib, libsoup, nss, dbus_libs +, telepathy_glib, evolution_data_server, libsecret, db }: + +# TODO: enable more folks backends + +let + majorVersion = "0.11"; +in +stdenv.mkDerivation rec { + name = "folks-${majorVersion}.0"; + + src = fetchurl { + url = "mirror://gnome/sources/folks/${majorVersion}/${name}.tar.xz"; + sha256 = "0q9hny6a38zn0gamv0ji0pn3jw6bpn2i0fr6vbzkhm9h9ws0cqvz"; + }; + + propagatedBuildInputs = [ glib gnome3.libgee sqlite ]; + # dbus_daemon needed for tests + buildInputs = [ dbus_glib telepathy_glib evolution_data_server dbus_libs + vala libsecret libxml2 libsoup nspr nss intltool db ]; + nativeBuildInputs = [ pkgconfig ]; + + configureFlags = "--disable-fatal-warnings"; + + NIX_CFLAGS_COMPILE = ["-I${nspr}/include/nspr" "-I${nss}/include/nss" + "-I${dbus_glib}/include/dbus-1.0" "-I${dbus_libs}/include/dbus-1.0"]; + + enableParallelBuilding = true; + + postBuild = "rm -rf $out/share/gtk-doc"; + + meta = { + description = "Folks"; + + homepage = https://wiki.gnome.org/Projects/Folks; + + license = stdenv.lib.licenses.lgpl2Plus; + + maintainers = gnome3.maintainers; + platforms = stdenv.lib.platforms.gnu; # arbitrary choice + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gconf/default.nix b/pkgs/desktops/gnome-3/3.20/core/gconf/default.nix new file mode 100644 index 000000000000..a4cb3e8c1464 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gconf/default.nix @@ -0,0 +1,32 @@ +{ stdenv, fetchurl, pkgconfig, dbus_glib, gnome3 ? null, glib, libxml2 +, intltool, polkit, orbit, withGtk ? false }: + +assert withGtk -> (gnome3 != null); + +stdenv.mkDerivation rec { + + versionMajor = "3.2"; + versionMinor = "6"; + moduleName = "GConf"; + + origName = "${moduleName}-${versionMajor}.${versionMinor}"; + + name = "gconf-${versionMajor}.${versionMinor}"; + + src = fetchurl { + url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${origName}.tar.xz"; + sha256 = "0k3q9nh53yhc9qxf1zaicz4sk8p3kzq4ndjdsgpaa2db0ccbj4hr"; + }; + + buildInputs = [ libxml2 polkit orbit ] ++ stdenv.lib.optional withGtk gnome3.gtk; + propagatedBuildInputs = [ glib dbus_glib ]; + nativeBuildInputs = [ pkgconfig intltool ]; + + # ToDo: ldap reported as not found but afterwards reported as supported + + meta = with stdenv.lib; { + homepage = http://projects.gnome.org/gconf/; + description = "A system for storing application preferences"; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gcr/default.nix b/pkgs/desktops/gnome-3/3.20/core/gcr/default.nix new file mode 100644 index 000000000000..e0e8d1e73382 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gcr/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnupg, p11_kit, glib +, libgcrypt, libtasn1, dbus_glib, gtk, pango, gdk_pixbuf, atk +, gobjectIntrospection, makeWrapper, libxslt, vala, gnome3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig intltool gnupg glib gobjectIntrospection libxslt + libgcrypt libtasn1 dbus_glib gtk pango gdk_pixbuf atk makeWrapper vala + ]; + + propagatedBuildInputs = [ p11_kit ]; + + #doCheck = true; + + #enableParallelBuilding = true; issues on hydra + + preFixup = '' + wrapProgram "$out/bin/gcr-viewer" \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gcr/src.nix b/pkgs/desktops/gnome-3/3.20/core/gcr/src.nix new file mode 100644 index 000000000000..d166f033266c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gcr/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gcr-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gcr/3.20/gcr-3.20.0.tar.xz; + sha256 = "90572c626d8a708225560c42b4421f7941315247fa1679d4ef569bde7f4bb379"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/default.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/default.nix new file mode 100644 index 000000000000..51b67afb01fd --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/default.nix @@ -0,0 +1,41 @@ +{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus +, intltool, accountsservice, libX11, gnome3, systemd, gnome_session +, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }: + +stdenv.mkDerivation rec { + name = "gdm-${gnome3.version}.2"; + + src = fetchurl { + url = "mirror://gnome/sources/gdm/${gnome3.version}/${name}.tar.xz"; + sha256 = "0mhv3q8z208qvhz00zrxlqn7w9gi5vy6w8dpjh5s2ka28l3yhbn3"; + }; + + preConfigure = '' + substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver}/bin/X" + substituteInPlace daemon/gdm-simple-slave.c --replace 'BINDIR "/gnome-session' '"${gnome_session}/bin/gnome-session' + substituteInPlace daemon/gdm-launch-environment.c --replace 'BINDIR "/dbus-launch' '"${dbus.tools}/bin/dbus-launch' + substituteInPlace data/gdm.conf-custom.in --replace '#WaylandEnable=false' 'WaylandEnable=false' + sed 's/#Enable=true/Enable=true/' -i data/gdm.conf-custom.in + ''; + + configureFlags = [ "--localstatedir=/var" "--with-systemd=yes" "--without-plymouth" + "--with-systemdsystemunitdir=$(out)/etc/systemd/system" + "--with-initial-vt=10" ]; + + buildInputs = [ pkgconfig glib itstool libxml2 intltool + accountsservice gnome3.dconf systemd + gobjectIntrospection libX11 gtk + libcanberra_gtk3 pam libtool ]; + + #enableParallelBuilding = true; # problems compiling + + # Disable Access Control because our X does not support FamilyServerInterpreted yet + patches = [ ./xserver_path.patch ./sessions_dir.patch ./disable_x_access_control.patch ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GDM; + description = "A program that manages graphical display servers and handles graphical user logins"; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/disable_x_access_control.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/disable_x_access_control.patch new file mode 100644 index 000000000000..7691a9e86f0f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/disable_x_access_control.patch @@ -0,0 +1,15 @@ +--- gdm-3.16.0/daemon/gdm-display.c.orig 2015-04-08 13:53:14.370274369 +0200 ++++ gdm-3.16.0/daemon/gdm-display.c 2015-04-08 13:53:36.287520435 +0200 +@@ -1706,9 +1706,10 @@ + + gdm_error_trap_push (); + +- for (i = 0; i < G_N_ELEMENTS (host_entries); i++) { ++ /*for (i = 0; i < G_N_ELEMENTS (host_entries); i++) { + XAddHost (self->priv->x11_display, &host_entries[i]); +- } ++ }*/ ++ XDisableAccessControl(self->priv->x11_display); + + XSync (self->priv->x11_display, False); + if (gdm_error_trap_pop ()) { diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/sessions_dir.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/sessions_dir.patch new file mode 100644 index 000000000000..b8fbad4d731d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/sessions_dir.patch @@ -0,0 +1,17 @@ +diff --git a/daemon/gdm-session.c b/daemon/gdm-session.c +index f759d2d..d154716 100644 +--- a/daemon/gdm-session.c ++++ b/daemon/gdm-session.c +@@ -373,9 +373,12 @@ get_system_session_dirs (void) + #ifdef ENABLE_WAYLAND_SUPPORT + DATADIR "/wayland-sessions/", + #endif ++ NULL, + NULL + }; + ++ search_dirs[4] = getenv("GDM_SESSIONS_DIR") != NULL ? getenv("GDM_SESSIONS_DIR") : NULL; ++ + return search_dirs; + } + diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/xserver_path.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/xserver_path.patch new file mode 100644 index 000000000000..b451d129391a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/3.16-wip/xserver_path.patch @@ -0,0 +1,83 @@ +--- a/daemon/gdm-server.c 2014-07-30 23:00:17.786841724 +0200 ++++ b/daemon/gdm-server.c 2014-07-30 23:02:10.491239180 +0200 +@@ -322,7 +322,11 @@ + fallback: + #endif + +- server->priv->command = g_strdup_printf (X_SERVER X_SERVER_ARG_FORMAT, verbosity, debug_options); ++ if (g_getenv("GDM_X_SERVER") != NULL) { ++ server->priv->command = g_strdup (g_getenv("GDM_X_SERVER")); ++ } else { ++ server->priv->command = g_strdup_printf (X_SERVER X_SERVER_ARG_FORMAT, verbosity, debug_options); ++ } + } + + static gboolean +--- gdm-3.16.0/daemon/gdm-x-session.c.orig 2015-04-15 18:44:16.875743928 +0200 ++++ gdm-3.16.0/daemon/gdm-x-session.c 2015-04-16 13:34:02.335708638 +0200 +@@ -207,6 +207,8 @@ + char *display_fd_string = NULL; + char *vt_string = NULL; + char *display_number; ++ int nixos_argc = 0; ++ char **nixos_argv = NULL; + gsize display_number_size; + + auth_file = prepare_auth_file (); +@@ -236,7 +238,15 @@ + + display_fd_string = g_strdup_printf ("%d", DISPLAY_FILENO); + +- g_ptr_array_add (arguments, X_SERVER); ++ if (g_getenv("GDM_X_SERVER") != NULL) { ++ int i = 0; ++ g_shell_parse_argv(g_getenv("GDM_X_SERVER"), &nixos_argc, &nixos_argv, NULL); ++ for (i = 0; i < nixos_argc; i++) { ++ g_ptr_array_add (arguments, nixos_argv[i]); ++ } ++ } else { ++ g_ptr_array_add (arguments, X_SERVER); ++ } + + if (vt_string != NULL) { + g_ptr_array_add (arguments, vt_string); +@@ -259,12 +269,12 @@ + g_ptr_array_add (arguments, "-noreset"); + g_ptr_array_add (arguments, "-keeptty"); + +- g_ptr_array_add (arguments, "-verbose"); ++ /*g_ptr_array_add (arguments, "-verbose"); + if (state->debug_enabled) { + g_ptr_array_add (arguments, "7"); + } else { + g_ptr_array_add (arguments, "3"); +- } ++ }*/ + + if (state->debug_enabled) { + g_ptr_array_add (arguments, "-core"); +@@ -275,6 +285,9 @@ + (const char * const *) arguments->pdata, + &error); + g_free (display_fd_string); ++ if (nixos_argv) { ++ g_strfreev (nixos_argv); ++ } + g_clear_object (&launcher); + g_ptr_array_free (arguments, TRUE); + +--- gdm-3.16.0/daemon/gdm-session.c.orig 2015-04-16 14:19:01.392802683 +0200 ++++ gdm-3.16.0/daemon/gdm-session.c 2015-04-16 14:20:36.012296764 +0200 +@@ -2359,6 +2359,12 @@ + gchar *desktop_names; + const char *locale; + ++ if (g_getenv ("GDM_X_SERVER") != NULL) { ++ gdm_session_set_environment_variable (self, ++ "GDM_X_SERVER", ++ g_getenv ("GDM_X_SERVER")); ++ } ++ + gdm_session_set_environment_variable (self, + "GDMSESSION", + get_session_name (self)); diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix new file mode 100644 index 000000000000..0d21bf546665 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/default.nix @@ -0,0 +1,42 @@ +{ stdenv, fetchurl, pkgconfig, glib, itstool, libxml2, xorg, dbus +, intltool, accountsservice, libX11, gnome3, systemd, gnome_session, autoreconfHook +, gtk, libcanberra_gtk3, pam, libtool, gobjectIntrospection }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # Only needed to make it build + preConfigure = '' + substituteInPlace ./configure --replace "/usr/bin/X" "${xorg.xorgserver.out}/bin/X" + ''; + + configureFlags = [ "--sysconfdir=/etc" + "--localstatedir=/var" + "--with-systemd=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 ]; + + #enableParallelBuilding = true; # problems compiling + + preBuild = '' + substituteInPlace daemon/gdm-simple-slave.c --replace 'BINDIR "/gnome-session' '"${gnome_session}/bin/gnome-session' + ''; + + # Disable Access Control because our X does not support FamilyServerInterpreted yet + patches = [ ./xserver_path.patch ./sessions_dir.patch + ./disable_x_access_control.patch ./no-dbus-launch.patch + ./libsystemd.patch ]; + + installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GDM; + description = "A program that manages graphical display servers and handles graphical user logins"; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/disable_x_access_control.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/disable_x_access_control.patch new file mode 100644 index 000000000000..e100e013b786 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/disable_x_access_control.patch @@ -0,0 +1,13 @@ +--- gdm-3.14.2/daemon/gdm-slave.c.orig 2015-04-16 15:05:27.844353079 +0200 ++++ gdm-3.14.2/daemon/gdm-slave.c 2015-04-16 15:05:40.240417915 +0200 +@@ -369,8 +369,9 @@ + gdm_error_trap_push (); + + for (i = 0; i < G_N_ELEMENTS (host_entries); i++) { +- XAddHost (slave->priv->server_display, &host_entries[i]); ++ //XAddHost (slave->priv->server_display, &host_entries[i]); + } ++ XDisableAccessControl(slave->priv->server_display); + + XSync (slave->priv->server_display, False); + if (gdm_error_trap_pop ()) { diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/libsystemd.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/libsystemd.patch new file mode 100644 index 000000000000..4556f418cc81 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/libsystemd.patch @@ -0,0 +1,21 @@ +https://github.com/GNOME/gdm/commit/eee5bf72c9bb1c1d62eb0e7102088ae3b9a188cd +--- a/configure.ac 2016-05-27 11:10:44.589740789 +0200 ++++ b/configure.ac 2016-05-27 11:11:00.146427723 +0200 +@@ -888,7 +888,7 @@ + dnl --------------------------------------------------------------------------- + + PKG_CHECK_MODULES(SYSTEMD, +- [libsystemd-login >= 186 libsystemd-daemon], ++ [libsystemd], + [have_systemd=yes], [have_systemd=no]) + + if test "x$with_systemd" = "xauto" ; then +@@ -912,7 +912,7 @@ + AC_SUBST(SYSTEMD_LIBS) + + PKG_CHECK_MODULES(JOURNALD, +- [libsystemd-journal], ++ [libsystemd], + [have_journald=yes], [have_journald=no]) + + if test "x$enable_systemd_journal" = "xauto" ; then diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/no-dbus-launch.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/no-dbus-launch.patch new file mode 100644 index 000000000000..c87554078c7c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/no-dbus-launch.patch @@ -0,0 +1,20 @@ +--- a/daemon/gdm-launch-environment.c 2015-06-22 15:11:07.277474398 +0000 ++++ b/daemon/gdm-launch-environment.c 2015-06-22 15:12:31.301157665 +0000 +@@ -48,8 +48,6 @@ + #include "gdm-session-enum-types.h" + #include "gdm-launch-environment.h" + +-#define DBUS_LAUNCH_COMMAND BINDIR "/dbus-launch --exit-with-session" +- + extern char **environ; + + #define GDM_LAUNCH_ENVIRONMENT_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GDM_TYPE_LAUNCH_ENVIRONMENT, GdmLaunchEnvironmentPrivate)) +@@ -512,7 +510,7 @@ + gdm_session_select_program (launch_environment->priv->session, launch_environment->priv->command); + } else { + /* wrap it in dbus-launch */ +- char *command = g_strdup_printf ("%s %s", DBUS_LAUNCH_COMMAND, launch_environment->priv->command); ++ char *command = g_strdup (launch_environment->priv->command); + + gdm_session_select_program (launch_environment->priv->session, command); + g_free (command); diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/sessions_dir.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/sessions_dir.patch new file mode 100644 index 000000000000..b8fbad4d731d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/sessions_dir.patch @@ -0,0 +1,17 @@ +diff --git a/daemon/gdm-session.c b/daemon/gdm-session.c +index f759d2d..d154716 100644 +--- a/daemon/gdm-session.c ++++ b/daemon/gdm-session.c +@@ -373,9 +373,12 @@ get_system_session_dirs (void) + #ifdef ENABLE_WAYLAND_SUPPORT + DATADIR "/wayland-sessions/", + #endif ++ NULL, + NULL + }; + ++ search_dirs[4] = getenv("GDM_SESSIONS_DIR") != NULL ? getenv("GDM_SESSIONS_DIR") : NULL; ++ + return search_dirs; + } + diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/src.nix b/pkgs/desktops/gnome-3/3.20/core/gdm/src.nix new file mode 100644 index 000000000000..acd46534e14f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gdm-3.14.2"; + + src = fetchurl { + url = mirror://gnome/sources/gdm/3.14/gdm-3.14.2.tar.xz; + sha256 = "e20eb61496161ad95b1058dbf8aea9b7b004df4d0ea6b0fab4401397d9db5930"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gdm/xserver_path.patch b/pkgs/desktops/gnome-3/3.20/core/gdm/xserver_path.patch new file mode 100644 index 000000000000..412daee9f270 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gdm/xserver_path.patch @@ -0,0 +1,15 @@ +--- a/daemon/gdm-server.c 2014-07-30 23:00:17.786841724 +0200 ++++ b/daemon/gdm-server.c 2014-07-30 23:02:10.491239180 +0200 +@@ -322,7 +322,11 @@ + fallback: + #endif + +- server->priv->command = g_strdup_printf (X_SERVER X_SERVER_ARG_FORMAT, verbosity, debug_options); ++ if (g_getenv("GDM_X_SERVER") != NULL) { ++ server->priv->command = g_strdup (g_getenv("GDM_X_SERVER")); ++ } else { ++ server->priv->command = g_strdup_printf (X_SERVER X_SERVER_ARG_FORMAT, verbosity, debug_options); ++ } + } + + static gboolean diff --git a/pkgs/desktops/gnome-3/3.20/core/geocode-glib/default.nix b/pkgs/desktops/gnome-3/3.20/core/geocode-glib/default.nix new file mode 100644 index 000000000000..4d75bdc49963 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/geocode-glib/default.nix @@ -0,0 +1,14 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, intltool, libsoup, json_glib }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = with gnome3; + [ intltool pkgconfig glib libsoup json_glib ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/geocode-glib/src.nix b/pkgs/desktops/gnome-3/3.20/core/geocode-glib/src.nix new file mode 100644 index 000000000000..135e05e90e99 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/geocode-glib/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "geocode-glib-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/geocode-glib/3.20/geocode-glib-3.20.1.tar.xz; + sha256 = "669fc832cabf8cc2f0fc4194a8fa464cdb9c03ebf9aca5353d7cf935ba8637a2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gjs/default.nix b/pkgs/desktops/gnome-3/3.20/core/gjs/default.nix new file mode 100644 index 000000000000..20c3d4c99565 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gjs/default.nix @@ -0,0 +1,20 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, gtk3, gobjectIntrospection +, spidermonkey_24, pango, readline, glib, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ libxml2 gobjectIntrospection pkgconfig gtk3 glib pango readline ]; + + propagatedBuildInputs = [ spidermonkey_24 ]; + + postInstall = '' + sed 's|-lreadline|-L${readline.out}/lib -lreadline|g' -i $out/lib/libgjs.la + ''; + + meta = with stdenv.lib; { + maintainers = gnome3.maintainers; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gjs/src.nix b/pkgs/desktops/gnome-3/3.20/core/gjs/src.nix new file mode 100644 index 000000000000..4f63d858d7df --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gjs/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gjs-1.44.0"; + + src = fetchurl { + url = mirror://gnome/sources/gjs/1.44/gjs-1.44.0.tar.xz; + sha256 = "88c960f6ad47a6931d123f5d6317d13704f58572f68a4391913a254ff27dce80"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/default.nix new file mode 100644 index 000000000000..32d6d6e7535a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/default.nix @@ -0,0 +1,12 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, intltool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig intltool ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/src.nix new file mode 100644 index 000000000000..23a31263bcf8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-backgrounds/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-backgrounds-3.20"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-backgrounds/3.20/gnome-backgrounds-3.20.tar.xz; + sha256 = "d66c6e165e5c16b79ee4ab83102fa73fa20ce4e14191036ee68e8e82cf537127"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/default.nix new file mode 100644 index 000000000000..7fae0b5c67f4 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, gnome3, pkgconfig, gtk3, intltool, glib +, udev, itstool, libxml2, makeWrapper, libnotify, libcanberra_gtk3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig intltool glib gtk3 udev libxml2 gnome3.defaultIconTheme + makeWrapper gnome3.gsettings_desktop_schemas itstool + libnotify libcanberra_gtk3 ]; + + preFixup = '' + wrapProgram "$out/bin/bluetooth-sendto" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en; + description = "Application that let you manage Bluetooth in the GNOME destkop"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} 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 new file mode 100644 index 000000000000..6da79276afc8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-bluetooth/src.nix @@ -0,0 +1,12 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: rec { + major = "3.18"; + minor = "3"; + name = "gnome-bluetooth-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-bluetooth/${major}/${name}.tar.xz"; + sha256 = "1qwc9q7x22sc71zhqv4db78rqzxl6fqfw6d978ydqap54c2bg0g4"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix new file mode 100644 index 000000000000..5458f933a755 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/default.nix @@ -0,0 +1,26 @@ +{ stdenv, intltool, fetchurl, pkgconfig, libxml2 +, bash, gtk3, glib, wrapGAppsHook +, itstool, gnome3, librsvg, gdk_pixbuf, mpfr, gmp, libsoup }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ bash gtk3 glib intltool itstool + libxml2 gnome3.gtksourceview mpfr gmp + gdk_pixbuf gnome3.defaultIconTheme librsvg + gnome3.gsettings_desktop_schemas gnome3.dconf libsoup ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Apps/Calculator; + description = "Application that solves mathematical equations and is suitable as a default application in a Desktop environment"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/src.nix new file mode 100644 index 000000000000..a24b0b5b8767 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-calculator/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-calculator-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-calculator/3.20/gnome-calculator-3.20.1.tar.xz; + sha256 = "02edcf99857599ac10ecd2faaf33ad20a9f11f7c5a89a52ee1b511d99b594b90"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-common/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-common/default.nix new file mode 100644 index 000000000000..f9261e183ef1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-common/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchurl, which, gnome3, autoconf, automake }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + patches = [(fetchurl { + name = "gnome-common-patch"; + url = "https://bug697543.bugzilla-attachments.gnome.org/attachment.cgi?id=240935"; + sha256 = "17abp7czfzirjm7qsn2czd03hdv9kbyhk3lkjxg2xsf5fky7z7jl"; + })]; + + propagatedBuildInputs = [ which autoconf automake ]; # autogen.sh which is using gnome_common tends to require which + + meta = with stdenv.lib; { + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-common/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-common/src.nix new file mode 100644 index 000000000000..8ffe7e20e1a9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-common/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-common-3.18.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-common/3.18/gnome-common-3.18.0.tar.xz; + sha256 = "22569e370ae755e04527b76328befc4c73b62bfd4a572499fde116b8318af8cf"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/default.nix new file mode 100644 index 000000000000..6ec3c7871bb9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/default.nix @@ -0,0 +1,47 @@ +{ stdenv, intltool, fetchurl, evolution_data_server, db +, pkgconfig, gtk3, glib, libsecret +, libchamplain, clutter_gtk, geocode_glib +, bash, makeWrapper, itstool, folks, libnotify, libxml2 +, gnome3, librsvg, gdk_pixbuf, file, telepathy_glib, nspr, nss +, libsoup, vala, dbus_glib, automake115x, autoconf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard evolution_data_server ]; + + # force build from vala + preBuild = '' + touch src/*.vala + ''; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool evolution_data_server + gnome3.gsettings_desktop_schemas makeWrapper file libnotify + folks gnome3.gnome_desktop telepathy_glib libsecret dbus_glib + libxml2 libsoup gnome3.gnome_online_accounts nspr nss + gdk_pixbuf gnome3.defaultIconTheme librsvg + libchamplain clutter_gtk geocode_glib + vala automake115x autoconf db ]; + + preFixup = '' + for f in "$out/bin/gnome-contacts" "$out/libexec/gnome-contacts-search-provider"; do + wrapProgram $f \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + done + ''; + + patches = [ ./gio_unix.patch ]; + + patchFlags = "-p0"; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Contacts; + description = "Contacts is GNOME's integrated address book"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/gio_unix.patch b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/gio_unix.patch new file mode 100644 index 000000000000..f1b3d3c94ac2 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/gio_unix.patch @@ -0,0 +1,10 @@ +--- configure.ac.orig 2015-04-09 18:45:50.581232289 +0200 ++++ configure.ac 2015-04-09 18:45:59.744280137 +0200 +@@ -54,6 +54,7 @@ + champlain-0.12 + clutter-gtk-1.0 + geocode-glib-1.0 >= 3.15.3 ++ gio-unix-2.0 + " + PKG_CHECK_MODULES(CONTACTS, [$pkg_modules]) + diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/src.nix new file mode 100644 index 000000000000..f483acaa441d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-contacts/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-contacts-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-contacts/3.20/gnome-contacts-3.20.0.tar.xz; + sha256 = "bef88dc728aa7bb058c530fd936b262d96bbc17e73d640279842371bb3ad1588"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/default.nix new file mode 100644 index 000000000000..1b83bc061b7a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/default.nix @@ -0,0 +1,57 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, ibus, intltool, upower, makeWrapper +, libcanberra, libcanberra_gtk3, accountsservice, libpwquality, libpulseaudio +, gdk_pixbuf, librsvg, libxkbfile, libnotify, libgudev +, libxml2, polkit, libxslt, libgtop, libsoup, colord, colord-gtk +, cracklib, python, libkrb5, networkmanagerapplet, networkmanager +, libwacom, samba, shared_mime_info, tzdata, icu, libtool, udev +, docbook_xsl, docbook_xsl_ns, modemmanager, clutter, clutter_gtk +, fontconfig, sound-theme-freedesktop, grilo }: + +# http://ftp.gnome.org/pub/GNOME/teams/releng/3.10.2/gnome-suites-core-3.10.2.modules +# TODO: bluetooth, wacom, printers + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = + [ gnome3.gnome_themes_standard gnome3.libgnomekbd ]; + + # https://bugzilla.gnome.org/show_bug.cgi?id=752596 + enableParallelBuilding = false; + + buildInputs = with gnome3; + [ pkgconfig intltool ibus gtk glib upower libcanberra gsettings_desktop_schemas + libxml2 gnome_desktop gnome_settings_daemon polkit libxslt libgtop gnome-menus + gnome_online_accounts libsoup colord libpulseaudio fontconfig colord-gtk libpwquality + accountsservice libkrb5 networkmanagerapplet libwacom samba libnotify libxkbfile + shared_mime_info icu libtool docbook_xsl docbook_xsl_ns gnome3.grilo + gdk_pixbuf gnome3.defaultIconTheme librsvg clutter clutter_gtk + gnome3.vino udev libcanberra_gtk3 libgudev + networkmanager modemmanager makeWrapper gnome3.gnome-bluetooth grilo ]; + + preBuild = '' + substituteInPlace tz.h --replace "/usr/share/zoneinfo/zone.tab" "${tzdata}/share/zoneinfo/zone.tab" + substituteInPlace panels/datetime/tz.h --replace "/usr/share/zoneinfo/zone.tab" "${tzdata}/share/zoneinfo/zone.tab" + + # hack to make test-endianess happy + mkdir -p $out/share/locale + substituteInPlace panels/datetime/test-endianess.c --replace "/usr/share/locale/" "$out/share/locale/" + ''; + + preFixup = with gnome3; '' + wrapProgram $out/bin/gnome-control-center \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:${sound-theme-freedesktop}/share:$out/share:$out/share/gnome-control-center:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + for i in $out/share/applications/*; do + substituteInPlace $i --replace "gnome-control-center" "$out/bin/gnome-control-center" + done + ''; + + meta = with stdenv.lib; { + description = "Utilities to configure the GNOME desktop"; + license = licenses.gpl2Plus; + maintainers = gnome3.maintainers; + platforms = platforms.linux; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/src.nix new file mode 100644 index 000000000000..83c6e04d2433 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-control-center/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-control-center-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-control-center/3.20/gnome-control-center-3.20.1.tar.xz; + sha256 = "ce6474fc60f78ed3cfaf555e55a52ec3ebb6437fa184e08ad6077bbec380a1ed"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix new file mode 100644 index 000000000000..bf0ccd0224ee --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, python, libxml2Python, libxslt, which, libX11, gnome3, gtk3, glib +, intltool, gnome_doc_utils, libxkbfile, xkeyboard_config, isocodes, itstool, wayland +, gobjectIntrospection }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # this should probably be setuphook for glib + NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + + enableParallelBuilding = true; + + buildInputs = [ pkgconfig python libxml2Python libxslt which libX11 + xkeyboard_config isocodes itstool wayland + gtk3 glib intltool gnome_doc_utils libxkbfile + gobjectIntrospection ]; + + propagatedBuildInputs = [ gnome3.gsettings_desktop_schemas ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/src.nix new file mode 100644 index 000000000000..1388a51aa78d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-desktop/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-desktop-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-desktop/3.20/gnome-desktop-3.20.2.tar.xz; + sha256 = "492c2da7aa8c3a8b65796e8171fc8f0dfb5d322dd2799c0d76392e1fb061e2b2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix new file mode 100644 index 000000000000..1d1f9d18c566 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/default.nix @@ -0,0 +1,32 @@ +{ stdenv, intltool, fetchurl +, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool, libxml2 +, gnome3, librsvg, gdk_pixbuf, file }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 file + gnome3.gsettings_desktop_schemas makeWrapper ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-dictionary" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Dictionary; + description = "Dictionary is the GNOME application to look up definitions"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/src.nix new file mode 100644 index 000000000000..249cb314c2aa --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-dictionary/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-dictionary-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-dictionary/3.20/gnome-dictionary-3.20.0.tar.xz; + sha256 = "efb36377d46eff9291d3b8fec37baab2355f9dc8bc7edb791b6a625574716121"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix new file mode 100644 index 000000000000..3f9f653bdba1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/default.nix @@ -0,0 +1,35 @@ +{ stdenv, intltool, fetchurl, pkgconfig, udisks2, libsecret, libdvdread +, bash, gtk3, glib, makeWrapper, cracklib, libnotify +, itstool, gnome3, librsvg, gdk_pixbuf, libxml2, python +, libcanberra_gtk3, libxslt, libtool, docbook_xsl, libpwquality }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ bash pkgconfig gtk3 glib intltool itstool + libxslt libtool libsecret libpwquality cracklib + libnotify libdvdread libcanberra_gtk3 docbook_xsl + gdk_pixbuf gnome3.defaultIconTheme + librsvg udisks2 gnome3.gnome_settings_daemon + gnome3.gsettings_desktop_schemas makeWrapper libxml2 ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-disks" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = http://en.wikipedia.org/wiki/GNOME_Disks; + description = "A udisks graphical front-end"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/src.nix new file mode 100644 index 000000000000..fd49e82e8c3a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-disk-utility/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-disk-utility-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-disk-utility/3.20/gnome-disk-utility-3.20.2.tar.xz; + sha256 = "ad12ae0f3a2ae9c690ca799dd1f690a8eb238575e0fd8f328b66a96eb9bf2c3d"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix new file mode 100644 index 000000000000..54767dbc4c59 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/default.nix @@ -0,0 +1,31 @@ +{ stdenv, intltool, fetchurl +, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool +, gnome3, librsvg, gdk_pixbuf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool gnome3.gnome_desktop + gdk_pixbuf gnome3.defaultIconTheme librsvg + gnome3.gsettings_desktop_schemas makeWrapper ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-font-viewer" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + description = "Program that can preview fonts and create thumbnails for fonts"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/src.nix new file mode 100644 index 000000000000..7fc8110f3d8e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-font-viewer/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-font-viewer-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-font-viewer/3.20/gnome-font-viewer-3.20.2.tar.xz; + sha256 = "c95b336c15fade23ce239087897d91abcd3ae3776cd15b0c71321629a94abe8e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix new file mode 100644 index 000000000000..8e755383dd62 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/default.nix @@ -0,0 +1,34 @@ +{ stdenv, fetchurl, pkgconfig, dbus, libgcrypt, libtasn1, pam, python, glib, libxslt +, intltool, pango, gcr, gdk_pixbuf, atk, p11_kit, makeWrapper +, docbook_xsl_ns, docbook_xsl, gnome3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = with gnome3; [ + dbus libgcrypt pam python gtk3 gconf libgnome_keyring + pango gcr gdk_pixbuf atk p11_kit makeWrapper + ]; + + propagatedBuildInputs = [ glib libtasn1 libxslt ]; + + nativeBuildInputs = [ pkgconfig intltool docbook_xsl_ns docbook_xsl ]; + + configureFlags = [ + "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" # NixOS hardcoded path + "--with-pkcs11-config=$$out/etc/pkcs11/" # installation directories + "--with-pkcs11-modules=$$out/lib/pkcs11/" + ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-keyring" \ + --prefix XDG_DATA_DIRS : "${glib}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + wrapProgram "$out/bin/gnome-keyring-daemon" \ + --prefix XDG_DATA_DIRS : "${glib}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/src.nix new file mode 100644 index 000000000000..88179fff3c7e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-keyring/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-keyring-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-keyring/3.20/gnome-keyring-3.20.0.tar.xz; + sha256 = "bc17cecd748a0e46e302171d11c3ae3d76bba5258c441fabec3786f418e7ec99"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-menus/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-menus/default.nix new file mode 100644 index 000000000000..90209634fbf1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-menus/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, intltool, pkgconfig, glib, gobjectIntrospection }: + +stdenv.mkDerivation rec { + name = "gnome-menus-${version}"; + version = "3.10.1"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-menus/3.10/${name}.tar.xz"; + sha256 = "0wcacs1vk3pld8wvrwq7fdrm11i56nrajkrp6j1da6jc4yx0m5a6"; + }; + + makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"; + + buildInputs = [ intltool pkgconfig glib gobjectIntrospection ]; + + meta = { + homepage = "http://www.gnome.org"; + description = "Gnome menu specification"; + + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix new file mode 100644 index 000000000000..703d55e42d01 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pkgconfig, glib, libxslt, gtk, makeWrapper +, webkitgtk, json_glib, rest, libsecret, dbus_glib, gnome_common +, telepathy_glib, intltool, dbus_libs, icu +, libsoup, docbook_xsl_ns, docbook_xsl, gnome3 +}: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + NIX_CFLAGS_COMPILE = "-I${dbus_glib}/include/dbus-1.0 -I${dbus_libs}/include/dbus-1.0"; + + enableParallelBuilding = true; + + buildInputs = [ pkgconfig glib libxslt gtk webkitgtk json_glib rest gnome_common makeWrapper + libsecret dbus_glib telepathy_glib intltool icu libsoup + docbook_xsl_ns docbook_xsl gnome3.defaultIconTheme ]; + + preFixup = '' + for f in "$out/libexec/"*; do + wrapProgram "$f" --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + done + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} 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 new file mode 100644 index 000000000000..7680208c27a9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-accounts/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-online-accounts-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-online-accounts/3.20/gnome-online-accounts-3.20.1.tar.xz; + sha256 = "c37aebc1e12f31f5516d33a354181e4d202a07da4f7d3a95b0da8cf0028c0c93"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/default.nix new file mode 100644 index 000000000000..90fc3a8737ae --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pkgconfig, glib, gnome3, libxml2 +, libsoup, json_glib, gmp, openssl, makeWrapper }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig glib gnome3.libgdata libxml2 libsoup gmp openssl + gnome3.grilo gnome3.libzapojit gnome3.grilo-plugins + gnome3.gnome_online_accounts makeWrapper gnome3.libmediaart + gnome3.tracker gnome3.gfbgraph json_glib gnome3.rest ]; + + enableParallelBuilding = true; + + preFixup = '' + for f in $out/libexec/*; do + wrapProgram "$f" \ + --prefix GRL_PLUGIN_PATH : "${gnome3.grilo-plugins}/lib/grilo-${gnome3.grilo-plugins.major}" + done + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GnomeOnlineMiners; + description = "A set of crawlers that go through your online content and index them locally in Tracker"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/src.nix new file mode 100644 index 000000000000..185a8e2bc6da --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-online-miners/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-online-miners-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-online-miners/3.20/gnome-online-miners-3.20.0.tar.xz; + sha256 = "f46dac7743283385d2aeea588eeead216274d9f365e323b90f586de982336e36"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix new file mode 100644 index 000000000000..763fc990bdab --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/default.nix @@ -0,0 +1,31 @@ +{ stdenv, intltool, fetchurl, pkgconfig, libcanberra_gtk3 +, bash, gtk3, glib, makeWrapper +, itstool, gnome3, librsvg, gdk_pixbuf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; + + buildInputs = [ bash pkgconfig gtk3 glib intltool itstool libcanberra_gtk3 + gnome3.gsettings_desktop_schemas makeWrapper ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-screenshot" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = http://en.wikipedia.org/wiki/GNOME_Screenshot; + description = "Utility used in the GNOME desktop environment for taking screenshots"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} 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 new file mode 100644 index 000000000000..af6007fa2338 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-screenshot/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-screenshot-3.18.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-screenshot/3.18/gnome-screenshot-3.18.0.tar.xz; + sha256 = "eba64dbf4acf0ab8222fec549d0a4f2dd7dbd51c255e7978dedf1f5c06a98841"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-session/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-session/default.nix new file mode 100644 index 000000000000..8f876386f323 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-session/default.nix @@ -0,0 +1,26 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, glib, dbus_glib, json_glib, upower +, libxslt, intltool, makeWrapper, systemd, xorg }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + configureFlags = "--enable-systemd"; + + buildInputs = with gnome3; + [ pkgconfig glib gnome_desktop gtk dbus_glib json_glib libxslt + gnome3.gnome_settings_daemon xorg.xtrans gnome3.defaultIconTheme + gsettings_desktop_schemas upower intltool gconf makeWrapper systemd ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-session" \ + --prefix PATH : "${glib}/bin" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --suffix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} 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 new file mode 100644 index 000000000000..28d8496a3540 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-session/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-session-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-session/3.20/gnome-session-3.20.1.tar.xz; + sha256 = "2ae9f53dc74f851222fbefbe0dc08db0a78cc76ceeb156f92ebd4d40fd038913"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix new file mode 100644 index 000000000000..99e1f596f184 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/default.nix @@ -0,0 +1,31 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, intltool, glib, libnotify, lcms2, libXtst +, libxkbfile, libpulseaudio, libcanberra_gtk3, upower, colord, libgweather, polkit +, geoclue2, librsvg, xf86_input_wacom, udev, libgudev, libwacom, libxslt, libtool, networkmanager +, docbook_xsl, docbook_xsl_ns, makeWrapper, ibus, xkeyboard_config }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # fatal error: gio/gunixfdlist.h: No such file or directory + NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0"; + + buildInputs = with gnome3; + [ intltool pkgconfig ibus gtk glib gsettings_desktop_schemas networkmanager + libnotify gnome_desktop lcms2 libXtst libxkbfile libpulseaudio + libcanberra_gtk3 upower colord libgweather xkeyboard_config + polkit geocode_glib geoclue2 librsvg xf86_input_wacom udev libgudev libwacom libxslt + libtool docbook_xsl docbook_xsl_ns makeWrapper gnome_themes_standard ]; + + preFixup = '' + wrapProgram "$out/libexec/gnome-settings-daemon-localeexec" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --prefix PATH : "${glib}/bin" \ + --prefix XDG_DATA_DIRS : "$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/src.nix new file mode 100644 index 000000000000..9091f2eb3617 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-settings-daemon/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-settings-daemon-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-settings-daemon/3.20/gnome-settings-daemon-3.20.1.tar.xz; + sha256 = "e84a075d895ca3baeefb8508e0a901027b66f7d5a7ee8c966e31d301b38e78e7"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/default.nix new file mode 100644 index 000000000000..e9eae87f14e3 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/default.nix @@ -0,0 +1,19 @@ +{ stdenv, intltool, fetchurl, libgtop, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool, gnome3, file }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + buildInputs = [ pkgconfig gtk3 glib libgtop intltool itstool + makeWrapper file ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GnomeShell/Extensions; + description = "Modify and extend GNOME Shell functionality and behavior"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/src.nix new file mode 100644 index 000000000000..5ad056ba1561 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell-extensions/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-shell-extensions-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-shell-extensions/3.20/gnome-shell-extensions-3.20.1.tar.xz; + sha256 = "bc432ec163c79794331290d7a9321bee184be077d348faf3b7a1639b672939a3"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix new file mode 100644 index 000000000000..11d78cd61328 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/default.nix @@ -0,0 +1,58 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, json_glib, libcroco, intltool, libsecret +, python3, libsoup, polkit, clutter, networkmanager, docbook_xsl, docbook_xsl_ns, at_spi2_core +, libstartup_notification, telepathy_glib, telepathy_logger, libXtst, p11_kit, unzip +, sqlite, libgweather, libcanberra_gtk3 +, libpulseaudio, libical, libtool, nss, gobjectIntrospection, gstreamer, makeWrapper +, accountsservice, gdk_pixbuf, gdm, upower, ibus, networkmanagerapplet, librsvg }: + +# http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/gnome-base/gnome-shell/gnome-shell-3.10.2.1.ebuild?revision=1.3&view=markup + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # Needed to find /etc/NetworkManager/VPN + configureFlags = [ "--sysconfdir=/etc" ]; + + buildInputs = with gnome3; + [ gsettings_desktop_schemas gnome_keyring gnome-menus glib gcr json_glib accountsservice + libcroco intltool libsecret pkgconfig python3 libsoup polkit libcanberra gdk_pixbuf librsvg + clutter networkmanager libstartup_notification telepathy_glib docbook_xsl docbook_xsl_ns + libXtst p11_kit networkmanagerapplet gjs mutter libpulseaudio caribou evolution_data_server + libical libtool nss gobjectIntrospection gtk gstreamer makeWrapper gdm + libcanberra_gtk3 gnome_control_center + defaultIconTheme sqlite gnome3.gnome-bluetooth + libgweather # not declared at build time, but typelib is needed at runtime + gnome3.gnome-clocks # schemas needed + at_spi2_core upower ibus gnome_session gnome_desktop telepathy_logger gnome3.gnome_settings_daemon ]; + + installFlags = [ "keysdir=$(out)/share/gnome-control-center/keybindings" ]; + + preBuild = '' + patchShebangs src/data-to-c.pl + substituteInPlace data/Makefile --replace " install-keysDATA" "" + ''; + + preFixup = with gnome3; '' + wrapProgram "$out/bin/gnome-shell" \ + --prefix PATH : "${unzip}/bin" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS" \ + --suffix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + + wrapProgram "$out/libexec/gnome-shell-calendar-server" \ + --prefix XDG_DATA_DIRS : "${evolution_data_server}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + + echo "${unzip}/bin" > $out/${passthru.mozillaPlugin}/extra-bin-path + ''; + + passthru = { + mozillaPlugin = "/lib/mozilla/plugins"; + }; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} 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 new file mode 100644 index 000000000000..3033cdffa332 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-shell/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-shell-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-shell/3.20/gnome-shell-3.20.2.tar.xz; + sha256 = "eaff6b177cc5bab16b252c45393a6c9305ad3837a288e738388c7b4d4bae13cd"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix new file mode 100644 index 000000000000..716f92a072d4 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-system-log/default.nix @@ -0,0 +1,36 @@ +{ stdenv, intltool, fetchurl, pkgconfig +, bash, gtk3, glib, makeWrapper +, itstool, gnome3, librsvg, gdk_pixbuf, libxml2 }: + +stdenv.mkDerivation rec { + name = "gnome-system-log-3.9.90"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-system-log/3.9/${name}.tar.xz"; + sha256 = "9eeb51982d347aa7b33703031e2c1d8084201374665425cd62199649b29a5411"; + }; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + propagatedBuildInputs = [ gdk_pixbuf gnome3.defaultIconTheme librsvg ]; + + buildInputs = [ bash pkgconfig gtk3 glib intltool itstool + gnome3.gsettings_desktop_schemas makeWrapper libxml2 ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-system-log" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://help.gnome.org/users/gnome-system-log/3.9/; + description = "Graphical, menu-driven viewer that you can use to view and monitor your system logs"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/default.nix new file mode 100644 index 000000000000..bdbdefecf229 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/default.nix @@ -0,0 +1,32 @@ +{ stdenv, intltool, fetchurl, pkgconfig, gtkmm3, libxml2 +, bash, gtk3, glib, makeWrapper +, itstool, gnome3, librsvg, gdk_pixbuf, libgtop }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ bash pkgconfig gtk3 glib intltool itstool libxml2 + gtkmm3 libgtop makeWrapper + gdk_pixbuf gnome3.defaultIconTheme librsvg + gnome3.gsettings_desktop_schemas ]; + + preFixup = '' + wrapProgram "$out/bin/gnome-system-monitor" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://help.gnome.org/users/gnome-system-monitor/3.12/; + description = "System Monitor shows you what programs are running and how much processor time, memory, and disk space are being used"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/src.nix new file mode 100644 index 000000000000..3dd167ce5f7a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-system-monitor/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-system-monitor-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-system-monitor/3.20/gnome-system-monitor-3.20.1.tar.xz; + sha256 = "9b23ab443fd92050b95c03a0ab321bbd41696a0ffc89c06e79c8798dca0a44f9"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix new file mode 100644 index 000000000000..052a16affdc0 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/default.nix @@ -0,0 +1,23 @@ +{ stdenv, fetchurl, pkgconfig, cairo, libxml2, gnome3, pango +, gnome_doc_utils, intltool, libX11, which, libuuid, vala +, desktop_file_utils, itstool, wrapGAppsHook, appdata-tools }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ gnome3.gtk gnome3.gsettings_desktop_schemas gnome3.vte appdata-tools + gnome3.dconf itstool gnome3.nautilus vala ]; + + nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which libuuid libxml2 + desktop_file_utils wrapGAppsHook ]; + + # FIXME: enable for gnome3 + configureFlags = [ "--disable-search-provider" "--disable-migration" ]; + + meta = with stdenv.lib; { + description = "The GNOME Terminal Emulator"; + homepage = https://wiki.gnome.org/Apps/Terminal/; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/src.nix new file mode 100644 index 000000000000..9fa8e510ad80 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-terminal/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-terminal-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-terminal/3.20/gnome-terminal-3.20.2.tar.xz; + sha256 = "f5383060730f1de70af35e917f82d5b6a14d963ad9cfd6a0e705f90011645a23"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/default.nix new file mode 100644 index 000000000000..a33252a934c3 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/default.nix @@ -0,0 +1,14 @@ +{ stdenv, fetchurl, intltool, gtk3, gnome3, librsvg, pkgconfig, pango, atk, gtk2 +, gdk_pixbuf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ intltool gtk3 librsvg pkgconfig pango atk gtk2 gdk_pixbuf + gnome3.defaultIconTheme ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/src.nix new file mode 100644 index 000000000000..8388bd612213 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-themes-standard/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-themes-standard-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-themes-standard/3.20/gnome-themes-standard-3.20.2.tar.xz; + sha256 = "9d0d9c4b2c9f9008301c3c1878ebb95859a735b7fd4a6a518802b9637e4a7915"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/default.nix new file mode 100644 index 000000000000..4f02673e036f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, pkgconfig, file, gnome3, itstool, libxml2, intltool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gnome3.yelp itstool libxml2 intltool ]; + + meta = with stdenv.lib; { + homepage = "https://help.gnome.org/users/gnome-help/${gnome3.version}"; + description = "User and system administration help for the GNOME desktop"; + maintainers = gnome3.maintainers; + license = licenses.cc-by-30; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/src.nix new file mode 100644 index 000000000000..4c12fa6e0435 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-docs/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-user-docs-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-user-docs/3.20/gnome-user-docs-3.20.2.tar.xz; + sha256 = "3e998ba05956582219b068e7f7abd9baebf8bc4067c9618d6d0be92c68a5bf32"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix new file mode 100644 index 000000000000..49ad40912c66 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/default.nix @@ -0,0 +1,45 @@ +{ stdenv, intltool, fetchurl, apacheHttpd_2_2, nautilus +, pkgconfig, gtk3, glib, libxml2, gnused +, bash, makeWrapper, itstool, libnotify, libtool, mod_dnssd +, gnome3, librsvg, gdk_pixbuf, file, libcanberra_gtk3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + preConfigure = '' + sed -e 's,^LoadModule dnssd_module.\+,LoadModule dnssd_module ${mod_dnssd}/modules/mod_dnssd.so,' -i data/dav_user_2.2.conf + ''; + + configureFlags = [ "--with-httpd=${apacheHttpd_2_2}/bin/httpd" + "--with-modules-path=${apacheHttpd_2_2}/modules" + "--disable-bluetooth" + "--with-nautilusdir=$(out)/lib/nautilus/extensions-3.0" ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 libtool + makeWrapper file gdk_pixbuf gnome3.defaultIconTheme librsvg + nautilus libnotify libcanberra_gtk3 ]; + + postInstall = '' + mkdir -p $out/share/gsettings-schemas/$name + mv $out/share/glib-2.0 $out/share/gsettings-schemas/$name + ${glib}/bin/glib-compile-schemas $out/share/gsettings-schemas/$name/glib-2.0/schemas + ''; + + preFixup = '' + wrapProgram "$out/libexec/gnome-user-share-webdav" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://help.gnome.org/users/gnome-user-share/3.8; + description = "Service that exports the contents of the Public folder in your home directory on the local network"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/src.nix b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/src.nix new file mode 100644 index 000000000000..b748091af68d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gnome-user-share/src.nix @@ -0,0 +1,12 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: rec { + major = "3.18"; + minor = "1"; + name = "gnome-user-share-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-user-share/${major}/${name}.tar.xz"; + sha256 = "1p9cz93jbfx4a5gxfk54jm0sxddm73lrag92h3qgpgfrmp7xlr1y"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix new file mode 100644 index 000000000000..4c952e3de276 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/grilo-plugins/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchurl, pkgconfig, file, intltool, glib, sqlite +, gnome3, libxml2, gupnp, gssdp, lua5, liboauth, gupnp_av +, gmime, json_glib, avahi, tracker, itstool }: + +stdenv.mkDerivation rec { + major = "0.3"; + minor = "1"; + name = "grilo-plugins-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/grilo-plugins/${major}/${name}.tar.xz"; + sha256 = "1akd7q6pqnkcnayrdfjb0qx5w5yyl06kxzwhqp2gxm4y1b208pb0"; + }; + + installFlags = [ "GRL_PLUGINS_DIR=$(out)/lib/grilo-${major}" ]; + + buildInputs = [ pkgconfig gnome3.grilo libxml2 gupnp gssdp gnome3.libgdata + lua5 liboauth gupnp_av sqlite gnome3.gnome_online_accounts + gnome3.totem-pl-parser gnome3.rest gmime json_glib + avahi gnome3.libmediaart tracker intltool itstool ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Projects/Grilo; + description = "A collection of plugins for the Grilo framework"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix new file mode 100644 index 000000000000..e178985c1785 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/grilo/default.nix @@ -0,0 +1,35 @@ +{ stdenv, fetchurl, pkgconfig, file, intltool, glib +, libxml2, gnome3, gobjectIntrospection, libsoup }: + +stdenv.mkDerivation rec { + major = "0.3"; + minor = "0"; + name = "grilo-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/grilo/${major}/${name}.tar.xz"; + sha256 = "0q5wcvnckpfks48hy0gvlfdmvqm67vnblm3912rssmkgc1ysil8z"; + }; + + setupHook = ./setup-hook.sh; + + configureFlags = [ "--enable-grl-pls" "--enable-grl-net" ]; + + preConfigure = '' + for f in src/Makefile.in libs/pls/Makefile.in libs/net/Makefile.in; do + substituteInPlace $f --replace @INTROSPECTION_GIRDIR@ "$out/share/gir-1.0/" + substituteInPlace $f --replace @INTROSPECTION_TYPELIBDIR@ "$out/lib/girepository-1.0" + done + ''; + + buildInputs = [ pkgconfig file intltool glib libxml2 libsoup + gnome3.totem-pl-parser gobjectIntrospection ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Projects/Grilo; + description = "Framework that provides access to various sources of multimedia content, using a pluggable system"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh new file mode 100644 index 000000000000..bc93dddec386 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/grilo/setup-hook.sh @@ -0,0 +1,7 @@ +make_grilo_find_plugins() { + if [ -d "$1"/lib/grilo-0.2 ]; then + addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.2" + fi +} + +envHooks+=(make_grilo_find_plugins) diff --git a/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/default.nix b/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/default.nix new file mode 100644 index 000000000000..5123cadbdafd --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, intltool, glib, gobjectIntrospection + # just for passthru +, gnome3, gtk3, gsettings_desktop_schemas }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + postPatch = '' + for file in "background" "screensaver"; do + substituteInPlace "schemas/org.gnome.desktop.$file.gschema.xml.in" \ + --replace "@datadir@" "${gnome3.gnome-backgrounds}/share/" + done + ''; + + buildInputs = [ glib gobjectIntrospection ]; + + nativeBuildInputs = [ pkgconfig intltool ]; + + meta = with stdenv.lib; { + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/src.nix b/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/src.nix new file mode 100644 index 000000000000..14199e47dbb3 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gsettings-desktop-schemas/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gsettings-desktop-schemas-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gsettings-desktop-schemas/3.20/gsettings-desktop-schemas-3.20.0.tar.xz; + sha256 = "55a41b533c0ab955e0a36a84d73829451c88b027d8d719955d8f695c35c6d9c1"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gsound/default.nix b/pkgs/desktops/gnome-3/3.20/core/gsound/default.nix new file mode 100644 index 000000000000..5f255743313e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gsound/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, glib, libcanberra, gobjectIntrospection, libtool, gnome3 }: + +let + majVer = "1.0"; +in stdenv.mkDerivation rec { + name = "gsound-${majVer}.1"; + + src = fetchurl { + url = "mirror://gnome/sources/gsound/${majVer}/${name}.tar.xz"; + sha256 = "ea0dd94429c0645f2f98824274ef04543fe459dd83a5449a68910acc3ba67f29"; + }; + + buildInputs = [ pkgconfig glib libcanberra gobjectIntrospection libtool ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GSound; + description = "Small library for playing system sounds"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/default.nix b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/default.nix new file mode 100644 index 000000000000..ea95e39e5b2a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, atk, cairo, glib, gtk3, pango +, libxml2Python, perl, intltool, gettext, gnome3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedBuildInputs = [ gtk3 ]; + + buildInputs = [ pkgconfig atk cairo glib pango + libxml2Python perl intltool gettext ]; + + preBuild = '' + substituteInPlace gtksourceview/gtksourceview-utils.c --replace "@NIX_SHARE_PATH@" "$out/share" + ''; + + patches = [ ./nix_share_path.patch ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/nix_share_path.patch b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/nix_share_path.patch new file mode 100644 index 000000000000..c87350167c25 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/nix_share_path.patch @@ -0,0 +1,11 @@ +--- a/gtksourceview/gtksourceview-utils.c 2014-07-13 16:13:57.418687726 +0200 ++++ b/gtksourceview/gtksourceview-utils.c 2014-07-13 16:14:20.550847767 +0200 +@@ -68,6 +68,8 @@ + basename, + NULL)); + ++ g_ptr_array_add (dirs, g_build_filename ("@NIX_SHARE_PATH@", SOURCEVIEW_DIR, basename, NULL)); ++ + g_ptr_array_add (dirs, NULL); + + return (gchar**) g_ptr_array_free (dirs, FALSE); diff --git a/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix new file mode 100644 index 000000000000..63de05e88209 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gtksourceview/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gtksourceview-3.20.3"; + + src = fetchurl { + url = mirror://gnome/sources/gtksourceview/3.20/gtksourceview-3.20.3.tar.xz; + sha256 = "53069c6e2645716d5dc3dc875b2fe7aacbe70e6560f8dc01c66597231886a8df"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gucharmap/default.nix b/pkgs/desktops/gnome-3/3.20/core/gucharmap/default.nix new file mode 100644 index 000000000000..a43d3c570ce9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gucharmap/default.nix @@ -0,0 +1,33 @@ +{ stdenv, intltool, fetchurl, pkgconfig, gtk3 +, glib, desktop_file_utils, bash, appdata-tools +, makeWrapper, gnome3, file, itstool, libxml2 }: + +# TODO: icons and theme still does not work +# use packaged gnome3.adwaita-icon-theme + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file"; + + buildInputs = [ pkgconfig gtk3 intltool itstool glib appdata-tools + gnome3.yelp_tools libxml2 file desktop_file_utils + gnome3.gsettings_desktop_schemas makeWrapper ]; + + preFixup = '' + wrapProgram "$out/bin/gucharmap" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Gucharmap; + description = "GNOME Character Map, based on the Unicode Character Database"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/gucharmap/src.nix b/pkgs/desktops/gnome-3/3.20/core/gucharmap/src.nix new file mode 100644 index 000000000000..69c0dd600251 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/gucharmap/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gucharmap-3.18.2"; + + src = fetchurl { + url = mirror://gnome/sources/gucharmap/3.18/gucharmap-3.18.2.tar.xz; + sha256 = "80141d3e892c3c4812c1a8fad8f89978559ef19e933843267e6e9a5524c09ec9"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix new file mode 100644 index 000000000000..76d9118c4b95 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libcroco/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, libxml2, glib }: + +stdenv.mkDerivation rec { + name = "libcroco-0.6.8"; + + src = fetchurl { + url = "mirror://gnome/sources/libcroco/0.6/${name}.tar.xz"; + sha256 = "0w453f3nnkbkrly7spx5lx5pf6mwynzmd5qhszprq8amij2invpa"; + }; + + outputs = [ "dev" "out" ]; + outputBin = "dev"; + + configureFlags = stdenv.lib.optional stdenv.isDarwin "--disable-Bsymbolic"; + + buildInputs = [ pkgconfig libxml2 glib ]; + + meta = with stdenv.lib; { + platforms = platforms.unix; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix new file mode 100644 index 000000000000..0a5fc0f8f601 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgdata/default.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, intltool, libxml2, glib, json_glib +, gobjectIntrospection, liboauth, gnome3, p11_kit, openssl, uhttpmock }: + +let + majorVersion = "0.17"; +in +stdenv.mkDerivation rec { + name = "libgdata-${majorVersion}.4"; + + src = fetchurl { + url = "mirror://gnome/sources/libgdata/${majorVersion}/${name}.tar.xz"; + sha256 = "1xniw4y90hbk9fa548pa9pfclibw7amr2f458lfh16jdzq7gw5cz"; + }; + + NIX_CFLAGS_COMPILE = "-I${gnome3.libsoup}/include/libsoup-gnome-2.4/ -I${gnome3.gcr}/include/gcr-3 -I${gnome3.gcr}/include/gck-1"; + + buildInputs = with gnome3; + [ pkgconfig libsoup intltool libxml2 glib gobjectIntrospection + liboauth gcr gnome_online_accounts p11_kit openssl uhttpmock ]; + + propagatedBuildInputs = [ json_glib ]; + + meta = with stdenv.lib; { + description = "GData API library"; + maintainers = with maintainers; [ raskin lethalman ]; + platforms = platforms.linux; + license = licenses.lgpl21Plus; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgee/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgee/default.nix new file mode 100644 index 000000000000..4ff132950319 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgee/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }: +let + ver_maj = "0.16"; + ver_min = "1"; +in +stdenv.mkDerivation rec { + name = "libgee-${ver_maj}.${ver_min}"; + + src = fetchurl { + url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz"; + sha256 = "d95f8ea8e78f843c71b1958fa2fb445e4a325e4821ec23d0d5108d8170e564a5"; + }; + + doCheck = true; + + patches = [ ./fix_introspection_paths.patch ]; + + buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ]; + + meta = with stdenv.lib; { + description = "Utility library providing GObject-based interfaces and classes for commonly used data structures"; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgee/fix_introspection_paths.patch b/pkgs/desktops/gnome-3/3.20/core/libgee/fix_introspection_paths.patch new file mode 100644 index 000000000000..67003f451645 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgee/fix_introspection_paths.patch @@ -0,0 +1,13 @@ +--- fix_introspection_paths.patch/configure 2014-01-07 17:43:53.521339338 +0000 ++++ fix_introspection_paths.patch/configure-fix 2014-01-07 17:45:11.068635069 +0000 +@@ -12085,8 +12085,8 @@ + INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0` + INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0` + INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0` +- INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0` +- INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)" ++ INTROSPECTION_GIRDIR="${datadir}/gir-1.0" ++ INTROSPECTION_TYPELIBDIR="${libdir}/girepository-1.0" + INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0` + INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0` + INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection diff --git a/pkgs/desktops/gnome-3/3.20/core/libgee/libgee-1.nix b/pkgs/desktops/gnome-3/3.20/core/libgee/libgee-1.nix new file mode 100644 index 000000000000..1715e7eeb856 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgee/libgee-1.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, autoconf, vala, pkgconfig, glib, gobjectIntrospection, gnome3 }: +let + ver_maj = "0.6"; + ver_min = "8"; +in +stdenv.mkDerivation rec { + name = "libgee-${ver_maj}.${ver_min}"; + + src = fetchurl { + url = "mirror://gnome/sources/libgee/${ver_maj}/${name}.tar.xz"; + sha256 = "1lzmxgz1bcs14ghfp8qqzarhn7s64ayx8c508ihizm3kc5wqs7x6"; + }; + + doCheck = true; + + patches = [ ./fix_introspection_paths.patch ]; + + buildInputs = [ autoconf vala pkgconfig glib gobjectIntrospection ]; + + meta = with stdenv.lib; { + description = "Utility library providing GObject-based interfaces and classes for commonly used data structures"; + license = licenses.lgpl21Plus; + platforms = platforms.linux; + maintainers = [ maintainers.spacefrogg ] ++ gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgnome-keyring/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgnome-keyring/default.nix new file mode 100644 index 000000000000..c6c9323c010a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgnome-keyring/default.nix @@ -0,0 +1,26 @@ +{ stdenv, fetchurl, glib, dbus_libs, libgcrypt, pkgconfig, intltool, gobjectIntrospection }: + +stdenv.mkDerivation rec { + name = "libgnome-keyring-3.12.0"; + + src = fetchurl { + url = "mirror://gnome/sources/libgnome-keyring/3.12/${name}.tar.xz"; + sha256 = "c4c178fbb05f72acc484d22ddb0568f7532c409b0a13e06513ff54b91e947783"; + }; + + propagatedBuildInputs = [ glib gobjectIntrospection dbus_libs libgcrypt ]; + nativeBuildInputs = [ pkgconfig intltool ]; + + meta = { + description = "Framework for managing passwords and other secrets"; + homepage = http://live.gnome.org/GnomeKeyring; + license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ]; + inherit (glib.meta) platforms maintainers; + + longDescription = '' + gnome-keyring is a program that keeps password and other secrets for + users. The library libgnome-keyring is used by applications to integrate + with the gnome-keyring system. + ''; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgnomekbd/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgnomekbd/default.nix new file mode 100644 index 000000000000..4939a4ff7281 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgnomekbd/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, file, intltool, glib, gtk3, libxklavier, makeWrapper, gnome3 }: + +stdenv.mkDerivation rec { + name = "libgnomekbd-3.6.0"; + + src = fetchurl { + url = "mirror://gnome/sources/libgnomekbd/3.6/${name}.tar.xz"; + sha256 = "c41ea5b0f64da470925ba09f9f1b46b26b82d4e433e594b2c71eab3da8856a09"; + }; + + buildInputs = [ pkgconfig file intltool glib gtk3 libxklavier makeWrapper ]; + + preFixup = '' + wrapProgram $out/bin/gkbd-keyboard-display \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + description = "Keyboard management library"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgweather/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgweather/default.nix new file mode 100644 index 000000000000..79ede15df8f0 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgweather/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchurl, pkgconfig, libxml2, gtk, intltool, libsoup, gconf +, pango, gdk_pixbuf, atk, tzdata, gnome3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"; + + configureFlags = [ "--with-zoneinfo-dir=${tzdata}/share/zoneinfo" ]; + propagatedBuildInputs = [ libxml2 gtk libsoup gconf pango gdk_pixbuf atk gnome3.geocode_glib ]; + nativeBuildInputs = [ pkgconfig intltool ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgweather/src.nix b/pkgs/desktops/gnome-3/3.20/core/libgweather/src.nix new file mode 100644 index 000000000000..ddded9a28d7c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgweather/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "libgweather-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/libgweather/3.20/libgweather-3.20.1.tar.xz; + sha256 = "81eb829fab6375cc9a4d448ae0f790e48f9720e91eb74678b22264cfbc8938d0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libgxps/default.nix b/pkgs/desktops/gnome-3/3.20/core/libgxps/default.nix new file mode 100644 index 000000000000..5168dec203fa --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libgxps/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, glib, cairo, libarchive, freetype, libjpeg, libtiff +, openssl, bzip2, acl, attr +}: + +stdenv.mkDerivation rec { + name = "libgxps-0.2.2"; + + src = fetchurl { + url = "http://ftp.acc.umu.se/pub/GNOME/core/3.10/3.10.2/sources/${name}.tar.xz"; + sha256 = "1gi0b0x0354jyqc48vspk2hg2q1403cf2p9ibj847nzhkdrh9l9r"; + }; + + buildInputs = [ pkgconfig glib cairo freetype libjpeg libtiff acl openssl bzip2 attr]; + propagatedBuildInputs = [ libarchive ]; + + configureFlags = "--without-liblcms2"; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix new file mode 100644 index 000000000000..8d40d977a80b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3 +, glib, gtk3, gobjectIntrospection, python, pygobject3 +}: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + intltool pkgconfig glib gtk3 gobjectIntrospection python pygobject3 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + description = "A GObject-based plugins engine"; + homepage = "http://ftp.acc.umu.se/pub/GNOME/sources/libpeas/"; + license = licenses.gpl2Plus; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix new file mode 100644 index 000000000000..8a24097bbd67 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libpeas/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "libpeas-1.16.0"; + + src = fetchurl { + url = mirror://gnome/sources/libpeas/1.16/libpeas-1.16.0.tar.xz; + sha256 = "b093008ecd65f7d55c80517589509698ff15ad41f664b11a3eb88ff461b1454e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/libzapojit/default.nix b/pkgs/desktops/gnome-3/3.20/core/libzapojit/default.nix new file mode 100644 index 000000000000..5a8117528b68 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/libzapojit/default.nix @@ -0,0 +1,16 @@ +{ stdenv, fetchurl, pkgconfig, glib, intltool, json_glib, rest, libsoup, gtk, gnome_online_accounts }: + +stdenv.mkDerivation rec { + name = "libzapojit-0.0.3"; + + src = fetchurl { + url = "mirror://gnome/sources/libzapojit/0.0/${name}.tar.xz"; + sha256 = "0zn3s7ryjc3k1abj4k55dr2na844l451nrg9s6cvnnhh569zj99x"; + }; + + buildInputs = [ pkgconfig glib intltool json_glib rest libsoup gtk gnome_online_accounts ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix new file mode 100644 index 000000000000..dd08a96cc232 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/default.nix @@ -0,0 +1,31 @@ +{ fetchurl, stdenv, pkgconfig, gnome3, intltool, gobjectIntrospection, upower, cairo +, pango, cogl, clutter, libstartup_notification, libcanberra, zenity, libcanberra_gtk3 +, libtool, makeWrapper, xkeyboard_config, libxkbfile, libxkbcommon }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + # fatal error: gio/gunixfdlist.h: No such file or directory + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + configureFlags = "--with-x --disable-static --enable-shape --enable-sm --enable-startup-notification --enable-xsync --enable-verbose-mode --with-libcanberra"; + + buildInputs = with gnome3; + [ pkgconfig intltool glib gobjectIntrospection gtk gsettings_desktop_schemas upower + gnome_desktop cairo pango cogl clutter zenity libstartup_notification libcanberra + gnome3.geocode_glib + libcanberra_gtk3 zenity libtool makeWrapper xkeyboard_config libxkbfile libxkbcommon ]; + + preFixup = '' + wrapProgram "$out/bin/mutter" \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" + ''; + + patches = [ ./x86.patch ./math.patch ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/math.patch b/pkgs/desktops/gnome-3/3.20/core/mutter/math.patch new file mode 100644 index 000000000000..dbdfd93f5e1d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/math.patch @@ -0,0 +1,10 @@ +--- mutter-3.18.0/src/backends/meta-cursor-renderer.c.orig 2015-09-23 13:54:31.297523343 +0200 ++++ mutter-3.18.0/src/backends/meta-cursor-renderer.c 2015-09-23 13:54:43.728271766 +0200 +@@ -31,6 +31,7 @@ + + #include + #include ++#include + + #include "meta-stage.h" + diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix new file mode 100644 index 000000000000..47acaa6b58e5 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "mutter-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/mutter/3.20/mutter-3.20.2.tar.xz; + sha256 = "1e8c46a81e21f382f56729282fcd0bb1c3a2067135f4b0f3651b307bf7a5b454"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/mutter/x86.patch b/pkgs/desktops/gnome-3/3.20/core/mutter/x86.patch new file mode 100644 index 000000000000..a997b27540ee --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/mutter/x86.patch @@ -0,0 +1,33 @@ +--- a/src/core/window.c 2015-05-26 10:52:41.382834963 +0200 ++++ b/src/core/window.c 2015-05-26 10:53:03.039948034 +0200 +@@ -3499,7 +3499,7 @@ + + static MetaMonitorInfo * + find_monitor_by_winsys_id (MetaWindow *window, +- guint winsys_id) ++ gint winsys_id) + { + int i; + +@@ -3618,7 +3618,7 @@ + */ + + gboolean did_placement; +- guint old_output_winsys_id; ++ gint old_output_winsys_id; + MetaRectangle unconstrained_rect; + MetaRectangle constrained_rect; + MetaMoveResizeResultFlags result = 0; +--- a/src/core/startup-notification.c 2016-06-06 12:13:27.100251933 +0200 ++++ b/src/core/startup-notification.c 2016-06-06 12:13:42.554956773 +0200 +@@ -418,7 +418,7 @@ + elapsed = ctod->now - timestamp; + + meta_topic (META_DEBUG_STARTUP, +- "Sequence used %ld ms vs. %d max: %s\n", ++ "Sequence used %" G_GINT64_FORMAT " ms vs. %d max: %s\n", + elapsed, STARTUP_TIMEOUT, + meta_startup_notification_sequence_get_id (sequence)); + +[?25l[?25h[?1049h[?1h=[?25h[?25l~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ [?25h[?25lType :quit to exit Vim[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h[?25l[?25h +[?1l>[?1049l diff --git a/pkgs/desktops/gnome-3/3.20/core/nautilus/default.nix b/pkgs/desktops/gnome-3/3.20/core/nautilus/default.nix new file mode 100644 index 000000000000..67229487085e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/nautilus/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, libxml2, dbus_glib, shared_mime_info, libexif +, gtk, gnome3, libunique, intltool, gobjectIntrospection +, libnotify, wrapGAppsHook, exempi, librsvg, tracker, libselinux }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + nativeBuildInputs = [ pkgconfig wrapGAppsHook ]; + + buildInputs = [ libxml2 dbus_glib shared_mime_info libexif gtk libunique intltool exempi librsvg + gnome3.gnome_desktop gnome3.adwaita-icon-theme + gnome3.gsettings_desktop_schemas gnome3.dconf libnotify tracker libselinux ]; + + patches = [ ./extension_dir.patch ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/nautilus/extension_dir.patch b/pkgs/desktops/gnome-3/3.20/core/nautilus/extension_dir.patch new file mode 100644 index 000000000000..317b82579924 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/nautilus/extension_dir.patch @@ -0,0 +1,24 @@ +diff --git a/libnautilus-private/nautilus-module.c b/libnautilus-private/nautilus-module.c +index 6273a76..4adcc8a 100644 +--- a/libnautilus-private/nautilus-module.c ++++ b/libnautilus-private/nautilus-module.c +@@ -242,11 +242,17 @@ void + nautilus_module_setup (void) + { + static gboolean initialized = FALSE; ++ const gchar* extensiondir = NULL; + + if (!initialized) { + initialized = TRUE; +- +- load_module_dir (NAUTILUS_EXTENSIONDIR); ++ ++ extensiondir = g_getenv ("NAUTILUS_EXTENSION_DIR"); ++ if (extensiondir == NULL) { ++ extensiondir = NAUTILUS_EXTENSIONDIR; ++ } ++ ++ load_module_dir (extensiondir); + + eel_debug_call_at_shutdown (free_module_objects); + } diff --git a/pkgs/desktops/gnome-3/3.20/core/nautilus/src.nix b/pkgs/desktops/gnome-3/3.20/core/nautilus/src.nix new file mode 100644 index 000000000000..b9e1ceeba204 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/nautilus/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "nautilus-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/nautilus/3.20/nautilus-3.20.1.tar.xz; + sha256 = "f2a907b994026412a7ed7c8145d4ab4f886ac87e780353b967473305a35e81e8"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/rest/default.nix b/pkgs/desktops/gnome-3/3.20/core/rest/default.nix new file mode 100644 index 000000000000..344bc00780f9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/rest/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection, gnome3 }: + +stdenv.mkDerivation rec { + name = "rest-0.7.93"; + + src = fetchurl { + url = "mirror://gnome/sources/rest/0.7/${name}.tar.xz"; + sha256 = "05mj10hhiik23ai8w4wkk5vhsp7hcv24bih5q3fl82ilam268467"; + }; + + buildInputs = [ pkgconfig glib libsoup gobjectIntrospection]; + + configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt"; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/sushi/default.nix b/pkgs/desktops/gnome-3/3.20/core/sushi/default.nix new file mode 100644 index 000000000000..fb010756f290 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/sushi/default.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, pkgconfig, file, intltool, gobjectIntrospection, glib +, clutter_gtk, clutter-gst, gnome3, gtksourceview, libmusicbrainz +, webkitgtk, libmusicbrainz5, icu, makeWrapper, gst_all_1 +, gdk_pixbuf, librsvg, gtk3, harfbuzz }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]; + + buildInputs = [ pkgconfig file intltool gobjectIntrospection glib gtk3 + clutter_gtk clutter-gst gnome3.gjs gtksourceview gdk_pixbuf + librsvg gnome3.defaultIconTheme libmusicbrainz5 webkitgtk + gnome3.evince icu makeWrapper harfbuzz ]; + + enableParallelBuilding = true; + + postConfigure = '' + substituteInPlace src/libsushi/sushi-font-widget.h \ + --replace "" "" + substituteInPlace src/libsushi/sushi-font-widget.c \ + --replace "" "" + ''; + + preFixup = '' + wrapProgram $out/libexec/sushi-start \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = "http://en.wikipedia.org/wiki/Sushi_(software)"; + description = "A quick previewer for Nautilus"; + maintainers = gnome3.maintainers; + license = licenses.gpl2Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/sushi/src.nix b/pkgs/desktops/gnome-3/3.20/core/sushi/src.nix new file mode 100644 index 000000000000..f972b22fae63 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/sushi/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "sushi-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/sushi/3.20/sushi-3.20.0.tar.xz; + sha256 = "6e729c789e9e7f02505e25d4ac6cfed47e676366f0942fca740094f7fe9eae9e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/totem-pl-parser/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem-pl-parser/default.nix new file mode 100644 index 000000000000..63f36004bcd6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/totem-pl-parser/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, file, intltool, gmime, libxml2, libsoup, gnome3 }: + +stdenv.mkDerivation rec { + name = "totem-pl-parser-3.10.2"; + + src = fetchurl { + url = "mirror://gnome/sources/totem-pl-parser/3.10/${name}.tar.xz"; + sha256 = "38be09bddc46ddecd2b5ed7c82144ef52aafe879a5ec3d8b192b4b64ba995469"; + }; + + buildInputs = [ pkgconfig file intltool gmime libxml2 libsoup ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Videos; + description = "Simple GObject-based library to parse and save a host of playlist formats"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix new file mode 100644 index 000000000000..13665c72274e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix @@ -0,0 +1,42 @@ +{ stdenv, intltool, fetchurl, gst_all_1 +, clutter_gtk, clutter-gst, pygobject3, shared_mime_info +, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool, libxml2, dbus_glib +, gnome3, librsvg, gdk_pixbuf, file }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + enableParallelBuilding = true; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0"; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 gnome3.grilo + clutter_gtk clutter-gst gnome3.totem-pl-parser gnome3.grilo-plugins + gst_all_1.gstreamer gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good gst_all_1.gst-plugins-bad + gnome3.libpeas pygobject3 shared_mime_info dbus_glib + gdk_pixbuf gnome3.defaultIconTheme librsvg gnome3.gnome_desktop + gnome3.gsettings_desktop_schemas makeWrapper file ]; + + preFixup = '' + wrapProgram "$out/bin/totem" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \ + --prefix GRL_PLUGIN_PATH : "${gnome3.grilo-plugins}/lib/grilo-0.2" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Videos; + description = "Movie player for the GNOME desktop based on GStreamer"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/src.nix b/pkgs/desktops/gnome-3/3.20/core/totem/src.nix new file mode 100644 index 000000000000..244549c4e26c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/totem/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "totem-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/totem/3.20/totem-3.20.1.tar.xz; + sha256 = "6f22480361ae869fd336854b4f83614fde528aff4e808eb716de33432eb45c27"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/tracker/default.nix b/pkgs/desktops/gnome-3/3.20/core/tracker/default.nix new file mode 100644 index 000000000000..ead54be84c54 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/tracker/default.nix @@ -0,0 +1,48 @@ +{ stdenv, intltool, fetchurl, libxml2, upower +, pkgconfig, gtk3, glib +, bash, makeWrapper, itstool, vala, sqlite, libxslt +, gnome3, librsvg, gdk_pixbuf, file, libnotify +, evolution_data_server, gst_all_1, poppler +, icu, taglib, libjpeg, libtiff, giflib, libcue +, libvorbis, flac, exempi, networkmanager +, libpng, libexif, libgsf, libuuid, bzip2 }: + +stdenv.mkDerivation rec { + + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0 -I${poppler}/include/poppler"; + + enableParallelBuilding = true; + + buildInputs = [ vala pkgconfig gtk3 glib intltool itstool libxml2 + bzip2 gnome3.totem-pl-parser libxslt + gnome3.gsettings_desktop_schemas makeWrapper file + gdk_pixbuf gnome3.defaultIconTheme librsvg sqlite + upower libnotify evolution_data_server gnome3.libgee + gst_all_1.gstreamer gst_all_1.gst-plugins-base flac + poppler icu taglib libjpeg libtiff giflib libvorbis + exempi networkmanager libpng libexif libgsf libuuid ]; + + preConfigure = '' + substituteInPlace src/libtracker-sparql/Makefile.in --replace "--shared-library=libtracker-sparql" "--shared-library=$out/lib/libtracker-sparql" + ''; + + preFixup = '' + for f in $out/bin/* $out/libexec/*; do + wrapProgram $f \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "${gnome3.gnome_themes_standard}/share:$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + done + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/Tracker; + description = "Desktop-neutral user information store, search tool and indexer"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/tracker/src.nix b/pkgs/desktops/gnome-3/3.20/core/tracker/src.nix new file mode 100644 index 000000000000..0ac540f42494 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/tracker/src.nix @@ -0,0 +1,11 @@ +fetchurl: rec { + major = "1.8"; + minor = "0"; + name = "tracker-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/tracker/${major}/${name}.tar.xz"; + sha256 = "0zchaahk4w7dwanqk1vx0qgnyrlzlp81krwawfx3mv5zffik27x1"; + }; + +} diff --git a/pkgs/desktops/gnome-3/3.20/core/vino/default.nix b/pkgs/desktops/gnome-3/3.20/core/vino/default.nix new file mode 100644 index 000000000000..336178f3729d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/vino/default.nix @@ -0,0 +1,25 @@ +{ stdenv, intltool, fetchurl, gtk3, glib, libsoup, pkgconfig, makeWrapper +, gnome3, libnotify, file, telepathy_glib, dbus_glib }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + buildInputs = [ gtk3 intltool glib libsoup pkgconfig libnotify + gnome3.defaultIconTheme dbus_glib telepathy_glib file + makeWrapper ]; + + preFixup = '' + wrapProgram "$out/libexec/vino-server" \ + --prefix XDG_DATA_DIRS : "$out/share:$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Projects/Vino; + description = "GNOME desktop sharing server"; + maintainers = with maintainers; [ lethalman domenkozar ]; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/vino/src.nix b/pkgs/desktops/gnome-3/3.20/core/vino/src.nix new file mode 100644 index 000000000000..140a85d7d190 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/vino/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "vino-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/vino/3.20/vino-3.20.2.tar.xz; + sha256 = "660488adc1bf577958e783d13f61dbd99c1d9c4e81d2ca063437ea81d39e4413"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/vte/2.90.nix b/pkgs/desktops/gnome-3/3.20/core/vte/2.90.nix new file mode 100644 index 000000000000..cbb52c9aaa12 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/vte/2.90.nix @@ -0,0 +1,40 @@ +{ stdenv, fetchurl, intltool, pkgconfig, gnome3, ncurses, gobjectIntrospection }: + +stdenv.mkDerivation rec { + versionMajor = "0.36"; + versionMinor = "3"; + moduleName = "vte"; + + name = "${moduleName}-${versionMajor}.${versionMinor}"; + + src = fetchurl { + url = "mirror://gnome/sources/${moduleName}/${versionMajor}/${name}.tar.xz"; + sha256 = "54e5b07be3c0f7b158302f54ee79d4de1cb002f4259b6642b79b1e0e314a959c"; + }; + + buildInputs = [ gobjectIntrospection intltool pkgconfig gnome3.glib gnome3.gtk3 ncurses ]; + + configureFlags = [ "--enable-introspection" ]; + + enableParallelBuilding = true; + + postInstall = '' + substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses.out}/lib -lncurses" + ''; + + meta = with stdenv.lib; { + homepage = http://www.gnome.org/; + description = "A library implementing a terminal emulator widget for GTK+"; + longDescription = '' + VTE is a library (libvte) implementing a terminal emulator widget for + GTK+, and a minimal sample application (vte) using that. Vte is + mainly used in gnome-terminal, but can also be used to embed a + console/terminal in games, editors, IDEs, etc. VTE supports Unicode and + character set conversion, as well as emulating any terminal known to + the system's terminfo database. + ''; + license = licenses.lgpl2; + maintainers = with maintainers; [ astsmtl antono lethalman ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/vte/default.nix b/pkgs/desktops/gnome-3/3.20/core/vte/default.nix new file mode 100644 index 000000000000..38850f0fe761 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/vte/default.nix @@ -0,0 +1,59 @@ +{ stdenv, fetchurl, intltool, pkgconfig +, gnome3, ncurses, gobjectIntrospection, vala, libxml2, gnutls + +, selectTextPatch ? false +, fetchFromGitHub, autoconf, automake, libtool, gtk_doc, gperf +}: + +let baseAttrs = rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ gobjectIntrospection intltool pkgconfig gnome3.glib + gnome3.gtk3 ncurses vala libxml2 ]; + + propagatedBuildInputs = [ gnutls ]; + + preConfigure = "patchShebangs ."; + + configureFlags = [ "--enable-introspection" ]; + + enableParallelBuilding = true; + + postInstall = '' + substituteInPlace $out/lib/libvte2_90.la --replace "-lncurses" "-L${ncurses.out}/lib -lncurses" + ''; + + meta = with stdenv.lib; { + homepage = http://www.gnome.org/; + description = "A library implementing a terminal emulator widget for GTK+"; + longDescription = '' + VTE is a library (libvte) implementing a terminal emulator widget for + GTK+, and a minimal sample application (vte) using that. Vte is + mainly used in gnome-terminal, but can also be used to embed a + console/terminal in games, editors, IDEs, etc. VTE supports Unicode and + character set conversion, as well as emulating any terminal known to + the system's terminfo database. + ''; + license = licenses.lgpl2; + maintainers = with maintainers; [ astsmtl antono lethalman ]; + platforms = platforms.linux; + }; +}; + +in stdenv.mkDerivation ( baseAttrs + // stdenv.lib.optionalAttrs selectTextPatch rec { + name = "vte-ng-${version}"; + version = "0.42.4.a"; + src = fetchFromGitHub { + owner = "thestinger"; + repo = "vte-ng"; + rev = version; + sha256 = "1w91lz30j5lrskp9ds5j3nn27m5mpdpn7nlcvf5y1w63mpmjg8k1"; + }; + # slightly hacky; I couldn't make it work with autoreconfHook + configureScript = "./autogen.sh"; + nativeBuildInputs = (baseAttrs.nativeBuildInputs or []) + ++ [ gtk_doc autoconf automake libtool gperf ]; + } +) + diff --git a/pkgs/desktops/gnome-3/3.20/core/vte/src.nix b/pkgs/desktops/gnome-3/3.20/core/vte/src.nix new file mode 100644 index 000000000000..0b45aa24112d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/vte/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "vte-0.44.2"; + + src = fetchurl { + url = mirror://gnome/sources/vte/0.44/vte-0.44.2.tar.xz; + sha256 = "a1ea594814bb136a3a9a6c7656b46240571f6a198825c1111007fe99194b0949"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp-tools/default.nix b/pkgs/desktops/gnome-3/3.20/core/yelp-tools/default.nix new file mode 100644 index 000000000000..9111802eb6a8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp-tools/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchurl, libxml2, libxslt, itstool, gnome3, pkgconfig }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ libxml2 libxslt itstool gnome3.yelp_xsl pkgconfig ]; + + doCheck = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Yelp/Tools; + description = "Small programs that help you create, edit, manage, and publish your Mallard or DocBook documentation"; + maintainers = with maintainers; [ domenkozar ]; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp-tools/src.nix b/pkgs/desktops/gnome-3/3.20/core/yelp-tools/src.nix new file mode 100644 index 000000000000..f03c6d1bc311 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp-tools/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "yelp-tools-3.18.0"; + + src = fetchurl { + url = mirror://gnome/sources/yelp-tools/3.18/yelp-tools-3.18.0.tar.xz; + sha256 = "c6c1d65f802397267cdc47aafd5398c4b60766e0a7ad2190426af6c0d0716932"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/default.nix b/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/default.nix new file mode 100644 index 000000000000..0a3976f35a15 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/default.nix @@ -0,0 +1,18 @@ +{ stdenv, intltool, fetchurl, pkgconfig, bash +, itstool, libxml2, libxslt, gnome3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + buildInputs = [ pkgconfig intltool itstool libxml2 libxslt ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Yelp; + description = "Yelp's universal stylesheets for Mallard and DocBook"; + maintainers = gnome3.maintainers; + license = [licenses.gpl2 licenses.lgpl2]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/src.nix b/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/src.nix new file mode 100644 index 000000000000..de5d68d1fab1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp-xsl/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "yelp-xsl-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/yelp-xsl/3.20/yelp-xsl-3.20.1.tar.xz; + sha256 = "dc61849e5dca473573d32e28c6c4e3cf9c1b6afe241f8c26e29539c415f97ba0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp/default.nix b/pkgs/desktops/gnome-3/3.20/core/yelp/default.nix new file mode 100644 index 000000000000..13464137bd8b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp/default.nix @@ -0,0 +1,26 @@ +{ stdenv, intltool, fetchurl, webkitgtk, pkgconfig, gtk3, glib +, file, librsvg, gnome3, gdk_pixbuf, sqlite +, bash, makeWrapper, itstool, libxml2, libxslt, icu, gst_all_1 +, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + preConfigure = "substituteInPlace ./configure --replace /usr/bin/file ${file}/bin/file"; + + buildInputs = [ pkgconfig gtk3 glib webkitgtk intltool itstool sqlite + libxml2 libxslt icu file makeWrapper gnome3.yelp_xsl + librsvg gdk_pixbuf gnome3.defaultIconTheme + gnome3.gsettings_desktop_schemas wrapGAppsHook + gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Yelp; + description = "The help viewer in Gnome"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/yelp/src.nix b/pkgs/desktops/gnome-3/3.20/core/yelp/src.nix new file mode 100644 index 000000000000..a6cc7522c658 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/yelp/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "yelp-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/yelp/3.20/yelp-3.20.1.tar.xz; + sha256 = "dda0b051ad32908cb9d894d1db3ffdac69b21849b8a6a9a74d9669b017f608c2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/zenity/default.nix b/pkgs/desktops/gnome-3/3.20/core/zenity/default.nix new file mode 100644 index 000000000000..8f525945a6af --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/zenity/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, cairo, libxml2, libxslt, gnome3, pango +, gnome_doc_utils, intltool, libX11, which, itstool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + preBuild = '' + mkdir -p $out/include + ''; + + buildInputs = [ gnome3.gtk libxml2 libxslt libX11 itstool ]; + + nativeBuildInputs = [ pkgconfig intltool gnome_doc_utils which ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/core/zenity/src.nix b/pkgs/desktops/gnome-3/3.20/core/zenity/src.nix new file mode 100644 index 000000000000..7b32e88a2c06 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/zenity/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "zenity-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/zenity/3.20/zenity-3.20.0.tar.xz; + sha256 = "02e8759397f813c0a620b93ebeacdab9956191c9dc0d0fcba1815c5ea3f15a48"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/default.nix b/pkgs/desktops/gnome-3/3.20/default.nix new file mode 100644 index 000000000000..4e00db3962e2 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/default.nix @@ -0,0 +1,397 @@ +{ pkgs }: + +let + + pkgsFun = overrides: + let + self = self_ // overrides; + self_ = with self; { + + overridePackages = f: + let newself = pkgsFun (f newself self); + in newself; + + callPackage = pkgs.newScope self; + + version = "3.20"; + maintainers = with pkgs.lib.maintainers; [ lethalman jgeerds DamienCassou ]; + + corePackages = with gnome3; [ + pkgs.desktop_file_utils pkgs.ibus + pkgs.shared_mime_info # for update-mime-database + glib # for gsettings + gtk3 # for gtk-update-icon-cache + glib_networking gvfs dconf gnome-backgrounds gnome_control_center + gnome-menus gnome_settings_daemon gnome_shell + gnome_themes_standard defaultIconTheme gnome-shell-extensions + pkgs.hicolor_icon_theme + ]; + + optionalPackages = with gnome3; [ baobab eog epiphany evince + gucharmap nautilus totem vino yelp gnome-bluetooth + gnome-calculator gnome-contacts gnome-font-viewer gnome-screenshot + gnome-system-log gnome-system-monitor + gnome_terminal gnome-user-docs bijiben evolution file-roller gedit + 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 + ]; + + gamesPackages = with gnome3; [ swell-foop lightsoff iagno + tali quadrapassel gnome-sudoku aisleriot five-or-more + four-in-a-row gnome-chess gnome-klotski gnome-mahjongg + gnome-mines gnome-nibbles gnome-robots gnome-tetravex + hitori gnome-taquin + ]; + + inherit (pkgs) glib gtk2 webkitgtk24x webkitgtk212x gtk3 gtkmm3 libcanberra; + inherit (pkgs.gnome2) ORBit2; + libsoup = pkgs.libsoup.override { gnomeSupport = true; }; + libchamplain = pkgs.libchamplain.override { libsoup = libsoup; }; + orbit = ORBit2; + gnome3 = self // { recurseForDerivations = false; }; + clutter = pkgs.clutter_1_26; + clutter_gtk = pkgs.clutter_gtk_1_8.override { inherit clutter gtk3; }; + clutter-gst_2 = pkgs.clutter-gst; + clutter-gst = pkgs.clutter-gst_3_0.override { inherit clutter cogl; }; + cogl = pkgs.cogl_1_22; + gtk = gtk3; + gtkmm = gtkmm3; + gtkvnc = pkgs.gtkvnc.override { enableGTK3 = true; }; + vala = pkgs.vala_0_32; + gegl_0_3 = pkgs.gegl_0_3.override { inherit gtk; }; + webkitgtk = webkitgtk212x; + +# Simplify the nixos module and gnome packages + defaultIconTheme = adwaita-icon-theme; + +# ISO installer +# installerIso = callPackage ./installer.nix {}; + +#### Core (http://ftp.acc.umu.se/pub/GNOME/core/) + + adwaita-icon-theme = callPackage ./core/adwaita-icon-theme { }; + + baobab = callPackage ./core/baobab { }; + + caribou = callPackage ./core/caribou { }; + + dconf = callPackage ./core/dconf { }; + dconf-editor = callPackage ./core/dconf-editor { }; + + # empathy = callPackage ./core/empathy { + # webkitgtk = webkitgtk24x; + # clutter-gst = pkgs.clutter-gst; + # }; + + epiphany = callPackage ./core/epiphany { }; + + evince = callPackage ./core/evince { }; # ToDo: dbus would prevent compilation, enable tests + + evolution_data_server = callPackage ./core/evolution-data-server { }; + + gconf = callPackage ./core/gconf { }; + + geocode_glib = callPackage ./core/geocode-glib { }; + + gcr = callPackage ./core/gcr { }; # ToDo: tests fail + + gdm = callPackage ./core/gdm { }; + + gjs = callPackage ./core/gjs { }; + + glib_networking = pkgs.glib_networking.override { + inherit gsettings_desktop_schemas; + }; + + gnome-backgrounds = callPackage ./core/gnome-backgrounds { }; + + gnome-bluetooth = callPackage ./core/gnome-bluetooth { }; + + gnome-contacts = callPackage ./core/gnome-contacts { }; + + gnome_control_center = callPackage ./core/gnome-control-center { }; + + gnome-calculator = callPackage ./core/gnome-calculator { }; + + gnome_common = callPackage ./core/gnome-common { }; + + gnome_desktop = callPackage ./core/gnome-desktop { }; + + gnome-dictionary = callPackage ./core/gnome-dictionary { }; + + gnome-disk-utility = callPackage ./core/gnome-disk-utility { }; + + gnome-font-viewer = callPackage ./core/gnome-font-viewer { }; + + gnome-menus = callPackage ./core/gnome-menus { }; + + gnome_keyring = callPackage ./core/gnome-keyring { }; + + libgnome_keyring = callPackage ./core/libgnome-keyring { }; + + libgnomekbd = callPackage ./core/libgnomekbd { }; + + folks = callPackage ./core/folks { }; + + gnome_online_accounts = callPackage ./core/gnome-online-accounts { }; + + gnome-online-miners = callPackage ./core/gnome-online-miners { }; + + gnome_session = callPackage ./core/gnome-session { }; + + gnome_shell = callPackage ./core/gnome-shell { }; + + gnome-shell-extensions = callPackage ./core/gnome-shell-extensions { }; + + gnome-screenshot = callPackage ./core/gnome-screenshot { }; + + gnome_settings_daemon = callPackage ./core/gnome-settings-daemon { }; + + gnome-system-log = callPackage ./core/gnome-system-log { }; + + gnome-system-monitor = callPackage ./core/gnome-system-monitor { }; + + gnome_terminal = callPackage ./core/gnome-terminal { }; + + gnome_themes_standard = callPackage ./core/gnome-themes-standard { }; + + gnome-user-docs = callPackage ./core/gnome-user-docs { }; + + gnome-user-share = callPackage ./core/gnome-user-share { }; + + grilo = callPackage ./core/grilo { }; + + grilo-plugins = callPackage ./core/grilo-plugins { }; + + gsettings_desktop_schemas = callPackage ./core/gsettings-desktop-schemas { }; + + gsound = callPackage ./core/gsound { }; + + gtksourceview = callPackage ./core/gtksourceview { }; + + gucharmap = callPackage ./core/gucharmap { }; + + gvfs = pkgs.gvfs.override { gnome = gnome3; gnomeSupport = true; }; + + eog = callPackage ./core/eog { }; + + libcroco = callPackage ./core/libcroco {}; + + libgee = callPackage ./core/libgee { }; + libgee_1 = callPackage ./core/libgee/libgee-1.nix { }; + + libgdata = callPackage ./core/libgdata { }; + + libgxps = callPackage ./core/libgxps { }; + + libpeas = callPackage ./core/libpeas {}; + + libgweather = callPackage ./core/libgweather { }; + + libzapojit = callPackage ./core/libzapojit { }; + + mutter = callPackage ./core/mutter { }; + + nautilus = callPackage ./core/nautilus { }; + + networkmanager_openvpn = pkgs.networkmanager_openvpn.override { + inherit gnome3; + }; + + networkmanager_pptp = pkgs.networkmanager_pptp.override { + inherit gnome3; + }; + + networkmanager_vpnc = pkgs.networkmanager_vpnc.override { + inherit gnome3; + }; + + networkmanager_openconnect = pkgs.networkmanager_openconnect.override { + inherit gnome3; + }; + + networkmanager_l2tp = pkgs.networkmanager_l2tp.override { + inherit gnome3; + }; + + networkmanagerapplet = pkgs.networkmanagerapplet.override { + inherit gnome3 gsettings_desktop_schemas glib_networking; + }; + + rest = callPackage ./core/rest { }; + + sushi = callPackage ./core/sushi { }; + + totem = callPackage ./core/totem { }; + + totem-pl-parser = callPackage ./core/totem-pl-parser { }; + + tracker = callPackage ./core/tracker { giflib = pkgs.giflib_5_0; }; + + vte = callPackage ./core/vte { }; + + vte_290 = callPackage ./core/vte/2.90.nix { }; + + vte-select-text = vte.override { selectTextPatch = true; }; + + vino = callPackage ./core/vino { }; + + yelp = callPackage ./core/yelp { }; + + yelp_xsl = callPackage ./core/yelp-xsl { }; + + yelp_tools = callPackage ./core/yelp-tools { }; + + zenity = callPackage ./core/zenity { }; + + +#### Apps (http://ftp.acc.umu.se/pub/GNOME/apps/) + + accerciser = callPackage ./apps/accerciser { }; + + bijiben = callPackage ./apps/bijiben { + webkitgtk = webkitgtk24x; + }; + + cheese = callPackage ./apps/cheese { }; + + evolution = callPackage ./apps/evolution { + webkitgtk = webkitgtk24x; + }; + + file-roller = callPackage ./apps/file-roller { }; + + gedit = callPackage ./apps/gedit { }; + + glade = callPackage ./apps/glade { }; + + gnome-boxes = callPackage ./apps/gnome-boxes { + gtkvnc = pkgs.gtkvnc.override { enableGTK3 = true; }; + spice_gtk = pkgs.spice_gtk.override { enableGTK3 = true; }; + }; + + gnome-calendar = callPackage ./apps/gnome-calendar { }; + + gnome-characters = callPackage ./apps/gnome-characters { }; + + gnome-clocks = callPackage ./apps/gnome-clocks { }; + + gnome-documents = callPackage ./apps/gnome-documents { }; + + gnome-getting-started-docs = callPackage ./apps/gnome-getting-started-docs { }; + + gnome-logs = callPackage ./apps/gnome-logs { }; + + gnome-maps = callPackage ./apps/gnome-maps { }; + + gnome-music = callPackage ./apps/gnome-music { }; + + gnome-nettool = callPackage ./apps/gnome-nettool { }; + + gnome-photos = callPackage ./apps/gnome-photos { + gegl = gegl_0_3; + }; + + gnome-weather = callPackage ./apps/gnome-weather { }; + + nautilus-sendto = callPackage ./apps/nautilus-sendto { }; + + polari = callPackage ./apps/polari { }; + + # scrollkeeper replacement + rarian = callPackage ./desktop/rarian { }; + + seahorse = callPackage ./apps/seahorse { }; + + vinagre = callPackage ./apps/vinagre { }; + +#### Dev http://ftp.gnome.org/pub/GNOME/devtools/ + + anjuta = callPackage ./devtools/anjuta { }; + + devhelp = callPackage ./devtools/devhelp { }; + + gdl = callPackage ./devtools/gdl { }; + + gnome-devel-docs = callPackage ./devtools/gnome-devel-docs { }; + +#### Games + + aisleriot = callPackage ./games/aisleriot { }; + + five-or-more = callPackage ./games/five-or-more { }; + + four-in-a-row = callPackage ./games/four-in-a-row { }; + + gnome-chess = callPackage ./games/gnome-chess { }; + + gnome-klotski = callPackage ./games/gnome-klotski { }; + + gnome-mahjongg = callPackage ./games/gnome-mahjongg { }; + + gnome-mines = callPackage ./games/gnome-mines { }; + + gnome-nibbles = callPackage ./games/gnome-nibbles { }; + + gnome-robots = callPackage ./games/gnome-robots { }; + + gnome-sudoku = callPackage ./games/gnome-sudoku { }; + + gnome-taquin = callPackage ./games/gnome-taquin { }; + + gnome-tetravex = callPackage ./games/gnome-tetravex { }; + + hitori = callPackage ./games/hitori { }; + + iagno = callPackage ./games/iagno { }; + + lightsoff = callPackage ./games/lightsoff { }; + + swell-foop = callPackage ./games/swell-foop { }; + + tali = callPackage ./games/tali { }; + + quadrapassel = callPackage ./games/quadrapassel { }; + +#### Misc -- other packages on http://ftp.gnome.org/pub/GNOME/sources/ + + california = callPackage ./misc/california { }; + + geary = callPackage ./misc/geary { + webkitgtk = webkitgtk24x; + }; + + gfbgraph = callPackage ./misc/gfbgraph { }; + + gitg = callPackage ./misc/gitg { + webkitgtk = webkitgtk24x; + }; + + gspell = callPackage ./misc/gspell { }; + + libgames-support = callPackage ./misc/libgames-support { }; + + libgda = callPackage ./misc/libgda { }; + + libgit2-glib = callPackage ./misc/libgit2-glib { }; + + libmediaart = callPackage ./misc/libmediaart { }; + + gexiv2 = callPackage ./misc/gexiv2 { }; + + gnome-tweak-tool = callPackage ./misc/gnome-tweak-tool { }; + + gpaste = callPackage ./misc/gpaste { }; + + gtkhtml = callPackage ./misc/gtkhtml { }; + + pomodoro = callPackage ./misc/pomodoro { }; + + gnome-video-effects = callPackage ./misc/gnome-video-effects { }; + + }; + in self; # pkgsFun + +in pkgsFun {} diff --git a/pkgs/desktops/gnome-3/3.20/desktop/rarian/default.nix b/pkgs/desktops/gnome-3/3.20/desktop/rarian/default.nix new file mode 100644 index 000000000000..a1b38b21869a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/desktop/rarian/default.nix @@ -0,0 +1,16 @@ +{stdenv, fetchurl, pkgconfig, perl, perlXMLParser, libxml2, libxslt, docbook_xml_dtd_42}: + +stdenv.mkDerivation rec { + name = "rarian-0.8.1"; + src = fetchurl { + url = "mirror://gnome/sources/rarian/0.8/${name}.tar.bz2"; + sha256 = "aafe886d46e467eb3414e91fa9e42955bd4b618c3e19c42c773026b205a84577"; + }; + + buildInputs = [pkgconfig perl perlXMLParser libxml2 libxslt]; + configureFlags = "--with-xml-catalog=${docbook_xml_dtd_42}/xml/dtd/docbook/docbook.cat"; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/anjuta/default.nix b/pkgs/desktops/gnome-3/3.20/devtools/anjuta/default.nix new file mode 100644 index 000000000000..af74df4ad13b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/anjuta/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, flex, bison, libxml2, intltool, + itstool, python, makeWrapper }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + enableParallelBuilding = true; + + buildInputs = [ pkgconfig flex bison gtk3 libxml2 gnome3.gjs gnome3.gdl + gnome3.libgda gnome3.gtksourceview intltool itstool python makeWrapper ]; + + preFixup = '' + wrapProgram $out/bin/anjuta \ + --prefix XDG_DATA_DIRS : \ + "$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + description = "Software development studio"; + homepage = http://anjuta.org/; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/anjuta/src.nix b/pkgs/desktops/gnome-3/3.20/devtools/anjuta/src.nix new file mode 100644 index 000000000000..75b5eaa93425 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/anjuta/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "anjuta-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/anjuta/3.20/anjuta-3.20.0.tar.xz; + sha256 = "a676c587a28f784ec2096775460cd29fafc3f0216c53e0821641bcd9126b6935"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/devhelp/default.nix b/pkgs/desktops/gnome-3/3.20/devtools/devhelp/default.nix new file mode 100644 index 000000000000..1cfae754cfec --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/devhelp/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, webkitgtk, intltool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook webkitgtk intltool gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://live.gnome.org/devhelp; + description = "API documentation browser for GNOME"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/devhelp/src.nix b/pkgs/desktops/gnome-3/3.20/devtools/devhelp/src.nix new file mode 100644 index 000000000000..cde66aa5d980 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/devhelp/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "devhelp-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/devhelp/3.20/devhelp-3.20.0.tar.xz; + sha256 = "a23375c2e2b2ef6240994bc2327fcacfd42403af6d872d0cba2e16dd45ca1f1d"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/gdl/default.nix b/pkgs/desktops/gnome-3/3.20/devtools/gdl/default.nix new file mode 100644 index 000000000000..156d91b3eae7 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/gdl/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, pkgconfig, libxml2, gtk3, gnome3, intltool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig libxml2 gtk3 intltool ]; + + meta = with stdenv.lib; { + description = "Gnome docking library"; + homepage = https://developer.gnome.org/gdl/; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/gdl/src.nix b/pkgs/desktops/gnome-3/3.20/devtools/gdl/src.nix new file mode 100644 index 000000000000..f9c8802218cd --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/gdl/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gdl-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gdl/3.20/gdl-3.20.0.tar.xz; + sha256 = "53d3a3bb9b9be25b3a40c644fdbbb57a5a63ee1f5f839c2266d1cd9779360e8b"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/default.nix b/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/default.nix new file mode 100644 index 000000000000..50960f41a312 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/default.nix @@ -0,0 +1,15 @@ +{ stdenv, fetchurl, gnome3, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ intltool itstool libxml2 ]; + + meta = with stdenv.lib; { + homepage = https://github.com/GNOME/gnome-devel-docs; + description = "Developer documentation for GNOME"; + maintainers = gnome3.maintainers; + license = licenses.fdl12; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/src.nix b/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/src.nix new file mode 100644 index 000000000000..7822034a86a9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/devtools/gnome-devel-docs/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-devel-docs-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-devel-docs/3.20/gnome-devel-docs-3.20.2.tar.xz; + sha256 = "b7aa49980920c6cbedfac65a2faa7d5da70a408c731be47bf924a7c85d373db1"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/aisleriot/default.nix b/pkgs/desktops/gnome-3/3.20/games/aisleriot/default.nix new file mode 100644 index 000000000000..e149a0b31264 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/aisleriot/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, intltool, itstool, gtk3 +, wrapGAppsHook, gconf, librsvg, libxml2, desktop_file_utils +, guile, libcanberra_gtk3 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + configureFlags = [ "--with-card-theme-formats=svg" ]; + + buildInputs = [ pkgconfig intltool itstool gtk3 wrapGAppsHook gconf + librsvg libxml2 desktop_file_utils guile libcanberra_gtk3 ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Aisleriot; + description = "A collection of patience games written in guile scheme"; + maintainers = gnome3.maintainers; + license = licenses.gpl3Plus; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/aisleriot/src.nix b/pkgs/desktops/gnome-3/3.20/games/aisleriot/src.nix new file mode 100644 index 000000000000..7895db29658a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/aisleriot/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "aisleriot-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/aisleriot/3.20/aisleriot-3.20.2.tar.xz; + sha256 = "62036bdc69f8ae63a4405b4dd530a3def2958d5075b4e0a7caeb91fad789176e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/five-or-more/default.nix b/pkgs/desktops/gnome-3/3.20/games/five-or-more/default.nix new file mode 100644 index 000000000000..50a7d2906a77 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/five-or-more/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Five_or_more; + description = "Remove colored balls from the board by forming lines"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/five-or-more/src.nix b/pkgs/desktops/gnome-3/3.20/games/five-or-more/src.nix new file mode 100644 index 000000000000..207917c9772c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/five-or-more/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "five-or-more-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/five-or-more/3.20/five-or-more-3.20.0.tar.xz; + sha256 = "4290a0e4a1817d76db2f042854efbc580d6ac06f2c42176afac2b412dcd456e0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/default.nix b/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/default.nix new file mode 100644 index 000000000000..68228750cd87 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, itstool, libcanberra_gtk3, librsvg, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool libcanberra_gtk3 librsvg + libxml2 gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Four-in-a-row; + description = "Make lines of the same color to win"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/src.nix b/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/src.nix new file mode 100644 index 000000000000..f87fdc577363 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/four-in-a-row/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "four-in-a-row-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/four-in-a-row/3.20/four-in-a-row-3.20.1.tar.xz; + sha256 = "3f3689fbbc25a91deb4af277cdc20e8db0e5aecfd17dc1376ad4b8d993ab7cf7"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-chess/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-chess/default.nix new file mode 100644 index 000000000000..a96dae3c12cb --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-chess/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, intltool, itstool, librsvg, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libxml2 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Chess; + description = "Play the classic two-player boardgame of chess"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-chess/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-chess/src.nix new file mode 100644 index 000000000000..2c683bb5db4b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-chess/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-chess-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-chess/3.20/gnome-chess-3.20.1.tar.xz; + sha256 = "4715349339491bd7a1072d5d362b5df76efa2067f4363c4b37d9579201d8c66d"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/default.nix new file mode 100644 index 000000000000..dc2289daff82 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, libxml2, intltool, itstool, libgee, libgames-support }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libxml2 libgee libgames-support + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Klotski; + description = "Slide blocks to solve the puzzle"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/src.nix new file mode 100644 index 000000000000..aa84ac9b763d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-klotski/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-klotski-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-klotski/3.20/gnome-klotski-3.20.2.tar.xz; + sha256 = "5c517534da14bb9b8c90dd76b8c7169557a6876318780677a0e451f982028493"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/default.nix new file mode 100644 index 000000000000..43db32e88577 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Mahjongg; + description = "Disassemble a pile of tiles by removing matching pairs"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/src.nix new file mode 100644 index 000000000000..10c022db04df --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mahjongg/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-mahjongg-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-mahjongg/3.20/gnome-mahjongg-3.20.0.tar.xz; + sha256 = "d09bb1923636dfd05b6f3a5af8d6fe7b6daa1434e2c06188dd27c96a61cea00a"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-mines/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/default.nix new file mode 100644 index 000000000000..4d703bb37a79 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook librsvg intltool itstool libxml2 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Mines; + description = "Clear hidden mines from a minefield"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} 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 new file mode 100644 index 000000000000..5dbae6476613 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-mines/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-mines-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-mines/3.20/gnome-mines-3.20.0.tar.xz; + sha256 = "7775c8d19cda9663a3e6b69d921c9de869278aeff93e249099af2d3c19b970a6"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/default.nix new file mode 100644 index 000000000000..cf2282188782 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, libcanberra_gtk3, clutter_gtk, intltool, itstool +, libxml2, libgee, libgames-support }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 + librsvg libcanberra_gtk3 clutter_gtk gnome3.defaultIconTheme + libgee libgames-support + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Nibbles; + description = "Guide a worm around a maze"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/src.nix new file mode 100644 index 000000000000..1070aa591947 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-nibbles/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-nibbles-3.20.2.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-nibbles/3.20/gnome-nibbles-3.20.2.1.tar.xz; + sha256 = "9253431072e3dff89cc13582c815cc9ed9d7c2d7a10321418a2e7416c1ef7e67"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-robots/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-robots/default.nix new file mode 100644 index 000000000000..9eafb166eee8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-robots/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, libcanberra_gtk3, intltool, itstool, libxml2, libgames-support +, libgee}: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool librsvg libcanberra_gtk3 + libxml2 gnome3.defaultIconTheme libgames-support libgee + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Robots; + description = "Avoid the robots and make them crash into each other"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-robots/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-robots/src.nix new file mode 100644 index 000000000000..397fc74bb835 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-robots/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-robots-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-robots/3.20/gnome-robots-3.20.2.tar.xz; + sha256 = "d98f2ba5a7086e2dc3f3754819b557c12a98a0fb2492efd9912d9dd34ad9cfce"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/default.nix new file mode 100644 index 000000000000..c8ba82c7246d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/default.nix @@ -0,0 +1,17 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gtk3, gnome3, wrapGAppsHook +, json_glib, qqwing, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig intltool wrapGAppsHook gtk3 gnome3.libgee + json_glib qqwing itstool libxml2 ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Sudoku; + description = "Test your logic skills in this number grid puzzle"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} 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 new file mode 100644 index 000000000000..2a83f89bb9b8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-sudoku/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-sudoku-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-sudoku/3.20/gnome-sudoku-3.20.2.tar.xz; + sha256 = "9c7e737686e88c20e83ca366bfc0a20194b7fe4af7c74ab752d98f0af1df3553"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/default.nix new file mode 100644 index 000000000000..78eaa23e63bd --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, librsvg, libcanberra_gtk3, intltool, itstool, libxml2 }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook librsvg libcanberra_gtk3 + intltool itstool libxml2 gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Taquin; + description = "Move tiles so that they reach their places"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/src.nix new file mode 100644 index 000000000000..3059e8400e03 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-taquin/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-taquin-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-taquin/3.20/gnome-taquin-3.20.2.tar.xz; + sha256 = "95a9c5ebc7fc87b58cd08b978acc09071da9b274934e0ec2abe9b5439554b3a2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/default.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/default.nix new file mode 100644 index 000000000000..d6feab93dba1 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/default.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, libxml2, intltool, itstool }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Tetravex; + description = "Complete the puzzle by matching numbered tiles"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/src.nix b/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/src.nix new file mode 100644 index 000000000000..5920c0f6bbfe --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/gnome-tetravex/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-tetravex-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-tetravex/3.20/gnome-tetravex-3.20.0.tar.xz; + sha256 = "a1bdfa4233484566a01373b19f8c0fb126b7c5728227916a48d2ee012c3cbd62"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/hitori/default.nix b/pkgs/desktops/gnome-3/3.20/games/hitori/default.nix new file mode 100644 index 000000000000..bd6be7d43c58 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/hitori/default.nix @@ -0,0 +1,24 @@ +{ stdenv, fetchurl, pkgconfig, gnome3, gtk3, wrapGAppsHook +, libxml2, intltool, itstool }: + +stdenv.mkDerivation rec { + name = "hitori-${gnome3.version}.1"; + + src = fetchurl { + url = "mirror://gnome/sources/hitori/${gnome3.version}/${name}.tar.xz"; + sha256 = "07pm3xl05jgb8x151k1j2ap57dmfvk2nkz9dmqnn5iywfigsysd1"; + }; + + buildInputs = [ + pkgconfig gtk3 wrapGAppsHook intltool itstool libxml2 + gnome3.defaultIconTheme + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Hitori; + description = "GTK+ application to generate and let you play games of Hitori"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/hitori/src.nix b/pkgs/desktops/gnome-3/3.20/games/hitori/src.nix new file mode 100644 index 000000000000..7319968d551c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/hitori/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "hitori-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/hitori/3.20/hitori-3.20.0.tar.xz; + sha256 = "877cae48144b7f6908fde55104f589788b42acaa5956d62fd32b4026fde3769d"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/iagno/default.nix b/pkgs/desktops/gnome-3/3.20/games/iagno/default.nix new file mode 100644 index 000000000000..1b6f08d1fd65 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/iagno/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook +, intltool, itstool, libcanberra_gtk3, libxml2, dconf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg + dconf libxml2 libcanberra_gtk3 wrapGAppsHook itstool intltool ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Iagno; + description = "Computer version of the game Reversi, more popularly called Othello"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/iagno/src.nix b/pkgs/desktops/gnome-3/3.20/games/iagno/src.nix new file mode 100644 index 000000000000..ceeaf353f6ee --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/iagno/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "iagno-3.20.2"; + + src = fetchurl { + url = mirror://gnome/sources/iagno/3.20/iagno-3.20.2.tar.xz; + sha256 = "73f0f201ebf12b88e05cdefbaa72ccd5309bb592a9690d076285dbb800e965d2"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/lightsoff/default.nix b/pkgs/desktops/gnome-3/3.20/games/lightsoff/default.nix new file mode 100644 index 000000000000..8ec54b489721 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/lightsoff/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, wrapGAppsHook +, intltool, itstool, clutter, clutter_gtk, libxml2, dconf }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg dconf + libxml2 clutter clutter_gtk wrapGAppsHook itstool intltool ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Lightsoff; + description = "Puzzle game, where the objective is to turn off all of the tiles on the board"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/lightsoff/src.nix b/pkgs/desktops/gnome-3/3.20/games/lightsoff/src.nix new file mode 100644 index 000000000000..6c6fc3cc8b33 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/lightsoff/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "lightsoff-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/lightsoff/3.20/lightsoff-3.20.0.tar.xz; + sha256 = "d3603891afe7ca3b3b2c509cad3e32ef6cdac3a7e80fff3b48ca72ea739852bf"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/quadrapassel/default.nix b/pkgs/desktops/gnome-3/3.20/games/quadrapassel/default.nix new file mode 100644 index 000000000000..f319608764d6 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/quadrapassel/default.nix @@ -0,0 +1,21 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf +, librsvg, libcanberra_gtk3 +, intltool, itstool, libxml2, clutter, clutter_gtk, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg + libcanberra_gtk3 itstool intltool clutter + libxml2 clutter_gtk wrapGAppsHook ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Quadrapassel; + description = "Classic falling-block game, Tetris"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/quadrapassel/src.nix b/pkgs/desktops/gnome-3/3.20/games/quadrapassel/src.nix new file mode 100644 index 000000000000..adb9253a7caa --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/quadrapassel/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "quadrapassel-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/quadrapassel/3.20/quadrapassel-3.20.0.tar.xz; + sha256 = "e6fdd182b15aaef5af06604eb48ad883ac19977f2fcf6ebb43b41d9ed13f1eb0"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/swell-foop/default.nix b/pkgs/desktops/gnome-3/3.20/games/swell-foop/default.nix new file mode 100644 index 000000000000..3d3e424d0da8 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/swell-foop/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf, librsvg, dconf +, clutter, clutter_gtk, intltool, itstool, libxml2, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg + dconf wrapGAppsHook itstool intltool clutter clutter_gtk libxml2 ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = "https://wiki.gnome.org/Apps/Swell%20Foop"; + description = "Puzzle game, previously known as Same GNOME"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/swell-foop/src.nix b/pkgs/desktops/gnome-3/3.20/games/swell-foop/src.nix new file mode 100644 index 000000000000..e26f8475f595 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/swell-foop/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "swell-foop-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/swell-foop/3.20/swell-foop-3.20.0.tar.xz; + sha256 = "40532a734dcae6d42a1e4692fd94e395442ff07c134acacf5fce3396c1e352a4"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/tali/default.nix b/pkgs/desktops/gnome-3/3.20/games/tali/default.nix new file mode 100644 index 000000000000..c2b1f5857124 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/tali/default.nix @@ -0,0 +1,19 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, gnome3, gdk_pixbuf +, librsvg, intltool, itstool, libxml2, wrapGAppsHook }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 gnome3.defaultIconTheme gdk_pixbuf librsvg + libxml2 itstool intltool wrapGAppsHook ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Tali; + description = "Sort of poker with dice and less money"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/games/tali/src.nix b/pkgs/desktops/gnome-3/3.20/games/tali/src.nix new file mode 100644 index 000000000000..e589b7d80574 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/games/tali/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "tali-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/tali/3.20/tali-3.20.0.tar.xz; + sha256 = "6437ab66672c331098e6df44ad708397b6363182d5c08c9ededf711cbf5cb818"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/installer.nix b/pkgs/desktops/gnome-3/3.20/installer.nix new file mode 100644 index 000000000000..e4d64ac9e885 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/installer.nix @@ -0,0 +1,15 @@ +{ isoBaseName ? "nixos-graphical-gnome", system ? builtins.currentSystem +, extraModules ? [] }: + +let + + module = ../../../../nixos/modules/installer/cd-dvd/installation-cd-graphical-gnome.nix; + + config = (import ../../../../nixos/lib/eval-config.nix { + inherit system; + modules = [ module { isoImage.isoBaseName = isoBaseName; } ] ++ extraModules; + }).config; + +in + config.system.build.isoImage + diff --git a/pkgs/desktops/gnome-3/3.20/misc/california/0002-Build-with-evolution-data-server-3.13.90.patch b/pkgs/desktops/gnome-3/3.20/misc/california/0002-Build-with-evolution-data-server-3.13.90.patch new file mode 100644 index 000000000000..c229cc96094f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/california/0002-Build-with-evolution-data-server-3.13.90.patch @@ -0,0 +1,39 @@ +diff --git a/configure.ac b/configure.ac +index 8a94642..1ca6426 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -27,7 +27,7 @@ AC_SUBST(LDFLAGS) + GLIB_REQUIRED=2.38.0 + GTK_REQUIRED=3.12.2 + GEE_REQUIRED=0.10.5 +-ECAL_REQUIRED=3.8.5 ++ECAL_REQUIRED=3.13.90 + LIBSOUP_REQUIRED=2.44 + GDATA_REQUIRED=0.14.0 + GOA_REQUIRED=3.8.3 +diff --git a/src/backing/eds/backing-eds-calendar-source.vala b/src/backing/eds/backing-eds-calendar-source.vala +index ee6a572..5009b5d 100644 +--- a/src/backing/eds/backing-eds-calendar-source.vala ++++ b/src/backing/eds/backing-eds-calendar-source.vala +@@ -256,7 +256,7 @@ internal class EdsCalendarSource : CalendarSource { + + // Invoked by EdsStore prior to making it available outside of unit + internal async void open_async(Cancellable? cancellable) throws Error { +- client = (E.CalClient) yield E.CalClient.connect(eds_source, E.CalClientSourceType.EVENTS, ++ client = (E.CalClient) yield E.CalClient.connect(eds_source, E.CalClientSourceType.EVENTS, 1, + cancellable); + + client.bind_property("readonly", this, PROP_READONLY, BindingFlags.SYNC_CREATE); +diff --git a/vapi/libecal-1.2.vapi b/vapi/libecal-1.2.vapi +index 6ead3ec..46fd711 100644 +--- a/vapi/libecal-1.2.vapi ++++ b/vapi/libecal-1.2.vapi +@@ -23,7 +23,7 @@ namespace E { + public bool check_save_schedules (); + public static bool check_timezones (iCal.icalcomponent comp, GLib.List comps, GLib.Callback tzlookup, void* ecalclient, GLib.Cancellable cancellable) throws GLib.Error; + [CCode (finish_name = "e_cal_client_connect_finish")] +- public static async unowned E.Client connect (E.Source source, E.CalClientSourceType source_type, GLib.Cancellable cancellable) throws GLib.Error; ++ public static async unowned E.Client connect (E.Source source, E.CalClientSourceType source_type, uint32 wait_for_connected_seconds, GLib.Cancellable cancellable) throws GLib.Error; + public static unowned E.Client connect_sync (E.Source source, E.CalClientSourceType source_type, GLib.Cancellable cancellable) throws GLib.Error; + [CCode (finish_name = "e_cal_client_create_object_finish")] + public async void create_object (iCal.icalcomponent icalcomp, GLib.Cancellable? cancellable, out string out_uid) throws GLib.Error; diff --git a/pkgs/desktops/gnome-3/3.20/misc/california/default.nix b/pkgs/desktops/gnome-3/3.20/misc/california/default.nix new file mode 100644 index 000000000000..4bdeeb23a91e --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/california/default.nix @@ -0,0 +1,39 @@ +{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala, makeWrapper +, gnome3, glib, libsoup, libgdata, sqlite, itstool, xdg_utils }: + +let + majorVersion = "0.4"; +in +stdenv.mkDerivation rec { + name = "california-${majorVersion}.0"; + + src = fetchurl { + url = "mirror://gnome/sources/california/${majorVersion}/${name}.tar.xz"; + sha256 = "1dky2kllv469k8966ilnf4xrr7z35pq8mdvs7kwziy59cdikapxj"; + }; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ makeWrapper intltool pkgconfig vala glib gtk3 gnome3.libgee + libsoup libgdata gnome3.gnome_online_accounts gnome3.evolution_data_server + sqlite itstool xdg_utils gnome3.gsettings_desktop_schemas ]; + + preFixup = '' + wrapProgram "$out/bin/california" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.defaultIconTheme}/share:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH:${gnome3.gsettings_desktop_schemas}/share" + ''; + + enableParallelBuilding = true; + + # Apply fedoras patch to build with evolution-data-server >3.13 + patches = [ ./0002-Build-with-evolution-data-server-3.13.90.patch ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/California; + description = "Calendar application for GNOME 3"; + maintainers = with maintainers; [ pSub ]; + license = licenses.lgpl21; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/geary/default.nix b/pkgs/desktops/gnome-3/3.20/misc/geary/default.nix new file mode 100644 index 000000000000..40c8bbf5ef92 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/geary/default.nix @@ -0,0 +1,49 @@ +{ stdenv, fetchurl, intltool, pkgconfig, gtk3, vala +, makeWrapper, gdk_pixbuf, cmake, desktop_file_utils +, libnotify, libcanberra, libsecret, gmime +, libpthreadstubs, sqlite +, gnome3, librsvg, gnome_doc_utils, webkitgtk }: + +let + majorVersion = "0.10"; +in +stdenv.mkDerivation rec { + name = "geary-${majorVersion}.0"; + + src = fetchurl { + url = "mirror://gnome/sources/geary/${majorVersion}/${name}.tar.xz"; + sha256 = "19dwpla35cch5rd0bw1v9s0cmygzv6zjs24rxvf0l14b3dd7l6a6"; + }; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + buildInputs = [ intltool pkgconfig gtk3 makeWrapper cmake desktop_file_utils gnome_doc_utils + vala webkitgtk libnotify libcanberra gnome3.libgee libsecret gmime sqlite + libpthreadstubs gnome3.gsettings_desktop_schemas gnome3.gcr + gdk_pixbuf librsvg gnome3.defaultIconTheme ]; + + preConfigure = '' + substituteInPlace src/CMakeLists.txt --replace '`pkg-config --variable=girdir gobject-introspection-1.0`' '${webkitgtk}/share/gir-1.0' + ''; + + postInstall = '' + mkdir -p $out/share/gsettings-schemas/${name}/ + mv $out/share/glib-2.0 $out/share/gsettings-schemas/${name} + ''; + + preFixup = '' + wrapProgram "$out/bin/geary" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Apps/Geary; + description = "Mail client for GNOME 3"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch b/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch new file mode 100644 index 000000000000..e65c0dea7472 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/geary/disable_valadoc.patch @@ -0,0 +1,24 @@ +--- src/CMakeLists.txt.orig 2014-05-23 14:41:20.809160364 +0200 ++++ src/CMakeLists.txt 2014-05-23 14:41:29.240261581 +0200 +@@ -696,21 +696,6 @@ + ${CMAKE_COMMAND} -E copy geary-mailer ${CMAKE_BINARY_DIR}/ + ) + +-# Valadoc +-################################################# +-foreach(pkg ${ENGINE_PACKAGES}) +- list(APPEND valadoc_pkg_opts "--pkg=${pkg}") +-endforeach(pkg ${ENGINE_PACKAGES}) +- +-include(FindValadoc) +-add_custom_target( +- valadoc +- WORKING_DIRECTORY +- ${CMAKE_SOURCE_DIR}/src +- COMMAND +- ${VALADOC_EXECUTABLE} --force --no-protected -b ${CMAKE_CURRENT_SOURCE_DIR} -o ${CMAKE_SOURCE_DIR}/valadoc --package-name=geary --package-version=${VERSION} ${ENGINE_SRC} ${valadoc_pkg_opts} --vapidir=${CMAKE_SOURCE_DIR}/bindings/vapi +-) +- + ## Make clean: remove copied files + ################################################## + set_property( diff --git a/pkgs/desktops/gnome-3/3.20/misc/gexiv2/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gexiv2/default.nix new file mode 100644 index 000000000000..7cea9cd8d150 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gexiv2/default.nix @@ -0,0 +1,28 @@ +{ stdenv, fetchurl, pkgconfig, exiv2, glib, libtool, m4, gnome3 }: + +let + majorVersion = "0.10"; +in +stdenv.mkDerivation rec { + name = "gexiv2-${version}"; + version = "${majorVersion}.3"; + + src = fetchurl { + url = "mirror://gnome/sources/gexiv2/${majorVersion}/${name}.tar.xz"; + sha256 = "390cfb966197fa9f3f32200bc578d7c7f3560358c235e6419657206a362d3988"; + }; + + preConfigure = '' + patchShebangs . + ''; + + buildInputs = [ pkgconfig glib libtool m4 ]; + propagatedBuildInputs = [ exiv2 ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/gexiv2; + description = "GObject wrapper around the Exiv2 photo metadata library"; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gfbgraph/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gfbgraph/default.nix new file mode 100644 index 000000000000..e85b087fa41f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gfbgraph/default.nix @@ -0,0 +1,23 @@ +{ stdenv, intltool, fetchurl, pkgconfig, glib +, gnome3, libsoup, json_glib }: + +stdenv.mkDerivation rec { + name = "gfbgraph-0.2.2"; + + src = fetchurl { + url = "mirror://gnome/sources/gfbgraph/0.2/${name}.tar.xz"; + sha256 = "66c7b1c951863565c179d0b4b5207f27b3b36f80afed9f6a9acfc5fc3ae775d4"; + }; + + buildInputs = [ pkgconfig glib gnome3.gnome_online_accounts ]; + propagatedBuildInputs = [ libsoup json_glib gnome3.rest ]; + + enableParallelBuilding = true; + + meta = with stdenv.lib; { + description = "GLib/GObject wrapper for the Facebook Graph API"; + maintainers = gnome3.maintainers; + license = licenses.lgpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gitg/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gitg/default.nix new file mode 100644 index 000000000000..d7ac9a24c4c9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gitg/default.nix @@ -0,0 +1,43 @@ +{ stdenv, fetchurl, fetchgit, vala, intltool, libgit2, pkgconfig, gtk3, glib +, json_glib, webkitgtk, makeWrapper, libpeas, bash, gobjectIntrospection +, gnome3, gtkspell3, shared_mime_info, libgee, libgit2-glib, librsvg, libsecret }: + +# TODO: icons and theme still does not work +# use packaged gnome3.adwaita-icon-theme + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + preCheck = '' + substituteInPlace tests/libgitg/test-commit.c --replace "/bin/bash" "${bash}/bin/bash" + ''; + doCheck = true; + + makeFlags = "INTROSPECTION_GIRDIR=$(out)/share/gir-1.0/ INTROSPECTION_TYPELIBDIR=$(out)/lib/girepository-1.0"; + + propagatedUserEnvPkgs = [ shared_mime_info + gnome3.gnome_themes_standard ]; + + buildInputs = [ vala intltool libgit2 pkgconfig gtk3 glib json_glib webkitgtk libgee libpeas + libgit2-glib gtkspell3 gnome3.gsettings_desktop_schemas gnome3.gtksourceview + librsvg libsecret + gobjectIntrospection makeWrapper gnome3.adwaita-icon-theme ]; + + # https://bugzilla.gnome.org/show_bug.cgi?id=758240 + preBuild = ''make -j$NIX_BUILD_CORES Gitg-1.0.gir''; + + preFixup = '' + wrapProgram "$out/bin/gitg" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ + --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" \ + --prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:${gtk3}/share:${gnome3.gnome_themes_standard}/share:$out/share:$GSETTINGS_SCHEMAS_PATH" + ''; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Apps/Gitg; + description = "GNOME GUI client to view git repositories"; + maintainers = with maintainers; [ domenkozar ]; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix new file mode 100644 index 000000000000..ad05a219b253 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gitg/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gitg-3.20.0"; + + src = fetchurl { + url = mirror://gnome/sources/gitg/3.20/gitg-3.20.0.tar.xz; + sha256 = "1f09f61208349d003f228e51dc9709bd3426960f5585c0e38197bd02b51f3346"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0001-Search-for-themes-and-icons-in-system-data-dirs.patch b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0001-Search-for-themes-and-icons-in-system-data-dirs.patch new file mode 100644 index 000000000000..7a16d2c24e56 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0001-Search-for-themes-and-icons-in-system-data-dirs.patch @@ -0,0 +1,120 @@ +From bdbbe312e6520ce70e91319162e85367a69ce044 Mon Sep 17 00:00:00 2001 +From: Jascha Geerds +Date: Sat, 1 Aug 2015 21:01:11 +0200 +Subject: [PATCH 1/3] Search for themes and icons in system data dirs + +--- + gtweak/tweaks/tweak_group_interface.py | 17 ++++------------- + gtweak/tweaks/tweak_group_keymouse.py | 7 ++----- + gtweak/utils.py | 17 +++++++++++++++++ + 3 files changed, 23 insertions(+), 18 deletions(-) + +Index: gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_interface.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/tweaks/tweak_group_interface.py ++++ gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_interface.py +@@ -26,7 +26,7 @@ from gi.repository import Gtk + from gi.repository import GLib + + import gtweak +-from gtweak.utils import walk_directories, make_combo_list_with_default, extract_zip_file ++from gtweak.utils import walk_directories, make_combo_list_with_default, extract_zip_file, get_resource_dirs + from gtweak.tweakmodel import Tweak, TWEAK_GROUP_APPEARANCE + from gtweak.gshellwrapper import GnomeShellFactory + from gtweak.gsettings import GSettingsSetting +@@ -50,10 +50,7 @@ class GtkThemeSwitcher(GSettingsComboTwe + if gtk_ver % 2: # Want even number + gtk_ver += 1 + +- dirs = ( os.path.join(gtweak.DATA_DIR, "themes"), +- os.path.join(GLib.get_user_data_dir(), "themes"), +- os.path.join(os.path.expanduser("~"), ".themes")) +- valid = walk_directories(dirs, lambda d: ++ valid = walk_directories(get_resource_dirs("themes"), lambda d: + os.path.exists(os.path.join(d, "gtk-2.0")) and \ + (os.path.exists(os.path.join(d, "gtk-3.0")) or \ + os.path.exists(os.path.join(d, "gtk-3.{}".format(gtk_ver))))) +@@ -69,10 +66,7 @@ class IconThemeSwitcher(GSettingsComboTw + **options) + + def _get_valid_icon_themes(self): +- dirs = ( os.path.join(gtweak.DATA_DIR, "icons"), +- os.path.join(GLib.get_user_data_dir(), "icons"), +- os.path.join(os.path.expanduser("~"), ".icons")) +- valid = walk_directories(dirs, lambda d: ++ valid = walk_directories(get_resource_dirs("icons"), lambda d: + os.path.isdir(d) and \ + os.path.exists(os.path.join(d, "index.theme"))) + return valid +@@ -87,10 +81,7 @@ class CursorThemeSwitcher(GSettingsCombo + **options) + + def _get_valid_cursor_themes(self): +- dirs = ( os.path.join(gtweak.DATA_DIR, "icons"), +- os.path.join(GLib.get_user_data_dir(), "icons"), +- os.path.join(os.path.expanduser("~"), ".icons")) +- valid = walk_directories(dirs, lambda d: ++ valid = walk_directories(get_resource_dirs("icons"), lambda d: + os.path.isdir(d) and \ + os.path.exists(os.path.join(d, "cursors"))) + return valid +Index: gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_keymouse.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/tweaks/tweak_group_keymouse.py ++++ gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_keymouse.py +@@ -20,7 +20,7 @@ import os.path + from gi.repository import GLib + + import gtweak +-from gtweak.utils import XSettingsOverrides, walk_directories, make_combo_list_with_default ++from gtweak.utils import XSettingsOverrides, walk_directories, make_combo_list_with_default, get_resource_dirs + from gtweak.widgets import ListBoxTweakGroup, GSettingsComboTweak, GSettingsSwitchTweak, GetterSetterSwitchTweak, Title, GSettingsComboEnumTweak + + class PrimaryPasteTweak(GetterSetterSwitchTweak): +@@ -48,10 +48,7 @@ class KeyThemeSwitcher(GSettingsComboTwe + **options) + + def _get_valid_key_themes(self): +- dirs = ( os.path.join(gtweak.DATA_DIR, "themes"), +- os.path.join(GLib.get_user_data_dir(), "themes"), +- os.path.join(os.path.expanduser("~"), ".themes")) +- valid = walk_directories(dirs, lambda d: ++ valid = walk_directories(get_resource_dirs("themes"), lambda d: + os.path.isfile(os.path.join(d, "gtk-3.0", "gtk-keys.css")) and \ + os.path.isfile(os.path.join(d, "gtk-2.0-key", "gtkrc"))) + return valid +Index: gnome-tweak-tool-3.20.1/gtweak/utils.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/utils.py ++++ gnome-tweak-tool-3.20.1/gtweak/utils.py +@@ -21,6 +21,7 @@ import tempfile + import shutil + import subprocess + import glob ++import itertools + + import gtweak + from gtweak.gsettings import GSettingsSetting +@@ -116,6 +117,22 @@ def execute_subprocess(cmd_then_args, bl + stdout, stderr = p.communicate() + return stdout, stderr, p.returncode + ++def get_resource_dirs(resource): ++ """Returns a list of all known resource dirs for a given resource. ++ ++ :param str resource: ++ Name of the resource (e.g. "themes") ++ :return: ++ A list of resource dirs ++ """ ++ dirs = [os.path.join(dir, resource) ++ for dir in itertools.chain(GLib.get_system_data_dirs(), ++ (gtweak.DATA_DIR, ++ GLib.get_user_data_dir()))] ++ dirs += [os.path.join(os.path.expanduser("~"), ".{}".format(resource))] ++ ++ return [dir for dir in dirs if os.path.isdir(dir)] ++ + @singleton + class AutostartManager: + diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0002-Don-t-show-multiple-entries-for-a-single-theme.patch b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0002-Don-t-show-multiple-entries-for-a-single-theme.patch new file mode 100644 index 000000000000..5ddc13949cba --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0002-Don-t-show-multiple-entries-for-a-single-theme.patch @@ -0,0 +1,100 @@ +From 22b948c39b32fb45066c4f5a9f99082094fea3d1 Mon Sep 17 00:00:00 2001 +From: Jascha Geerds +Date: Sat, 1 Aug 2015 21:26:57 +0200 +Subject: [PATCH 2/3] Don't show multiple entries for a single theme + +--- + gtweak/tweaks/tweak_group_interface.py | 8 ++++---- + gtweak/tweaks/tweak_group_keymouse.py | 4 ++-- + gtweak/utils.py | 16 ++++++++++++++++ + 3 files changed, 22 insertions(+), 6 deletions(-) + +Index: gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_interface.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/tweaks/tweak_group_interface.py ++++ gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_interface.py +@@ -26,7 +26,7 @@ from gi.repository import Gtk + from gi.repository import GLib + + import gtweak +-from gtweak.utils import walk_directories, make_combo_list_with_default, extract_zip_file, get_resource_dirs ++from gtweak.utils import walk_directories, make_combo_list_with_default, extract_zip_file, get_resource_dirs, get_unique_resources + from gtweak.tweakmodel import Tweak, TWEAK_GROUP_APPEARANCE + from gtweak.gshellwrapper import GnomeShellFactory + from gtweak.gsettings import GSettingsSetting +@@ -54,7 +54,7 @@ class GtkThemeSwitcher(GSettingsComboTwe + os.path.exists(os.path.join(d, "gtk-2.0")) and \ + (os.path.exists(os.path.join(d, "gtk-3.0")) or \ + os.path.exists(os.path.join(d, "gtk-3.{}".format(gtk_ver))))) +- return valid ++ return get_unique_resources(valid) + + class IconThemeSwitcher(GSettingsComboTweak): + def __init__(self, **options): +@@ -69,7 +69,7 @@ class IconThemeSwitcher(GSettingsComboTw + valid = walk_directories(get_resource_dirs("icons"), lambda d: + os.path.isdir(d) and \ + os.path.exists(os.path.join(d, "index.theme"))) +- return valid ++ return get_unique_resources(valid) + + class CursorThemeSwitcher(GSettingsComboTweak): + def __init__(self, **options): +@@ -84,7 +84,7 @@ class CursorThemeSwitcher(GSettingsCombo + valid = walk_directories(get_resource_dirs("icons"), lambda d: + os.path.isdir(d) and \ + os.path.exists(os.path.join(d, "cursors"))) +- return valid ++ return get_unique_resources(valid) + + class ShellThemeTweak(Gtk.Box, Tweak): + +Index: gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_keymouse.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/tweaks/tweak_group_keymouse.py ++++ gnome-tweak-tool-3.20.1/gtweak/tweaks/tweak_group_keymouse.py +@@ -20,7 +20,7 @@ import os.path + from gi.repository import GLib + + import gtweak +-from gtweak.utils import XSettingsOverrides, walk_directories, make_combo_list_with_default, get_resource_dirs ++from gtweak.utils import XSettingsOverrides, walk_directories, make_combo_list_with_default, get_resource_dirs, get_unique_resources + from gtweak.widgets import ListBoxTweakGroup, GSettingsComboTweak, GSettingsSwitchTweak, GetterSetterSwitchTweak, Title, GSettingsComboEnumTweak + + class PrimaryPasteTweak(GetterSetterSwitchTweak): +@@ -51,7 +51,7 @@ class KeyThemeSwitcher(GSettingsComboTwe + valid = walk_directories(get_resource_dirs("themes"), lambda d: + os.path.isfile(os.path.join(d, "gtk-3.0", "gtk-keys.css")) and \ + os.path.isfile(os.path.join(d, "gtk-2.0-key", "gtkrc"))) +- return valid ++ return get_unique_resources(valid) + + TWEAK_GROUPS = [ + ListBoxTweakGroup(_("Keyboard and Mouse"), +Index: gnome-tweak-tool-3.20.1/gtweak/utils.py +=================================================================== +--- gnome-tweak-tool-3.20.1.orig/gtweak/utils.py ++++ gnome-tweak-tool-3.20.1/gtweak/utils.py +@@ -133,6 +133,22 @@ def get_resource_dirs(resource): + + return [dir for dir in dirs if os.path.isdir(dir)] + ++def get_unique_resources(dirs): ++ """Filter out duplicated resources. ++ ++ :param list dirs: ++ List of resource dirs (e.g. /usr/share/themes/Adwaita) ++ :return: ++ List of dirs without duplicated resources ++ """ ++ unique_dirs = {} ++ for dir in dirs: ++ basename = os.path.basename(dir) ++ if basename not in unique_dirs: ++ unique_dirs[basename] = dir ++ ++ return unique_dirs ++ + @singleton + class AutostartManager: + diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0003-Create-config-dir-if-it-doesn-t-exist.patch b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0003-Create-config-dir-if-it-doesn-t-exist.patch new file mode 100644 index 000000000000..b25b2d6dc4aa --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/0003-Create-config-dir-if-it-doesn-t-exist.patch @@ -0,0 +1,29 @@ +From cdafa01dc90da486d0114b423e3e467f7b083d1b Mon Sep 17 00:00:00 2001 +From: Jascha Geerds +Date: Sun, 2 Aug 2015 12:01:20 +0200 +Subject: [PATCH 3/3] Create config dir if it doesn't exist + +Otherwise gnome-tweak-tool can't enable the dark theme and fails +without a clear error message. +--- + gtweak/gtksettings.py | 4 ++++ + 1 file changed, 4 insertions(+) + +diff --git a/gtweak/gtksettings.py b/gtweak/gtksettings.py +index bcec9f1..f39991b 100644 +--- a/gtweak/gtksettings.py ++++ b/gtweak/gtksettings.py +@@ -35,6 +35,10 @@ class GtkSettingsManager: + def _get_keyfile(self): + keyfile = None + try: ++ config_dir = os.path.dirname(self._path) ++ if not os.path.isdir(config_dir): ++ os.makedirs(config_dir) ++ + keyfile = GLib.KeyFile() + keyfile.load_from_file(self._path, 0) + except MemoryError: +-- +2.7.0 + 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 new file mode 100644 index 000000000000..986d4058af92 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/default.nix @@ -0,0 +1,44 @@ +{ stdenv, intltool, fetchurl, python, pygobject3, atk +, pkgconfig, gtk3, glib, libsoup +, bash, makeWrapper, itstool, libxml2, python3Packages +, gnome3, librsvg, gdk_pixbuf, file, libnotify }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + doCheck = true; + + propagatedUserEnvPkgs = [ gnome3.gnome_themes_standard ]; + + makeFlags = [ "DESTDIR=/" ]; + + buildInputs = [ pkgconfig gtk3 glib intltool itstool libxml2 + gnome3.gsettings_desktop_schemas makeWrapper file + gdk_pixbuf gnome3.defaultIconTheme librsvg + python pygobject3 libnotify gnome3.gnome_shell + libsoup gnome3.gnome_settings_daemon gnome3.nautilus + gnome3.gnome_desktop ]; + + 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)" + ''; + + patches = [ + ./find_gsettings.patch + ./0001-Search-for-themes-and-icons-in-system-data-dirs.patch + ./0002-Don-t-show-multiple-entries-for-a-single-theme.patch + ./0003-Create-config-dir-if-it-doesn-t-exist.patch + ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/action/show/Apps/GnomeTweakTool; + description = "A tool to customize advanced GNOME 3 options"; + maintainers = gnome3.maintainers; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/find_gsettings.patch b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/find_gsettings.patch new file mode 100644 index 000000000000..3e68c04cb3ab --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/find_gsettings.patch @@ -0,0 +1,22 @@ +diff --git a/gtweak/gsettings.py b/gtweak/gsettings.py +index a00fe19..dce74b2 100644 +--- a/gtweak/gsettings.py ++++ b/gtweak/gsettings.py +@@ -33,10 +33,15 @@ class GSettingsMissingError(Exception): + + class _GSettingsSchema: + def __init__(self, schema_name, schema_dir=None, schema_filename=None, **options): +- if not schema_dir: +- schema_dir = gtweak.GSETTINGS_SCHEMA_DIR + if not schema_filename: + schema_filename = schema_name + ".gschema.xml" ++ if not schema_dir: ++ schema_dir = gtweak.GSETTINGS_SCHEMA_DIR ++ for xdg_dir in GLib.get_system_data_dirs(): ++ dir = os.path.join(xdg_dir, "glib-2.0", "schemas") ++ if os.path.exists(os.path.join(dir, schema_filename)): ++ schema_dir = dir ++ break + + schema_path = os.path.join(schema_dir, schema_filename) + if not os.path.exists(schema_path): diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/src.nix new file mode 100644 index 000000000000..18183b8d4009 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-tweak-tool/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gnome-tweak-tool-3.20.1"; + + src = fetchurl { + url = mirror://gnome/sources/gnome-tweak-tool/3.20/gnome-tweak-tool-3.20.1.tar.xz; + sha256 = "5171b2f75ceeea9455543e999a83a71e8566947f89eb9157aaff7969b7e446ba"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gnome-video-effects/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gnome-video-effects/default.nix new file mode 100644 index 000000000000..c0bd2fed3f2d --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gnome-video-effects/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, intltool, gnome3 }: + +stdenv.mkDerivation rec { + name = "gnome-video-effects-${version}"; + version = "0.4.1"; + + src = fetchurl { + url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz"; + sha256 = "0jl4iny2dqpcgi3sgxzpgnbw0752i8ay3rscp2cgdjlp79ql5gil"; + }; + + buildInputs = [ pkgconfig intltool ]; + + meta = with stdenv.lib; { + homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix new file mode 100644 index 000000000000..0c6d4a9a5403 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix @@ -0,0 +1,45 @@ +{ stdenv, fetchurl, intltool, autoreconfHook, pkgconfig, vala, glib +, pango, gtk3, gnome3, dbus, clutter, appstream-glib, makeWrapper, systemd, gobjectIntrospection }: + +stdenv.mkDerivation rec { + version = "${gnome3.version}"; + name = "gpaste-${version}"; + + src = fetchurl { + url = "https://github.com/Keruspe/GPaste/archive/v${version}.tar.gz"; + sha256 = "129bz9ph398n1n43qggr8xfrd7y30nm8gdgn1hq0xq7a4v1fb2dj"; + }; + + buildInputs = [ intltool autoreconfHook pkgconfig vala glib + gtk3 gnome3.gnome_control_center dbus.libs + clutter pango appstream-glib makeWrapper systemd gobjectIntrospection ]; + + preConfigure = "intltoolize -f"; + + configureFlags = [ "--with-controlcenterdir=$(out)/gnome-control-center/keybindings" + "--with-dbusservicesdir=$(out)/share/dbus-1/services" + "--with-systemduserunitdir=$(out)/etc/systemd/user" ]; + + enableParallelBuilding = true; + + preFixup = + let + libPath = stdenv.lib.makeLibraryPath + [ glib gtk3 clutter pango ]; + in + '' + for i in $out/libexec/gpaste/*; do + wrapProgram $i \ + --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \ + --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" + done + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/Keruspe/GPaste; + description = "Clipboard management system with GNOME3 integration"; + license = licenses.gpl3; + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gspell/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gspell/default.nix new file mode 100644 index 000000000000..fbb95efb27ac --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gspell/default.nix @@ -0,0 +1,11 @@ +{ stdenv, fetchurl, pkgconfig, glib, gtk3, enchant, isocodes }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig glib gtk3 enchant isocodes ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix new file mode 100644 index 000000000000..3758936d175b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gspell/src.nix @@ -0,0 +1,10 @@ +fetchurl: rec { + major = "1.0"; + minor = "0"; + name = "gspell-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/gspell/${major}/${name}.tar.xz"; + sha256 = "1nkpy005qyrfdklrjnvx5xksd3dv27fmn48wi12q8c8whxy2al3a"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/default.nix new file mode 100644 index 000000000000..89703b61932b --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/default.nix @@ -0,0 +1,16 @@ +{ stdenv, fetchurl, pkgconfig, gtk3, intltool +, gnome3, enchant, isocodes }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ pkgconfig gtk3 intltool gnome3.adwaita-icon-theme + gnome3.gsettings_desktop_schemas ]; + + propagatedBuildInputs = [ enchant isocodes ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + maintainers = gnome3.maintainers; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/src.nix b/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/src.nix new file mode 100644 index 000000000000..21876ec9c399 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/gtkhtml/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "gtkhtml-4.10.0"; + + src = fetchurl { + url = mirror://gnome/sources/gtkhtml/4.10/gtkhtml-4.10.0.tar.xz; + sha256 = "ca3b6424fb2c7ac5d9cb8fdafb69318fa2e825c9cf6ed17d1e38d9b29e5606c3"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libgames-support/default.nix b/pkgs/desktops/gnome-3/3.20/misc/libgames-support/default.nix new file mode 100644 index 000000000000..06937c74c65a --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libgames-support/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, glib, gtk3, libgee, intltool }: + +let + major = "1"; + minor = "0"; +in stdenv.mkDerivation rec { + version = "${major}.${minor}"; + name = "libgames-support-${version}"; + + src = fetchurl { + url = "mirror://gnome/sources/libgames-support/${version}/${name}.tar.xz"; + sha256 = "02qn009m1i07nh8wnyrrjf7kbbapk814ap5pvin5ka5sj996cyqq"; + }; + + buildInputs = [ pkgconfig glib gtk3 libgee intltool ]; + + meta = with stdenv.lib; { + description = "Small library intended for internal use by GNOME Games, but it may be used by others"; + homepage = https://github.com/GNOME/libgames-support; + license = licenses.gpl3; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libgda/default.nix b/pkgs/desktops/gnome-3/3.20/misc/libgda/default.nix new file mode 100644 index 000000000000..75c45634636c --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libgda/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, gtk3, openssl }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + configureFlags = [ + "--enable-gi-system-install=no" + ]; + + enableParallelBuilding = true; + + buildInputs = [ pkgconfig intltool itstool libxml2 gtk3 openssl ]; + + meta = with stdenv.lib; { + description = "Database access library"; + homepage = http://www.gnome-db.org/; + license = [ licenses.lgpl2 licenses.gpl2 ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libgda/src.nix b/pkgs/desktops/gnome-3/3.20/misc/libgda/src.nix new file mode 100644 index 000000000000..8812ccc8ccd9 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libgda/src.nix @@ -0,0 +1,10 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: { + name = "libgda-5.2.4"; + + src = fetchurl { + url = mirror://gnome/sources/libgda/5.2/libgda-5.2.4.tar.xz; + sha256 = "2cee38dd583ccbaa5bdf6c01ca5f88cc08758b9b144938a51a478eb2684b765e"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/default.nix b/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/default.nix new file mode 100644 index 000000000000..d7e89702795f --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/default.nix @@ -0,0 +1,13 @@ +{ stdenv, fetchurl, gnome3, libtool, pkgconfig, vala, libssh2 +, gtk_doc, gobjectIntrospection, libgit2, glib }: + +stdenv.mkDerivation rec { + inherit (import ./src.nix fetchurl) name src; + + buildInputs = [ gnome3.gnome_common libtool pkgconfig vala libssh2 + gtk_doc gobjectIntrospection libgit2 glib ]; + + meta = with stdenv.lib; { + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/src.nix b/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/src.nix new file mode 100644 index 000000000000..422fdaf1a2cf --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libgit2-glib/src.nix @@ -0,0 +1,12 @@ +# Autogenerated by maintainers/scripts/gnome.sh update + +fetchurl: rec { + major = "0.24"; + minor = "0"; + name = "libgit2-glib-${major}.${minor}"; + + src = fetchurl { + url = "mirror://gnome/sources/libgit2-glib/${major}/${name}.tar.xz"; + sha256 = "0ia81xlyf6qmyl89ql663piliyjmhnzrshd6q66zya0wh9lc45nn"; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/libmediaart/default.nix b/pkgs/desktops/gnome-3/3.20/misc/libmediaart/default.nix new file mode 100644 index 000000000000..b86480125730 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/libmediaart/default.nix @@ -0,0 +1,22 @@ +{ stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, gobjectIntrospection, gnome3 }: + +let + majorVersion = "1.9"; +in +stdenv.mkDerivation rec { + name = "libmediaart-${majorVersion}.0"; + + src = fetchurl { + url = "mirror://gnome/sources/libmediaart/${majorVersion}/${name}.tar.xz"; + sha256 = "0vshvm3sfwqs365glamvkmgnzjnmxd15j47xn0ak3p6l57dqlrll"; + }; + + buildInputs = [ pkgconfig glib gdk_pixbuf gobjectIntrospection ]; + + meta = with stdenv.lib; { + description = "Library tasked with managing, extracting and handling media art caches"; + maintainers = gnome3.maintainers; + license = licenses.gpl2; + platforms = platforms.linux; + }; +} diff --git a/pkgs/desktops/gnome-3/3.20/misc/pomodoro/default.nix b/pkgs/desktops/gnome-3/3.20/misc/pomodoro/default.nix new file mode 100644 index 000000000000..880e0c52c1ae --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/misc/pomodoro/default.nix @@ -0,0 +1,50 @@ +{ stdenv, fetchFromGitHub, which, automake113x, intltool, pkgconfig, libtool, makeWrapper, + dbus_glib, libcanberra, gst_all_1, vala, gnome3, gtk3, gst_plugins_base, + glib, gobjectIntrospection, telepathy_glib +}: + +stdenv.mkDerivation rec { + version = "0.11.2"; + name = "gnome-shell-pomodoro-${version}"; + + src = fetchFromGitHub { + owner = "codito"; + repo = "gnome-pomodoro"; + rev = "${version}"; + sha256 = "0x656drq8vnvdj1x6ghnglgpa0z8yd2yj9dh5iqprwjv0z3qkw4l"; + }; + + configureScript = ''./autogen.sh''; + + buildInputs = [ + which automake113x intltool glib gobjectIntrospection pkgconfig libtool + makeWrapper dbus_glib libcanberra vala gst_all_1.gstreamer + gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good + gnome3.gsettings_desktop_schemas gnome3.gnome_desktop + gnome3.gnome_common gnome3.gnome_shell gtk3 telepathy_glib + gnome3.defaultIconTheme + ]; + + preBuild = '' + sed -i 's|\$(INTROSPECTION_GIRDIR)|${gnome3.gnome_desktop}/share/gir-1.0|' \ + vapi/Makefile + ''; + + preFixup = '' + wrapProgram $out/bin/gnome-pomodoro \ + --prefix XDG_DATA_DIRS : \ + "$out/share:$GSETTINGS_SCHEMAS_PATH:$XDG_DATA_DIRS" + ''; + + meta = with stdenv.lib; { + homepage = https://github.com/codito/gnome-shell-pomodoro; + description = "A time management utility for GNOME based on the pomodoro technique"; + longDescription = '' + This GNOME utility helps to manage time according to Pomodoro Technique. + It intends to improve productivity and focus by taking short breaks. + ''; + maintainers = with maintainers; [ DamienCassou jgeerds ]; + license = licenses.gpl3; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 94d06e9c7979..e28a968e5c37 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12508,7 +12508,7 @@ in emacs24WithPackages = emacs24PackagesNg.emacsWithPackages; emacsWithPackages = emacsPackagesNg.emacsWithPackages; - inherit (gnome3) empathy; + # inherit (gnome3) empathy; enhanced-ctorrent = callPackage ../applications/networking/enhanced-ctorrent { }; @@ -15551,6 +15551,7 @@ in }; gnome3_18 = recurseIntoAttrs (callPackage ../desktops/gnome-3/3.18 { }); + gnome3_20 = recurseIntoAttrs (callPackage ../desktops/gnome-3/3.20 { }); gnome3 = self.gnome3_18 // { shellExtensions = { From 32cbc5b794ed2f098e2c76405b7d6211029bbd10 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Mon, 6 Jun 2016 20:41:46 +0200 Subject: [PATCH 318/520] glui: init at 2.36 --- pkgs/development/libraries/glui/default.nix | 24 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/development/libraries/glui/default.nix diff --git a/pkgs/development/libraries/glui/default.nix b/pkgs/development/libraries/glui/default.nix new file mode 100644 index 000000000000..35d97712fa40 --- /dev/null +++ b/pkgs/development/libraries/glui/default.nix @@ -0,0 +1,24 @@ +{stdenv, fetchurl, freeglut, mesa, libXmu, libXext, libX11, libXi}: +stdenv.mkDerivation { + name = "glui-2.35"; + buildInputs = [freeglut mesa libXmu libXext libX11 libXi]; + preConfigure = ''cd src''; + installPhase = '' + mkdir -p "$out"/{bin,lib,share/glui/doc,include} + cp -rT bin "$out/bin" + cp -rT lib "$out/lib" + cp -rT include "$out/include" + cp -rT doc "$out/share/glui/doc" + cp LICENSE.txt "$out/share/glui/doc" + ''; + src = fetchurl { + url = "mirror://sourceforge/project/glui/Source/2.36/glui-2.36.tgz"; + sha256 = "11r7f0k5jlbl825ibhm5c6bck0fn1hbliya9x1f253ikry1mxvy1"; + }; + meta = { + description = ''A user interface library using OpenGL''; + license = stdenv.lib.licenses.zlib ; + maintainers = [stdenv.lib.maintainers.raskin]; + platforms = stdenv.lib.platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c05e16ace56d..27a935eed119 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7131,6 +7131,8 @@ in camlimages = ocamlPackages.camlimages_4_0; }; + glui = callPackage ../development/libraries/glui {}; + gmime = callPackage ../development/libraries/gmime { }; gmm = callPackage ../development/libraries/gmm { }; From c85f2b20e677e72fd3334f48b0cb0123dbaee16d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Mon, 6 Jun 2016 19:17:27 +0200 Subject: [PATCH 319/520] nixos/openvpn: add support for resolvconf The update-resolve-conf script from the update-resolv-conf package is very useful and should work in most of the common cases, so this adds an option to enable it. The option is disabled by default for backwards compatibility. --- nixos/modules/services/networking/openvpn.nix | 22 ++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/nixos/modules/services/networking/openvpn.nix b/nixos/modules/services/networking/openvpn.nix index a96888dec864..82173a841a3f 100644 --- a/nixos/modules/services/networking/openvpn.nix +++ b/nixos/modules/services/networking/openvpn.nix @@ -29,21 +29,27 @@ let done ${cfg.up} + ${optionalString cfg.updateResolvConf + "${pkgs.update-resolv-conf}/libexec/openvpn/update-resolv-conf"} ''; downScript = '' #! /bin/sh export PATH=${path} + ${optionalString cfg.updateResolvConf + "${pkgs.update-resolv-conf}/libexec/openvpn/update-resolv-conf"} ${cfg.down} ''; configFile = pkgs.writeText "openvpn-config-${name}" '' errors-to-stderr - ${optionalString (cfg.up != "" || cfg.down != "") "script-security 2"} + ${optionalString (cfg.up != "" || cfg.down != "" || cfg.updateResolvConf) "script-security 2"} ${cfg.config} - ${optionalString (cfg.up != "") "up ${pkgs.writeScript "openvpn-${name}-up" upScript}"} - ${optionalString (cfg.down != "") "down ${pkgs.writeScript "openvpn-${name}-down" downScript}"} + ${optionalString (cfg.up != "" || cfg.updateResolvConf) + "up ${pkgs.writeScript "openvpn-${name}-up" upScript}"} + ${optionalString (cfg.down != "" || cfg.updateResolvConf) + "down ${pkgs.writeScript "openvpn-${name}-down" downScript}"} ''; in { @@ -145,6 +151,16 @@ in description = "Whether this OpenVPN instance should be started automatically."; }; + updateResolvConf = mkOption { + default = false; + type = types.bool; + description = '' + Use the script from the update-resolv-conf package to automatically + update resolv.conf with the DNS information provided by openvpn. The + script will be run after the "up" commands and before the "down" commands. + ''; + }; + }; }; From 2b0f12c07345d8d9ea6b9c5d70a8795d5b5db164 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 6 Jun 2016 21:11:37 +0200 Subject: [PATCH 320/520] debian-devscripts: 2.16.4 -> 2.16.5 --- pkgs/tools/misc/debian-devscripts/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/debian-devscripts/default.nix b/pkgs/tools/misc/debian-devscripts/default.nix index 3818b1be1341..b05d21b66c84 100644 --- a/pkgs/tools/misc/debian-devscripts/default.nix +++ b/pkgs/tools/misc/debian-devscripts/default.nix @@ -5,12 +5,12 @@ }: stdenv.mkDerivation rec { - version = "2.16.4"; + version = "2.16.5"; name = "debian-devscripts-${version}"; src = fetchurl { url = "mirror://debian/pool/main/d/devscripts/devscripts_${version}.tar.xz"; - sha256 = "0hxvxf8fc76lmrf57l9liwx1xjbxk2ldamln8xnwqlg37laxi3v2"; + sha256 = "0jyg7abfar4rc3zmdzz4k8kk081ll93v508kdnxg30snavri7f02"; }; buildInputs = [ perl CryptSSLeay LWP unzip xz dpkg TimeDate DBFile From b04e2fab7cc7f3323e5328eff1265a1e0cebe77a Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 6 Jun 2016 21:57:48 +0200 Subject: [PATCH 321/520] bruteforce-luks: 1.2.0 -> 1.2.1 --- pkgs/tools/security/bruteforce-luks/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/bruteforce-luks/default.nix b/pkgs/tools/security/bruteforce-luks/default.nix index a28f949c7fdd..85773953af0f 100644 --- a/pkgs/tools/security/bruteforce-luks/default.nix +++ b/pkgs/tools/security/bruteforce-luks/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "bruteforce-luks-${version}"; - version = "1.2.0"; + version = "1.2.1"; src = fetchFromGitHub { - sha256 = "0d01rn45dg7ysa75r8z0b31hj1z7w47vv5vr359pl71zxgzngjd2"; + sha256 = "1i3qr2qgqdx3a5kjl0wrjh9kw8fx2indrj57z6911nx747pmda0n"; rev = version; repo = "bruteforce-luks"; owner = "glv2"; From 86f9ead2880142b08069e7254ecda2341d25db0e Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 6 Jun 2016 22:40:43 +0200 Subject: [PATCH 322/520] exfat: 1.2.3 -> 1.2.4 --- pkgs/tools/filesystems/exfat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/filesystems/exfat/default.nix b/pkgs/tools/filesystems/exfat/default.nix index 7c483c9258a6..aba0418e9dea 100644 --- a/pkgs/tools/filesystems/exfat/default.nix +++ b/pkgs/tools/filesystems/exfat/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "exfat-${version}"; - version = "1.2.3"; + version = "1.2.4"; src = fetchFromGitHub { - sha256 = "147s11sqmn5flbvz2hwpl6kdfqi2gnm1c2nsn5fxygyw7qyhpzda"; + sha256 = "0x8wjvvlqmp0g2361m6d24csi1p4df8za2cqhyys03s1hv1qmy0k"; rev = "v${version}"; repo = "exfat"; owner = "relan"; From bb5faafbca29dea9c7d464a85f99132e43d17d5b Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Mon, 6 Jun 2016 16:00:10 -0500 Subject: [PATCH 323/520] gemconfig: rmagick requires which as of 2.15.4 --- pkgs/development/ruby-modules/gem-config/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/ruby-modules/gem-config/default.nix b/pkgs/development/ruby-modules/gem-config/default.nix index 64cacc976f4f..580efc2278ec 100644 --- a/pkgs/development/ruby-modules/gem-config/default.nix +++ b/pkgs/development/ruby-modules/gem-config/default.nix @@ -115,7 +115,7 @@ in }; rmagick = attrs: { - buildInputs = [ imagemagick pkgconfig ]; + buildInputs = [ imagemagick pkgconfig which ]; }; rugged = attrs: { From 80b1cf663347bfd9bd9396c58a3138416f219eca Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Mon, 6 Jun 2016 16:08:33 -0500 Subject: [PATCH 324/520] kde5.plasma-integration: init at 5.6.4 --- pkgs/desktops/kde-5/plasma-5.6/default.nix | 1 + .../kde-5/plasma-5.6/plasma-integration.nix | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix diff --git a/pkgs/desktops/kde-5/plasma-5.6/default.nix b/pkgs/desktops/kde-5/plasma-5.6/default.nix index 27274654ce2a..b0f53eca6f7e 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/default.nix @@ -77,6 +77,7 @@ let milou = callPackage ./milou.nix {}; oxygen = callPackage ./oxygen.nix {}; plasma-desktop = callPackage ./plasma-desktop {}; + plasma-integration = callPackage ./plasma-integration.nix {}; plasma-mediacenter = callPackage ./plasma-mediacenter.nix {}; plasma-nm = callPackage ./plasma-nm {}; plasma-pa = callPackage ./plasma-pa.nix {}; diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix new file mode 100644 index 000000000000..7bc41986a4f5 --- /dev/null +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-integration.nix @@ -0,0 +1,17 @@ +{ plasmaPackage, extra-cmake-modules +, kconfig, kconfigwidgets, kiconthemes, kio, kwayland +, libXcursor +}: + +# TODO: install Noto Sans and Oxygen Mono fonts with plasma-integration + +plasmaPackage { + name = "plasma-integration"; + nativeBuildInputs = [ + extra-cmake-modules + ]; + buildInputs = [ + kconfig kconfigwidgets kiconthemes kio kwayland + libXcursor + ]; +} From ffb1e8506b662f86c4a7b1d071fa5162be22c753 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 04:48:58 +0300 Subject: [PATCH 325/520] corefonts: add meta and mark as unfree See e.g. https://sourceforge.net/p/corefonts/bugs/6/ --- pkgs/data/fonts/corefonts/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/data/fonts/corefonts/default.nix b/pkgs/data/fonts/corefonts/default.nix index 2030fb3ab1dc..a1ec6ef30038 100644 --- a/pkgs/data/fonts/corefonts/default.nix +++ b/pkgs/data/fonts/corefonts/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, cabextract}: +{ stdenv, fetchurl, cabextract }: let @@ -59,7 +59,11 @@ stdenv.mkDerivation { done ''; - meta = { + meta = with stdenv.lib; { + homepage = "http://corefonts.sourceforge.net/"; + description = "Microsoft's TrueType core fonts for the Web"; + platforms = platforms.all; + licenses = licenses.unfreeRedistributable; # Set a non-zero priority to allow easy overriding of the # fontconfig configuration files. priority = 5; From bd1b236f7c72260b3b74244c9998ecd6b204ae8b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 04:57:21 +0300 Subject: [PATCH 326/520] fix 'licenses' -> 'license' in several places --- pkgs/applications/video/mjpg-streamer/default.nix | 2 +- pkgs/data/fonts/corefonts/default.nix | 2 +- .../tools/analysis/garcosim/tracefilesim/default.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/video/mjpg-streamer/default.nix b/pkgs/applications/video/mjpg-streamer/default.nix index 5409cf9f2f7f..5fd0664d15b4 100644 --- a/pkgs/applications/video/mjpg-streamer/default.nix +++ b/pkgs/applications/video/mjpg-streamer/default.nix @@ -26,6 +26,6 @@ stdenv.mkDerivation rec { homepage = http://sourceforge.net/projects/mjpg-streamer/; description = "MJPG-streamer takes JPGs from Linux-UVC compatible webcams, filesystem or other input plugins and streams them as M-JPEG via HTTP to webbrowsers, VLC and other software"; platforms = platforms.linux; - licenses = licenses.gpl2; + license = licenses.gpl2; }; } diff --git a/pkgs/data/fonts/corefonts/default.nix b/pkgs/data/fonts/corefonts/default.nix index a1ec6ef30038..9bc041822643 100644 --- a/pkgs/data/fonts/corefonts/default.nix +++ b/pkgs/data/fonts/corefonts/default.nix @@ -63,7 +63,7 @@ stdenv.mkDerivation { homepage = "http://corefonts.sourceforge.net/"; description = "Microsoft's TrueType core fonts for the Web"; platforms = platforms.all; - licenses = licenses.unfreeRedistributable; + license = licenses.unfreeRedistributable; # Set a non-zero priority to allow easy overriding of the # fontconfig configuration files. priority = 5; diff --git a/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix b/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix index 01299966eb1b..740d51cc1348 100644 --- a/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix +++ b/pkgs/development/tools/analysis/garcosim/tracefilesim/default.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { description = "Ease the analysis of existing memory management techniques, as well as the prototyping of new memory management techniques."; homepage = "https://github.com/GarCoSim"; maintainers = [ maintainers.cmcdragonkai ]; - licenses = licenses.gpl2; + license = licenses.gpl2; platforms = platforms.linux; }; From eecebcd0580ff1627e99c110de903810159a2751 Mon Sep 17 00:00:00 2001 From: Benjamin Saunders Date: Mon, 6 Jun 2016 20:23:39 -0700 Subject: [PATCH 327/520] structured-haskell-mode: fix emacs package This emacs package requires the binary from the external package to be in exec-path. --- pkgs/top-level/emacs-packages.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/top-level/emacs-packages.nix b/pkgs/top-level/emacs-packages.nix index 9c0f8a1f10c7..0878a6adeb8b 100644 --- a/pkgs/top-level/emacs-packages.nix +++ b/pkgs/top-level/emacs-packages.nix @@ -1531,6 +1531,7 @@ let src = external.structured-haskell-mode.src; packageRequires = [ haskell-mode ]; fileSpecs = [ "elisp/*.el" ]; + propagatedUserEnvPkgs = [ external.structured-haskell-mode ]; meta = { description = "Structured editing Emacs mode for Haskell"; From c38a08f95a7b800d1e2ae9811d37b517aff983fc Mon Sep 17 00:00:00 2001 From: Andrey Pavlov Date: Tue, 7 Jun 2016 10:34:20 +0300 Subject: [PATCH 328/520] elixir: 1.2.5 -> 1.2.6 --- pkgs/development/interpreters/elixir/default.nix | 4 ++-- pkgs/servers/xmpp/ejabberd/default.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/interpreters/elixir/default.nix b/pkgs/development/interpreters/elixir/default.nix index 9ae2b9838c4f..b72b6e360197 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.2.5"; + version = "1.2.6"; src = fetchFromGitHub { owner = "elixir-lang"; repo = "elixir"; rev = "v${version}"; - sha256 = "0qnmsmzmr431y1chkzk2aq501fk734mncdbn7nsiq98bnqgb6php"; + sha256 = "0zrsy0jy33m7krpwf1vymmiirl068sj4hfjji77wkhn8k88awmfb"; }; buildInputs = [ erlang rebar makeWrapper ]; diff --git a/pkgs/servers/xmpp/ejabberd/default.nix b/pkgs/servers/xmpp/ejabberd/default.nix index dffe83490a23..3dcd92cde8e3 100644 --- a/pkgs/servers/xmpp/ejabberd/default.nix +++ b/pkgs/servers/xmpp/ejabberd/default.nix @@ -76,7 +76,7 @@ in stdenv.mkDerivation rec { outputHashMode = "recursive"; outputHashAlgo = "sha256"; - outputHash = "0nf2fgfiapxg26c7bxl985pszpgnzyan4j4jiaf5zvflza67h777"; + outputHash = "0jrxd3v6p35wjrpw0jbb6m8nrm2lffhfgdcqmzcvsvjzji7nlkzx"; }; configureFlags = From 2e712b501c62b9ec11882421427591e80e48ccbc Mon Sep 17 00:00:00 2001 From: laMudri Date: Tue, 7 Jun 2016 10:52:55 +0100 Subject: [PATCH 329/520] agda-stdlib: 2.4.2.3 -> v0.12 (for Agda-2.5.1) --- .../libraries/agda/agda-stdlib/default.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/pkgs/development/libraries/agda/agda-stdlib/default.nix b/pkgs/development/libraries/agda/agda-stdlib/default.nix index b25f14dbc9f9..24ba50387a4d 100644 --- a/pkgs/development/libraries/agda/agda-stdlib/default.nix +++ b/pkgs/development/libraries/agda/agda-stdlib/default.nix @@ -1,13 +1,14 @@ -{ stdenv, agda, fetchgit, ghcWithPackages }: +{ stdenv, agda, fetchFromGitHub, ghcWithPackages }: agda.mkDerivation (self: rec { - version = "2.4.2.3"; + version = "0.12"; name = "agda-stdlib-${version}"; - src = fetchgit { - url = "git://github.com/agda/agda-stdlib"; - rev = "9c9b3cb28f9a7d39a256890a1469c1a3f7fc4faf"; - sha256 = "1h64wzm4ysmq3gi33w3kp9h3f471sydpp453yf95bh5f713a8bxk"; + src = fetchFromGitHub { + repo = "agda-stdlib"; + owner = "agda"; + rev = "v${version}"; + sha256 = "1n5hn3xa0bqyq8rjvfsfmh6z3l8rr4z3s7gyfmf3kiv9f235bnd2"; }; nativeBuildInputs = [ (ghcWithPackages (self : [ self.filemanip ])) ]; @@ -22,6 +23,6 @@ agda.mkDerivation (self: rec { description = "A standard library for use with the Agda compiler"; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.unix; - maintainers = with maintainers; [ jwiegley fuuzetsu ]; + maintainers = with maintainers; [ jwiegley fuuzetsu mudri ]; }; }) From 949ede3d2fa91315868801b542c26b76e5d3333b Mon Sep 17 00:00:00 2001 From: laMudri Date: Tue, 7 Jun 2016 10:54:32 +0100 Subject: [PATCH 330/520] agda-prelude: 2014-09-27 -> 2016-04-18 --- pkgs/development/libraries/agda/agda-prelude/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/agda/agda-prelude/default.nix b/pkgs/development/libraries/agda/agda-prelude/default.nix index 2ac71f341d69..a2d29ff08dc8 100644 --- a/pkgs/development/libraries/agda/agda-prelude/default.nix +++ b/pkgs/development/libraries/agda/agda-prelude/default.nix @@ -1,13 +1,13 @@ { stdenv, agda, fetchgit }: agda.mkDerivation (self: rec { - version = "d598f35d88596c5a63766a7188a0c0144e467c8c"; + version = "0dca24a81d417db2ae8fc871eccb7776f7eae952"; name = "agda-prelude-${version}"; src = fetchgit { url = "https://github.com/UlfNorell/agda-prelude.git"; rev = version; - sha256 = "10n8bsbn0c3hmyqdis7gvawn2ylzmzl8rkbscvh0bj03fbbna4d9"; + sha256 = "0gwfgvj96i1mx5v01bi46h567d1q1fbgvzv6z8zv91l2jhybwff5"; }; topSourceDirectories = [ "src" ]; @@ -18,6 +18,6 @@ agda.mkDerivation (self: rec { description = "Programming library for Agda"; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.unix; - maintainers = with maintainers; [ fuuzetsu ]; + maintainers = with maintainers; [ fuuzetsu mudri ]; }; }) From 28f4f157770bae0256ecf29c1058ac5336d54541 Mon Sep 17 00:00:00 2001 From: laMudri Date: Tue, 7 Jun 2016 10:58:28 +0100 Subject: [PATCH 331/520] Agda: marked some old packages as broken --- pkgs/development/libraries/agda/Agda-Sheaves/default.nix | 3 ++- .../libraries/agda/TotalParserCombinators/default.nix | 1 + pkgs/development/libraries/agda/agda-base/default.nix | 1 + pkgs/development/libraries/agda/bitvector/default.nix | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/agda/Agda-Sheaves/default.nix b/pkgs/development/libraries/agda/Agda-Sheaves/default.nix index 24d547ccd8bc..a9c037edba76 100644 --- a/pkgs/development/libraries/agda/Agda-Sheaves/default.nix +++ b/pkgs/development/libraries/agda/Agda-Sheaves/default.nix @@ -19,5 +19,6 @@ agda.mkDerivation (self: rec { license = stdenv.lib.licenses.cc-by-40; platforms = stdenv.lib.platforms.unix; maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + broken = true; # replaced by constructive-sheaf-semantics }; -}) \ No newline at end of file +}) diff --git a/pkgs/development/libraries/agda/TotalParserCombinators/default.nix b/pkgs/development/libraries/agda/TotalParserCombinators/default.nix index 8c2990000659..226a39890c2d 100644 --- a/pkgs/development/libraries/agda/TotalParserCombinators/default.nix +++ b/pkgs/development/libraries/agda/TotalParserCombinators/default.nix @@ -21,5 +21,6 @@ agda.mkDerivation (self: rec { license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.unix; maintainers = with maintainers; [ fuuzetsu ]; + broken = true; }; }) diff --git a/pkgs/development/libraries/agda/agda-base/default.nix b/pkgs/development/libraries/agda/agda-base/default.nix index cf73d7dea060..40eef9328224 100644 --- a/pkgs/development/libraries/agda/agda-base/default.nix +++ b/pkgs/development/libraries/agda/agda-base/default.nix @@ -18,5 +18,6 @@ agda.mkDerivation (self: rec { license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.unix; maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + broken = true; # largely replaced by HoTT-Agda }; }) diff --git a/pkgs/development/libraries/agda/bitvector/default.nix b/pkgs/development/libraries/agda/bitvector/default.nix index 3f2c92e80ad4..b3b3cb5bbfeb 100644 --- a/pkgs/development/libraries/agda/bitvector/default.nix +++ b/pkgs/development/libraries/agda/bitvector/default.nix @@ -19,5 +19,6 @@ agda.mkDerivation (self: rec { license = stdenv.lib.licenses.bsd3; platforms = stdenv.lib.platforms.unix; maintainers = with stdenv.lib.maintainers; [ fuuzetsu ]; + broken = true; }; }) From 0264d340580ceb6f209ee9027bbaa2403cf0252c Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Tue, 7 Jun 2016 12:48:19 +0200 Subject: [PATCH 332/520] mcelog: 137 -> 138 --- pkgs/os-specific/linux/mcelog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/mcelog/default.nix b/pkgs/os-specific/linux/mcelog/default.nix index a376e1f8459a..2d743035e14f 100644 --- a/pkgs/os-specific/linux/mcelog/default.nix +++ b/pkgs/os-specific/linux/mcelog/default.nix @@ -2,10 +2,10 @@ stdenv.mkDerivation rec { name = "mcelog-${version}"; - version = "137"; + version = "138"; src = fetchFromGitHub { - sha256 = "0kx4jcgs2h5jvrjyrkn92vl2wxg6ny4sipzs2mlszcr4ky27am6z"; + sha256 = "039ycn5m3gx4n0kppxl35wcrkyva6lv64qhlqhh7034qkbqbhqiy"; rev = "v${version}"; repo = "mcelog"; owner = "andikleen"; From 285061d50c1f0216a420a811d812e31ad4fe88a7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 7 Jun 2016 06:20:11 -0500 Subject: [PATCH 333/520] nixos/kde5: install oxygen-fonts and noto-fonts --- nixos/modules/services/x11/desktop-managers/kde5.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 2e9183da970a..be5c7df9365c 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -150,7 +150,8 @@ in then { GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; } else { }); - fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; + # Plasma uses Noto Sans and Oxygen Mono by default + fonts.fonts = [ kde5.oxygen-fonts pkgs.noto-fonts ]; programs.ssh.askPassword = "${kde5.ksshaskpass.out}/bin/ksshaskpass"; From 9dcbc4b015ae7b3f0b40e7501d36ffb8e99dcc68 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 7 Jun 2016 06:20:29 -0500 Subject: [PATCH 334/520] nixos/kde5: install plasma-integration frameworkintegration was split with plasma-integration in Plasma 5.6. --- nixos/modules/services/x11/desktop-managers/kde5.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index be5c7df9365c..55b89592bb86 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -117,6 +117,9 @@ in # Install activity manager if available ++ lib.optional (lib.hasAttr "kactivitymanagerd" kde5) kde5.kactivitymanagerd + # frameworkintegration was split with plasma-integration in Plasma 5.6 + ++ lib.optional (lib.hasAttr "plasma-integration" kde5) kde5.plasma-integration + # Optional hardware support features ++ lib.optional config.hardware.bluetooth.enable kde5.bluedevil ++ lib.optional config.networking.networkmanager.enable kde5.plasma-nm From 43a7d90e971f0713c612c2ca4ab632eb15dc65ab Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 7 Jun 2016 06:21:09 -0500 Subject: [PATCH 335/520] Revert "Revert "kde5.frameworks: 5.21 -> 5.22"" This reverts commit 97699529331b3152860ae53f0013d52f9476a086. --- .../kservice/ksycoca-buffer-size.patch | 25 - .../kde-5/frameworks-5.21/kservice/series | 3 - pkgs/desktops/kde-5/frameworks-5.21/srcs.nix | 573 ----------------- .../attica.nix | 0 .../baloo.nix | 0 .../bluez-qt.nix | 0 .../breeze-icons.nix | 0 .../default.nix | 0 .../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 .../fetchsrcs.sh | 2 +- .../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/kauth-policy-install.patch | 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 | 0 .../kiconthemes/default.nix | 0 .../kiconthemes/series | 0 .../kidletime.nix | 0 .../kimageformats.nix | 0 .../kinit/default.nix | 0 .../kinit/kinit-libpath.patch | 0 .../kinit/series | 0 .../kio/default.nix | 1 - .../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 .../kde-5/frameworks-5.22/kservice/series | 2 + .../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 .../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.22/srcs.nix | 581 ++++++++++++++++++ .../threadweaver.nix | 0 pkgs/top-level/all-packages.nix | 2 +- 107 files changed, 585 insertions(+), 604 deletions(-) delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/kservice/series delete mode 100644 pkgs/desktops/kde-5/frameworks-5.21/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/attica.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/baloo.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/bluez-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/breeze-icons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/extra-cmake-modules/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/extra-cmake-modules/nix-lib-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/extra-cmake-modules/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/extra-cmake-modules/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/fetchsrcs.sh (96%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/frameworkintegration.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kactivities-stats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kactivities.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kapidox.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/karchive.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kauth/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kauth/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kauth/kauth-policy-install.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kauth/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kbookmarks.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcmutils/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcmutils/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcodecs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcompletion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kconfigwidgets/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcoreaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kcrash.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdbusaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdeclarative.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kded.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdelibs4support/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdelibs4support/nix-kde-include-dir.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdelibs4support/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdelibs4support/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdesignerplugin.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdesu.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdnssd.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdoctools/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdoctools/kdoctools-no-find-docbook-xml.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kdoctools/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kemoticons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kfilemetadata/cmake-install-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kfilemetadata/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kfilemetadata/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kglobalaccel.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kguiaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/khtml.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/ki18n.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kiconthemes/default-theme-breeze.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kiconthemes/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kiconthemes/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kidletime.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kimageformats.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kinit/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kinit/kinit-libpath.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kinit/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kio/default.nix (96%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kio/samba-search-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kio/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kitemmodels.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kitemviews.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kjobwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kjs.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kjsembed.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kmediaplayer.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/knewstuff.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/knotifications.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/knotifyconfig.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpackage/allow-external-paths.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpackage/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpackage/qdiriterator-follow-symlinks.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpackage/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kparts.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpeople.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kplotting.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kpty.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kross.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/krunner.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kservice/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kservice/no-canonicalize-path.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kservice/qdiriterator-follow-symlinks.patch (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.22/kservice/series rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kservice/setup-hook.sh (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/ktexteditor/default.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/ktexteditor/no-qcoreapplication.patch (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/ktexteditor/series (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/ktextwidgets.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kunitconversion.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kwallet.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kwidgetsaddons.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kwindowsystem.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kxmlgui.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/kxmlrpcclient.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/modemmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/networkmanager-qt.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/oxygen-icons5.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/plasma-framework.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/solid.nix (100%) rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/sonnet.nix (100%) create mode 100644 pkgs/desktops/kde-5/frameworks-5.22/srcs.nix rename pkgs/desktops/kde-5/{frameworks-5.21 => frameworks-5.22}/threadweaver.nix (100%) diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch b/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch deleted file mode 100644 index e65d4505ed26..000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/ksycoca-buffer-size.patch +++ /dev/null @@ -1,25 +0,0 @@ -Index: kservice-5.21.0/src/sycoca/ksycocautils.cpp -=================================================================== ---- kservice-5.21.0.orig/src/sycoca/ksycocautils.cpp -+++ kservice-5.21.0/src/sycoca/ksycocautils.cpp -@@ -24,9 +24,10 @@ - - void KSycocaUtilsPrivate::read(QDataStream &s, QString &str) - { -+ const qint32 bufferSize = 65528; - quint32 bytes; - s >> bytes; // read size of string -- if (bytes > 8192) { // null string or too big -+ if (bytes > bufferSize) { // null string or too big - if (bytes != 0xffffffff) { - KSycoca::flagError(); - } -@@ -35,7 +36,7 @@ void KSycocaUtilsPrivate::read(QDataStre - int bt = bytes / 2; - str.resize(bt); - QChar *ch = str.data(); -- char t[8192]; -+ char t[bufferSize]; - char *b = t; - s.readRawData(b, bytes); - while (bt--) { diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/series b/pkgs/desktops/kde-5/frameworks-5.21/kservice/series deleted file mode 100644 index c1655f686064..000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/kservice/series +++ /dev/null @@ -1,3 +0,0 @@ -qdiriterator-follow-symlinks.patch -no-canonicalize-path.patch -ksycoca-buffer-size.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix deleted file mode 100644 index a4a1f95c52ce..000000000000 --- a/pkgs/desktops/kde-5/frameworks-5.21/srcs.nix +++ /dev/null @@ -1,573 +0,0 @@ -# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh -{ fetchurl, mirror }: - -{ - attica = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/attica-5.21.0.tar.xz"; - sha256 = "1aqfw73g424f60qmpx1lky3qfqrsl1id02388pnlmpa8fnpp940c"; - name = "attica-5.21.0.tar.xz"; - }; - }; - baloo = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/baloo-5.21.0.tar.xz"; - sha256 = "1a5sl2bkrs90mfks93q2hrijp6dpapp2l0fhq7km36mvsrc78yqn"; - name = "baloo-5.21.0.tar.xz"; - }; - }; - bluez-qt = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/bluez-qt-5.21.0.tar.xz"; - sha256 = "0nsnxa4k31l69fapxn49g112948zprc5xr7v3ggxwnxkb1pll60a"; - name = "bluez-qt-5.21.0.tar.xz"; - }; - }; - breeze-icons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/breeze-icons-5.21.0.tar.xz"; - sha256 = "1a7ikdq8a44n42i6swf29aqyfwjh05ir3ym0lzjzdb6133fzlb01"; - name = "breeze-icons-5.21.0.tar.xz"; - }; - }; - extra-cmake-modules = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/extra-cmake-modules-5.21.0.tar.xz"; - sha256 = "1kbc5fkcbz9vkg0jpz10vsfgwajlrsmbl0vrbls5qvrdgbgrwlm3"; - name = "extra-cmake-modules-5.21.0.tar.xz"; - }; - }; - frameworkintegration = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/frameworkintegration-5.21.0.tar.xz"; - sha256 = "0mbpn18cjzd8xznk73slvals86lv77ram09px4l44xgyf019xll8"; - name = "frameworkintegration-5.21.0.tar.xz"; - }; - }; - kactivities = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kactivities-5.21.0.tar.xz"; - sha256 = "09jr7m6vaffdb879jph1ckgri0b9pdyh5q39i7fyi6s277rybcyk"; - name = "kactivities-5.21.0.tar.xz"; - }; - }; - kactivities-stats = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kactivities-stats-5.21.0.tar.xz"; - sha256 = "0vd01b812r0ggbnqsq3y6ik68v0668rzx6npl3h11wdrvlidhyqf"; - name = "kactivities-stats-5.21.0.tar.xz"; - }; - }; - kapidox = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kapidox-5.21.0.tar.xz"; - sha256 = "0w3jch93d8vdqd0g4yl2fxmamrg9hnx1lypnpgw7615wlsb02qyx"; - name = "kapidox-5.21.0.tar.xz"; - }; - }; - karchive = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/karchive-5.21.0.tar.xz"; - sha256 = "042ww21wmm3sf87zqgr2qiyg2j5mjf1mmqpqhpcax4gnjpck5nvc"; - name = "karchive-5.21.0.tar.xz"; - }; - }; - kauth = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kauth-5.21.0.tar.xz"; - sha256 = "03dy36g9y04p3533l2y0m0jlr91m94y0i4wpnlr5ndgccif2a63r"; - name = "kauth-5.21.0.tar.xz"; - }; - }; - kbookmarks = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kbookmarks-5.21.0.tar.xz"; - sha256 = "0qxq5wbddaj1cpjd34q8k65brfbb677gs0y5zh24mqbwcr0rfs6g"; - name = "kbookmarks-5.21.0.tar.xz"; - }; - }; - kcmutils = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kcmutils-5.21.0.tar.xz"; - sha256 = "01ch3y43r4cb1sj0gy5a8wq3c6wpx2brn96d7rjm3r3hh5n5xdlj"; - name = "kcmutils-5.21.0.tar.xz"; - }; - }; - kcodecs = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kcodecs-5.21.0.tar.xz"; - sha256 = "0wng7kqqxrsz7b4w163j6m2zdhb5pvgbd9n6bn7ggyldn4zl86w7"; - name = "kcodecs-5.21.0.tar.xz"; - }; - }; - kcompletion = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kcompletion-5.21.0.tar.xz"; - sha256 = "0r6gsnsjkfvwhrpkch7y44m2yqyxb42bdkc35jxrm8y7xaa8nwi4"; - name = "kcompletion-5.21.0.tar.xz"; - }; - }; - kconfig = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kconfig-5.21.0.tar.xz"; - sha256 = "0w5wvy3yhgh64k8jghyv5fkx9jr828yl11jlihg24hfplnmihkxw"; - name = "kconfig-5.21.0.tar.xz"; - }; - }; - kconfigwidgets = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kconfigwidgets-5.21.0.tar.xz"; - sha256 = "030iq46bwiaixn2wf6285y2gg7h1y5xqf6d6bg3xcz0v1xjd3n0f"; - name = "kconfigwidgets-5.21.0.tar.xz"; - }; - }; - kcoreaddons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kcoreaddons-5.21.0.tar.xz"; - sha256 = "16226z60simxgfriwsm6srx39f7wm64mdl39qxaa77wn07i8xmsi"; - name = "kcoreaddons-5.21.0.tar.xz"; - }; - }; - kcrash = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kcrash-5.21.0.tar.xz"; - sha256 = "1mrbmfkzd0dy42ppq8gl1z9liprq722w4f3a499iamqnlsdwq2w8"; - name = "kcrash-5.21.0.tar.xz"; - }; - }; - kdbusaddons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdbusaddons-5.21.0.tar.xz"; - sha256 = "1yvpan0plm80sw0wai39ffvpswyzy7xiqra69cb8mfxcdl8acjjw"; - name = "kdbusaddons-5.21.0.tar.xz"; - }; - }; - kdeclarative = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdeclarative-5.21.0.tar.xz"; - sha256 = "1m61js8kdnif1106vxs5bv830hyj8j2whv5mlshkj9jbpp9v5qkj"; - name = "kdeclarative-5.21.0.tar.xz"; - }; - }; - kded = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kded-5.21.0.tar.xz"; - sha256 = "138svq07zgabn6razkqp5zxdlw9ajr1966icd82mxsxq1cjgfl4g"; - name = "kded-5.21.0.tar.xz"; - }; - }; - kdelibs4support = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/kdelibs4support-5.21.0.tar.xz"; - sha256 = "1q1wyfry2ypa1mk01rabva0cq1ai9lmq8ygsji413p6c1avfrywc"; - name = "kdelibs4support-5.21.0.tar.xz"; - }; - }; - kdesignerplugin = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdesignerplugin-5.21.0.tar.xz"; - sha256 = "0rj79mdgdcm0wlramx5s53ba0jkhravcgkl570ds7s3wwa1aa62j"; - name = "kdesignerplugin-5.21.0.tar.xz"; - }; - }; - kdesu = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdesu-5.21.0.tar.xz"; - sha256 = "13daljcjgrvybj7hbv6l9cwc6cdh45d2zz2ch7cbar46z2zxh5qb"; - name = "kdesu-5.21.0.tar.xz"; - }; - }; - kdewebkit = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdewebkit-5.21.0.tar.xz"; - sha256 = "1rc5i265sagvbqwy96i4dnksc4vnrq864z3rkxqlrx2blwq08550"; - name = "kdewebkit-5.21.0.tar.xz"; - }; - }; - kdnssd = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdnssd-5.21.0.tar.xz"; - sha256 = "0k3qia322cd2h9pcf7k0fg7w91jxc503digjv93vhsfzfhbadf9l"; - name = "kdnssd-5.21.0.tar.xz"; - }; - }; - kdoctools = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kdoctools-5.21.0.tar.xz"; - sha256 = "16ysqwvwmxas56rhg68rzkipszqqahh787ww9rkq9ak2r6d29r6c"; - name = "kdoctools-5.21.0.tar.xz"; - }; - }; - kemoticons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kemoticons-5.21.0.tar.xz"; - sha256 = "1paddfylh1xb4g4h939lzvy7f67syyfsx76gz7w5mdbnqk5xc7fc"; - name = "kemoticons-5.21.0.tar.xz"; - }; - }; - kfilemetadata = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kfilemetadata-5.21.0.tar.xz"; - sha256 = "1jmcvzazcw5klmnzd17a7x6rcwjb6xdrxrn1jjiq8kibdbghx7l0"; - name = "kfilemetadata-5.21.0.tar.xz"; - }; - }; - kglobalaccel = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kglobalaccel-5.21.0.tar.xz"; - sha256 = "1bdd613ybz1cl25sx3ihdfzsjwlxyjx9blidmzbnvv0lb2304hwp"; - name = "kglobalaccel-5.21.0.tar.xz"; - }; - }; - kguiaddons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kguiaddons-5.21.0.tar.xz"; - sha256 = "01hdrcdsiq3qs620jprv65kk4pvldlm70aghjsi9wk7j3x6qid2x"; - name = "kguiaddons-5.21.0.tar.xz"; - }; - }; - khtml = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/khtml-5.21.0.tar.xz"; - sha256 = "17xvzklhhp6k9wi94s7agc8qnb7gwvx3aa5jbq6d76qn0rsqbzhv"; - name = "khtml-5.21.0.tar.xz"; - }; - }; - ki18n = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/ki18n-5.21.0.tar.xz"; - sha256 = "0qm9p77zqz2jy0j5yfv5v6pqska25p790yy1b6wg1gd67561q5bn"; - name = "ki18n-5.21.0.tar.xz"; - }; - }; - kiconthemes = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kiconthemes-5.21.0.tar.xz"; - sha256 = "14a43jca1cyh45dbz5c9lc5yqc376qg3q2c420bk5s44ynpnhp4i"; - name = "kiconthemes-5.21.0.tar.xz"; - }; - }; - kidletime = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kidletime-5.21.0.tar.xz"; - sha256 = "10vdx2sp3hjp20saqlyqdz83jbqhsqyk7gl063lhz00mnk7nk1mn"; - name = "kidletime-5.21.0.tar.xz"; - }; - }; - kimageformats = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kimageformats-5.21.0.tar.xz"; - sha256 = "09m0w5f39y9gq0g00iapay3v09kk24lqwiyjq4y487il865p22ph"; - name = "kimageformats-5.21.0.tar.xz"; - }; - }; - kinit = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kinit-5.21.0.tar.xz"; - sha256 = "19avsq0bi2ys574n0dcn65chd7wrpyp354xfsw45gig28skjiir5"; - name = "kinit-5.21.0.tar.xz"; - }; - }; - kio = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kio-5.21.0.tar.xz"; - sha256 = "08wrjimkv255gbc9y7pxilwxi9nikg3196rzs0fbw4vqdlzl0gjq"; - name = "kio-5.21.0.tar.xz"; - }; - }; - kitemmodels = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kitemmodels-5.21.0.tar.xz"; - sha256 = "1bp02vp08bwsd64wnrr3ivy4k8g1vzv1s5iyiqj99d1gk0fxvv7d"; - name = "kitemmodels-5.21.0.tar.xz"; - }; - }; - kitemviews = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kitemviews-5.21.0.tar.xz"; - sha256 = "16yzcyrg8wa8fvz749x8dbixyga1ggls1fvjns6gdbz5aqm6ib4d"; - name = "kitemviews-5.21.0.tar.xz"; - }; - }; - kjobwidgets = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kjobwidgets-5.21.0.tar.xz"; - sha256 = "0y8zmz6wx4igbpc0jlsxrr1yxgyq8hsmynl9fqy3lc2bzmwr9wcp"; - name = "kjobwidgets-5.21.0.tar.xz"; - }; - }; - kjs = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/kjs-5.21.0.tar.xz"; - sha256 = "0vsgmz0yn1if11xfbw3f9p0kg2dv1rb26ging4fc860wv2j5gyln"; - name = "kjs-5.21.0.tar.xz"; - }; - }; - kjsembed = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/kjsembed-5.21.0.tar.xz"; - sha256 = "1nbc12m86s90y8f5gp62l4f9v4hqy8cmzw4sh0655sczd5vbkvki"; - name = "kjsembed-5.21.0.tar.xz"; - }; - }; - kmediaplayer = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/kmediaplayer-5.21.0.tar.xz"; - sha256 = "1hz7l95w57z73wg9ypbqpkxvkw42wgbymv67lg4vdxppplnkqriz"; - name = "kmediaplayer-5.21.0.tar.xz"; - }; - }; - knewstuff = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/knewstuff-5.21.0.tar.xz"; - sha256 = "05r11r9r789686i36y0x770f1pc7dwvqzdzclrx22r3lbz708pga"; - name = "knewstuff-5.21.0.tar.xz"; - }; - }; - knotifications = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/knotifications-5.21.0.tar.xz"; - sha256 = "0iia73ai2s5w8c3j1kmc8bb7yp1d2cv0yd2k3ilaxf3y9wgsp4x8"; - name = "knotifications-5.21.0.tar.xz"; - }; - }; - knotifyconfig = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/knotifyconfig-5.21.0.tar.xz"; - sha256 = "1mqal5ndr3v54lp7a9a2fm0c0hsiqb7kziw56rz0xd659328k9ix"; - name = "knotifyconfig-5.21.0.tar.xz"; - }; - }; - kpackage = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kpackage-5.21.0.tar.xz"; - sha256 = "024k15v0b24hivkjpn3gwn2wdfsng9ralz414i858qj0lm688xk5"; - name = "kpackage-5.21.0.tar.xz"; - }; - }; - kparts = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kparts-5.21.0.tar.xz"; - sha256 = "1s1nk1vdnb3g0ilv2b1m783h8g52yr9hpqz0vscj56m9cn2sf8rv"; - name = "kparts-5.21.0.tar.xz"; - }; - }; - kpeople = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kpeople-5.21.0.tar.xz"; - sha256 = "0nfpv4g9zvja9sv3zbpyksbvz1xa8lmncg48awrwbrmf83bxvcjq"; - name = "kpeople-5.21.0.tar.xz"; - }; - }; - kplotting = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kplotting-5.21.0.tar.xz"; - sha256 = "1hrpv1qg6qx4y4wvyq0rxfi0ngq1lgd5l3vwi00ri86xm1qbs4hk"; - name = "kplotting-5.21.0.tar.xz"; - }; - }; - kpty = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kpty-5.21.0.tar.xz"; - sha256 = "1vzgpmagjggssva6r57hd094dv3vxf3gpsr3xpvspa9l1mk4d35c"; - name = "kpty-5.21.0.tar.xz"; - }; - }; - kross = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/kross-5.21.0.tar.xz"; - sha256 = "0c1gbaifzswz4dcdwzka5mnlm07i463dpwc2fihmzn67skm4ybix"; - name = "kross-5.21.0.tar.xz"; - }; - }; - krunner = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/portingAids/krunner-5.21.0.tar.xz"; - sha256 = "1jn8fr83c71kz25yzd1qay9as6dvzl1xvlg1vyspdifxg43vqzq4"; - name = "krunner-5.21.0.tar.xz"; - }; - }; - kservice = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kservice-5.21.0.tar.xz"; - sha256 = "19cnapz23ji5p01r9rgj91rzph3mqqrmnfwprmi9p3h2w68njhv6"; - name = "kservice-5.21.0.tar.xz"; - }; - }; - ktexteditor = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/ktexteditor-5.21.0.tar.xz"; - sha256 = "1m9zipx5kisxsy037py709c2ri5qvix6n362l981kbbvcgkpiaq2"; - name = "ktexteditor-5.21.0.tar.xz"; - }; - }; - ktextwidgets = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/ktextwidgets-5.21.0.tar.xz"; - sha256 = "11nsi6j9b2678bqaa0ykp8as5lw1v9421b73dd1qxqrpdqfkxyzn"; - name = "ktextwidgets-5.21.0.tar.xz"; - }; - }; - kunitconversion = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kunitconversion-5.21.0.tar.xz"; - sha256 = "03vnls5df0c2bqyw9a04hlc3cn34y6xwx693klh27jmm37r776yh"; - name = "kunitconversion-5.21.0.tar.xz"; - }; - }; - kwallet = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kwallet-5.21.0.tar.xz"; - sha256 = "1rmfy21r2p79gwg1kq26g2fqnclbsww9rz3py368pk4s1lrzafii"; - name = "kwallet-5.21.0.tar.xz"; - }; - }; - kwidgetsaddons = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kwidgetsaddons-5.21.0.tar.xz"; - sha256 = "1gqyc0j77sm6i2511qnz0sllmfxjgjb9qpi8551np16zviqa52k7"; - name = "kwidgetsaddons-5.21.0.tar.xz"; - }; - }; - kwindowsystem = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kwindowsystem-5.21.0.tar.xz"; - sha256 = "13lfwpw5a4in0mp5y8d15jg6xhhrka2qmw73wrdzcvj22n6ldzzi"; - name = "kwindowsystem-5.21.0.tar.xz"; - }; - }; - kxmlgui = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kxmlgui-5.21.0.tar.xz"; - sha256 = "1cb6n016ffvxy8dbbhc3dwlzdqpq0pbvly416qlvlc1lv70lxyfj"; - name = "kxmlgui-5.21.0.tar.xz"; - }; - }; - kxmlrpcclient = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/kxmlrpcclient-5.21.0.tar.xz"; - sha256 = "082qpnvgm9r81iip9akakbf5rqmxb0r8y6gp7jk49q29lvkrx1kh"; - name = "kxmlrpcclient-5.21.0.tar.xz"; - }; - }; - modemmanager-qt = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/modemmanager-qt-5.21.0.tar.xz"; - sha256 = "1w0kjp2pmgss45g63930lbn1c018ld2snng6h40saxi76n8cv57n"; - name = "modemmanager-qt-5.21.0.tar.xz"; - }; - }; - networkmanager-qt = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/networkmanager-qt-5.21.0.tar.xz"; - sha256 = "0iy4a4qb1am2y7w03jg6n7q69c46y4gdpb72r6qjrnm9d4c2xsg1"; - name = "networkmanager-qt-5.21.0.tar.xz"; - }; - }; - oxygen-icons5 = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/oxygen-icons5-5.21.0.tar.xz"; - sha256 = "00qh1h3xx392hh73zdlknc1j9i2sck9ys74a9ffkf6an4rl0hws5"; - name = "oxygen-icons5-5.21.0.tar.xz"; - }; - }; - plasma-framework = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/plasma-framework-5.21.0.tar.xz"; - sha256 = "006k8y8dnar371b5qhikny6rda3vg810jy53sl9yps695j0y39c0"; - name = "plasma-framework-5.21.0.tar.xz"; - }; - }; - solid = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/solid-5.21.0.tar.xz"; - sha256 = "13r9zcf7sr6vg5wlqjms2q7vl4g8gpzqghp3y25ldglhj0z7252r"; - name = "solid-5.21.0.tar.xz"; - }; - }; - sonnet = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/sonnet-5.21.0.tar.xz"; - sha256 = "088b87r80lds6jr0lnqxv0bd4isy2mkcgrq7hxfni7r2h6vn3xcd"; - name = "sonnet-5.21.0.tar.xz"; - }; - }; - threadweaver = { - version = "5.21.0"; - src = fetchurl { - url = "${mirror}/stable/frameworks/5.21/threadweaver-5.21.0.tar.xz"; - sha256 = "17l23jj9bsixhg3gpv5sjrlc6w1kmjwlfb0z17drdkyzs5ak80ry"; - name = "threadweaver-5.21.0.tar.xz"; - }; - }; -} diff --git a/pkgs/desktops/kde-5/frameworks-5.21/attica.nix b/pkgs/desktops/kde-5/frameworks-5.22/attica.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/attica.nix rename to pkgs/desktops/kde-5/frameworks-5.22/attica.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/baloo.nix b/pkgs/desktops/kde-5/frameworks-5.22/baloo.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/baloo.nix rename to pkgs/desktops/kde-5/frameworks-5.22/baloo.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix b/pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/bluez-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.22/bluez-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix b/pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/breeze-icons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/breeze-icons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/nix-lib-path.patch rename to pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/nix-lib-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/series rename to pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/extra-cmake-modules/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh b/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh similarity index 96% rename from pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh rename to pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh index dde749b218c0..64b3ddf9abc0 100755 --- a/pkgs/desktops/kde-5/frameworks-5.21/fetchsrcs.sh +++ b/pkgs/desktops/kde-5/frameworks-5.22/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.kde.org/stable/frameworks/5.21/" +RELEASE_URL="http://download.kde.org/stable/frameworks/5.22/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix b/pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/frameworkintegration.nix rename to pkgs/desktops/kde-5/frameworks-5.22/frameworkintegration.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix b/pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kactivities-stats.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kactivities-stats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix b/pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kactivities.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kactivities.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix b/pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kapidox.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kapidox.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/karchive.nix b/pkgs/desktops/kde-5/frameworks-5.22/karchive.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/karchive.nix rename to pkgs/desktops/kde-5/frameworks-5.22/karchive.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kauth/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kauth/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kauth/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch b/pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kauth/kauth-policy-install.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kauth/kauth-policy-install.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kauth/series b/pkgs/desktops/kde-5/frameworks-5.22/kauth/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kauth/series rename to pkgs/desktops/kde-5/frameworks-5.22/kauth/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix b/pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kbookmarks.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kbookmarks.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcmutils/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kcmutils/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcmutils/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kcmutils/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix b/pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcodecs.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kcodecs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix b/pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcompletion.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kcompletion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix b/pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/0001-qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kconfigwidgets/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kconfigwidgets/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcoreaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kcoreaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix b/pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kcrash.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kcrash.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdbusaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdbusaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdeclarative.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdeclarative.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kded.nix b/pkgs/desktops/kde-5/frameworks-5.22/kded.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kded.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kded.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch b/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/nix-kde-include-dir.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/nix-kde-include-dir.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series b/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/series rename to pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdelibs4support/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.22/kdelibs4support/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdesignerplugin.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdesu.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdesu.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdnssd.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdnssd.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdoctools/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kdoctools/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch b/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdoctools/kdoctools-no-find-docbook-xml.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kdoctools/kdoctools-no-find-docbook-xml.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kdoctools/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.22/kdoctools/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kemoticons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kemoticons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch b/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/cmake-install-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/cmake-install-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series b/pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kfilemetadata/series rename to pkgs/desktops/kde-5/frameworks-5.22/kfilemetadata/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix b/pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kglobalaccel.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kglobalaccel.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kguiaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kguiaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/khtml.nix b/pkgs/desktops/kde-5/frameworks-5.22/khtml.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/khtml.nix rename to pkgs/desktops/kde-5/frameworks-5.22/khtml.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix b/pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/ki18n.nix rename to pkgs/desktops/kde-5/frameworks-5.22/ki18n.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch b/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default-theme-breeze.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default-theme-breeze.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series b/pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kiconthemes/series rename to pkgs/desktops/kde-5/frameworks-5.22/kiconthemes/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix b/pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kidletime.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kidletime.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix b/pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kimageformats.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kimageformats.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kinit/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kinit/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch b/pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kinit/kinit-libpath.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kinit/kinit-libpath.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kinit/series b/pkgs/desktops/kde-5/frameworks-5.22/kinit/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kinit/series rename to pkgs/desktops/kde-5/frameworks-5.22/kinit/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix similarity index 96% rename from pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix index cfa597e9cd10..7e4317a3f099 100644 --- a/pkgs/desktops/kde-5/frameworks-5.21/kio/default.nix +++ b/pkgs/desktops/kde-5/frameworks-5.22/kio/default.nix @@ -22,7 +22,6 @@ kdeFramework { wrapQtProgram "$out/bin/kcookiejar5" wrapQtProgram "$out/bin/ktelnetservice5" wrapQtProgram "$out/bin/ktrash5" - wrapQtProgram "$out/bin/kmailservice5" wrapQtProgram "$out/bin/protocoltojson" ''; } diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch b/pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kio/samba-search-path.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kio/samba-search-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kio/series b/pkgs/desktops/kde-5/frameworks-5.22/kio/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kio/series rename to pkgs/desktops/kde-5/frameworks-5.22/kio/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix b/pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kitemmodels.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kitemmodels.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix b/pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kitemviews.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kitemviews.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kjobwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kjobwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjs.nix b/pkgs/desktops/kde-5/frameworks-5.22/kjs.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kjs.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kjs.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix b/pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kjsembed.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kjsembed.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix b/pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kmediaplayer.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kmediaplayer.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix b/pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/knewstuff.nix rename to pkgs/desktops/kde-5/frameworks-5.22/knewstuff.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix b/pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/knotifications.nix rename to pkgs/desktops/kde-5/frameworks-5.22/knotifications.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix b/pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/knotifyconfig.nix rename to pkgs/desktops/kde-5/frameworks-5.22/knotifyconfig.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch b/pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpackage/allow-external-paths.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kpackage/allow-external-paths.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpackage/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kpackage/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpackage/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kpackage/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpackage/series b/pkgs/desktops/kde-5/frameworks-5.22/kpackage/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpackage/series rename to pkgs/desktops/kde-5/frameworks-5.22/kpackage/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kparts.nix b/pkgs/desktops/kde-5/frameworks-5.22/kparts.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kparts.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kparts.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix b/pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpeople.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kpeople.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix b/pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kplotting.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kplotting.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kpty.nix b/pkgs/desktops/kde-5/frameworks-5.22/kpty.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kpty.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kpty.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kross.nix b/pkgs/desktops/kde-5/frameworks-5.22/kross.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kross.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kross.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/krunner.nix b/pkgs/desktops/kde-5/frameworks-5.22/krunner.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/krunner.nix rename to pkgs/desktops/kde-5/frameworks-5.22/krunner.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kservice/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kservice/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch b/pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kservice/no-canonicalize-path.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kservice/no-canonicalize-path.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch b/pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kservice/qdiriterator-follow-symlinks.patch rename to pkgs/desktops/kde-5/frameworks-5.22/kservice/qdiriterator-follow-symlinks.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.22/kservice/series b/pkgs/desktops/kde-5/frameworks-5.22/kservice/series new file mode 100644 index 000000000000..3ce22dbd35a0 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.22/kservice/series @@ -0,0 +1,2 @@ +qdiriterator-follow-symlinks.patch +no-canonicalize-path.patch \ No newline at end of file diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kservice/setup-hook.sh rename to pkgs/desktops/kde-5/frameworks-5.22/kservice/setup-hook.sh diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix b/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/default.nix rename to pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/default.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch b/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/no-qcoreapplication.patch rename to pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/no-qcoreapplication.patch diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series b/pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/ktexteditor/series rename to pkgs/desktops/kde-5/frameworks-5.22/ktexteditor/series diff --git a/pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix b/pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/ktextwidgets.nix rename to pkgs/desktops/kde-5/frameworks-5.22/ktextwidgets.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix b/pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kunitconversion.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kunitconversion.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix b/pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kwallet.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kwallet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix b/pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kwidgetsaddons.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kwidgetsaddons.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix b/pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kwindowsystem.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kwindowsystem.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix b/pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kxmlgui.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kxmlgui.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix b/pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/kxmlrpcclient.nix rename to pkgs/desktops/kde-5/frameworks-5.22/kxmlrpcclient.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/modemmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.22/modemmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix b/pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/networkmanager-qt.nix rename to pkgs/desktops/kde-5/frameworks-5.22/networkmanager-qt.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix b/pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/oxygen-icons5.nix rename to pkgs/desktops/kde-5/frameworks-5.22/oxygen-icons5.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix b/pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/plasma-framework.nix rename to pkgs/desktops/kde-5/frameworks-5.22/plasma-framework.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/solid.nix b/pkgs/desktops/kde-5/frameworks-5.22/solid.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/solid.nix rename to pkgs/desktops/kde-5/frameworks-5.22/solid.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix b/pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/sonnet.nix rename to pkgs/desktops/kde-5/frameworks-5.22/sonnet.nix diff --git a/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix new file mode 100644 index 000000000000..eecb2431f807 --- /dev/null +++ b/pkgs/desktops/kde-5/frameworks-5.22/srcs.nix @@ -0,0 +1,581 @@ +# 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.0"; + src = fetchurl { + url = "${mirror}/stable/frameworks/5.22/ki18n-5.22.0.tar.xz"; + sha256 = "0881y42h5k8ik6lf7pfsylch1ldksc5m4qm3gvshp8aazic8iyzd"; + name = "ki18n-5.22.0.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.21/threadweaver.nix b/pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix similarity index 100% rename from pkgs/desktops/kde-5/frameworks-5.21/threadweaver.nix rename to pkgs/desktops/kde-5/frameworks-5.22/threadweaver.nix diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 46f6a9138e1a..8a05401796e5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15859,7 +15859,7 @@ in kde5 = let - frameworks = import ../desktops/kde-5/frameworks-5.21 { inherit pkgs; }; + frameworks = import ../desktops/kde-5/frameworks-5.22 { inherit pkgs; }; plasma = import ../desktops/kde-5/plasma-5.6 { inherit pkgs; }; applications = import ../desktops/kde-5/applications-16.04 { inherit pkgs; }; merged = self: From 4eebb77df261457695b6580fcd2b56b7c04d93e6 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Tue, 7 Jun 2016 06:24:23 -0500 Subject: [PATCH 336/520] Revert "nixos/kde5: install oxygen-fonts and noto-fonts" This reverts commit 285061d50c1f0216a420a811d812e31ad4fe88a7. --- nixos/modules/services/x11/desktop-managers/kde5.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 55b89592bb86..538300f5793a 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -153,8 +153,7 @@ in then { GDK_PIXBUF_MODULE_FILE = "${pkgs.librsvg.out}/lib/gdk-pixbuf-2.0/2.10.0/loaders.cache"; } else { }); - # Plasma uses Noto Sans and Oxygen Mono by default - fonts.fonts = [ kde5.oxygen-fonts pkgs.noto-fonts ]; + fonts.fonts = [ (kde5.oxygen-fonts or pkgs.noto-fonts) ]; programs.ssh.askPassword = "${kde5.ksshaskpass.out}/bin/ksshaskpass"; From 027ca71156bc3ca5a9fbdab2f831f936305522dd Mon Sep 17 00:00:00 2001 From: Kjetil Orbekk Date: Tue, 7 Jun 2016 07:19:11 -0400 Subject: [PATCH 337/520] fish: fix completions Completion was broken because some variables were resolved at installation time instead of being added to the script. Closes #16039. --- pkgs/shells/fish/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 6dd8d5290a4a..62ec6194fcd8 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -75,7 +75,7 @@ stdenv.mkDerivation rec { # make fish pick up completions from nix profile if status --is-interactive set -l profiles (echo $NIX_PROFILES | ${coreutils}/bin/tr ' ' '\n') - set fish_complete_path $profiles"/share/fish/vendor_completions.d" $fish_complete_path + set fish_complete_path \$profiles"/share/fish/vendor_completions.d" \$fish_complete_path end EOF ''; From 72899d92d008b870e0bce46a30ff7fb896a927f0 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Tue, 7 Jun 2016 15:04:24 +0200 Subject: [PATCH 338/520] grsecurity: 4.5.5-201605291201 -> 4.5.6-201606051644 --- pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.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-4.5.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix index 84d48865bcb7..94561ed2e549 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.5"; + version = "4.5.6"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99"; + sha256 = "1bdyviimgnc4zbgd9v1xk87sj9h8cprjykifriddwslqxyr2yh0y"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 820e9ed6e264..59fa93480cfd 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -95,9 +95,9 @@ rec { grsecurity_4_5 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_5; patches = [ grsecurity_fix_path_4_5 ]; - kversion = "4.5.5"; - revision = "201605291201"; - sha256 = "0r66l5zmvlb7phlvi1pma7vzj78krl23k8lcpdqlx27szr361sda"; + kversion = "4.5.6"; + revision = "201606051644"; + sha256 = "1ympym3kpaychd1qsb10hn5ffv8w83ccfmb631hj4jk69xwrry9m"; }; grsecurity_latest = grsecurity_4_5; From c9e315861ec69366ecc6d22a8e8ee44448d8c811 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Tue, 7 Jun 2016 14:19:03 +0200 Subject: [PATCH 339/520] goPackages: use Go 1.6 by default --- pkgs/servers/consul/ui.nix | 6 +++--- pkgs/top-level/all-packages.nix | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pkgs/servers/consul/ui.nix b/pkgs/servers/consul/ui.nix index deadd6404eae..684412846f01 100644 --- a/pkgs/servers/consul/ui.nix +++ b/pkgs/servers/consul/ui.nix @@ -1,4 +1,4 @@ -{ stdenv, go16Packages, ruby, bundlerEnv, zip }: +{ stdenv, goPackages, ruby, bundlerEnv, zip }: let # `sass` et al @@ -11,9 +11,9 @@ let in stdenv.mkDerivation { - name = "consul-ui-${go16Packages.consul.rev}"; + name = "consul-ui-${goPackages.consul.rev}"; - src = go16Packages.consul.src; + src = goPackages.consul.src; buildInputs = [ ruby gems zip ]; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 27a935eed119..dba34976a672 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -666,7 +666,7 @@ in cabal2nix = self.haskellPackages.cabal2nix; - caddy = go16Packages.caddy.bin // { outputs = [ "bin" ]; }; + caddy = goPackages.caddy.bin // { outputs = [ "bin" ]; }; capstone = callPackage ../development/libraries/capstone { }; @@ -702,13 +702,13 @@ in clib = callPackage ../tools/package-management/clib { }; - consul = go16Packages.consul.bin // { outputs = [ "bin" ]; }; + consul = goPackages.consul.bin // { outputs = [ "bin" ]; }; consul-ui = callPackage ../servers/consul/ui.nix { }; - consul-alerts = go16Packages.consul-alerts.bin // { outputs = [ "bin" ]; }; + consul-alerts = goPackages.consul-alerts.bin // { outputs = [ "bin" ]; }; - consul-template = go16Packages.consul-template.bin // { outputs = [ "bin" ]; }; + consul-template = goPackages.consul-template.bin // { outputs = [ "bin" ]; }; corosync = callPackage ../servers/corosync { }; @@ -811,7 +811,7 @@ in gist = callPackage ../tools/text/gist { }; - glide = go16Packages.glide.bin // { outputs = [ "bin" ]; }; + glide = goPackages.glide.bin // { outputs = [ "bin" ]; }; gmic = callPackage ../tools/graphics/gmic { }; @@ -9603,7 +9603,7 @@ in overrides = (config.goPackageOverrides or (p: {})) pkgs; }; - goPackages = go15Packages; + goPackages = go16Packages; go2nix = goPackages.go2nix.bin // { outputs = [ "bin" ]; }; @@ -14257,7 +14257,7 @@ in syncthing = callPackage ../applications/networking/syncthing { }; - syncthing012 = go15Packages.syncthing012.bin // { outputs = [ "bin" ]; }; + syncthing012 = goPackages.syncthing012.bin // { outputs = [ "bin" ]; }; # linux only by now synergy = callPackage ../applications/misc/synergy { }; @@ -14842,7 +14842,7 @@ in GConf2 = gnome2.GConf; }; - xmpp-client = go15Packages.xmpp-client.bin // { outputs = [ "bin" ]; }; + xmpp-client = goPackages.xmpp-client.bin // { outputs = [ "bin" ]; }; libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { }; @@ -16732,7 +16732,7 @@ in sqsh = callPackage ../development/tools/sqsh { }; - terraform = go16Packages.terraform.bin // { outputs = [ "bin" ]; }; + terraform = goPackages.terraform.bin // { outputs = [ "bin" ]; }; tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; @@ -16814,7 +16814,7 @@ in utf8proc = callPackage ../development/libraries/utf8proc { }; - vault = go16Packages.vault.bin // { outputs = [ "bin" ]; }; + vault = goPackages.vault.bin // { outputs = [ "bin" ]; }; vbam = callPackage ../misc/emulators/vbam {}; From d39d085adf8b8dd66a64a07199ad7e1080ad9da6 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 7 Jun 2016 01:53:45 +0100 Subject: [PATCH 340/520] xgeometry-select: init at 7e7361e --- pkgs/tools/X11/xgeometry-select/default.nix | 33 +++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 35 insertions(+) create mode 100644 pkgs/tools/X11/xgeometry-select/default.nix diff --git a/pkgs/tools/X11/xgeometry-select/default.nix b/pkgs/tools/X11/xgeometry-select/default.nix new file mode 100644 index 000000000000..1a7ff6872d5e --- /dev/null +++ b/pkgs/tools/X11/xgeometry-select/default.nix @@ -0,0 +1,33 @@ +{ stdenv, fetchurl, libX11 }: + +stdenv.mkDerivation rec { + name = "${baseName}-${version}"; + baseName = "xgeometry-select"; + version = "0.1"; + + src = fetchurl { + url = "https://gist.githubusercontent.com/obadz/7e008b1f803c4cdcfaf7321c78bcbe92/raw/7e7361e71ff0f74655ee92bd6d2c042f8586f2ae/xgeometry-select.c"; + sha256 = "0s7kirgh5iz91m3qy8xiq0j4gljy8zrcnylf4szl5h0lrsaqj7ya"; + }; + + phases = [ "buildPhase" "installPhase" ]; + + buildInputs = [ libX11 ]; + + buildPhase = '' + gcc -Wall -lX11 ${src} -o ${baseName} + ''; + + installPhase = '' + mkdir -p $out/bin + mv -v ${baseName} $out/bin + ''; + + meta = with stdenv.lib; { + description = "Select a region with mouse and prints geometry information (x/y/w/h)"; + homepage = https://bbs.archlinux.org/viewtopic.php?pid=660837; + license = licenses.unknown; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a5d69612867d..e3cdc1137bc7 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9408,6 +9408,8 @@ in xgboost = callPackage ../development/libraries/xgboost { }; + xgeometry-select = callPackage ../tools/X11/xgeometry-select { }; + # Avoid using this. It isn't really a wrapper anymore, but we keep the name. xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper { packages = [ From f3ebf1376284629b3da9ed57774a31ae79a7ec53 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 7 Jun 2016 09:57:07 -0400 Subject: [PATCH 341/520] kernel: 4.1.20 -> 4.1.25 --- pkgs/os-specific/linux/kernel/linux-4.1.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.1.nix b/pkgs/os-specific/linux/kernel/linux-4.1.nix index 57e239c1d094..1e8932ad598a 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.1.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.1.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.1.20"; + version = "4.1.25"; extraMeta.branch = "4.1"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1dpq8dgj351jzm7n6330a4xriz9dxv7d9wxzj9zn9q7ya22np9gs"; + sha256 = "0rfs5vn9ggymd426jr4gkhgk9bnn1g9c5x7k3xgfh4i08mq1920f"; }; kernelPatches = args.kernelPatches; From a57cbf6546ddf226a4ea3201fd72d260c7154d3e Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 7 Jun 2016 09:57:47 -0400 Subject: [PATCH 342/520] kernel: 4.4.11 -> 4.4.12 --- pkgs/os-specific/linux/kernel/linux-4.4.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.4.nix b/pkgs/os-specific/linux/kernel/linux-4.4.nix index e89a53d21bfc..4bc501a3ba27 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.4.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.4.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.4.11"; + version = "4.4.12"; extraMeta.branch = "4.4"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1c0lqk2q4hf8jx6myhcqgh2509d36wx87l5k5cl3xfsnrzrpclrs"; + sha256 = "1r96jyvm44615f5zh5sn04zx7y8bllpx12lx1zjkns66i4ddv0rq"; }; kernelPatches = args.kernelPatches; From 8f4755a0ae4d70577a62238f93ddf4849755212c Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 7 Jun 2016 09:58:24 -0400 Subject: [PATCH 343/520] kernel: 4.5.5 -> 4.5.6 --- pkgs/os-specific/linux/kernel/linux-4.5.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.5.nix b/pkgs/os-specific/linux/kernel/linux-4.5.nix index 84d48865bcb7..94561ed2e549 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.5.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.5"; + version = "4.5.6"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "0l7wnilqqhg3im2v04g6k2x621yckdb9bpfh8s8jq9l2fixjln99"; + sha256 = "1bdyviimgnc4zbgd9v1xk87sj9h8cprjykifriddwslqxyr2yh0y"; }; kernelPatches = args.kernelPatches; From 269b7d30a7ab049bd6dd0bb575f6cd9e4a601425 Mon Sep 17 00:00:00 2001 From: Tim Steinbach Date: Tue, 7 Jun 2016 09:59:19 -0400 Subject: [PATCH 344/520] kernel: 4.6.0 -> 4.6.1 --- pkgs/os-specific/linux/kernel/linux-4.6.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/os-specific/linux/kernel/linux-4.6.nix b/pkgs/os-specific/linux/kernel/linux-4.6.nix index 0a85af58473a..b93550b6ea63 100644 --- a/pkgs/os-specific/linux/kernel/linux-4.6.nix +++ b/pkgs/os-specific/linux/kernel/linux-4.6.nix @@ -1,13 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.6"; - modDirVersion = "4.6.0"; + version = "4.6.1"; extraMeta.branch = "4.6"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "a93771cd5a8ad27798f22e9240538dfea48d3a2bf2a6a6ab415de3f02d25d866"; + sha256 = "073vpwidl28ka3y2rd7n6dcckrppi5kalh48vsz980k9z12g9pfm"; }; kernelPatches = args.kernelPatches; From 66077b9a36e85aea9496dae7d1bd33c6a6648abd Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 17:23:05 +0300 Subject: [PATCH 345/520] gpaste: fix evaluation --- pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix index 0c6d4a9a5403..2dc93b6843f9 100644 --- a/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix +++ b/pkgs/desktops/gnome-3/3.20/misc/gpaste/default.nix @@ -11,7 +11,7 @@ stdenv.mkDerivation rec { }; buildInputs = [ intltool autoreconfHook pkgconfig vala glib - gtk3 gnome3.gnome_control_center dbus.libs + gtk3 gnome3.gnome_control_center dbus clutter pango appstream-glib makeWrapper systemd gobjectIntrospection ]; preConfigure = "intltoolize -f"; From cfc7dba1ce414bac8e42a5da90d3802bbf299eed Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 17:08:20 +0300 Subject: [PATCH 346/520] opencv: 2.4.11 -> 2.4.13 Split feature flags; avoid bundled libraries. --- pkgs/development/libraries/opencv/default.nix | 59 +++++++++++++++---- 1 file changed, 48 insertions(+), 11 deletions(-) diff --git a/pkgs/development/libraries/opencv/default.nix b/pkgs/development/libraries/opencv/default.nix index 4ce1787dbac6..82d597a17c9a 100644 --- a/pkgs/development/libraries/opencv/default.nix +++ b/pkgs/development/libraries/opencv/default.nix @@ -1,25 +1,62 @@ -{ lib, stdenv, fetchurl, cmake, gtk, libjpeg, libpng, libtiff, jasper, ffmpeg -, fetchpatch, pkgconfig, gstreamer, xineLib, glib, python27, python27Packages, unzip -, enableBloat ? false }: +{ lib, stdenv, fetchFromGitHub, cmake, pkgconfig, unzip +, zlib +, enablePython ? false, pythonPackages +, enableGtk2 ? false, gtk2 +, enableJPEG ? true, libjpeg +, enablePNG ? true, libpng +, enableTIFF ? true, libtiff +, enableEXR ? true, openexr, ilmbase +, enableJPEG2K ? true, jasper +, enableFfmpeg ? false, ffmpeg +, enableGStreamer ? false, gst_all +, enableEigen ? false, eigen +}: -let v = "2.4.11"; in +let + opencvFlag = name: enabled: "-DWITH_${name}=${if enabled then "ON" else "OFF"}"; + +in stdenv.mkDerivation rec { - name = "opencv-${v}"; + name = "opencv-${version}"; + version = "2.4.13"; - src = fetchurl { - url = "mirror://sourceforge/opencvlibrary/opencv-${v}.zip"; - sha256 = "1shz5g7ahvbb41gprxzvavllf235qhx0fpkjd7iwa3gv83ym46dg"; + src = fetchFromGitHub { + owner = "Itseez"; + repo = "opencv"; + rev = version; + sha256 = "1k29rxlvrhgc5hadg2nc50wa3d2ls9ndp373257p756a0aividxh"; }; buildInputs = - [ unzip libjpeg libpng libtiff ] - ++ lib.optionals enableBloat [ gtk glib jasper ffmpeg xineLib gstreamer python27 python27Packages.numpy ]; + [ zlib ] + ++ lib.optional enableGtk2 gtk2 + ++ lib.optional enableJPEG libjpeg + ++ lib.optional enablePNG libpng + ++ lib.optional enableTIFF libtiff + ++ lib.optionals enableEXR [ openexr ilmbase ] + ++ lib.optional enableJPEG2K jasper + ++ lib.optional enableFfmpeg ffmpeg + ++ lib.optionals enableGStreamer (with gst_all; [ gstreamer gst-plugins-base ]) + ++ lib.optional enableEigen eigen + ; - nativeBuildInputs = [ cmake pkgconfig ]; + nativeBuildInputs = [ cmake pkgconfig unzip ]; + + NIX_CFLAGS_COMPILE = lib.optional enableEXR "-I${ilmbase}/include/OpenEXR"; + + cmakeFlags = [ + (opencvFlag "TIFF" enableTIFF) + (opencvFlag "JASPER" enableJPEG2K) + (opencvFlag "JPEG" enableJPEG) + (opencvFlag "PNG" enablePNG) + (opencvFlag "OPENEXR" enableEXR) + ]; enableParallelBuilding = true; + passthru = lib.optionalAttrs enablePython { pythonPath = []; }; + meta = { description = "Open Computer Vision Library with more than 500 algorithms"; homepage = http://opencv.org/; From f362f8d223015728108f739a4562f9f39eda586b Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 17:09:22 +0300 Subject: [PATCH 347/520] opencv3: 3.0.0 -> 3.1.0 Split feature flags; avoid bundled libraries. --- pkgs/development/libraries/opencv/3.x.nix | 89 +++++++++++++++++------ 1 file changed, 67 insertions(+), 22 deletions(-) diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index 4a58ae43bb7a..f6ec1be09492 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -1,54 +1,99 @@ -{ lib, stdenv, fetchurl, fetchzip, cmake, gtk, libjpeg, libpng, libtiff, jasper, ffmpeg -, fetchpatch, pkgconfig, gstreamer, xineLib, glib, python27, python27Packages, unzip +{ lib, stdenv, fetchurl, fetchFromGitHub, cmake, pkgconfig, unzip +, zlib , enableIpp ? false , enableContrib ? false -, enableBloat ? false }: +, enablePython ? false, pythonPackages +, enableGtk2 ? false, gtk2 +, enableGtk3 ? false, gtk3 +, enableJPEG ? true, libjpeg +, enablePNG ? true, libpng +, enableTIFF ? true, libtiff +, enableWebP ? true, libwebp +, enableEXR ? true, openexr, ilmbase +, enableJPEG2K ? true, jasper +, enableFfmpeg ? false, ffmpeg +, enableGStreamer ? false, gst_all_1 +, enableEigen ? false, eigen +}: let - v = "3.0.0"; + version = "3.1.0"; - contribSrc = fetchzip { - url = "https://github.com/Itseez/opencv_contrib/archive/3.0.0.tar.gz"; - sha256 = "1gx7f9v85hmzh37s0zaillg7bs6cy9prm3wl0jb5zc5zrf9d8bm8"; - name = "opencv-contrib-3.0.0-src"; + contribSrc = fetchFromGitHub { + owner = "Itseez"; + repo = "opencv_contrib"; + rev = version; + sha256 = "153yx62f34gl3zd6vgxv0fj3wccwmq78lnawlda1f6xhrclg9bax"; }; + opencvFlag = name: enabled: "-DWITH_${name}=${if enabled then "ON" else "OFF"}"; + in stdenv.mkDerivation rec { - name = "opencv-${v}"; + name = "opencv-${version}"; + inherit version; - src = fetchurl { - url = "https://github.com/Itseez/opencv/archive/${v}.zip"; - sha256 = "00dh7wvgkflz22liqd10fma8m3395lb3l3rgawnn5wlnz6i4w287"; + src = fetchFromGitHub { + owner = "Itseez"; + repo = "opencv"; + rev = version; + sha256 = "1l0w12czavgs0wzw1c594g358ilvfg2fn32cn8z7pv84zxj4g429"; }; postPatch = - let ippicv = fetchurl { - url = "http://sourceforge.net/projects/opencvlibrary/files/3rdparty/ippicv/${ippicvName}"; + let ippicvVersion = "20151201"; + ippicvPlatform = if stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux" then "linux" + else throw "ICV is not available for this platform (or not yet supported by this package)"; + ippicvHash = if ippicvPlatform == "linux" then "808b791a6eac9ed78d32a7666804320e" + else throw "ippicvHash: impossible"; + + ippicvName = "ippicv_${ippicvPlatform}_${ippicvVersion}.tgz"; + ippicvArchive = "3rdparty/ippicv/downloads/linux-${ippicvHash}/${ippicvName}"; + ippicv = fetchurl { + url = "https://github.com/Itseez/opencv_3rdparty/raw/ippicv/master_${ippicvVersion}/ippicv/${ippicvName}"; md5 = ippicvHash; }; - ippicvName = "ippicv_linux_20141027.tgz"; - ippicvHash = "8b449a536a2157bcad08a2b9f266828b"; - ippicvArchive = "3rdparty/ippicv/downloads/linux-${ippicvHash}/${ippicvName}"; - in stdenv.lib.optionalString enableIpp + in lib.optionalString enableIpp '' mkdir -p $(dirname ${ippicvArchive}) ln -s ${ippicv} ${ippicvArchive} ''; buildInputs = - [ unzip libjpeg libpng libtiff ] - ++ lib.optionals enableBloat [ gtk glib jasper ffmpeg xineLib gstreamer python27 python27Packages.numpy ]; + [ zlib ] + ++ lib.optionals enablePython [ pythonPackages.python pythonPackages.numpy ] + ++ lib.optional enableGtk2 gtk2 + ++ lib.optional enableGtk3 gtk3 + ++ lib.optional enableJPEG libjpeg + ++ lib.optional enablePNG libpng + ++ lib.optional enableTIFF libtiff + ++ lib.optional enableWebP libwebp + ++ lib.optionals enableEXR [ openexr ilmbase ] + ++ lib.optional enableJPEG2K jasper + ++ lib.optional enableFfmpeg ffmpeg + ++ lib.optionals enableGStreamer (with gst_all_1; [ gstreamer gst-plugins-base ]) + ++ lib.optional enableEigen eigen + ; - nativeBuildInputs = [ cmake pkgconfig ]; + nativeBuildInputs = [ cmake pkgconfig unzip ]; + + NIX_CFLAGS_COMPILE = lib.optional enableEXR "-I${ilmbase}/include/OpenEXR"; cmakeFlags = [ "-DWITH_IPP=${if enableIpp then "ON" else "OFF"}" - ] ++ stdenv.lib.optionals enableContrib [ "-DOPENCV_EXTRA_MODULES_PATH=${contribSrc}/modules" ]; + (opencvFlag "TIFF" enableTIFF) + (opencvFlag "JASPER" enableJPEG2K) + (opencvFlag "WEBP" enableWebP) + (opencvFlag "JPEG" enableJPEG) + (opencvFlag "PNG" enablePNG) + (opencvFlag "OPENEXR" enableEXR) + ] ++ lib.optionals enableContrib [ "-DOPENCV_EXTRA_MODULES_PATH=${contribSrc}/modules" ]; enableParallelBuilding = true; + passthru = lib.optionalAttrs enablePython { pythonPath = []; }; + meta = { description = "Open Computer Vision Library with more than 500 algorithms"; homepage = http://opencv.org/; From 423a36f9907137f8dba316532d9656b427507f39 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 17:18:56 +0300 Subject: [PATCH 348/520] opencv: add version with Python support to pythonPackages --- pkgs/top-level/python-packages.nix | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 2d375ec9de96..d52e2ddeec0e 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -4062,6 +4062,16 @@ in modules // { }; }; + opencv = pkgs.opencv.override { + enablePython = true; + pythonPackages = self; + }; + + opencv3 = pkgs.opencv3.override { + enablePython = true; + pythonPackages = self; + }; + openstackclient = buildPythonPackage rec { name = "openstackclient-${version}"; version = "1.7.1"; @@ -25954,13 +25964,7 @@ in modules // { # thumborPexif pexif libthumbor - (pkgs.opencv.override { - gtk = null; - glib = null; - xineLib = null; - gstreamer = null; - ffmpeg = null; - }) + opencv ] ++ optionals (!isPy3k) [ futures ]; src = pkgs.fetchurl { From ca067ff248766e8ed6586850010212a279d0e405 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 7 Jun 2016 17:55:28 +0100 Subject: [PATCH 349/520] xgeometry-select: remove license field. license is unknown. --- pkgs/tools/X11/xgeometry-select/default.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/pkgs/tools/X11/xgeometry-select/default.nix b/pkgs/tools/X11/xgeometry-select/default.nix index 1a7ff6872d5e..76493dfb73ea 100644 --- a/pkgs/tools/X11/xgeometry-select/default.nix +++ b/pkgs/tools/X11/xgeometry-select/default.nix @@ -26,7 +26,6 @@ stdenv.mkDerivation rec { meta = with stdenv.lib; { description = "Select a region with mouse and prints geometry information (x/y/w/h)"; homepage = https://bbs.archlinux.org/viewtopic.php?pid=660837; - license = licenses.unknown; maintainers = with maintainers; [ obadz ]; platforms = platforms.linux; }; From 367ddbdcd59dc09ce6a2ea3d0c46c07c92b4fa1d Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Tue, 7 Jun 2016 00:55:33 -0700 Subject: [PATCH 350/520] icon: Init at 9.5.1 Icon is a very high level general-purpose programming language with extensive features for processing strings (text) and data structures. Closes #16036. --- .../interpreters/icon-lang/default.nix | 29 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 31 insertions(+) create mode 100644 pkgs/development/interpreters/icon-lang/default.nix diff --git a/pkgs/development/interpreters/icon-lang/default.nix b/pkgs/development/interpreters/icon-lang/default.nix new file mode 100644 index 000000000000..3bec73ea0369 --- /dev/null +++ b/pkgs/development/interpreters/icon-lang/default.nix @@ -0,0 +1,29 @@ +{ stdenv, fetchFromGitHub, libX11, libXt }: + +stdenv.mkDerivation rec { + name = "icon-lang-${version}"; + version = "9.5.1"; + src = fetchFromGitHub { + rev = "39d7438e8d23ccfe20c0af8bbbf61e34d9c715e9"; + owner = "gtownsend"; + repo = "icon"; + sha256 = "1gkvj678ldlr1m5kjhx6zpmq11nls8kxa7pyy64whgakfzrypynw"; + }; + buildInputs = [ libX11 libXt ]; + + configurePhase = '' + make X-Configure name=linux + ''; + + installPhase = '' + make Install dest=$out + ''; + + meta = with stdenv.lib; { + description = ''A very high level general-purpose programming language''; + maintainers = with maintainers; [ vrthra ]; + platforms = platforms.linux; + license = licenses.publicDomain; + homepage = https://www.cs.arizona.edu/icon/; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 156e579fcb34..ec0e5547ce21 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7078,6 +7078,8 @@ in gio-sharp = callPackage ../development/libraries/gio-sharp { }; + icon-lang = callPackage ../development/interpreters/icon-lang { }; + libgit2 = callPackage ../development/libraries/git2 ( stdenv.lib.optionalAttrs stdenv.isDarwin { inherit (darwin) libiconv; From 48f26ba8dd6c097f135d485291399bca6351d121 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:15:18 +0300 Subject: [PATCH 351/520] avrdudess: Use makeLibraryPath This affected the hash, presumably it now references correct output of gtk. --- pkgs/applications/misc/avrdudess/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/avrdudess/default.nix b/pkgs/applications/misc/avrdudess/default.nix index 64bca952ff58..1ac74712ff0f 100644 --- a/pkgs/applications/misc/avrdudess/default.nix +++ b/pkgs/applications/misc/avrdudess/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { cat >> "$out/bin/avrdudess" << __EOF__ #!${stdenv.shell} - export LD_LIBRARY_PATH="${gtk}/lib:${mono}/lib" + export LD_LIBRARY_PATH="${stdenv.lib.makeLibraryPath [gtk mono]}" # We need PATH from user env for xdg-open to find its tools, which # typically depend on the currently running desktop environment. export PATH="${avrgcclibc}/bin:${avrdude}/bin:${xdg_utils}/bin:\$PATH" From f4b360d932d354a758b06ad94584834d2a6a9bd2 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:16:15 +0300 Subject: [PATCH 352/520] kazam: Use makeLibraryPath This affected the hash, so presumably this fixes output references. --- pkgs/applications/video/kazam/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/video/kazam/default.nix b/pkgs/applications/video/kazam/default.nix index e841b5f9b2e2..6f0a811fe828 100644 --- a/pkgs/applications/video/kazam/default.nix +++ b/pkgs/applications/video/kazam/default.nix @@ -34,7 +34,7 @@ python3Packages.buildPythonApplication rec { preFixup = '' wrapProgram $out/bin/kazam \ --prefix GI_TYPELIB_PATH : "$GI_TYPELIB_PATH" \ - --prefix LD_LIBRARY_PATH ":" "${gtk3.out}/lib:${gst_all_1.gstreamer}/lib:${keybinder}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${stdenv.lib.makeLibraryPath [ gtk3 gst_all_1.gstreamer keybinder ]}" \ --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH" \ --prefix XDG_DATA_DIRS : "${gtk3.out}/share" \ --set GST_REGISTRY "/tmp/kazam.gstreamer.registry"; From dbb84ca705b4cc9414a15698d804ec8bbfd61a33 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:17:30 +0300 Subject: [PATCH 353/520] ipmiview: Use makeLibraryPath --- pkgs/applications/misc/ipmiview/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/misc/ipmiview/default.nix b/pkgs/applications/misc/ipmiview/default.nix index 6a111d48cee4..0afcbca4979f 100644 --- a/pkgs/applications/misc/ipmiview/default.nix +++ b/pkgs/applications/misc/ipmiview/default.nix @@ -14,9 +14,9 @@ stdenv.mkDerivation rec { buildInputs = [ patchelf makeWrapper ]; buildPhase = with xorg; '' - patchelf --set-rpath "${libX11}/lib:${libXext}/lib:${libXrender}/lib:${libXtst}/lib:${libXi}/lib" ./jre/lib/amd64/xawt/libmawt.so + patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ libX11 libXext libXrender libXtst libXi ]}" ./jre/lib/amd64/xawt/libmawt.so patchelf --set-rpath "${gcc.cc}/lib" ./libiKVM64.so - patchelf --set-rpath "${libXcursor}/lib:${libX11}/lib:${libXext}/lib:${libXrender}/lib:${libXtst}/lib:${libXi}/lib" --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./jre/bin/javaws + patchelf --set-rpath "${stdenv.lib.makeLibraryPath [ libXcursor libX11 libXext libXrender libXtst libXi ]}" --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./jre/bin/javaws patchelf --set-rpath "${gcc.cc}/lib:$out/jre/lib/amd64/jli" --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" ./jre/bin/java ''; From 84a38b0b0961444dbbb3a80350652eac5b602a96 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:17:54 +0300 Subject: [PATCH 354/520] impressive: Use makeLibraryPath --- pkgs/applications/office/impressive/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/office/impressive/default.nix b/pkgs/applications/office/impressive/default.nix index 75fdc703ec92..1c921925cea3 100644 --- a/pkgs/applications/office/impressive/default.nix +++ b/pkgs/applications/office/impressive/default.nix @@ -45,7 +45,7 @@ in (map (path: path + "/lib/${python.libPrefix}/site-packages") [ pillow pyopengl pygame setuptools ])} \ - --prefix LIBRARY_PATH ":" "${mesa}/lib:${freeglut}/lib" + --prefix LIBRARY_PATH ":" "${lib.makeLibraryPath [ mesa freeglut ]}" ''; meta = { From f1d83444a506e449440eb7e8dee2d87af02d668f Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:18:02 +0300 Subject: [PATCH 355/520] openmodelica: Use makeLibraryPath --- pkgs/applications/science/misc/openmodelica/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/misc/openmodelica/default.nix b/pkgs/applications/science/misc/openmodelica/default.nix index 5357ff09b21d..30e7fa6f50ff 100644 --- a/pkgs/applications/science/misc/openmodelica/default.nix +++ b/pkgs/applications/science/misc/openmodelica/default.nix @@ -34,7 +34,7 @@ stdenv.mkDerivation { for e in $(cd $out/bin && ls); do wrapProgram $out/bin/$e \ --prefix PATH : "${gnumake}/bin" \ - --prefix LIBRARY_PATH : "${liblapack}/lib:${blas}/lib" + --prefix LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [ liblapack blas ]}" done ''; From f2e6c25dc9c40732425668c8008df3b277df0f33 Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:18:10 +0300 Subject: [PATCH 356/520] fusionio: Use makeLibraryPath --- pkgs/os-specific/linux/fusionio/util.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/fusionio/util.nix b/pkgs/os-specific/linux/fusionio/util.nix index e77d596dc6f8..0f1e2748c889 100644 --- a/pkgs/os-specific/linux/fusionio/util.nix +++ b/pkgs/os-specific/linux/fusionio/util.nix @@ -18,7 +18,7 @@ stdenv.mkDerivation { cp -r $TMPDIR/{etc,usr/{bin,lib,share}} $out for BIN in $(find $out/bin -type f); do echo Patching $BIN - patchelf --set-interpreter "${glibc.out}/lib/ld-linux-x86-64.so.2" --set-rpath "${glibc.out}/lib:${gcc.cc}/lib:${libuuid}/lib:$out/lib" $BIN + patchelf --set-interpreter "${glibc.out}/lib/ld-linux-x86-64.so.2" --set-rpath "${stdenv.lib.makeLibraryPath [ glibc gcc.cc libuuid ] }:$out/lib" $BIN # Test our binary to see if it was correctly patched set +e From 1829c84009dd785046f2973f3618b5a6f07dfc0a Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:18:29 +0300 Subject: [PATCH 357/520] meteor: Use makeLibraryPath --- pkgs/servers/meteor/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/meteor/default.nix b/pkgs/servers/meteor/default.nix index 370a430ec1a6..82a5604bed84 100644 --- a/pkgs/servers/meteor/default.nix +++ b/pkgs/servers/meteor/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { popd substituteInPlace $out/tools/cli/main.js \ --replace "@INTERPRETER@" "$(cat $NIX_CC/nix-support/dynamic-linker)" \ - --replace "@RPATH@" "${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ + --replace "@RPATH@" "${lib.makeLibraryPath [ stdenv.cc.cc zlib ]}" \ --replace "@PATCHELF@" "${patchelf}/bin/patchelf" # Patch node. @@ -54,7 +54,7 @@ stdenv.mkDerivation rec { for p in $devBundle/mongodb/bin/mongo{,d}; do patchelf \ --set-interpreter $(cat $NIX_CC/nix-support/dynamic-linker) \ - --set-rpath "$(patchelf --print-rpath $p):${stdenv.cc.cc.lib}/lib:${zlib.out}/lib" \ + --set-rpath "$(patchelf --print-rpath $p):${lib.makeLibraryPath [ stdenv.cc.cc zlib ]}" \ $p done From 78122285c801e26b6d52f0d9bef76936fec90c7a Mon Sep 17 00:00:00 2001 From: Tuomas Tynkkynen Date: Tue, 7 Jun 2016 21:18:38 +0300 Subject: [PATCH 358/520] ums: Use makeLibraryPath --- pkgs/servers/ums/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/servers/ums/default.nix b/pkgs/servers/ums/default.nix index 6e1e8adb8f74..9bccd5b99fb0 100644 --- a/pkgs/servers/ums/default.nix +++ b/pkgs/servers/ums/default.nix @@ -20,7 +20,7 @@ stdenv.mkDerivation rec { mv $out/documentation /$out/doc makeWrapper "$out/UMS.sh" "$out/bin/ums" \ - --prefix LD_LIBRARY_PATH ":" "${libzen}/lib:${libmediainfo}/lib" \ + --prefix LD_LIBRARY_PATH ":" "${stdenv.lib.makeLibraryPath [ libzen libmediainfo] }" \ --set JAVA_HOME "${jre8}" ''; From 20f770d1f4fe892b101abf5735f0515a6918d2db Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Tue, 7 Jun 2016 21:26:33 +0300 Subject: [PATCH 359/520] opencv: propagate numpy dependency --- pkgs/development/libraries/opencv/3.x.nix | 4 +++- pkgs/development/libraries/opencv/default.nix | 3 +++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/opencv/3.x.nix b/pkgs/development/libraries/opencv/3.x.nix index f6ec1be09492..187b6df39b2c 100644 --- a/pkgs/development/libraries/opencv/3.x.nix +++ b/pkgs/development/libraries/opencv/3.x.nix @@ -62,7 +62,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ] - ++ lib.optionals enablePython [ pythonPackages.python pythonPackages.numpy ] + ++ lib.optional enablePython pythonPackages.python ++ lib.optional enableGtk2 gtk2 ++ lib.optional enableGtk3 gtk3 ++ lib.optional enableJPEG libjpeg @@ -76,6 +76,8 @@ stdenv.mkDerivation rec { ++ lib.optional enableEigen eigen ; + propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; + nativeBuildInputs = [ cmake pkgconfig unzip ]; NIX_CFLAGS_COMPILE = lib.optional enableEXR "-I${ilmbase}/include/OpenEXR"; diff --git a/pkgs/development/libraries/opencv/default.nix b/pkgs/development/libraries/opencv/default.nix index 82d597a17c9a..70ea306ae808 100644 --- a/pkgs/development/libraries/opencv/default.nix +++ b/pkgs/development/libraries/opencv/default.nix @@ -30,6 +30,7 @@ stdenv.mkDerivation rec { buildInputs = [ zlib ] + ++ lib.optional enablePython pythonPackages.python ++ lib.optional enableGtk2 gtk2 ++ lib.optional enableJPEG libjpeg ++ lib.optional enablePNG libpng @@ -41,6 +42,8 @@ stdenv.mkDerivation rec { ++ lib.optional enableEigen eigen ; + propagatedBuildInputs = lib.optional enablePython pythonPackages.numpy; + nativeBuildInputs = [ cmake pkgconfig unzip ]; NIX_CFLAGS_COMPILE = lib.optional enableEXR "-I${ilmbase}/include/OpenEXR"; From 584020f18156c760507d733c10b268299288830f Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:52:44 +0200 Subject: [PATCH 360/520] cloc: 1.66 -> 1.68 --- pkgs/tools/misc/cloc/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/cloc/default.nix b/pkgs/tools/misc/cloc/default.nix index 2dafaca1961b..eda2bfa0270d 100644 --- a/pkgs/tools/misc/cloc/default.nix +++ b/pkgs/tools/misc/cloc/default.nix @@ -2,13 +2,13 @@ stdenv.mkDerivation rec { name = "cloc-${version}"; - version = "1.66"; + version = "1.68"; src = fetchFromGitHub { owner = "AlDanial"; repo = "cloc"; rev = "v${version}"; - sha256 = "1xj6d8x8zwijym5wznm0k1478z7zx3bfjsx20r3aqb1vhkvcjsm9"; + sha256 = "17n6w7rd17h4q4cnjg4hxcfpx4plp40gd58bdyig9lsfbn6xcjxj"; }; sourceRoot = "cloc-v${version}-src/Unix"; From 4b7ef383e3c5113154ad30ed8362e9130dc59f2e Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:53:39 +0200 Subject: [PATCH 361/520] perl-CryptX: 0.034 -> 0.035 --- 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 d6aeec53e1de..e76b97f76d49 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2682,10 +2682,10 @@ let self = _self // overrides; _self = with self; { }; CryptX = buildPerlPackage rec { - name = "CryptX-0.034"; + name = "CryptX-0.035"; src = fetchurl { url = "mirror://cpan/authors/id/M/MI/MIK/${name}.tar.gz"; - sha256 = "fad93a560f43ace09de734924f247c4da9d79db7d42fb61954441f5f854225b1"; + sha256 = "1ec6c000862d60d3d12eda5d0eed3f08e759d4140775b6c76da538a8be3857fe"; }; propagatedBuildInputs = [ JSONMaybeXS ]; meta = { From 242802d5d9bf6d2b6bf1120230b5e5560e669220 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:54:00 +0200 Subject: [PATCH 362/520] perl-Data-Validate-IP: 0.25 -> 0.26 --- 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 e76b97f76d49..046c47c3e147 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2992,10 +2992,10 @@ let self = _self // overrides; _self = with self; { }; DataValidateIP = buildPerlPackage rec { - name = "Data-Validate-IP-0.25"; + name = "Data-Validate-IP-0.26"; src = fetchurl { url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; - sha256 = "b0386bb8aa31ed1b9b58760745eaab4d29edb0c7bdc7dc16dd5479d21f26ee3b"; + sha256 = "d03190483f3ecec728c8e1b2e24989b7aed78ce3c989bea7dc6be0285d374690"; }; buildInputs = [ TestRequires ]; propagatedBuildInputs = [ NetAddrIP ]; From faf1d2fa44f0fb5e36c0f782b4cfbb31217acaf5 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:54:38 +0200 Subject: [PATCH 363/520] perlPackages.TestSimple13: init at 1.302022 --- pkgs/top-level/perl-packages.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 046c47c3e147..d64a395a7b31 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -12598,6 +12598,19 @@ let self = _self // overrides; _self = with self; { TestSimple = null; + TestSimple13 = buildPerlPackage rec { + name = "Test-Simple-1.302022"; + src = fetchurl { + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; + sha256 = "dfaa1bbbb57737de76ebe79ac6ee57b5fa3e901b57e56007ac99ec54d2e24326"; + }; + meta = { + description = "Basic utilities for writing tests"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + TestSpec = buildPerlPackage rec { name = "Test-Spec-0.51"; src = fetchurl { From cd880379b2118a2bc3aae594218eb104d36867e6 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:55:14 +0200 Subject: [PATCH 364/520] perl-Test2-Suite: init at 0.000030 --- pkgs/top-level/perl-packages.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index d64a395a7b31..92e7e2fd0701 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -11967,6 +11967,20 @@ let self = _self // overrides; _self = with self; { }; }; + Test2Suite = buildPerlPackage rec { + name = "Test2-Suite-0.000030"; + src = fetchurl { + url = "mirror://cpan/authors/id/E/EX/EXODIST/${name}.tar.gz"; + sha256 = "03f2411a8b1a85be8560c25d57f465c812174bc1c062ee79aeb194b018e6b751"; + }; + propagatedBuildInputs = [ TestSimple13 ]; + meta = { + description = "Distribution with a rich set of tools built upon the Test2 framework"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + maintainers = [ maintainers.rycee ]; + }; + }; + TestAssert = buildPerlPackage { name = "Test-Assert-0.0504"; src = fetchurl { From 71e2f281ac152ff34b03f7ae98faf335b6d17c56 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 20:55:25 +0200 Subject: [PATCH 365/520] perl-Data-Validate-Domain: 0.11 -> 0.12 --- pkgs/top-level/perl-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index 92e7e2fd0701..a43d4b46dd3f 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -2977,11 +2977,12 @@ let self = _self // overrides; _self = with self; { }; DataValidateDomain = buildPerlPackage rec { - name = "Data-Validate-Domain-0.11"; + name = "Data-Validate-Domain-0.12"; src = fetchurl { url = "mirror://cpan/authors/id/D/DR/DROLSKY/${name}.tar.gz"; - sha256 = "f2ae0830f423a46080b185ffc2428c9a37278167a8d19bfdeec26d977b43822c"; + sha256 = "6bd39c71d232fa341ad1324158bf1edf5df9add2bcac87996aa4b584445cdec5"; }; + buildInputs = [ Test2Suite ]; propagatedBuildInputs = [ NetDomainTLD ]; meta = { homepage = http://metacpan.org/release/Data-Validate-Domain; From 57cd08ae7ecad011ee4ea3bbab8757538ba7d445 Mon Sep 17 00:00:00 2001 From: Moritz Ulrich Date: Tue, 7 Jun 2016 21:01:41 +0200 Subject: [PATCH 366/520] camlistore: 0.8 -> 0.9 --- pkgs/applications/misc/camlistore/default.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/applications/misc/camlistore/default.nix b/pkgs/applications/misc/camlistore/default.nix index a39a46222f1b..23bd89b4f057 100644 --- a/pkgs/applications/misc/camlistore/default.nix +++ b/pkgs/applications/misc/camlistore/default.nix @@ -1,15 +1,17 @@ -{ stdenv, lib, go, fetchurl }: +{ stdenv, lib, go, fetchgit, git }: stdenv.mkDerivation rec { - version = "0.8"; + version = "0.9"; name = "camlistore-${version}"; - src = fetchurl { - url = "https://github.com/bradfitz/camlistore/archive/${version}.tar.gz"; - sha256 = "03y5zs4i9lx93apqqqfgmbxamk06z3w1q763qp0lvb15mq45gdv1"; + src = fetchgit { + url = "https://github.com/camlistore/camlistore"; + rev = "7b78c50007780643798adf3fee4c84f3a10154c9"; + sha256 = "1vc4ca2rn8da0z0viv3vv2p8z211zdvq83jh2x2izdckdz204n17"; + leaveDotGit = true; }; - buildInputs = [ go ]; + buildInputs = [ go git ]; buildPhase = '' go run make.go From a840e81d7ac7f5a4a732c033fe3c9c686e416ece Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 21:17:48 +0200 Subject: [PATCH 367/520] perlPackages: add a few meta sections --- 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 a43d4b46dd3f..40edc40e2fc6 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -415,6 +415,10 @@ let self = _self // overrides; _self = with self; { }; buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ ScalarString DataInteger DigestCRC ]; + meta = { + description = "DEC VMS password hashing"; + license = stdenv.lib.licenses.gpl1Plus; + }; }; AuthenHtpasswd = buildPerlPackage rec { @@ -424,6 +428,10 @@ let self = _self // overrides; _self = with self; { sha256 = "0rw06hwpxg388d26l0jvirczx304f768ijvc20l4b2ll7xzg9ymm"; }; propagatedBuildInputs = [ ClassAccessor CryptPasswdMD5 DigestSHA1 IOLockedFile ]; + meta = { + description = "Interface to read and modify Apache .htpasswd files"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; }; AuthenPassphrase = buildPerlPackage rec { @@ -435,6 +443,10 @@ let self = _self // overrides; _self = with self; { buildInputs = [ ModuleBuild ]; propagatedBuildInputs = [ModuleRuntime ParamsClassify CryptPasswdMD5 CryptDES DataEntropy CryptUnixCryptXS CryptEksblowfish CryptMySQL DigestMD4 AuthenDecHpwd]; + meta = { + description = "Hashed passwords/passphrases as objects"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; }; AuthenSASL = buildPerlPackage rec { @@ -444,6 +456,10 @@ let self = _self // overrides; _self = with self; { sha256 = "02afhlrdq5hh5g8b32fa79fqq5i76qzwfqqvfi9zi57h31szl536"; }; propagatedBuildInputs = [ DigestHMAC ]; + meta = { + description = "SASL Authentication framework"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; + }; }; autobox = pkgs.perlPackages.Autobox; @@ -3827,6 +3843,9 @@ let self = _self // overrides; _self = with self; { src = fetchurl { url = "mirror://cpan/authors/id/O/OL/OLIMAUL/${name}.tar.gz"; sha256 = "5c5329f37c46eb79835169508583da8767d9839350b69bb2b48ac6f594f70374"; + meta = { + description = "Module that calculates CRC sums of all sorts"; + license = stdenv.lib.licenses.publicDomain; }; }; From dec493ad758dba1c7bf01111af1e98b2b67ae7db Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 21:18:06 +0200 Subject: [PATCH 368/520] perl-Archive-Tar: 2.04 -> 2.08 --- 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 40edc40e2fc6..ce5f243ae7c2 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -376,10 +376,10 @@ let self = _self // overrides; _self = with self; { }; ArchiveTar = buildPerlPackage rec { - name = "Archive-Tar-2.04"; + name = "Archive-Tar-2.08"; src = fetchurl { url = "mirror://cpan/authors/id/B/BI/BINGOS/${name}.tar.gz"; - sha256 = "c3741bba06a468a5a4db6a79d772c55cf2f6673cf33241a6e6a758707a71d293"; + sha256 = "62e34feffd51e21b24f2ba5b15adf3ca3bd084163bfec40fe30f8f8e8963066b"; }; meta = { description = "Manipulates TAR archives"; From b57c63014df4e8dbc4373aaa80698771ef2c62ce Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 21:18:28 +0200 Subject: [PATCH 369/520] perl-Digest-CRC: 0.18 -> 0.21 --- pkgs/top-level/perl-packages.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index ce5f243ae7c2..c35650bd91f7 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -3839,10 +3839,11 @@ let self = _self // overrides; _self = with self; { }; DigestCRC = buildPerlPackage rec { - name = "Digest-CRC-0.18"; + name = "Digest-CRC-0.21"; src = fetchurl { url = "mirror://cpan/authors/id/O/OL/OLIMAUL/${name}.tar.gz"; - sha256 = "5c5329f37c46eb79835169508583da8767d9839350b69bb2b48ac6f594f70374"; + sha256 = "79a0ef8081767c324edb9da39f80835910ed7c5b0539ed106caf7f2467d1958f"; + }; meta = { description = "Module that calculates CRC sums of all sorts"; license = stdenv.lib.licenses.publicDomain; From b51ed9863b650ddd8f784b5c91fb4dc02527adea Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Tue, 7 Jun 2016 21:21:42 +0200 Subject: [PATCH 370/520] perl-Net-Statsd: fix license field --- pkgs/top-level/perl-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/perl-packages.nix b/pkgs/top-level/perl-packages.nix index c35650bd91f7..0a06ccf8f855 100644 --- a/pkgs/top-level/perl-packages.nix +++ b/pkgs/top-level/perl-packages.nix @@ -9473,7 +9473,7 @@ let self = _self // overrides; _self = with self; { }; meta = { description = "Sends statistics to the stats daemon over UDP"; - license = "perl"; + license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; }; }; From 217feced47bd5cc91eab2928d299dcae9536264d Mon Sep 17 00:00:00 2001 From: Luca Bruno Date: Tue, 7 Jun 2016 21:21:37 +0200 Subject: [PATCH 371/520] gnome3_20.totem: fix build on i686 See https://bugzilla.gnome.org/show_bug.cgi?id=767374 --- pkgs/desktops/gnome-3/3.20/core/totem/default.nix | 2 ++ pkgs/desktops/gnome-3/3.20/core/totem/x86.patch | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 pkgs/desktops/gnome-3/3.20/core/totem/x86.patch diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix index 13665c72274e..bce3bd0ceba3 100644 --- a/pkgs/desktops/gnome-3/3.20/core/totem/default.nix +++ b/pkgs/desktops/gnome-3/3.20/core/totem/default.nix @@ -32,6 +32,8 @@ stdenv.mkDerivation rec { ''; + patches = [ ./x86.patch ]; + meta = with stdenv.lib; { homepage = https://wiki.gnome.org/Apps/Videos; description = "Movie player for the GNOME desktop based on GStreamer"; diff --git a/pkgs/desktops/gnome-3/3.20/core/totem/x86.patch b/pkgs/desktops/gnome-3/3.20/core/totem/x86.patch new file mode 100644 index 000000000000..ada6d59e8e04 --- /dev/null +++ b/pkgs/desktops/gnome-3/3.20/core/totem/x86.patch @@ -0,0 +1,11 @@ +--- a/src/backend/bacon-video-widget.c 2016-06-07 20:47:22.981213063 +0200 ++++ b/src/backend/bacon-video-widget.c 2016-06-07 20:47:44.065781036 +0200 +@@ -2334,7 +2334,7 @@ + if (!gst_toc_entry_get_start_stop_times (entry, &start, &stop)) { + GST_DEBUG ("Chapter #%d (couldn't get times)", i); + } else { +- GST_DEBUG ("Chapter #%d (start: %li stop: %li)", i, start, stop); ++ GST_DEBUG ("Chapter #%d (start: %" G_GINT64_FORMAT " stop: %" G_GINT64_FORMAT ")", i, start, stop); + } + } + From 679a51b1164c577335e424882cd4df0acf96e961 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 7 Jun 2016 20:32:46 +0100 Subject: [PATCH 372/520] haskellPackages.ghc-mod: add overrides to support ghc8 --- .../development/haskell-modules/configuration-common.nix | 2 +- .../haskell-modules/configuration-ghc-7.10.x.nix | 2 ++ .../haskell-modules/configuration-ghc-8.0.x.nix | 9 +++++++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5c3c5cb3504a..f9cfb8ffc3a6 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -755,7 +755,7 @@ self: super: { lens-aeson = dontCheck super.lens-aeson; # Byte-compile elisp code for Emacs. - ghc-mod = overrideCabal (super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; }) (drv: { + ghc-mod = overrideCabal super.ghc-mod (drv: { preCheck = "export HOME=$TMPDIR"; testToolDepends = drv.testToolDepends or [] ++ [self.cabal-install]; doCheck = false; # https://github.com/kazu-yamamoto/ghc-mod/issues/335 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 fcadc790baa9..2e7ac52c8de6 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix @@ -210,4 +210,6 @@ self: super: { semigroups = addBuildDepends super.semigroups (with self; [hashable tagged text unordered-containers]); intervals = addBuildDepends super.intervals (with self; [doctest QuickCheck]); + # 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; }; } diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index 292d8d746806..c11381a96039 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -53,4 +53,13 @@ self: super: { license = pkgs.stdenv.lib.licenses.bsd3; }) {}; + # ghc-mod has a ghc-8 branch that has not yet been merged + ghc-mod = super."ghc-mod".overrideDerivation (attrs: rec { + src = pkgs.fetchFromGitHub { + owner = "DanielG"; + repo = "ghc-mod"; + rev = "f2c7b01e372dd8c516b1ccbe5a1025cc7814347c"; + sha256 = "1i45196qrzlhgbisnvkzni4n54saky0i1kyla162xcb5cg3kf2ji"; + }; + }); } From 99717f7a569de6f9c36938114a274945de2ad080 Mon Sep 17 00:00:00 2001 From: obadz Date: Tue, 7 Jun 2016 20:33:12 +0100 Subject: [PATCH 373/520] haskellPackages.intero: don't run tests --- pkgs/development/haskell-modules/configuration-common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5c3c5cb3504a..ad80d46c87ba 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1013,4 +1013,6 @@ self: super: { cairo = addBuildTool super.cairo self.gtk2hs-buildtools; pango = addBuildTool super.pango self.gtk2hs-buildtools; + # Tests fail with "Couldn't launch intero process." + intero = dontCheck super.intero; } From 637f901f3e1a7ccded3a82469e6f19c7f36ee0ee Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Mon, 6 Jun 2016 10:41:39 +0200 Subject: [PATCH 374/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-35-g2a2d30b using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/7a03eee484403afa4c961acee11328f77d9b0af2 - LTS Haskell: https://github.com/fpco/lts-haskell/commit/1a80e0660e630f6dd98f34c3d82c23dc824ada01 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/7e90e5529b7f1b4c43ebff3e348913c87314d79a --- .../haskell-modules/configuration-lts-0.0.nix | 4 + .../haskell-modules/configuration-lts-0.1.nix | 4 + .../haskell-modules/configuration-lts-0.2.nix | 4 + .../haskell-modules/configuration-lts-0.3.nix | 4 + .../haskell-modules/configuration-lts-0.4.nix | 4 + .../haskell-modules/configuration-lts-0.5.nix | 4 + .../haskell-modules/configuration-lts-0.6.nix | 4 + .../haskell-modules/configuration-lts-0.7.nix | 4 + .../haskell-modules/configuration-lts-1.0.nix | 4 + .../haskell-modules/configuration-lts-1.1.nix | 4 + .../configuration-lts-1.10.nix | 4 + .../configuration-lts-1.11.nix | 4 + .../configuration-lts-1.12.nix | 4 + .../configuration-lts-1.13.nix | 4 + .../configuration-lts-1.14.nix | 4 + .../configuration-lts-1.15.nix | 4 + .../haskell-modules/configuration-lts-1.2.nix | 4 + .../haskell-modules/configuration-lts-1.4.nix | 4 + .../haskell-modules/configuration-lts-1.5.nix | 4 + .../haskell-modules/configuration-lts-1.7.nix | 4 + .../haskell-modules/configuration-lts-1.8.nix | 4 + .../haskell-modules/configuration-lts-1.9.nix | 4 + .../haskell-modules/configuration-lts-2.0.nix | 4 + .../haskell-modules/configuration-lts-2.1.nix | 5 + .../configuration-lts-2.10.nix | 5 + .../configuration-lts-2.11.nix | 6 + .../configuration-lts-2.12.nix | 6 + .../configuration-lts-2.13.nix | 6 + .../configuration-lts-2.14.nix | 6 + .../configuration-lts-2.15.nix | 6 + .../configuration-lts-2.16.nix | 6 + .../configuration-lts-2.17.nix | 6 + .../configuration-lts-2.18.nix | 6 + .../configuration-lts-2.19.nix | 6 + .../haskell-modules/configuration-lts-2.2.nix | 5 + .../configuration-lts-2.20.nix | 6 + .../configuration-lts-2.21.nix | 6 + .../configuration-lts-2.22.nix | 6 + .../haskell-modules/configuration-lts-2.3.nix | 5 + .../haskell-modules/configuration-lts-2.4.nix | 5 + .../haskell-modules/configuration-lts-2.5.nix | 5 + .../haskell-modules/configuration-lts-2.6.nix | 5 + .../haskell-modules/configuration-lts-2.7.nix | 5 + .../haskell-modules/configuration-lts-2.8.nix | 5 + .../haskell-modules/configuration-lts-2.9.nix | 5 + .../haskell-modules/configuration-lts-3.0.nix | 6 + .../haskell-modules/configuration-lts-3.1.nix | 6 + .../configuration-lts-3.10.nix | 6 + .../configuration-lts-3.11.nix | 6 + .../configuration-lts-3.12.nix | 6 + .../configuration-lts-3.13.nix | 7 + .../configuration-lts-3.14.nix | 8 + .../configuration-lts-3.15.nix | 8 + .../configuration-lts-3.16.nix | 8 + .../configuration-lts-3.17.nix | 8 + .../configuration-lts-3.18.nix | 8 + .../configuration-lts-3.19.nix | 8 + .../haskell-modules/configuration-lts-3.2.nix | 6 + .../configuration-lts-3.20.nix | 8 + .../configuration-lts-3.21.nix | 8 + .../configuration-lts-3.22.nix | 8 + .../haskell-modules/configuration-lts-3.3.nix | 6 + .../haskell-modules/configuration-lts-3.4.nix | 6 + .../haskell-modules/configuration-lts-3.5.nix | 6 + .../haskell-modules/configuration-lts-3.6.nix | 6 + .../haskell-modules/configuration-lts-3.7.nix | 6 + .../haskell-modules/configuration-lts-3.8.nix | 6 + .../haskell-modules/configuration-lts-3.9.nix | 6 + .../haskell-modules/configuration-lts-4.0.nix | 11 + .../haskell-modules/configuration-lts-4.1.nix | 11 + .../haskell-modules/configuration-lts-4.2.nix | 11 + .../haskell-modules/configuration-lts-5.0.nix | 12 + .../haskell-modules/configuration-lts-5.1.nix | 12 + .../configuration-lts-5.10.nix | 13 + .../configuration-lts-5.11.nix | 13 + .../configuration-lts-5.12.nix | 14 + .../configuration-lts-5.13.nix | 14 + .../configuration-lts-5.14.nix | 14 + .../configuration-lts-5.15.nix | 14 + .../configuration-lts-5.16.nix | 16 + .../configuration-lts-5.17.nix | 16 + .../configuration-lts-5.18.nix | 16 + .../haskell-modules/configuration-lts-5.2.nix | 12 + .../haskell-modules/configuration-lts-5.3.nix | 13 + .../haskell-modules/configuration-lts-5.4.nix | 13 + .../haskell-modules/configuration-lts-5.5.nix | 13 + .../haskell-modules/configuration-lts-5.6.nix | 13 + .../haskell-modules/configuration-lts-5.7.nix | 13 + .../haskell-modules/configuration-lts-5.8.nix | 13 + .../haskell-modules/configuration-lts-5.9.nix | 13 + .../haskell-modules/configuration-lts-6.0.nix | 23 + .../haskell-modules/configuration-lts-6.1.nix | 25 + .../haskell-modules/configuration-lts-6.2.nix | 26 + .../haskell-modules/hackage-packages.nix | 1044 ++++++++++++++--- 94 files changed, 1592 insertions(+), 187 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 00a1c9233c51..1a64e703b400 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -4049,6 +4049,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5794,6 +5795,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7207,6 +7209,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7453,6 +7456,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index ed241962aa8f..7630cb6fb6bd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -4049,6 +4049,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5794,6 +5795,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7207,6 +7209,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7453,6 +7456,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index 296d63432879..f0fe60fadc02 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -4049,6 +4049,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5794,6 +5795,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7207,6 +7209,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7453,6 +7456,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index 909e2f1f4010..d6356ef8528c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -4049,6 +4049,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5794,6 +5795,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7207,6 +7209,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7453,6 +7456,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index 76e31b47fa95..e1ddb308b407 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -4047,6 +4047,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5792,6 +5793,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7205,6 +7207,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7450,6 +7453,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 7f3b87d2d028..3347a0f35c9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -4047,6 +4047,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5792,6 +5793,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7205,6 +7207,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7450,6 +7453,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index e4affd3b35a0..88b9d0205139 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -4046,6 +4046,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_1"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5790,6 +5791,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7203,6 +7205,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7447,6 +7450,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 1e48e32b88be..36c7782bdb47 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -4046,6 +4046,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_1"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5790,6 +5791,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7203,6 +7205,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7447,6 +7450,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 0b50f9e41867..16d96af61626 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -4038,6 +4038,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5782,6 +5783,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7195,6 +7197,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7438,6 +7441,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index fac2d7ddedb3..e690b20846f2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -4035,6 +4035,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5776,6 +5777,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7188,6 +7190,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7431,6 +7434,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index 4a896d1d4b6f..bd6abfb14784 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -4025,6 +4025,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5759,6 +5760,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7169,6 +7171,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7412,6 +7415,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 852b8b25bd58..1f6081ce6142 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -4024,6 +4024,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5756,6 +5757,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7166,6 +7168,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7409,6 +7412,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index b59da7b15143..bc90406605b1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -4024,6 +4024,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5756,6 +5757,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7166,6 +7168,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7409,6 +7412,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 2c58bb25f661..631d9ffef8fc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -4023,6 +4023,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5755,6 +5756,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7165,6 +7167,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7408,6 +7411,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 840f050be2d4..34b01fb8f0b9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -4020,6 +4020,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5752,6 +5753,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7161,6 +7163,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7404,6 +7407,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 12dc6d4a7030..1a883a495649 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -4016,6 +4016,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5748,6 +5749,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7154,6 +7156,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7397,6 +7400,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index feffa4f10683..57c0d4ccc3ed 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -4032,6 +4032,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5773,6 +5774,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7184,6 +7186,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7427,6 +7430,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 50ece85ea719..79f58c5477c6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -4030,6 +4030,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5770,6 +5771,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7180,6 +7182,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7423,6 +7426,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index df0bd7121a73..f32f91769a9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -4029,6 +4029,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5769,6 +5770,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7179,6 +7181,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7422,6 +7425,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index ff33312e7aca..048e654b70eb 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -4029,6 +4029,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5764,6 +5765,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7174,6 +7176,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7417,6 +7420,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index fe3ba3998706..e946445e3c1a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -4026,6 +4026,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5760,6 +5761,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7170,6 +7172,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7413,6 +7416,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index c9251492c453..636b53f52d3a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -4025,6 +4025,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5759,6 +5760,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7169,6 +7171,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = dontDistribute super."rasterific-svg"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7412,6 +7415,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 656f8592d785..4f0abb825f3b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -4003,6 +4003,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5720,6 +5721,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7117,6 +7119,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7360,6 +7363,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index f323c279c0ce..aaf066a7918c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1896,6 +1896,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -4002,6 +4003,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5719,6 +5721,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7116,6 +7119,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7359,6 +7363,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 87f220c313e4..3730a6ce6cf3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1889,6 +1889,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3987,6 +3988,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5699,6 +5701,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7094,6 +7097,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7336,6 +7340,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 5bba70bb57e2..83dca9e8ad88 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3533,6 +3534,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3985,6 +3987,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5697,6 +5700,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7091,6 +7095,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7332,6 +7337,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 3ecf3f39df01..363f0485970d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3533,6 +3534,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3985,6 +3987,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5697,6 +5700,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7091,6 +7095,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7332,6 +7337,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 2610b80a5286..6e2205c9fbbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3533,6 +3534,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3985,6 +3987,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5696,6 +5699,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7090,6 +7094,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7331,6 +7336,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index e72bf4004038..15625790d976 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3532,6 +3533,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3984,6 +3986,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5694,6 +5697,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7088,6 +7092,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7329,6 +7334,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index fbdf5137caa1..b1927e740e67 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3531,6 +3532,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3983,6 +3985,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5693,6 +5696,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7086,6 +7090,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7327,6 +7332,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 9c7024f36a9a..732ffc1cae58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1888,6 +1888,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3528,6 +3529,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3980,6 +3982,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5689,6 +5692,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7082,6 +7086,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7323,6 +7328,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index feb2dea46b1f..b708c33a5b09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1887,6 +1887,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3525,6 +3526,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3977,6 +3979,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5686,6 +5689,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7078,6 +7082,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7319,6 +7324,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index aaa35cf7e6e4..8c7b8b6282dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1886,6 +1886,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3523,6 +3524,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3975,6 +3977,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5684,6 +5687,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7075,6 +7079,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7316,6 +7321,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 38bb87749a8c..0778128fec52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1886,6 +1886,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3522,6 +3523,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3974,6 +3976,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5683,6 +5686,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7074,6 +7078,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7315,6 +7320,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 460f421540b8..359ece2f0af0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1895,6 +1895,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -4000,6 +4001,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5717,6 +5719,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7114,6 +7117,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7357,6 +7361,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index 26815b885490..c6b30481b93f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1886,6 +1886,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3522,6 +3523,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3974,6 +3976,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5683,6 +5686,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7074,6 +7078,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7315,6 +7320,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 9a99e645c89b..0bad35825d1e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1886,6 +1886,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3522,6 +3523,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3974,6 +3976,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5683,6 +5686,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7073,6 +7077,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7314,6 +7319,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 50912963174a..41584ebc8b48 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1886,6 +1886,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3522,6 +3523,7 @@ self: super: { "ghc-exactprint" = dontDistribute super."ghc-exactprint"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3974,6 +3976,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5682,6 +5685,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7072,6 +7076,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7313,6 +7318,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index f1d1d47688c1..adf47f90fc8a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1895,6 +1895,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3999,6 +4000,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5715,6 +5717,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7112,6 +7115,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7355,6 +7359,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index 05653fd56957..f9715f4f34ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1895,6 +1895,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3999,6 +4000,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5715,6 +5717,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7111,6 +7114,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7353,6 +7357,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 6851157ec513..7cf582c448ef 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1895,6 +1895,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3998,6 +3999,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5714,6 +5716,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7110,6 +7113,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7352,6 +7356,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index 1fd3be26f0e2..ec52d94275e3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1892,6 +1892,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3994,6 +3995,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5710,6 +5712,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7105,6 +7108,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7347,6 +7351,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 114de936f077..32f20050eb4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1892,6 +1892,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3994,6 +3995,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5710,6 +5712,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7106,6 +7109,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7348,6 +7352,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 697c459d0170..12ddefc9ce25 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1891,6 +1891,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3992,6 +3993,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5708,6 +5710,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7104,6 +7107,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7346,6 +7350,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index e7a356cff826..eef057dc197f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1889,6 +1889,7 @@ self: super: { "bytestring-lexing" = doDistribute super."bytestring-lexing_0_4_3_2"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-read" = dontDistribute super."bytestring-read"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; @@ -3988,6 +3989,7 @@ self: super: { "haddock-api" = doDistribute super."haddock-api_2_15_0_2"; "haddock-leksah" = dontDistribute super."haddock-leksah"; "haddock-library" = doDistribute super."haddock-library_1_1_1"; + "haddock-test" = dontDistribute super."haddock-test"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5702,6 +5704,7 @@ self: super: { "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; "ltext" = dontDistribute super."ltext"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -7098,6 +7101,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_2_0_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_1_0_3"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7340,6 +7344,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index e7f25b23efc4..ccac712aec52 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -868,6 +868,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1839,6 +1840,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3895,6 +3897,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5569,6 +5572,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6932,6 +6936,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7176,6 +7181,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index ab7e261206d6..737e3d586998 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -868,6 +868,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1838,6 +1839,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3893,6 +3895,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5567,6 +5570,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6928,6 +6932,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7171,6 +7176,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index e120d34b9347..b11aa2803882 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1829,6 +1830,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3875,6 +3877,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5541,6 +5544,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6893,6 +6897,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7136,6 +7141,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index dd906f851617..4a2d67969189 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1829,6 +1830,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3874,6 +3876,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5540,6 +5543,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6892,6 +6896,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7135,6 +7140,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index bca7899f92c7..2c15d0a0cee0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1829,6 +1830,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3872,6 +3874,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5538,6 +5541,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6889,6 +6893,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7132,6 +7137,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 6a8bdb4faa13..37d0b795af28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1829,6 +1830,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3872,6 +3874,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5536,6 +5539,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6886,6 +6890,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7129,6 +7134,7 @@ self: super: { "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"; @@ -8680,6 +8686,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_1"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 1066cab60202..3722c779479e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1789,6 +1790,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1828,6 +1830,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3870,6 +3873,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5533,6 +5537,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6883,6 +6888,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7126,6 +7132,7 @@ self: super: { "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"; @@ -8677,6 +8684,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_2"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index fb3b5144cf4a..02415714ec45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1789,6 +1790,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1828,6 +1830,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3870,6 +3873,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5530,6 +5534,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6880,6 +6885,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7123,6 +7129,7 @@ self: super: { "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"; @@ -8673,6 +8680,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 0a22e92e9775..93dd140cfece 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -865,6 +865,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1788,6 +1789,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1827,6 +1829,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3869,6 +3872,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5528,6 +5532,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6876,6 +6881,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7118,6 +7124,7 @@ self: super: { "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"; @@ -8665,6 +8672,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 2ade36cc7a02..1820d188e59c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -865,6 +865,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1787,6 +1788,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1826,6 +1828,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3867,6 +3870,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5524,6 +5528,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6871,6 +6876,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7113,6 +7119,7 @@ self: super: { "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"; @@ -8660,6 +8667,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 266ba6453b54..288940ce36d2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -865,6 +865,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1787,6 +1788,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1826,6 +1828,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3867,6 +3870,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5523,6 +5527,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6870,6 +6875,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7112,6 +7118,7 @@ self: super: { "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"; @@ -8659,6 +8666,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_3"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 5bb19840274c..46bfb1a28c0d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -865,6 +865,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1785,6 +1786,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1824,6 +1826,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3864,6 +3867,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5517,6 +5521,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6863,6 +6868,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7105,6 +7111,7 @@ self: super: { "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"; @@ -8651,6 +8658,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 4c4604cb489b..7c56a06404d3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1836,6 +1837,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3889,6 +3891,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5562,6 +5565,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6922,6 +6926,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7165,6 +7170,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index 87d625325d71..b52ad6ad81e8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -864,6 +864,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1784,6 +1785,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1823,6 +1825,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3863,6 +3866,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5516,6 +5520,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6862,6 +6867,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7103,6 +7109,7 @@ self: super: { "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"; @@ -8648,6 +8655,7 @@ self: super: { "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4"; "wai-conduit" = doDistribute super."wai-conduit_3_0_0_2"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index 891ffa2e5885..b997704c5617 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -864,6 +864,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1784,6 +1785,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1823,6 +1825,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3860,6 +3863,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5511,6 +5515,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6855,6 +6860,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7095,6 +7101,7 @@ self: super: { "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"; @@ -8634,6 +8641,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index c655d57ca51f..450329b588a7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -864,6 +864,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1784,6 +1785,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-lens" = dontDistribute super."bson-lens"; @@ -1823,6 +1825,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3859,6 +3862,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5508,6 +5512,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6852,6 +6857,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7092,6 +7098,7 @@ self: super: { "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"; @@ -8631,6 +8638,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 4047e54e4276..8f982e2034c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1836,6 +1837,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3888,6 +3890,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5560,6 +5563,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6920,6 +6924,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7163,6 +7168,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index c29531a9ec27..8c3f11503ec1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1836,6 +1837,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3888,6 +3890,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5560,6 +5563,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6920,6 +6924,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7163,6 +7168,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index 350c40ecee38..e87358b7835a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1835,6 +1836,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3886,6 +3888,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5555,6 +5558,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6912,6 +6916,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7155,6 +7160,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 47b74eed249c..0e57cf1ef579 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1835,6 +1836,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3884,6 +3886,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5551,6 +5554,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6908,6 +6912,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7151,6 +7156,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index 4b1701a67d61..a18d16a16904 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1833,6 +1834,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3881,6 +3883,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5547,6 +5550,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6902,6 +6906,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7145,6 +7150,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index 09c3398851c7..e2f8645e151f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -867,6 +867,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1831,6 +1832,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3878,6 +3880,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5544,6 +5547,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6898,6 +6902,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7141,6 +7146,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index c42258415395..fcbf2a221055 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -866,6 +866,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1829,6 +1830,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3875,6 +3877,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -5541,6 +5544,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6895,6 +6899,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = dontDistribute super."rank1dynamic"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -7138,6 +7143,7 @@ self: super: { "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index 4fe430352fd5..eecfb22a513d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -1757,6 +1757,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1794,6 +1795,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3363,6 +3365,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3801,6 +3804,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4574,6 +4578,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4923,6 +4928,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5405,6 +5411,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6706,6 +6713,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6798,6 +6806,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6933,6 +6942,7 @@ self: super: { "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"; @@ -8433,6 +8443,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 1cfa5a87f8e6..349b70d18a4a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -1755,6 +1755,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1792,6 +1793,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3359,6 +3361,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3797,6 +3800,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4570,6 +4574,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4915,6 +4920,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5395,6 +5401,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6696,6 +6703,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6788,6 +6796,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6923,6 +6932,7 @@ self: super: { "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"; @@ -8423,6 +8433,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 233936ea4401..9199bef8cc68 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -1755,6 +1755,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1791,6 +1792,7 @@ self: super: { "bytestring-handle" = dontDistribute super."bytestring-handle"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3351,6 +3353,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3788,6 +3791,7 @@ self: super: { "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"; "haddocset" = dontDistribute super."haddocset"; "hadoop-formats" = dontDistribute super."hadoop-formats"; "hadoop-rpc" = dontDistribute super."hadoop-rpc"; @@ -4556,6 +4560,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4898,6 +4903,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5378,6 +5384,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6674,6 +6681,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6765,6 +6773,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-compat-tdfa" = dontDistribute super."regex-compat-tdfa"; "regex-deriv" = dontDistribute super."regex-deriv"; @@ -6899,6 +6908,7 @@ self: super: { "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"; @@ -8393,6 +8403,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index a28574083fb2..87349cbbfa40 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -1743,6 +1743,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1779,6 +1780,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3323,6 +3325,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3754,6 +3757,7 @@ self: super: { "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"; @@ -4521,6 +4525,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4861,6 +4866,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5339,6 +5345,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6623,6 +6630,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6713,6 +6721,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6846,6 +6855,7 @@ self: super: { "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"; @@ -6960,6 +6970,7 @@ self: super: { "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"; @@ -8324,6 +8335,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 8adff14328f9..42eccff60cc2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -1740,6 +1740,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1775,6 +1776,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3318,6 +3320,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3749,6 +3752,7 @@ self: super: { "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"; @@ -4516,6 +4520,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4855,6 +4860,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5333,6 +5339,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6616,6 +6623,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6705,6 +6713,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6838,6 +6847,7 @@ self: super: { "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"; @@ -6952,6 +6962,7 @@ self: super: { "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"; @@ -8314,6 +8325,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index df54b406eb66..f6291d426da5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -1322,6 +1322,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1731,6 +1732,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1765,6 +1767,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3281,6 +3284,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3708,6 +3712,7 @@ self: super: { "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"; @@ -4467,6 +4472,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4800,6 +4806,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5274,6 +5281,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6530,6 +6538,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6618,6 +6627,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6749,6 +6759,7 @@ self: super: { "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"; @@ -6863,6 +6874,7 @@ self: super: { "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"; @@ -8211,6 +8223,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index 1fd86da0ebd7..dd29a63d843a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -1320,6 +1320,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1727,6 +1728,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1761,6 +1763,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3275,6 +3278,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3702,6 +3706,7 @@ self: super: { "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"; @@ -4457,6 +4462,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4789,6 +4795,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5263,6 +5270,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6518,6 +6526,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6606,6 +6615,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6737,6 +6747,7 @@ self: super: { "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"; @@ -6851,6 +6862,7 @@ self: super: { "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"; @@ -8194,6 +8206,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index 696bd9f87293..d89014d7065f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -1319,6 +1319,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1726,6 +1727,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1760,6 +1762,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1978,6 +1981,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -3268,6 +3272,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3695,6 +3700,7 @@ self: super: { "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"; @@ -4450,6 +4456,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4781,6 +4788,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5255,6 +5263,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6502,6 +6511,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6590,6 +6600,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6721,6 +6732,7 @@ self: super: { "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"; @@ -6835,6 +6847,7 @@ self: super: { "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"; @@ -8176,6 +8189,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_0_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index 0cfbe60c86b6..c68a4c81247f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -1318,6 +1318,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1721,6 +1722,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1755,6 +1757,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1973,6 +1976,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -3259,6 +3263,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3686,6 +3691,7 @@ self: super: { "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"; @@ -4441,6 +4447,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4768,6 +4775,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5242,6 +5250,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6484,6 +6493,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6572,6 +6582,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6703,6 +6714,7 @@ self: super: { "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"; @@ -6817,6 +6829,7 @@ self: super: { "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"; @@ -8156,6 +8169,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 3db1711a4354..9fd822082b5e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -1316,6 +1316,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1716,6 +1717,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1750,6 +1752,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1967,6 +1970,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -3248,6 +3252,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3675,6 +3680,7 @@ self: super: { "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"; @@ -4429,6 +4435,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4756,6 +4763,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5229,6 +5237,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6467,6 +6476,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6555,6 +6565,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6686,6 +6697,7 @@ self: super: { "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"; @@ -6800,6 +6812,7 @@ self: super: { "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"; @@ -8132,6 +8145,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index 83daad3cbc7b..e1d42399b49b 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -1315,6 +1315,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1715,6 +1716,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1749,6 +1751,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1966,6 +1969,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -3243,6 +3247,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3670,6 +3675,7 @@ self: super: { "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"; @@ -4422,6 +4428,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4749,6 +4756,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5221,6 +5229,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6457,6 +6466,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6545,6 +6555,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6676,6 +6687,7 @@ self: super: { "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"; @@ -6790,6 +6802,7 @@ self: super: { "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"; @@ -8120,6 +8133,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index c1ce0baee033..23b41150abff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -1312,6 +1312,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1708,6 +1709,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1742,6 +1744,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1958,6 +1961,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2508,6 +2512,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2516,6 +2521,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -3224,6 +3230,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3651,6 +3658,7 @@ self: super: { "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"; @@ -4401,6 +4409,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4727,6 +4736,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5197,6 +5207,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6427,6 +6438,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6515,6 +6527,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6642,6 +6655,7 @@ self: super: { "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"; @@ -6756,6 +6770,7 @@ self: super: { "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"; @@ -8078,6 +8093,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 60b9ca156fdb..72ef8051115f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -1310,6 +1310,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1705,6 +1706,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1739,6 +1741,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1954,6 +1957,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2504,6 +2508,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2512,6 +2517,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -3220,6 +3226,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3647,6 +3654,7 @@ self: super: { "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"; @@ -4396,6 +4404,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4722,6 +4731,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5192,6 +5202,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6419,6 +6430,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6506,6 +6518,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6633,6 +6646,7 @@ self: super: { "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"; @@ -6747,6 +6761,7 @@ self: super: { "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"; @@ -8066,6 +8081,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index a24734e639ad..ae01a916519f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -1309,6 +1309,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1704,6 +1705,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1738,6 +1740,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1952,6 +1955,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2498,6 +2502,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2506,6 +2511,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -3211,6 +3217,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3637,6 +3644,7 @@ self: super: { "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"; @@ -4385,6 +4393,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4708,6 +4717,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5177,6 +5187,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6398,6 +6409,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6485,6 +6497,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6612,6 +6625,7 @@ self: super: { "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"; @@ -6726,6 +6740,7 @@ self: super: { "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"; @@ -8043,6 +8058,7 @@ self: super: { "wai" = doDistribute super."wai_3_2_1"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index 44885ed6cd01..f7ff2830964c 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -1740,6 +1740,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1775,6 +1776,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3315,6 +3317,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3744,6 +3747,7 @@ self: super: { "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"; @@ -4511,6 +4515,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4848,6 +4853,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5326,6 +5332,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6602,6 +6609,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6691,6 +6699,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-applicative-text" = doDistribute super."regex-applicative-text_0_1_0_0"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; @@ -6823,6 +6832,7 @@ self: super: { "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"; @@ -6937,6 +6947,7 @@ self: super: { "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"; @@ -8298,6 +8309,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index 2e5eab4f9344..fc44d14c2003 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -1327,6 +1327,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1736,6 +1737,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1771,6 +1773,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3303,6 +3306,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3732,6 +3736,7 @@ self: super: { "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"; @@ -4499,6 +4504,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4835,6 +4841,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5312,6 +5319,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6585,6 +6593,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_1_1"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6673,6 +6682,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6804,6 +6814,7 @@ self: super: { "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"; @@ -6918,6 +6929,7 @@ self: super: { "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"; @@ -8276,6 +8288,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 69d2b39c6981..513bf0c398e0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -1326,6 +1326,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1735,6 +1736,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1770,6 +1772,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3296,6 +3299,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3724,6 +3728,7 @@ self: super: { "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"; @@ -4491,6 +4496,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4827,6 +4833,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5303,6 +5310,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6571,6 +6579,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6659,6 +6668,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6790,6 +6800,7 @@ self: super: { "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"; @@ -6904,6 +6915,7 @@ self: super: { "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"; @@ -8261,6 +8273,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 1bec7d1d1279..6cc680233bf7 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -1326,6 +1326,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1735,6 +1736,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1769,6 +1771,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3293,6 +3296,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3721,6 +3725,7 @@ self: super: { "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"; @@ -4487,6 +4492,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4823,6 +4829,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5299,6 +5306,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6567,6 +6575,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6655,6 +6664,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6786,6 +6796,7 @@ self: super: { "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"; @@ -6900,6 +6911,7 @@ self: super: { "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"; @@ -8256,6 +8268,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 508d030736f3..4f630cf72eff 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -1325,6 +1325,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1734,6 +1735,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1768,6 +1770,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3289,6 +3292,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3716,6 +3720,7 @@ self: super: { "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"; @@ -4481,6 +4486,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4817,6 +4823,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5292,6 +5299,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6556,6 +6564,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6644,6 +6653,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6775,6 +6785,7 @@ self: super: { "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"; @@ -6889,6 +6900,7 @@ self: super: { "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"; @@ -8244,6 +8256,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index e4dae0c389eb..798028819721 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -1325,6 +1325,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1734,6 +1735,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1768,6 +1770,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3286,6 +3289,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3713,6 +3717,7 @@ self: super: { "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"; @@ -4477,6 +4482,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4813,6 +4819,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5288,6 +5295,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6551,6 +6559,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6639,6 +6648,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6770,6 +6780,7 @@ self: super: { "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"; @@ -6884,6 +6895,7 @@ self: super: { "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"; @@ -8237,6 +8249,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index c0584de6196d..71db989b93b5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -1325,6 +1325,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1734,6 +1735,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1768,6 +1770,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3286,6 +3289,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3713,6 +3717,7 @@ self: super: { "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"; @@ -4477,6 +4482,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4813,6 +4819,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5288,6 +5295,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6551,6 +6559,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6639,6 +6648,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6770,6 +6780,7 @@ self: super: { "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"; @@ -6884,6 +6895,7 @@ self: super: { "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"; @@ -8237,6 +8249,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index 27f2625b4b41..b917addc4fdc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -1324,6 +1324,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1733,6 +1734,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1767,6 +1769,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -3283,6 +3286,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = dontDistribute super."ghc-imported-from"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3710,6 +3714,7 @@ self: super: { "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"; @@ -4471,6 +4476,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4804,6 +4810,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -5279,6 +5286,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltk" = dontDistribute super."ltk"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; @@ -6539,6 +6547,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_2_3_2"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6627,6 +6636,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6758,6 +6768,7 @@ self: super: { "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"; @@ -6872,6 +6883,7 @@ self: super: { "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"; @@ -8221,6 +8233,7 @@ self: super: { "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; "wai-app-static" = doDistribute super."wai-app-static_3_1_4_1"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 164041b29606..682434925c6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -820,6 +820,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1287,6 +1288,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1670,6 +1672,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1704,6 +1707,7 @@ self: super: { "bytestring-handle" = doDistribute super."bytestring-handle_0_1_0_3"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1912,6 +1916,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2440,6 +2445,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2448,6 +2454,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -3119,6 +3126,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3530,6 +3538,7 @@ self: super: { "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"; @@ -4258,6 +4267,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4568,6 +4578,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -4598,6 +4609,7 @@ self: super: { "joinlist" = dontDistribute super."joinlist"; "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; + "jose" = doDistribute super."jose_0_4_0_1"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; @@ -5020,6 +5032,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; "lua-bytecode" = dontDistribute super."lua-bytecode"; @@ -6196,6 +6209,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6278,6 +6292,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6396,6 +6411,7 @@ self: super: { "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"; @@ -6505,6 +6521,7 @@ self: super: { "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"; @@ -6981,6 +6998,7 @@ self: super: { "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"; @@ -7349,6 +7367,7 @@ self: super: { "timelike" = dontDistribute super."timelike"; "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = doDistribute super."timemap_0_0_2"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7451,6 +7470,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttask" = dontDistribute super."ttask"; + "tttool" = doDistribute super."tttool_1_6_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7628,6 +7648,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_2_0_0"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7719,6 +7740,7 @@ self: super: { "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"; @@ -7753,6 +7775,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 06cb0bc54166..61bd2d470297 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -817,6 +817,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1284,6 +1285,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1664,6 +1666,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1696,6 +1699,7 @@ self: super: { "bytestring-from" = dontDistribute super."bytestring-from"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1899,6 +1903,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2385,6 +2390,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_3_1_1"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2424,6 +2430,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2432,6 +2439,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -2534,6 +2542,7 @@ self: super: { "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"; @@ -3091,6 +3100,7 @@ self: super: { "ghc-exactprint" = doDistribute super."ghc-exactprint_0_5_0_1"; "ghc-gc-tune" = dontDistribute super."ghc-gc-tune"; "ghc-generic-instances" = dontDistribute super."ghc-generic-instances"; + "ghc-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-imported-from" = doDistribute super."ghc-imported-from_0_3_0_5"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; @@ -3497,6 +3507,7 @@ self: super: { "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"; @@ -4220,6 +4231,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4527,6 +4539,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -4556,6 +4569,7 @@ self: super: { "joinlist" = dontDistribute super."joinlist"; "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; + "jose" = doDistribute super."jose_0_4_0_1"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; @@ -4975,6 +4989,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; "lua-bytecode" = dontDistribute super."lua-bytecode"; @@ -6133,6 +6148,7 @@ self: super: { "rangemin" = dontDistribute super."rangemin"; "ranges" = dontDistribute super."ranges"; "rank1dynamic" = doDistribute super."rank1dynamic_0_3_2_0"; + "rapid" = dontDistribute super."rapid"; "rascal" = dontDistribute super."rascal"; "rasterific-svg" = doDistribute super."rasterific-svg_0_3_1_1"; "rate-limit" = dontDistribute super."rate-limit"; @@ -6215,6 +6231,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6330,6 +6347,7 @@ self: super: { "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"; @@ -6439,6 +6457,7 @@ self: super: { "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"; @@ -6913,6 +6932,7 @@ self: super: { "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"; @@ -7278,6 +7298,7 @@ self: super: { "timelike" = dontDistribute super."timelike"; "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = doDistribute super."timemap_0_0_2"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7379,6 +7400,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttask" = dontDistribute super."ttask"; + "tttool" = doDistribute super."tttool_1_6_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7555,6 +7577,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_2_0_0"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7645,6 +7668,7 @@ self: super: { "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"; @@ -7679,6 +7703,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 62daa5b68ccd..3c1ffa099337 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -810,6 +810,7 @@ self: super: { "SQLDeps" = dontDistribute super."SQLDeps"; "STL" = dontDistribute super."STL"; "SVG2Q" = dontDistribute super."SVG2Q"; + "SVGFonts" = doDistribute super."SVGFonts_1_5_0_0"; "SVGPath" = dontDistribute super."SVGPath"; "SWMMoutGetMB" = dontDistribute super."SWMMoutGetMB"; "SableCC2Hs" = dontDistribute super."SableCC2Hs"; @@ -1205,6 +1206,7 @@ self: super: { "ar-timestamp-wiper" = dontDistribute super."ar-timestamp-wiper"; "arb-fft" = dontDistribute super."arb-fft"; "arbb-vm" = dontDistribute super."arbb-vm"; + "arbtt" = doDistribute super."arbtt_0_9_0_8"; "archive" = dontDistribute super."archive"; "archiver" = dontDistribute super."archiver"; "archlinux" = dontDistribute super."archlinux"; @@ -1581,6 +1583,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_1"; "bson-generic" = dontDistribute super."bson-generic"; "bson-generics" = dontDistribute super."bson-generics"; "bson-mapping" = dontDistribute super."bson-mapping"; @@ -1613,6 +1616,7 @@ self: super: { "bytestring-from" = dontDistribute super."bytestring-from"; "bytestring-nums" = dontDistribute super."bytestring-nums"; "bytestring-plain" = dontDistribute super."bytestring-plain"; + "bytestring-progress" = doDistribute super."bytestring-progress_1_0_5"; "bytestring-rematch" = dontDistribute super."bytestring-rematch"; "bytestring-short" = dontDistribute super."bytestring-short"; "bytestring-show" = dontDistribute super."bytestring-show"; @@ -1816,6 +1820,7 @@ self: super: { "clanki" = dontDistribute super."clanki"; "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; + "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; "clash-prelude-quickcheck" = dontDistribute super."clash-prelude-quickcheck"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; @@ -2298,6 +2303,7 @@ self: super: { "definitive-reactive" = dontDistribute super."definitive-reactive"; "definitive-sound" = dontDistribute super."definitive-sound"; "deiko-config" = dontDistribute super."deiko-config"; + "dejafu" = doDistribute super."dejafu_0_3_1_1"; "deka" = dontDistribute super."deka"; "deka-tests" = dontDistribute super."deka-tests"; "delaunay" = dontDistribute super."delaunay"; @@ -2337,6 +2343,7 @@ self: super: { "dgs" = dontDistribute super."dgs"; "dia-base" = dontDistribute super."dia-base"; "dia-functions" = dontDistribute super."dia-functions"; + "diagrams-contrib" = doDistribute super."diagrams-contrib_1_3_0_10"; "diagrams-core" = doDistribute super."diagrams-core_1_3_0_7"; "diagrams-graphviz" = dontDistribute super."diagrams-graphviz"; "diagrams-hsqml" = dontDistribute super."diagrams-hsqml"; @@ -2345,6 +2352,7 @@ self: super: { "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; + "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; "diagrams-rubiks-cube" = dontDistribute super."diagrams-rubiks-cube"; "diagrams-svg" = doDistribute super."diagrams-svg_1_3_1_10"; @@ -2446,6 +2454,7 @@ self: super: { "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"; @@ -2997,6 +3006,7 @@ self: super: { "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-heap-view" = doDistribute super."ghc-heap-view_0_5_4"; "ghc-make" = dontDistribute super."ghc-make"; "ghc-man-completion" = dontDistribute super."ghc-man-completion"; "ghc-options" = dontDistribute super."ghc-options"; @@ -3401,6 +3411,7 @@ self: super: { "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"; @@ -4119,6 +4130,7 @@ self: super: { "hsverilog" = dontDistribute super."hsverilog"; "hswip" = dontDistribute super."hswip"; "hsx" = dontDistribute super."hsx"; + "hsx-jmacro" = doDistribute super."hsx-jmacro_7_3_7"; "hsx-xhtml" = dontDistribute super."hsx-xhtml"; "hsx2hs" = doDistribute super."hsx2hs_0_13_4"; "hsyscall" = dontDistribute super."hsyscall"; @@ -4424,6 +4436,7 @@ self: super: { "ivy-web" = dontDistribute super."ivy-web"; "ixdopp" = dontDistribute super."ixdopp"; "ixmonad" = dontDistribute super."ixmonad"; + "ixset" = doDistribute super."ixset_1_0_6_1"; "iyql" = dontDistribute super."iyql"; "j2hs" = dontDistribute super."j2hs"; "ja-base-extra" = dontDistribute super."ja-base-extra"; @@ -4453,6 +4466,7 @@ self: super: { "joinlist" = dontDistribute super."joinlist"; "jonathanscard" = dontDistribute super."jonathanscard"; "jort" = dontDistribute super."jort"; + "jose" = doDistribute super."jose_0_4_0_1"; "jpeg" = dontDistribute super."jpeg"; "js-good-parts" = dontDistribute super."js-good-parts"; "jsaddle" = doDistribute super."jsaddle_0_3_0_3"; @@ -4869,6 +4883,7 @@ self: super: { "lscabal" = dontDistribute super."lscabal"; "lss" = dontDistribute super."lss"; "lsystem" = dontDistribute super."lsystem"; + "ltiv1p1" = dontDistribute super."ltiv1p1"; "ltl" = dontDistribute super."ltl"; "lua-bc" = dontDistribute super."lua-bc"; "lua-bytecode" = dontDistribute super."lua-bytecode"; @@ -6017,6 +6032,7 @@ self: super: { "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"; @@ -6098,6 +6114,7 @@ self: super: { "reflex-jsx" = dontDistribute super."reflex-jsx"; "reflex-orphans" = dontDistribute super."reflex-orphans"; "reflex-transformers" = dontDistribute super."reflex-transformers"; + "reform-hsp" = doDistribute super."reform-hsp_0_2_6_1"; "regex-deriv" = dontDistribute super."regex-deriv"; "regex-dfa" = dontDistribute super."regex-dfa"; "regex-easy" = dontDistribute super."regex-easy"; @@ -6212,6 +6229,7 @@ self: super: { "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"; @@ -6319,6 +6337,7 @@ self: super: { "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"; @@ -6789,6 +6808,7 @@ self: super: { "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"; @@ -7150,6 +7170,7 @@ self: super: { "timelike" = dontDistribute super."timelike"; "timelike-clock" = dontDistribute super."timelike-clock"; "timelike-time" = dontDistribute super."timelike-time"; + "timemap" = doDistribute super."timemap_0_0_2"; "timeout" = dontDistribute super."timeout"; "timeout-control" = dontDistribute super."timeout-control"; "timeout-with-results" = dontDistribute super."timeout-with-results"; @@ -7251,6 +7272,7 @@ self: super: { "tst" = dontDistribute super."tst"; "tsvsql" = dontDistribute super."tsvsql"; "ttask" = dontDistribute super."ttask"; + "tttool" = doDistribute super."tttool_1_6_1"; "tubes" = dontDistribute super."tubes"; "tuntap" = dontDistribute super."tuntap"; "tup-functor" = dontDistribute super."tup-functor"; @@ -7424,6 +7446,7 @@ self: super: { "ureader" = dontDistribute super."ureader"; "urembed" = dontDistribute super."urembed"; "uri" = dontDistribute super."uri"; + "uri-bytestring" = doDistribute super."uri-bytestring_0_2_0_0"; "uri-conduit" = dontDistribute super."uri-conduit"; "uri-enumerator" = dontDistribute super."uri-enumerator"; "uri-enumerator-file" = dontDistribute super."uri-enumerator-file"; @@ -7514,6 +7537,7 @@ self: super: { "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"; @@ -7548,6 +7572,7 @@ self: super: { "waddle" = dontDistribute super."waddle"; "wai-accept-language" = dontDistribute super."wai-accept-language"; "wai-app-file-cgi" = dontDistribute super."wai-app-file-cgi"; + "wai-cors" = doDistribute super."wai-cors_0_2_4"; "wai-devel" = dontDistribute super."wai-devel"; "wai-digestive-functors" = dontDistribute super."wai-digestive-functors"; "wai-dispatch" = dontDistribute super."wai-dispatch"; @@ -7632,6 +7657,7 @@ self: super: { "webwire" = dontDistribute super."webwire"; "wedding-announcement" = dontDistribute super."wedding-announcement"; "wedged" = dontDistribute super."wedged"; + "weigh" = doDistribute super."weigh_0_0_2"; "weighted-regexp" = dontDistribute super."weighted-regexp"; "weighted-search" = dontDistribute super."weighted-search"; "welshy" = dontDistribute super."welshy"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index bb4bfb920716..a95a33cc8409 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -14371,6 +14371,8 @@ self: { pname = "MissingH"; version = "1.3.0.2"; sha256 = "64b870214f406d83e48fa13f58f9e4ebf8b69ae898c99788d2d0f3ebfed55ab2"; + revision = "2"; + editedCabalFile = "e3f9dfdd2ff45ad9877fffe9bc6d9cd1d2e150cc6aa8dfcf4b3c37ea16bacbe3"; libraryHaskellDepends = [ array base containers directory filepath hslogger HUnit mtl network old-locale old-time parsec process random regex-compat time unix @@ -14397,6 +14399,8 @@ self: { pname = "MissingH"; version = "1.4.0.0"; sha256 = "e7bfd371a3504cf6be9fb3e549514119f30d012be5ebb10ace84e00de27688dc"; + revision = "2"; + editedCabalFile = "fb4dda9bef0a8a75549961dd8a35d1f49372ec43b53eb6aa27cc53850ad10034"; libraryHaskellDepends = [ array base containers directory filepath hslogger HUnit mtl network old-locale old-time parsec process random regex-compat time unix @@ -18651,7 +18655,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "SVGFonts" = callPackage + "SVGFonts_1_5_0_0" = callPackage ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg , containers, data-default-class, diagrams-core, diagrams-lib , directory, parsec, split, text, tuple, vector, xml @@ -18670,6 +18674,25 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "SVGFonts" = callPackage + ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg + , containers, data-default-class, diagrams-core, diagrams-lib + , directory, parsec, split, text, tuple, vector, xml + }: + mkDerivation { + pname = "SVGFonts"; + version = "1.5.0.1"; + sha256 = "7b3431a70f94e89e78e1e28c5730060c5af522526ac7a1318b51de2c4d4c4ef4"; + libraryHaskellDepends = [ + attoparsec base blaze-markup blaze-svg containers + data-default-class diagrams-core diagrams-lib directory parsec + split text tuple vector xml + ]; + description = "Fonts from the SVG-Font format"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "SVGPath" = callPackage ({ mkDerivation, base, parsec }: mkDerivation { @@ -21514,7 +21537,7 @@ self: { homepage = "https://github.com/haskell/win32"; description = "A binding to part of the Win32 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + platforms = stdenv.lib.platforms.none; }) {advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; @@ -21533,7 +21556,7 @@ self: { homepage = "https://github.com/haskell/win32"; description = "A binding to part of the Win32 library"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; + platforms = stdenv.lib.platforms.none; }) {advapi32 = null; gdi32 = null; shell32 = null; shfolder = null; user32 = null; winmm = null;}; @@ -22540,8 +22563,8 @@ self: { }: mkDerivation { pname = "abnf"; - version = "0.1.0.0"; - sha256 = "93ad5731678f114f2f26f341e49afcbb8f9c3c5b6a5d191bee4797b543080aa4"; + version = "0.3.0.0"; + sha256 = "b1e18758161e20ecc55c043d5751071f335eb13aac6d1ad5469e26a301bb2142"; libraryHaskellDepends = [ attoparsec base containers megaparsec text ]; @@ -34885,7 +34908,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.xorg) libXScrnSaver;}; - "arbtt" = callPackage + "arbtt_0_9_0_8" = callPackage ({ mkDerivation, aeson, array, base, binary, bytestring , bytestring-progress, containers, deepseq, directory, filepath , libXScrnSaver, parsec, pcre-light, process-extras, strict, tasty @@ -34913,6 +34936,36 @@ self: { homepage = "http://arbtt.nomeata.de/"; description = "Automatic Rule-Based Time Tracker"; license = "GPL"; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs.xorg) libXScrnSaver;}; + + "arbtt" = callPackage + ({ mkDerivation, aeson, array, base, binary, bytestring + , bytestring-progress, containers, deepseq, directory, filepath + , libXScrnSaver, parsec, pcre-light, process-extras, strict, tasty + , tasty-golden, tasty-hunit, terminal-progress-bar, time + , transformers, unix, utf8-string, X11 + }: + mkDerivation { + pname = "arbtt"; + version = "0.9.0.9"; + sha256 = "4fdb7d699030c593c25b3a58638988a2c51c122ee49777e644b4a70ea86319a5"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson array base binary bytestring bytestring-progress containers + deepseq directory filepath parsec pcre-light strict + terminal-progress-bar time transformers unix utf8-string X11 + ]; + executableSystemDepends = [ libXScrnSaver ]; + testHaskellDepends = [ + base binary bytestring containers deepseq directory parsec + pcre-light process-extras tasty tasty-golden tasty-hunit time + transformers unix utf8-string + ]; + homepage = "http://arbtt.nomeata.de/"; + description = "Automatic Rule-Based Time Tracker"; + license = "GPL"; }) {inherit (pkgs.xorg) libXScrnSaver;}; "archive" = callPackage @@ -35716,16 +35769,16 @@ self: { }) {}; "ascii-table" = callPackage - ({ mkDerivation, aeson, base, containers, dlist, text + ({ mkDerivation, aeson, base, containers, dlist, hashable, text , unordered-containers, vector, wl-pprint-extras }: mkDerivation { pname = "ascii-table"; - version = "0.1.0.0"; - sha256 = "69e64e213743431132127814bf8f093a5f5383c9bd28132ff38fc20ac4ce0d15"; + version = "0.2.0.0"; + sha256 = "8ece1383cf232164eb6d9be16160dbea71dff611fa849a7378353ddf00cae230"; libraryHaskellDepends = [ - aeson base containers dlist text unordered-containers vector - wl-pprint-extras + aeson base containers dlist hashable text unordered-containers + vector wl-pprint-extras ]; homepage = "https://github.com/Sentenai/ascii-table#readme"; description = "ASCII table"; @@ -43598,8 +43651,8 @@ self: { }: mkDerivation { pname = "bitcoin-payment-channel"; - version = "0.1.1.0"; - sha256 = "5da23d31ac1a81ee9508d2e1a6f1f1c12bd34eeaab98fc63578a261e8a02e242"; + version = "0.1.1.1"; + sha256 = "acb7cbcd418a416a2b4a5fc180b5c3a27a5d5d4d9a4b64b953ebe4e6e057891e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -46233,7 +46286,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bson" = callPackage + "bson_0_3_2_1" = callPackage ({ mkDerivation, base, binary, bytestring, cryptohash , data-binary-ieee754, mtl, network, QuickCheck, test-framework , test-framework-quickcheck2, text, time @@ -46256,6 +46309,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.2"; + sha256 = "31b80e85b801e9c53abf16f8e9660e5bd4fcee766f469f7f91505f6406aa3870"; + 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 @@ -47503,7 +47579,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "bytestring-progress" = callPackage + "bytestring-progress_1_0_5" = callPackage ({ mkDerivation, base, bytestring, terminal-progress-bar, time }: mkDerivation { pname = "bytestring-progress"; @@ -47517,6 +47593,21 @@ self: { homepage = "http://github.com/acw/bytestring-progress"; description = "A library for tracking the consumption of a lazy ByteString"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "bytestring-progress" = callPackage + ({ mkDerivation, base, bytestring, terminal-progress-bar, time }: + mkDerivation { + pname = "bytestring-progress"; + version = "1.0.6"; + sha256 = "0dd48b6ea4c5bb6398af04b877259e6ec3b0994aa7760a01e552e7db0121dede"; + libraryHaskellDepends = [ + base bytestring terminal-progress-bar time + ]; + homepage = "http://github.com/acw/bytestring-progress"; + description = "A library for tracking the consumption of a lazy ByteString"; + license = stdenv.lib.licenses.bsd3; }) {}; "bytestring-read" = callPackage @@ -52348,8 +52439,8 @@ self: { }: mkDerivation { pname = "cgrep"; - version = "6.6.13"; - sha256 = "b10853efadd6e75395ca92ba2c7ac71ba137496f1844b79048db42f74da04931"; + version = "6.6.14"; + sha256 = "9e46ab2f0014e585f3bd8fd85a86926acec04b338bdfe2d6af82ca35cab130cd"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -54120,7 +54211,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-ghc" = callPackage + "clash-ghc_0_6_17" = callPackage ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib , clash-prelude, clash-systemverilog, clash-verilog, clash-vhdl , containers, deepseq, directory, filepath, ghc, ghc-typelits-extra @@ -54145,6 +54236,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.18"; + sha256 = "d44967cbf7633d53e9152f62511782ae2feebc23a109ee818c05d3ae5924b737"; + 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" ]; }) {}; @@ -54404,6 +54523,30 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "clash-lib_0_6_16" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude + , concurrent-supply, containers, deepseq, directory, errors, fgl + , filepath, 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.16"; + sha256 = "f2da35653db0ef4834ccd97f403084d0e0d706a59070547922ff7f34f739fb0a"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath hashable lens mtl + pretty process template-haskell text time transformers + unbound-generics unordered-containers uu-parsinglib wl-pprint-text + ]; + jailbreak = true; + 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-prelude_0_9_2" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-natnormalise, Glob, integer-gmp, lens, QuickCheck @@ -54535,6 +54678,27 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "clash-prelude_0_10_8" = 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.8"; + sha256 = "0fb1a0b3e8bc03cee43303f31a9a17f0d89f2e1cdcdf468a807a6199ea7cb9db"; + libraryHaskellDepends = [ + array base data-default ghc-prim ghc-typelits-extra + ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection + 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-quickcheck" = callPackage ({ mkDerivation, base, clash-prelude, QuickCheck }: mkDerivation { @@ -55031,6 +55195,24 @@ self: { license = stdenv.lib.licenses.bsd2; }) {}; + "clash-vhdl_0_6_12" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.12"; + sha256 = "cff549b30950aa8eabb8e113233b356a2e10e3b893119f7cbea31a9cc1c0e3c0"; + 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "classify" = callPackage ({ mkDerivation, base, containers, mtl }: mkDerivation { @@ -69575,7 +69757,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dejafu" = callPackage + "dejafu_0_3_1_1" = callPackage ({ mkDerivation, array, atomic-primops, base, containers, deepseq , dpor, exceptions, monad-control, monad-loops, mtl, semigroups , stm, template-haskell, transformers, transformers-base @@ -69589,6 +69771,27 @@ self: { monad-control monad-loops mtl semigroups stm template-haskell transformers transformers-base ]; + jailbreak = true; + homepage = "https://github.com/barrucadu/dejafu"; + description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dejafu" = callPackage + ({ mkDerivation, array, atomic-primops, base, containers, deepseq + , dpor, exceptions, monad-control, monad-loops, mtl, semigroups + , stm, template-haskell, transformers, transformers-base + }: + mkDerivation { + pname = "dejafu"; + version = "0.3.2.0"; + sha256 = "6ca48c93c962c11d8379d1809c5ab103ad45aac111c4c38a755efc203b9b2f1b"; + libraryHaskellDepends = [ + array atomic-primops base containers deepseq dpor exceptions + monad-control monad-loops mtl semigroups stm template-haskell + transformers transformers-base + ]; homepage = "https://github.com/barrucadu/dejafu"; description = "Overloadable primitives for testable, potentially non-deterministic, concurrency"; license = stdenv.lib.licenses.mit; @@ -71371,7 +71574,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-contrib" = callPackage + "diagrams-contrib_1_3_0_10" = callPackage ({ mkDerivation, base, circle-packing, colour, containers , data-default, data-default-class, diagrams-core, diagrams-lib , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom @@ -71400,6 +71603,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-contrib" = callPackage + ({ mkDerivation, base, circle-packing, colour, containers + , data-default, data-default-class, diagrams-core, diagrams-lib + , diagrams-solve, force-layout, HUnit, lens, linear, MonadRandom + , mtl, parsec, QuickCheck, random, semigroups, split + , test-framework, test-framework-hunit, test-framework-quickcheck2 + , text + }: + mkDerivation { + pname = "diagrams-contrib"; + version = "1.3.0.11"; + sha256 = "076523498a93223d65758e5d89435df362cf488c940048818fde8f8fbee0a6d5"; + libraryHaskellDepends = [ + base circle-packing colour containers data-default + data-default-class diagrams-core diagrams-lib diagrams-solve + force-layout lens linear MonadRandom mtl parsec random semigroups + split text + ]; + testHaskellDepends = [ + base containers diagrams-lib HUnit QuickCheck test-framework + test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Collection of user contributions to diagrams EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-core_1_2_0_4" = callPackage ({ mkDerivation, base, containers, dual-tree, lens, MemoTrie , monoid-extras, newtype, semigroups, vector-space @@ -71604,12 +71835,11 @@ self: { }: mkDerivation { pname = "diagrams-graphviz"; - version = "1.3.0.0"; - sha256 = "8bf1a7defbe595da7e824aab68c979329e25900dab84365218dafad0099fcf86"; + version = "1.3.0.1"; + sha256 = "1d2ec9533aaac6a429eac9750fd7e5fc7a21d18223010067ebeae60c0d95da05"; libraryHaskellDepends = [ base containers diagrams-lib fgl graphviz split ]; - jailbreak = true; homepage = "http://projects.haskell.org/diagrams/"; description = "Graph layout and drawing with GrahpViz and diagrams"; license = stdenv.lib.licenses.bsd3; @@ -72486,7 +72716,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-rasterific" = callPackage + "diagrams-rasterific_1_3_1_6" = callPackage ({ mkDerivation, base, bytestring, containers, data-default-class , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split @@ -72508,6 +72738,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-rasterific" = callPackage + ({ mkDerivation, base, bytestring, containers, data-default-class + , diagrams-core, diagrams-lib, filepath, FontyFruity, hashable + , JuicyPixels, lens, mtl, optparse-applicative, Rasterific, split + , unix + }: + mkDerivation { + pname = "diagrams-rasterific"; + version = "1.3.1.7"; + sha256 = "3568aab7c5dbf557f5c1a49f5d3c0dcc1b74dcc173e31b5c2f59b9f1c9795646"; + libraryHaskellDepends = [ + base bytestring containers data-default-class diagrams-core + diagrams-lib filepath FontyFruity hashable JuicyPixels lens mtl + optparse-applicative Rasterific split unix + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Rasterific backend for diagrams"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-reflex" = callPackage ({ mkDerivation, base, colour, containers, diagrams-core , diagrams-lib, lens, monoid-extras, mtl, reflex, reflex-dom @@ -72769,8 +73020,8 @@ self: { }: mkDerivation { pname = "diagrams-svg"; - version = "1.4.0.1"; - sha256 = "76c8d38f44615af289d373c5abf1c6ba3ff42155f90eea73992cc708a35e6079"; + version = "1.4.0.2"; + sha256 = "d496eb5078637373988e84b412c24af8b929c51b14c77f1df3fb19e6117e446f"; libraryHaskellDepends = [ base base64-bytestring bytestring colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels lens @@ -76527,7 +76778,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "dpor" = callPackage + "dpor_0_1_0_1" = callPackage ({ mkDerivation, base, containers, deepseq, random, semigroups }: mkDerivation { pname = "dpor"; @@ -76539,6 +76790,21 @@ self: { homepage = "https://github.com/barrucadu/dejafu"; description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "dpor" = callPackage + ({ mkDerivation, base, containers, deepseq, random, semigroups }: + mkDerivation { + pname = "dpor"; + version = "0.2.0.0"; + sha256 = "6efbcc42b845541148886ee92656bbfe6b90b1a0483180b9165d4b0b691ac8e2"; + libraryHaskellDepends = [ + base containers deepseq random semigroups + ]; + homepage = "https://github.com/barrucadu/dejafu"; + description = "A generic implementation of dynamic partial-order reduction (DPOR) for testing arbitrary models of concurrency"; + license = stdenv.lib.licenses.mit; }) {}; "drClickOn" = callPackage @@ -90534,8 +90800,8 @@ self: { ({ mkDerivation, base, hscolour, ipprint, tasty, tasty-hspec }: mkDerivation { pname = "funnyprint"; - version = "0.0.2"; - sha256 = "0a551c9097a9a622b86ccf974930afd245a7d0b165ff2fffc682805e6a7bb8e1"; + version = "0.0.5"; + sha256 = "8f13d87e1a47957cad27e4753af10d375406e503d90a9e1cb193aec68eeef99e"; libraryHaskellDepends = [ base hscolour ipprint ]; testHaskellDepends = [ base hscolour ipprint tasty tasty-hspec ]; homepage = "https://github.com/Pitometsu/funnyprint#readme"; @@ -92702,7 +92968,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ghc-heap-view" = callPackage + "ghc-heap-view_0_5_4" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq, ghc , template-haskell, transformers }: @@ -92717,6 +92983,23 @@ self: { jailbreak = true; description = "Extract the heap representation of Haskell values and thunks"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "ghc-heap-view" = callPackage + ({ mkDerivation, base, binary, bytestring, containers, deepseq, ghc + , template-haskell, transformers + }: + mkDerivation { + pname = "ghc-heap-view"; + version = "0.5.6"; + sha256 = "002d2b39ab510e04e8a0852f42fd7c8dd81529ce395adabb00fefcfdc19d30bf"; + libraryHaskellDepends = [ + base binary bytestring containers ghc template-haskell transformers + ]; + testHaskellDepends = [ base deepseq ]; + description = "Extract the heap representation of Haskell values and thunks"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -93895,7 +94178,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Atk bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) atk;}; "gi-atk_2_0_4" = callPackage @@ -93920,7 +94202,8 @@ self: { "gi-cairo" = callPackage ({ mkDerivation, base, bytestring, cairo-gobject, containers - , haskell-gi, haskell-gi-base, text, transformers + , gobjectIntrospection, haskell-gi, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-cairo"; @@ -93930,17 +94213,17 @@ self: { base bytestring containers haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ cairo-gobject ]; + libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {cairo-gobject = null;}; + }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;}; "gi-cairo_1_0_4" = callPackage ({ mkDerivation, base, bytestring, cairo-gobject, containers - , haskell-gi-base, text, transformers + , gobjectIntrospection, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-cairo"; @@ -93949,13 +94232,14 @@ self: { libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ cairo-gobject ]; + libraryPkgconfigDepends = [ cairo-gobject gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Cairo bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {cairo-gobject = null;}; + }) {cairo-gobject = null; inherit (pkgs) gobjectIntrospection;}; "gi-gdk" = callPackage ({ mkDerivation, base, bytestring, containers, gdk3, gi-cairo @@ -93975,7 +94259,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gdk bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gdk3 = null;}; "gi-gdk_3_0_4" = callPackage @@ -94017,7 +94300,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GdkPixbuf bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gdk_pixbuf;}; "gi-gdkpixbuf_2_0_4" = callPackage @@ -94042,7 +94324,8 @@ self: { "gi-gio" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , glib, haskell-gi, haskell-gi-base, text, transformers + , glib, gobjectIntrospection, haskell-gi, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-gio"; @@ -94052,17 +94335,17 @@ self: { base bytestring containers gi-glib gi-gobject haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-gio_2_0_4" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , glib, haskell-gi-base, text, transformers + , glib, gobjectIntrospection, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-gio"; @@ -94072,13 +94355,14 @@ self: { base bytestring containers gi-glib gi-gobject haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gio bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-girepository" = callPackage ({ mkDerivation, base, bytestring, containers, gi-gobject @@ -94097,12 +94381,12 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GIRepository (gobject-introspection) bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gobjectIntrospection;}; "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, haskell-gi - , haskell-gi-base, text, transformers + ({ mkDerivation, base, bytestring, containers, glib + , gobjectIntrospection, haskell-gi, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-glib"; @@ -94112,17 +94396,17 @@ self: { base bytestring containers haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-glib_2_0_4" = callPackage ({ mkDerivation, base, bytestring, containers, glib - , haskell-gi-base, text, transformers + , gobjectIntrospection, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-glib"; @@ -94131,17 +94415,19 @@ self: { libraryHaskellDepends = [ base bytestring containers haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GLib bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-gobject" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, text, transformers + , gobjectIntrospection, haskell-gi, haskell-gi-base, text + , transformers }: mkDerivation { pname = "gi-gobject"; @@ -94151,17 +94437,17 @@ self: { base bytestring containers gi-glib haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-gobject_2_0_4" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, glib - , haskell-gi-base, text, transformers + , gobjectIntrospection, haskell-gi-base, text, transformers }: mkDerivation { pname = "gi-gobject"; @@ -94171,13 +94457,14 @@ self: { base bytestring containers gi-glib haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ glib ]; + libraryPkgconfigDepends = [ glib gobjectIntrospection ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GObject bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs) glib;}; + }) {inherit (pkgs) glib; inherit (pkgs) gobjectIntrospection;}; "gi-gst" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject @@ -94196,7 +94483,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamer bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gstreamer;}; "gi-gstaudio" = callPackage @@ -94217,7 +94503,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerAudio bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstbase" = callPackage @@ -94237,7 +94522,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerBase bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gstvideo" = callPackage @@ -94258,7 +94542,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GStreamerVideo bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) gst_plugins_base;}; "gi-gtk_3_0_3" = callPackage @@ -94302,7 +94585,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Gtk bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk3 = pkgs.gnome2.gtk;}; "gi-gtk-hs" = callPackage @@ -94321,7 +94603,6 @@ self: { homepage = "https://github.com/haskell-gi/gi-gtk-hs"; description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "gi-gtkosxapplication" = callPackage @@ -94342,7 +94623,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GtkosxApplication bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {gtk-mac-integration-gtk3 = null;}; "gi-gtksource" = callPackage @@ -94364,7 +94644,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "GtkSource bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) gtksourceview;}; "gi-javascriptcore" = callPackage @@ -94383,7 +94662,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "JavaScriptCore bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; }) {javascriptcoregtk = null;}; "gi-javascriptcore_4_0_4" = callPackage @@ -94423,12 +94701,12 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libnotify bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) libnotify;}; "gi-pango" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , haskell-gi, haskell-gi-base, pango, text, transformers + , gobjectIntrospection, haskell-gi, haskell-gi-base, pango, text + , transformers }: mkDerivation { pname = "gi-pango"; @@ -94438,17 +94716,18 @@ self: { base bytestring containers gi-glib gi-gobject haskell-gi haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ pango ]; + libraryPkgconfigDepends = [ gobjectIntrospection pango ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs.gnome) pango;}; + }) {inherit (pkgs) gobjectIntrospection; + inherit (pkgs.gnome) pango;}; "gi-pango_1_0_4" = callPackage ({ mkDerivation, base, bytestring, containers, gi-glib, gi-gobject - , haskell-gi-base, pango, text, transformers + , gobjectIntrospection, haskell-gi-base, pango, text, transformers }: mkDerivation { pname = "gi-pango"; @@ -94458,13 +94737,15 @@ self: { base bytestring containers gi-glib gi-gobject haskell-gi-base text transformers ]; - libraryPkgconfigDepends = [ pango ]; + libraryPkgconfigDepends = [ gobjectIntrospection pango ]; doHaddock = false; + preConfigure = "export HASKELL_GI_GIR_SEARCH_PATH=${gobjectIntrospection.dev}/share/gir-1.0"; homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Pango bindings"; license = stdenv.lib.licenses.lgpl21; hydraPlatforms = stdenv.lib.platforms.none; - }) {inherit (pkgs.gnome) pango;}; + }) {inherit (pkgs) gobjectIntrospection; + inherit (pkgs.gnome) pango;}; "gi-pangocairo" = callPackage ({ mkDerivation, base, bytestring, containers, gi-cairo, gi-glib @@ -94483,7 +94764,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "PangoCairo bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) pango;}; "gi-poppler" = callPackage @@ -94503,7 +94783,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Poppler bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) poppler;}; "gi-soup" = callPackage @@ -94523,7 +94802,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Libsoup bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs.gnome) libsoup;}; "gi-vte" = callPackage @@ -94544,7 +94822,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "Vte bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs.gnome) vte;}; "gi-webkit" = callPackage @@ -94567,7 +94844,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) webkit;}; "gi-webkit2" = callPackage @@ -94590,7 +94866,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2 bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk = null;}; "gi-webkit2webextension" = callPackage @@ -94612,7 +94887,6 @@ self: { homepage = "https://github.com/haskell-gi/haskell-gi"; description = "WebKit2-WebExtension bindings"; license = stdenv.lib.licenses.lgpl21; - hydraPlatforms = stdenv.lib.platforms.none; }) {webkit2gtk-web-extension = null;}; "gimlh" = callPackage @@ -103585,6 +103859,37 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hackage-security_0_5_2_0" = callPackage + ({ mkDerivation, base, base16-bytestring, base64-bytestring + , bytestring, Cabal, containers, cryptohash-sha256, directory + , ed25519, filepath, ghc-prim, HUnit, mtl, network, network-uri + , parsec, pretty, QuickCheck, tar, tasty, tasty-hunit + , tasty-quickcheck, template-haskell, temporary, time, transformers + , zlib + }: + mkDerivation { + pname = "hackage-security"; + version = "0.5.2.0"; + sha256 = "767968f35dfe85934a2fd0cc6e9106799f13cdc947dd4ee4bb2725bedf8a8c54"; + revision = "1"; + editedCabalFile = "bd7fb578131a70d6cf59817a37773014d54889d137ef6c0c9faf4145f7f17e19"; + libraryHaskellDepends = [ + base base16-bytestring base64-bytestring bytestring Cabal + containers cryptohash-sha256 directory ed25519 filepath ghc-prim + mtl network network-uri parsec pretty tar template-haskell time + transformers zlib + ]; + testHaskellDepends = [ + base bytestring Cabal containers HUnit network-uri QuickCheck tar + tasty tasty-hunit tasty-quickcheck temporary time zlib + ]; + jailbreak = true; + homepage = "https://github.com/well-typed/hackage-security"; + description = "Hackage security library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hackage-security-HTTP" = callPackage ({ mkDerivation, base, bytestring, hackage-security, HTTP, mtl , network, network-uri, zlib @@ -103855,7 +104160,6 @@ self: { isExecutable = true; executableHaskellDepends = [ base haddock-api ]; testHaskellDepends = [ base filepath hspec ]; - jailbreak = true; doCheck = false; preCheck = "unset GHC_PACKAGE_PATH"; homepage = "http://www.haskell.org/haddock/"; @@ -103950,8 +104254,8 @@ self: { }: mkDerivation { pname = "haddock-api"; - version = "2.17.2"; - sha256 = "60df55698ebfb5d0a36c15d789a2d95c789fe0f7e61ef0c3be30ab0183d5261e"; + version = "2.17.3"; + sha256 = "8d35a256c2ee07083c1e1a8b08e536069ffdad27598bed69d88847fb51234dc7"; libraryHaskellDepends = [ array base bytestring Cabal containers deepseq directory filepath ghc ghc-boot ghc-paths haddock-library transformers xhtml @@ -104028,8 +104332,8 @@ self: { }: mkDerivation { pname = "haddock-library"; - version = "1.4.1"; - sha256 = "40f4be262d3ec74a88e86f2bf9ecfba46ae140d936825c96b3d739acb9469ff1"; + version = "1.4.2"; + sha256 = "e8edf0714ef3c0e64ad61db6e9f3c1ca0980941b4e9128c94881588cdb4168dc"; libraryHaskellDepends = [ base bytestring deepseq transformers ]; testHaskellDepends = [ base base-compat bytestring deepseq hspec QuickCheck transformers @@ -104039,6 +104343,22 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "haddock-test" = callPackage + ({ mkDerivation, base, bytestring, Cabal, directory, filepath + , process, syb, xhtml, xml + }: + mkDerivation { + pname = "haddock-test"; + version = "0.0.1"; + sha256 = "fce8e5e2c45604f6032dffa896acbaf1aadf73dcc38992a466c6749e9d75a8ab"; + libraryHaskellDepends = [ + base bytestring Cabal directory filepath process syb xhtml xml + ]; + homepage = "http://www.haskell.org/haddock/"; + description = "Test utilities for Haddock"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "haddocset" = callPackage ({ mkDerivation, base, Cabal, conduit, conduit-extra, directory , exceptions, filepath, ghc, haddock-api, http-types, mtl @@ -126850,7 +127170,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "hsx-jmacro" = callPackage + "hsx-jmacro_7_3_7" = callPackage ({ mkDerivation, base, hsp, jmacro, mtl, text, wl-pprint-text }: mkDerivation { pname = "hsx-jmacro"; @@ -126862,6 +127182,21 @@ self: { homepage = "http://www.happstack.com/"; description = "hsp+jmacro support"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "hsx-jmacro" = callPackage + ({ mkDerivation, base, hsp, jmacro, mtl, text, wl-pprint-text }: + mkDerivation { + pname = "hsx-jmacro"; + version = "7.3.8"; + sha256 = "97c7efa3f8acc5159d697e080fb9ed7abddfca64e4f03d67cb66583fd7114495"; + libraryHaskellDepends = [ + base hsp jmacro mtl text wl-pprint-text + ]; + homepage = "http://www.happstack.com/"; + description = "hsp+jmacro support"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -131682,8 +132017,8 @@ self: { }: mkDerivation { pname = "hylogen"; - version = "0.1.3.0"; - sha256 = "ef7859d0f9195a63f770e7c961f4f4ae6bb1e2706da6e84e0b54e20e5d133ba5"; + version = "0.1.3.1"; + sha256 = "1937f59b1b32196c898cec3c3d3e5cb95a6fdb59075d0b7e8c720c0db8a22e3c"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; @@ -132085,6 +132420,7 @@ self: { http-client-tls http-types lens lens-aeson mtl raw-strings-qq scotty stm stm-conduit text transformers ]; + jailbreak = true; homepage = "https://github.com/yamadapc/hzulip"; description = "A haskell wrapper for the Zulip API"; license = stdenv.lib.licenses.gpl2; @@ -135233,10 +135569,9 @@ self: { ({ mkDerivation, base, mtl, transformers }: mkDerivation { pname = "instance-control"; - version = "0.1.0.0"; - sha256 = "bcdd6aa0322f757c32815407a8798c2e41245e1c76c4ea0890aa04c77847ee7c"; + version = "0.1.1.0"; + sha256 = "ebff9e5bf682df9510b4e7159b6346f7f98d45c9faec8ae0235bf3c4f921fa22"; libraryHaskellDepends = [ base mtl transformers ]; - jailbreak = true; homepage = "https://github.com/lazac/instance-control"; description = "Controls how the compiler searches for instances using type families"; license = stdenv.lib.licenses.bsd3; @@ -137754,7 +138089,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "ixset" = callPackage + "ixset_1_0_6_1" = callPackage ({ mkDerivation, base, containers, safecopy, syb, syb-with-class , template-haskell }: @@ -137771,6 +138106,23 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "ixset" = callPackage + ({ mkDerivation, base, containers, safecopy, syb, syb-with-class + , template-haskell + }: + mkDerivation { + pname = "ixset"; + version = "1.0.7"; + sha256 = "2f0e5a581b1d3c5e4685da8b109b2089177632fe8931ae68f5973fba687b42d1"; + libraryHaskellDepends = [ + base containers safecopy syb syb-with-class template-haskell + ]; + homepage = "http://happstack.com"; + description = "Efficient relational queries on Haskell sets"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "ixset-typed" = callPackage ({ mkDerivation, base, containers, deepseq, HUnit, QuickCheck , safecopy, syb, tasty, tasty-hunit, tasty-quickcheck @@ -138511,7 +138863,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "jose" = callPackage + "jose_0_4_0_1" = callPackage ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bifunctors, byteable, bytestring, cryptonite, data-default-class , hspec, lens, memory, mtl, network-uri, QuickCheck @@ -138542,6 +138894,37 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "jose" = callPackage + ({ mkDerivation, aeson, attoparsec, base, base64-bytestring + , bifunctors, byteable, bytestring, cryptonite, data-default-class + , hspec, lens, memory, mtl, network-uri, QuickCheck + , quickcheck-instances, safe, semigroups, tasty, tasty-hspec + , tasty-quickcheck, template-haskell, text, time + , unordered-containers, vector, x509 + }: + mkDerivation { + pname = "jose"; + version = "0.4.0.2"; + sha256 = "1fa4b9c2c6ab8eac146b38add7988617ddfef98650e0099b0ee9c76b6f41000d"; + libraryHaskellDepends = [ + aeson attoparsec base base64-bytestring bifunctors byteable + bytestring cryptonite data-default-class lens memory mtl + network-uri QuickCheck quickcheck-instances safe semigroups + template-haskell text time unordered-containers vector x509 + ]; + testHaskellDepends = [ + aeson attoparsec base base64-bytestring bifunctors byteable + bytestring cryptonite data-default-class hspec lens memory mtl + network-uri QuickCheck quickcheck-instances safe semigroups tasty + tasty-hspec tasty-quickcheck template-haskell text time + unordered-containers vector x509 + ]; + homepage = "https://github.com/frasertweedale/hs-jose"; + description = "Javascript Object Signing and Encryption and JSON Web Token library"; + license = stdenv.lib.licenses.asl20; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "jose-jwt_0_4_2" = callPackage ({ mkDerivation, aeson, aeson-qq, base, base64-bytestring, byteable , bytestring, cereal, cipher-aes, containers, cprng-aes @@ -138819,8 +139202,8 @@ self: { }: mkDerivation { pname = "jsaddle"; - version = "0.4.0.1"; - sha256 = "c520e32b9abcea9bad8c91b53472acc84bb7e64984fb5869df283caeb59045f7"; + version = "0.4.0.2"; + sha256 = "a2367c83a19217ef934295bbeda83c050384b615e5b71a0247dd2b960dd1ff78"; libraryHaskellDepends = [ base gi-glib gi-gtk gi-javascriptcore gi-webkit haskell-gi-base lens template-haskell text transformers webkitgtk3-javascriptcore @@ -138840,8 +139223,8 @@ self: { }: mkDerivation { pname = "jsaddle-dom"; - version = "0.1.0.1"; - sha256 = "023f3a4da6b78885c0da65e90f64d6455adacb1bfd672c0d0cc9fa45ed6a1d60"; + version = "0.1.0.3"; + sha256 = "feef5a25a3ac627548e472592a386c194b6c1223020ccfff567777777fa1f095"; libraryHaskellDepends = [ base base-compat gi-glib gi-gtk gi-webkit haskell-gi-base jsaddle lens text transformers @@ -151190,6 +151573,27 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "ltiv1p1" = callPackage + ({ mkDerivation, authenticate-oauth, base, blaze-builder + , bytestring, containers, data-default, http-client, http-types + , random, text, time, transformers, wai, wai-extra, xml-conduit + , xml-hamlet, yesod-core + }: + mkDerivation { + pname = "ltiv1p1"; + version = "1.0.0.1"; + sha256 = "76a0bb0a2206225007a9cbf9524518e5a64b15f17d8ca0c9552a5a4908926e7d"; + libraryHaskellDepends = [ + authenticate-oauth base blaze-builder bytestring containers + data-default http-client http-types random text time transformers + wai wai-extra xml-conduit xml-hamlet yesod-core + ]; + jailbreak = true; + homepage = "https://github.com/achirkin/qua-kit"; + description = "Partial implementation of a service provider for LTI 1.1."; + license = stdenv.lib.licenses.mit; + }) {}; + "ltk" = callPackage ({ mkDerivation, base, Cabal, containers, filepath, ghc, glib, gtk3 , mtl, parsec, pretty, text, transformers @@ -166181,8 +166585,10 @@ self: { }: mkDerivation { pname = "neural"; - version = "0.1.0.0"; - sha256 = "388d7d83a4afa3b2e9a21e25680ffedbddf31432df534ed50052a6e9829f87aa"; + version = "0.1.0.1"; + sha256 = "989012480140e35465b6338fc77d8646e7409277a58b60d31d3aed1a11ff1b57"; + revision = "1"; + editedCabalFile = "cad6cae5570a2d79091662e8b2be4cec5488ed88ba10e8960dbe00eef13543f8"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -166193,7 +166599,7 @@ self: { executableHaskellDepends = [ attoparsec base MonadRandom text ]; testHaskellDepends = [ base doctest hspec MonadRandom ]; jailbreak = true; - homepage = "http://github.com/brunjlar/neural"; + homepage = "https://github.com/brunjlar/neural"; description = "Neural Networks in native Haskell"; license = stdenv.lib.licenses.mit; }) {}; @@ -167763,9 +168169,10 @@ self: { ({ mkDerivation, array, base, containers, mtl, random }: mkDerivation { pname = "obdd"; - version = "0.3.2"; - sha256 = "1c862c5d1e9431f04ba5a8789420095ceaae2193bdcac602b3bb6ac1950c9335"; + version = "0.3.3"; + sha256 = "bf9aa0cc89f4964df7e9fe61d1c5e3b37d6e04f3750a9c98025c21d45a24f1b5"; libraryHaskellDepends = [ array base containers mtl random ]; + testHaskellDepends = [ base containers ]; homepage = "https://github.com/jwaldmann/haskell-obdd"; description = "Ordered Reduced Binary Decision Diagrams"; license = "GPL"; @@ -167924,8 +168331,8 @@ self: { }: mkDerivation { pname = "octane"; - version = "0.6.2"; - sha256 = "74d85a69dbf9947e2a4bec81bde8dc73b3d3cfe4d9991047e2f15b4d6a5e43e8"; + version = "0.6.3"; + sha256 = "37a21db8dda1e276e56fb1db6eb0411ec2f44abeeffa36c24f5cb971fdd00410"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -176068,18 +176475,18 @@ self: { "persistent-redis" = callPackage ({ mkDerivation, aeson, attoparsec, base, binary, bytestring, hedis - , monad-control, mtl, path-pieces, persistent, persistent-template - , scientific, template-haskell, text, time, transformers - , utf8-string + , http-api-data, monad-control, mtl, path-pieces, persistent + , persistent-template, scientific, template-haskell, text, time + , transformers, utf8-string }: mkDerivation { pname = "persistent-redis"; - version = "0.3.2"; - sha256 = "332cc47c58c3df48fa30a66ab76f806e389e60d808059f79bb3500e18893bc5c"; + version = "2.5.1"; + sha256 = "6c19ef7006375d9353a2f71b94732b481abe2fc4d3671acd96f9f0fa92d1c01a"; libraryHaskellDepends = [ - aeson attoparsec base binary bytestring hedis monad-control mtl - path-pieces persistent scientific text time transformers - utf8-string + aeson attoparsec base binary bytestring hedis http-api-data + monad-control mtl path-pieces persistent scientific text time + transformers utf8-string ]; testHaskellDepends = [ aeson attoparsec base binary bytestring hedis monad-control mtl @@ -177002,26 +177409,24 @@ self: { "pgdl" = callPackage ({ mkDerivation, base, binary, brick, bytestring, Cabal, conduit - , conduit-extra, configurator, data-default, directory + , conduit-extra, configurator, containers, data-default, directory , directory-listing-webpage-parser, filepath, http-conduit - , http-types, process, resourcet, tagsoup, text, time, transformers - , unix, vector, vty + , http-types, microlens, process, resourcet, tagsoup, text, time + , transformers, unix, vector, vty }: mkDerivation { pname = "pgdl"; - version = "9.2"; - sha256 = "db25085b9b2ed08020635dd1e48b031b1811d2d5e7df2d991cbe8f8710415faf"; - revision = "1"; - editedCabalFile = "cbbef68c92b01166847e03324ee093f115e5bf1a66e0f042f9f53819e264062c"; + version = "9.3"; + sha256 = "3c759fcc0548fdbfb7d39cff40dde1bd47c16aa5ee2765fcd3716954ff04c85a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ base binary brick bytestring Cabal conduit conduit-extra - configurator data-default directory + configurator containers data-default directory directory-listing-webpage-parser filepath http-conduit http-types - process resourcet tagsoup text time transformers unix vector vty + microlens process resourcet tagsoup text time transformers unix + vector vty ]; - jailbreak = true; description = "browse directory listing webpages and download files from them"; license = stdenv.lib.licenses.publicDomain; hydraPlatforms = [ "x86_64-darwin" ]; @@ -184293,8 +184698,8 @@ self: { }: mkDerivation { pname = "propellor"; - version = "3.0.4"; - sha256 = "99b80381aa6811b2ad504c86a8b453b139b2aae3f3db4da766effb66f0ffda3a"; + version = "3.0.5"; + sha256 = "b8e054ee0f405779eda02f01c20bf6672ff7f4bcc30dfd8fab4a7950bcc048a6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -188294,6 +188699,20 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "rapid" = callPackage + ({ mkDerivation, async, base, containers, foreign-store, stm }: + mkDerivation { + pname = "rapid"; + version = "0.1.0"; + sha256 = "1839228f3c617a92799f84a8337fcec6df511377bf555b79b67b47cea17d83c5"; + libraryHaskellDepends = [ + async base containers foreign-store stm + ]; + homepage = "http://hub.darcs.net/esz/rapid"; + description = "GHCi background threads, hot reloading and reload-surviving values"; + license = stdenv.lib.licenses.asl20; + }) {}; + "rascal" = callPackage ({ mkDerivation, aeson, ansi-terminal, base, containers, curl , curl-aeson, directory, filepath, HUnit, mtl, process, QuickCheck @@ -189986,8 +190405,8 @@ self: { }: mkDerivation { pname = "references"; - version = "0.3.0.1"; - sha256 = "ca6eb6aaa433fd9acf8cb2d4c9208a15285b8bd3dd1fdcd30201f370a5fb534f"; + version = "0.3.1.0"; + sha256 = "e2474ce7f9569e398a706f3aa137208fc4ae098a8a32d1e4245f775c9915f502"; libraryHaskellDepends = [ array base containers directory either filepath instance-control mtl template-haskell text transformers uniplate @@ -190432,7 +190851,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "reform-hsp" = callPackage + "reform-hsp_0_2_6_1" = callPackage ({ mkDerivation, base, hsp, hsx2hs, reform, text }: mkDerivation { pname = "reform-hsp"; @@ -190442,6 +190861,19 @@ self: { homepage = "http://www.happstack.com/"; description = "Add support for using HSP with Reform"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "reform-hsp" = callPackage + ({ mkDerivation, base, hsp, hsx2hs, reform, text }: + mkDerivation { + pname = "reform-hsp"; + version = "0.2.7"; + sha256 = "20ce1d81a4b2db93da55223037e0c2ee7841d5844fab9c67e4158bd9a70ee574"; + libraryHaskellDepends = [ base hsp hsx2hs reform text ]; + homepage = "http://www.happstack.com/"; + description = "Add support for using HSP with Reform"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -195132,6 +195564,28 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "rison" = callPackage + ({ mkDerivation, aeson, attoparsec, base, bytestring, hspec + , parsers, scientific, strings, text, text-format + , unordered-containers, vector + }: + mkDerivation { + pname = "rison"; + version = "1.0.0.0"; + sha256 = "c0fb81e10b17d5679326faba748c8d034f62ea71aff808c91e26a00565008b9c"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring parsers scientific strings text + text-format unordered-containers vector + ]; + testHaskellDepends = [ + aeson attoparsec base bytestring hspec parsers scientific strings + text text-format unordered-containers vector + ]; + homepage = "https://github.com/martinvlk/rison-hs#readme"; + description = "Parses and renders RISON strings"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "rivers" = callPackage ({ mkDerivation, base, lazysmallcheck, oeis, QuickCheck }: mkDerivation { @@ -197516,7 +197970,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sbv" = callPackage + "sbv_5_11" = callPackage ({ mkDerivation, array, async, base, base-compat, containers , crackNum, data-binary-ieee754, deepseq, directory, filepath , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb @@ -197544,6 +197998,34 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "sbv" = callPackage + ({ mkDerivation, array, async, base, base-compat, containers + , crackNum, data-binary-ieee754, deepseq, directory, filepath, ghc + , HUnit, mtl, old-time, pretty, process, QuickCheck, random, syb + }: + mkDerivation { + pname = "sbv"; + version = "5.12"; + sha256 = "0c43caeb77fd6a3d6d4e8e71835da0ca5e207dcc2b0bf6ef07abb7dd5c3bd55f"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array async base base-compat containers crackNum + data-binary-ieee754 deepseq directory filepath ghc mtl old-time + pretty process QuickCheck random syb + ]; + executableHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit process syb + ]; + testHaskellDepends = [ + base data-binary-ieee754 directory filepath HUnit syb + ]; + homepage = "http://leventerkok.github.com/sbv/"; + description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "sbvPlugin" = callPackage ({ mkDerivation, base, containers, directory, filepath, ghc , ghc-prim, mtl, process, sbv, tasty, tasty-golden @@ -197551,8 +198033,8 @@ self: { }: mkDerivation { pname = "sbvPlugin"; - version = "0.6"; - sha256 = "36355a645df160dd15399a6704759032822f5d5cf9670db4e7c8e249ac1d8f75"; + version = "0.7"; + sha256 = "87af8c5e6d590f6cfcef96ad0c110aadc8c90fe07a72f65af77feac31717baf8"; libraryHaskellDepends = [ base containers ghc ghc-prim mtl sbv template-haskell ]; @@ -211074,22 +211556,22 @@ self: { ({ mkDerivation, aeson, attoparsec, base, base64-bytestring , bytestring, containers, data-default, docopt, entropy , http-conduit, http-kit, http-types, interpolatedstring-perl6 - , logging-facade, logsink, network, postgresql-simple - , raw-strings-qq, resource-pool, SHA, split, string-conversions - , time, tls, unix, utf8-string, x509, yaml + , network, postgresql-simple, raw-strings-qq, resource-pool, SHA + , split, string-conversions, text, time, tls, unix, utf8-string + , x509, yaml }: mkDerivation { pname = "sproxy"; - version = "0.9.5"; - sha256 = "54633c0d8ec9de787947af025e9a4f43e762bada88e5e1745a32420632e2c35f"; + version = "0.9.6"; + sha256 = "3c35dad6f3b838f51ebd7c70231421cbb34ef5c3a38f3560c926cf7de8a9a5aa"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ aeson attoparsec base base64-bytestring bytestring containers data-default docopt entropy http-conduit http-kit http-types - interpolatedstring-perl6 logging-facade logsink network - postgresql-simple raw-strings-qq resource-pool SHA split - string-conversions time tls unix utf8-string x509 yaml + interpolatedstring-perl6 network postgresql-simple raw-strings-qq + resource-pool SHA split string-conversions text time tls unix + utf8-string x509 yaml ]; description = "HTTP proxy for authenticating users via Google OAuth2"; license = stdenv.lib.licenses.mit; @@ -212625,6 +213107,35 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "stack-run-auto_0_1_1_4" = callPackage + ({ mkDerivation, async, base, directory, extract-dependencies + , file-modules, filepath, lens, lens-aeson, MissingH, process + , stm-containers, text, time, wreq + }: + mkDerivation { + pname = "stack-run-auto"; + version = "0.1.1.4"; + sha256 = "5eb96ea94ec54a56ae26e09cc7988bb006edd4109eca9c57ed51bcc1d605f543"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + async base directory extract-dependencies file-modules filepath + lens lens-aeson MissingH process stm-containers text time wreq + ]; + executableHaskellDepends = [ + async base directory extract-dependencies file-modules filepath + lens lens-aeson MissingH process stm-containers text time wreq + ]; + testHaskellDepends = [ + async base directory extract-dependencies file-modules filepath + lens lens-aeson MissingH process stm-containers text time wreq + ]; + homepage = "http://github.com/yamadapc/stack-run-auto#readme"; + description = "Initial project template from stack"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "stackage_0_3_1" = callPackage ({ mkDerivation, aeson, async, base, bytestring, Cabal , classy-prelude-conduit, conduit-extra, containers @@ -214422,7 +214933,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stm-conduit" = callPackage + "stm-conduit_2_8_0" = callPackage ({ mkDerivation, async, base, cereal, cereal-conduit, conduit , conduit-combinators, conduit-extra, directory, doctest, ghc-prim , HUnit, lifted-async, lifted-base, monad-control, monad-loops @@ -214448,6 +214959,34 @@ self: { homepage = "https://github.com/cgaebel/stm-conduit"; description = "Introduces conduits to channels, and promotes using conduits concurrently"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "stm-conduit" = callPackage + ({ mkDerivation, async, base, cereal, cereal-conduit, conduit + , conduit-combinators, conduit-extra, directory, doctest, ghc-prim + , HUnit, lifted-async, lifted-base, monad-control, monad-loops + , QuickCheck, resourcet, stm, stm-chans, test-framework + , test-framework-hunit, test-framework-quickcheck2, transformers + , void + }: + mkDerivation { + pname = "stm-conduit"; + version = "3.0.0"; + sha256 = "cf6f663c069fb8991831ed792e5d22b8786966740797306c9391e610651da809"; + libraryHaskellDepends = [ + async base cereal cereal-conduit conduit conduit-combinators + conduit-extra directory ghc-prim lifted-async lifted-base + monad-control monad-loops resourcet stm stm-chans transformers void + ]; + testHaskellDepends = [ + base conduit conduit-combinators directory doctest HUnit QuickCheck + resourcet stm stm-chans test-framework test-framework-hunit + test-framework-quickcheck2 transformers + ]; + homepage = "https://github.com/cgaebel/stm-conduit"; + description = "Introduces conduits to channels, and promotes using conduits concurrently"; + license = stdenv.lib.licenses.bsd3; }) {}; "stm-containers_0_2_4" = callPackage @@ -216551,8 +217090,8 @@ self: { ({ mkDerivation, base, HUnit, mtl, template-haskell }: mkDerivation { pname = "structural-traversal"; - version = "0.1.0.0"; - sha256 = "790057b83c3abd981f25554fb583e598bff4208be727bbd350ad1e83fbcef857"; + version = "0.1.1.0"; + sha256 = "d547ff9d4a3b73d4028fa37aa08a648ee8315f246fbd72770f3402b486818907"; libraryHaskellDepends = [ base mtl template-haskell ]; testHaskellDepends = [ base HUnit mtl ]; homepage = "http://github.com/nboldi/structural-traversal#readme"; @@ -217165,10 +217704,10 @@ self: { ({ mkDerivation, base, containers, mtl, QuickCheck }: mkDerivation { pname = "subwordgraph"; - version = "1.0.1"; - sha256 = "d75e443150f9ee4d09b1434d0815f7afbd1e047561cd55f159d07147f774cb2b"; + version = "1.0.2"; + sha256 = "3bfd38ba46b3e0c0158ebbc97d89d908f52de70ba470b1b567c583ba19bbdc36"; libraryHaskellDepends = [ base containers mtl ]; - testHaskellDepends = [ base containers mtl QuickCheck ]; + testHaskellDepends = [ base QuickCheck ]; homepage = "https://github.com/danielnowakowski/Subword-Graph"; description = "Subword graph implementation"; license = stdenv.lib.licenses.bsd3; @@ -223236,8 +223775,8 @@ self: { }: mkDerivation { pname = "texrunner"; - version = "0.0.1.0"; - sha256 = "9a410aae2b62fbfcdacab43de470002a65c1fa095775805365dc1467be4bf8dc"; + version = "0.0.1.1"; + sha256 = "6283145a3f2e0cf4bac62e89bc0e707bc00c2ee1d51e4ba96d36245ae5215d63"; libraryHaskellDepends = [ attoparsec base bytestring directory filepath io-streams mtl process temporary @@ -223245,7 +223784,6 @@ self: { testHaskellDepends = [ base bytestring HUnit lens test-framework test-framework-hunit ]; - jailbreak = true; description = "Functions for running Tex from Haskell"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; @@ -225432,11 +225970,14 @@ self: { pname = "thrift"; version = "0.9.3"; sha256 = "dd2cfeec5f6a7142407ccc5d361afc6c45e5c50813e4246ed91137efc5cfbe9f"; + revision = "1"; + editedCabalFile = "13842801b74f89050d801a7a9b3b535b27046d3ae5bde986456aeeb46c236777"; libraryHaskellDepends = [ attoparsec base binary bytestring containers ghc-prim hashable HTTP network network-uri QuickCheck split text unordered-containers vector ]; + jailbreak = true; homepage = "http://thrift.apache.org"; description = "Haskell bindings for the Apache Thrift RPC system"; license = "unknown"; @@ -225558,31 +226099,33 @@ self: { }) {}; "tianbar" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, containers - , dbus, directory, gtk, gtk-traymanager, gtk2, happstack-server - , network, network-uri, process, random, split, text, transformers - , utf8-string, webkit, xdg-basedir, xmonad, xmonad-contrib + ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring + , containers, dbus, directory, filepath, gi-gdk, gi-gio, gi-glib + , gi-gtk, gi-webkit2, gtk3, haskell-gi-base, http-types, lens + , mime-types, mtl, network, process, random, split, text + , transformers, utf8-string, xdg-basedir, xmonad, xmonad-contrib }: mkDerivation { pname = "tianbar"; - version = "0.4.8.0"; - sha256 = "5ed0ad66ed6bfeb5b7145ce1e05d578963f8f7fec43c5474ca9a9023acb3cb16"; + version = "1.0.0.0"; + sha256 = "3acf7d21e2554f7f685f63e8d0c9f54748bdc57f82f08e41336da90db038fa14"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base blaze-html blaze-markup dbus utf8-string xmonad xmonad-contrib ]; executableHaskellDepends = [ - aeson base containers dbus directory gtk gtk-traymanager - happstack-server network network-uri process random split text - transformers webkit xdg-basedir + aeson base bytestring containers dbus directory filepath gi-gdk + gi-gio gi-glib gi-gtk gi-webkit2 haskell-gi-base http-types lens + mime-types mtl network process random split text transformers + utf8-string xdg-basedir ]; - executablePkgconfigDepends = [ gtk2 ]; + executablePkgconfigDepends = [ gtk3 ]; homepage = "https://github.com/koterpillar/tianbar"; description = "A desktop bar based on WebKit"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; - }) {gtk2 = pkgs.gnome2.gtk;}; + }) {gtk3 = pkgs.gnome2.gtk;}; "tic-tac-toe" = callPackage ({ mkDerivation, base, glade, gtk, haskell98 }: @@ -226249,7 +226792,7 @@ self: { license = stdenv.lib.licenses.asl20; }) {}; - "timemap" = callPackage + "timemap_0_0_2" = callPackage ({ mkDerivation, base, containers, focus, hashable, list-t , QuickCheck, quickcheck-instances, stm, stm-containers, tasty , tasty-hunit, tasty-quickcheck, time, unordered-containers @@ -226275,9 +226818,10 @@ self: { ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "timemap_0_0_3" = callPackage + "timemap" = callPackage ({ mkDerivation, base, containers, focus, hashable, list-t , QuickCheck, quickcheck-instances, stm, stm-containers, tasty , tasty-hunit, tasty-quickcheck, time, unordered-containers @@ -226303,7 +226847,6 @@ self: { ]; description = "A mutable hashmap, implicitly indexed by UTCTime"; license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "timeout" = callPackage @@ -229052,7 +229595,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "tttool" = callPackage + "tttool_1_6_1" = callPackage ({ mkDerivation, aeson, base, binary, bytestring, containers , directory, executable-path, filepath, hashable, haskeline, HPDF , JuicyPixels, mtl, optparse-applicative, parsec, process, random @@ -229074,6 +229617,31 @@ self: { homepage = "https://github.com/entropia/tip-toi-reveng"; description = "Working with files for the Tiptoi® pen"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tttool" = callPackage + ({ mkDerivation, aeson, base, binary, bytestring, containers + , directory, executable-path, filepath, hashable, haskeline, HPDF + , JuicyPixels, mtl, natural-sort, optparse-applicative, parsec + , process, random, split, spool, template-haskell, time, vector + , yaml, zlib + }: + mkDerivation { + pname = "tttool"; + version = "1.6.1.1"; + sha256 = "6a002fd4ed43f6ddf165961baa88fa0eb75c4afa87f6916ec9e37331a3c5d78b"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + aeson base binary bytestring containers directory executable-path + filepath hashable haskeline HPDF JuicyPixels mtl natural-sort + optparse-applicative parsec process random split spool + template-haskell time vector yaml zlib + ]; + homepage = "https://github.com/entropia/tip-toi-reveng"; + description = "Working with files for the Tiptoi® pen"; + license = stdenv.lib.licenses.mit; }) {}; "tubes" = callPackage @@ -233444,7 +234012,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "uri-bytestring" = callPackage + "uri-bytestring_0_2_0_0" = callPackage ({ mkDerivation, attoparsec, base, blaze-builder, bytestring , derive, HUnit, lens-simple, QuickCheck, quickcheck-instances , semigroups, tasty, tasty-hunit, tasty-quickcheck @@ -233465,6 +234033,29 @@ self: { homepage = "https://github.com/Soostone/uri-bytestring"; description = "Haskell URI parsing as ByteStrings"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "uri-bytestring" = callPackage + ({ mkDerivation, attoparsec, base, blaze-builder, bytestring + , derive, HUnit, lens-simple, QuickCheck, quickcheck-instances + , semigroups, tasty, tasty-hunit, tasty-quickcheck + }: + mkDerivation { + pname = "uri-bytestring"; + version = "0.2.1.0"; + sha256 = "2f903c5a0b2f16265f1f83e2a3aaa240af04aa1c6585253a9caba5f5b1e1bcbb"; + libraryHaskellDepends = [ + attoparsec base blaze-builder bytestring + ]; + testHaskellDepends = [ + attoparsec base blaze-builder bytestring derive HUnit lens-simple + QuickCheck quickcheck-instances semigroups tasty tasty-hunit + tasty-quickcheck + ]; + homepage = "https://github.com/Soostone/uri-bytestring"; + description = "Haskell URI parsing as ByteStrings"; + license = stdenv.lib.licenses.bsd3; }) {}; "uri-conduit" = callPackage @@ -236428,7 +237019,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "versions" = callPackage + "versions_2_0_0" = callPackage ({ mkDerivation, base, either, megaparsec, microlens, semigroups , tasty, tasty-hunit, text }: @@ -236443,6 +237034,23 @@ self: { jailbreak = true; description = "Types and parsers for software version numbers"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "versions" = callPackage + ({ mkDerivation, base, either, megaparsec, microlens, semigroups + , tasty, tasty-hunit, text + }: + mkDerivation { + pname = "versions"; + version = "3.0.0"; + sha256 = "468eb7d61a7320ce592a6542c2f3c2fa2a74784a8fbf5b6a9e30edada4defc38"; + libraryHaskellDepends = [ base megaparsec semigroups text ]; + testHaskellDepends = [ + base either microlens tasty tasty-hunit text + ]; + description = "Types and parsers for software version numbers"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -238035,7 +238643,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "wai-cors" = callPackage + "wai-cors_0_2_4" = callPackage ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring , case-insensitive, charset, directory, filepath, http-types, mtl , network, parsers, process, tasty, tasty-hunit, text, transformers @@ -238058,6 +238666,31 @@ self: { homepage = "https://github.com/larskuhtz/wai-cors"; description = "CORS for WAI"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "wai-cors" = callPackage + ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring + , case-insensitive, directory, filepath, http-types, mtl, network + , process, tasty, tasty-hunit, text, transformers, wai, wai-extra + , wai-websockets, warp, websockets + }: + mkDerivation { + pname = "wai-cors"; + version = "0.2.5"; + sha256 = "25089b8a043e0eb042ef63070ddd7ecc4d961c74526c9c00b292eda4b92d766e"; + libraryHaskellDepends = [ + attoparsec base base-unicode-symbols bytestring case-insensitive + http-types mtl transformers wai + ]; + testHaskellDepends = [ + base base-unicode-symbols directory filepath http-types network + process tasty tasty-hunit text wai wai-extra wai-websockets warp + websockets + ]; + homepage = "https://github.com/larskuhtz/wai-cors"; + description = "CORS for WAI"; + license = stdenv.lib.licenses.mit; }) {}; "wai-devel" = callPackage @@ -243429,6 +244062,8 @@ self: { pname = "websockets"; version = "0.9.3.0"; sha256 = "611fad117d83a26981b79f4075cd091ccb3f2c78c3b36bc82f05ea10ddaa002b"; + revision = "1"; + editedCabalFile = "7b9559d66e9637f4d6630e35f96ead96b7944ed09539cc5961c6521a336c2e13"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary blaze-builder bytestring case-insensitive containers entropy mtl network random SHA text @@ -243457,6 +244092,8 @@ self: { pname = "websockets"; version = "0.9.3.1"; sha256 = "e6385c2ef8cfe018e05a9e8ffcc5549ccb7d1470a4348619b0272821a414187b"; + revision = "1"; + editedCabalFile = "b08429ad3245313402d48846094edc5dd782aabdb82ebd2ff1f9e14a59220122"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary blaze-builder bytestring case-insensitive containers entropy mtl network random SHA text @@ -243485,6 +244122,8 @@ self: { pname = "websockets"; version = "0.9.4.0"; sha256 = "e01d0cd47c83c256dd0c0eb63e8e7aff7e9d74cf44f88eb40145e85d62f1f172"; + revision = "1"; + editedCabalFile = "800927cdaeefb217e06c474d35958ad516935d886ebfb8c9fc66ff5d53535cf5"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary blaze-builder bytestring case-insensitive containers entropy mtl network random SHA text @@ -243513,6 +244152,8 @@ self: { pname = "websockets"; version = "0.9.5.0"; sha256 = "beee58d5394a54705b7f2ddfc97030b42acbb8d6415b14b330c68ea94710d004"; + revision = "1"; + editedCabalFile = "a58cf3f94986628436c20836537d6b3808d57e15be8a5f19a1d317ad8a6cd491"; libraryHaskellDepends = [ attoparsec base base64-bytestring binary blaze-builder bytestring case-insensitive containers entropy mtl network random SHA text @@ -243541,6 +244182,8 @@ self: { pname = "websockets"; version = "0.9.6.0"; sha256 = "1740d6de660570328239aeb718911d51d27eaf6eb5880fe622b7ac2a4b1dfe1c"; + revision = "1"; + editedCabalFile = "76ec170f979b99dfa75768ee22fdea7a3a733267add8422a77f2e9bcefd424e1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -243575,6 +244218,8 @@ self: { pname = "websockets"; version = "0.9.6.1"; sha256 = "3c75cb59585710862c57277c8be718903ba727452d5f662288abb8b59eb57cd4"; + revision = "1"; + editedCabalFile = "73e886d1f0fa4e8b0e291c84861dc99ba630ab86e9b360650924457c9dff460f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -243609,6 +244254,8 @@ self: { pname = "websockets"; version = "0.9.6.2"; sha256 = "d772478ca85b4723cadbf7d73a16c15dea466fd1524d6fe323a2675106c93353"; + revision = "1"; + editedCabalFile = "fcc1f199941e5ee4a5047a74a550877c5e8e6abe1e104f27478324d9112ecd19"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -243703,7 +244350,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "weigh" = callPackage + "weigh_0_0_2" = callPackage ({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl , process, random, split, template-haskell, unordered-containers }: @@ -243720,6 +244367,26 @@ self: { homepage = "https://github.com/fpco/weigh#readme"; description = "Measure allocations of a Haskell functions/values"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "weigh" = callPackage + ({ mkDerivation, base, bytestring-trie, containers, deepseq, mtl + , process, random, split, template-haskell, unordered-containers + }: + mkDerivation { + pname = "weigh"; + version = "0.0.3"; + sha256 = "396853c0e8347c7c13ec013259dc2a2c91663aa3f3e7f8bc9fa588f41d0af86a"; + libraryHaskellDepends = [ + base deepseq mtl process split template-haskell + ]; + testHaskellDepends = [ + base bytestring-trie containers deepseq random unordered-containers + ]; + homepage = "https://github.com/fpco/weigh#readme"; + description = "Measure allocations of a Haskell functions/values"; + license = stdenv.lib.licenses.bsd3; }) {}; "weighted-regexp" = callPackage @@ -247766,33 +248433,37 @@ self: { "xmobar" = callPackage ({ mkDerivation, alsa-core, alsa-mixer, base, bytestring - , containers, dbus, directory, filepath, hinotify, HTTP, libmpd - , libXpm, libXrandr, mtl, old-locale, parsec, process, regex-compat - , stm, time, timezone-olson, timezone-series, transformers, unix - , utf8-string, wirelesstools, X11, X11-xft, Xrender + , containers, dbus, directory, filepath, hinotify, HTTP, libXpm + , libXrandr, libXrender, mtl, old-locale, parsec, process + , regex-compat, stm, time, timezone-olson, timezone-series + , transformers, unix, utf8-string, wirelesstools, X11, X11-xft }: mkDerivation { pname = "xmobar"; version = "0.23.1"; sha256 = "3b31558373bdb8561f06440da902dd0db8398e5c774fa027931785c263f5567a"; - configureFlags = [ "-fall_extensions" ]; + configureFlags = [ + "-fwith_alsa" "-fwith_datezone" "-fwith_dbus" "-fwith_inotify" + "-fwith_iwlib" "-f-with_mpd" "-fwith_mpris" "-fwith_threaded" + "-fwith_utf8" "-fwith_xft" "-fwith_xpm" + ]; isLibrary = false; isExecutable = true; executableHaskellDepends = [ alsa-core alsa-mixer base bytestring containers dbus directory - filepath hinotify HTTP libmpd mtl old-locale parsec process - regex-compat stm time timezone-olson timezone-series transformers - unix utf8-string X11 X11-xft + filepath hinotify HTTP mtl old-locale parsec process regex-compat + stm time timezone-olson timezone-series transformers unix + utf8-string X11 X11-xft ]; executableSystemDepends = [ - libXpm libXrandr wirelesstools Xrender + libXpm libXrandr libXrender wirelesstools ]; homepage = "http://xmobar.org"; description = "A Minimalistic Text Based Status Bar"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; - }) {Xrender = null; inherit (pkgs.xorg) libXpm; - inherit (pkgs.xorg) libXrandr; inherit (pkgs) wirelesstools;}; + }) {inherit (pkgs.xorg) libXpm; inherit (pkgs.xorg) libXrandr; + inherit (pkgs.xorg) libXrender; inherit (pkgs) wirelesstools;}; "xmonad" = callPackage ({ mkDerivation, base, containers, data-default, directory @@ -249223,13 +249894,12 @@ self: { }: mkDerivation { pname = "yarr"; - version = "1.4.0.1"; - sha256 = "541966833028f1476c7d89a100f4bced4d80d073c8400dc6564b320321f4624e"; + version = "1.4.0.2"; + sha256 = "caf979caeb9058ca4c51d15df3ca1554d2ea28daef37b17cbd549e7b0eef24ef"; libraryHaskellDepends = [ base deepseq fixed-vector ghc-prim missing-foreign primitive template-haskell ]; - jailbreak = true; description = "Yet another array library"; license = stdenv.lib.licenses.mit; hydraPlatforms = [ "x86_64-darwin" ]; From 71fc5083be0a87f7520622a86d9520d5f9430b32 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 7 Jun 2016 18:10:08 +0200 Subject: [PATCH 375/520] git-annex: work around Joey Hess' latest brain fart Now we're releasing incomplete Hackage tarballs on purpose: http://git-annex.branchable.com/bugs/bash_completion_file_is_missing_in_the_6.20160527_tarball_on_hackage/ You know, I'll fix this shit one last time, but on the next occasion upstream breaks the build for no apparent reason, I'm going to abandon this project and leave it to someone else to package, because these kind of wacko engineering decisions cast a bad light on the soundness of git-annex as a whole, IMHO. --- .../haskell-modules/configuration-common.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5fc1aa9d519a..39146965b0f4 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -65,7 +65,21 @@ self: super: { fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; }; - git-annex-with-assistant = super.git-annex.override { + # Joey Hess is nuts. The release tarball uploaded to Hackage deliberately + # lacks files to break in the installation procedure, because ... you know + # ... because! He feels people shouldn't use the tarballs he publishes and + # instead use the git repository instead. Which makes me seriously wonder why + # the f*ck I'm spending my spare time packaging this crap when I could just + # as well install Syncthing in the time I routinely waste adding kludges to + # work around this guy's crazy ideas of how to express his individuality. + git-annex-with-assistant = (overrideCabal super.git-annex (drv: { + src = pkgs.fetchFromGitHub { + owner = "joeyh"; + repo = "git-annex"; + sha256 = "1cmyf94jvfjwiibmhkkbrplq63g1yvy5kn65993zs10zgcfip3jb"; + rev = drv.version; + }; + })).override { dbus = if pkgs.stdenv.isLinux then self.dbus else null; fdo-notify = if pkgs.stdenv.isLinux then self.fdo-notify else null; hinotify = if pkgs.stdenv.isLinux then self.hinotify else self.fsnotify; From 55ac62c660af9f1e042385ac9d6205e8b6f0e2ca Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 7 Jun 2016 22:02:14 +0200 Subject: [PATCH 376/520] Add LTS Haskell 6.2. --- pkgs/top-level/haskell-packages.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/top-level/haskell-packages.nix b/pkgs/top-level/haskell-packages.nix index 07481871465a..7a5a2bfccc79 100644 --- a/pkgs/top-level/haskell-packages.nix +++ b/pkgs/top-level/haskell-packages.nix @@ -409,7 +409,10 @@ rec { lts-6_1 = packages.ghc7103.override { packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.1.nix { }; }; - lts-6 = packages.lts-6_1; + lts-6_2 = packages.ghc7103.override { + packageSetConfig = callPackage ../development/haskell-modules/configuration-lts-6.2.nix { }; + }; + lts-6 = packages.lts-6_2; lts = packages.lts-6; }; From ff8362aeb48d9ea54a9f21c38f53e641d75e1d5e Mon Sep 17 00:00:00 2001 From: Ruslan Babayev Date: Fri, 3 Jun 2016 10:57:40 -0700 Subject: [PATCH 377/520] pktgen: build with the same CFLAGS as dpdk --- pkgs/os-specific/linux/pktgen/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/os-specific/linux/pktgen/default.nix b/pkgs/os-specific/linux/pktgen/default.nix index 56ef935920b8..456e9a4679ce 100644 --- a/pkgs/os-specific/linux/pktgen/default.nix +++ b/pkgs/os-specific/linux/pktgen/default.nix @@ -16,6 +16,8 @@ stdenv.mkDerivation rec { enableParallelBuilding = true; + NIX_CFLAGS_COMPILE = [ "-march=core2" ]; + patchPhase = '' sed -i -e s:/usr/local:$out:g lib/lua/src/luaconf.h sed -i -e s:/usr/bin/lscpu:${utillinux}/bin/lscpu:g lib/common/wr_lscpu.h From 2ba759b1e21ee255f7dc1d976aeac33fd99fe81f Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Wed, 8 Jun 2016 06:22:16 +0200 Subject: [PATCH 378/520] offlineimap: 6.7.0 -> 6.7.0.1 --- pkgs/tools/networking/offlineimap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/offlineimap/default.nix b/pkgs/tools/networking/offlineimap/default.nix index 9c305791bda8..86dd080f0b1f 100644 --- a/pkgs/tools/networking/offlineimap/default.nix +++ b/pkgs/tools/networking/offlineimap/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchFromGitHub, buildPythonApplication, sqlite3 }: buildPythonApplication rec { - version = "6.7.0"; + version = "6.7.0.1"; name = "offlineimap-${version}"; namePrefix = ""; @@ -9,7 +9,7 @@ buildPythonApplication rec { owner = "OfflineIMAP"; repo = "offlineimap"; rev = "v${version}"; - sha256 = "127d7zy8h2h67bvrc4x98wcfskmkxislsv9qnvpgxlc56vnsrg54"; + sha256 = "15pzc095lhqyp55sya98wnnykvrnwzsmcl4ks8yl606kjii85md0"; }; doCheck = false; From 909f83f9f81456f72339ccf319b8aafeb31cd757 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 7 Jun 2016 19:36:34 +0200 Subject: [PATCH 379/520] piqi: 0.6.12 -> 0.6.13 --- pkgs/development/ocaml-modules/piqi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/piqi/default.nix b/pkgs/development/ocaml-modules/piqi/default.nix index 20ce994c0a48..273cd8f1862c 100644 --- a/pkgs/development/ocaml-modules/piqi/default.nix +++ b/pkgs/development/ocaml-modules/piqi/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, ocaml, findlib, camlp4, which, ulex, easy-format, ocaml_optcomp, xmlm, base64}: stdenv.mkDerivation rec { - version = "0.6.12"; + version = "0.6.13"; name = "piqi-${version}"; src = fetchurl { url = "https://github.com/alavrik/piqi/archive/v${version}.tar.gz"; - sha256 = "1ifnawnblvibf5rgp6gr4f20266dckfrlryikg1iiq3dx2wfl7f8"; + sha256 = "1whqr2bb3gds2zmrzqnv8vqka9928w4lx6mi6g244kmbwb2h8d8l"; }; buildInputs = [ocaml findlib camlp4 which ocaml_optcomp base64]; From 2bb6cb6d203953d207822ba569186595b09fd62b Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Tue, 7 Jun 2016 19:37:38 +0200 Subject: [PATCH 380/520] piqi-ocaml: 0.7.4 -> 0.7.5 --- pkgs/development/ocaml-modules/piqi-ocaml/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/ocaml-modules/piqi-ocaml/default.nix b/pkgs/development/ocaml-modules/piqi-ocaml/default.nix index 2d94272e6eb3..488a13ecf161 100644 --- a/pkgs/development/ocaml-modules/piqi-ocaml/default.nix +++ b/pkgs/development/ocaml-modules/piqi-ocaml/default.nix @@ -1,12 +1,12 @@ {stdenv, fetchurl, ocaml, findlib, piqi, ulex, easy-format, xmlm, base64, camlp4}: stdenv.mkDerivation rec { - version = "0.7.4"; + version = "0.7.5"; name = "piqi-ocaml-${version}"; src = fetchurl { url = "https://github.com/alavrik/piqi-ocaml/archive/v${version}.tar.gz"; - sha256 = "064c74f031l847q6s1vilj77n7h7i84jn8c83yid9nha3dssaf7m"; + sha256 = "0ngz6y8i98i5v2ma8nk6mc83pdsmf2z0ks7m3xi6clfg3zqbddrv"; }; buildInputs = [ocaml findlib piqi base64 camlp4]; From 8fc6ca75a93671b9bb3ccfbb5cd9a68a48754064 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Wed, 8 Jun 2016 16:51:33 +0200 Subject: [PATCH 381/520] torbrowser: 6.0 -> 6.0.1 --- pkgs/tools/security/tor/torbrowser.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/tor/torbrowser.nix b/pkgs/tools/security/tor/torbrowser.nix index ae9b4918aef5..03d73183704f 100644 --- a/pkgs/tools/security/tor/torbrowser.nix +++ b/pkgs/tools/security/tor/torbrowser.nix @@ -12,13 +12,13 @@ in stdenv.mkDerivation rec { name = "tor-browser-${version}"; - version = "6.0"; + version = "6.0.1"; src = fetchurl { url = "https://archive.torproject.org/tor-package-archive/torbrowser/${version}/tor-browser-linux${if stdenv.is64bit then "64" else "32"}-${version}_en-US.tar.xz"; sha256 = if stdenv.is64bit then - "09ad2x079kaw8q7xdklgkiw3j779ann1dnvbjpf7mlr5f54ijf7n" else - "04pagchs4biw02b3wd86q1rxwsygsfagkippfsnhyykwhgy1r95m"; + "1n3k0bhjmbmj1rdgyifqya6135wapafqygfviv6x52ng8sa2jhk1" else + "169f90w0fl4pqq9dbhzr6pkk15gqvp7813asqqh1p7s2a32zczza"; }; desktopItem = makeDesktopItem { From d88aa14c6e4563c3244ec89805abe7360246f623 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 8 Jun 2016 16:45:52 +0200 Subject: [PATCH 382/520] Firefox: 46.0.1 -> 47.0 --- pkgs/applications/networking/browsers/firefox/default.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox/default.nix b/pkgs/applications/networking/browsers/firefox/default.nix index a122f067722c..c3afa9dc95f7 100644 --- a/pkgs/applications/networking/browsers/firefox/default.nix +++ b/pkgs/applications/networking/browsers/firefox/default.nix @@ -4,6 +4,7 @@ , yasm, mesa, sqlite, unzip, makeWrapper, pysqlite , hunspell, libevent, libstartup_notification, libvpx , cairo, gstreamer, gst_plugins_base, icu, libpng, jemalloc, libpulseaudio +, autoconf213, which , enableGTK3 ? false , debugBuild ? false , # If you want the resulting program to call itself "Firefox" instead @@ -42,6 +43,8 @@ common = { pname, version, sha512 }: stdenv.mkDerivation rec { ++ lib.optional enableGTK3 gtk3 ++ lib.optionals (!passthru.ffmpegSupport) [ gstreamer gst_plugins_base ]; + nativeBuildInputs = [autoconf213 which]; + configureFlags = [ "--enable-application=browser" "--disable-javaxpcom" @@ -132,8 +135,8 @@ in { firefox-unwrapped = common { pname = "firefox"; - version = "46.0.1"; - sha512 = "c58642774f93ceaef4f99bc3fe578db6e4f6de7f1d23080da97b61bc4fc6b516ce99fa04368893c0fa2cb9cd0b36e96955656daa97d0bd0d8f4da6a2d364cb98"; + version = "47.0"; + sha512 = "35275e5595e7f01a232e5ea6d7899857d0a1d7eab640fe614ef66c865abedae3e08bc6c0cde13165d53140ccf6f721bbcd583d091032e119d44884287393c223"; }; firefox-esr-unwrapped = common { From bcd6e295d7f61caabd3dad99f63497e1276e52b3 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 8 Jun 2016 10:26:24 -0500 Subject: [PATCH 383/520] kde5.plasma-workspace: add iso-codes dependency Fixes #16040. CMake finds the iso-codes dependency through pkgconfig. --- .../kde-5/plasma-5.6/plasma-workspace/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix index f4da82bc86a3..bb65e1af9370 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-workspace/default.nix @@ -3,9 +3,9 @@ , baloo, kactivities, kcmutils, kconfig, kcrash, kdbusaddons, kdeclarative , kdelibs4support, kdesu, kglobalaccel, kidletime, kjsembed, knewstuff , knotifyconfig, kpackage, krunner, ktexteditor, ktextwidgets, kwallet, kwayland -, kwin, kxmlrpcclient, libdbusmenu, libkscreen, libksysguard, libSM, libXcursor -, networkmanager-qt, pam, phonon, plasma-framework, qtquickcontrols -, qtscript, qtx11extras, solid, wayland +, kwin, kxmlrpcclient, libkscreen, libksysguard, networkmanager-qt, phonon +, plasma-framework, qtquickcontrols, qtscript, qtx11extras, solid +, isocodes, libdbusmenu, libSM, libXcursor, pam, wayland }: plasmaPackage { @@ -15,13 +15,13 @@ plasmaPackage { extra-cmake-modules kdoctools ]; - propagatedBuildInputs = [ + buildInputs = [ baloo kactivities kcmutils kconfig kcrash kdbusaddons kdeclarative kdelibs4support kdesu kglobalaccel kidletime kjsembed knewstuff knotifyconfig kpackage krunner ktexteditor ktextwidgets kwallet kwayland - kwin kxmlrpcclient libdbusmenu libkscreen libksysguard libSM libXcursor - networkmanager-qt pam phonon plasma-framework qtquickcontrols - qtscript qtx11extras solid wayland + kwin kxmlrpcclient libkscreen libksysguard networkmanager-qt phonon + plasma-framework qtquickcontrols qtscript qtx11extras solid + isocodes libdbusmenu libSM libXcursor pam wayland ]; patches = copyPathsToStore (lib.readPathsFromFile ./. ./series); From d220132f222979db1350dde527408e445af3cf43 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Wed, 8 Jun 2016 16:38:08 +0100 Subject: [PATCH 384/520] httpie: 0.9.2 -> 0.9.3 (#16067) --- pkgs/tools/networking/httpie/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/httpie/default.nix b/pkgs/tools/networking/httpie/default.nix index 702fa208ac25..c960528322bc 100644 --- a/pkgs/tools/networking/httpie/default.nix +++ b/pkgs/tools/networking/httpie/default.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, pythonPackages }: pythonPackages.buildPythonApplication rec { - name = "httpie-0.9.2"; + name = "httpie-0.9.3"; namePrefix = ""; src = fetchurl { url = "mirror://pypi/h/httpie/${name}.tar.gz"; - sha256 = "0s0dsj1iimn17h0xyziwk4kz4ga9s0vy9rhzixh8dna32za84fdg"; + sha256 = "0jvzxr8r6cy6ipknkw95qf8rz69nqdv5nky87h1vcp5pf8mgza1h"; }; propagatedBuildInputs = with pythonPackages; [ pygments requests2 curses ]; From 0a4e806f8f6532098284238e15dfb9801309c70c Mon Sep 17 00:00:00 2001 From: vbgl Date: Wed, 8 Jun 2016 17:40:08 +0200 Subject: [PATCH 385/520] ocamlnet: 3.7.7 -> 4.1.1 (#16008) --- .../ocaml-modules/ocamlnet/default.nix | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/pkgs/development/ocaml-modules/ocamlnet/default.nix b/pkgs/development/ocaml-modules/ocamlnet/default.nix index 8ef940e75b00..e67eebeb7a05 100644 --- a/pkgs/development/ocaml-modules/ocamlnet/default.nix +++ b/pkgs/development/ocaml-modules/ocamlnet/default.nix @@ -1,20 +1,19 @@ -{stdenv, fetchurl, ncurses, ocaml, findlib, ocaml_pcre, camlzip, openssl, ocaml_ssl, cryptokit }: +{ stdenv, fetchurl, pkgconfig, ncurses, ocaml, findlib, ocaml_pcre, camlzip +, gnutls, nettle }: let ocaml_version = (builtins.parseDrvName ocaml.name).version; in stdenv.mkDerivation { - name = "ocamlnet-3.7.7"; + name = "ocamlnet-4.1.1"; src = fetchurl { - url = http://download.camlcity.org/download/ocamlnet-3.7.7.tar.gz; - sha256 = "02bnks9jshpq9nqva5lky5hl009yp19cgvf1izjca620hx54d3jv"; + url = http://download.camlcity.org/download/ocamlnet-4.1.1.tar.gz; + sha256 = "1z0j542dfzfimsn4asw1ycb4ww561pv92cz6s6kxazvgx60c5rb1"; }; - buildInputs = [ncurses ocaml findlib ocaml_pcre camlzip openssl ocaml_ssl cryptokit]; - - propagatedbuildInputs = [ncurses ocaml_pcre camlzip openssl ocaml_ssl cryptokit]; + buildInputs = [ ncurses ocaml findlib ocaml_pcre camlzip gnutls pkgconfig nettle ]; createFindlibDestdir = true; @@ -23,10 +22,9 @@ stdenv.mkDerivation { preConfigure = '' configureFlagsArray=( -bindir $out/bin - -enable-ssl + -enable-gnutls -enable-zip -enable-pcre - -enable-crypto -disable-gtk2 -with-nethttpd -datadir $out/lib/ocaml/${ocaml_version}/ocamlnet From 2e6b257edf66dcc7b7a31b59b5215a8e42ba4529 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Wed, 8 Jun 2016 17:43:42 +0200 Subject: [PATCH 386/520] rkt: 1.5.1 -> 1.7.0 (#15958) --- pkgs/applications/virtualization/rkt/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 1f6e5637fa0f..2440d54f6920 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -2,14 +2,16 @@ cpio, fetchurl, fetchFromGitHub, iptables, systemd, makeWrapper, glibc }: let - coreosImageRelease = "991.0.0"; - coreosImageSystemdVersion = "225"; + # Always get the information from + # https://github.com/coreos/rkt/blob/v${VERSION}/stage1/usr_from_coreos/coreos-common.mk + coreosImageRelease = "1032.0.0"; + coreosImageSystemdVersion = "229"; # TODO: track https://github.com/coreos/rkt/issues/1758 to allow "host" flavor. stage1Flavours = [ "coreos" "fly" "host" ]; in stdenv.mkDerivation rec { - version = "1.5.1"; + version = "1.7.0"; name = "rkt-${version}"; BUILDDIR="build-${name}"; @@ -17,12 +19,12 @@ in stdenv.mkDerivation rec { rev = "v${version}"; owner = "coreos"; repo = "rkt"; - sha256 = "1y99m0ay9qj5a0rb657abdjmwjvqi9dh3k6xr0npmx6vnvwpxs58"; + sha256 = "1ds063q205p5fbahl2qqawhav1fkcvs9ynh80j8g0h9ls0bbv8j7"; }; stage1BaseImage = fetchurl { url = "http://alpha.release.core-os.net/amd64-usr/${coreosImageRelease}/coreos_production_pxe_image.cpio.gz"; - sha256 = "1vaimrbynhjh4f30rq92bv1h3c1lxnf8isx5c2qvnn3lghypss9k"; + sha256 = "1lmyhncvw5cby4nbpw6ryiki05wra90fsr6xnsdgi9yqqs6v2d1f"; }; buildInputs = [ From 093c42161fe2f6730c1379c45bbd990de887284f Mon Sep 17 00:00:00 2001 From: Christian Lask Date: Thu, 2 Jun 2016 08:42:35 +0200 Subject: [PATCH 387/520] yabar: init at 0.4.0 Closes #15945 --- .../window-managers/yabar/default.nix | 37 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 39 insertions(+) create mode 100644 pkgs/applications/window-managers/yabar/default.nix diff --git a/pkgs/applications/window-managers/yabar/default.nix b/pkgs/applications/window-managers/yabar/default.nix new file mode 100644 index 000000000000..2f4a7f0e06c5 --- /dev/null +++ b/pkgs/applications/window-managers/yabar/default.nix @@ -0,0 +1,37 @@ +{ stdenv, fetchFromGitHub, cairo, gdk_pixbuf, libconfig, pango, pkgconfig, xcbutilwm }: + +stdenv.mkDerivation rec { + name = "yabar-${version}"; + version = "0.4.0"; + + src = fetchFromGitHub { + owner = "geommer"; + repo = "yabar"; + rev = "746387f0112f9b7aa2e2e27b3d69cb2892d8c63b"; + sha256 = "1nw9dar1caqln5fr0dqk7dg6naazbpfwwzxwlkxz42shsc3w30a6"; + }; + + buildInputs = [ cairo gdk_pixbuf libconfig pango pkgconfig xcbutilwm ]; + + postPatch = '' + substituteInPlace ./Makefile --replace "\$(shell git describe)" "${version}" + ''; + + buildPhase = '' + make DESTDIR=$out PREFIX=/ + ''; + + installPhase = '' + make DESTDIR=$out PREFIX=/ install + mkdir -p $out/share/yabar/examples + cp -v examples/*.config $out/share/yabar/examples + ''; + + meta = with stdenv.lib; { + description = "A modern and lightweight status bar for X window managers"; + homepage = "https://github.com/geommer/yabar"; + maintainers = [ maintainers.hiberno ]; + license = licenses.mit; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 83f5c2779fbc..49ef5ec12e08 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14906,6 +14906,8 @@ in xzgv = callPackage ../applications/graphics/xzgv { }; + yabar = callPackage ../applications/window-managers/yabar { }; + yate = callPackage ../applications/misc/yate { }; inherit (gnome3) yelp; From bd617cb18585dc09f37e85b93b4342658e4ab74c Mon Sep 17 00:00:00 2001 From: Luis Pedro Coelho Date: Tue, 7 Jun 2016 23:44:42 +0200 Subject: [PATCH 388/520] init bwa at 0.7.15 Closes #16064 --- .../science/biology/bwa/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 1 + 2 files changed, 28 insertions(+) create mode 100644 pkgs/applications/science/biology/bwa/default.nix diff --git a/pkgs/applications/science/biology/bwa/default.nix b/pkgs/applications/science/biology/bwa/default.nix new file mode 100644 index 000000000000..d7b8aca2ff5a --- /dev/null +++ b/pkgs/applications/science/biology/bwa/default.nix @@ -0,0 +1,27 @@ +{ stdenv, fetchFromGitHub, zlib }: + +stdenv.mkDerivation rec { + name = "bwa-${version}"; + version = "0.7.15"; + + src = fetchFromGitHub { + owner = "lh3"; + repo = "bwa"; + rev = "v${version}"; + sha256 = "1aasdr3lik42gafi9lds7xw0wgv8ijjll1g32d7jm04pp235c7nl"; + }; + + buildInputs = [ zlib ]; + + installPhase = '' + mkdir -p $out/bin + cp bwa $out/bin + ''; + + meta = with stdenv.lib; { + description = "A software package for mapping low-divergent sequences against a large reference genome, such as the human genome"; + license = licenses.gpl3; + homepage = http://bio-bwa.sourceforge.net/; + maintainers = with maintainers; [ luispedro ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4446520d178a..3097ac832654 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15951,6 +15951,7 @@ in samtools = callPackage ../applications/science/biology/samtools/default.nix { }; + bwa = callPackage ../applications/science/biology/bwa/default.nix { }; ### SCIENCE/MATH From 1201cc569cfbce66d39b748af40e94498f97b899 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Wed, 8 Jun 2016 19:53:48 +0200 Subject: [PATCH 389/520] geolite-legacy: 2016-06-06 -> 2016-06-08 --- pkgs/data/misc/geolite-legacy/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/pkgs/data/misc/geolite-legacy/default.nix b/pkgs/data/misc/geolite-legacy/default.nix index 3086bc56ee78..33a38f609b6a 100644 --- a/pkgs/data/misc/geolite-legacy/default.nix +++ b/pkgs/data/misc/geolite-legacy/default.nix @@ -8,26 +8,26 @@ let in stdenv.mkDerivation rec { name = "geolite-legacy-${version}"; - version = "2016-06-06"; + version = "2016-06-08"; srcGeoIP = fetchDB "GeoLiteCountry/GeoIP.dat.gz" "GeoIP.dat.gz" - "1fcbbbdqbxgqmgk61awzbbnd7d9yr2hnfmbc5z5z5s77aw8i8nkj"; + "1msm12a6m7rszvdbfldaq3d2hpq0rmpb0af678xwk1m6ff1rinm6"; srcGeoIPv6 = fetchDB "GeoIPv6.dat.gz" "GeoIPv6.dat.gz" - "06cx1fza11g25ckjkih6p4awk2pg0jwr421fh8bijwx6i550paca"; + "0sjh77cawlv5jix148r0kg5hy5xymgwsw1lf02dhn1mwqy9k4j9p"; srcGeoLiteCity = fetchDB "GeoLiteCity.dat.xz" "GeoIPCity.dat.xz" - "1246328q4bhrri15pywkhbaz362ch1vnfw3h0qr8wn8f6ilix6nd"; + "02g7qhjk1mh4gnplyry3nashkl3whlr4mv1lr56fh7qmi2fhjpk3"; srcGeoLiteCityv6 = fetchDB "GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz" "GeoIPCityv6.dat.gz" - "1v8wdqh6yjicb7bdcxp7v5dimlrny1fiynf4wr6wh65vr738csy2"; + "0dq5rh08xgwsrmkniww001b2dpd1d7db4sd385p70hkbbry496l3"; srcGeoIPASNum = fetchDB "asnum/GeoIPASNum.dat.gz" "GeoIPASNum.dat.gz" - "102lpcwsbrqin6wpg887hs0p05zcs7rdgrl9qv8x4mfrgnp0vk91"; + "0isimfb0as6hblsbi0zlpj0zyyr6g3y7n1q7sic748hdf7a1zphn"; srcGeoIPASNumv6 = fetchDB "asnum/GeoIPASNumv6.dat.gz" "GeoIPASNumv6.dat.gz" - "06jglp1786bbgfn8wb1y8yxx3djzcfimacrmycwwyvgn1a5i80ay"; + "1klh5s7z0z1mipi92q1kf5k9zznvxs9ma69q704vpblfah3km3cc"; meta = with stdenv.lib; { description = "GeoLite Legacy IP geolocation databases"; From d13378ffd16561f8fc4d37215ef0e3c6030b4a82 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 8 Jun 2016 19:13:52 +0100 Subject: [PATCH 390/520] haskellPackages.libmpd: remove upper bound on time --- pkgs/development/haskell-modules/configuration-common.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 39146965b0f4..b5ccb3d8f3a0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1029,4 +1029,11 @@ self: super: { # Tests fail with "Couldn't launch intero process." intero = dontCheck super.intero; + + # libmpd has an upper-bound on time which doesn't seem to be a real build req + libmpd = dontCheck (overrideCabal super.libmpd (drv: { + postPatch = (drv.postPatch or "") + '' + substituteInPlace ./libmpd.cabal --replace "time >=1.5 && <1.6" "time >=1.5" + ''; + })); } From ba096752329ef5d8755bdc6f938bba60b76d52b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benno=20F=C3=BCnfst=C3=BCck?= Date: Wed, 8 Jun 2016 20:21:04 +0200 Subject: [PATCH 391/520] zap: update 2.4.3 -> 2.5.0 --- pkgs/tools/networking/zap/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/networking/zap/default.nix b/pkgs/tools/networking/zap/default.nix index 896f260f2e9d..50418a1badc6 100644 --- a/pkgs/tools/networking/zap/default.nix +++ b/pkgs/tools/networking/zap/default.nix @@ -2,18 +2,19 @@ stdenv.mkDerivation rec { name = "zap-${version}"; - version = "2.4.3"; + version = "2.5.0"; src = fetchFromGitHub { owner = "zaproxy"; repo = "zaproxy"; rev ="${version}"; - sha256 = "1np9jxy09j8wzqcxw3c71x9hwrrbkjlz7qw903kv43wr74mv2snd"; + sha256 = "12bd0f2zrs7cvcyy2xj31m3szxrr2ifdjyd24z047qm465z3hj33"; }; buildInputs = [ jdk ant ]; buildPhase = '' cd build + echo -n "${version}" > version.txt ant -f build.xml setup init compile dist copy-source-to-build package-linux ''; From b214c6b64fde1ef5fc549cb8e0f99884f3ec03f7 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 8 Jun 2016 13:51:25 -0500 Subject: [PATCH 392/520] kde5.plasma-desktop: add missing ksysguard dependency --- pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix index ca09e15bc44d..618e7387e62c 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/plasma-desktop/default.nix @@ -7,7 +7,7 @@ , qtsvg, libXcursor, libXft, libxkbfile, xf86inputevdev , xf86inputsynaptics, xinput, xkeyboard_config, xorgserver , libcanberra_kde, libpulseaudio, makeQtWrapper, utillinux -, qtquickcontrols +, qtquickcontrols, ksysguard }: plasmaPackage rec { @@ -17,14 +17,14 @@ plasmaPackage rec { kdoctools makeQtWrapper ]; - propagatedBuildInputs = [ + buildInputs = [ attica boost fontconfig kcmutils kdbusaddons kded kitemmodels knewstuff knotifications knotifyconfig kwallet libcanberra_kde libXcursor libpulseaudio libXft libxkbfile phonon qtsvg xf86inputevdev xf86inputsynaptics xkeyboard_config xinput baloo kactivities kauth kdeclarative kdelibs4support kemoticons kglobalaccel ki18n kpeople krunner kwin plasma-framework plasma-workspace qtdeclarative - qtquickcontrols qtx11extras + qtquickcontrols qtx11extras ksysguard ]; patches = [ ./0001-qt-5.5-QML-import-paths.patch From 8dae2eddcfad999a7f8252e43789b0e78d66e6d1 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Wed, 8 Jun 2016 14:58:35 -0500 Subject: [PATCH 393/520] kde5.kdeplasma-addons: add missing ksysguard dependency --- .../desktops/kde-5/plasma-5.6/kdeplasma-addons.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix index 570112e44804..3371e17beaf8 100644 --- a/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix +++ b/pkgs/desktops/kde-5/plasma-5.6/kdeplasma-addons.nix @@ -1,7 +1,8 @@ -{ plasmaPackage, extra-cmake-modules, kdoctools, ibus, kconfig -, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n -, kio, knewstuff, kross, krunner, kservice, kunitconversion +{ plasmaPackage, extra-cmake-modules, kdoctools +, kconfig, kconfigwidgets, kcoreaddons, kcmutils, kdelibs4support, ki18n +, kio, knewstuff, kross, krunner, kservice, ksysguard, kunitconversion , plasma-framework, plasma-workspace, qtdeclarative, qtx11extras +, ibus }: plasmaPackage { @@ -11,8 +12,9 @@ plasmaPackage { kdoctools ]; propagatedBuildInputs = [ - kdelibs4support kio kross krunner plasma-framework plasma-workspace - qtdeclarative qtx11extras ibus kconfig kconfigwidgets kcoreaddons kcmutils - knewstuff kservice kunitconversion + kconfig kconfigwidgets kcoreaddons kcmutils kdelibs4support kio knewstuff + kross krunner kservice ksysguard kunitconversion plasma-framework + plasma-workspace qtdeclarative qtx11extras + ibus ]; } From 10c87e69b4ab04a499be1a54bca1b8548f657d63 Mon Sep 17 00:00:00 2001 From: Maciek Starzyk Date: Wed, 8 Jun 2016 23:34:23 +0200 Subject: [PATCH 394/520] haskellPackages.timezone-series: Add support for time-1.6 - applied patch https://github.com/ygale/timezone-series/pull/1 --- .../haskell-modules/configuration-common.nix | 2 + .../patches/timezone-series.patch | 64 +++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 pkgs/development/haskell-modules/patches/timezone-series.patch diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b5ccb3d8f3a0..bf8ff6df994a 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1036,4 +1036,6 @@ self: super: { substituteInPlace ./libmpd.cabal --replace "time >=1.5 && <1.6" "time >=1.5" ''; })); + + timezone-series = appendPatch super.timezone-series ./patches/timezone-series.patch; } diff --git a/pkgs/development/haskell-modules/patches/timezone-series.patch b/pkgs/development/haskell-modules/patches/timezone-series.patch new file mode 100644 index 000000000000..4605d16f86c9 --- /dev/null +++ b/pkgs/development/haskell-modules/patches/timezone-series.patch @@ -0,0 +1,64 @@ +commit f8dece8c016db6476e2bb0d4f972769a76f6ff40 +Author: Ryan Trinkle +Date: Wed May 11 20:17:23 2016 -0400 + + Add support for time-1.6 + +diff --git a/Data/Time/LocalTime/TimeZone/Series.hs b/Data/Time/LocalTime/TimeZone/Series.hs +index babcc0b..c8bb0ad 100644 +--- a/Data/Time/LocalTime/TimeZone/Series.hs ++++ b/Data/Time/LocalTime/TimeZone/Series.hs +@@ -2,6 +2,7 @@ + -- clock settings that occurred in the past and are scheduled to occur + -- in the future for the timezone. + ++{-# LANGUAGE CPP #-} + module Data.Time.LocalTime.TimeZone.Series + ( + -- * Representing a timezone +@@ -76,8 +77,18 @@ instance Show TimeZoneSeries where + instance Read TimeZoneSeries where + readsPrec n = map (first $ flip TimeZoneSeries []) . readsPrec n + ++-- In time-1.6, buildTime was changed to return a `Maybe t` rather ++-- than just a `t` ++#if MIN_VERSION_time(1,6,0) ++mapBuiltTime :: (a -> b) -> Maybe a -> Maybe b ++mapBuiltTime = fmap ++#else ++mapBuiltTime :: (a -> b) -> a -> b ++mapBuiltTime = id ++#endif ++ + instance ParseTime TimeZoneSeries where +- buildTime locale = flip TimeZoneSeries [] . buildTime locale ++ buildTime locale = mapBuiltTime (flip TimeZoneSeries []) . buildTime locale + + -- | The latest non-summer @TimeZone@ in a @TimeZoneSeries@ is in some + -- sense representative of the timezone. +@@ -167,7 +178,7 @@ instance Read ZoneSeriesTime where + readsPrec n = map (first zonedTimeToZoneSeriesTime) . readsPrec n + + instance ParseTime ZoneSeriesTime where +- buildTime locale = zonedTimeToZoneSeriesTime . buildTime locale ++ buildTime locale = mapBuiltTime zonedTimeToZoneSeriesTime . buildTime locale + + instance FormatTime ZoneSeriesTime where + formatCharacter = +diff --git a/timezone-series.cabal b/timezone-series.cabal +index 058c142..4ee73a4 100644 +--- a/timezone-series.cabal ++++ b/timezone-series.cabal +@@ -1,5 +1,5 @@ + Name: timezone-series +-Version: 0.1.5.1 ++Version: 0.1.5.2 + Synopsis: Enhanced timezone handling for Data.Time + Description: This package endows Data.Time, from the time + package, with several data types and functions +@@ -28,4 +28,4 @@ Library + Exposed-modules: Data.Time.LocalTime.TimeZone.Series + Default-extensions: DeriveDataTypeable + Build-depends: base >= 4.4 && < 5, +- time >= 1.1.4 && < 1.6 ++ time >= 1.1.4 && < 1.7 From 0158d124bd32346c43e1aab6777b94ca82325db4 Mon Sep 17 00:00:00 2001 From: Maciek Starzyk Date: Thu, 9 Jun 2016 00:03:41 +0200 Subject: [PATCH 395/520] haskellPackages.timezone-series: Download patch instead of checking it into nixpkgs --- .../haskell-modules/configuration-common.nix | 5 +- .../patches/timezone-series.patch | 64 ------------------- 2 files changed, 4 insertions(+), 65 deletions(-) delete mode 100644 pkgs/development/haskell-modules/patches/timezone-series.patch diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index bf8ff6df994a..b723ad27ab8e 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1037,5 +1037,8 @@ self: super: { ''; })); - timezone-series = appendPatch super.timezone-series ./patches/timezone-series.patch; + timezone-series = appendPatch super.timezone-series (pkgs.fetchpatch { + url = "https://github.com/ryantrinkle/timezone-series/commit/f8dece8c016db6476e2bb0d4f972769a76f6ff40.patch"; + sha256 = "02sgciica2pzaal7wwp36v6iybr1hjypda0zljxylnq0qs8bizhy"; + }); } diff --git a/pkgs/development/haskell-modules/patches/timezone-series.patch b/pkgs/development/haskell-modules/patches/timezone-series.patch deleted file mode 100644 index 4605d16f86c9..000000000000 --- a/pkgs/development/haskell-modules/patches/timezone-series.patch +++ /dev/null @@ -1,64 +0,0 @@ -commit f8dece8c016db6476e2bb0d4f972769a76f6ff40 -Author: Ryan Trinkle -Date: Wed May 11 20:17:23 2016 -0400 - - Add support for time-1.6 - -diff --git a/Data/Time/LocalTime/TimeZone/Series.hs b/Data/Time/LocalTime/TimeZone/Series.hs -index babcc0b..c8bb0ad 100644 ---- a/Data/Time/LocalTime/TimeZone/Series.hs -+++ b/Data/Time/LocalTime/TimeZone/Series.hs -@@ -2,6 +2,7 @@ - -- clock settings that occurred in the past and are scheduled to occur - -- in the future for the timezone. - -+{-# LANGUAGE CPP #-} - module Data.Time.LocalTime.TimeZone.Series - ( - -- * Representing a timezone -@@ -76,8 +77,18 @@ instance Show TimeZoneSeries where - instance Read TimeZoneSeries where - readsPrec n = map (first $ flip TimeZoneSeries []) . readsPrec n - -+-- In time-1.6, buildTime was changed to return a `Maybe t` rather -+-- than just a `t` -+#if MIN_VERSION_time(1,6,0) -+mapBuiltTime :: (a -> b) -> Maybe a -> Maybe b -+mapBuiltTime = fmap -+#else -+mapBuiltTime :: (a -> b) -> a -> b -+mapBuiltTime = id -+#endif -+ - instance ParseTime TimeZoneSeries where -- buildTime locale = flip TimeZoneSeries [] . buildTime locale -+ buildTime locale = mapBuiltTime (flip TimeZoneSeries []) . buildTime locale - - -- | The latest non-summer @TimeZone@ in a @TimeZoneSeries@ is in some - -- sense representative of the timezone. -@@ -167,7 +178,7 @@ instance Read ZoneSeriesTime where - readsPrec n = map (first zonedTimeToZoneSeriesTime) . readsPrec n - - instance ParseTime ZoneSeriesTime where -- buildTime locale = zonedTimeToZoneSeriesTime . buildTime locale -+ buildTime locale = mapBuiltTime zonedTimeToZoneSeriesTime . buildTime locale - - instance FormatTime ZoneSeriesTime where - formatCharacter = -diff --git a/timezone-series.cabal b/timezone-series.cabal -index 058c142..4ee73a4 100644 ---- a/timezone-series.cabal -+++ b/timezone-series.cabal -@@ -1,5 +1,5 @@ - Name: timezone-series --Version: 0.1.5.1 -+Version: 0.1.5.2 - Synopsis: Enhanced timezone handling for Data.Time - Description: This package endows Data.Time, from the time - package, with several data types and functions -@@ -28,4 +28,4 @@ Library - Exposed-modules: Data.Time.LocalTime.TimeZone.Series - Default-extensions: DeriveDataTypeable - Build-depends: base >= 4.4 && < 5, -- time >= 1.1.4 && < 1.6 -+ time >= 1.1.4 && < 1.7 From e3358c1951c9e62906d51661d61a8c46a60e6919 Mon Sep 17 00:00:00 2001 From: obadz Date: Wed, 8 Jun 2016 21:12:30 +0100 Subject: [PATCH 396/520] pcmanfm-qt: init at 0.11.0 --- pkgs/applications/misc/pcmanfm-qt/default.nix | 60 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 + 2 files changed, 62 insertions(+) create mode 100644 pkgs/applications/misc/pcmanfm-qt/default.nix diff --git a/pkgs/applications/misc/pcmanfm-qt/default.nix b/pkgs/applications/misc/pcmanfm-qt/default.nix new file mode 100644 index 000000000000..5b270f15fb6d --- /dev/null +++ b/pkgs/applications/misc/pcmanfm-qt/default.nix @@ -0,0 +1,60 @@ +{ stdenv +, fetchFromGitHub +, cmake +, pkgconfig +, qt5 +, menu-cache +, libfm +, elementary-icon-theme +}: + +let + version = "0.11.0"; + + buildInputsCommon = [ cmake pkgconfig qt5.qtbase qt5.qttools qt5.qtx11extras menu-cache libfm ]; + + libfm-qt = stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "libfm-qt"; + + src = fetchFromGitHub { + owner = "lxde"; + repo = pname; + rev = version; + sha256 = "0a8rd0m66l6n2jl7fin74byyy69pyc6rgnfkpmkbi6561l903592"; + }; + + buildInputs = buildInputsCommon; + }; + +in stdenv.mkDerivation rec { + name = "${pname}-${version}"; + pname = "pcmanfm-qt"; + + src = fetchFromGitHub { + owner = "lxde"; + repo = pname; + rev = version; + sha256 = "139l8m32sqcjmydppbv24iqnfsbl5b4rqmqzdayvlh6haf1ihinn"; + }; + + + buildInputs = buildInputsCommon ++ [ libfm-qt qt5.makeQtWrapper ]; + + postPatch = '' + substituteInPlace pcmanfm/settings.cpp --replace \"elementary\" \"Elementary\" + ''; + + postInstall = '' + wrapQtProgram $out/bin/pcmanfm-qt \ + --prefix XDG_DATA_DIRS : "${elementary-icon-theme}/share" + ''; + + meta = with stdenv.lib; { + homepage = "https://github.com/lxde/pcmanfm-qt"; + license = licenses.gpl2Plus; + description = "File manager with QT interface"; + maintainers = with maintainers; [ obadz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3097ac832654..300aea3e99ff 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13580,6 +13580,8 @@ in pcmanfm = callPackage ../applications/misc/pcmanfm { }; + pcmanfm-qt = callPackage ../applications/misc/pcmanfm-qt { }; + pcmanx-gtk2 = callPackage ../applications/misc/pcmanx-gtk2 { }; pig = callPackage ../applications/networking/cluster/pig { }; From a2612dc0f13eb995ed3c491b96c119e2de892248 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Wed, 8 Jun 2016 21:02:07 +0200 Subject: [PATCH 397/520] nomad: add package --- pkgs/top-level/all-packages.nix | 2 ++ pkgs/top-level/go-packages.nix | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3097ac832654..5162d1ec7649 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2610,6 +2610,8 @@ in noip = callPackage ../tools/networking/noip { }; + nomad = goPackages.nomad.bin // { outputs = [ "bin" ]; }; + milu = callPackage ../applications/misc/milu { }; mpack = callPackage ../tools/networking/mpack { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index ddaae38edbc7..95337accf6b4 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2756,6 +2756,14 @@ let sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; }; + nomad = buildFromGitHub { + rev = "v0.3.2"; + owner = "hashicorp"; + repo = "nomad"; + sha256 = "1m2pdragpzrq0xbmnba039iiyhb16wirj3n1s52z5r8r0mr7drai"; + subPackages = [ "." ]; + }; + nsq = buildFromGitHub { rev = "v0.3.5"; owner = "bitly"; From 4bc528ce280d3a2e65ee3937949f4b8793928615 Mon Sep 17 00:00:00 2001 From: Jinjing Wang Date: Fri, 3 Jun 2016 18:27:27 +0800 Subject: [PATCH 398/520] shadowsocks-libev: 2.4.6 -> 2.4.7 --- .../networking/shadowsocks-libev/default.nix | 27 ++++++++++++------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/networking/shadowsocks-libev/default.nix b/pkgs/tools/networking/shadowsocks-libev/default.nix index 25068f8916be..e12d25930210 100644 --- a/pkgs/tools/networking/shadowsocks-libev/default.nix +++ b/pkgs/tools/networking/shadowsocks-libev/default.nix @@ -1,18 +1,23 @@ { withPolarSSL ? false +, enableSystemSharedLib ? true , stdenv, fetchurl, zlib , openssl ? null , polarssl ? null +, libev ? null +, libsodium ? null +, udns ? null }: let - version = "2.4.6"; - sha256 = "c87781bc280d7a7180cf82b17ad4e8f38242c73431d5b4b6cd4ccd0c29e1fe93"; + version = "2.4.7"; + sha256 = "957265cc5339e020d8c8bb7414ab14936e3939dc7355f334aec896ec9b03c6ed"; in +with stdenv.lib; + stdenv.mkDerivation rec { - inherit version; name = "shadowsocks-libev-${version}"; src = fetchurl { url = "https://github.com/shadowsocks/shadowsocks-libev/archive/v${version}.tar.gz"; @@ -20,13 +25,15 @@ stdenv.mkDerivation rec { }; buildInputs = [ zlib ] - ++ stdenv.lib.optional (!withPolarSSL) openssl - ++ stdenv.lib.optional withPolarSSL polarssl; + ++ optional (!withPolarSSL) openssl + ++ optional withPolarSSL polarssl + ++ optional enableSystemSharedLib [libev libsodium udns]; - configureFlags = stdenv.lib.optional (withPolarSSL) + configureFlags = optional withPolarSSL [ "--with-crypto-library=polarssl" "--with-polarssl=${polarssl}" - ]; + ] + ++ optional enableSystemSharedLib "--enable-system-shared-lib"; meta = { description = "A lightweight secured SOCKS5 proxy"; @@ -35,8 +42,8 @@ stdenv.mkDerivation rec { It is a port of Shadowsocks created by @clowwindy, which is maintained by @madeye and @linusyang. ''; homepage = https://github.com/shadowsocks/shadowsocks-libev; - license = stdenv.lib.licenses.gpl3Plus; - maintainers = [ stdenv.lib.maintainers.nfjinjing ]; - platforms = stdenv.lib.platforms.all; + license = licenses.gpl3Plus; + maintainers = [ maintainers.nfjinjing ]; + platforms = platforms.all; }; } From 487140e8ef6cb044d3d252f23344f1a9ace668e3 Mon Sep 17 00:00:00 2001 From: Nick Novitski Date: Sat, 4 Jun 2016 15:34:14 +0000 Subject: [PATCH 399/520] typespeed: fix darwin compatibility --- pkgs/games/typespeed/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/games/typespeed/default.nix b/pkgs/games/typespeed/default.nix index 55ebcc699a3d..45067d963975 100644 --- a/pkgs/games/typespeed/default.nix +++ b/pkgs/games/typespeed/default.nix @@ -11,6 +11,7 @@ stdenv.mkDerivation { patches = [ ./typespeed-config-in-home.patch ]; configureFlags = "--datadir=\${out}/share/"; + makeFlags = ["CC=cc"]; meta = with stdenv.lib; { description = "A curses based typing game"; From 51a7260fba63167bd17d58631fa0991029521841 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Tue, 7 Jun 2016 22:47:33 -0700 Subject: [PATCH 400/520] factor-lang: Init at 0.98 Factor is a concatenative, stack-based programming language. --- .../compilers/factor-lang/default.nix | 94 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 + 2 files changed, 98 insertions(+) create mode 100644 pkgs/development/compilers/factor-lang/default.nix diff --git a/pkgs/development/compilers/factor-lang/default.nix b/pkgs/development/compilers/factor-lang/default.nix new file mode 100644 index 000000000000..6b7096dad723 --- /dev/null +++ b/pkgs/development/compilers/factor-lang/default.nix @@ -0,0 +1,94 @@ +{ stdenv, fetchurl, fetchFromGitHub, glib, glibc, git, + rlwrap, curl, pkgconfig, perl, makeWrapper, tzdata, ncurses, + libX11, pango, cairo, gtk2, gdk_pixbuf, gtkglext, + mesa, libXmu, libXt, libICE, libSM }: + +stdenv.mkDerivation rec { + name = "factor-lang-${version}"; + version = "0.97"; + rev = "eb3ca179740e6cfba696b55a999caa13369e6182"; + + src = fetchFromGitHub { + owner = "factor"; + repo = "factor"; + rev = rev; + sha256 = "16zlbxbad3d19jq01nk824i19bypqzn8l3yfxys40z06vjjncapd"; + }; + + factorimage = fetchurl { + url = http://downloads.factorcode.org/releases/0.97/factor-linux-x86-64-0.97.tar.gz; + sha256 = "06y125c8vbng54my5fxdr3crpxkvhhcng2n35cxddd3wcg6vhxhp"; + name = "factorimage"; + }; + + buildInputs = [ git rlwrap curl pkgconfig perl makeWrapper + libX11 pango cairo gtk2 gdk_pixbuf gtkglext + mesa libXmu libXt libICE libSM ]; + + buildPhase = '' + make $(bash ./build-support/factor.sh make-target) GIT_LABEL=heads/master-${rev} + ''; + + installPhase = '' + mkdir -p $out/bin $out/lib/factor + # First, get a workable image. Unfortunately, no boot-image + # is available with release info. So fetch a released image. + # The released image has library path info embedded, so we + # have to first recreate the boot image with Nix paths, and + # then use it to build the Nix release image. + zcat ${factorimage} | (cd $out/lib && tar -xvpf - factor/factor.image ) + + cp -r basis core extra unmaintained $out/lib/factor + + # Factor uses the home directory for cache during compilation. + # We cant have that. So set it to $TMPDIR/.home + export HOME=$TMPDIR/.home && mkdir -p $HOME + + # there is no ld.so.cache in NixOS so we construct one + # out of known libraries. The side effect is that find-lib + # will work only on the known libraries. There does not seem + # to be a generic solution here. + find $(echo ${stdenv.lib.makeLibraryPath [ + glib libX11 pango cairo gtk2 gdk_pixbuf gtkglext + mesa libXmu libXt libICE libSM ]} | sed -e 's#:# #g') -name \*.so.\* > $TMPDIR/so.lst + + (echo $(cat $TMPDIR/so.lst | wc -l) "libs found in cache \`/etc/ld.so.cache'"; + for l in $(<$TMPDIR/so.lst); + do + echo " $(basename $l) (libc6,x86-64) => $l"; + done)> $out/lib/factor/ld.so.cache + + sed -ie "s#/sbin/ldconfig -p#cat $out/lib/factor/ld.so.cache#g" \ + $out/lib/factor/basis/alien/libraries/finder/linux/linux.factor + + sed -ie 's#/usr/share/zoneinfo/#${tzdata}/share/zoneinfo/#g' \ + $out/lib/factor/extra/tzinfo/tzinfo.factor + + sed -ie 's#/usr/share/terminfo#${ncurses}/share/terminfo#g' \ + $out/lib/factor/extra/terminfo/terminfo.factor + + cp ./factor $out/bin + wrapProgram $out/bin/factor --prefix LD_LIBRARY_PATH : \ + "${stdenv.lib.makeLibraryPath [ glib + libX11 pango cairo gtk2 gdk_pixbuf gtkglext + mesa libXmu libXt libICE libSM ]}" + + sed -ie 's#/bin/.factor-wrapped#/lib/factor/factor#g' $out/bin/factor + mv $out/bin/.factor-wrapped $out/lib/factor/factor + + # make a new bootstrap image + (cd $out/bin && ./factor -script -e='"unix-x86.64" USING: system bootstrap.image memory ; make-image save 0 exit' ) + mv $out/lib/factor/boot.unix-x86.64.image $out/lib/factor/factor.image + # now make the full system image, it overwrites $out/lib/factor/factor.image + $out/bin/factor -i=$out/lib/factor/factor.image + ''; + + meta = with stdenv.lib; { + homepage = http://factorcode.org; + license = licenses.bsd2; + description = "A concatenative, stack-based programming language"; + + maintainers = [ maintainers.vrthra ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9cead489cf25..be992fdc7373 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6921,6 +6921,10 @@ in faad2 = callPackage ../development/libraries/faad2 { }; + factor-lang = callPackage ../development/compilers/factor-lang { + inherit (pkgs.gnome) gtkglext; + }; + farbfeld = callPackage ../development/libraries/farbfeld { }; farsight2 = callPackage ../development/libraries/farsight2 { }; From fcb0023e8030074f140c69013a6b339880cd24de Mon Sep 17 00:00:00 2001 From: obadz Date: Thu, 9 Jun 2016 08:51:40 +0100 Subject: [PATCH 401/520] haskellPackages.intero: fix tests (thanks @rvl) --- .../haskell-modules/configuration-common.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index b5ccb3d8f3a0..3d9606298dc5 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1027,13 +1027,17 @@ self: super: { cairo = addBuildTool super.cairo self.gtk2hs-buildtools; pango = addBuildTool super.pango self.gtk2hs-buildtools; - # Tests fail with "Couldn't launch intero process." - intero = dontCheck super.intero; + # Fix tests which would otherwise fail with "Couldn't launch intero process." + intero = overrideCabal super.intero (drv: { + postPatch = (drv.postPatch or "") + '' + substituteInPlace src/test/Main.hs --replace "\"intero\"" "\"$PWD/dist/build/intero/intero\"" + ''; + }); # libmpd has an upper-bound on time which doesn't seem to be a real build req libmpd = dontCheck (overrideCabal super.libmpd (drv: { postPatch = (drv.postPatch or "") + '' - substituteInPlace ./libmpd.cabal --replace "time >=1.5 && <1.6" "time >=1.5" + substituteInPlace libmpd.cabal --replace "time >=1.5 && <1.6" "time >=1.5" ''; })); } From bfa32800c3df6dd3a8e23bd239ec102173407249 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 21 Apr 2016 11:49:33 +0200 Subject: [PATCH 402/520] First programs extracted from go-packages: deis and gawp --- pkgs/development/go-modules/libs.json | 29 ++++++++++++++++++++ pkgs/development/tools/deis/default.nix | 36 +++++++++++++++++++++++++ pkgs/tools/misc/gawp/default.nix | 29 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 4 +-- pkgs/top-level/go-packages.nix | 32 ---------------------- 5 files changed, 96 insertions(+), 34 deletions(-) create mode 100644 pkgs/development/go-modules/libs.json create mode 100644 pkgs/development/tools/deis/default.nix create mode 100644 pkgs/tools/misc/gawp/default.nix diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json new file mode 100644 index 000000000000..8e5fee179bf2 --- /dev/null +++ b/pkgs/development/go-modules/libs.json @@ -0,0 +1,29 @@ +[ + { + "goPackagePath": "golang.org/x/sys", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/sys", + "rev": "7a56174f0086b32866ebd746a794417edbc678a1", + "sha256": "13jaz47wyrfak066ywkrvqnk1ijxik0nlvi7vkpi3gaiwcrlb5g2" + } + }, + { + "goPackagePath": "gopkg.in/fsnotify.v1", + "fetch": { + "type": "git", + "url": "https://gopkg.in/fsnotify.v1", + "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", + "sha256": "1ljkdzbj9ll3jx1dggslzpm475prvsg22hdpxnb6kxqyk3z8dqdj" + } + }, + { + "goPackagePath": "gopkg.in/yaml.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/yaml.v2", + "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", + "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" + } + } +] \ No newline at end of file diff --git a/pkgs/development/tools/deis/default.nix b/pkgs/development/tools/deis/default.nix new file mode 100644 index 000000000000..3787e30fbf43 --- /dev/null +++ b/pkgs/development/tools/deis/default.nix @@ -0,0 +1,36 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "deis-${version}"; + version = "1.13.0"; + rev = "v${version}"; + + goPackagePath = "github.com/deis/deis"; + subPackages = [ "client" ]; + + postInstall = '' + if [ -f "$bin/bin/client" ]; then + mv "$bin/bin/client" "$bin/bin/deis" + fi + ''; + + src = fetchgit { + inherit rev; + url = "https://github.com/deis/deis"; + sha256 = "1fblg3gf7dh5hhm4ajq7yl7iy6gw8p5xlh4z8kvfy542m1fzr0dc"; + }; + + extraSrcs = map ( jsonDep: + { + inherit (jsonDep) goPackagePath; + src = if jsonDep.fetch.type == "git" then + fetchgit { + inherit (jsonDep.fetch) url rev sha256; + } + else {}; + } + ) (builtins.fromJSON (builtins.readFile ../../go-modules/libs.json)); +} diff --git a/pkgs/tools/misc/gawp/default.nix b/pkgs/tools/misc/gawp/default.nix new file mode 100644 index 000000000000..608b1764887a --- /dev/null +++ b/pkgs/tools/misc/gawp/default.nix @@ -0,0 +1,29 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "gawp-${version}"; + version = "20160121-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "5db2d8faa220e8d6eaf8677354bd197bf621ff7f"; + + goPackagePath = "github.com/martingallagher/gawp"; + + src = fetchgit { + inherit rev; + url = "https://github.com/martingallagher/gawp"; + sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly"; + }; + + extraSrcs = map ( jsonDep: + { + inherit (jsonDep) goPackagePath; + src = if jsonDep.fetch.type == "git" then + fetchgit { + inherit (jsonDep.fetch) url rev sha256; + } + else {}; + } + ) (builtins.fromJSON (builtins.readFile ../../../development/go-modules/libs.json)); +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9cead489cf25..a45a56161617 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -730,7 +730,7 @@ in ddate = callPackage ../tools/misc/ddate { }; - deis = goPackages.deis.bin // { outputs = [ "bin" ]; }; + deis = (callPackage ../development/tools/deis {}).bin; dfilemanager = self.kde5.dfilemanager; @@ -1644,7 +1644,7 @@ in gawkInteractive = appendToName "interactive" (gawk.override { interactive = true; }); - gawp = goPackages.gawp.bin // { outputs = [ "bin" ]; }; + gawp = (callPackage ../tools/misc/gawp {}).bin; gazeboSimulator = recurseIntoAttrs { sdformat = gazeboSimulator.sdformat4; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 95337accf6b4..619d4c60f1d6 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -669,20 +669,6 @@ let sha256 = "1wxv2cbihzcsz2z7iycyzl7f3arhhgagcc5kqln1k1mkm4l85z0q"; }; - deis = buildFromGitHub { - rev = "v1.12.2"; - owner = "deis"; - repo = "deis"; - sha256 = "03lznzcij3gn08kqj2p6skifcdv5aw09dm6zxgvqw7nxx2n1j2ib"; - subPackages = [ "client" ]; - buildInputs = [ docopt-go crypto yaml-v2 ]; - postInstall = '' - if [ -f "$bin/bin/client" ]; then - mv "$bin/bin/client" "$bin/bin/deis" - fi - ''; - }; - dns = buildFromGitHub { rev = "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa"; version = "2016-03-28"; @@ -934,24 +920,6 @@ let sha256 = "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj"; }; - gawp = buildFromGitHub { - rev = "488705639109de54d38974cc31353d34cc2cd609"; - version = "2015-08-31"; - owner = "martingallagher"; - repo = "gawp"; - sha256 = "0iqqd63nqdijdskdb9f0jwnm6akkh1p2jw4p2w7r1dbaqz1znyay"; - dontInstallSrc = true; - buildInputs = [ fsnotify.v1 yaml-v2 ]; - - meta = with stdenv.lib; { - homepage = "https://github.com/martingallagher/gawp"; - description = "A simple, configurable, file watching, job execution tool implemented in Go"; - maintainers = with maintainers; [ kamilchm ]; - license = licenses.asl20 ; - platforms = platforms.all; - }; - }; - gcloud-golang = buildFromGitHub { rev = "6335269abf9002cf5a84613c13cda6010842b834"; owner = "GoogleCloudPlatform"; From 5c2628a7049841b152b304443e7a364f60e1768b Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Tue, 26 Apr 2016 21:09:45 +0200 Subject: [PATCH 403/520] When using common deps include only specified packages, not all set --- pkgs/tools/misc/gawp/default.nix | 34 ++++++++++++++++++++++---------- pkgs/tools/misc/gawp/deps.json | 10 ++++++++++ 2 files changed, 34 insertions(+), 10 deletions(-) create mode 100644 pkgs/tools/misc/gawp/deps.json diff --git a/pkgs/tools/misc/gawp/default.nix b/pkgs/tools/misc/gawp/default.nix index 608b1764887a..5f87d2bed71e 100644 --- a/pkgs/tools/misc/gawp/default.nix +++ b/pkgs/tools/misc/gawp/default.nix @@ -1,8 +1,31 @@ # This file was generated by go2nix. { stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +with builtins; with goPackages; +let + depToSrc = jsonDep: + { + inherit (jsonDep) goPackagePath; + src = if jsonDep.fetch.type == "git" then + fetchgit { + inherit (jsonDep.fetch) url rev sha256; + } + else {}; + }; + + importGodeps = { depsFile, filterPackages ? [] }: + let + deps = lib.importJSON depsFile; + external = filter (d: d ? include) deps; + direct = filter (d: d ? goPackagePath && (length filterPackages == 0 || elem d.goPackagePath filterPackages)) deps; + in + concatLists (map importGodeps (map (d: { depsFile = ./. + d.include; filterPackages = d.packages; }) external)) ++ (map depToSrc direct); + + godeps = importGodeps { depsFile = ./deps.json; }; +in + buildGoPackage rec { name = "gawp-${version}"; version = "20160121-${stdenv.lib.strings.substring 0 7 rev}"; @@ -16,14 +39,5 @@ buildGoPackage rec { sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly"; }; - extraSrcs = map ( jsonDep: - { - inherit (jsonDep) goPackagePath; - src = if jsonDep.fetch.type == "git" then - fetchgit { - inherit (jsonDep.fetch) url rev sha256; - } - else {}; - } - ) (builtins.fromJSON (builtins.readFile ../../../development/go-modules/libs.json)); + extraSrcs = godeps; } diff --git a/pkgs/tools/misc/gawp/deps.json b/pkgs/tools/misc/gawp/deps.json new file mode 100644 index 000000000000..28b9216ca007 --- /dev/null +++ b/pkgs/tools/misc/gawp/deps.json @@ -0,0 +1,10 @@ +[ + { + "include": "../../../../development/go-modules/libs.json", + "packages": [ + "golang.org/x/sys", + "gopkg.in/yaml.v2", + "gopkg.in/fsnotify.v1" + ] + } +] From 81f3092e1168ef3f149031fca5acd78009acd2e5 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Wed, 27 Apr 2016 08:45:04 +0200 Subject: [PATCH 404/520] Reusing go libs in deis build --- .../go-modules/generic/default.nix | 40 +++++++++++++++---- pkgs/development/go-modules/libs.json | 20 +++++++++- pkgs/development/tools/deis/default.nix | 13 +----- pkgs/development/tools/deis/deps.json | 10 +++++ pkgs/tools/misc/gawp/default.nix | 26 +----------- 5 files changed, 66 insertions(+), 43 deletions(-) create mode 100644 pkgs/development/tools/deis/deps.json diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 89258062f263..4f4fa3275175 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -1,4 +1,4 @@ -{ go, govers, parallel, lib }: +{ go, govers, parallel, lib, fetchgit }: { name, buildInputs ? [], nativeBuildInputs ? [], passthru ? {}, preFixup ? "" @@ -17,6 +17,9 @@ # Extra sources to include in the gopath , extraSrcs ? [ ] +# go2nix dependency file +, goDeps ? null + , dontRenameImports ? false # Do not enable this without good reason @@ -27,6 +30,8 @@ if disabled then throw "${name} not supported for go ${go.meta.branch}" else +with builtins; + let args = lib.filterAttrs (name: _: name != "extraSrcs") args'; @@ -35,6 +40,27 @@ let removeExpr = refs: lib.flip lib.concatMapStrings refs (ref: '' | sed "s,${ref},$(echo "${ref}" | sed "s,$NIX_STORE/[^-]*,$NIX_STORE/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee,"),g" \ ''); + + dep2src = goDep: + { + inherit (goDep) goPackagePath; + src = if goDep.fetch.type == "git" then + fetchgit { + inherit (goDep.fetch) url rev sha256; + } + else {}; + }; + + importGodeps = { depsFile, filterPackages ? [] }: + let + deps = lib.importJSON depsFile; + external = filter (d: d ? include) deps; + direct = filter (d: d ? goPackagePath && (length filterPackages == 0 || elem d.goPackagePath filterPackages)) deps; + in + concatLists (map importGodeps (map (d: { depsFile = ./. + d.include; filterPackages = d.packages; }) external)) ++ (map dep2src direct); + + goPath = if goDeps != null then importGodeps { depsFile = goDeps; } ++ extraSrcs + else extraSrcs; in go.stdenv.mkDerivation ( @@ -53,13 +79,13 @@ go.stdenv.mkDerivation ( mkdir -p "go/src/$(dirname "$goPackagePath")" mv "$sourceRoot" "go/src/$goPackagePath" - '' + lib.flip lib.concatMapStrings extraSrcs ({ src, goPackagePath }: '' - mkdir extraSrc - (cd extraSrc; unpackFile "${src}") + '' + lib.flip lib.concatMapStrings goPath ({ src, goPackagePath }: '' + mkdir goPath + (cd goPath; unpackFile "${src}") mkdir -p "go/src/$(dirname "${goPackagePath}")" - chmod -R u+w extraSrc/* - mv extraSrc/* "go/src/${goPackagePath}" - rmdir extraSrc + chmod -R u+w goPath/* + mv goPath/* "go/src/${goPackagePath}" + rmdir goPath '') + '' export GOPATH=$NIX_BUILD_TOP/go:$GOPATH diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 8e5fee179bf2..4336fcc44bc9 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -25,5 +25,23 @@ "rev": "a83829b6f1293c91addabc89d0571c246397bbf4", "sha256": "1m4dsmk90sbi17571h6pld44zxz7jc4lrnl4f27dpd1l8g5xvjhh" } + }, + { + "goPackagePath": "github.com/docopt/docopt-go", + "fetch": { + "type": "git", + "url": "https://github.com/docopt/docopt-go", + "rev": "784ddc588536785e7299f7272f39101f7faccc3f", + "sha256": "13x00cnady5znysfwca3x59dl04m8rvnk2yprgyqqpg2y4v0xmbf" + } + }, + { + "goPackagePath": "golang.org/x/crypto", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/crypto", + "rev": "1f22c0103821b9390939b6776727195525381532", + "sha256": "05ahvn9g9cj7797n8ryfxv2g26v3lx1pza9d9pg97iw0rvar9i1h" + } } -] \ No newline at end of file +] diff --git a/pkgs/development/tools/deis/default.nix b/pkgs/development/tools/deis/default.nix index 3787e30fbf43..5336a14c5a17 100644 --- a/pkgs/development/tools/deis/default.nix +++ b/pkgs/development/tools/deis/default.nix @@ -1,5 +1,5 @@ # This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, goPackages, fetchgit }: with goPackages; @@ -23,14 +23,5 @@ buildGoPackage rec { sha256 = "1fblg3gf7dh5hhm4ajq7yl7iy6gw8p5xlh4z8kvfy542m1fzr0dc"; }; - extraSrcs = map ( jsonDep: - { - inherit (jsonDep) goPackagePath; - src = if jsonDep.fetch.type == "git" then - fetchgit { - inherit (jsonDep.fetch) url rev sha256; - } - else {}; - } - ) (builtins.fromJSON (builtins.readFile ../../go-modules/libs.json)); + goDeps = ./deps.json; } diff --git a/pkgs/development/tools/deis/deps.json b/pkgs/development/tools/deis/deps.json new file mode 100644 index 000000000000..a0333247062e --- /dev/null +++ b/pkgs/development/tools/deis/deps.json @@ -0,0 +1,10 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/docopt/docopt-go", + "golang.org/x/crypto", + "gopkg.in/yaml.v2" + ] + } +] diff --git a/pkgs/tools/misc/gawp/default.nix b/pkgs/tools/misc/gawp/default.nix index 5f87d2bed71e..552d01041310 100644 --- a/pkgs/tools/misc/gawp/default.nix +++ b/pkgs/tools/misc/gawp/default.nix @@ -1,31 +1,9 @@ # This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, goPackages, fetchgit }: with builtins; with goPackages; -let - depToSrc = jsonDep: - { - inherit (jsonDep) goPackagePath; - src = if jsonDep.fetch.type == "git" then - fetchgit { - inherit (jsonDep.fetch) url rev sha256; - } - else {}; - }; - - importGodeps = { depsFile, filterPackages ? [] }: - let - deps = lib.importJSON depsFile; - external = filter (d: d ? include) deps; - direct = filter (d: d ? goPackagePath && (length filterPackages == 0 || elem d.goPackagePath filterPackages)) deps; - in - concatLists (map importGodeps (map (d: { depsFile = ./. + d.include; filterPackages = d.packages; }) external)) ++ (map depToSrc direct); - - godeps = importGodeps { depsFile = ./deps.json; }; -in - buildGoPackage rec { name = "gawp-${version}"; version = "20160121-${stdenv.lib.strings.substring 0 7 rev}"; @@ -39,5 +17,5 @@ buildGoPackage rec { sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly"; }; - extraSrcs = godeps; + goDeps = ./deps.json; } From dfe1064b4e49fcda317021e183e85e419b33b473 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 2 Jun 2016 20:55:19 +0200 Subject: [PATCH 405/520] asciinema: top level pkgs extracted from goPackages --- pkgs/tools/misc/asciinema/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 7 ------- 3 files changed, 20 insertions(+), 8 deletions(-) create mode 100644 pkgs/tools/misc/asciinema/default.nix diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix new file mode 100644 index 000000000000..9a1269815afb --- /dev/null +++ b/pkgs/tools/misc/asciinema/default.nix @@ -0,0 +1,19 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "asciinema-${version}"; + version = "20160520-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "6683bdaa263d0ce3645b87fe54aa87276b89988a"; + + + goPackagePath = "github.com/asciinema/asciinema"; + + src = fetchgit { + inherit rev; + url = "https://github.com/asciinema/asciinema"; + sha256 = "08jyvnjpd5jdgyvkly9fswac4p10bqim5v4rhmivpg4y8pbcmxkz"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a45a56161617..d2e5535db8f5 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -446,7 +446,7 @@ in ascii = callPackage ../tools/text/ascii { }; - asciinema = goPackages.asciinema.bin // { outputs = [ "bin" ]; }; + asciinema = (callPackage ../tools/misc/asciinema {}).bin; asymptote = callPackage ../tools/graphics/asymptote { texLive = texlive.combine { inherit (texlive) scheme-small epsf cm-super; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 619d4c60f1d6..80e3d590c688 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -250,13 +250,6 @@ let sha256 = "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly"; }; - asciinema = buildFromGitHub { - rev = "v1.2.0"; - owner = "asciinema"; - repo = "asciinema"; - sha256 = "0wvrq92ackhfycfs1fircs8al3ji69igqqrc55ic29wbpnvz355x"; - }; - asmfmt = buildFromGitHub { rev = "7971758b0c6584f67d745c62d006814ae7b44e9d"; owner = "klauspost"; From dbf48cd10baf816d1ce48829f169a531165a8f2d Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 2 Jun 2016 21:21:45 +0200 Subject: [PATCH 406/520] fzf: application extracted from goPackages --- pkgs/tools/misc/fzf/default.nix | 33 +++++++++++++++++++++++ pkgs/tools/misc/fzf/deps.json | 20 ++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 46 --------------------------------- 4 files changed, 54 insertions(+), 47 deletions(-) create mode 100644 pkgs/tools/misc/fzf/default.nix create mode 100644 pkgs/tools/misc/fzf/deps.json diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix new file mode 100644 index 000000000000..08def70ecb6e --- /dev/null +++ b/pkgs/tools/misc/fzf/default.nix @@ -0,0 +1,33 @@ +# This file was generated by go2nix. +{ stdenv, lib, ncurses, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "fzf-${version}"; + version = "0.12.2"; + rev = "${version}"; + + goPackagePath = "github.com/junegunn/fzf"; + + src = fetchgit { + inherit rev; + url = "https://github.com/junegunn/fzf"; + sha256 = "02qqcnijv8z3736iczbx082yizpqk02g5k746k7sdgfkgyxydppk"; + }; + + 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 + ''; + + postInstall= '' + cp $src/bin/fzf-tmux $bin/bin + mkdir -p $out/share/vim-plugins + ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${(builtins.parseDrvName fzf.name).name} + ''; +} diff --git a/pkgs/tools/misc/fzf/deps.json b/pkgs/tools/misc/fzf/deps.json new file mode 100644 index 000000000000..a856d2d5fa81 --- /dev/null +++ b/pkgs/tools/misc/fzf/deps.json @@ -0,0 +1,20 @@ +[ + { + "goPackagePath": "github.com/junegunn/go-runewidth", + "fetch": { + "type": "git", + "url": "https://github.com/junegunn/go-runewidth", + "rev": "63c378b851290989b19ca955468386485f118c65", + "sha256": "1z5mhfrpqdssn3603vwd95w69z28igwq96lh7b9rrdcx440i822d" + } + }, + { + "goPackagePath": "github.com/junegunn/go-shellwords", + "fetch": { + "type": "git", + "url": "https://github.com/junegunn/go-shellwords", + "rev": "35d512af75e283aae4ca1fc3d44b159ed66189a4", + "sha256": "08la0axabk9hiba9mm4ypp6a116qhvdlxa1jvkxhv3d4zpjsp4n7" + } + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d2e5535db8f5..73a52f005250 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -801,7 +801,7 @@ in fsmark = callPackage ../tools/misc/fsmark { }; - fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; }; + fzf = (callPackage ../tools/misc/fzf {}).bin; fzy = callPackage ../tools/misc/fzy { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 80e3d590c688..b8cde1700cb6 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -884,28 +884,6 @@ let buildInputs = [ afero ]; }; - fzf = buildFromGitHub { - rev = "0.12.0"; - owner = "junegunn"; - repo = "fzf"; - sha256 = "0lxh8nf5xc5qnmx18h0q43iy3hy818firkz4rfkr3b0b5gd3aan1"; - - buildInputs = [ - crypto ginkgo gomega junegunn.go-runewidth go-shellwords pkgs.ncurses text - ]; - - 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 - ''; - - postInstall= '' - cp $src/bin/fzf-tmux $bin/bin - mkdir -p $out/share/vim-plugins - ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${(builtins.parseDrvName fzf.name).name} - ''; - }; - g2s = buildFromGitHub { rev = "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc"; owner = "peterbourgon"; @@ -1843,18 +1821,6 @@ let sha256 = "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c"; }; - junegunn.go-runewidth = buildGoPackage rec { - rev = "travisish"; - name = "go-runewidth-${rev}"; - goPackagePath = "github.com/junegunn/go-runewidth"; - src = fetchFromGitHub { - inherit rev; - owner = "junegunn"; - repo = "go-runewidth"; - sha256 = "07d612val59sibqly5d6znfkp4h4gjd77783jxvmiq6h2fwb964k"; - }; - }; - jp = buildFromGitHub { rev = "0.1.2"; owner = "jmespath"; @@ -1877,18 +1843,6 @@ let sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; }; - go-shellwords = buildGoPackage rec { - rev = "35d512af75e283aae4ca1fc3d44b159ed66189a4"; - name = "go-shellwords-${rev}"; - goPackagePath = "github.com/junegunn/go-shellwords"; - src = fetchFromGitHub { - inherit rev; - owner = "junegunn"; - repo = "go-shellwords"; - sha256 = "c792abe5fda48d0dfbdc32a84edb86d884a0ccbd9ed49ad48a30cda5ba028a22"; - }; - }; - go-restful = buildFromGitHub { rev = "892402ba11a2e2fd5e1295dd633481f27365f14d"; owner = "emicklei"; From 89a256e463403dab84d89b1bc4563c6b95951383 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 2 Jun 2016 22:22:21 +0200 Subject: [PATCH 407/520] interlock: extracted from goPackages --- pkgs/development/go-modules/libs.json | 47 ++++++++++++++++++++++++++- pkgs/servers/interlock/default.nix | 38 ++++++++++++++++++++++ pkgs/servers/interlock/deps.json | 14 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 25 -------------- 5 files changed, 99 insertions(+), 27 deletions(-) create mode 100644 pkgs/servers/interlock/default.nix create mode 100644 pkgs/servers/interlock/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 4336fcc44bc9..88d6f547fca6 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -43,5 +43,50 @@ "rev": "1f22c0103821b9390939b6776727195525381532", "sha256": "05ahvn9g9cj7797n8ryfxv2g26v3lx1pza9d9pg97iw0rvar9i1h" } + }, + { + "goPackagePath": "github.com/Sirupsen/logrus", + "fetch": { + "type": "git", + "url": "https://github.com/Sirupsen/logrus", + "rev": "a26f43589d737684363ff856c5a0f9f24b946510", + "sha256": "13vprfbrsrqky145k26vayl9209gldh2v79614m0qxpx0ln1w2bs" + } + }, + { + "goPackagePath": "github.com/agl/ed25519", + "fetch": { + "type": "git", + "url": "https://github.com/agl/ed25519", + "rev": "278e1ec8e8a6e017cd07577924d6766039146ced", + "sha256": "165d89cc6dl28j4hkn86pny0jz3sa6hamzdvpvwdj4iha3x6lzc9" + } + }, + { + "goPackagePath": "github.com/golang/protobuf", + "fetch": { + "type": "git", + "url": "https://github.com/golang/protobuf", + "rev": "dda510ac0fd43b39770f22ac6260eb91d377bce3", + "sha256": "0bmz87is9zvxvzycp3135l61ippjw6vmpjz0b9pq8gpxx6sj2vj4" + } + }, + { + "goPackagePath": "github.com/janimo/textsecure", + "fetch": { + "type": "git", + "url": "https://github.com/janimo/textsecure", + "rev": "c38f429e48d6b2776d17b4171f216f132185b0f6", + "sha256": "191pwgfgphr0x04dwpvniax4wilpv52l25bw7d3igvnw302y7i94" + } + }, + { + "goPackagePath": "golang.org/x/net", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/net", + "rev": "ef00b378c73f107bf44d5c9b69875255ce89b79a", + "sha256": "168dhvl0wqiac8xmy8mqkvspd7cq6vfjpj80zdnriwy169nykcyz" + } } -] +] \ No newline at end of file diff --git a/pkgs/servers/interlock/default.nix b/pkgs/servers/interlock/default.nix new file mode 100644 index 000000000000..9b49f051ac21 --- /dev/null +++ b/pkgs/servers/interlock/default.nix @@ -0,0 +1,38 @@ +# This file was generated by go2nix. +{ stdenv, lib, sudo, utillinux, coreutils, systemd, cryptsetup, + goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "interlock-${version}"; + version = "2016.04.13"; + rev = "v${version}"; + + goPackagePath = "github.com/inversepath/interlock"; + + subPackages = [ "./cmd/interlock" ]; + + src = fetchgit { + inherit rev; + url = "https://github.com/inversepath/interlock"; + sha256 = "1lnaz0vdg0k21wipc6w8h580cbpymiyasah98yzyzrmwraclb2bb"; + }; + + goDeps = ./deps.json; + + nativeBuildInputs = [ sudo ]; + buildFlags = [ "-tags textsecure" ]; + postPatch = '' + grep -lr '/s\?bin/' | xargs sed -i \ + -e 's|/bin/mount|${utillinux}/bin/mount|' \ + -e 's|/bin/umount|${utillinux}/bin/umount|' \ + -e 's|/bin/cp|${coreutils}/bin/cp|' \ + -e 's|/bin/mv|${coreutils}/bin/mv|' \ + -e 's|/bin/chown|${coreutils}/bin/chown|' \ + -e 's|/bin/date|${coreutils}/bin/date|' \ + -e 's|/sbin/poweroff|${systemd}/sbin/poweroff|' \ + -e 's|/usr/bin/sudo|/var/setuid-wrappers/sudo|' \ + -e 's|/sbin/cryptsetup|${cryptsetup}/bin/cryptsetup|' + ''; +} diff --git a/pkgs/servers/interlock/deps.json b/pkgs/servers/interlock/deps.json new file mode 100644 index 000000000000..a501a3087d7b --- /dev/null +++ b/pkgs/servers/interlock/deps.json @@ -0,0 +1,14 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/Sirupsen/logrus", + "github.com/agl/ed25519", + "github.com/golang/protobuf", + "github.com/janimo/textsecure", + "golang.org/x/crypto", + "golang.org/x/net", + "gopkg.in/yaml.v2" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 73a52f005250..06a27fb52065 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -819,7 +819,7 @@ in heatseeker = callPackage ../tools/misc/heatseeker { }; - interlock = goPackages.interlock.bin // { outputs = [ "bin" ]; }; + interlock = (callPackage ../servers/interlock {}).bin; mathics = pythonPackages.mathics; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b8cde1700cb6..3907f8339f3b 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -4080,31 +4080,6 @@ let disabled = isGo14; }; - interlock = buildFromGitHub rec { - version = "2016.01.14"; - rev = "v${version}"; - owner = "inversepath"; - repo = "interlock"; - sha256 = "0wabx6vqdxh2aprsm2rd9mh71q7c2xm6xk9a6r1bn53r9dh5wrsb"; - buildInputs = [ crypto textsecure ]; - nativeBuildInputs = [ pkgs.sudo ]; - buildFlags = [ "-tags textsecure" ]; - subPackages = [ "./cmd/interlock" ]; - postPatch = '' - grep -lr '/s\?bin/' | xargs sed -i \ - -e 's|/bin/mount|${pkgs.utillinux}/bin/mount|' \ - -e 's|/bin/umount|${pkgs.utillinux}/bin/umount|' \ - -e 's|/bin/cp|${pkgs.coreutils}/bin/cp|' \ - -e 's|/bin/mv|${pkgs.coreutils}/bin/mv|' \ - -e 's|/bin/chown|${pkgs.coreutils}/bin/chown|' \ - -e 's|/bin/date|${pkgs.coreutils}/bin/date|' \ - -e 's|/sbin/poweroff|${pkgs.systemd}/sbin/poweroff|' \ - -e 's|/usr/bin/sudo|/var/setuid-wrappers/sudo|' \ - -e 's|/sbin/cryptsetup|${pkgs.cryptsetup}/bin/cryptsetup|' - ''; - disabled = isGo14; - }; - template = buildFromGitHub { rev = "14fd436dd20c3cc65242a9f396b61bfc8a3926fc"; owner = "alecthomas"; From 387246080b2cd9675d7fcdab3ad528a4048842b5 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 13:05:48 +0200 Subject: [PATCH 408/520] mongodb-tools: extracted from goPackages --- pkgs/development/go-modules/libs.json | 36 +++++++++++++++++++++ pkgs/tools/misc/mongodb-tools/default.nix | 39 +++++++++++++++++++++++ pkgs/tools/misc/mongodb-tools/deps.json | 12 +++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 21 ------------ 5 files changed, 88 insertions(+), 22 deletions(-) create mode 100644 pkgs/tools/misc/mongodb-tools/default.nix create mode 100644 pkgs/tools/misc/mongodb-tools/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 88d6f547fca6..964875cc3f79 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -88,5 +88,41 @@ "rev": "ef00b378c73f107bf44d5c9b69875255ce89b79a", "sha256": "168dhvl0wqiac8xmy8mqkvspd7cq6vfjpj80zdnriwy169nykcyz" } + }, + { + "goPackagePath": "github.com/howeyc/gopass", + "fetch": { + "type": "git", + "url": "https://github.com/howeyc/gopass", + "rev": "2c70fa70727c953c51695f800f25d6b44abb368e", + "sha256": "152lrkfxk205rlxiign0w5wb0fmfh910yz4jhlv4f4l1qr1h2lx8" + } + }, + { + "goPackagePath": "github.com/jessevdk/go-flags", + "fetch": { + "type": "git", + "url": "https://github.com/jessevdk/go-flags", + "rev": "97448c91aac742cbca3d020b3e769013a420a06f", + "sha256": "0fv3yxvq8m3639a279hq4pf0c52ngqfl5n1vklcfympndrb7zjzj" + } + }, + { + "goPackagePath": "gopkg.in/mgo.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/mgo.v2", + "rev": "c6a7dce14133ccac2dcac3793f1d6e2ef048503a", + "sha256": "0rg232q1bkq3y3kd5816hgk1jpf7i38aha5q5ia7j6p9xashz7vj" + } + }, + { + "goPackagePath": "gopkg.in/tomb.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/tomb.v2", + "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", + "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" + } } ] \ No newline at end of file diff --git a/pkgs/tools/misc/mongodb-tools/default.nix b/pkgs/tools/misc/mongodb-tools/default.nix new file mode 100644 index 000000000000..74240a859c89 --- /dev/null +++ b/pkgs/tools/misc/mongodb-tools/default.nix @@ -0,0 +1,39 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +let + tools = [ + "bsondump" "mongodump" "mongoexport" "mongofiles" "mongoimport" + "mongooplog" "mongorestore" "mongostat" "mongotop" + ]; +in +buildGoPackage rec { + name = "mongo-tools-${version}"; + version = "3.0.12"; + rev = "r${version}"; + + goPackagePath = "github.com/mongodb/mongo-tools"; + subPackages = map (t: t + "/main") tools; + + src = fetchgit { + inherit rev; + url = "https://github.com/mongodb/mongo-tools"; + sha256 = "142vxgniri1mfy2xmfgxhbdp6k6h8c5milv454krv1b51v43hsbm"; + }; + + goDeps = ./deps.json; + + # Mongodb incorrectly names all of their binaries main + # Let's work around this with our own installer + preInstall = '' + mkdir -p $bin/bin + '' + toString (map (t: '' + go install $goPackagePath/${t}/main + mv go/bin/main $bin/bin/${t} + '' + ) tools) + '' + rm -r go/bin + ''; +} diff --git a/pkgs/tools/misc/mongodb-tools/deps.json b/pkgs/tools/misc/mongodb-tools/deps.json new file mode 100644 index 000000000000..1489b9e57adb --- /dev/null +++ b/pkgs/tools/misc/mongodb-tools/deps.json @@ -0,0 +1,12 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/howeyc/gopass", + "github.com/jessevdk/go-flags", + "golang.org/x/crypto", + "gopkg.in/mgo.v2", + "gopkg.in/tomb.v2" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 06a27fb52065..bbb0b59e3e07 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -881,7 +881,7 @@ in mcrypt = callPackage ../tools/misc/mcrypt { }; - mongodb-tools = goPackages.mongo-tools.bin // { outputs = [ "bin" ]; }; + mongodb-tools = (callPackage ../tools/misc/mongodb-tools { }).bin; mstflint = callPackage ../tools/misc/mstflint { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3907f8339f3b..81db5296e9fa 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2536,27 +2536,6 @@ let buildInputs = [ toml ]; }; - mongo-tools = buildFromGitHub { - rev = "4fcfd3e57415de95c0c016def07b95bca63cccb4"; - owner = "mongodb"; - repo = "mongo-tools"; - sha256 = "0rm7bnb81hr0byxhvagwv8an1bky882nz68cmm2kbznzyprvhyaa"; - buildInputs = [ gopass go-flags mgo openssl tomb ]; - excludedPackages = "vendor"; - - # Mongodb incorrectly names all of their binaries main - # Let's work around this with our own installer - preInstall = '' - mkdir -p $bin/bin - while read b; do - rm -f go/bin/main - go install $goPackagePath/$b/main - cp go/bin/main $bin/bin/$b - done < <(find go/src/$goPackagePath -name main | xargs dirname | xargs basename -a) - rm -r go/bin - ''; - }; - motion = buildFromGitHub { rev = "e09baac69ad86bff1de868e8d6c4327eb0a918d7"; owner = "fatih"; From e5b9d23de7c4687fc0356c14cf5105d1cc809178 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 13:17:53 +0200 Subject: [PATCH 409/520] flannel: extracted from goPackages --- pkgs/tools/networking/flannel/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 7 ------- 3 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 pkgs/tools/networking/flannel/default.nix diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix new file mode 100644 index 000000000000..be2f10b3a35e --- /dev/null +++ b/pkgs/tools/networking/flannel/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "flannel-${version}"; + version = "0.5.5"; + rev = "v${version}"; + + goPackagePath = "github.com/coreos/flannel"; + + src = fetchgit { + inherit rev; + url = "https://github.com/coreos/flannel"; + sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bbb0b59e3e07..f473461b8b11 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1514,7 +1514,7 @@ in inherit (perlPackages) ImageExifTool JSON; }; - flannel = goPackages.flannel.bin // { outputs = [ "bin" ]; }; + flannel = (callPackage ../tools/networking/flannel {}).bin; flashbench = callPackage ../os-specific/linux/flashbench { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 81db5296e9fa..f056b5273a0e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -856,13 +856,6 @@ let }; }; - flannel = buildFromGitHub { - rev = "v0.5.5"; - owner = "coreos"; - repo = "flannel"; - sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw"; - }; - fsnotify.v1 = buildGoPackage rec { rev = "v1.2.0"; name = "fsnotify.v1-${rev}"; From ece0626593674e4962a432ee685df54917adaa0b Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 13:37:23 +0200 Subject: [PATCH 410/520] git-lfs: extracted from goPackages --- .../version-management/git-lfs/default.nix | 31 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 21 ------------- 3 files changed, 32 insertions(+), 22 deletions(-) create mode 100644 pkgs/applications/version-management/git-lfs/default.nix diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix new file mode 100644 index 000000000000..5186d2a5ba90 --- /dev/null +++ b/pkgs/applications/version-management/git-lfs/default.nix @@ -0,0 +1,31 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "git-lfs-${version}"; + version = "1.2.0"; + rev = "v${version}"; + + goPackagePath = "github.com/github/git-lfs"; + + src = fetchgit { + inherit rev; + url = "https://github.com/github/git-lfs"; + sha256 = "0z8giavcvfpzmhnxxsqvsgabjfq5gpka8jy4qvadf60yibxds9fp"; + }; + + # Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block' + excludedPackages = [ "test" ]; + + preBuild = '' + pushd go/src/github.com/github/git-lfs + go generate ./commands + popd + ''; + + postInstall = '' + rm -v $bin/bin/{man,script} + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f473461b8b11..e0c02f58a5a2 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1690,7 +1690,7 @@ in gifsicle = callPackage ../tools/graphics/gifsicle { }; - git-lfs = goPackages.git-lfs.bin // { outputs = [ "bin" ]; }; + git-lfs = (callPackage ../applications/version-management/git-lfs {}).bin; gitfs = callPackage ../tools/filesystems/gitfs { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index f056b5273a0e..dfc21301c05c 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -971,27 +971,6 @@ let sha256 = "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm"; }; - git-lfs = buildFromGitHub { - version = "1.1.1"; - rev = "v1.1.1"; - owner = "github"; - repo = "git-lfs"; - sha256 = "1m7kii57jrsb22m5x9v8xa3s1qmipfkpk6cscgxrbrj7g0a75fnc"; - - # Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block' - excludedPackages = [ "test" ]; - - preBuild = '' - pushd go/src/github.com/github/git-lfs - go generate ./commands - popd - ''; - - postInstall = '' - rm -v $bin/bin/{man,script} - ''; - }; - glide = buildFromGitHub { rev = "0.10.2"; owner = "Masterminds"; From ce81a8a65dcc7209159fcd35bf1fc703e2ec56aa Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 13:50:07 +0200 Subject: [PATCH 411/520] go-mtpfs: extracted from goPackages --- pkgs/development/go-modules/libs.json | 11 +++++++++- pkgs/tools/filesystems/go-mtpfs/default.nix | 23 +++++++++++++++++++++ pkgs/tools/filesystems/go-mtpfs/deps.json | 17 +++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 20 ------------------ 5 files changed, 51 insertions(+), 22 deletions(-) create mode 100644 pkgs/tools/filesystems/go-mtpfs/default.nix create mode 100644 pkgs/tools/filesystems/go-mtpfs/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 964875cc3f79..497487f5d1e7 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -124,5 +124,14 @@ "rev": "14b3d72120e8d10ea6e6b7f87f7175734b1faab8", "sha256": "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5" } + }, + { + "goPackagePath": "github.com/hanwen/go-fuse", + "fetch": { + "type": "git", + "url": "https://github.com/hanwen/go-fuse", + "rev": "bd746dd8bcc8c059a9d953a786a6156eb83f398e", + "sha256": "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56" + } } -] \ No newline at end of file +] diff --git a/pkgs/tools/filesystems/go-mtpfs/default.nix b/pkgs/tools/filesystems/go-mtpfs/default.nix new file mode 100644 index 000000000000..55be2dd9e73b --- /dev/null +++ b/pkgs/tools/filesystems/go-mtpfs/default.nix @@ -0,0 +1,23 @@ +# This file was generated by go2nix. +{ stdenv, lib, pkgconfig, libusb1, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "go-mtpfs-${version}"; + version = "20150917-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "bc7c0f716e3b4ed5610069a55fc00828ebba890b"; + + goPackagePath = "github.com/hanwen/go-mtpfs"; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ libusb1 ]; + + src = fetchgit { + inherit rev; + url = "https://github.com/hanwen/go-mtpfs"; + sha256 = "1jcqp9n8fd9psfsnhfj6w97yp0zmyxplsig8pyp2gqzh4lnb5fqm"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/filesystems/go-mtpfs/deps.json b/pkgs/tools/filesystems/go-mtpfs/deps.json new file mode 100644 index 000000000000..cc2ce33ac301 --- /dev/null +++ b/pkgs/tools/filesystems/go-mtpfs/deps.json @@ -0,0 +1,17 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/hanwen/go-fuse" + ] + }, + { + "goPackagePath": "github.com/hanwen/usb", + "fetch": { + "type": "git", + "url": "https://github.com/hanwen/usb", + "rev": "69aee4530ac705cec7c5344418d982aaf15cf0b1", + "sha256": "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky" + } + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e0c02f58a5a2..7b9edee05fd6 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1758,7 +1758,7 @@ in goaccess = callPackage ../tools/misc/goaccess { }; - go-mtpfs = goPackages.mtpfs.bin // { outputs = [ "bin" ]; }; + go-mtpfs = (callPackage ../tools/filesystems/go-mtpfs { }).bin; go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index dfc21301c05c..52bb8df4cb41 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2536,15 +2536,6 @@ let }; }; - mtpfs = buildFromGitHub { - rev = "bc7c0f716e3b4ed5610069a55fc00828ebba890b"; - date = "2015-09-17"; - owner = "hanwen"; - repo = "go-mtpfs"; - sha256 = "1jcqp9n8fd9psfsnhfj6w97yp0zmyxplsig8pyp2gqzh4lnb5fqm"; - buildInputs = [ go-fuse usb ]; - }; - mux = buildFromGitHub { rev = "5a8a0400500543e28b2886a8c52d21a435815411"; version = "2015-08-05"; @@ -3824,17 +3815,6 @@ let sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; }; - usb = buildFromGitHub rec { - rev = "69aee4530ac705cec7c5344418d982aaf15cf0b1"; - version = "2014-12-17"; - owner = "hanwen"; - repo = "usb"; - sha256 = "01k0c2g395j65vm1w37mmrfkg6nm900khjrrizzpmx8f8yf20dky"; - - nativeBuildInputs = [ pkgs.pkgconfig ]; - buildInputs = [ pkgs.libusb1 ]; - }; - uuid = buildFromGitHub { rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; version = "2015-08-24"; From 977f23ca37d4381d3cdc97b437f9fb7b0e03740d Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 14:13:10 +0200 Subject: [PATCH 412/520] go-pup: extracted from goPackages --- pkgs/development/tools/pup/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 --------------- 3 files changed, 19 insertions(+), 16 deletions(-) create mode 100644 pkgs/development/tools/pup/default.nix diff --git a/pkgs/development/tools/pup/default.nix b/pkgs/development/tools/pup/default.nix new file mode 100644 index 000000000000..23ced868bd3e --- /dev/null +++ b/pkgs/development/tools/pup/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "pup-${version}"; + version = "20160425-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "e76307d03d4d2e0f01fb7ab51dee09f2671c3db6"; + + goPackagePath = "github.com/ericchiang/pup"; + + src = fetchgit { + inherit rev; + url = "https://github.com/ericchiang/pup"; + sha256 = "15lwas4cjchlwhrwnd5l4gxcwqdfgazdyh466hava5qzxacqxrm5"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 7b9edee05fd6..b3f38640780e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1760,7 +1760,7 @@ in go-mtpfs = (callPackage ../tools/filesystems/go-mtpfs { }).bin; - go-pup = goPackages.pup.bin // { outputs = [ "bin" ]; }; + go-pup = (callPackage ../development/tools/pup { }).bin; go-sct = goPackages.go-sct.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 52bb8df4cb41..39596bead4c4 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3987,21 +3987,6 @@ let buildInputs = [ ansicolor go-colorable ]; }; - pup = buildFromGitHub { - rev = "9693b292601dd24dab3c04bc628f9ae3fa72f831"; - owner = "EricChiang"; - repo = "pup"; - sha256 = "04j3fy1vk6xap8ad7k3c05h9b5mg2n1vy9vcyg9rs02cb13d3sy0"; - propagatedBuildInputs = [ net ]; - buildInputs = [ go-colorable color ]; - postPatch = '' - grep -sr github.com/ericchiang/pup/Godeps/_workspace/src/ | - cut -f 1 -d : | - sort -u | - xargs -d '\n' sed -i -e s,github.com/ericchiang/pup/Godeps/_workspace/src/,,g - ''; - }; - textsecure = buildFromGitHub rec { rev = "505e129c42fc4c5cb2d105520cef7c04fa3a6b64"; owner = "janimo"; From e2e3d8802f878495bb54a631554a9b1705ace456 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 14:25:31 +0200 Subject: [PATCH 413/520] go-sct: extracted from goPackages --- pkgs/development/go-modules/libs.json | 11 +++++++++- pkgs/tools/X11/go-sct/default.nix | 29 +++++++++++++++++++++++++++ pkgs/tools/X11/go-sct/deps.json | 8 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 22 -------------------- 5 files changed, 48 insertions(+), 24 deletions(-) create mode 100644 pkgs/tools/X11/go-sct/default.nix create mode 100644 pkgs/tools/X11/go-sct/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 497487f5d1e7..a172cc524842 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -133,5 +133,14 @@ "rev": "bd746dd8bcc8c059a9d953a786a6156eb83f398e", "sha256": "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56" } + }, + { + "goPackagePath": "github.com/cpucycle/astrotime", + "fetch": { + "type": "git", + "url": "https://github.com/cpucycle/astrotime", + "rev": "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca", + "sha256": "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1" + } } -] +] \ No newline at end of file diff --git a/pkgs/tools/X11/go-sct/default.nix b/pkgs/tools/X11/go-sct/default.nix new file mode 100644 index 000000000000..18877917d0d3 --- /dev/null +++ b/pkgs/tools/X11/go-sct/default.nix @@ -0,0 +1,29 @@ +# This file was generated by go2nix. +{ stdenv, lib, xorg, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "go-sct-${version}"; + version = "20160529-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "1d6b5e05a0b63bfeac9df55003efec352e1bc19d"; + + goPackagePath = "github.com/d4l3k/go-sct"; + + src = fetchgit { + inherit rev; + url = "https://github.com/d4l3k/go-sct"; + sha256 = "1iqdagrq0j7sqxgsj31skgk73k2rbpbvj41v087af9103wf8h9z7"; + }; + + goDeps = ./deps.json; + + buildInputs = [ xorg.libX11 xorg.libXrandr ]; + + meta = with stdenv.lib; { + description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; + license = licenses.mit; + maintainers = with maintainers; [ cstrahan ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/tools/X11/go-sct/deps.json b/pkgs/tools/X11/go-sct/deps.json new file mode 100644 index 000000000000..7a7ce4989d35 --- /dev/null +++ b/pkgs/tools/X11/go-sct/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/cpucycle/astrotime" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b3f38640780e..226abaee854b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1762,7 +1762,7 @@ in go-pup = (callPackage ../development/tools/pup { }).bin; - go-sct = goPackages.go-sct.bin // { outputs = [ "bin" ]; }; + go-sct = (callPackage ../tools/X11/go-sct { }).bin; go-upower-notify = goPackages.upower-notify.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 39596bead4c4..190f520df31e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -290,13 +290,6 @@ let doCheck = false; }; - astrotime = buildFromGitHub { - rev = "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca"; - owner = "cpucycle"; - repo = "astrotime"; - sha256 = "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1"; - }; - aws-sdk-go = buildFromGitHub { rev = "d85fa529a99a833067e11c0a838b9db7a5d5ea71"; version = "1.1.24"; @@ -1848,21 +1841,6 @@ let sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; }; - go-sct = buildFromGitHub { - rev = "b82c2f81727357c45a47a43965c50ed5da5a2e74"; - version = "2016-01-11"; - owner = "d4l3k"; - repo = "go-sct"; - sha256 = "13hgmpv2c8ll5ap8fn1n480bdv1j21n86jjwcssd36kh2i933anl"; - buildInputs = [ astrotime pkgs.xorg.libX11 pkgs.xorg.libXrandr ]; - meta = with stdenv.lib; { - description = "Color temperature setting library and CLI that operates in a similar way to f.lux and Redshift"; - license = licenses.mit; - maintainers = with maintainers; [ cstrahan ]; - platforms = platforms.unix; - }; - }; - go-shlex = buildFromGitHub { rev = "3f9db97f856818214da2e1057f8ad84803971cff"; owner = "flynn"; From d765026f99e3e97fb00a77f9d8db84f3774377f6 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 14:38:37 +0200 Subject: [PATCH 414/520] go-upower-notify: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 ++++++++ pkgs/tools/misc/upower-notify/default.nix | 26 +++++++++++++++++++++++ pkgs/tools/misc/upower-notify/deps.json | 8 +++++++ pkgs/top-level/all-packages.nix | 3 ++- 4 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 pkgs/tools/misc/upower-notify/default.nix create mode 100644 pkgs/tools/misc/upower-notify/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index a172cc524842..1fb038e71938 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -142,5 +142,14 @@ "rev": "9c7d514efdb561775030eaf8f1a9ae6bddb3a2ca", "sha256": "024sc7g55v4s54irssm5wsn74sr2k2ynsm6z16w47q66cxhgvby1" } + }, + { + "goPackagePath": "github.com/godbus/dbus", + "fetch": { + "type": "git", + "url": "https://github.com/godbus/dbus", + "rev": "32c6cc29c14570de4cf6d7e7737d68fb2d01ad15", + "sha256": "0v401f761l88yapiaw23pxvxviqrwl2r2vfd6lq02044i7x4i5r3" + } } ] \ No newline at end of file diff --git a/pkgs/tools/misc/upower-notify/default.nix b/pkgs/tools/misc/upower-notify/default.nix new file mode 100644 index 000000000000..fef1707d5052 --- /dev/null +++ b/pkgs/tools/misc/upower-notify/default.nix @@ -0,0 +1,26 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +# To use upower-notify, the maintainer suggests adding something like this to your configuration.nix: +# +# service.xserver.displayManager.sessionCommands = '' +# ${pkgs.dunst}/bin/dunst -shrink -geometry 0x0-50-50 -key space & # ...if don't already have a dbus notification display app +# (sleep 3; exec ${pkgs.yeshup}/bin/yeshup ${pkgs.go-upower-notify}/bin/upower-notify) & +# ''; +buildGoPackage rec { + name = "upower-notify-${version}"; + version = "20160310-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "14c581e683a7e90ec9fa6d409413c16599a5323c"; + + goPackagePath = "github.com/omeid/upower-notify"; + + src = fetchgit { + inherit rev; + url = "https://github.com/omeid/upower-notify"; + sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/misc/upower-notify/deps.json b/pkgs/tools/misc/upower-notify/deps.json new file mode 100644 index 000000000000..3a254084ae36 --- /dev/null +++ b/pkgs/tools/misc/upower-notify/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/godbus/dbus" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 226abaee854b..b059eee3dbba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1764,7 +1764,8 @@ in go-sct = (callPackage ../tools/X11/go-sct { }).bin; - go-upower-notify = goPackages.upower-notify.bin // { outputs = [ "bin" ]; }; + # rename to upower-notify? + go-upower-notify = (callPackage ../tools/misc/upower-notify { }).bin; googleAuthenticator = callPackage ../os-specific/linux/google-authenticator { }; From a1f3808e2f6475cc2fabecc870c261966c633ccf Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 15:55:03 +0200 Subject: [PATCH 415/520] lxd: extracted from goPackages --- pkgs/development/go-modules/libs.json | 135 ++++++++++++++++++++++++++ pkgs/tools/admin/lxd/default.nix | 36 +++++++ pkgs/tools/admin/lxd/deps.json | 26 +++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 36 ------- 5 files changed, 198 insertions(+), 37 deletions(-) create mode 100644 pkgs/tools/admin/lxd/default.nix create mode 100644 pkgs/tools/admin/lxd/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 1fb038e71938..4ad8eb0dc219 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -151,5 +151,140 @@ "rev": "32c6cc29c14570de4cf6d7e7737d68fb2d01ad15", "sha256": "0v401f761l88yapiaw23pxvxviqrwl2r2vfd6lq02044i7x4i5r3" } + }, + { + "goPackagePath": "github.com/gorilla/websocket", + "fetch": { + "type": "git", + "url": "https://github.com/gorilla/websocket", + "rev": "a622679ebd7a3b813862379232f645f8e690e43f", + "sha256": "1nc9jbcmgya1i6dmf6sbcqsnxi9hbjg6dz1z0k7zmc6xdwlq0y4q" + } + }, + { + "goPackagePath": "github.com/syndtr/gocapability", + "fetch": { + "type": "git", + "url": "https://github.com/syndtr/gocapability", + "rev": "2c00daeb6c3b45114c80ac44119e7b8801fdd852", + "sha256": "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l" + } + }, + { + "goPackagePath": "gopkg.in/inconshreveable/log15.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/inconshreveable/log15.v2", + "rev": "b105bd37f74e5d9dc7b6ad7806715c7a2b83fd3f", + "sha256": "18rldvi60i7b3lljfrsqgcc24gdkw2pcixxydznyggaqhh96l6a8" + } + }, + { + "goPackagePath": "github.com/gorilla/mux", + "fetch": { + "type": "git", + "url": "https://github.com/gorilla/mux", + "rev": "8096f47503459bcc74d1f4c487b7e6e42e5746b5", + "sha256": "0163fm9jsh54df471mx9kfhdg0070klqhw9ja0qwdzqibxq791b9" + } + }, + { + "goPackagePath": "github.com/pborman/uuid", + "fetch": { + "type": "git", + "url": "https://github.com/pborman/uuid", + "rev": "ca53cad383cad2479bbba7f7a1a05797ec1386e4", + "sha256": "0rcx669bbjkkwdlw81spnra4ffgzd4rbpywnrj3w41m9vq6mk1gn" + } + }, + { + "goPackagePath": "gopkg.in/flosch/pongo2.v3", + "fetch": { + "type": "git", + "url": "https://gopkg.in/flosch/pongo2.v3", + "rev": "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9", + "sha256": "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8" + } + }, + { + "goPackagePath": "github.com/olekukonko/tablewriter", + "fetch": { + "type": "git", + "url": "https://github.com/olekukonko/tablewriter", + "rev": "cca8bbc0798408af109aaaa239cbd2634846b340", + "sha256": "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48" + } + }, + { + "goPackagePath": "github.com/mattn/go-sqlite3", + "fetch": { + "type": "git", + "url": "https://github.com/mattn/go-sqlite3", + "rev": "c5aee9649735e8dadac55eb968ccebd9fa29a881", + "sha256": "1505piq2mks6s77hfzrlv2siiqpy55lxgy1h9364jfz0baxjqpas" + } + }, + { + "goPackagePath": "gopkg.in/lxc/go-lxc.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/lxc/go-lxc.v2", + "rev": "8f9e220b36393c03854c2d224c5a55644b13e205", + "sha256": "1dc1n2561k3pxbm2zzh3qwlh30bcb2k9v22ghvr7ps2j9lmhs0ip" + } + }, + { + "goPackagePath": "github.com/mattn/go-runewidth", + "fetch": { + "type": "git", + "url": "https://github.com/mattn/go-runewidth", + "rev": "d6bea18f789704b5f83375793155289da36a3c7f", + "sha256": "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs" + } + }, + { + "goPackagePath": "github.com/coreos/go-systemd", + "fetch": { + "type": "git", + "url": "https://github.com/coreos/go-systemd", + "rev": "a606a1e936df81b70d85448221c7b1c6d8a74ef1", + "sha256": "0fhan564swp982dnzzspb6jzfdl453489c0qavh65g3shy5x8x28" + } + }, + { + "goPackagePath": "github.com/dustinkirkland/golang-petname", + "fetch": { + "type": "git", + "url": "https://github.com/dustinkirkland/golang-petname", + "rev": "2182cecef7f257230fc998bc351a08a5505f5e6c", + "sha256": "1xagj34y5rxl7rykhil8iqxlls9rbgcxgdvgfp7kg39pinw83arl" + } + }, + { + "goPackagePath": "github.com/gorilla/context", + "fetch": { + "type": "git", + "url": "https://github.com/gorilla/context", + "rev": "215affda49addc4c8ef7e2534915df2c8c35c6cd", + "sha256": "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g" + } + }, + { + "goPackagePath": "github.com/mattn/go-colorable", + "fetch": { + "type": "git", + "url": "https://github.com/mattn/go-colorable", + "rev": "3dac7b4f76f6e17fb39b768b89e3783d16e237fe", + "sha256": "08680mba8hh2rghymqbzd4m40r9k765w5kbzvrif9ngd6h85qnw6" + } + }, + { + "goPackagePath": "github.com/gosexy/gettext", + "fetch": { + "type": "git", + "url": "https://github.com/gosexy/gettext", + "rev": "305f360aee30243660f32600b87c3c1eaa947187", + "sha256": "0sm7ziv56ms0lrk30ipbl6i17azar3a44dd2xvr011442zs5ym09" + } } ] \ No newline at end of file diff --git a/pkgs/tools/admin/lxd/default.nix b/pkgs/tools/admin/lxd/default.nix new file mode 100644 index 000000000000..e1adb6ccf90d --- /dev/null +++ b/pkgs/tools/admin/lxd/default.nix @@ -0,0 +1,36 @@ +# This file was generated by go2nix. +{ stdenv, lib, pkgconfig, lxc, goPackages, fetchFromGitHub }: + +with goPackages; + +buildGoPackage rec { + name = "lxd-${version}"; + version = "2.0.0.rc4"; + rev = "lxd-${version}"; + + goPackagePath = "github.com/lxc/lxd"; + + src = fetchFromGitHub { + inherit rev; + owner = "lxc"; + repo = "lxd"; + sha256 = "1rpyyj6d38d9kmb47dcmy1x41fiacj384yx01yslsrj2l6qxcdjn"; + }; + + goDeps = ./deps.json; + + nativeBuildInputs = [ pkgconfig ]; + buildInputs = [ lxc ]; + + postInstall = '' + cp go/src/$goPackagePath/scripts/lxd-images $bin/bin + ''; + + meta = with stdenv.lib; { + description = "Daemon based on liblxc offering a REST API to manage containers"; + homepage = https://github.com/lxc/lxd; + license = licenses.asl20; + maintainers = with maintainers; [ globin fpletz ]; + platforms = platforms.linux; + }; +} diff --git a/pkgs/tools/admin/lxd/deps.json b/pkgs/tools/admin/lxd/deps.json new file mode 100644 index 000000000000..3e9a811accef --- /dev/null +++ b/pkgs/tools/admin/lxd/deps.json @@ -0,0 +1,26 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/golang/protobuf", + "github.com/gorilla/websocket", + "github.com/syndtr/gocapability", + "gopkg.in/inconshreveable/log15.v2", + "github.com/gorilla/mux", + "github.com/pborman/uuid", + "golang.org/x/crypto", + "gopkg.in/flosch/pongo2.v3", + "gopkg.in/tomb.v2", + "github.com/olekukonko/tablewriter", + "github.com/mattn/go-sqlite3", + "gopkg.in/lxc/go-lxc.v2", + "gopkg.in/yaml.v2", + "github.com/mattn/go-runewidth", + "github.com/coreos/go-systemd", + "github.com/dustinkirkland/golang-petname", + "github.com/gorilla/context", + "github.com/mattn/go-colorable", + "github.com/gosexy/gettext" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b059eee3dbba..4482e11e3de4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2350,7 +2350,7 @@ in lshw = callPackage ../tools/system/lshw { }; lxc = callPackage ../os-specific/linux/lxc { }; - lxd = goPackages.lxd.bin // { outputs = [ "bin" ]; }; + lxd = (callPackage ../tools/admin/lxd { }).bin; lzip = callPackage ../tools/compression/lzip { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 190f520df31e..75b7d25fd79b 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1666,17 +1666,6 @@ let propagatedBuildInputs = [ osext go-systemd ]; }; - go-lxc = buildFromGitHub { - rev = "d89df0ad9dc13a7ce491eedaa771b076cf32db16"; - version = "2016-02-12"; - owner = "lxc"; - repo = "go-lxc"; - sha256 = "051kqvvclfcinqcbi4zch694llvnxa5vvbw6cbdxbkzhr5zxm36q"; - goPackagePath = "gopkg.in/lxc/go-lxc.v2"; - nativeBuildInputs = [ pkgs.pkgconfig ]; - buildInputs = [ pkgs.lxc ]; - }; - go-lz4 = buildFromGitHub { rev = "74ddf82598bc4745b965729e9c6a463bedd33049"; owner = "bkaradzic"; @@ -2344,31 +2333,6 @@ let goPackageAliases = [ "github.com/natefinch/lumberjack" ]; }; - - lxd = buildFromGitHub { - rev = "lxd-2.0.0.rc4"; - owner = "lxc"; - repo = "lxd"; - sha256 = "1rpyyj6d38d9kmb47dcmy1x41fiacj384yx01yslsrj2l6qxcdjn"; - excludedPackages = "test"; # Don't build the binary called test which causes conflicts - buildInputs = [ - gosexy.gettext websocket crypto log15 go-lxc yaml-v2 tomb protobuf pongo2 - go-uuid tablewriter golang-petname mux go-sqlite3 goproxy - pkgs.python3 go-systemd uuid gocapability - ]; - postInstall = '' - cp go/src/$goPackagePath/scripts/lxd-images $bin/bin - ''; - - meta = with stdenv.lib; { - description = "Daemon based on liblxc offering a REST API to manage containers"; - homepage = https://github.com/lxc/lxd; - license = licenses.asl20; - maintainers = with maintainers; [ globin fpletz ]; - platforms = platforms.linux; - }; - }; - manners = buildFromGitHub { rev = "0.4.0"; owner = "braintree"; From 93b9ebfde8fdc33ea6d202cba4091ba16a277a48 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 16:46:37 +0200 Subject: [PATCH 416/520] ngrok: extracted from goPackages --- pkgs/development/go-modules/libs.json | 92 ++++++++++++++++++++++++- pkgs/tools/networking/ngrok/default.nix | 34 +++++++++ pkgs/tools/networking/ngrok/deps.json | 19 +++++ pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 145 insertions(+), 2 deletions(-) create mode 100644 pkgs/tools/networking/ngrok/default.nix create mode 100644 pkgs/tools/networking/ngrok/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 4ad8eb0dc219..f478b92eec8d 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -286,5 +286,95 @@ "rev": "305f360aee30243660f32600b87c3c1eaa947187", "sha256": "0sm7ziv56ms0lrk30ipbl6i17azar3a44dd2xvr011442zs5ym09" } + }, + { + "goPackagePath": "github.com/rcrowley/go-metrics", + "fetch": { + "type": "git", + "url": "https://github.com/rcrowley/go-metrics", + "rev": "1ce93efbc8f9c568886b2ef85ce305b2217b3de3", + "sha256": "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa" + } + }, + { + "goPackagePath": "github.com/inconshreveable/go-vhost", + "fetch": { + "type": "git", + "url": "https://github.com/inconshreveable/go-vhost", + "rev": "c4c28117502e4bf00960c8282b2d1c51c865fe2c", + "sha256": "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32" + } + }, + { + "goPackagePath": "code.google.com/p/log4go", + "fetch": { + "type": "git", + "url": "https://github.com/ccpaging/log4go", + "rev": "cb4cc51cd03958183d3b637d0750497d88c2f7a8", + "sha256": "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2" + } + }, + { + "goPackagePath": "github.com/daviddengcn/go-colortext", + "fetch": { + "type": "git", + "url": "https://github.com/daviddengcn/go-colortext", + "rev": "13eaeb896f5985a1ab74ddea58707a73d875ba57", + "sha256": "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x" + } + }, + { + "goPackagePath": "gopkg.in/yaml.v1", + "fetch": { + "type": "git", + "url": "https://github.com/go-yaml/yaml", + "rev": "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a", + "sha256": "0jbdy41pplf2d1j24qwr8gc5qsig6ai5ch8rwgvg72kq9q0901cy" + } + }, + { + "goPackagePath": "github.com/inconshreveable/mousetrap", + "fetch": { + "type": "git", + "url": "https://github.com/inconshreveable/mousetrap", + "rev": "9dbb96d2c3a964935b0870b5abaea13c98b483aa", + "sha256": "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b" + } + }, + { + "goPackagePath": "github.com/nsf/termbox-go", + "fetch": { + "type": "git", + "url": "https://github.com/nsf/termbox-go", + "rev": "9aecf65084a5754f12d27508fa2e6ed56851953b", + "sha256": "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh" + } + }, + { + "goPackagePath": "gopkg.in/inconshreveable/go-update.v0", + "fetch": { + "type": "git", + "url": "https://github.com/inconshreveable/go-update", + "rev": "d8b0b1d421aa1cbf392c05869f8abbc669bb7066", + "sha256": "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa" + } + }, + { + "goPackagePath": "github.com/kardianos/osext", + "fetch": { + "type": "git", + "url": "https://github.com/kardianos/osext", + "rev": "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc", + "sha256": "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a" + } + }, + { + "goPackagePath": "github.com/kr/binarydist", + "fetch": { + "type": "git", + "url": "https://github.com/kr/binarydist", + "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", + "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" + } } -] \ No newline at end of file +] diff --git a/pkgs/tools/networking/ngrok/default.nix b/pkgs/tools/networking/ngrok/default.nix new file mode 100644 index 000000000000..5344a4ec46bc --- /dev/null +++ b/pkgs/tools/networking/ngrok/default.nix @@ -0,0 +1,34 @@ +# This file was generated by go2nix. +{ stdenv, lib, pkgconfig, goPackages, fetchFromGitHub }: + +with goPackages; + +buildGoPackage rec { + name = "ngrok-${version}"; + version = "1.7.1"; + rev = "${version}"; + + goPackagePath = "ngrok"; + + src = fetchFromGitHub { + inherit rev; + owner = "inconshreveable"; + repo = "ngrok"; + sha256 = "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4"; + }; + + goDeps = ./deps.json; + + buildInputs = [ go-bindata ]; + + preConfigure = '' + sed -e '/jteeuwen\/go-bindata/d' \ + -e '/export GOPATH/d' \ + -e 's/go get/#go get/' \ + -e 's|bin/go-bindata|go-bindata|' -i Makefile + make assets BUILDTAGS=release + export sourceRoot=$sourceRoot/src/ngrok + ''; + + buildFlags = [ "-tags release" ]; +} diff --git a/pkgs/tools/networking/ngrok/deps.json b/pkgs/tools/networking/ngrok/deps.json new file mode 100644 index 000000000000..61dfbf337266 --- /dev/null +++ b/pkgs/tools/networking/ngrok/deps.json @@ -0,0 +1,19 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "gopkg.in/yaml.v1", + "github.com/gorilla/websocket", + "github.com/rcrowley/go-metrics", + "github.com/inconshreveable/go-vhost", + "code.google.com/p/log4go", + "github.com/daviddengcn/go-colortext", + "gopkg.in/yaml.v1", + "github.com/inconshreveable/mousetrap", + "github.com/nsf/termbox-go", + "gopkg.in/inconshreveable/go-update.v0", + "github.com/kardianos/osext", + "github.com/kr/binarydist" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 4482e11e3de4..3d5b68057d03 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2607,7 +2607,7 @@ in ngrep = callPackage ../tools/networking/ngrep { }; - ngrok = goPackages.ngrok.bin // { outputs = [ "bin" ]; }; + ngrok = (callPackage ../tools/networking/ngrok { }).bin; noip = callPackage ../tools/networking/noip { }; From e44d38125ce2bf1ec6ba2f72f04c4bf105cc859d Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 17:20:43 +0200 Subject: [PATCH 417/520] s3gof3r: extracted from goPackages --- pkgs/development/go-modules/libs.json | 20 ++++++++++---------- pkgs/tools/networking/s3gof3r/default.nix | 20 ++++++++++++++++++++ pkgs/tools/networking/s3gof3r/deps.json | 8 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 10 ---------- 5 files changed, 39 insertions(+), 21 deletions(-) create mode 100644 pkgs/tools/networking/s3gof3r/default.nix create mode 100644 pkgs/tools/networking/s3gof3r/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index f478b92eec8d..c8bcc99194a5 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -98,15 +98,6 @@ "sha256": "152lrkfxk205rlxiign0w5wb0fmfh910yz4jhlv4f4l1qr1h2lx8" } }, - { - "goPackagePath": "github.com/jessevdk/go-flags", - "fetch": { - "type": "git", - "url": "https://github.com/jessevdk/go-flags", - "rev": "97448c91aac742cbca3d020b3e769013a420a06f", - "sha256": "0fv3yxvq8m3639a279hq4pf0c52ngqfl5n1vklcfympndrb7zjzj" - } - }, { "goPackagePath": "gopkg.in/mgo.v2", "fetch": { @@ -376,5 +367,14 @@ "rev": "9955b0ab8708602d411341e55fffd7e0700f86bd", "sha256": "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3" } + }, + { + "goPackagePath": "github.com/jessevdk/go-flags", + "fetch": { + "type": "git", + "url": "https://github.com/jessevdk/go-flags", + "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", + "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" + } } -] +] \ No newline at end of file diff --git a/pkgs/tools/networking/s3gof3r/default.nix b/pkgs/tools/networking/s3gof3r/default.nix new file mode 100644 index 000000000000..e751d991542d --- /dev/null +++ b/pkgs/tools/networking/s3gof3r/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "s3gof3r-${version}"; + version = "20151109-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "31603a0dc94aefb822bfe2ceea75a6be6013b445"; + + goPackagePath = "github.com/rlmcpherson/s3gof3r"; + + src = fetchgit { + inherit rev; + url = "https://github.com/rlmcpherson/s3gof3r"; + sha256 = "10banc8hnhxpsdmlkf9nc5fjkh1349bgpd9k7lggw3yih1rvmh7k"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/networking/s3gof3r/deps.json b/pkgs/tools/networking/s3gof3r/deps.json new file mode 100644 index 000000000000..d4a41d349b28 --- /dev/null +++ b/pkgs/tools/networking/s3gof3r/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../../go-modules/libs.json", + "packages": [ + "github.com/jessevdk/go-flags" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d5b68057d03..909a33d4e8a8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3237,7 +3237,7 @@ in s3cmd = callPackage ../tools/networking/s3cmd { }; - s3gof3r = goPackages.s3gof3r.bin // { outputs = [ "bin" ]; }; + s3gof3r = (callPackage ../tools/networking/s3gof3r { }).bin; s6Dns = callPackage ../tools/networking/s6-dns { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 75b7d25fd79b..52fd41d79eea 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3387,16 +3387,6 @@ let sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; }; - s3gof3r = buildFromGitHub rec { - owner = "rlmcpherson"; - repo = "s3gof3r"; - rev = "v${version}"; - version = "0.5.0"; - sha256 = "10banc8hnhxpsdmlkf9nc5fjkh1349bgpd9k7lggw3yih1rvmh7k"; - disabled = isGo14; - propagatedBuildInputs = [ go-flags ]; - }; - sandblast = buildGoPackage rec { rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; From d010d39e15cda42f76105baf5fcf69363d4d4fe4 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 18:17:43 +0200 Subject: [PATCH 418/520] skydns: extracted from goPackages --- pkgs/development/go-modules/libs.json | 92 ++++++++++++++++++++++++++- pkgs/servers/skydns/default.nix | 20 ++++++ pkgs/servers/skydns/deps.json | 20 ++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 11 ---- 5 files changed, 132 insertions(+), 13 deletions(-) create mode 100644 pkgs/servers/skydns/default.nix create mode 100644 pkgs/servers/skydns/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index c8bcc99194a5..03107ea8e498 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -376,5 +376,95 @@ "rev": "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539", "sha256": "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680" } + }, + { + "goPackagePath": "github.com/prometheus/client_model", + "fetch": { + "type": "git", + "url": "https://github.com/prometheus/client_model", + "rev": "fa8ad6fec33561be4280a8f0514318c79d7f6cb6", + "sha256": "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9" + } + }, + { + "goPackagePath": "github.com/prometheus/common", + "fetch": { + "type": "git", + "url": "https://github.com/prometheus/common", + "rev": "40456948a47496dc22168e6af39297a2f8fbf38c", + "sha256": "15700w18pifng0l2isa6v25y91r5rb7yfgljqw2g2gqrvac6sr5l" + } + }, + { + "goPackagePath": "github.com/beorn7/perks", + "fetch": { + "type": "git", + "url": "https://github.com/beorn7/perks", + "rev": "3ac7bf7a47d159a033b107610db8a1b6575507a4", + "sha256": "1qc3l4r818xpvrhshh1sisc5lvl9479qspcfcdbivdyh0apah83r" + } + }, + { + "goPackagePath": "github.com/coreos/go-etcd", + "fetch": { + "type": "git", + "url": "https://github.com/coreos/go-etcd", + "rev": "003851be7bb0694fe3cc457a49529a19388ee7cf", + "sha256": "0n78m4lwsjiaqhjizcsp25paj2l2d4fdr7c4i671ldvpggq76lrl" + } + }, + { + "goPackagePath": "github.com/matttproud/golang_protobuf_extensions", + "fetch": { + "type": "git", + "url": "https://github.com/matttproud/golang_protobuf_extensions", + "rev": "d0c3fe89de86839aecf2e0579c40ba3bb336a453", + "sha256": "0jkjgpi1s8l9bdbf14fh8050757jqy36kn1l1hxxlb2fjn1pcg0r" + } + }, + { + "goPackagePath": "github.com/prometheus/client_golang", + "fetch": { + "type": "git", + "url": "https://github.com/prometheus/client_golang", + "rev": "90c15b5efa0dc32a7d259234e02ac9a99e6d3b82", + "sha256": "11hbll3x7hm69a7b0pwnhz5diligjy5yykdkqz2rsvs8s1k796zm" + } + }, + { + "goPackagePath": "github.com/stathat/go", + "fetch": { + "type": "git", + "url": "https://github.com/stathat/go", + "rev": "91dfa3a59c5b233fef9a346a1460f6e2bc889d93", + "sha256": "105ql5v8r4hqcsq0ag7asdxqg9n7rvf83y1q1dj2nfjyn4manv6r" + } + }, + { + "goPackagePath": "github.com/ugorji/go", + "fetch": { + "type": "git", + "url": "https://github.com/ugorji/go", + "rev": "c062049c1793b01a3cc3fe786108edabbaf7756b", + "sha256": "00cy7flxlm52ahxmqsznv87im5hx6xa9qg09i7cvrm70r74zh58q" + } + }, + { + "goPackagePath": "github.com/miekg/dns", + "fetch": { + "type": "git", + "url": "https://github.com/miekg/dns", + "rev": "b9171237b0642de1d8e8004f16869970e065f46b", + "sha256": "1biz7j8mdyil2vks1hyvwkjh5na5fy45rn5fnxl68b9iw6r0xsc3" + } + }, + { + "goPackagePath": "github.com/prometheus/procfs", + "fetch": { + "type": "git", + "url": "https://github.com/prometheus/procfs", + "rev": "406e5b7bfd8201a36e2bb5f7bdae0b03380c2ce8", + "sha256": "0yla9hz15pg63394ygs9iiwzsqyv29labl8p424hijwsc9z9nka8" + } } -] \ No newline at end of file +] diff --git a/pkgs/servers/skydns/default.nix b/pkgs/servers/skydns/default.nix new file mode 100644 index 000000000000..fc4c82f50429 --- /dev/null +++ b/pkgs/servers/skydns/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "skydns-${version}"; + version = "2.5.3a"; + rev = "${version}"; + + goPackagePath = "github.com/skynetservices/skydns"; + + src = fetchgit { + inherit rev; + url = "https://github.com/skynetservices/skydns"; + sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/skydns/deps.json b/pkgs/servers/skydns/deps.json new file mode 100644 index 000000000000..9ddbfa3c4347 --- /dev/null +++ b/pkgs/servers/skydns/deps.json @@ -0,0 +1,20 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/miekg/dns", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/prometheus/common", + "github.com/prometheus/procfs", + "github.com/coreos/go-systemd", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/ugorji/go", + "github.com/golang/protobuf", + "github.com/stathat/go", + "github.com/beorn7/perks", + "github.com/coreos/go-etcd", + "github.com/rcrowley/go-metrics" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 909a33d4e8a8..b7b3a0527b2e 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3329,7 +3329,7 @@ in skippy-xd = callPackage ../tools/X11/skippy-xd {}; - skydns = goPackages.skydns.bin // { outputs = [ "bin" ]; }; + skydns = (callPackage ../servers/skydns { }).bin; sipcalc = callPackage ../tools/networking/sipcalc { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 52fd41d79eea..6b51ccacd473 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3483,17 +3483,6 @@ let sha256 = "0ybz1w3hndma8myq3pxan36533hy9f4w598hsv4hnj21l4br8jpx"; }; - skydns = buildFromGitHub { - rev = "2.5.3a"; - owner = "skynetservices"; - repo = "skydns"; - sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7"; - - buildInputs = [ - go-etcd rcrowley.go-metrics dns go-systemd prometheus.client_golang - ]; - }; - slices = buildGoPackage rec { rev = "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea"; name = "slices-${stdenv.lib.strings.substring 0 7 rev}"; From 17770101b51ffcceacd9588f4543a681a179ef7c Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 18:30:38 +0200 Subject: [PATCH 419/520] wego: extracted from goPackages --- pkgs/applications/misc/wego/default.nix | 20 ++++++++++++++++++++ pkgs/applications/misc/wego/deps.json | 10 ++++++++++ pkgs/development/go-modules/libs.json | 9 +++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 9 --------- 5 files changed, 40 insertions(+), 10 deletions(-) create mode 100644 pkgs/applications/misc/wego/default.nix create mode 100644 pkgs/applications/misc/wego/deps.json diff --git a/pkgs/applications/misc/wego/default.nix b/pkgs/applications/misc/wego/default.nix new file mode 100644 index 000000000000..2ce62783100a --- /dev/null +++ b/pkgs/applications/misc/wego/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "wego-${version}"; + version = "20160407-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5"; + + goPackagePath = "github.com/schachmat/wego"; + + src = fetchgit { + inherit rev; + url = "https://github.com/schachmat/wego"; + sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/applications/misc/wego/deps.json b/pkgs/applications/misc/wego/deps.json new file mode 100644 index 000000000000..2255fdeb69e3 --- /dev/null +++ b/pkgs/applications/misc/wego/deps.json @@ -0,0 +1,10 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/mattn/go-colorable", + "github.com/mattn/go-runewidth", + "github.com/schachmat/ingo" + ] + } +] diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 03107ea8e498..2ee01f42ea22 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -466,5 +466,14 @@ "rev": "406e5b7bfd8201a36e2bb5f7bdae0b03380c2ce8", "sha256": "0yla9hz15pg63394ygs9iiwzsqyv29labl8p424hijwsc9z9nka8" } + }, + { + "goPackagePath": "github.com/schachmat/ingo", + "fetch": { + "type": "git", + "url": "https://github.com/schachmat/ingo", + "rev": "fab41e4e62cbef5d92998746ec25f7e195100f38", + "sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb" + } } ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b7b3a0527b2e..e993fc9b1a44 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3714,7 +3714,7 @@ in weather = callPackage ../applications/misc/weather { }; - wego = goPackages.wego.bin // { outputs = [ "bin" ]; }; + wego = (callPackage ../applications/misc/wego { }).bin; wal_e = callPackage ../tools/backup/wal-e { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 6b51ccacd473..dd171b484d62 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -4008,15 +4008,6 @@ let propagatedBuildInputs = [ ]; }; - wego = buildFromGitHub rec { - rev = "81d72ffd761f032fbd73dba4f94bd94c8c2d53d5"; - version = "2016-04-07"; - owner = "schachmat"; - repo = "wego"; - sha256 = "14p3hvv82bsxqnbnzz8hjv75i39kzg154a132n6cdxx3vgw76gck"; - propagatedBuildInputs = [ go-colorable mattn.go-runewidth ingo ]; - }; - textql = buildFromGitHub rec { rev = "1785cd353c68aa34f97627143b9c2908dfd4ea04"; version = "2.0.3"; From bce93755b9ac9dd154812dda0ebaae9d86e34f41 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 18:42:33 +0200 Subject: [PATCH 420/520] textql: extracted from goPackages --- pkgs/development/go-modules/libs.json | 6 ++--- pkgs/development/tools/textql/default.nix | 27 +++++++++++++++++++++++ pkgs/development/tools/textql/deps.json | 8 +++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 17 -------------- 5 files changed, 39 insertions(+), 21 deletions(-) create mode 100644 pkgs/development/tools/textql/default.nix create mode 100644 pkgs/development/tools/textql/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 2ee01f42ea22..673c5c8010e2 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -211,8 +211,8 @@ "fetch": { "type": "git", "url": "https://github.com/mattn/go-sqlite3", - "rev": "c5aee9649735e8dadac55eb968ccebd9fa29a881", - "sha256": "1505piq2mks6s77hfzrlv2siiqpy55lxgy1h9364jfz0baxjqpas" + "rev": "b4142c444a8941d0d92b0b7103a24df9cd815e42", + "sha256": "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla" } }, { @@ -476,4 +476,4 @@ "sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb" } } -] +] \ No newline at end of file diff --git a/pkgs/development/tools/textql/default.nix b/pkgs/development/tools/textql/default.nix new file mode 100644 index 000000000000..abc9312c9e2d --- /dev/null +++ b/pkgs/development/tools/textql/default.nix @@ -0,0 +1,27 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "textql-${version}"; + version = "2.0.3"; + rev = "${version}"; + + goPackagePath = "github.com/dinedal/textql"; + + src = fetchgit { + inherit rev; + url = "https://github.com/dinedal/textql"; + sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3"; + }; + + goDeps = ./deps.json; + + meta = with stdenv.lib; { + description = "Execute SQL against structured text like CSV or TSV"; + homepage = https://github.com/dinedal/textql; + license = licenses.mit; + maintainers = with maintainers; [ vrthra ]; + }; +} diff --git a/pkgs/development/tools/textql/deps.json b/pkgs/development/tools/textql/deps.json new file mode 100644 index 000000000000..d2a75b9e45b0 --- /dev/null +++ b/pkgs/development/tools/textql/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/mattn/go-sqlite3" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index e993fc9b1a44..d087e118c1fb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -3740,7 +3740,7 @@ in testdisk = callPackage ../tools/misc/testdisk { }; - textql = goPackages.textql.bin // { outputs = [ "bin" ]; }; + textql = (callPackage ../development/tools/textql { }).bin; html2text = callPackage ../tools/text/html2text { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index dd171b484d62..9bf27c55fa5f 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -4008,23 +4008,6 @@ let propagatedBuildInputs = [ ]; }; - textql = buildFromGitHub rec { - rev = "1785cd353c68aa34f97627143b9c2908dfd4ea04"; - version = "2.0.3"; - owner = "dinedal"; - repo = "textql"; - sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3"; - propagatedBuildInputs = [ go-sqlite3 ]; - - meta = with stdenv.lib; { - description = "Execute SQL against structured text like CSV or TSV"; - homepage = https://github.com/dinedal/textql; - license = licenses.mit; - maintainers = with maintainers; [ vrthra ]; - }; - - }; - gopsutil = buildFromGitHub rec { version = "1.0.0"; rev = "37d89088411de59a4ef9fc340afa0e89dfcb4ea9"; From c7bf8afbfc02dbed6957d095d00f6e9a1a4f5279 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 18:52:46 +0200 Subject: [PATCH 421/520] oh: extracted from goPackages --- pkgs/development/go-modules/libs.json | 24 +++++++++++++++++++++--- pkgs/shells/oh/default.nix | 20 ++++++++++++++++++++ pkgs/shells/oh/deps.json | 10 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 11 ----------- 5 files changed, 52 insertions(+), 15 deletions(-) create mode 100644 pkgs/shells/oh/default.nix create mode 100644 pkgs/shells/oh/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 673c5c8010e2..33a3420d5b68 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -4,8 +4,8 @@ "fetch": { "type": "git", "url": "https://go.googlesource.com/sys", - "rev": "7a56174f0086b32866ebd746a794417edbc678a1", - "sha256": "13jaz47wyrfak066ywkrvqnk1ijxik0nlvi7vkpi3gaiwcrlb5g2" + "rev": "d9157a9621b69ad1d8d77a1933590c416593f24f", + "sha256": "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931" } }, { @@ -475,5 +475,23 @@ "rev": "fab41e4e62cbef5d92998746ec25f7e195100f38", "sha256": "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb" } + }, + { + "goPackagePath": "github.com/michaelmacinnis/adapted", + "fetch": { + "type": "git", + "url": "https://github.com/michaelmacinnis/adapted", + "rev": "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978", + "sha256": "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv" + } + }, + { + "goPackagePath": "github.com/peterh/liner", + "fetch": { + "type": "git", + "url": "https://github.com/peterh/liner", + "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", + "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" + } } -] \ No newline at end of file +] diff --git a/pkgs/shells/oh/default.nix b/pkgs/shells/oh/default.nix new file mode 100644 index 000000000000..3c8b2c89524d --- /dev/null +++ b/pkgs/shells/oh/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "oh-${version}"; + version = "20160522-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4"; + + goPackagePath = "github.com/michaelmacinnis/oh"; + + src = fetchgit { + inherit rev; + url = "https://github.com/michaelmacinnis/oh"; + sha256 = "0ajidzs0aisbw74nri9ks6sx6644nmwkisc9mvxm3f89zmnlsgwr"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/shells/oh/deps.json b/pkgs/shells/oh/deps.json new file mode 100644 index 000000000000..a0e67ed42dcc --- /dev/null +++ b/pkgs/shells/oh/deps.json @@ -0,0 +1,10 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/michaelmacinnis/adapted", + "github.com/peterh/liner", + "golang.org/x/sys" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d087e118c1fb..62c8316ccb0d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4085,7 +4085,7 @@ in mksh = callPackage ../shells/mksh { }; - oh = goPackages.oh.bin // { outputs = [ "bin" ]; }; + oh = (callPackage ../shells/oh { }).bin; pash = callPackage ../shells/pash { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 9bf27c55fa5f..65a0e065cadc 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2643,17 +2643,6 @@ let doCheck = false; # check this again }; - oh = buildFromGitHub { - rev = "0daaf4081475fb9d6b3801c85019bdd57b2ee9b4"; - version = "2016-05-23"; - owner = "michaelmacinnis"; - repo = "oh"; - sha256 = "0ajidzs0aisbw74nri9ks6sx6644nmwkisc9mvxm3f89zmnlsgwr"; - goPackageAliases = [ "github.com/michaelmacinnis/oh" ]; - buildInputs = [ adapted liner ]; - disabled = isGo14; - }; - openssl = buildFromGitHub { rev = "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec"; owner = "10gen"; From 0066d89b0ce4b0e40bf5393861fac21124d5c288 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 19:11:31 +0200 Subject: [PATCH 422/520] go-repo-root: extracted from goPackages --- .../tools/go-repo-root/default.nix | 20 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 9 --------- 3 files changed, 21 insertions(+), 10 deletions(-) create mode 100644 pkgs/development/tools/go-repo-root/default.nix diff --git a/pkgs/development/tools/go-repo-root/default.nix b/pkgs/development/tools/go-repo-root/default.nix new file mode 100644 index 000000000000..15aa1504d93c --- /dev/null +++ b/pkgs/development/tools/go-repo-root/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "go-repo-root-${version}"; + version = "20140911-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; + + goPackagePath = "github.com/cstrahan/go-repo-root"; + + src = fetchgit { + inherit rev; + url = "https://github.com/cstrahan/go-repo-root"; + sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; + }; + + buildInputs = [ tools ]; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 62c8316ccb0d..36a20ff3ac6b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4551,7 +4551,7 @@ in go = self.go_1_5; - go-repo-root = goPackages.go-repo-root.bin // { outputs = [ "bin" ]; }; + go-repo-root = (callPackage ../development/tools/go-repo-root { }).bin; gox = goPackages.gox.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 65a0e065cadc..1d19bb945da4 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1804,15 +1804,6 @@ let sha256 = "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x"; }; - go-repo-root = buildFromGitHub { - rev = "90041e5c7dc634651549f96814a452f4e0e680f9"; - version = "2014-09-11"; - owner = "cstrahan"; - repo = "go-repo-root"; - sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; - buildInputs = [ tools ]; - }; - go-rice = buildFromGitHub { rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; version = "2016-01-04"; From 6dc8237385f08761750367fbda18318094be00ea Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 19:19:32 +0200 Subject: [PATCH 423/520] gox: extracted from goPackages --- pkgs/development/go-modules/libs.json | 11 ++++++++++- pkgs/development/tools/gox/default.nix | 21 +++++++++++++++++++++ pkgs/development/tools/gox/deps.json | 8 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 20 -------------------- 5 files changed, 40 insertions(+), 22 deletions(-) create mode 100644 pkgs/development/tools/gox/default.nix create mode 100644 pkgs/development/tools/gox/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 33a3420d5b68..3d54517796c5 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -493,5 +493,14 @@ "rev": "ad1edfd30321d8f006ccf05f1e0524adeb943060", "sha256": "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317" } + }, + { + "goPackagePath": "github.com/mitchellh/iochan", + "fetch": { + "type": "git", + "url": "https://github.com/mitchellh/iochan", + "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", + "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" + } } -] +] \ No newline at end of file diff --git a/pkgs/development/tools/gox/default.nix b/pkgs/development/tools/gox/default.nix new file mode 100644 index 000000000000..7b58bafcd627 --- /dev/null +++ b/pkgs/development/tools/gox/default.nix @@ -0,0 +1,21 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "gox-${version}"; + version = "20140904-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549"; + + + goPackagePath = "github.com/mitchellh/gox"; + + src = fetchgit { + inherit rev; + url = "https://github.com/mitchellh/gox"; + sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/development/tools/gox/deps.json b/pkgs/development/tools/gox/deps.json new file mode 100644 index 000000000000..288b2d9f714f --- /dev/null +++ b/pkgs/development/tools/gox/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/mitchellh/iochan" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 36a20ff3ac6b..9406c7120b2f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4553,7 +4553,7 @@ in go-repo-root = (callPackage ../development/tools/go-repo-root { }).bin; - gox = goPackages.gox.bin // { outputs = [ "bin" ]; }; + gox = (callPackage ../development/tools/gox { }).bin; gprolog = callPackage ../development/compilers/gprolog { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 1d19bb945da4..a435283abebc 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1336,19 +1336,6 @@ let buildInputs = [ opencontainers.runc ]; }; - gox = buildGoPackage rec { - rev = "e8e6fd4fe12510cc46893dff18c5188a6a6dc549"; - name = "gox-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/mitchellh/gox"; - src = fetchFromGitHub { - inherit rev; - owner = "mitchellh"; - repo = "gox"; - sha256 = "14jb2vgfr6dv7zlw8i3ilmp125m5l28ljv41a66c9b8gijhm48k1"; - }; - buildInputs = [ iochan ]; - }; - gozim = buildFromGitHub { rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; version = "2016-01-15"; @@ -2152,13 +2139,6 @@ let sha256 = "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc"; }; - iochan = buildFromGitHub { - rev = "b584a329b193e206025682ae6c10cdbe03b0cd77"; - owner = "mitchellh"; - repo = "iochan"; - sha256 = "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b"; - }; - ipfs = buildFromGitHub{ rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; version = "2016-01-12"; From 26d231c536bec9b26c9e0b8009cf2d72d8c285c2 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 19:40:02 +0200 Subject: [PATCH 424/520] mesos-dns: extracted from goPackages --- pkgs/development/go-modules/libs.json | 91 +++++++++++++++++++++++++-- pkgs/servers/mesos-dns/default.nix | 23 +++++++ pkgs/servers/mesos-dns/deps.json | 18 ++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 21 ------- 5 files changed, 128 insertions(+), 27 deletions(-) create mode 100644 pkgs/servers/mesos-dns/default.nix create mode 100644 pkgs/servers/mesos-dns/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 3d54517796c5..18ddb080b19d 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -85,8 +85,8 @@ "fetch": { "type": "git", "url": "https://go.googlesource.com/net", - "rev": "ef00b378c73f107bf44d5c9b69875255ce89b79a", - "sha256": "168dhvl0wqiac8xmy8mqkvspd7cq6vfjpj80zdnriwy169nykcyz" + "rev": "62ac18b461605b4be188bbc7300e9aa2bc836cd4", + "sha256": "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p" } }, { @@ -454,8 +454,8 @@ "fetch": { "type": "git", "url": "https://github.com/miekg/dns", - "rev": "b9171237b0642de1d8e8004f16869970e065f46b", - "sha256": "1biz7j8mdyil2vks1hyvwkjh5na5fy45rn5fnxl68b9iw6r0xsc3" + "rev": "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa", + "sha256": "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl" } }, { @@ -502,5 +502,86 @@ "rev": "b584a329b193e206025682ae6c10cdbe03b0cd77", "sha256": "1fcwdhfci41ibpng2j4c1bqfng578cwzb3c00yw1lnbwwhaq9r6b" } + }, + { + "goPackagePath": "github.com/gogo/protobuf", + "fetch": { + "type": "git", + "url": "https://github.com/gogo/protobuf", + "rev": "7883e1468d48d969e1c3ce4bcde89b6a7dd4adc4", + "sha256": "16ja7lqq96q0pnzgnbwnh0j8qzvqgns1nfk8ndxgkg4sg93bg372" + } + }, + { + "goPackagePath": "github.com/golang/glog", + "fetch": { + "type": "git", + "url": "https://github.com/golang/glog", + "rev": "fca8c8854093a154ff1eb580aae10276ad6b1b5f", + "sha256": "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8" + } + }, + { + "goPackagePath": "github.com/mesos/mesos-go", + "fetch": { + "type": "git", + "url": "https://github.com/mesos/mesos-go", + "rev": "aaa5b2fecf0e2db463f4f996c89617d6766b2969", + "sha256": "1pk1fpxksjln6kqvgm1igw3582jgrn14fwa8bdj5cwbpy6skjdvk" + } + }, + { + "goPackagePath": "github.com/pmezard/go-difflib", + "fetch": { + "type": "git", + "url": "https://github.com/pmezard/go-difflib", + "rev": "d8ed2627bdf02c080bf22230dbb337003b7aba2d", + "sha256": "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs" + } + }, + { + "goPackagePath": "github.com/samuel/go-zookeeper", + "fetch": { + "type": "git", + "url": "https://github.com/samuel/go-zookeeper", + "rev": "5bb5cfc093ad18a28148c578f8632cfdb4d802e4", + "sha256": "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z" + } + }, + { + "goPackagePath": "github.com/stretchr/objx", + "fetch": { + "type": "git", + "url": "https://github.com/stretchr/objx", + "rev": "cbeaeb16a013161a98496fad62933b1d21786672", + "sha256": "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1" + } + }, + { + "goPackagePath": "github.com/davecgh/go-spew", + "fetch": { + "type": "git", + "url": "https://github.com/davecgh/go-spew", + "rev": "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d", + "sha256": "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk" + } + }, + { + "goPackagePath": "github.com/emicklei/go-restful", + "fetch": { + "type": "git", + "url": "https://github.com/emicklei/go-restful", + "rev": "892402ba11a2e2fd5e1295dd633481f27365f14d", + "sha256": "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x" + } + }, + { + "goPackagePath": "github.com/stretchr/testify", + "fetch": { + "type": "git", + "url": "https://github.com/stretchr/testify", + "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", + "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" + } } -] \ No newline at end of file +] diff --git a/pkgs/servers/mesos-dns/default.nix b/pkgs/servers/mesos-dns/default.nix new file mode 100644 index 000000000000..1fa2a6101788 --- /dev/null +++ b/pkgs/servers/mesos-dns/default.nix @@ -0,0 +1,23 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "mesos-dns-${version}"; + version = "0.1.2"; + rev = "v${version}"; + + goPackagePath = "github.com/mesosphere/mesos-dns"; + + # Avoid including the benchmarking test helper in the output: + subPackages = [ "." ]; + + src = fetchgit { + inherit rev; + url = "https://github.com/mesosphere/mesos-dns"; + sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/mesos-dns/deps.json b/pkgs/servers/mesos-dns/deps.json new file mode 100644 index 000000000000..8ac9d7058413 --- /dev/null +++ b/pkgs/servers/mesos-dns/deps.json @@ -0,0 +1,18 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/gogo/protobuf", + "github.com/golang/glog", + "github.com/mesos/mesos-go", + "github.com/pmezard/go-difflib", + "github.com/samuel/go-zookeeper", + "github.com/stretchr/objx", + "github.com/davecgh/go-spew", + "github.com/emicklei/go-restful", + "github.com/stretchr/testify", + "github.com/miekg/dns", + "golang.org/x/net" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9406c7120b2f..d9a60f50f464 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -5607,7 +5607,7 @@ in perf = linuxPackages.perf; }; - mesos-dns = goPackages.mesos-dns.bin // { outputs = [ "bin" ]; }; + mesos-dns = (callPackage ../servers/mesos-dns { }).bin; mujs = callPackage ../development/interpreters/mujs { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a435283abebc..3be6aa47dd88 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2370,27 +2370,6 @@ let propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; - mesos-dns = buildFromGitHub { - rev = "v0.1.2"; - owner = "mesosphere"; - repo = "mesos-dns"; - sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02"; - - # Avoid including the benchmarking test helper in the output: - subPackages = [ "." ]; - - buildInputs = [ glog mesos-go dns go-restful ]; - }; - - mesos-go = buildFromGitHub { - rev = "d98afa618cc9a9251758916f49ce87f9051b69a4"; - owner = "mesos"; - repo = "mesos-go"; - sha256 = "01ab0jf3cfb1rdwwb21r38rcfr5vp86pkfk28mws8298mlzbpri7"; - propagatedBuildInputs = [ gogo.protobuf glog net testify go-zookeeper objx uuid ]; - excludedPackages = "test"; - }; - mesos-stats = buildGoPackage rec { rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920"; name = "mesos-stats-${stdenv.lib.strings.substring 0 7 rev}"; From 20a457faf777dee002024aa425a9076c936e0d3f Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Fri, 3 Jun 2016 20:03:09 +0200 Subject: [PATCH 425/520] gotty: extracted from goPackages --- pkgs/development/go-modules/libs.json | 63 +++++++++++++++++++++++++++ pkgs/servers/gotty/default.nix | 27 ++++++++++++ pkgs/servers/gotty/deps.json | 15 +++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 16 ------- 5 files changed, 106 insertions(+), 17 deletions(-) create mode 100644 pkgs/servers/gotty/default.nix create mode 100644 pkgs/servers/gotty/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 18ddb080b19d..8fe25540bc51 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -583,5 +583,68 @@ "rev": "089c7181b8c728499929ff09b62d3fdd8df8adff", "sha256": "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p" } + }, + { + "goPackagePath": "github.com/kr/pty", + "fetch": { + "type": "git", + "url": "https://github.com/kr/pty", + "rev": "67e2db24c831afa6c64fc17b4a143390674365ef", + "sha256": "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d" + } + }, + { + "goPackagePath": "github.com/braintree/manners", + "fetch": { + "type": "git", + "url": "https://github.com/braintree/manners", + "rev": "cab36f97339b1925cd89e158632728025557e550", + "sha256": "1q508c62iiklghkhwqz9c0zsn9hrij7kqb93gdywzj7ms7x6hlfh" + } + }, + { + "goPackagePath": "github.com/codegangsta/cli", + "fetch": { + "type": "git", + "url": "https://github.com/codegangsta/cli", + "rev": "71f57d300dd6a780ac1856c005c4b518cfd498ec", + "sha256": "1fxznirkvank5461789dm5aw5z8aqi0jvwligvz44659rfl376p3" + } + }, + { + "goPackagePath": "github.com/elazarl/go-bindata-assetfs", + "fetch": { + "type": "git", + "url": "https://github.com/elazarl/go-bindata-assetfs", + "rev": "d5cac425555ca5cf00694df246e04f05e6a55150", + "sha256": "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17" + } + }, + { + "goPackagePath": "github.com/fatih/structs", + "fetch": { + "type": "git", + "url": "https://github.com/fatih/structs", + "rev": "a9f7daa9c2729e97450c2da2feda19130a367d8f", + "sha256": "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50" + } + }, + { + "goPackagePath": "github.com/hashicorp/hcl", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/hcl", + "rev": "54864211433d45cb780682431585b3e573b49e4a", + "sha256": "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950" + } + }, + { + "goPackagePath": "github.com/hashicorp/go-multierror", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/go-multierror", + "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", + "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" + } } ] diff --git a/pkgs/servers/gotty/default.nix b/pkgs/servers/gotty/default.nix new file mode 100644 index 000000000000..c826180d7585 --- /dev/null +++ b/pkgs/servers/gotty/default.nix @@ -0,0 +1,27 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "gotty-${version}"; + version = "0.0.10"; + rev = "v${version}"; + + goPackagePath = "github.com/yudai/gotty"; + + src = fetchgit { + inherit rev; + url = "https://github.com/yudai/gotty"; + sha256 = "1jc620j4y2r8706r6qn7g2nghiidaaj7f8m2vjgq2gwv288qjafd"; + }; + + goDeps = ./deps.json; + + meta = with stdenv.lib; { + description = "Share your terminal as a web application"; + homepage = "https://github.com/yudai/gotty"; + maintainers = with maintainers; [ matthiasbeyer ]; + license = licenses.mit; + }; +} diff --git a/pkgs/servers/gotty/deps.json b/pkgs/servers/gotty/deps.json new file mode 100644 index 000000000000..ff0016df6233 --- /dev/null +++ b/pkgs/servers/gotty/deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/kr/pty", + "github.com/braintree/manners", + "github.com/codegangsta/cli", + "github.com/elazarl/go-bindata-assetfs", + "github.com/fatih/structs", + "github.com/gorilla/websocket", + "github.com/hashicorp/hcl", + "github.com/hashicorp/go-multierror" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d9a60f50f464..89dc95eaeeb3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6216,7 +6216,7 @@ in gob2 = callPackage ../development/tools/misc/gob2 { }; - gotty = goPackages.gotty.bin // { outputs = [ "bin" ]; }; + gotty = (callPackage ../servers/gotty { }).bin; gradleGen = callPackage ../development/tools/build-managers/gradle { }; gradle = self.gradleGen.gradleLatest; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3be6aa47dd88..3adaf33f8928 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1134,22 +1134,6 @@ let sha256 = "1l1w4mczqmah0c154vb1daw5l3cc7vn5gmy5s67p3ad1lnz5l79x"; }; - gotty = buildFromGitHub { - rev = "v0.0.10"; - owner = "yudai"; - repo = "gotty"; - sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09"; - - buildInputs = [ cli-go go manners go-bindata-assetfs go-multierror structs websocket hcl pty ]; - - meta = with stdenv.lib; { - description = "Share your terminal as a web application"; - homepage = "https://github.com/yudai/gotty"; - maintainers = with maintainers; [ matthiasbeyer ]; - license = licenses.mit; - }; - }; - govers = buildFromGitHub { rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; version = "2015-01-09"; From 6909d0e45688b132600021f90f725e82ad144d98 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 08:14:36 +0200 Subject: [PATCH 426/520] vimPlugins: FIX fzf outside goPackages --- pkgs/misc/vim-plugins/default.nix | 8 ++++---- pkgs/tools/misc/fzf/default.nix | 2 +- pkgs/top-level/all-packages.nix | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/misc/vim-plugins/default.nix b/pkgs/misc/vim-plugins/default.nix index 800caad76e00..98a8a4ddf249 100644 --- a/pkgs/misc/vim-plugins/default.nix +++ b/pkgs/misc/vim-plugins/default.nix @@ -1,7 +1,7 @@ # TODO check that no license information gets lost { fetchurl, bash, stdenv, python, go, cmake, vim, vimUtils, perl, ruby, unzip , which, fetchgit, fetchFromGitHub, fetchhg, fetchzip, llvmPackages, zip -, vim_configurable, vimPlugins, xkb_switch, git, racerdRust, goPackages +, vim_configurable, vimPlugins, xkb_switch, git, racerdRust, fzf , Cocoa ? null }: @@ -98,9 +98,9 @@ rec { wombat256 = wombat256-vim; # backwards compat, added 2015-7-8 yankring = YankRing; - fzf = buildVimPluginFrom2Nix { - name = goPackages.fzf.name; - src = "${goPackages.fzf}/share/go/src/github.com/junegunn/fzf"; + fzfWrapper = buildVimPluginFrom2Nix { + name = fzf.name; + src = "${fzf}/share/go/src/github.com/junegunn/fzf"; dependencies = []; }; diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix index 08def70ecb6e..d1fd3ac0afce 100644 --- a/pkgs/tools/misc/fzf/default.nix +++ b/pkgs/tools/misc/fzf/default.nix @@ -28,6 +28,6 @@ buildGoPackage rec { postInstall= '' cp $src/bin/fzf-tmux $bin/bin mkdir -p $out/share/vim-plugins - ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${(builtins.parseDrvName fzf.name).name} + ln -s $out/share/go/src/github.com/junegunn/fzf $out/share/vim-plugins/${name} ''; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 89dc95eaeeb3..09842b4c232a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -801,7 +801,7 @@ in fsmark = callPackage ../tools/misc/fsmark { }; - fzf = (callPackage ../tools/misc/fzf {}).bin; + fzf = callPackage ../tools/misc/fzf { }; fzy = callPackage ../tools/misc/fzy { }; From 144ea787530fbabbbef1dbdd5f5e0e6eed5155bb Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 08:40:17 +0200 Subject: [PATCH 427/520] etcd: extracted from goPackages --- pkgs/servers/etcd/default.nix | 22 ++++++++++++++++++++++ pkgs/servers/etcd/deps.json | 9 +++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 8 -------- 4 files changed, 32 insertions(+), 9 deletions(-) create mode 100644 pkgs/servers/etcd/default.nix create mode 100644 pkgs/servers/etcd/deps.json diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix new file mode 100644 index 000000000000..05bb61049693 --- /dev/null +++ b/pkgs/servers/etcd/default.nix @@ -0,0 +1,22 @@ +# This file was generated by go2nix. +{ stdenv, lib, libpcap, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "etcd-${version}"; + version = "2.3.0"; + rev = "v${version}"; + + goPackagePath = "github.com/coreos/etcd"; + + src = fetchgit { + inherit rev; + url = "https://github.com/coreos/etcd"; + sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; + }; + + goDeps = ./deps.json; + + buildInputs = [ libpcap ]; +} diff --git a/pkgs/servers/etcd/deps.json b/pkgs/servers/etcd/deps.json new file mode 100644 index 000000000000..b5977a855515 --- /dev/null +++ b/pkgs/servers/etcd/deps.json @@ -0,0 +1,9 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/olekukonko/tablewriter", + "github.com/mattn/go-runewidth" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 09842b4c232a..6082f524c7d4 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9903,7 +9903,7 @@ in inherit (perlPackages) NetSMTP; }; - etcd = goPackages.etcd.bin // { outputs = [ "bin" ]; }; + etcd = callPackage ../servers/etcd { }; ejabberd = callPackage ../servers/xmpp/ejabberd { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3adaf33f8928..df2d9db67962 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -827,14 +827,6 @@ let sha256 = "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf"; }; - etcd = buildFromGitHub { - rev = "v2.3.0"; - owner = "coreos"; - repo = "etcd"; - sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; - buildInputs = [ pkgs.libpcap tablewriter ]; - }; - fsnotify.v0 = buildGoPackage rec { rev = "v0.9.3"; name = "fsnotify.v0-${rev}"; From 2bee32508cb660db6f46513b20589a51e65d2f05 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 13:01:57 +0200 Subject: [PATCH 428/520] nsq: extracted from goPackages --- pkgs/development/go-modules/libs.json | 81 +++++++++++++++++++++++++++ pkgs/servers/nsq/default.nix | 20 +++++++ pkgs/servers/nsq/deps.json | 16 ++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 11 ---- 5 files changed, 118 insertions(+), 12 deletions(-) create mode 100644 pkgs/servers/nsq/default.nix create mode 100644 pkgs/servers/nsq/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 8fe25540bc51..8e6d3d51e7a0 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -646,5 +646,86 @@ "rev": "56912fb08d85084aa318edcf2bba735b97cf35c5", "sha256": "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r" } + }, + { + "goPackagePath": "github.com/mreiferson/go-snappystream", + "fetch": { + "type": "git", + "url": "https://github.com/mreiferson/go-snappystream", + "rev": "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504", + "sha256": "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6" + } + }, + { + "goPackagePath": "github.com/bitly/go-nsq", + "fetch": { + "type": "git", + "url": "https://github.com/bitly/go-nsq", + "rev": "22a8bd48c443ec23bb559675b6df8284bbbdab29", + "sha256": "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46" + } + }, + { + "goPackagePath": "github.com/bitly/go-simplejson", + "fetch": { + "type": "git", + "url": "https://github.com/bitly/go-simplejson", + "rev": "fc395a5db941cf38922b1ccbc083640cd76fe4bc", + "sha256": "14lhdmzlc1pza10q8g957zqnc4kfqvamw90mj1ndj6s285h80m54" + } + }, + { + "goPackagePath": "github.com/blang/semver", + "fetch": { + "type": "git", + "url": "https://github.com/blang/semver", + "rev": "9bf7bff48b0388cb75991e58c6df7d13e982f1f2", + "sha256": "11sinbf942dpyc9wdpidkhmqn438cfp5n8x3xqnmq9aszkld9hy7" + } + }, + { + "goPackagePath": "github.com/bmizerany/perks", + "fetch": { + "type": "git", + "url": "https://github.com/bmizerany/perks", + "rev": "6cb9d9d729303ee2628580d9aec5db968da3a607", + "sha256": "0cdh84hmn21is6hvv6dy9qjdcg9w3l2k8avlk0881a8cqm09s90j" + } + }, + { + "goPackagePath": "github.com/BurntSushi/toml", + "fetch": { + "type": "git", + "url": "https://github.com/BurntSushi/toml", + "rev": "056c9bc7be7190eaa7715723883caffa5f8fa3e4", + "sha256": "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw" + } + }, + { + "goPackagePath": "github.com/bitly/go-hostpool", + "fetch": { + "type": "git", + "url": "https://github.com/bitly/go-hostpool", + "rev": "d0e59c22a56e8dadfed24f74f452cea5a52722d2", + "sha256": "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g" + } + }, + { + "goPackagePath": "github.com/bitly/timer_metrics", + "fetch": { + "type": "git", + "url": "https://github.com/bitly/timer_metrics", + "rev": "afad1794bb13e2a094720aeb27c088aa64564895", + "sha256": "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c" + } + }, + { + "goPackagePath": "github.com/mreiferson/go-options", + "fetch": { + "type": "git", + "url": "https://github.com/mreiferson/go-options", + "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", + "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" + } } ] diff --git a/pkgs/servers/nsq/default.nix b/pkgs/servers/nsq/default.nix new file mode 100644 index 000000000000..5831340eccd9 --- /dev/null +++ b/pkgs/servers/nsq/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "nsq-${version}"; + version = "0.3.5"; + rev = "v${version}"; + + goPackagePath = "github.com/bitly/nsq"; + + src = fetchgit { + inherit rev; + url = "https://github.com/nsqio/nsq"; + sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/nsq/deps.json b/pkgs/servers/nsq/deps.json new file mode 100644 index 000000000000..e23d3e15f669 --- /dev/null +++ b/pkgs/servers/nsq/deps.json @@ -0,0 +1,16 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/mreiferson/go-snappystream", + "github.com/bitly/go-nsq", + "github.com/bitly/go-simplejson", + "github.com/blang/semver", + "github.com/bmizerany/perks", + "github.com/BurntSushi/toml", + "github.com/bitly/go-hostpool", + "github.com/bitly/timer_metrics", + "github.com/mreiferson/go-options" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6082f524c7d4..5464e581794f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10031,7 +10031,7 @@ in nsd = callPackage ../servers/dns/nsd (config.nsd or {}); - nsq = goPackages.nsq.bin // { outputs = [ "bin" ]; }; + nsq = callPackage ../servers/nsq { }; oauth2_proxy = goPackages.oauth2_proxy.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index df2d9db67962..63e67a9c9727 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2489,17 +2489,6 @@ let subPackages = [ "." ]; }; - nsq = buildFromGitHub { - rev = "v0.3.5"; - owner = "bitly"; - repo = "nsq"; - sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f"; - - excludedPackages = "bench"; - - buildInputs = [ go-nsq go-options semver perks toml go-hostpool timer_metrics ]; - }; - ntp = buildFromGitHub { rev = "0a5264e2563429030eb922f258229ae3fee5b5dc"; owner = "beevik"; From 6b41b6b908429b5d6eca05e45eb13a2d6954cfec Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 13:25:34 +0200 Subject: [PATCH 429/520] oauth2_proxy: extracted from goPackages --- pkgs/development/go-modules/libs.json | 44 ++++++++++++++++++++++++--- pkgs/servers/oauth2_proxy/default.nix | 20 ++++++++++++ pkgs/servers/oauth2_proxy/deps.json | 16 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 --------- 5 files changed, 77 insertions(+), 20 deletions(-) create mode 100644 pkgs/servers/oauth2_proxy/default.nix create mode 100644 pkgs/servers/oauth2_proxy/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 8e6d3d51e7a0..32044808f867 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -13,8 +13,8 @@ "fetch": { "type": "git", "url": "https://gopkg.in/fsnotify.v1", - "rev": "30411dbcefb7a1da7e84f75530ad3abe4011b4f8", - "sha256": "1ljkdzbj9ll3jx1dggslzpm475prvsg22hdpxnb6kxqyk3z8dqdj" + "rev": "96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0", + "sha256": "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2" } }, { @@ -670,8 +670,8 @@ "fetch": { "type": "git", "url": "https://github.com/bitly/go-simplejson", - "rev": "fc395a5db941cf38922b1ccbc083640cd76fe4bc", - "sha256": "14lhdmzlc1pza10q8g957zqnc4kfqvamw90mj1ndj6s285h80m54" + "rev": "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a", + "sha256": "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy" } }, { @@ -727,5 +727,41 @@ "rev": "7c174072188d0cfbe6f01bb457626abb22bdff52", "sha256": "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm" } + }, + { + "goPackagePath": "google.golang.org/api", + "fetch": { + "type": "git", + "url": "https://code.googlesource.com/google-api-go-client", + "rev": "a5c3e2a4792aff40e59840d9ecdff0542a202a80", + "sha256": "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8" + } + }, + { + "goPackagePath": "google.golang.org/cloud", + "fetch": { + "type": "git", + "url": "https://code.googlesource.com/gocloud", + "rev": "6335269abf9002cf5a84613c13cda6010842b834", + "sha256": "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf" + } + }, + { + "goPackagePath": "golang.org/x/oauth2", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/oauth2", + "rev": "397fe7649477ff2e8ced8fc0b2696f781e53745a", + "sha256": "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8" + } + }, + { + "goPackagePath": "github.com/18F/hmacauth", + "fetch": { + "type": "git", + "url": "https://github.com/18F/hmacauth", + "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", + "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" + } } ] diff --git a/pkgs/servers/oauth2_proxy/default.nix b/pkgs/servers/oauth2_proxy/default.nix new file mode 100644 index 000000000000..9381db95d77d --- /dev/null +++ b/pkgs/servers/oauth2_proxy/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "oauth2_proxy-${version}"; + version = "20160120-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "10f47e325b782a60b8689653fa45360dee7fbf34"; + + goPackagePath = "github.com/bitly/oauth2_proxy"; + + src = fetchgit { + inherit rev; + url = "https://github.com/bitly/oauth2_proxy"; + sha256 = "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/oauth2_proxy/deps.json b/pkgs/servers/oauth2_proxy/deps.json new file mode 100644 index 000000000000..ac8ac3d8ca21 --- /dev/null +++ b/pkgs/servers/oauth2_proxy/deps.json @@ -0,0 +1,16 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "google.golang.org/api", + "google.golang.org/cloud", + "golang.org/x/oauth2", + "github.com/18F/hmacauth", + "github.com/mreiferson/go-options", + "github.com/BurntSushi/toml", + "github.com/bitly/go-simplejson", + "golang.org/x/net", + "gopkg.in/fsnotify.v1" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 5464e581794f..ea012bbc9338 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10033,7 +10033,7 @@ in nsq = callPackage ../servers/nsq { }; - oauth2_proxy = goPackages.oauth2_proxy.bin // { outputs = [ "bin" ]; }; + oauth2_proxy = callPackage ../servers/oauth2_proxy { }; openpts = callPackage ../servers/openpts { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 63e67a9c9727..fe3cc14926bb 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2496,21 +2496,6 @@ let sha256 = "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24"; }; - oauth2_proxy = buildGoPackage { - name = "oauth2_proxy"; - goPackagePath = "github.com/bitly/oauth2_proxy"; - src = fetchFromGitHub { - rev = "10f47e325b782a60b8689653fa45360dee7fbf34"; - owner = "bitly"; - repo = "oauth2_proxy"; - sha256 = "13f6kaq15f6ial9gqzrsx7i94jhd5j70js2k93qwxcw1vkh1b6si"; - }; - buildInputs = [ - go-assert go-options go-simplejson toml fsnotify.v1 oauth2 - google-api-go-client hmacauth - ]; - }; - objx = buildFromGitHub { rev = "cbeaeb16a013161a98496fad62933b1d21786672"; owner = "stretchr"; From 4ddfe1fc40ae19efd34dcca0a2f6f179b0320f70 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 13:54:28 +0200 Subject: [PATCH 430/520] serfdom: extracted from goPackages --- pkgs/development/go-modules/libs.json | 130 +++++++++++++++++++++++++- pkgs/servers/serf/default.nix | 20 ++++ pkgs/servers/serf/deps.json | 23 +++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 13 --- 5 files changed, 172 insertions(+), 16 deletions(-) create mode 100644 pkgs/servers/serf/default.nix create mode 100644 pkgs/servers/serf/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 32044808f867..be7440fb7337 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -40,8 +40,8 @@ "fetch": { "type": "git", "url": "https://go.googlesource.com/crypto", - "rev": "1f22c0103821b9390939b6776727195525381532", - "sha256": "05ahvn9g9cj7797n8ryfxv2g26v3lx1pza9d9pg97iw0rvar9i1h" + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" } }, { @@ -763,5 +763,131 @@ "rev": "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd", "sha256": "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1" } + }, + { + "goPackagePath": "github.com/armon/go-metrics", + "fetch": { + "type": "git", + "url": "https://github.com/armon/go-metrics", + "rev": "b2d95e5291cdbc26997d1301a5e467ecbb240e25", + "sha256": "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck" + } + }, + { + "goPackagePath": "github.com/mattn/go-isatty", + "fetch": { + "type": "git", + "url": "https://github.com/mattn/go-isatty", + "rev": "ae0b1f8f8004be68d791a576e3d8e7648ab41449", + "sha256": "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj" + } + }, + { + "goPackagePath": "github.com/hashicorp/logutils", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/logutils", + "rev": "0dc08b1671f34c4250ce212759ebd880f743d883", + "sha256": "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r" + } + }, + { + "goPackagePath": "github.com/armon/go-radix", + "fetch": { + "type": "git", + "url": "https://github.com/armon/go-radix", + "rev": "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93", + "sha256": "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c" + } + }, + { + "goPackagePath": "github.com/hashicorp/go-syslog", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/go-syslog", + "rev": "42a2b573b664dbf281bd48c3cc12c086b17a39ba", + "sha256": "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3" + } + }, + { + "goPackagePath": "github.com/hashicorp/memberlist", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/memberlist", + "rev": "6025015f2dc659ca2c735112d37e753bda6e329d", + "sha256": "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7" + } + }, + { + "goPackagePath": "github.com/mitchellh/mapstructure", + "fetch": { + "type": "git", + "url": "https://github.com/mitchellh/mapstructure", + "rev": "281073eb9eb092240d33ef253c404f1cca550309", + "sha256": "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh" + } + }, + { + "goPackagePath": "github.com/armon/circbuf", + "fetch": { + "type": "git", + "url": "https://github.com/armon/circbuf", + "rev": "f092b4f207b6e5cce0569056fba9e1a2735cb6cf", + "sha256": "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s" + } + }, + { + "goPackagePath": "github.com/hashicorp/mdns", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/mdns", + "rev": "2b439d37011456df8ff83a70ffd1cd6046410113", + "sha256": "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96" + } + }, + { + "goPackagePath": "github.com/mitchellh/cli", + "fetch": { + "type": "git", + "url": "https://github.com/mitchellh/cli", + "rev": "8102d0ed5ea2709ade1243798785888175f6e415", + "sha256": "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2" + } + }, + { + "goPackagePath": "github.com/ryanuber/columnize", + "fetch": { + "type": "git", + "url": "https://github.com/ryanuber/columnize", + "rev": "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a", + "sha256": "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9" + } + }, + { + "goPackagePath": "github.com/hashicorp/go-msgpack", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/go-msgpack", + "rev": "fa3f63826f7c23912c15263591e65d54d080b458", + "sha256": "1f6rd6bm2dm2rk46x8cqrxh5nks1gpk6dvvsag7s5pdjgdxy951k" + } + }, + { + "goPackagePath": "github.com/hashicorp/go.net", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/go.net", + "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", + "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" + } + }, + { + "goPackagePath": "golang.org/x/crypto", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/go.net", + "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", + "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" + } } ] diff --git a/pkgs/servers/serf/default.nix b/pkgs/servers/serf/default.nix new file mode 100644 index 000000000000..5f4c6453de71 --- /dev/null +++ b/pkgs/servers/serf/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "serf-${version}"; + version = "20150515-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; + + goPackagePath = "github.com/hashicorp/serf"; + + src = fetchgit { + inherit rev; + url = "https://github.com/hashicorp/serf"; + sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/serf/deps.json b/pkgs/servers/serf/deps.json new file mode 100644 index 000000000000..3f13d0684797 --- /dev/null +++ b/pkgs/servers/serf/deps.json @@ -0,0 +1,23 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/armon/go-metrics", + "github.com/mattn/go-isatty", + "github.com/hashicorp/logutils", + "github.com/armon/go-radix", + "github.com/bgentry/speakeasy", + "github.com/hashicorp/go-syslog", + "github.com/hashicorp/memberlist", + "github.com/mitchellh/mapstructure", + "github.com/armon/circbuf", + "github.com/hashicorp/go-msgpack", + "github.com/hashicorp/go.net", + "github.com/hashicorp/mdns", + "github.com/mitchellh/cli", + "github.com/ryanuber/columnize", + "github.com/miekg/dns", + "golang.org/x/crypto" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ea012bbc9338..0afc7bff30ba 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10274,7 +10274,7 @@ in shairport-sync = callPackage ../servers/shairport-sync { }; - serfdom = goPackages.serf.bin // { outputs = [ "bin" ]; }; + serfdom = callPackage ../servers/serf { }; seyren = callPackage ../servers/monitoring/seyren { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index fe3cc14926bb..d1cc66f14497 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3339,19 +3339,6 @@ let sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; }; - serf = buildFromGitHub { - rev = "668982d8f90f5eff4a766583c1286393c1d27f68"; - version = "2015-05-15"; - owner = "hashicorp"; - repo = "serf"; - sha256 = "1h05h5xhaj27r1mh5zshnykax29lqjhfc0bx4v9swiwb873c24qk"; - - buildInputs = [ - circbuf armon.go-metrics ugorji.go go-syslog logutils mdns memberlist - cli mapstructure columnize - ]; - }; - sets = buildGoPackage rec { rev = "6c54cb57ea406ff6354256a4847e37298194478f"; name = "sets-${stdenv.lib.strings.substring 0 7 rev}"; From dc2bb06a1b8631539251fd93c88e6bd4bdac2b12 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 14:01:13 +0200 Subject: [PATCH 431/520] gocode: extracted from goPackages --- pkgs/development/tools/gocode/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 8 -------- 3 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/tools/gocode/default.nix diff --git a/pkgs/development/tools/gocode/default.nix b/pkgs/development/tools/gocode/default.nix new file mode 100644 index 000000000000..0a2b908c9fd1 --- /dev/null +++ b/pkgs/development/tools/gocode/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "gocode-${version}"; + version = "20150904-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; + + goPackagePath = "github.com/nsf/gocode"; + + src = fetchgit { + inherit rev; + url = "https://github.com/nsf/gocode"; + sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 0afc7bff30ba..c206bab50962 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11151,7 +11151,7 @@ in inherit (gnome) gtk gtkmm; }; - gocode = goPackages.gocode.bin // { outputs = [ "bin" ]; }; + gocode = callPackage ../development/tools/gocode { }; kgocode = callPackage ../applications/misc/kgocode { inherit (pkgs.kde4) kdelibs; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index d1cc66f14497..cc6df9ddb218 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1063,14 +1063,6 @@ let propagatedBuildInputs = [ inf snappy groupcache ]; }; - gocode = buildFromGitHub { - rev = "680a0fbae5119fb0dbea5dca1d89e02747a80de0"; - version = "2015-09-03"; - owner = "nsf"; - repo = "gocode"; - sha256 = "1ay2xakz4bcn8r3ylicbj753gjljvv4cj9l4wfly55cj1vjybjpv"; - }; - gocolorize = buildGoPackage rec { rev = "v1.0.0"; name = "gocolorize-${rev}"; From ec9edbe1726886c11c3bb2195b87bbda2206f523 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 14:05:53 +0200 Subject: [PATCH 432/520] gotags: extracted from goPackages --- pkgs/development/tools/gotags/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 8 -------- 3 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/tools/gotags/default.nix diff --git a/pkgs/development/tools/gotags/default.nix b/pkgs/development/tools/gotags/default.nix new file mode 100644 index 000000000000..65d0d29e1585 --- /dev/null +++ b/pkgs/development/tools/gotags/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "gotags-${version}"; + version = "20150803-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "be986a34e20634775ac73e11a5b55916085c48e7"; + + goPackagePath = "github.com/jstemmer/gotags"; + + src = fetchgit { + inherit rev; + url = "https://github.com/jstemmer/gotags"; + sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c206bab50962..bf451a45ecb1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11157,7 +11157,7 @@ in inherit (pkgs.kde4) kdelibs; }; - gotags = goPackages.gotags.bin // { outputs = [ "bin" ]; }; + gotags = callPackage ../development/tools/gotags { }; golint = goPackages.lint.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index cc6df9ddb218..9c3043f74e14 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1281,14 +1281,6 @@ let sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; }; - gotags = buildFromGitHub { - rev = "be986a34e20634775ac73e11a5b55916085c48e7"; - version = "2015-08-03"; - owner = "jstemmer"; - repo = "gotags"; - sha256 = "071wyq90b06xlb3bb0l4qjz1gf4nnci4bcngiddfcxf2l41w1vja"; - }; - gosnappy = buildFromGitHub { rev = "ce8acff4829e0c2458a67ead32390ac0a381c862"; owner = "syndtr"; From 3cf803fca7cd5d9471edd0e9c4049097d32ecba2 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 14:35:09 +0200 Subject: [PATCH 433/520] golant: extracted from goPackages --- pkgs/development/go-modules/libs.json | 11 ++++++++++- pkgs/development/tools/golint/default.nix | 21 +++++++++++++++++++++ pkgs/development/tools/golint/deps.json | 8 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 10 ---------- 5 files changed, 40 insertions(+), 12 deletions(-) create mode 100644 pkgs/development/tools/golint/default.nix create mode 100644 pkgs/development/tools/golint/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index be7440fb7337..5e6e29ec6b2b 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -889,5 +889,14 @@ "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" } + }, + { + "goPackagePath": "golang.org/x/tools", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/tools", + "rev": "9ae4729fba20b3533d829a9c6ba8195b068f2abc", + "sha256": "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1" + } } -] +] \ No newline at end of file diff --git a/pkgs/development/tools/golint/default.nix b/pkgs/development/tools/golint/default.nix new file mode 100644 index 000000000000..1e63eb73449a --- /dev/null +++ b/pkgs/development/tools/golint/default.nix @@ -0,0 +1,21 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "lint-${version}"; + version = "20160428-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "c7bacac2b21ca01afa1dee0acf64df3ce047c28f"; + + goPackagePath = "github.com/golang/lint"; + excludedPackages = "testdata"; + + src = fetchgit { + inherit rev; + url = "https://github.com/golang/lint"; + sha256 = "024dllcmpg8lx78cqgq551i6f9w6qlykfcx8l7yazak9kjwhpwjg"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/development/tools/golint/deps.json b/pkgs/development/tools/golint/deps.json new file mode 100644 index 000000000000..7a751431e816 --- /dev/null +++ b/pkgs/development/tools/golint/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "pkgs/development/go-modules/libs.json", + "packages": [ + "golang.org/x/tools" + ] + } +] \ No newline at end of file diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index bf451a45ecb1..a8fdf35ae079 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11159,7 +11159,7 @@ in gotags = callPackage ../development/tools/gotags { }; - golint = goPackages.lint.bin // { outputs = [ "bin" ]; }; + golint = callPackage ../development/tools/golint { }; godep = callPackage ../development/tools/godep { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 9c3043f74e14..2f34ea4d6992 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1864,16 +1864,6 @@ let sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; }; - lint = buildFromGitHub { - rev = "7b7f4364ff76043e6c3610281525fabc0d90f0e4"; - version = "2015-06-23"; - owner = "golang"; - repo = "lint"; - sha256 = "1bj7zv534hyh87bp2vsbhp94qijc5nixb06li1dzfz9n0wcmlqw9"; - excludedPackages = "testdata"; - buildInputs = [ tools ]; - }; - goquery = buildGoPackage rec { rev = "f065786d418c9d22a33cad33decd59277af31471"; #tag v.0.3.2 name = "goquery-${stdenv.lib.strings.substring 0 7 rev}"; From 7c8852e3559f411d62c18ecdc3ac9897cb3831d9 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 14:50:09 +0200 Subject: [PATCH 434/520] goimports: extracted from goPackages --- pkgs/development/tools/goimports/default.nix | 19 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 pkgs/development/tools/goimports/default.nix diff --git a/pkgs/development/tools/goimports/default.nix b/pkgs/development/tools/goimports/default.nix new file mode 100644 index 000000000000..bcc82e80cbfa --- /dev/null +++ b/pkgs/development/tools/goimports/default.nix @@ -0,0 +1,19 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "goimports-${version}"; + version = "20160519-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; + + goPackagePath = "golang.org/x/tools"; + subPackages = [ "cmd/goimports" ]; + + src = fetchgit { + inherit rev; + url = "https://go.googlesource.com/tools"; + sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a8fdf35ae079..52d00e5a1341 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -11163,7 +11163,7 @@ in godep = callPackage ../development/tools/godep { }; - goimports = goPackages.tools.bin // { outputs = [ "bin" ]; }; + goimports = callPackage ../development/tools/goimports { }; gogoclient = callPackage ../os-specific/linux/gogoclient { }; From 8bfff0f5a6db64664cc4081d4e5bac727070add8 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 19:03:13 +0200 Subject: [PATCH 435/520] i3cat: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 +++++++++ pkgs/tools/misc/i3cat/default.nix | 20 ++++++++++++++++++++ pkgs/tools/misc/i3cat/deps.json | 8 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 9 --------- 5 files changed, 38 insertions(+), 10 deletions(-) create mode 100644 pkgs/tools/misc/i3cat/default.nix create mode 100644 pkgs/tools/misc/i3cat/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 5e6e29ec6b2b..84093998b513 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -898,5 +898,14 @@ "rev": "9ae4729fba20b3533d829a9c6ba8195b068f2abc", "sha256": "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1" } + }, + { + "goPackagePath": "github.com/vincent-petithory/structfield", + "fetch": { + "type": "git", + "url": "https://github.com/vincent-petithory/structfield", + "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", + "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" + } } ] \ No newline at end of file diff --git a/pkgs/tools/misc/i3cat/default.nix b/pkgs/tools/misc/i3cat/default.nix new file mode 100644 index 000000000000..c0333a14ed47 --- /dev/null +++ b/pkgs/tools/misc/i3cat/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "i3cat-${version}"; + version = "20150321-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; + + goPackagePath = "github.com/vincent-petithory/i3cat"; + + src = fetchgit { + inherit rev; + url = "https://github.com/vincent-petithory/i3cat"; + sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/misc/i3cat/deps.json b/pkgs/tools/misc/i3cat/deps.json new file mode 100644 index 000000000000..cd4c703aed65 --- /dev/null +++ b/pkgs/tools/misc/i3cat/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/vincent-petithory/structfield" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 52d00e5a1341..195948b2384c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13026,7 +13026,7 @@ in i3blocks = callPackage ../applications/window-managers/i3/blocks.nix { }; - i3cat = goPackages.i3cat.bin // { outputs = [ "bin" ]; }; + i3cat = callPackage ../tools/misc/i3cat { }; i3lock = callPackage ../applications/window-managers/i3/lock.nix { cairo = cairo.override { xcbSupport = true; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 2f34ea4d6992..31f699984547 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2026,15 +2026,6 @@ let ]; }; - i3cat = buildFromGitHub { - rev = "b9ba886a7c769994ccd8d4627978ef4b51fcf576"; - version = "2015-03-21"; - owner = "vincent-petithory"; - repo = "i3cat"; - sha256 = "1xlm5c9ajdb71985nq7hcsaraq2z06przbl6r4ykvzi8w2lwgv72"; - buildInputs = [ structfield ]; - }; - inf = buildFromGitHub { rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; owner = "go-inf"; From f473582a754df80197677548b31ed6e074d276a7 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 19:37:12 +0200 Subject: [PATCH 436/520] hologram: extracted from goPackages --- pkgs/development/go-modules/libs.json | 84 ++++++++++++++++++++++-- pkgs/tools/security/hologram/default.nix | 20 ++++++ pkgs/tools/security/hologram/deps.json | 19 ++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 14 ---- 5 files changed, 118 insertions(+), 21 deletions(-) create mode 100644 pkgs/tools/security/hologram/default.nix create mode 100644 pkgs/tools/security/hologram/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 84093998b513..c8d09952d238 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -67,8 +67,8 @@ "fetch": { "type": "git", "url": "https://github.com/golang/protobuf", - "rev": "dda510ac0fd43b39770f22ac6260eb91d377bce3", - "sha256": "0bmz87is9zvxvzycp3135l61ippjw6vmpjz0b9pq8gpxx6sj2vj4" + "rev": "59b73b37c1e45995477aae817e4a653c89a858db", + "sha256": "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa" } }, { @@ -885,9 +885,9 @@ "goPackagePath": "golang.org/x/crypto", "fetch": { "type": "git", - "url": "https://github.com/hashicorp/go.net", - "rev": "104dcad90073cd8d1e6828b2af19185b60cf3e29", - "sha256": "0pfi09h4q6w2x833qxr8r609ml4kw1flqm265j752sb08sbf3zwf" + "url": "https://go.googlesource.com/crypto", + "rev": "575fdbe86e5dd89229707ebec0575ce7d088a4a6", + "sha256": "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa" } }, { @@ -907,5 +907,77 @@ "rev": "01a738558a47fbf16712994d1737fb31c77e7d11", "sha256": "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw" } + }, + { + "goPackagePath": "github.com/aybabtme/rgbterm", + "fetch": { + "type": "git", + "url": "https://github.com/aybabtme/rgbterm", + "rev": "c07e2f009ed2311e9c35bca12ec00b38ccd48283", + "sha256": "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam" + } + }, + { + "goPackagePath": "github.com/vaughan0/go-ini", + "fetch": { + "type": "git", + "url": "https://github.com/vaughan0/go-ini", + "rev": "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1", + "sha256": "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa" + } + }, + { + "goPackagePath": "github.com/mitchellh/go-homedir", + "fetch": { + "type": "git", + "url": "https://github.com/mitchellh/go-homedir", + "rev": "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4", + "sha256": "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9" + } + }, + { + "goPackagePath": "github.com/goamz/goamz", + "fetch": { + "type": "git", + "url": "https://github.com/goamz/goamz", + "rev": "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7", + "sha256": "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b" + } + }, + { + "goPackagePath": "github.com/nmcclain/asn1-ber", + "fetch": { + "type": "git", + "url": "https://github.com/go-asn1-ber/asn1-ber", + "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", + "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" + } + }, + { + "goPackagePath": "gopkg.in/asn1-ber.v1", + "fetch": { + "type": "git", + "url": "https://github.com/go-asn1-ber/asn1-ber", + "rev": "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72", + "sha256": "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9" + } + }, + { + "goPackagePath": "github.com/peterbourgon/g2s", + "fetch": { + "type": "git", + "url": "https://github.com/peterbourgon/g2s", + "rev": "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc", + "sha256": "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj" + } + }, + { + "goPackagePath": "github.com/nmcclain/ldap", + "fetch": { + "type": "git", + "url": "https://github.com/go-ldap/ldap", + "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", + "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" + } } -] \ No newline at end of file +] diff --git a/pkgs/tools/security/hologram/default.nix b/pkgs/tools/security/hologram/default.nix new file mode 100644 index 000000000000..d73827f636b4 --- /dev/null +++ b/pkgs/tools/security/hologram/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "hologram-${version}"; + version = "20160209-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "8d86e3fdcbfd967ba58d8de02f5e8173c101212e"; + + goPackagePath = "github.com/AdRoll/hologram"; + + src = fetchgit { + inherit rev; + url = "https://github.com/AdRoll/hologram"; + sha256 = "0i0p170brdsczfz079mqbc5y7x7mdph04p3wgqsd7xcrddvlkkaf"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/security/hologram/deps.json b/pkgs/tools/security/hologram/deps.json new file mode 100644 index 000000000000..177c960933e8 --- /dev/null +++ b/pkgs/tools/security/hologram/deps.json @@ -0,0 +1,19 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/aybabtme/rgbterm", + "github.com/vaughan0/go-ini", + "github.com/howeyc/gopass", + "github.com/AdRoll/hologram", + "github.com/mitchellh/go-homedir", + "github.com/goamz/goamz", + "github.com/nmcclain/asn1-ber", + "gopkg.in/asn1-ber.v1", + "github.com/peterbourgon/g2s", + "github.com/nmcclain/ldap", + "github.com/golang/protobuf", + "golang.org/x/crypto" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 195948b2384c..05937021cf4f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16180,7 +16180,7 @@ in camlp5 = ocamlPackages.camlp5_strict; }; - hologram = goPackages.hologram.bin // { outputs = [ "bin" ]; }; + hologram = callPackage ../tools/security/hologram { }; tini = callPackage ../applications/virtualization/tini {}; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 31f699984547..686520621752 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1977,20 +1977,6 @@ let ''; }; - hologram = buildGoPackage rec { - rev = "8d86e3fdcbfd967ba58d8de02f5e8173c101212e"; - name = "hologram-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/AdRoll/hologram"; - - src = fetchFromGitHub { - inherit rev; - owner = "AdRoll"; - repo = "hologram"; - sha256 = "0i0p170brdsczfz079mqbc5y7x7mdph04p3wgqsd7xcrddvlkkaf"; - }; - buildInputs = [ crypto protobuf goamz rgbterm go-bindata go-homedir ldap g2s gox gopass ]; - }; - http-authentication = buildFromGitHub { rev = "3eca13d6893afd7ecabe15f4445f5d2872a1b012"; owner = "jimstudt"; From 9e80bfed89e1fe1a3612ebcea3d0553158fb2791 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 19:46:45 +0200 Subject: [PATCH 437/520] golint: FIX proper link to godeps file --- pkgs/development/tools/golint/deps.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/golint/deps.json b/pkgs/development/tools/golint/deps.json index 7a751431e816..bc1b079376a1 100644 --- a/pkgs/development/tools/golint/deps.json +++ b/pkgs/development/tools/golint/deps.json @@ -1,8 +1,8 @@ [ { - "include": "pkgs/development/go-modules/libs.json", + "include": "../../libs.json", "packages": [ "golang.org/x/tools" ] } -] \ No newline at end of file +] From abcec97b1ec898ce336bc333da4efce97c5c4a16 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 20:20:05 +0200 Subject: [PATCH 438/520] confd: extracted from goPackages --- pkgs/development/go-modules/libs.json | 45 +++++++++++++++++++++------ pkgs/tools/system/confd/default.nix | 21 +++++++++++++ pkgs/tools/system/confd/deps.json | 15 +++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 14 --------- 5 files changed, 73 insertions(+), 24 deletions(-) create mode 100644 pkgs/tools/system/confd/default.nix create mode 100644 pkgs/tools/system/confd/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index c8d09952d238..ca1a5e495c7f 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -49,8 +49,8 @@ "fetch": { "type": "git", "url": "https://github.com/Sirupsen/logrus", - "rev": "a26f43589d737684363ff856c5a0f9f24b946510", - "sha256": "13vprfbrsrqky145k26vayl9209gldh2v79614m0qxpx0ln1w2bs" + "rev": "be52937128b38f1d99787bb476c789e2af1147f1", + "sha256": "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4" } }, { @@ -409,8 +409,8 @@ "fetch": { "type": "git", "url": "https://github.com/coreos/go-etcd", - "rev": "003851be7bb0694fe3cc457a49529a19388ee7cf", - "sha256": "0n78m4lwsjiaqhjizcsp25paj2l2d4fdr7c4i671ldvpggq76lrl" + "rev": "9847b93751a5fbaf227b893d172cee0104ac6427", + "sha256": "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4" } }, { @@ -445,8 +445,8 @@ "fetch": { "type": "git", "url": "https://github.com/ugorji/go", - "rev": "c062049c1793b01a3cc3fe786108edabbaf7756b", - "sha256": "00cy7flxlm52ahxmqsznv87im5hx6xa9qg09i7cvrm70r74zh58q" + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" } }, { @@ -867,9 +867,9 @@ "goPackagePath": "github.com/hashicorp/go-msgpack", "fetch": { "type": "git", - "url": "https://github.com/hashicorp/go-msgpack", - "rev": "fa3f63826f7c23912c15263591e65d54d080b458", - "sha256": "1f6rd6bm2dm2rk46x8cqrxh5nks1gpk6dvvsag7s5pdjgdxy951k" + "url": "https://github.com/ugorji/go", + "rev": "03e33114d4d60a1f37150325e15f51b0fa6fc4f6", + "sha256": "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v" } }, { @@ -979,5 +979,32 @@ "rev": "83e65426fd1c06626e88aa8a085e5bfed0208e29", "sha256": "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz" } + }, + { + "goPackagePath": "github.com/kelseyhightower/memkv", + "fetch": { + "type": "git", + "url": "https://github.com/kelseyhightower/memkv", + "rev": "7f9c7f36f45ba80c62fe22779ee78d9b4ca36580", + "sha256": "090x65kr3gqh8fc8z4rm9hc2r0v0k7rfm5vsbmhdh21f48ixw540" + } + }, + { + "goPackagePath": "github.com/armon/consul-api", + "fetch": { + "type": "git", + "url": "https://github.com/armon/consul-api", + "rev": "f79efe463cdbb62f6d5a55f879a63ec554eb13e5", + "sha256": "1rkmzfhsazj9p2b6ywvs8yramzvxfxyvplzxi0ldvhcv04887gcp" + } + }, + { + "goPackagePath": "github.com/garyburd/redigo", + "fetch": { + "type": "git", + "url": "https://github.com/garyburd/redigo", + "rev": "535138d7bcd717d6531c701ef5933d98b1866257", + "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" + } } ] diff --git a/pkgs/tools/system/confd/default.nix b/pkgs/tools/system/confd/default.nix new file mode 100644 index 000000000000..416c856a5ae4 --- /dev/null +++ b/pkgs/tools/system/confd/default.nix @@ -0,0 +1,21 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "confd-${version}"; + version = "0.9.0"; + rev = "v${version}"; + + goPackagePath = "github.com/kelseyhightower/confd"; + subPackages = [ "./" ]; + + src = fetchgit { + inherit rev; + url = "https://github.com/kelseyhightower/confd"; + sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/tools/system/confd/deps.json b/pkgs/tools/system/confd/deps.json new file mode 100644 index 000000000000..a3d9753927f1 --- /dev/null +++ b/pkgs/tools/system/confd/deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/kelseyhightower/memkv", + "github.com/armon/consul-api", + "github.com/garyburd/redigo", + "github.com/samuel/go-zookeeper", + "github.com/BurntSushi/toml", + "github.com/Sirupsen/logrus", + "github.com/coreos/go-etcd", + "github.com/ugorji/go" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 05937021cf4f..71f6efc57fbb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -15059,7 +15059,7 @@ in cockatrice = qt5.callPackage ../games/cockatrice { }; - confd = goPackages.confd.bin // { outputs = [ "bin" ]; }; + confd = callPackage ../tools/system/confd { }; construoBase = lowPrio (callPackage ../games/construo { mesa = null; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 686520621752..c1fb026ce8bf 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -506,20 +506,6 @@ let buildInputs = [ reflectwalk ]; }; - confd = buildGoPackage rec { - rev = "v0.9.0"; - name = "confd-${rev}"; - goPackagePath = "github.com/kelseyhightower/confd"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; - src = fetchFromGitHub { - inherit rev; - owner = "kelseyhightower"; - repo = "confd"; - sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr"; - }; - subPackages = [ "./" ]; - }; - config = buildFromGitHub { rev = "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6"; owner = "robfig"; From 5db153b7a15a528c5c8269c78bafac1b2c8094f1 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 20:40:56 +0200 Subject: [PATCH 439/520] consul: extracted from goPackages --- pkgs/servers/consul/default.nix | 21 +++++++++++++++++++++ pkgs/servers/consul/ui.nix | 8 +++++--- pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 22 ---------------------- 4 files changed, 27 insertions(+), 26 deletions(-) create mode 100644 pkgs/servers/consul/default.nix diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix new file mode 100644 index 000000000000..d5b4e12697e1 --- /dev/null +++ b/pkgs/servers/consul/default.nix @@ -0,0 +1,21 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "consul-${version}"; + version = "0.6.4"; + rev = "v${version}"; + + goPackagePath = "github.com/hashicorp/consul"; + + src = fetchgit { + inherit rev; + url = "https://github.com/hashicorp/consul"; + sha256 = "0p6m2rl0d30w418n4fzc4vymqs3vzfa468czmy4znkjmxdl5vp5a"; + }; + + # Keep consul.ui for backward compatability + passthru.ui = pkgs.consul-ui; +} diff --git a/pkgs/servers/consul/ui.nix b/pkgs/servers/consul/ui.nix index 684412846f01..a61b8baac867 100644 --- a/pkgs/servers/consul/ui.nix +++ b/pkgs/servers/consul/ui.nix @@ -1,4 +1,4 @@ -{ stdenv, goPackages, ruby, bundlerEnv, zip }: +{ stdenv, consul, ruby, bundlerEnv, zip }: let # `sass` et al @@ -11,12 +11,14 @@ let in stdenv.mkDerivation { - name = "consul-ui-${goPackages.consul.rev}"; + name = "consul-ui-${consul.version}"; - src = goPackages.consul.src; + src = consul.src; buildInputs = [ ruby gems zip ]; + patchPhase = "patchShebangs ./ui/scripts/dist.sh"; + buildPhase = '' # Build ui static files cd ui diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 71f6efc57fbb..d71d6d73ccab 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -702,7 +702,7 @@ in clib = callPackage ../tools/package-management/clib { }; - consul = goPackages.consul.bin // { outputs = [ "bin" ]; }; + consul = callPackage ../servers/consul { }; consul-ui = callPackage ../servers/consul/ui.nix { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index c1fb026ce8bf..9cd4f7639742 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -513,28 +513,6 @@ let sha256 = "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0"; }; - consul = buildFromGitHub { - rev = "v0.6.4"; - owner = "hashicorp"; - repo = "consul"; - sha256 = "0p6m2rl0d30w418n4fzc4vymqs3vzfa468czmy4znkjmxdl5vp5a"; - - buildInputs = [ - circbuf armon.go-metrics go-radix gomdb bolt consul-migrate go-checkpoint - ugorji.go go-multierror go-syslog golang-lru hcl logutils memberlist - net-rpc-msgpackrpc raft raft-boltdb raft-mdb scada-client serf yamux - muxado dns cli mapstructure columnize crypto - ]; - - # Keep consul.ui for backward compatability - passthru.ui = pkgs.consul-ui; - }; - - consul-api = buildFromGitHub { - inherit (consul) rev owner repo sha256; - subPackages = [ "api" ]; - }; - consul-alerts = buildFromGitHub { rev = "v0.3.3"; owner = "AcalephStorage"; From 6fe27955fd53a4792e32753029a1ff9c79ceec86 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 21:49:27 +0200 Subject: [PATCH 440/520] consul-alerts: extracted from goPackages --- .../monitoring/consul-alerts/default.nix | 18 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 20 ------------------- 3 files changed, 19 insertions(+), 21 deletions(-) create mode 100644 pkgs/servers/monitoring/consul-alerts/default.nix diff --git a/pkgs/servers/monitoring/consul-alerts/default.nix b/pkgs/servers/monitoring/consul-alerts/default.nix new file mode 100644 index 000000000000..98cb3a3db48c --- /dev/null +++ b/pkgs/servers/monitoring/consul-alerts/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "consul-alerts-${version}"; + version = "0.3.3"; + rev = "v${version}"; + + goPackagePath = "github.com/AcalephStorage/consul-alerts"; + + src = fetchgit { + inherit rev; + url = "https://github.com/AcalephStorage/consul-alerts"; + sha256 = "1w0mb20w1yazyh84sa30bsw271c5nm7lsx2qg0g3gf6mxdb63lpq"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d71d6d73ccab..522a81c0d792 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -706,7 +706,7 @@ in consul-ui = callPackage ../servers/consul/ui.nix { }; - consul-alerts = goPackages.consul-alerts.bin // { outputs = [ "bin" ]; }; + consul-alerts = callPackage ../servers/monitoring/consul-alerts { }; consul-template = goPackages.consul-template.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 9cd4f7639742..f0bfad95df45 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -513,26 +513,6 @@ let sha256 = "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0"; }; - consul-alerts = buildFromGitHub { - rev = "v0.3.3"; - owner = "AcalephStorage"; - repo = "consul-alerts"; - sha256 = "1w0mb20w1yazyh84sa30bsw271c5nm7lsx2qg0g3gf6mxdb63lpq"; - - renameImports = '' - # Remove all references to included dependency store - rm -rf go/src/github.com/AcalephStorage/consul-alerts/Godeps - govers -d -m github.com/AcalephStorage/consul-alerts/Godeps/_workspace/src/ "" - ''; - - # Temporary fix for name change - postPatch = '' - sed -i 's,SetApiKey,SetAPIKey,' notifier/opsgenie-notifier.go - ''; - - buildInputs = [ logrus docopt-go hipchat-go gopherduty consul-api opsgenie-go-sdk influxdb8-client ]; - }; - consul-migrate = buildFromGitHub { rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; version = "2015-05-19"; From 9e273d5b29290a26ce28554582ca45ab80cea9fa Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 22:31:11 +0200 Subject: [PATCH 441/520] consul--template: extracted from goPackages --- pkgs/tools/system/consul-template/default.nix | 18 ++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 21 ------------------- 3 files changed, 19 insertions(+), 22 deletions(-) create mode 100644 pkgs/tools/system/consul-template/default.nix diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix new file mode 100644 index 000000000000..989ad2b51a18 --- /dev/null +++ b/pkgs/tools/system/consul-template/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "consul-template-${version}"; + version = "0.14.0"; + rev = "v${version}"; + + goPackagePath = "github.com/hashicorp/consul-template"; + + src = fetchgit { + inherit rev; + url = "https://github.com/hashicorp/consul-template"; + sha256 = "15zsax44g3dwjmmm4fpb54mvsjvjf3b6g3ijskgipvhcy0d3j938"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 522a81c0d792..271e1eec2dda 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -708,7 +708,7 @@ in consul-alerts = callPackage ../servers/monitoring/consul-alerts { }; - consul-template = goPackages.consul-template.bin // { outputs = [ "bin" ]; }; + consul-template = callPackage ../tools/system/consul-template { }; corosync = callPackage ../servers/corosync { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index f0bfad95df45..a1085ad0497e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -522,27 +522,6 @@ let buildInputs = [ raft raft-boltdb raft-mdb ]; }; - consul-template = buildGoPackage rec { - rev = "v0.14.0"; - name = "consul-template-${rev}"; - goPackagePath = "github.com/hashicorp/consul-template"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "consul-template"; - sha256 = "15zsax44g3dwjmmm4fpb54mvsjvjf3b6g3ijskgipvhcy0d3j938"; - }; - - # We just want the consul api not all of consul and vault - extraSrcs = [ - { inherit (consul) src goPackagePath; } - { inherit (vault) src goPackagePath; } - ]; - - buildInputs = [ go-multierror go-syslog hcl logutils mapstructure pkgs.zip ]; - }; - context = buildGoPackage rec { rev = "215affda49addc4c8ef7e2534915df2c8c35c6cd"; name = "config-${stdenv.lib.strings.substring 0 7 rev}"; From b70c24f1f23f1f0ecb20cac9e5b8145d9705f73f Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 23:13:30 +0200 Subject: [PATCH 442/520] vault: extracted from goPackages --- pkgs/tools/security/vault/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 23 ----------------------- 3 files changed, 19 insertions(+), 24 deletions(-) create mode 100644 pkgs/tools/security/vault/default.nix diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix new file mode 100644 index 000000000000..18f33da8ea10 --- /dev/null +++ b/pkgs/tools/security/vault/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "vault-${version}"; + version = "0.5.2"; + rev = "v${version}"; + + goPackagePath = "github.com/hashicorp/vault"; + + src = fetchgit { + inherit rev; + url = "https://github.com/hashicorp/vault"; + sha256 = "085rk5i480wdlkn2p14yxi8zgsc11595nkkda1i77c4vjkllbkdy"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 271e1eec2dda..b9ceacfb948d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16845,7 +16845,7 @@ in utf8proc = callPackage ../development/libraries/utf8proc { }; - vault = goPackages.vault.bin // { outputs = [ "bin" ]; }; + vault = callPackage ../tools/security/vault { }; vbam = callPackage ../misc/emulators/vbam {}; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a1085ad0497e..ff1ca2f853e5 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3494,29 +3494,6 @@ let sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; }; - vault = buildFromGitHub { - rev = "v0.5.2"; - owner = "hashicorp"; - repo = "vault"; - sha256 = "085rk5i480wdlkn2p14yxi8zgsc11595nkkda1i77c4vjkllbkdy"; - - #postPatch = '' - # grep -r '/gen/' | awk -F: '{print $1}' | xargs sed -i 's,/gen/,/apis/,g' - #''; - - # We just want the consul api not all of consul - extraSrcs = [ - { inherit (consul) src goPackagePath; } - ]; - - buildInputs = [ - armon.go-metrics go-radix aws-sdk-go go-etcd structs ldap mysql gocql - golang-lru go-github hashicorp.aws-sdk-go errwrap go-multierror go-syslog - hcl logutils osext pq cli copystructure go-homedir mapstructure - reflectwalk columnize go-zookeeper crypto net oauth2 - ]; - }; - vcs = buildFromGitHub { rev = "1.4.0"; owner = "Masterminds"; From 24e9449450f63dc67abde3356c1b715ca2a5ae71 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sat, 4 Jun 2016 23:24:19 +0200 Subject: [PATCH 443/520] consul: FIX consul-ui reference --- pkgs/servers/consul/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix index d5b4e12697e1..b98160c6be79 100644 --- a/pkgs/servers/consul/default.nix +++ b/pkgs/servers/consul/default.nix @@ -1,5 +1,5 @@ # This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, go16Packages, consul-ui, fetchFromGitHub }: with go16Packages; @@ -10,12 +10,13 @@ buildGoPackage rec { goPackagePath = "github.com/hashicorp/consul"; - src = fetchgit { + src = fetchFromGitHub { + owner = "hashicorp"; + repo = "consul"; inherit rev; - url = "https://github.com/hashicorp/consul"; sha256 = "0p6m2rl0d30w418n4fzc4vymqs3vzfa468czmy4znkjmxdl5vp5a"; }; # Keep consul.ui for backward compatability - passthru.ui = pkgs.consul-ui; + passthru.ui = consul-ui; } From 06327d22d68749e03adcb39e731a1027b8867b39 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 10:02:21 +0200 Subject: [PATCH 444/520] syncthing012: extracted from goPackages --- .../networking/syncthing012/default.nix | 27 ++++++ .../networking/syncthing012/deps.json | 21 +++++ pkgs/development/go-modules/libs.json | 90 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 43 --------- 5 files changed, 139 insertions(+), 44 deletions(-) create mode 100644 pkgs/applications/networking/syncthing012/default.nix create mode 100644 pkgs/applications/networking/syncthing012/deps.json diff --git a/pkgs/applications/networking/syncthing012/default.nix b/pkgs/applications/networking/syncthing012/default.nix new file mode 100644 index 000000000000..dcf5e30551c1 --- /dev/null +++ b/pkgs/applications/networking/syncthing012/default.nix @@ -0,0 +1,27 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "syncthing-${version}"; + version = "0.12.15"; + rev = "v${version}"; + + buildFlags = "--tags noupgrade,release"; + + goPackagePath = "github.com/syncthing/syncthing"; + + src = fetchgit { + inherit rev; + url = "https://github.com/syncthing/syncthing"; + sha256 = "108w7gvm3nbbsgp3h5p84fj4ba0siaz932i7yyryly486gzvpm43"; + }; + + goDeps = ./deps.json; + + postPatch = '' + # Mostly a cosmetic change + sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go + ''; +} diff --git a/pkgs/applications/networking/syncthing012/deps.json b/pkgs/applications/networking/syncthing012/deps.json new file mode 100644 index 000000000000..75e10397017a --- /dev/null +++ b/pkgs/applications/networking/syncthing012/deps.json @@ -0,0 +1,21 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/bkaradzic/go-lz4", + "github.com/calmh/luhn", + "golang.org/x/text", + "github.com/kardianos/osext", + "github.com/vitrun/qart", + "github.com/calmh/du", + "github.com/calmh/xdr", + "github.com/juju/ratelimit", + "github.com/thejerf/suture", + "github.com/golang/snappy", + "github.com/rcrowley/go-metrics", + "github.com/syndtr/goleveldb", + "golang.org/x/crypto", + "golang.org/x/net" + ] + } +] diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index ca1a5e495c7f..b0686f3205a3 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1006,5 +1006,95 @@ "rev": "535138d7bcd717d6531c701ef5933d98b1866257", "sha256": "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v" } + }, + { + "goPackagePath": "github.com/bkaradzic/go-lz4", + "fetch": { + "type": "git", + "url": "https://github.com/bkaradzic/go-lz4", + "rev": "74ddf82598bc4745b965729e9c6a463bedd33049", + "sha256": "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1" + } + }, + { + "goPackagePath": "github.com/calmh/luhn", + "fetch": { + "type": "git", + "url": "https://github.com/calmh/luhn", + "rev": "0c8388ff95fa92d4094011e5a04fc99dea3d1632", + "sha256": "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs" + } + }, + { + "goPackagePath": "golang.org/x/text", + "fetch": { + "type": "git", + "url": "https://go.googlesource.com/text", + "rev": "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e", + "sha256": "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14" + } + }, + { + "goPackagePath": "github.com/vitrun/qart", + "fetch": { + "type": "git", + "url": "https://github.com/vitrun/qart", + "rev": "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0", + "sha256": "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8" + } + }, + { + "goPackagePath": "github.com/calmh/du", + "fetch": { + "type": "git", + "url": "https://github.com/calmh/du", + "rev": "3c0690cca16228b97741327b1b6781397afbdb24", + "sha256": "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa" + } + }, + { + "goPackagePath": "github.com/calmh/xdr", + "fetch": { + "type": "git", + "url": "https://github.com/calmh/xdr", + "rev": "e467b5aeb65ca8516fb3925c84991bf1d7cc935e", + "sha256": "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra" + } + }, + { + "goPackagePath": "github.com/juju/ratelimit", + "fetch": { + "type": "git", + "url": "https://github.com/juju/ratelimit", + "rev": "772f5c38e468398c4511514f4f6aa9a4185bc0a0", + "sha256": "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p" + } + }, + { + "goPackagePath": "github.com/thejerf/suture", + "fetch": { + "type": "git", + "url": "https://github.com/thejerf/suture", + "rev": "99c1f2d613756768fc4299acd9dc621e11ed3fd7", + "sha256": "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4" + } + }, + { + "goPackagePath": "github.com/golang/snappy", + "fetch": { + "type": "git", + "url": "https://github.com/golang/snappy", + "rev": "723cc1e459b8eea2dea4583200fd60757d40097a", + "sha256": "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h" + } + }, + { + "goPackagePath": "github.com/syndtr/goleveldb", + "fetch": { + "type": "git", + "url": "https://github.com/syndtr/goleveldb", + "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", + "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" + } } ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b9ceacfb948d..801a8d94d70d 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14282,7 +14282,7 @@ in syncthing = callPackage ../applications/networking/syncthing { }; - syncthing012 = goPackages.syncthing012.bin // { outputs = [ "bin" ]; }; + syncthing012 = callPackage ../applications/networking/syncthing012 { }; # linux only by now synergy = callPackage ../applications/misc/synergy { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index ff1ca2f853e5..8ac969a88772 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3084,14 +3084,6 @@ let sha256 = "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v"; }; - relaysrv = buildFromGitHub rec { - rev = "7fe1fdd8c751df165ea825bc8d3e895f118bb236"; - owner = "syncthing"; - repo = "relaysrv"; - sha256 = "0qy14pa0z2dq5mix5ylv2raabwxqwj31g5kkz905wzki6d4j5lnp"; - buildInputs = [ xdr syncthing-protocol011 ratelimit syncthing-lib ]; - }; - reflectwalk = buildFromGitHub { rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; owner = "mitchellh"; @@ -3311,41 +3303,6 @@ let sha256 = "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4"; }; - syncthing012 = buildFromGitHub rec { - version = "0.12.25"; - rev = "v${version}"; - owner = "syncthing"; - repo = "syncthing"; - sha256 = "108w7gvm3nbbsgp3h5p84fj4ba0siaz932i7yyryly486gzvpm43"; - buildFlags = [ "-tags noupgrade,release" ]; - disabled = isGo14; - buildInputs = [ - go-lz4 du luhn xdr snappy ratelimit osext - goleveldb suture qart crypto net text rcrowley.go-metrics - ]; - postPatch = '' - # Mostly a cosmetic change - sed -i 's,unknown-dev,${version},g' cmd/syncthing/main.go - ''; - }; - - syncthing-lib = buildFromGitHub { - inherit (syncthing012) rev owner repo sha256; - subPackages = [ "lib/sync" ]; - propagatedBuildInputs = syncthing012.buildInputs; - }; - - syncthing-protocol = buildFromGitHub { - inherit (syncthing012) rev owner repo sha256; - subPackages = [ "lib/protocol" ]; - propagatedBuildInputs = [ - go-lz4 - logger - luhn - xdr - text ]; - }; - syncthing-protocol011 = buildFromGitHub { rev = "84365882de255d2204d0eeda8dee288082a27f98"; version = "2015-08-28"; From 50174691971395cc0ea779a84a1acf3f4ae7103e Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 10:18:42 +0200 Subject: [PATCH 445/520] xmpp-client: extracted from goPackages --- .../xmpp-client/default.nix | 27 +++++++++++++++++++ .../instant-messengers/xmpp-client/deps.json | 9 +++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 17 ------------ 4 files changed, 37 insertions(+), 18 deletions(-) create mode 100644 pkgs/applications/networking/instant-messengers/xmpp-client/default.nix create mode 100644 pkgs/applications/networking/instant-messengers/xmpp-client/deps.json diff --git a/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix b/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix new file mode 100644 index 000000000000..6ce338d3a45e --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix @@ -0,0 +1,27 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "xmpp-client-${version}"; + version = "20160110-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; + + goPackagePath = "github.com/agl/xmpp-client"; + + src = fetchgit { + inherit rev; + url = "https://github.com/agl/xmpp-client"; + sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; + }; + + goDeps = ./deps.json; + + meta = with stdenv.lib; { + description = "An XMPP client with OTR support"; + homepage = https://github.com/agl/xmpp-client; + license = licenses.bsd3; + maintainers = with maintainers; [ codsl ]; + }; +} diff --git a/pkgs/applications/networking/instant-messengers/xmpp-client/deps.json b/pkgs/applications/networking/instant-messengers/xmpp-client/deps.json new file mode 100644 index 000000000000..a5fd7fc3aa7c --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/xmpp-client/deps.json @@ -0,0 +1,9 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "golang.org/x/crypto", + "golang.org/x/net" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 801a8d94d70d..d4d89470092c 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14867,7 +14867,7 @@ in GConf2 = gnome2.GConf; }; - xmpp-client = goPackages.xmpp-client.bin // { outputs = [ "bin" ]; }; + xmpp-client = callPackage ../applications/networking/instant-messengers/xmpp-client { }; libxpdf = callPackage ../applications/misc/xpdf/libxpdf.nix { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8ac969a88772..9f7bc30f688e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3490,23 +3490,6 @@ let sha256 = "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99"; }; - xmpp-client = buildFromGitHub { - rev = "525bd26cf5f56ec5aee99464714fd1d019c119ff"; - version = "2016-01-10"; - owner = "agl"; - repo = "xmpp-client"; - sha256 = "0a1r08zs723ikcskmn6ylkdi3frcd0i0lkx30i9q39ilf734v253"; - disabled = isGo14; - buildInputs = [ crypto net ]; - - meta = with stdenv.lib; { - description = "An XMPP client with OTR support"; - homepage = https://github.com/agl/xmpp-client; - license = licenses.bsd3; - maintainers = with maintainers; [ codsl ]; - }; - }; - yaml-v1 = buildGoPackage rec { name = "yaml-v1-${version}"; version = "git-2015-05-01"; From 4ce39be8ea25941df935322b514a8c67e7777f9f Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 10:43:36 +0200 Subject: [PATCH 446/520] caddy: extracted from goPackages --- pkgs/development/go-modules/libs.json | 81 +++++++++++++++++++++++++++ pkgs/servers/caddy/default.nix | 20 +++++++ pkgs/servers/caddy/deps.json | 23 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 13 ----- 5 files changed, 125 insertions(+), 14 deletions(-) create mode 100644 pkgs/servers/caddy/default.nix create mode 100644 pkgs/servers/caddy/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index b0686f3205a3..eed4c0e7121c 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1096,5 +1096,86 @@ "rev": "1a9d62f03ea92815b46fcaab357cfd4df264b1a0", "sha256": "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb" } + }, + { + "goPackagePath": "github.com/flynn/go-shlex", + "fetch": { + "type": "git", + "url": "https://github.com/flynn/go-shlex", + "rev": "3f9db97f856818214da2e1057f8ad84803971cff", + "sha256": "1j743lysygkpa2s2gii2xr32j7bxgc15zv4113b0q9jhn676ysia" + } + }, + { + "goPackagePath": "github.com/xenolf/lego", + "fetch": { + "type": "git", + "url": "https://github.com/xenolf/lego", + "rev": "ca19a90028e242e878585941c2a27c8f3b3efc25", + "sha256": "1zkcsbdzbmfzk3kqmcj9l13li8sz228xhrw2wj3ab4a0w6drbw3x" + } + }, + { + "goPackagePath": "gopkg.in/natefinch/lumberjack.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/natefinch/lumberjack.v2", + "rev": "514cbda263a734ae8caac038dadf05f8f3f9f738", + "sha256": "1v92v8vkip36l2fs6l5dpp655151hrijjc781cif658r8nf7xr82" + } + }, + { + "goPackagePath": "github.com/shurcooL/sanitized_anchor_name", + "fetch": { + "type": "git", + "url": "https://github.com/shurcooL/sanitized_anchor_name", + "rev": "10ef21a441db47d8b13ebcc5fd2310f636973c77", + "sha256": "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01" + } + }, + { + "goPackagePath": "gopkg.in/square/go-jose.v1", + "fetch": { + "type": "git", + "url": "https://gopkg.in/square/go-jose.v1", + "rev": "40d457b439244b546f023d056628e5184136899b", + "sha256": "0asa1kl1qbx0cyayk44jhxxff0awpkwiw6va7yzrzjzhfc5kvg7p" + } + }, + { + "goPackagePath": "github.com/mholt/archiver", + "fetch": { + "type": "git", + "url": "https://github.com/mholt/archiver", + "rev": "85f054813ed511646b0ce5e047697e0651b8e1a4", + "sha256": "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly" + } + }, + { + "goPackagePath": "github.com/dustin/go-humanize", + "fetch": { + "type": "git", + "url": "https://github.com/dustin/go-humanize", + "rev": "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0", + "sha256": "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0" + } + }, + { + "goPackagePath": "github.com/jimstudt/http-authentication", + "fetch": { + "type": "git", + "url": "https://github.com/jimstudt/http-authentication", + "rev": "3eca13d6893afd7ecabe15f4445f5d2872a1b012", + "sha256": "1drw3bhrxpjzwryqz9nq5s0yyjqyd42iym3bh1zjs5qsh401cq08" + } + }, + { + "goPackagePath": "github.com/russross/blackfriday", + "fetch": { + "type": "git", + "url": "https://github.com/russross/blackfriday", + "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", + "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" + } } ] diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix new file mode 100644 index 000000000000..8ae26640f289 --- /dev/null +++ b/pkgs/servers/caddy/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "caddy-${version}"; + version = "0.8.3"; + rev = "e2234497b79603388b58ba226abb157aa4aaf065"; + + goPackagePath = "github.com/mholt/caddy"; + + src = fetchgit { + inherit rev; + url = "https://github.com/mholt/caddy"; + sha256 = "1snijkbz02yr7wij7bcmrj4257709sbklb3nhb5qmy95b9ssffm6"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/servers/caddy/deps.json b/pkgs/servers/caddy/deps.json new file mode 100644 index 000000000000..dfe81f20ba8d --- /dev/null +++ b/pkgs/servers/caddy/deps.json @@ -0,0 +1,23 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/BurntSushi/toml", + "github.com/flynn/go-shlex", + "github.com/hashicorp/go-syslog", + "gopkg.in/yaml.v2", + "github.com/xenolf/lego", + "golang.org/x/crypto", + "gopkg.in/natefinch/lumberjack.v2", + "github.com/shurcooL/sanitized_anchor_name", + "gopkg.in/square/go-jose.v1", + "github.com/mholt/archiver", + "github.com/dustin/go-humanize", + "github.com/gorilla/websocket", + "github.com/jimstudt/http-authentication", + "github.com/miekg/dns", + "golang.org/x/net", + "github.com/russross/blackfriday" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d4d89470092c..b281ac10a2de 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -666,7 +666,7 @@ in cabal2nix = self.haskellPackages.cabal2nix; - caddy = goPackages.caddy.bin // { outputs = [ "bin" ]; }; + caddy = callPackage ../servers/caddy { }; capstone = callPackage ../development/libraries/capstone { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 9f7bc30f688e..a2d3dc38ce37 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -397,19 +397,6 @@ let propagatedBuildInputs = [ panicwrap revel ]; }; - caddy = buildFromGitHub { - rev = "e2234497b79603388b58ba226abb157aa4aaf065"; - version = "v0.8.3"; - owner = "mholt"; - repo = "caddy"; - sha256 = "1snijkbz02yr7wij7bcmrj4257709sbklb3nhb5qmy95b9ssffm6"; - buildInputs = [ - acme archiver blackfriday crypto go-humanize go-shlex go-syslog - http-authentication lumberjack-v2 toml websocket yaml-v2 - ]; - disabled = isGo14 || isGo15; - }; - cascadia = buildGoPackage rec { rev = "54abbbf07a45a3ef346ebe903e0715d9a3c19352"; #master name = "cascadia-${stdenv.lib.strings.substring 0 7 rev}"; From 826ff3efc2dc78da1d8be355b354ef2a0e59d183 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 10:53:30 +0200 Subject: [PATCH 447/520] glide: extracted from goPackages --- pkgs/development/tools/glide/default.nix | 18 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 8 -------- 3 files changed, 19 insertions(+), 9 deletions(-) create mode 100644 pkgs/development/tools/glide/default.nix diff --git a/pkgs/development/tools/glide/default.nix b/pkgs/development/tools/glide/default.nix new file mode 100644 index 000000000000..cc63921976f5 --- /dev/null +++ b/pkgs/development/tools/glide/default.nix @@ -0,0 +1,18 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "glide-${version}"; + version = "0.10.2"; + rev = "${version}"; + + goPackagePath = "github.com/Masterminds/glide"; + + src = fetchgit { + inherit rev; + url = "https://github.com/Masterminds/glide"; + sha256 = "1qb2n5i04gabb2snnwfr8wv4ypcp1pdzvgga62m9xkhk4p2w6pwl"; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index b281ac10a2de..23af18ea0760 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -811,7 +811,7 @@ in gist = callPackage ../tools/text/gist { }; - glide = goPackages.glide.bin // { outputs = [ "bin" ]; }; + glide = callPackage ../development/tools/glide { }; gmic = callPackage ../tools/graphics/gmic { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a2d3dc38ce37..0bd9f10f9dd6 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -866,14 +866,6 @@ let sha256 = "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm"; }; - glide = buildFromGitHub { - rev = "0.10.2"; - owner = "Masterminds"; - repo = "glide"; - sha256 = "1qb2n5i04gabb2snnwfr8wv4ypcp1pdzvgga62m9xkhk4p2w6pwl"; - buildInputs = [ cookoo cli-go go-gypsy vcs ]; - }; - gls = buildFromGitHub { rev = "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690"; owner = "jtolds"; From e89a086f06a2f15a2c476d48b25288936466152e Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 11:16:58 +0200 Subject: [PATCH 448/520] terraform: extracted from goPackages --- .../networking/cluster/terraform/default.nix | 27 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 17 ------------ 3 files changed, 28 insertions(+), 18 deletions(-) create mode 100644 pkgs/applications/networking/cluster/terraform/default.nix diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix new file mode 100644 index 000000000000..cacfaf15a21d --- /dev/null +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -0,0 +1,27 @@ +# This file was generated by go2nix. +{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with go16Packages; + +buildGoPackage rec { + name = "terraform-${version}"; + version = "0.6.15"; + rev = "v${version}"; + + goPackagePath = "github.com/hashicorp/terraform"; + + src = fetchgit { + inherit rev; + url = "https://github.com/hashicorp/terraform"; + sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; + }; + + postInstall = '' + # prefix all the plugins with "terraform-" + for i in $bin/bin/*; do + if [[ ! $(basename $i) =~ terraform* ]]; then + mv -v $i $bin/bin/terraform-$(basename $i); + fi + done + ''; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 23af18ea0760..a9d29823f499 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -16763,7 +16763,7 @@ in sqsh = callPackage ../development/tools/sqsh { }; - terraform = goPackages.terraform.bin // { outputs = [ "bin" ]; }; + terraform = callPackage ../applications/networking/cluster/terraform { }; tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 0bd9f10f9dd6..a7699c282729 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3330,23 +3330,6 @@ let subPackages = [ "./" ]; # prevent building _demos }; - terraform = buildFromGitHub { - rev = "v0.6.15"; - owner = "hashicorp"; - repo = "terraform"; - disabled = isGo14 || isGo15; - sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; - - postInstall = '' - # prefix all the plugins with "terraform-" - for i in $bin/bin/*; do - if [[ ! $(basename $i) =~ terraform* ]]; then - mv -v $i $bin/bin/terraform-$(basename $i); - fi - done - ''; - }; - testify = buildGoPackage rec { rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; From 03feac7937c7c2ed89e8dfde8f13a0fa442dca2c Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 11:41:41 +0200 Subject: [PATCH 449/520] pond: extracted from goPackages --- .../instant-messengers/pond/default.nix | 35 ++++++++++++++++++ .../instant-messengers/pond/deps.json | 12 +++++++ pkgs/development/go-modules/libs.json | 9 +++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 36 ------------------- 5 files changed, 57 insertions(+), 37 deletions(-) create mode 100644 pkgs/applications/networking/instant-messengers/pond/default.nix create mode 100644 pkgs/applications/networking/instant-messengers/pond/deps.json diff --git a/pkgs/applications/networking/instant-messengers/pond/default.nix b/pkgs/applications/networking/instant-messengers/pond/default.nix new file mode 100644 index 000000000000..f40bf77bb71c --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pond/default.nix @@ -0,0 +1,35 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, trousers, dclxvi, wrapGAppsHook, pkgconfig, gtk3, gtkspell3, + fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; +let + isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; + gui = true; # Might be implemented with nixpkgs config. +in +buildGoPackage rec { + name = "pond-${version}"; + version = "20150830-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; + + goPackagePath = "github.com/agl/pond"; + + src = fetchgit { + inherit rev; + url = "https://github.com/agl/pond"; + sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; + }; + + goDeps = ./deps.json; + + buildInputs = [ trousers pkgconfig gtk3 gtkspell3 ] + ++ stdenv.lib.optional isx86_64 dclxvi + ++ stdenv.lib.optionals gui [ wrapGAppsHook ]; + buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui"; + excludedPackages = "\\(appengine\\|bn256cgo\\)"; + postPatch = stdenv.lib.optionalString isx86_64 '' + grep -r 'bn256' | awk -F: '{print $1}' | xargs sed -i \ + -e "s,golang.org/x/crypto/bn256,github.com/agl/pond/bn256cgo,g" \ + -e "s,bn256\.,bn256cgo.,g" + ''; +} diff --git a/pkgs/applications/networking/instant-messengers/pond/deps.json b/pkgs/applications/networking/instant-messengers/pond/deps.json new file mode 100644 index 000000000000..53f48df3b553 --- /dev/null +++ b/pkgs/applications/networking/instant-messengers/pond/deps.json @@ -0,0 +1,12 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "golang.org/x/net", + "github.com/golang/protobuf", + "github.com/agl/ed25519", + "golang.org/x/crypto", + "github.com/agl/go-gtk" + ] + } +] diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index eed4c0e7121c..81ceb71f9351 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1177,5 +1177,14 @@ "rev": "d18b67ae0afd61dae240896eae1785f00709aa31", "sha256": "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf" } + }, + { + "goPackagePath": "github.com/agl/go-gtk", + "fetch": { + "type": "git", + "url": "https://github.com/agl/go-gtk", + "rev": "91c1edb38c241d73129e6b098ca1c9fa83abfc15", + "sha256": "156ixlhakpqgyp35rsvmndrqz8aggv5bcmzg9ynpri3b9j6kim4d" + } } ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a9d29823f499..3d37992ed544 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13861,7 +13861,7 @@ in pommed = callPackage ../os-specific/linux/pommed {}; - pond = goPackages.pond.bin // { outputs = [ "bin" ]; }; + pond = callPackage ../applications/networking/instant-messengers/pond { }; ponymix = callPackage ../applications/audio/ponymix { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a7699c282729..f1f8e33c59bf 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1400,21 +1400,6 @@ let propagatedBuildInputs = [ go-querystring ]; }; - go-gtk-agl = buildFromGitHub { - rev = "6937b8d28cf70d583346220b966074cfd3a2e233"; - owner = "agl"; - repo = "go-gtk"; - sha256 = "0jnhsv7ypyhprpy0fndah22v2pbbavr3db6f9wxl1vf34qkns3p4"; - # Examples require many go libs, and gtksourceview seems ready only for - # gtk2 - preConfigure = '' - rm -R example gtksourceview - ''; - nativeBuildInputs = [ pkgs.pkgconfig ]; - propagatedBuildInputs = [ pkgs.gtk3 ]; - buildInputs = [ pkgs.gtkspell3 ]; - }; - go-gypsy = buildFromGitHub { rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; owner = "kylelemons"; @@ -2537,27 +2522,6 @@ let sha256 = "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq"; }; - pond = let - isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; - gui = true; # Might be implemented with nixpkgs config. - in buildFromGitHub { - rev = "bce6e0dc61803c23699c749e29a83f81da3c41b2"; - owner = "agl"; - repo = "pond"; - sha256 = "1dmgbg4ak3jkbgmxh0lr4hga1nl623mh7pvsgby1rxl4ivbzwkh4"; - - buildInputs = [ net crypto protobuf ed25519 pkgs.trousers ] - ++ stdenv.lib.optional isx86_64 pkgs.dclxvi - ++ stdenv.lib.optionals gui [ go-gtk-agl pkgs.wrapGAppsHook ]; - buildFlags = stdenv.lib.optionalString (!gui) "-tags nogui"; - excludedPackages = "\\(appengine\\|bn256cgo\\)"; - postPatch = stdenv.lib.optionalString isx86_64 '' - grep -r 'bn256' | awk -F: '{print $1}' | xargs sed -i \ - -e "s,golang.org/x/crypto/bn256,github.com/agl/pond/bn256cgo,g" \ - -e "s,bn256\.,bn256cgo.,g" - ''; - }; - pongo2 = buildFromGitHub { rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; version = "2014-10-27"; From a95e0b9385b88e0549a16b1b244de45b77e3e457 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 13:34:18 +0200 Subject: [PATCH 450/520] prometheus: extracted from goPackages --- .../servers/monitoring/prometheus/default.nix | 48 +++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 51 ------------------- 3 files changed, 49 insertions(+), 52 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/default.nix diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix new file mode 100644 index 000000000000..d6b82c38d01e --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -0,0 +1,48 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "prometheus-${version}"; + version = "0.17.0"; + rev = "${version}"; + + goPackagePath = "github.com/prometheus/prometheus"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/prometheus"; + sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; + }; + + docheck = true; + + preBuild = '' + export GO15VENDOREXPERIMENT=1 + ''; + + buildFlagsArray = let t = "${goPackagePath}/version"; in '' + -ldflags= + -X ${t}.Version=${version} + -X ${t}.Revision=unknown + -X ${t}.Branch=unknown + -X ${t}.BuildUser=nix@nixpkgs + -X ${t}.BuildDate=unknown + -X ${t}.GoVersion=${stdenv.lib.getVersion go} + ''; + + preInstall = '' + mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus" + cp -a $src/documentation/* $bin/share/doc/prometheus + cp -a $src/console_libraries $src/consoles $bin/etc/prometheus + ''; + + meta = with stdenv.lib; { + description = "Service monitoring system and time series database"; + homepage = http://prometheus.io; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3d37992ed544..1633c90f8370 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10178,7 +10178,7 @@ in postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { }; prom2json = goPackages.prometheus.prom2json.bin // { outputs = [ "bin" ]; }; - prometheus = goPackages.prometheus.prometheus.bin // { outputs = [ "bin" ]; }; + prometheus = callPackage ../servers/monitoring/prometheus { }; prometheus-alertmanager = goPackages.prometheus.alertmanager.bin // { outputs = [ "bin" ]; }; prometheus-cli = goPackages.prometheus.cli.bin // { outputs = [ "bin" ]; }; prometheus-collectd-exporter = goPackages.prometheus.collectd-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index f1f8e33c59bf..a3a1aaf33714 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2788,57 +2788,6 @@ let }; }; - prometheus.prometheus = buildFromGitHub rec { - rev = "0.17.0"; - owner = "prometheus"; - repo = "prometheus"; - sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; - - buildInputs = [ - # consul - # dns - # fsnotify.v1 - # go-zookeeper - # goleveldb - # httprouter - # logrus - # net - # prometheus.client_golang - # prometheus.log - # yaml-v2 - ]; - - docheck = true; - - preBuild = '' - export GO15VENDOREXPERIMENT=1 - ''; - - buildFlagsArray = let t = "github.com/${owner}/${repo}/version"; in '' - -ldflags= - -X ${t}.Version=${rev} - -X ${t}.Revision=unknown - -X ${t}.Branch=unknown - -X ${t}.BuildUser=nix@nixpkgs - -X ${t}.BuildDate=unknown - -X ${t}.GoVersion=${stdenv.lib.getVersion go} - ''; - - preInstall = '' - mkdir -p "$bin/share/doc/prometheus" "$bin/etc/prometheus" - cp -a $src/documentation/* $bin/share/doc/prometheus - cp -a $src/console_libraries $src/consoles $bin/etc/prometheus - ''; - - meta = with stdenv.lib; { - description = "Service monitoring system and time series database"; - homepage = http://prometheus.io; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.pushgateway = buildFromGitHub rec { rev = "0.1.1"; owner = "prometheus"; From 4bf5a93f2dee5628dc5a9a456464aec13c20f438 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 13:44:04 +0200 Subject: [PATCH 451/520] prom2json: extracted from goPackages --- pkgs/development/go-modules/libs.json | 4 +-- .../monitoring/prometheus/prom2json.nix | 28 +++++++++++++++++++ .../monitoring/prometheus/prom2json_deps.json | 11 ++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 21 -------------- 5 files changed, 42 insertions(+), 24 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/prom2json.nix create mode 100644 pkgs/servers/monitoring/prometheus/prom2json_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 81ceb71f9351..d2564c0be3a1 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -427,8 +427,8 @@ "fetch": { "type": "git", "url": "https://github.com/prometheus/client_golang", - "rev": "90c15b5efa0dc32a7d259234e02ac9a99e6d3b82", - "sha256": "11hbll3x7hm69a7b0pwnhz5diligjy5yykdkqz2rsvs8s1k796zm" + "rev": "6dbab8106ed3ed77359ac85d9cf08e30290df864", + "sha256": "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna" } }, { diff --git a/pkgs/servers/monitoring/prometheus/prom2json.nix b/pkgs/servers/monitoring/prometheus/prom2json.nix new file mode 100644 index 000000000000..512cd4ca22ca --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/prom2json.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "prom2json-${version}"; + version = "0.1.0"; + rev = "${version}"; + + goPackagePath = "github.com/prometheus/prom2json"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/prom2json"; + sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl"; + }; + + goDeps = ./prom2json_deps.json; + + meta = with stdenv.lib; { + description = "Tool to scrape a Prometheus client and dump the result as JSON"; + homepage = https://github.com/prometheus/prom2json; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/prom2json_deps.json b/pkgs/servers/monitoring/prometheus/prom2json_deps.json new file mode 100644 index 000000000000..a8569d8a25f8 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/prom2json_deps.json @@ -0,0 +1,11 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 1633c90f8370..fdf9c1f88b7a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10177,7 +10177,7 @@ in postgresql_jdbc = callPackage ../servers/sql/postgresql/jdbc { }; - prom2json = goPackages.prometheus.prom2json.bin // { outputs = [ "bin" ]; }; + prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { }; prometheus = callPackage ../servers/monitoring/prometheus { }; prometheus-alertmanager = goPackages.prometheus.alertmanager.bin // { outputs = [ "bin" ]; }; prometheus-cli = goPackages.prometheus.cli.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a3a1aaf33714..427a2c14c449 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2767,27 +2767,6 @@ let sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; }; - prometheus.prom2json = buildFromGitHub { - rev = "0.1.0"; - owner = "prometheus"; - repo = "prom2json"; - sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl"; - - buildInputs = [ - golang_protobuf_extensions - prometheus.client_golang - protobuf - ]; - - meta = with stdenv.lib; { - description = "Tool to scrape a Prometheus client and dump the result as JSON"; - homepage = https://github.com/prometheus/prom2json; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.pushgateway = buildFromGitHub rec { rev = "0.1.1"; owner = "prometheus"; From a6cd1321b9363ec879d4fc0fc76baf4722f11d19 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 13:58:22 +0200 Subject: [PATCH 452/520] prometheus-alertmanager: extracted from goPackages --- .../monitoring/prometheus/alertmanager.nix | 43 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 40 ----------------- 3 files changed, 44 insertions(+), 41 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/alertmanager.nix diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix new file mode 100644 index 000000000000..2bed947aad00 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -0,0 +1,43 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "alertmanager-${version}"; + version = "0.1.0"; + rev = "${version}"; + + goPackagePath = "github.com/prometheus/alertmanager"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/alertmanager"; + sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; + }; + + # Tests exist, but seem to clash with the firewall. + doCheck = false; + + preBuild = '' + export GO15VENDOREXPERIMENT=1 + ''; + + buildFlagsArray = let t = "${goPackagePath}/version"; in '' + -ldflags= + -X ${t}.Version=${version} + -X ${t}.Revision=unknown + -X ${t}.Branch=unknown + -X ${t}.BuildUser=nix@nixpkgs + -X ${t}.BuildDate=unknown + -X ${t}.GoVersion=${stdenv.lib.getVersion go} + ''; + + meta = with stdenv.lib; { + description = "Alert dispatcher for the Prometheus monitoring system"; + homepage = https://github.com/prometheus/alertmanager; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index fdf9c1f88b7a..9858aa453c83 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10179,7 +10179,7 @@ in prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { }; prometheus = callPackage ../servers/monitoring/prometheus { }; - prometheus-alertmanager = goPackages.prometheus.alertmanager.bin // { outputs = [ "bin" ]; }; + prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { }; prometheus-cli = goPackages.prometheus.cli.bin // { outputs = [ "bin" ]; }; prometheus-collectd-exporter = goPackages.prometheus.collectd-exporter.bin // { outputs = [ "bin" ]; }; prometheus-haproxy-exporter = goPackages.prometheus.haproxy-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 427a2c14c449..c1cf3388d073 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2564,46 +2564,6 @@ let propagatedBuildInputs = [ kr.text ]; }; - prometheus.alertmanager = buildFromGitHub rec { - rev = "0.1.0"; - owner = "prometheus"; - repo = "alertmanager"; - sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; - - buildInputs = [ - # fsnotify.v0 - # httprouter - # prometheus.client_golang - # prometheus.log - # pushover - ]; - - # Tests exist, but seem to clash with the firewall. - doCheck = false; - - preBuild = '' - export GO15VENDOREXPERIMENT=1 - ''; - - buildFlagsArray = let t = "github.com/${owner}/${repo}/version"; in '' - -ldflags= - -X ${t}.Version=${rev} - -X ${t}.Revision=unknown - -X ${t}.Branch=unknown - -X ${t}.BuildUser=nix@nixpkgs - -X ${t}.BuildDate=unknown - -X ${t}.GoVersion=${stdenv.lib.getVersion go} - ''; - - meta = with stdenv.lib; { - description = "Alert dispatcher for the Prometheus monitoring system"; - homepage = https://github.com/prometheus/alertmanager; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.client_golang = buildFromGitHub { rev = "0.7.0"; owner = "prometheus"; From 2665cae1f4501ea8f219c188a78f7c44d2878d88 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 14:05:27 +0200 Subject: [PATCH 453/520] prometheus-cli: extracted from goPackages --- pkgs/servers/monitoring/prometheus/cli.nix | 28 +++++++++++++++++++ .../monitoring/prometheus/cli_deps.json | 8 ++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 20 ------------- 4 files changed, 37 insertions(+), 21 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/cli.nix create mode 100644 pkgs/servers/monitoring/prometheus/cli_deps.json diff --git a/pkgs/servers/monitoring/prometheus/cli.nix b/pkgs/servers/monitoring/prometheus/cli.nix new file mode 100644 index 000000000000..5dd7c207f104 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/cli.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "prometheus_cli-${version}"; + version = "0.3.0"; + rev = version; + + goPackagePath = "github.com/prometheus/prometheus_cli"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/prometheus_cli"; + sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn"; + }; + + goDeps = ./cli_deps.json; + + meta = with stdenv.lib; { + description = "Command line tool for querying the Prometheus HTTP API"; + homepage = https://github.com/prometheus/prometheus_cli; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/cli_deps.json b/pkgs/servers/monitoring/prometheus/cli_deps.json new file mode 100644 index 000000000000..506263b51f24 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/cli_deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/prometheus/client_golang" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9858aa453c83..60c17c0be72b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10180,7 +10180,7 @@ in prom2json = callPackage ../servers/monitoring/prometheus/prom2json.nix { }; prometheus = callPackage ../servers/monitoring/prometheus { }; prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { }; - prometheus-cli = goPackages.prometheus.cli.bin // { outputs = [ "bin" ]; }; + prometheus-cli = callPackage ../servers/monitoring/prometheus/cli.nix { }; prometheus-collectd-exporter = goPackages.prometheus.collectd-exporter.bin // { outputs = [ "bin" ]; }; prometheus-haproxy-exporter = goPackages.prometheus.haproxy-exporter.bin // { outputs = [ "bin" ]; }; prometheus-mesos-exporter = goPackages.prometheus.mesos-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index c1cf3388d073..e15da20cf3f9 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2579,26 +2579,6 @@ let ]; }; - prometheus.cli = buildFromGitHub { - rev = "0.3.0"; - owner = "prometheus"; - repo = "prometheus_cli"; - sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn"; - - buildInputs = [ - prometheus.client_model - prometheus.client_golang - ]; - - meta = with stdenv.lib; { - description = "Command line tool for querying the Prometheus HTTP API"; - homepage = https://github.com/prometheus/prometheus_cli; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.client_model = buildFromGitHub { rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; version = "2015-02-12"; From fc9bc9eba5c4017fbaca19c32f021ee5e976d89c Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 14:58:08 +0200 Subject: [PATCH 454/520] goDeps: support for mercurial repos --- pkgs/development/go-modules/generic/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 4f4fa3275175..cc355c6e5d75 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -1,4 +1,4 @@ -{ go, govers, parallel, lib, fetchgit }: +{ go, govers, parallel, lib, fetchgit, fetchhg }: { name, buildInputs ? [], nativeBuildInputs ? [], passthru ? {}, preFixup ? "" @@ -48,7 +48,11 @@ let fetchgit { inherit (goDep.fetch) url rev sha256; } - else {}; + else if goDep.fetch.type == "hg" then + fetchhg { + inherit (goDep.fetch) url rev sha256; + } + else {}; }; importGodeps = { depsFile, filterPackages ? [] }: From a3cf92fdba05742afe26ca1e0bb8bdc056181175 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 14:59:43 +0200 Subject: [PATCH 455/520] prometheus-collectd-exporter: extracted from goPackages --- pkgs/development/go-modules/libs.json | 21 ++++++++++---- .../prometheus/collectd-exporter.nix | 28 +++++++++++++++++++ .../prometheus/collectd-exporter_deps.json | 14 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 ---------- 5 files changed, 58 insertions(+), 22 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/collectd-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/collectd-exporter_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index d2564c0be3a1..5e2e37a858fa 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -400,8 +400,8 @@ "fetch": { "type": "git", "url": "https://github.com/beorn7/perks", - "rev": "3ac7bf7a47d159a033b107610db8a1b6575507a4", - "sha256": "1qc3l4r818xpvrhshh1sisc5lvl9479qspcfcdbivdyh0apah83r" + "rev": "b965b613227fddccbfffe13eae360ed3fa822f8d", + "sha256": "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk" } }, { @@ -418,8 +418,8 @@ "fetch": { "type": "git", "url": "https://github.com/matttproud/golang_protobuf_extensions", - "rev": "d0c3fe89de86839aecf2e0579c40ba3bb336a453", - "sha256": "0jkjgpi1s8l9bdbf14fh8050757jqy36kn1l1hxxlb2fjn1pcg0r" + "rev": "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a", + "sha256": "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj" } }, { @@ -463,8 +463,8 @@ "fetch": { "type": "git", "url": "https://github.com/prometheus/procfs", - "rev": "406e5b7bfd8201a36e2bb5f7bdae0b03380c2ce8", - "sha256": "0yla9hz15pg63394ygs9iiwzsqyv29labl8p424hijwsc9z9nka8" + "rev": "c91d8eefde16bd047416409eb56353ea84a186e4", + "sha256": "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r" } }, { @@ -1186,5 +1186,14 @@ "rev": "91c1edb38c241d73129e6b098ca1c9fa83abfc15", "sha256": "156ixlhakpqgyp35rsvmndrqz8aggv5bcmzg9ynpri3b9j6kim4d" } + }, + { + "goPackagePath": "bitbucket.org/ww/goautoneg", + "fetch": { + "type": "hg", + "url": "bitbucket.org/ww/goautoneg", + "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", + "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix new file mode 100644 index 000000000000..3b22fedfd930 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "collectd-exporter-${version}"; + version = "0.1.0"; + rev = version; + + goPackagePath = "github.com/prometheus/collectd_exporter"; + + src= fetchgit { + inherit rev; + url = "https://github.com/prometheus/collectd_exporter"; + sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; + }; + + 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; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter_deps.json b/pkgs/servers/monitoring/prometheus/collectd-exporter_deps.json new file mode 100644 index 000000000000..ea82d4900ff2 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/collectd-exporter_deps.json @@ -0,0 +1,14 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/prometheus/procfs", + "bitbucket.org/ww/goautoneg", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 60c17c0be72b..41c3f33fbb53 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10181,7 +10181,7 @@ in prometheus = callPackage ../servers/monitoring/prometheus { }; prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { }; prometheus-cli = callPackage ../servers/monitoring/prometheus/cli.nix { }; - prometheus-collectd-exporter = goPackages.prometheus.collectd-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; prometheus-haproxy-exporter = goPackages.prometheus.haproxy-exporter.bin // { outputs = [ "bin" ]; }; prometheus-mesos-exporter = goPackages.prometheus.mesos-exporter.bin // { outputs = [ "bin" ]; }; prometheus-mysqld-exporter = goPackages.prometheus.mysqld-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index e15da20cf3f9..a0f0bf0efc75 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2588,21 +2588,6 @@ let buildInputs = [ protobuf ]; }; - prometheus.collectd-exporter = buildFromGitHub { - rev = "0.1.0"; - owner = "prometheus"; - repo = "collectd_exporter"; - sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; - buildInputs = [ prometheus.client_golang ]; - meta = with stdenv.lib; { - description = "Relay server for exporting metrics from collectd to Prometheus"; - homepage = https://github.com/prometheus/alertmanager; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.haproxy-exporter = buildFromGitHub { rev = "0.4.0"; owner = "prometheus"; From fdebbdb88909a7e004b0262fb9d18791e161633e Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 15:16:50 +0200 Subject: [PATCH 456/520] prometheus-haproxy-exporter: extracted from goPackages --- .../prometheus/haproxy-exporter.nix | 28 +++++++++++++++++++ .../prometheus/haproxy-exporter_deps.json | 14 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 ---------- 4 files changed, 43 insertions(+), 16 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/haproxy-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/haproxy-exporter_deps.json diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix new file mode 100644 index 000000000000..efb5abd9f9f7 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "haproxy_exporter-${version}"; + version = "0.4.0"; + rev = version; + + goPackagePath = "github.com/prometheus/haproxy_exporter"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/haproxy_exporter"; + sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; + }; + + goDeps = ./haproxy-exporter_deps.json; + + meta = with stdenv.lib; { + description = "HAProxy Exporter for the Prometheus monitoring system"; + homepage = https://github.com/prometheus/haproxy_exporter; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter_deps.json b/pkgs/servers/monitoring/prometheus/haproxy-exporter_deps.json new file mode 100644 index 000000000000..20a46eb370cf --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter_deps.json @@ -0,0 +1,14 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/procfs", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "bitbucket.org/ww/goautoneg" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 41c3f33fbb53..ae05d14076e3 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10182,7 +10182,7 @@ in prometheus-alertmanager = callPackage ../servers/monitoring/prometheus/alertmanager.nix { }; prometheus-cli = callPackage ../servers/monitoring/prometheus/cli.nix { }; prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; - prometheus-haproxy-exporter = goPackages.prometheus.haproxy-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; prometheus-mesos-exporter = goPackages.prometheus.mesos-exporter.bin // { outputs = [ "bin" ]; }; prometheus-mysqld-exporter = goPackages.prometheus.mysqld-exporter.bin // { outputs = [ "bin" ]; }; prometheus-nginx-exporter = goPackages.prometheus.nginx-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index a0f0bf0efc75..b221cc2dd04d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2588,21 +2588,6 @@ let buildInputs = [ protobuf ]; }; - prometheus.haproxy-exporter = buildFromGitHub { - rev = "0.4.0"; - owner = "prometheus"; - repo = "haproxy_exporter"; - sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; - buildInputs = [ prometheus.client_golang ]; - meta = with stdenv.lib; { - description = "HAProxy Exporter for the Prometheus monitoring system"; - homepage = https://github.com/prometheus/haproxy_exporter; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.log = buildFromGitHub { rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; version = "2015-05-29"; From 485ad053e05097851c1298af8aa8db0a7845a467 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 15:26:09 +0200 Subject: [PATCH 457/520] prometheus-mesos-exporter: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 ++++++ .../monitoring/prometheus/mesos-exporter.nix | 28 +++++++++++++++++++ .../prometheus/mesos-exporter_deps.json | 16 +++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 27 ------------------ 5 files changed, 54 insertions(+), 28 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/mesos-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/mesos-exporter_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 5e2e37a858fa..68d1283f9e40 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1195,5 +1195,14 @@ "rev": "75cd24fc2f2c2a2088577d12123ddee5f54e0675", "sha256": "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi" } + }, + { + "goPackagePath": "github.com/antonlindstrom/mesos_stats", + "fetch": { + "type": "git", + "url": "https://github.com/antonlindstrom/mesos_stats", + "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", + "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix new file mode 100644 index 000000000000..a06c9671f817 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "mesos_exporter-${version}"; + version = "0.1.0"; + rev = version; + + goPackagePath = "github.com/prometheus/mesos_exporter"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/mesos_exporter"; + sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; + }; + + goDeps = ./mesos-exporter_deps.json; + + meta = with stdenv.lib; { + description = "Export Mesos metrics to Prometheus"; + homepage = https://github.com/prometheus/mesos_exporter; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/mesos-exporter_deps.json b/pkgs/servers/monitoring/prometheus/mesos-exporter_deps.json new file mode 100644 index 000000000000..c250fb0495ee --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mesos-exporter_deps.json @@ -0,0 +1,16 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/golang/glog", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/antonlindstrom/mesos_stats", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/procfs", + "bitbucket.org/ww/goautoneg" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index ae05d14076e3..98344946a2ca 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10183,7 +10183,7 @@ in prometheus-cli = callPackage ../servers/monitoring/prometheus/cli.nix { }; prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; - prometheus-mesos-exporter = goPackages.prometheus.mesos-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; prometheus-mysqld-exporter = goPackages.prometheus.mysqld-exporter.bin // { outputs = [ "bin" ]; }; prometheus-nginx-exporter = goPackages.prometheus.nginx-exporter.bin // { outputs = [ "bin" ]; }; prometheus-node-exporter = goPackages.prometheus.node-exporter.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b221cc2dd04d..389a90dca60d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2184,18 +2184,6 @@ let propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; }; - mesos-stats = buildGoPackage rec { - rev = "0c6ea494c19bedc67ebb85ce3d187ec21050e920"; - name = "mesos-stats-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/antonlindstrom/mesos_stats"; - src = fetchFromGitHub { - inherit rev; - owner = "antonlindstrom"; - repo = "mesos_stats"; - sha256 = "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4"; - }; - }; - mgo = buildFromGitHub { rev = "r2015.06.03"; owner = "go-mgo"; @@ -2597,21 +2585,6 @@ let propagatedBuildInputs = [ logrus ]; }; - prometheus.mesos-exporter = buildFromGitHub { - rev = "0.1.0"; - owner = "prometheus"; - repo = "mesos_exporter"; - sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; - buildInputs = [ mesos-stats prometheus.client_golang glog ]; - meta = with stdenv.lib; { - description = "Export Mesos metrics to Prometheus"; - homepage = https://github.com/prometheus/mesos_exporter; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.mysqld-exporter = buildFromGitHub { rev = "0.1.0"; owner = "prometheus"; From f44b55747643489f0d1e20ee824c106c326849e3 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 15:33:36 +0200 Subject: [PATCH 458/520] prometheus-mysqld-exporter: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 ++++++ .../monitoring/prometheus/mysqld-exporter.nix | 28 +++++++++++++++++++ .../prometheus/mysqld-exporter_deps.json | 15 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 ---------- 5 files changed, 53 insertions(+), 16 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/mysqld-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/mysqld-exporter_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 68d1283f9e40..8ac830e9c8d5 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1204,5 +1204,14 @@ "rev": "0c6ea494c19bedc67ebb85ce3d187ec21050e920", "sha256": "18ggyjf4nyn77gkn16wg9krp4dsphgzdgcr3mdflv6mvbr482ar4" } + }, + { + "goPackagePath": "github.com/go-sql-driver/mysql", + "fetch": { + "type": "git", + "url": "https://github.com/go-sql-driver/mysql", + "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", + "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix new file mode 100644 index 000000000000..29bf6bdb3bb2 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "mysqld_exporter-${version}"; + version = "0.1.0"; + rev = version; + + goPackagePath = "github.com/prometheus/mysqld_exporter"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/mysqld_exporter"; + sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; + }; + + goDeps = ./mysqld-exporter_deps.json; + + meta = with stdenv.lib; { + description = "Prometheus exporter for MySQL server metrics"; + homepage = https://github.com/prometheus/mysqld_exporter; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter_deps.json b/pkgs/servers/monitoring/prometheus/mysqld-exporter_deps.json new file mode 100644 index 000000000000..42e2f263c53b --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter_deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/procfs", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "bitbucket.org/ww/goautoneg", + "github.com/go-sql-driver/mysql" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 98344946a2ca..8dfa3d490c10 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10184,7 +10184,7 @@ in prometheus-collectd-exporter = callPackage ../servers/monitoring/prometheus/collectd-exporter.nix { }; prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; - prometheus-mysqld-exporter = goPackages.prometheus.mysqld-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-mysqld-exporter = callPackage ../servers/monitoring/prometheus/mysqld-exporter.nix { }; prometheus-nginx-exporter = goPackages.prometheus.nginx-exporter.bin // { outputs = [ "bin" ]; }; prometheus-node-exporter = goPackages.prometheus.node-exporter.bin // { outputs = [ "bin" ]; }; prometheus-pushgateway = goPackages.prometheus.pushgateway.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 389a90dca60d..44dc1260c37d 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2585,21 +2585,6 @@ let propagatedBuildInputs = [ logrus ]; }; - prometheus.mysqld-exporter = buildFromGitHub { - rev = "0.1.0"; - owner = "prometheus"; - repo = "mysqld_exporter"; - sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; - buildInputs = [ mysql prometheus.client_golang ]; - meta = with stdenv.lib; { - description = "Prometheus exporter for MySQL server metrics"; - homepage = https://github.com/prometheus/mysqld_exporter; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.nginx-exporter = buildFromGitHub { rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; version = "2015-06-01"; From 0f13eab7c836d99a3aa9f59d6dd70fbfa8db7d0b Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 15:42:10 +0200 Subject: [PATCH 459/520] prometheus-nginx-exporter: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 ++++++ .../monitoring/prometheus/nginx-exporter.nix | 28 +++++++++++++++++++ .../prometheus/nginx-exporter_deps.json | 16 +++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 16 ----------- 5 files changed, 54 insertions(+), 17 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/nginx-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/nginx-exporter_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 8ac830e9c8d5..deec3354f97b 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1213,5 +1213,14 @@ "rev": "fb7299726d2e68745a8805b14f2ff44b5c2cfa84", "sha256": "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w" } + }, + { + "goPackagePath": "github.com/prometheus/log", + "fetch": { + "type": "git", + "url": "https://github.com/prometheus/log", + "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", + "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix new file mode 100644 index 000000000000..5da457c0a190 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +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 { + inherit rev; + url = "https://github.com/discordianfish/nginx_exporter"; + sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; + }; + + goDeps = ./nginx-exporter_deps.json; + + meta = with stdenv.lib; { + description = "Metrics relay from nginx stats to Prometheus"; + homepage = https://github.com/discordianfish/nginx_exporter; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.json b/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.json new file mode 100644 index 000000000000..c7a2b3d1f6c6 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter_deps.json @@ -0,0 +1,16 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/prometheus/log", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "github.com/prometheus/procfs", + "github.com/Sirupsen/logrus", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions", + "bitbucket.org/ww/goautoneg" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8dfa3d490c10..2f491659d08b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10185,7 +10185,7 @@ in prometheus-haproxy-exporter = callPackage ../servers/monitoring/prometheus/haproxy-exporter.nix { }; prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; prometheus-mysqld-exporter = callPackage ../servers/monitoring/prometheus/mysqld-exporter.nix { }; - prometheus-nginx-exporter = goPackages.prometheus.nginx-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; prometheus-node-exporter = goPackages.prometheus.node-exporter.bin // { outputs = [ "bin" ]; }; prometheus-pushgateway = goPackages.prometheus.pushgateway.bin // { outputs = [ "bin" ]; }; prometheus-statsd-bridge = goPackages.prometheus.statsd-bridge.bin // { outputs = [ "bin" ]; }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 44dc1260c37d..8542cde5392e 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2585,22 +2585,6 @@ let propagatedBuildInputs = [ logrus ]; }; - prometheus.nginx-exporter = buildFromGitHub { - rev = "2cf16441591f6b6e58a8c0439dcaf344057aea2b"; - version = "2015-06-01"; - owner = "discordianfish"; - repo = "nginx_exporter"; - sha256 = "0p9j0bbr2lr734980x2p8d67lcify21glwc5k3i3j4ri4vadpxvc"; - buildInputs = [ prometheus.client_golang prometheus.log ]; - meta = with stdenv.lib; { - description = "Metrics relay from nginx stats to Prometheus"; - homepage = https://github.com/discordianfish/nginx_exporter; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.node-exporter = buildFromGitHub { rev = "0.11.0"; owner = "prometheus"; From 28b6e9863ca979d51506dd3823b9d80f5859354b Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 15:52:16 +0200 Subject: [PATCH 460/520] prometheus-node-exporter: extracted from goPackages --- pkgs/development/go-modules/libs.json | 18 +++++++++++ .../monitoring/prometheus/node-exporter.nix | 30 +++++++++++++++++++ .../prometheus/node-exporter_deps.json | 18 +++++++++++ pkgs/top-level/all-packages.nix | 2 +- 4 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 pkgs/servers/monitoring/prometheus/node-exporter.nix create mode 100644 pkgs/servers/monitoring/prometheus/node-exporter_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index deec3354f97b..731e43300da4 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1222,5 +1222,23 @@ "rev": "439e5db48fbb50ebbaf2c816030473a62f505f55", "sha256": "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv" } + }, + { + "goPackagePath": "github.com/soundcloud/go-runit", + "fetch": { + "type": "git", + "url": "https://github.com/soundcloud/go-runit", + "rev": "a9148323a615e2e1c93b7a9893914a360b4945c8", + "sha256": "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v" + } + }, + { + "goPackagePath": "github.com/beevik/ntp", + "fetch": { + "type": "git", + "url": "https://github.com/beevik/ntp", + "rev": "0a5264e2563429030eb922f258229ae3fee5b5dc", + "sha256": "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/node-exporter.nix b/pkgs/servers/monitoring/prometheus/node-exporter.nix new file mode 100644 index 000000000000..276ff73d0fcc --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/node-exporter.nix @@ -0,0 +1,30 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "node_exporter-${version}"; + version = "0.11.0"; + rev = version; + + goPackagePath = "github.com/prometheus/node_exporter"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/node_exporter"; + sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; + }; + + goDeps = ./node-exporter_deps.json; + + doCheck = true; + + meta = with stdenv.lib; { + description = "Prometheus exporter for machine metrics"; + homepage = https://github.com/prometheus/node_exporter; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/node-exporter_deps.json b/pkgs/servers/monitoring/prometheus/node-exporter_deps.json new file mode 100644 index 000000000000..68020e73b1ce --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/node-exporter_deps.json @@ -0,0 +1,18 @@ +[ + { + "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/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2f491659d08b..16724f7edfc1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10186,7 +10186,7 @@ in prometheus-mesos-exporter = callPackage ../servers/monitoring/prometheus/mesos-exporter.nix { }; prometheus-mysqld-exporter = callPackage ../servers/monitoring/prometheus/mysqld-exporter.nix { }; prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; - prometheus-node-exporter = goPackages.prometheus.node-exporter.bin // { outputs = [ "bin" ]; }; + prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; prometheus-pushgateway = goPackages.prometheus.pushgateway.bin // { outputs = [ "bin" ]; }; prometheus-statsd-bridge = goPackages.prometheus.statsd-bridge.bin // { outputs = [ "bin" ]; }; From 5fec17a3e25dfc816b98a21c6589d79808eb0048 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 16:11:11 +0200 Subject: [PATCH 461/520] prometheus-pushgateway: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 +++ pkgs/development/tools/go-bindata/default.nix | 28 ++++++++ .../monitoring/prometheus/pushgateway.nix | 47 ++++++++++++++ .../prometheus/pushgateway_deps.json | 15 +++++ pkgs/top-level/all-packages.nix | 4 +- pkgs/top-level/go-packages.nix | 64 ------------------- 6 files changed, 102 insertions(+), 65 deletions(-) create mode 100644 pkgs/development/tools/go-bindata/default.nix create mode 100644 pkgs/servers/monitoring/prometheus/pushgateway.nix create mode 100644 pkgs/servers/monitoring/prometheus/pushgateway_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 731e43300da4..e571d246c8e3 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1240,5 +1240,14 @@ "rev": "0a5264e2563429030eb922f258229ae3fee5b5dc", "sha256": "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24" } + }, + { + "goPackagePath": "github.com/julienschmidt/httprouter", + "fetch": { + "type": "git", + "url": "https://github.com/julienschmidt/httprouter", + "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", + "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" + } } ] diff --git a/pkgs/development/tools/go-bindata/default.nix b/pkgs/development/tools/go-bindata/default.nix new file mode 100644 index 000000000000..cb9e51dfdfbc --- /dev/null +++ b/pkgs/development/tools/go-bindata/default.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "go-bindata-${version}"; + version = "20151023-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "a0ff2567cfb70903282db057e799fd826784d41d"; + + goPackagePath = "github.com/jteeuwen/go-bindata"; + + src = fetchgit { + inherit rev; + url = "https://github.com/jteeuwen/go-bindata"; + sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v"; + }; + + excludedPackages = "testdata"; + + meta = with stdenv.lib; { + homepage = "https://github.com/jteeuwen/go-bindata"; + description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program"; + maintainers = with maintainers; [ cstrahan ]; + license = licenses.cc0 ; + platforms = platforms.all; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix new file mode 100644 index 000000000000..751748783e47 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix @@ -0,0 +1,47 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, go-bindata, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "pushgateway-${version}"; + version = "0.1.1"; + rev = version; + + goPackagePath = "github.com/prometheus/pushgateway"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/pushgateway"; + sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; + }; + + goDeps = ./pushgateway_deps.json; + + buildInputs = [ go-bindata ]; + + preBuild = '' + ( + cd "go/src/$goPackagePath" + go-bindata ./resources/ + ) + ''; + + buildFlagsArray = '' + -ldflags= + -X main.buildVersion=${version} + -X main.buildRev=${rev} + -X main.buildBranch=master + -X main.buildUser=nix@nixpkgs + -X main.buildDate=20150101-00:00:00 + -X main.goVersion=${stdenv.lib.getVersion go} + ''; + + meta = with stdenv.lib; { + description = "Allows ephemeral and batch jobs to expose metrics to Prometheus"; + homepage = https://github.com/prometheus/pushgateway; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/pushgateway_deps.json b/pkgs/servers/monitoring/prometheus/pushgateway_deps.json new file mode 100644 index 000000000000..15e2815e0e2f --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/pushgateway_deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/julienschmidt/httprouter", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "bitbucket.org/ww/goautoneg", + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/procfs", + "github.com/beorn7/perks" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 16724f7edfc1..75f454f3a8b1 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10187,7 +10187,7 @@ in prometheus-mysqld-exporter = callPackage ../servers/monitoring/prometheus/mysqld-exporter.nix { }; prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; - prometheus-pushgateway = goPackages.prometheus.pushgateway.bin // { outputs = [ "bin" ]; }; + prometheus-pushgateway = callPackage ../servers/monitoring/prometheus/pushgateway.nix { }; prometheus-statsd-bridge = goPackages.prometheus.statsd-bridge.bin // { outputs = [ "bin" ]; }; psqlodbc = callPackage ../servers/sql/postgresql/psqlodbc { }; @@ -11151,6 +11151,8 @@ in inherit (gnome) gtk gtkmm; }; + go-bindata = callPackage ../development/tools/go-bindata { }; + gocode = callPackage ../development/tools/gocode { }; kgocode = callPackage ../applications/misc/kgocode { diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 8542cde5392e..b5b4563cd035 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1264,30 +1264,6 @@ let }; }; - go-bindata = buildGoPackage rec { - rev = "a0ff2567cfb70903282db057e799fd826784d41d"; - date = "2015-10-23"; - version = "${date}-${stdenv.lib.strings.substring 0 7 rev}"; - name = "go-bindata-${version}"; - goPackagePath = "github.com/jteeuwen/go-bindata"; - src = fetchFromGitHub { - inherit rev; - repo = "go-bindata"; - owner = "jteeuwen"; - sha256 = "0d6zxv0hgh938rf59p1k5lj0ymrb8kcps2vfrb9kaarxsvg7y69v"; - }; - - subPackages = [ "./" "go-bindata" ]; # don't build testdata - - meta = with stdenv.lib; { - homepage = "https://github.com/jteeuwen/go-bindata"; - description = "A small utility which generates Go code from any file, useful for embedding binary data in a Go program"; - maintainers = with maintainers; [ cstrahan ]; - license = licenses.cc0 ; - platforms = platforms.all; - }; - }; - go-bindata-assetfs = buildFromGitHub { rev = "d5cac425555ca5cf00694df246e04f05e6a55150"; owner = "elazarl"; @@ -2619,46 +2595,6 @@ let sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; }; - prometheus.pushgateway = buildFromGitHub rec { - rev = "0.1.1"; - owner = "prometheus"; - repo = "pushgateway"; - sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; - - buildInputs = [ - protobuf - httprouter - golang_protobuf_extensions - prometheus.client_golang - ]; - - nativeBuildInputs = [ go-bindata.bin ]; - preBuild = '' - ( - cd "go/src/$goPackagePath" - go-bindata ./resources/ - ) - ''; - - buildFlagsArray = '' - -ldflags= - -X main.buildVersion=${rev} - -X main.buildRev=${rev} - -X main.buildBranch=master - -X main.buildUser=nix@nixpkgs - -X main.buildDate=20150101-00:00:00 - -X main.goVersion=${stdenv.lib.getVersion go} - ''; - - meta = with stdenv.lib; { - description = "Allows ephemeral and batch jobs to expose metrics to Prometheus"; - homepage = https://github.com/prometheus/pushgateway; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - prometheus.statsd-bridge = buildFromGitHub { rev = "0.1.0"; owner = "prometheus"; From 5d3f8fec7cfc732f8548ae4d27f88a19b58905b2 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 16:25:07 +0200 Subject: [PATCH 462/520] prometheus-statsd-bridge: extracted from goPackages --- pkgs/development/go-modules/libs.json | 9 ++++++ .../monitoring/prometheus/statsd-bridge.nix | 28 +++++++++++++++++++ .../prometheus/statsd-bridge_deps.json | 15 ++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 15 ---------- 5 files changed, 53 insertions(+), 16 deletions(-) create mode 100644 pkgs/servers/monitoring/prometheus/statsd-bridge.nix create mode 100644 pkgs/servers/monitoring/prometheus/statsd-bridge_deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index e571d246c8e3..42a52185a1ff 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1249,5 +1249,14 @@ "rev": "6aacfd5ab513e34f7e64ea9627ab9670371b34e7", "sha256": "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl" } + }, + { + "goPackagePath": "github.com/howeyc/fsnotify", + "fetch": { + "type": "git", + "url": "https://github.com/fsnotify/fsnotify", + "rev": "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6", + "sha256": "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9" + } } ] diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix new file mode 100644 index 000000000000..4458b668a197 --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix @@ -0,0 +1,28 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "statsd_bridge-${version}"; + version = "0.1.0"; + rev = version; + + goPackagePath = "github.com/prometheus/statsd_bridge"; + + src = fetchgit { + inherit rev; + url = "https://github.com/prometheus/statsd_bridge"; + sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; + }; + + goDeps = ./statsd-bridge_deps.json; + + meta = with stdenv.lib; { + description = "Receives StatsD-style metrics and exports them to Prometheus"; + homepage = https://github.com/prometheus/statsd_bridge; + license = licenses.asl20; + maintainers = with maintainers; [ benley ]; + platforms = platforms.unix; + }; +} diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge_deps.json b/pkgs/servers/monitoring/prometheus/statsd-bridge_deps.json new file mode 100644 index 000000000000..cda65257317d --- /dev/null +++ b/pkgs/servers/monitoring/prometheus/statsd-bridge_deps.json @@ -0,0 +1,15 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/howeyc/fsnotify", + "github.com/prometheus/client_golang", + "github.com/prometheus/client_model", + "bitbucket.org/ww/goautoneg", + "github.com/beorn7/perks", + "github.com/golang/protobuf", + "github.com/matttproud/golang_protobuf_extensions", + "github.com/prometheus/procfs" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 75f454f3a8b1..891472ae4c90 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10188,7 +10188,7 @@ in prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; prometheus-pushgateway = callPackage ../servers/monitoring/prometheus/pushgateway.nix { }; - prometheus-statsd-bridge = goPackages.prometheus.statsd-bridge.bin // { outputs = [ "bin" ]; }; + prometheus-statsd-bridge = callPackage ../servers/monitoring/prometheus/statsd-bridge.nix { }; psqlodbc = callPackage ../servers/sql/postgresql/psqlodbc { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index b5b4563cd035..3602c68d908f 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2595,21 +2595,6 @@ let sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; }; - prometheus.statsd-bridge = buildFromGitHub { - rev = "0.1.0"; - owner = "prometheus"; - repo = "statsd_bridge"; - sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; - buildInputs = [ fsnotify.v0 prometheus.client_golang ]; - meta = with stdenv.lib; { - description = "Receives StatsD-style metrics and exports them to Prometheus"; - homepage = https://github.com/prometheus/statsd_bridge; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - properties = buildFromGitHub { rev = "v1.5.6"; owner = "magiconair"; From fc88548b5d792c3ba4ac0cd2a127cdae52db0420 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 16:41:51 +0200 Subject: [PATCH 463/520] go2nix: extracted from goPackages --- pkgs/development/go-modules/libs.json | 36 +++++++++++++++++++++++ pkgs/development/tools/go2nix/default.nix | 32 ++++++++++++++++++++ pkgs/development/tools/go2nix/deps.json | 11 +++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 19 ------------ 5 files changed, 80 insertions(+), 20 deletions(-) create mode 100644 pkgs/development/tools/go2nix/default.nix create mode 100644 pkgs/development/tools/go2nix/deps.json diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 42a52185a1ff..b83ed703f5f8 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1258,5 +1258,41 @@ "rev": "ea925a0a47d225b2ca7f9932b01d2ed4f3ec74f6", "sha256": "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9" } + }, + { + "goPackagePath": "github.com/alecthomas/template", + "fetch": { + "type": "git", + "url": "https://github.com/alecthomas/template", + "rev": "14fd436dd20c3cc65242a9f396b61bfc8a3926fc", + "sha256": "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2" + } + }, + { + "goPackagePath": "github.com/alecthomas/units", + "fetch": { + "type": "git", + "url": "https://github.com/alecthomas/units", + "rev": "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a", + "sha256": "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl" + } + }, + { + "goPackagePath": "gopkg.in/alecthomas/kingpin.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/alecthomas/kingpin.v2", + "rev": "21551c2a6259a8145110ca80a36e25c9d7624032", + "sha256": "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59" + } + }, + { + "goPackagePath": "github.com/Masterminds/vcs", + "fetch": { + "type": "git", + "url": "https://github.com/Masterminds/vcs", + "rev": "9c0db6583837118d5df7c2ae38ab1c194e434b35", + "sha256": "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d" + } } ] diff --git a/pkgs/development/tools/go2nix/default.nix b/pkgs/development/tools/go2nix/default.nix new file mode 100644 index 000000000000..bb0000d9e736 --- /dev/null +++ b/pkgs/development/tools/go2nix/default.nix @@ -0,0 +1,32 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, go-bindata, goimports, nix-prefetch-git, git, makeWrapper, + fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "go2nix-${version}"; + version = "20160307-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; + + goPackagePath = "github.com/kamilchm/go2nix"; + + src = fetchgit { + inherit rev; + url = "https://github.com/kamilchm/go2nix"; + sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; + }; + + goDeps = ./deps.json; + + buildInputs = [ go-bindata goimports makeWrapper ]; + preBuild = ''go generate ./...''; + + postInstall = '' + wrapProgram $bin/bin/go2nix \ + --prefix PATH : ${nix-prefetch-git}/bin \ + --prefix PATH : ${git}/bin + ''; + + allowGoReference = true; +} diff --git a/pkgs/development/tools/go2nix/deps.json b/pkgs/development/tools/go2nix/deps.json new file mode 100644 index 000000000000..8e7fefb17ee2 --- /dev/null +++ b/pkgs/development/tools/go2nix/deps.json @@ -0,0 +1,11 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/alecthomas/template", + "github.com/alecthomas/units", + "gopkg.in/alecthomas/kingpin.v2", + "github.com/Masterminds/vcs" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 891472ae4c90..41a2534b4e67 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9628,7 +9628,7 @@ in goPackages = go16Packages; - go2nix = goPackages.go2nix.bin // { outputs = [ "bin" ]; }; + go2nix = callPackage ../development/tools/go2nix { }; ### DEVELOPMENT / LISP MODULES diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 3602c68d908f..521452b55064 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -3241,25 +3241,6 @@ let goPackageAliases = [ "gopkg.in/alecthomas/kingpin.v2" ]; }; - go2nix = buildFromGitHub rec { - rev = "4c552dadd855e3694ed3499feb46dca9cd855f60"; - owner = "kamilchm"; - repo = "go2nix"; - sha256 = "1pwnm1vrjxvgl17pk9n1k5chmhgwxkrwp2s1bzi64xf12anibj63"; - - buildInputs = [ pkgs.makeWrapper go-bindata.bin tools.bin vcs go-spew gls go-difflib assertions goconvey testify kingpin ]; - - preBuild = ''go generate ./...''; - - postInstall = '' - wrapProgram $bin/bin/go2nix \ - --prefix PATH : ${pkgs.nix-prefetch-git}/bin \ - --prefix PATH : ${pkgs.git}/bin - ''; - - allowGoReference = true; - }; - godotenv = buildFromGitHub rec { rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; version = "2015-09-07"; From 7b4e868173c66e58f3d200e7cc5b5bcbbe35a4d0 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 16:48:15 +0200 Subject: [PATCH 464/520] govers: extracted from goPackages --- pkgs/development/tools/govers/default.nix | 20 ++++++++++++++++++++ pkgs/top-level/all-packages.nix | 5 ++--- pkgs/top-level/go-packages.nix | 9 --------- 3 files changed, 22 insertions(+), 12 deletions(-) create mode 100644 pkgs/development/tools/govers/default.nix diff --git a/pkgs/development/tools/govers/default.nix b/pkgs/development/tools/govers/default.nix new file mode 100644 index 000000000000..b3e2b921bd2e --- /dev/null +++ b/pkgs/development/tools/govers/default.nix @@ -0,0 +1,20 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "govers-${version}"; + version = "20150109-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; + + goPackagePath = "github.com/rogpeppe/govers"; + + src = fetchgit { + inherit rev; + url = "https://github.com/rogpeppe/govers"; + sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; + }; + + dontRenameImports = true; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 41a2534b4e67..d37594c67c25 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9603,7 +9603,6 @@ in go = go_1_4; buildGoPackage = callPackage ../development/go-modules/generic { go = go_1_4; - govers = go14Packages.govers.bin; }; overrides = (config.goPackageOverrides or (p: {})) pkgs; }; @@ -9612,7 +9611,6 @@ in go = go_1_5; buildGoPackage = callPackage ../development/go-modules/generic { go = go_1_5; - govers = go15Packages.govers.bin; }; overrides = (config.goPackageOverrides or (p: {})) pkgs; }; @@ -9621,7 +9619,6 @@ in go = go_1_6; buildGoPackage = callPackage ../development/go-modules/generic { go = go_1_6; - govers = go16Packages.govers.bin; }; overrides = (config.goPackageOverrides or (p: {})) pkgs; }; @@ -11167,6 +11164,8 @@ in goimports = callPackage ../development/tools/goimports { }; + govers = callPackage ../development/tools/govers { }; + gogoclient = callPackage ../os-specific/linux/gogoclient { }; nss_ldap = callPackage ../os-specific/linux/nss_ldap { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index 521452b55064..d38aea502b5a 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -1020,15 +1020,6 @@ let sha256 = "1l1w4mczqmah0c154vb1daw5l3cc7vn5gmy5s67p3ad1lnz5l79x"; }; - govers = buildFromGitHub { - rev = "3b5f175f65d601d06f48d78fcbdb0add633565b9"; - version = "2015-01-09"; - owner = "rogpeppe"; - repo = "govers"; - sha256 = "0din5a7nff6hpc4wg0yad2nwbgy4q1qaazxl8ni49lkkr4hyp8pc"; - dontRenameImports = true; - }; - golang-lru = buildFromGitHub { rev = "7f9ef20a0256f494e24126014135cf893ab71e9e"; owner = "hashicorp"; From 6d9b9681f9dc3eeaae822b5d11d42478b385b1e6 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 17:16:34 +0200 Subject: [PATCH 465/520] ngrok: FIX go-bindata moved to all-packages --- pkgs/tools/networking/ngrok/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/networking/ngrok/default.nix b/pkgs/tools/networking/ngrok/default.nix index 5344a4ec46bc..d7c4bcf04378 100644 --- a/pkgs/tools/networking/ngrok/default.nix +++ b/pkgs/tools/networking/ngrok/default.nix @@ -1,5 +1,5 @@ # This file was generated by go2nix. -{ stdenv, lib, pkgconfig, goPackages, fetchFromGitHub }: +{ stdenv, lib, pkgconfig, goPackages, go-bindata, fetchFromGitHub }: with goPackages; From 6f51fdd81c4983574644ca1c86333cdf0d0dc467 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Sun, 5 Jun 2016 23:30:28 +0200 Subject: [PATCH 466/520] drive: extracted from goPackges --- .../applications/networking/drive/default.nix | 21 ++++ pkgs/applications/networking/drive/deps.json | 26 ++++ pkgs/development/go-modules/libs.json | 117 ++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 14 --- 5 files changed, 165 insertions(+), 15 deletions(-) create mode 100644 pkgs/applications/networking/drive/default.nix create mode 100644 pkgs/applications/networking/drive/deps.json diff --git a/pkgs/applications/networking/drive/default.nix b/pkgs/applications/networking/drive/default.nix new file mode 100644 index 000000000000..a85247f7e1ea --- /dev/null +++ b/pkgs/applications/networking/drive/default.nix @@ -0,0 +1,21 @@ +# This file was generated by go2nix. +{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +with goPackages; + +buildGoPackage rec { + name = "drive-${version}"; + version = "20151025-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "6dc2f1e83032ea3911fa6147b846ee93f18dc544"; + + goPackagePath = "github.com/odeke-em/drive"; + subPackages = [ "cmd/drive" ]; + + src = fetchgit { + inherit rev; + url = "https://github.com/odeke-em/drive"; + sha256 = "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/applications/networking/drive/deps.json b/pkgs/applications/networking/drive/deps.json new file mode 100644 index 000000000000..3d71a76de8a6 --- /dev/null +++ b/pkgs/applications/networking/drive/deps.json @@ -0,0 +1,26 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/boltdb/bolt", + "github.com/cheggaaa/pb", + "github.com/odeke-em/cli-spinner", + "github.com/odeke-em/statos", + "golang.org/x/oauth2", + "github.com/odeke-em/exponential-backoff", + "github.com/odeke-em/extractor", + "github.com/odeke-em/meddler", + "github.com/odeke-em/xon", + "github.com/odeke-em/cache", + "github.com/odeke-em/drive", + "github.com/odeke-em/command", + "github.com/odeke-em/log", + "github.com/odeke-em/pretty-words", + "github.com/skratchdot/open-golang", + "google.golang.org/cloud", + "google.golang.org/api", + "github.com/mattn/go-isatty", + "golang.org/x/net" + ] + } +] diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index b83ed703f5f8..84a211e68e02 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -1294,5 +1294,122 @@ "rev": "9c0db6583837118d5df7c2ae38ab1c194e434b35", "sha256": "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d" } + }, + { + "goPackagePath": "github.com/boltdb/bolt", + "fetch": { + "type": "git", + "url": "https://github.com/boltdb/bolt", + "rev": "957d850b5158a4eebf915476058e720f43459584", + "sha256": "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf" + } + }, + { + "goPackagePath": "github.com/cheggaaa/pb", + "fetch": { + "type": "git", + "url": "https://github.com/cheggaaa/pb", + "rev": "e648e12b78cedf14ebb2fc1855033f07b034cfbb", + "sha256": "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam" + } + }, + { + "goPackagePath": "github.com/odeke-em/cli-spinner", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/cli-spinner", + "rev": "610063bb4aeef25f7645b3e6080456655ec0fb33", + "sha256": "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c" + } + }, + { + "goPackagePath": "github.com/odeke-em/statos", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/statos", + "rev": "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6", + "sha256": "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs" + } + }, + { + "goPackagePath": "github.com/odeke-em/exponential-backoff", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/exponential-backoff", + "rev": "96e25d36ae36ad09ac02cbfe653b44c4043a8e09", + "sha256": "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6" + } + }, + { + "goPackagePath": "github.com/odeke-em/extractor", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/extractor", + "rev": "801861aedb854c7ac5e1329e9713023e9dc2b4d4", + "sha256": "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1" + } + }, + { + "goPackagePath": "github.com/odeke-em/meddler", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/meddler", + "rev": "d2b51d2b40e786ab5f810d85e65b96404cf33570", + "sha256": "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x" + } + }, + { + "goPackagePath": "github.com/odeke-em/xon", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/xon", + "rev": "d580be739d723da4f6378083128f93017b8ab295", + "sha256": "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc" + } + }, + { + "goPackagePath": "github.com/odeke-em/cache", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/cache", + "rev": "b51b08cb6cf889deda6c941a5205baecfd16f3eb", + "sha256": "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4" + } + }, + { + "goPackagePath": "github.com/odeke-em/command", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/command", + "rev": "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561", + "sha256": "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62" + } + }, + { + "goPackagePath": "github.com/odeke-em/log", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/log", + "rev": "cad53c4565a0b0304577bd13f3862350bdc5f907", + "sha256": "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w" + } + }, + { + "goPackagePath": "github.com/odeke-em/pretty-words", + "fetch": { + "type": "git", + "url": "https://github.com/odeke-em/pretty-words", + "rev": "9d37a7fcb4ae6f94b288d371938482994458cecb", + "sha256": "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl" + } + }, + { + "goPackagePath": "github.com/skratchdot/open-golang", + "fetch": { + "type": "git", + "url": "https://github.com/skratchdot/open-golang", + "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", + "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" + } } ] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index d37594c67c25..2db3a392fc84 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1356,7 +1356,7 @@ in doomseeker = callPackage ../applications/misc/doomseeker { }; - drive = self.go14Packages.drive.bin // { outputs = [ "bin" ]; }; + drive = callPackage ../applications/networking/drive { }; driftnet = callPackage ../tools/networking/driftnet {}; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index d38aea502b5a..ea3635894238 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -598,20 +598,6 @@ let sha256 = "0hn8xdbaykp046inc4d2mwig5ir89ighma8hk18dfkm8rh1vvr8i"; }; - drive = buildFromGitHub { - rev = "6dc2f1e83032ea3911fa6147b846ee93f18dc544"; - owner = "odeke-em"; - repo = "drive"; - sha256 = "07s4nhfcr6vznf1amvl3a4wq2hn9zq871rcppfi4i6zs7iw2ay1v"; - subPackages = [ "cmd/drive" ]; - buildInputs = [ - pb go-isatty command dts odeke-em.log statos xon odeke-em.google-api-go-client - cli-spinner oauth2 text net pretty-words meddler open-golang extractor - exponential-backoff cache bolt - ]; - disabled = !isGo14; - }; - dropbox = buildFromGitHub { rev = "58f839b21094d5e0af7caf613599830589233d20"; owner = "stacktic"; From 109096247a20ed1141f1f373cd41c1674027c7f1 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 9 Jun 2016 11:58:43 +0200 Subject: [PATCH 467/520] php56: update to 5.6.22 (cherry picked from commit 72b4009367257c2447aac89d5f34f2421bbc88dc) --- pkgs/development/interpreters/php/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index d364bf7dfff4..8aea0f4d23f2 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -297,8 +297,8 @@ in { }; php56 = generic { - version = "5.6.21"; - sha256 = "144m8xzpqv3pimxh2pjhbk4fy1kch9afkzclcinzv2dnfjspmvdl"; + version = "5.6.22"; + sha256 = "1il8kwg3pak06i4fz09br7vjsxvwfgxcd95zyaf6kyjjrj08mnlh"; }; php70 = generic { From cc174b3d556945eff999efe44ab18dd7b3e99f76 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 9 Jun 2016 12:19:44 +0200 Subject: [PATCH 468/520] pidgin: simplify using the wrapped version Now only the `pidgin` attribute is exposed and it's wrapped based on whether the `plugins` parameter is overridden. Discussion: https://github.com/NixOS/nixpkgs/issues/8999#issuecomment-224851642 --- .../networking/instant-messengers/pidgin/default.nix | 12 ++++++++++-- pkgs/top-level/aliases.nix | 1 + pkgs/top-level/all-packages.nix | 3 --- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/pidgin/default.nix b/pkgs/applications/networking/instant-messengers/pidgin/default.nix index e7266a93350b..9123f6b39ed7 100644 --- a/pkgs/applications/networking/instant-messengers/pidgin/default.nix +++ b/pkgs/applications/networking/instant-messengers/pidgin/default.nix @@ -6,11 +6,12 @@ , openssl ? null , gnutls ? null , libgcrypt ? null +, plugins, symlinkJoin }: # FIXME: clean the mess around choosing the SSL library (nss by default) -stdenv.mkDerivation rec { +let unwrapped = stdenv.mkDerivation rec { name = "pidgin-${version}"; majorVersion = "2"; version = "${majorVersion}.10.11"; @@ -68,4 +69,11 @@ stdenv.mkDerivation rec { platforms = platforms.linux; maintainers = [ maintainers.vcunat ]; }; -} +}; + +in if plugins == [] then unwrapped + else import ./wrapper.nix { + inherit stdenv makeWrapper symlinkJoin plugins; + pidgin = unwrapped; + } + diff --git a/pkgs/top-level/aliases.nix b/pkgs/top-level/aliases.nix index 6a6ec785d7f2..d866d3857626 100644 --- a/pkgs/top-level/aliases.nix +++ b/pkgs/top-level/aliases.nix @@ -73,6 +73,7 @@ doNotDisplayTwice rec { mupen64plus1_5 = mupen64plus; # added 2016-02-12 ncat = nmap; # added 2016-01-26 nfsUtils = nfs-utils; # added 2014-12-06 + pidgin-with-plugins = pidgin; # added 2016-06 pidginlatexSF = pidginlatex; # added 2014-11-02 poppler_qt5 = qt5.poppler; # added 2015-12-19 qca-qt5 = qt5.qca-qt5; # added 2015-12-19 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index be992fdc7373..bc8c8d3b362a 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -13809,9 +13809,6 @@ in gnutls = if config.pidgin.gnutls or false then gnutls else null; libgcrypt = if config.pidgin.gnutls or false then libgcrypt else null; startupnotification = libstartup_notification; - }; - - pidgin-with-plugins = callPackage ../applications/networking/instant-messengers/pidgin/wrapper.nix { plugins = []; }; From 3b28b5673b67670ee61212f2043ef641c7d70dc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Romildo=20Malaquias?= Date: Thu, 9 Jun 2016 08:05:14 -0300 Subject: [PATCH 469/520] enlightenment: 0.20.8 -> 0.20.9 --- pkgs/desktops/enlightenment/enlightenment.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/enlightenment/enlightenment.nix b/pkgs/desktops/enlightenment/enlightenment.nix index 4dd20a9d3afa..1f802385bd8b 100644 --- a/pkgs/desktops/enlightenment/enlightenment.nix +++ b/pkgs/desktops/enlightenment/enlightenment.nix @@ -4,10 +4,10 @@ libffi, pam, alsaLib, luajit, bzip2, libuuid, libpthreadstubs, gdbm, libcap, mes stdenv.mkDerivation rec { name = "enlightenment-${version}"; - version = "0.20.8"; + version = "0.20.9"; src = fetchurl { url = "http://download.enlightenment.org/rel/apps/enlightenment/${name}.tar.xz"; - sha256 = "17fi3frq4a73i0x7v7244g9m0fbjfamw0cfb4zhqs2rp1z8nq1iy"; + sha256 = "1gniy7i3mg3q9cgqf004lvnv397yncdr2b7w1gzj69bvv7a2lyfv"; }; nativeBuildInputs = [ pkgconfig ]; From 7eb671ebcdd41d86980aa4826fa7b06f31a2ea0a Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 02:28:52 +0200 Subject: [PATCH 470/520] no more goPackages --- pkgs/applications/misc/wego/default.nix | 5 +- .../networking/cluster/terraform/default.nix | 7 +- .../applications/networking/drive/default.nix | 5 +- .../instant-messengers/pond/default.nix | 4 +- .../xmpp-client/default.nix | 5 +- .../networking/syncthing012/default.nix | 5 +- .../git-and-tools/default.nix | 2 +- .../git-annex-remote-b2/default.nix | 17 +++ .../git-annex-remote-b2/deps.json | 9 ++ .../version-management/git-lfs/default.nix | 5 +- pkgs/build-support/docker/default.nix | 4 +- .../go-modules/generic/default.nix | 2 +- pkgs/development/go-modules/libs.json | 119 +++++++++++++++++- pkgs/development/tools/deis/default.nix | 5 +- pkgs/development/tools/glide/default.nix | 6 +- pkgs/development/tools/go-bindata/default.nix | 5 +- .../tools/go-repo-root/default.nix | 7 +- pkgs/development/tools/go2nix/default.nix | 5 +- pkgs/development/tools/gocode/default.nix | 5 +- pkgs/development/tools/goimports/default.nix | 5 +- pkgs/development/tools/golint/default.nix | 5 +- pkgs/development/tools/gotags/default.nix | 5 +- pkgs/development/tools/gotools/default.nix | 44 +++++++ pkgs/development/tools/gotools/deps.json | 8 ++ pkgs/development/tools/govers/default.nix | 5 +- pkgs/development/tools/gox/default.nix | 5 +- pkgs/development/tools/packer/default.nix | 6 +- pkgs/development/tools/packer/deps.nix | 7 +- pkgs/development/tools/pup/default.nix | 5 +- pkgs/development/tools/remarshal/default.nix | 6 +- pkgs/development/tools/remarshal/deps.json | 9 ++ pkgs/development/tools/textql/default.nix | 5 +- pkgs/servers/caddy/default.nix | 7 +- pkgs/servers/consul/default.nix | 7 +- pkgs/servers/etcd/default.nix | 5 +- pkgs/servers/gotty/default.nix | 5 +- pkgs/servers/interlock/default.nix | 5 +- pkgs/servers/mesos-dns/default.nix | 5 +- pkgs/servers/monitoring/bosun/default.nix | 4 +- .../monitoring/consul-alerts/default.nix | 7 +- pkgs/servers/monitoring/grafana/default.nix | 4 +- pkgs/servers/monitoring/heapster/default.nix | 4 +- .../monitoring/prometheus/alertmanager.nix | 5 +- pkgs/servers/monitoring/prometheus/cli.nix | 5 +- .../prometheus/collectd-exporter.nix | 5 +- .../servers/monitoring/prometheus/default.nix | 5 +- .../prometheus/haproxy-exporter.nix | 5 +- .../monitoring/prometheus/mesos-exporter.nix | 5 +- .../monitoring/prometheus/mysqld-exporter.nix | 5 +- .../monitoring/prometheus/nginx-exporter.nix | 5 +- .../monitoring/prometheus/node-exporter.nix | 5 +- .../monitoring/prometheus/prom2json.nix | 5 +- .../monitoring/prometheus/pushgateway.nix | 5 +- .../monitoring/prometheus/statsd-bridge.nix | 5 +- pkgs/servers/nosql/influxdb/default.nix | 9 +- pkgs/servers/nosql/influxdb/deps.json | 21 ++++ pkgs/servers/nsq/default.nix | 5 +- pkgs/servers/oauth2_proxy/default.nix | 5 +- pkgs/servers/serf/default.nix | 5 +- pkgs/servers/skydns/default.nix | 5 +- pkgs/servers/skydns/deps.json | 1 + pkgs/shells/oh/default.nix | 5 +- pkgs/tools/X11/go-sct/default.nix | 5 +- pkgs/tools/admin/lxd/default.nix | 5 +- pkgs/tools/filesystems/go-mtpfs/default.nix | 5 +- pkgs/tools/misc/asciinema/default.nix | 5 +- pkgs/tools/misc/fzf/default.nix | 5 +- pkgs/tools/misc/gawp/default.nix | 4 +- pkgs/tools/misc/i3cat/default.nix | 5 +- pkgs/tools/misc/mongodb-tools/default.nix | 5 +- pkgs/tools/misc/upower-notify/default.nix | 5 +- pkgs/tools/networking/flannel/default.nix | 5 +- pkgs/tools/networking/ngrok/default.nix | 5 +- pkgs/tools/networking/s3gof3r/default.nix | 5 +- pkgs/tools/security/hologram/default.nix | 5 +- pkgs/tools/security/vault/default.nix | 7 +- pkgs/tools/system/confd/default.nix | 5 +- pkgs/tools/system/consul-template/default.nix | 7 +- pkgs/tools/text/platinum-searcher/default.nix | 49 +------- pkgs/tools/text/platinum-searcher/deps.json | 16 +++ pkgs/top-level/all-packages.nix | 26 +--- 81 files changed, 340 insertions(+), 340 deletions(-) create mode 100644 pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/default.nix create mode 100644 pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/deps.json create mode 100644 pkgs/development/tools/gotools/default.nix create mode 100644 pkgs/development/tools/gotools/deps.json create mode 100644 pkgs/development/tools/remarshal/deps.json create mode 100644 pkgs/servers/nosql/influxdb/deps.json create mode 100644 pkgs/tools/text/platinum-searcher/deps.json diff --git a/pkgs/applications/misc/wego/default.nix b/pkgs/applications/misc/wego/default.nix index 2ce62783100a..5918f3ef3788 100644 --- a/pkgs/applications/misc/wego/default.nix +++ b/pkgs/applications/misc/wego/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "wego-${version}"; diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index cacfaf15a21d..44e6a10963a9 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "terraform-${version}"; version = "0.6.15"; rev = "v${version}"; diff --git a/pkgs/applications/networking/drive/default.nix b/pkgs/applications/networking/drive/default.nix index a85247f7e1ea..3b64d7af43bb 100644 --- a/pkgs/applications/networking/drive/default.nix +++ b/pkgs/applications/networking/drive/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "drive-${version}"; diff --git a/pkgs/applications/networking/instant-messengers/pond/default.nix b/pkgs/applications/networking/instant-messengers/pond/default.nix index f40bf77bb71c..3b7b96b778f0 100644 --- a/pkgs/applications/networking/instant-messengers/pond/default.nix +++ b/pkgs/applications/networking/instant-messengers/pond/default.nix @@ -1,8 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, trousers, dclxvi, wrapGAppsHook, pkgconfig, gtk3, gtkspell3, +{ stdenv, lib, buildGoPackage, trousers, dclxvi, wrapGAppsHook, pkgconfig, gtk3, gtkspell3, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with goPackages; let isx86_64 = stdenv.lib.any (n: n == stdenv.system) stdenv.lib.platforms.x86_64; gui = true; # Might be implemented with nixpkgs config. diff --git a/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix b/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix index 6ce338d3a45e..de8d0c19b4f8 100644 --- a/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix +++ b/pkgs/applications/networking/instant-messengers/xmpp-client/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "xmpp-client-${version}"; diff --git a/pkgs/applications/networking/syncthing012/default.nix b/pkgs/applications/networking/syncthing012/default.nix index dcf5e30551c1..6f6336eef709 100644 --- a/pkgs/applications/networking/syncthing012/default.nix +++ b/pkgs/applications/networking/syncthing012/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "syncthing-${version}"; diff --git a/pkgs/applications/version-management/git-and-tools/default.nix b/pkgs/applications/version-management/git-and-tools/default.nix index ab111a7f2f71..0732b0d7329f 100644 --- a/pkgs/applications/version-management/git-and-tools/default.nix +++ b/pkgs/applications/version-management/git-and-tools/default.nix @@ -40,7 +40,7 @@ rec { git-annex = pkgs.haskell.packages.lts.git-annex-with-assistant; gitAnnex = git-annex; - git-annex-remote-b2 = pkgs.goPackages.git-annex-remote-b2; + git-annex-remote-b2 = callPackage ./git-annex-remote-b2 { }; # support for bugzilla git-bz = callPackage ./git-bz { }; diff --git a/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/default.nix b/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/default.nix new file mode 100644 index 000000000000..4ede1b352ea6 --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/default.nix @@ -0,0 +1,17 @@ +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +buildGoPackage rec { + name = "git-annex-remote-b2-${version}"; + version = "20151212-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "4db46b9fc9ef7b3f4851c2a6b061cb8f90f553ba"; + + goPackagePath = "github.com/encryptio/git-annex-remote-b2"; + + src = fetchgit { + inherit rev; + url = "https://github.com/encryptio/git-annex-remote-b2"; + sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; + }; + + goDeps = ./deps.json; +} diff --git a/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/deps.json b/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/deps.json new file mode 100644 index 000000000000..b04422768a5f --- /dev/null +++ b/pkgs/applications/version-management/git-and-tools/git-annex-remote-b2/deps.json @@ -0,0 +1,9 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/pquerna/ffjson", + "gopkg.in/kothar/go-backblaze.v0" + ] + } +] diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix index 5186d2a5ba90..089997342c0e 100644 --- a/pkgs/applications/version-management/git-lfs/default.nix +++ b/pkgs/applications/version-management/git-lfs/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "git-lfs-${version}"; diff --git a/pkgs/build-support/docker/default.nix b/pkgs/build-support/docker/default.nix index 5ead82dee8b5..4c5378ea73f3 100644 --- a/pkgs/build-support/docker/default.nix +++ b/pkgs/build-support/docker/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, callPackage, runCommand, writeReferencesToFile, writeText, vmTools, writeScript -, docker, shadow, utillinux, coreutils, jshon, e2fsprogs, goPackages, pigz }: +, docker, shadow, utillinux, coreutils, jshon, e2fsprogs, go, pigz }: # WARNING: this API is unstable and may be subject to backwards-incompatible changes in the future. @@ -10,7 +10,7 @@ rec { # We need to sum layer.tar, not a directory, hence tarsum instead of nix-hash. # And we cannot untar it, because then we cannot preserve permissions ecc. tarsum = runCommand "tarsum" { - buildInputs = [ goPackages.go ]; + buildInputs = [ go ]; } '' mkdir tarsum cd tarsum diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index cc355c6e5d75..07cc42cfcdf0 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -52,7 +52,7 @@ let fetchhg { inherit (goDep.fetch) url rev sha256; } - else {}; + else abort "Unrecognized package fetch type"; }; importGodeps = { depsFile, filterPackages ? [] }: diff --git a/pkgs/development/go-modules/libs.json b/pkgs/development/go-modules/libs.json index 84a211e68e02..520c1fd8e5c0 100644 --- a/pkgs/development/go-modules/libs.json +++ b/pkgs/development/go-modules/libs.json @@ -32,7 +32,7 @@ "type": "git", "url": "https://github.com/docopt/docopt-go", "rev": "784ddc588536785e7299f7272f39101f7faccc3f", - "sha256": "13x00cnady5znysfwca3x59dl04m8rvnk2yprgyqqpg2y4v0xmbf" + "sha256": "0wwz48jl9fvl1iknvn9dqr4gfy1qs03gxaikrxxp9gry6773v3sj" } }, { @@ -1411,5 +1411,122 @@ "rev": "c8748311a7528d0ba7330d302adbc5a677ef9c9e", "sha256": "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac" } + }, + { + "goPackagePath": "github.com/hashicorp/raft", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/raft", + "rev": "a8065f298505708bf60f518c09178149f3c06f21", + "sha256": "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn" + } + }, + { + "goPackagePath": "github.com/hashicorp/raft-boltdb", + "fetch": { + "type": "git", + "url": "https://github.com/hashicorp/raft-boltdb", + "rev": "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee", + "sha256": "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia" + } + }, + { + "goPackagePath": "github.com/rakyll/statik", + "fetch": { + "type": "git", + "url": "https://github.com/rakyll/statik", + "rev": "274df120e9065bdd08eb1120e0375e3dc1ae8465", + "sha256": "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp" + } + }, + { + "goPackagePath": "gopkg.in/fatih/pool.v2", + "fetch": { + "type": "git", + "url": "https://gopkg.in/fatih/pool.v2", + "rev": "cba550ebf9bce999a02e963296d4bc7a486cb715", + "sha256": "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0" + } + }, + { + "goPackagePath": "github.com/bmizerany/pat", + "fetch": { + "type": "git", + "url": "https://github.com/bmizerany/pat", + "rev": "b8a35001b773c267eb260a691f4e5499a3531600", + "sha256": "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz" + } + }, + { + "goPackagePath": "github.com/kimor79/gollectd", + "fetch": { + "type": "git", + "url": "https://github.com/kimor79/gollectd", + "rev": "cf6dec97343244b5d8a5485463675d42f574aa2d", + "sha256": "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa" + } + }, + { + "goPackagePath": "github.com/monochromegane/conflag", + "fetch": { + "type": "git", + "url": "https://github.com/monochromegane/conflag", + "rev": "6d68c9aa4183844ddc1655481798fe4d90d483e9", + "sha256": "0csfr5c8d3kbna9sqhzfp2z06wq6mc6ijja1zj2i82kzsq8534wa" + } + }, + { + "goPackagePath": "github.com/monochromegane/go-home", + "fetch": { + "type": "git", + "url": "https://github.com/monochromegane/go-home", + "rev": "25d9dda593924a11ea52e4ffbc8abdb0dbe96401", + "sha256": "172chakrj22xfm0bcda4qj5zqf7lwr53pzwc3xj6wz8vd2bcxkww" + } + }, + { + "goPackagePath": "github.com/monochromegane/terminal", + "fetch": { + "type": "git", + "url": "https://github.com/monochromegane/terminal", + "rev": "2da212063ce19aed90ee5bbb00ad1ad7393d7f48", + "sha256": "1rddaq9pk5q57ildms35iihghqk505gb349pb0f6k3svchay38nh" + } + }, + { + "goPackagePath": "github.com/monochromegane/go-gitignore", + "fetch": { + "type": "git", + "url": "https://github.com/monochromegane/go-gitignore", + "rev": "38717d0a108ca0e5af632cd6845ca77d45b50729", + "sha256": "0r1inabpgg6sn6i47b02hcmd2p4dc1ab1mcy20mn1b2k3mpdj4b7" + } + }, + { + "goPackagePath": "github.com/shiena/ansicolor", + "fetch": { + "type": "git", + "url": "https://github.com/shiena/ansicolor", + "rev": "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b", + "sha256": "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p" + } + }, + { + "goPackagePath": "github.com/pquerna/ffjson", + "fetch": { + "type": "git", + "url": "https://github.com/pquerna/ffjson", + "rev": "674bc015b5b3f50f9bb2561179778586b9af68c5", + "sha256": "0l53q7b1g25hfjm1iyynfs413rpav4c51yvdr244ivw1x3hksa7a" + } + }, + { + "goPackagePath": "gopkg.in/kothar/go-backblaze.v0", + "fetch": { + "type": "git", + "url": "https://gopkg.in/kothar/go-backblaze.v0", + "rev": "373819725fc560fa962c6cd883b533d2ebec4844", + "sha256": "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx" + } } ] diff --git a/pkgs/development/tools/deis/default.nix b/pkgs/development/tools/deis/default.nix index 5336a14c5a17..449af618cb18 100644 --- a/pkgs/development/tools/deis/default.nix +++ b/pkgs/development/tools/deis/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit }: buildGoPackage rec { name = "deis-${version}"; diff --git a/pkgs/development/tools/glide/default.nix b/pkgs/development/tools/glide/default.nix index cc63921976f5..9489f5a7bac8 100644 --- a/pkgs/development/tools/glide/default.nix +++ b/pkgs/development/tools/glide/default.nix @@ -1,9 +1,7 @@ # This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "glide-${version}"; version = "0.10.2"; rev = "${version}"; diff --git a/pkgs/development/tools/go-bindata/default.nix b/pkgs/development/tools/go-bindata/default.nix index cb9e51dfdfbc..4b87e74a6308 100644 --- a/pkgs/development/tools/go-bindata/default.nix +++ b/pkgs/development/tools/go-bindata/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "go-bindata-${version}"; diff --git a/pkgs/development/tools/go-repo-root/default.nix b/pkgs/development/tools/go-repo-root/default.nix index 15aa1504d93c..d6ae032f0782 100644 --- a/pkgs/development/tools/go-repo-root/default.nix +++ b/pkgs/development/tools/go-repo-root/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, gotools, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "go-repo-root-${version}"; @@ -16,5 +13,5 @@ buildGoPackage rec { sha256 = "1rlzp8kjv0a3dnfhyqcggny0ad648j5csr2x0siq5prahlp48mg4"; }; - buildInputs = [ tools ]; + buildInputs = [ gotools ]; } diff --git a/pkgs/development/tools/go2nix/default.nix b/pkgs/development/tools/go2nix/default.nix index bb0000d9e736..757dc8cb379f 100644 --- a/pkgs/development/tools/go2nix/default.nix +++ b/pkgs/development/tools/go2nix/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, go-bindata, goimports, nix-prefetch-git, git, makeWrapper, +{ stdenv, lib, buildGoPackage, go-bindata, goimports, nix-prefetch-git, git, makeWrapper, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with goPackages; - buildGoPackage rec { name = "go2nix-${version}"; version = "20160307-${stdenv.lib.strings.substring 0 7 rev}"; diff --git a/pkgs/development/tools/gocode/default.nix b/pkgs/development/tools/gocode/default.nix index 0a2b908c9fd1..8485a2c346b4 100644 --- a/pkgs/development/tools/gocode/default.nix +++ b/pkgs/development/tools/gocode/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "gocode-${version}"; diff --git a/pkgs/development/tools/goimports/default.nix b/pkgs/development/tools/goimports/default.nix index bcc82e80cbfa..5c69f34e28b3 100644 --- a/pkgs/development/tools/goimports/default.nix +++ b/pkgs/development/tools/goimports/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "goimports-${version}"; diff --git a/pkgs/development/tools/golint/default.nix b/pkgs/development/tools/golint/default.nix index 1e63eb73449a..29e5b28ad57f 100644 --- a/pkgs/development/tools/golint/default.nix +++ b/pkgs/development/tools/golint/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "lint-${version}"; diff --git a/pkgs/development/tools/gotags/default.nix b/pkgs/development/tools/gotags/default.nix index 65d0d29e1585..ad22d4ea4079 100644 --- a/pkgs/development/tools/gotags/default.nix +++ b/pkgs/development/tools/gotags/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "gotags-${version}"; diff --git a/pkgs/development/tools/gotools/default.nix b/pkgs/development/tools/gotools/default.nix new file mode 100644 index 000000000000..f00794a7eb0f --- /dev/null +++ b/pkgs/development/tools/gotools/default.nix @@ -0,0 +1,44 @@ +{ stdenv, lib, go, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: + +buildGoPackage rec { + name = "gotools-${version}"; + version = "20160519-${stdenv.lib.strings.substring 0 7 rev}"; + rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; + + goPackagePath = "golang.org/x/tools"; + goPackageAliases = [ "code.google.com/p/go.tools" ]; + + src = fetchgit { + inherit rev; + url = "https://go.googlesource.com/tools"; + sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; + }; + + goDeps = ./deps.json; + + preConfigure = '' + # Make the builtin tools available here + mkdir -p $bin/bin + eval $(go env | grep GOTOOLDIR) + find $GOTOOLDIR -type f | while read x; do + ln -sv "$x" "$bin/bin" + done + export GOTOOLDIR=$bin/bin + ''; + + excludedPackages = "\\(" + + stdenv.lib.concatStringsSep "\\|" ([ "testdata" ] ++ stdenv.lib.optionals (stdenv.lib.versionAtLeast go.meta.branch "1.5") [ "vet" "cover" ]) + + "\\)"; + + # Do not copy this without a good reason for enabling + # In this case tools is heavily coupled with go itself and embeds paths. + allowGoReference = true; + + # Set GOTOOLDIR for derivations adding this to buildInputs + postInstall = '' + mkdir -p $bin/nix-support + substituteAll ${../../go-modules/tools/setup-hook.sh} $bin/nix-support/setup-hook.tmp + cat $bin/nix-support/setup-hook.tmp >> $bin/nix-support/setup-hook + rm $bin/nix-support/setup-hook.tmp + ''; +} diff --git a/pkgs/development/tools/gotools/deps.json b/pkgs/development/tools/gotools/deps.json new file mode 100644 index 000000000000..76e8fd93aa7d --- /dev/null +++ b/pkgs/development/tools/gotools/deps.json @@ -0,0 +1,8 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "golang.org/x/net" + ] + } +] diff --git a/pkgs/development/tools/govers/default.nix b/pkgs/development/tools/govers/default.nix index b3e2b921bd2e..bd4dd28f599b 100644 --- a/pkgs/development/tools/govers/default.nix +++ b/pkgs/development/tools/govers/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "govers-${version}"; diff --git a/pkgs/development/tools/gox/default.nix b/pkgs/development/tools/gox/default.nix index 7b58bafcd627..030a59ed20c5 100644 --- a/pkgs/development/tools/gox/default.nix +++ b/pkgs/development/tools/gox/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "gox-${version}"; diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix index fc8ef5ff964a..7d566254633b 100644 --- a/pkgs/development/tools/packer/default.nix +++ b/pkgs/development/tools/packer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, go, gox, goPackages, fetchFromGitHub +{ stdenv, lib, go, gox, gotools, buildGoPackage, fetchFromGitHub , fetchgit, fetchhg, fetchbzr, fetchsvn }: stdenv.mkDerivation rec { @@ -6,10 +6,10 @@ stdenv.mkDerivation rec { version = "0.10.1"; src = import ./deps.nix { - inherit stdenv lib go gox goPackages fetchgit fetchhg fetchbzr fetchsvn; + inherit stdenv lib go gox gotools buildGoPackage fetchgit fetchhg fetchbzr fetchsvn; }; - buildInputs = [ go gox goPackages.tools ]; + buildInputs = [ go gox gotools ]; configurePhase = '' export GOPATH=$PWD/share/go diff --git a/pkgs/development/tools/packer/deps.nix b/pkgs/development/tools/packer/deps.nix index 2be1911cf91b..5ed606ad6c6b 100644 --- a/pkgs/development/tools/packer/deps.nix +++ b/pkgs/development/tools/packer/deps.nix @@ -1,14 +1,11 @@ -# This file was generated by go2nix. -{ stdenv, lib, go, gox, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, go, gox, gotools, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "packer-${version}"; version = "20160507-${stdenv.lib.strings.substring 0 7 rev}"; rev = "4e5f65131b5491ab44ff8aa0626abe4a85597ac0"; - buildInputs = [ go gox goPackages.tools ]; + buildInputs = [ go gox gotools ]; goPackagePath = "github.com/mitchellh/packer"; diff --git a/pkgs/development/tools/pup/default.nix b/pkgs/development/tools/pup/default.nix index 23ced868bd3e..772178dd84c1 100644 --- a/pkgs/development/tools/pup/default.nix +++ b/pkgs/development/tools/pup/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "pup-${version}"; diff --git a/pkgs/development/tools/remarshal/default.nix b/pkgs/development/tools/remarshal/default.nix index 048604beab9a..49de886654c8 100644 --- a/pkgs/development/tools/remarshal/default.nix +++ b/pkgs/development/tools/remarshal/default.nix @@ -1,6 +1,6 @@ -{ lib, goPackages, fetchFromGitHub }: +{ lib, buildGoPackage, fetchFromGitHub }: -goPackages.buildGoPackage rec { +buildGoPackage rec { name = "remarshal-${rev}"; rev = "0.3.0"; goPackagePath = "github.com/dbohdan/remarshal"; @@ -12,7 +12,7 @@ goPackages.buildGoPackage rec { sha256 = "0lhsqca3lq3xvdwsmrngv4p6b7k2lkbfnxnk5qj6jdd5y7f4b496"; }; - buildInputs = with goPackages; [ toml yaml-v2 ]; + goDeps = ./deps.json; meta = with lib; { description = "Convert between TOML, YAML and JSON"; diff --git a/pkgs/development/tools/remarshal/deps.json b/pkgs/development/tools/remarshal/deps.json new file mode 100644 index 000000000000..3b43c0e5ff60 --- /dev/null +++ b/pkgs/development/tools/remarshal/deps.json @@ -0,0 +1,9 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/BurntSushi/toml", + "gopkg.in/yaml.v2" + ] + } +] diff --git a/pkgs/development/tools/textql/default.nix b/pkgs/development/tools/textql/default.nix index abc9312c9e2d..65fbbcb9e043 100644 --- a/pkgs/development/tools/textql/default.nix +++ b/pkgs/development/tools/textql/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "textql-${version}"; diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix index 8ae26640f289..2b0ae98c4641 100644 --- a/pkgs/servers/caddy/default.nix +++ b/pkgs/servers/caddy/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "caddy-${version}"; version = "0.8.3"; rev = "e2234497b79603388b58ba226abb157aa4aaf065"; diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix index b98160c6be79..7dfd8b2a32ed 100644 --- a/pkgs/servers/consul/default.nix +++ b/pkgs/servers/consul/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, consul-ui, fetchFromGitHub }: +{ stdenv, lib, buildGo16Package, consul-ui, fetchFromGitHub }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "consul-${version}"; version = "0.6.4"; rev = "v${version}"; diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix index 05bb61049693..8bb672c286db 100644 --- a/pkgs/servers/etcd/default.nix +++ b/pkgs/servers/etcd/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, libpcap, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, libpcap, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "etcd-${version}"; diff --git a/pkgs/servers/gotty/default.nix b/pkgs/servers/gotty/default.nix index c826180d7585..5716779fb9a3 100644 --- a/pkgs/servers/gotty/default.nix +++ b/pkgs/servers/gotty/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "gotty-${version}"; diff --git a/pkgs/servers/interlock/default.nix b/pkgs/servers/interlock/default.nix index 9b49f051ac21..23131553539c 100644 --- a/pkgs/servers/interlock/default.nix +++ b/pkgs/servers/interlock/default.nix @@ -1,8 +1,5 @@ -# This file was generated by go2nix. { stdenv, lib, sudo, utillinux, coreutils, systemd, cryptsetup, - goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; + buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "interlock-${version}"; diff --git a/pkgs/servers/mesos-dns/default.nix b/pkgs/servers/mesos-dns/default.nix index 1fa2a6101788..d67aa337476b 100644 --- a/pkgs/servers/mesos-dns/default.nix +++ b/pkgs/servers/mesos-dns/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "mesos-dns-${version}"; diff --git a/pkgs/servers/monitoring/bosun/default.nix b/pkgs/servers/monitoring/bosun/default.nix index 77271b26a8de..5b5593d55142 100644 --- a/pkgs/servers/monitoring/bosun/default.nix +++ b/pkgs/servers/monitoring/bosun/default.nix @@ -1,6 +1,6 @@ -{ lib, fetchFromGitHub, goPackages }: +{ lib, fetchFromGitHub, buildGoPackage }: -goPackages.buildGoPackage rec { +buildGoPackage rec { name = "bosun"; rev = "0.5.0-alpha"; diff --git a/pkgs/servers/monitoring/consul-alerts/default.nix b/pkgs/servers/monitoring/consul-alerts/default.nix index 98cb3a3db48c..ee904dec6eba 100644 --- a/pkgs/servers/monitoring/consul-alerts/default.nix +++ b/pkgs/servers/monitoring/consul-alerts/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "consul-alerts-${version}"; version = "0.3.3"; rev = "v${version}"; diff --git a/pkgs/servers/monitoring/grafana/default.nix b/pkgs/servers/monitoring/grafana/default.nix index 55ef139624c4..28bf83a247fc 100644 --- a/pkgs/servers/monitoring/grafana/default.nix +++ b/pkgs/servers/monitoring/grafana/default.nix @@ -1,6 +1,6 @@ -{ lib, goPackages, fetchurl, fetchFromGitHub }: +{ lib, buildGoPackage, fetchurl, fetchFromGitHub }: -goPackages.buildGoPackage rec { +buildGoPackage rec { version = "3.0.1"; name = "grafana-v${version}"; goPackagePath = "github.com/grafana/grafana"; diff --git a/pkgs/servers/monitoring/heapster/default.nix b/pkgs/servers/monitoring/heapster/default.nix index f50a52fe2804..db3c518c7296 100644 --- a/pkgs/servers/monitoring/heapster/default.nix +++ b/pkgs/servers/monitoring/heapster/default.nix @@ -1,6 +1,6 @@ -{ lib, goPackages, fetchFromGitHub, docker }: +{ lib, buildGoPackage, fetchFromGitHub, docker }: -goPackages.buildGoPackage rec { +buildGoPackage rec { rev = "3057a2c07061c8d9ffaf77e5442ffd7512ac0133"; name = "heapster-${lib.strings.substring 0 7 rev}"; goPackagePath = "k8s.io/heapster"; diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix index 2bed947aad00..846d1d57277d 100644 --- a/pkgs/servers/monitoring/prometheus/alertmanager.nix +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, go, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "alertmanager-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/cli.nix b/pkgs/servers/monitoring/prometheus/cli.nix index 5dd7c207f104..20f6e7249abf 100644 --- a/pkgs/servers/monitoring/prometheus/cli.nix +++ b/pkgs/servers/monitoring/prometheus/cli.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "prometheus_cli-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix index 3b22fedfd930..49701505aa61 100644 --- a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "collectd-exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index d6b82c38d01e..aa76fdc455ae 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, go, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "prometheus-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix index efb5abd9f9f7..140bde2c0cbf 100644 --- a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "haproxy_exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix index a06c9671f817..0fdff08ca1da 100644 --- a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "mesos_exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix index 29bf6bdb3bb2..d0c1c2073f5b 100644 --- a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "mysqld_exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix index 5da457c0a190..c3b25e2fcc56 100644 --- a/pkgs/servers/monitoring/prometheus/nginx-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/nginx-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "nginx_exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/node-exporter.nix b/pkgs/servers/monitoring/prometheus/node-exporter.nix index 276ff73d0fcc..3b8d6fe16664 100644 --- a/pkgs/servers/monitoring/prometheus/node-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/node-exporter.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "node_exporter-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/prom2json.nix b/pkgs/servers/monitoring/prometheus/prom2json.nix index 512cd4ca22ca..5f45c63d96e6 100644 --- a/pkgs/servers/monitoring/prometheus/prom2json.nix +++ b/pkgs/servers/monitoring/prometheus/prom2json.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "prom2json-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix index 751748783e47..83ef4e209311 100644 --- a/pkgs/servers/monitoring/prometheus/pushgateway.nix +++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, go-bindata, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, go, buildGoPackage, go-bindata, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "pushgateway-${version}"; diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix index 4458b668a197..90a35bf4592d 100644 --- a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix +++ b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "statsd_bridge-${version}"; diff --git a/pkgs/servers/nosql/influxdb/default.nix b/pkgs/servers/nosql/influxdb/default.nix index 50abc70bfb71..1372b6a3fc36 100644 --- a/pkgs/servers/nosql/influxdb/default.nix +++ b/pkgs/servers/nosql/influxdb/default.nix @@ -1,6 +1,6 @@ -{ lib, goPackages, fetchFromGitHub }: +{ lib, buildGoPackage, fetchFromGitHub }: -goPackages.buildGoPackage rec { +buildGoPackage rec { name = "influxdb-${rev}"; rev = "v0.9.4"; goPackagePath = "github.com/influxdb/influxdb"; @@ -14,10 +14,7 @@ goPackages.buildGoPackage rec { excludedPackages = "test"; - propagatedBuildInputs = with goPackages; [ - raft raft-boltdb snappy crypto gogo.protobuf pool pat toml - gollectd statik liner - ]; + goDeps = ./deps.json; meta = with lib; { description = "An open-source distributed time series database"; diff --git a/pkgs/servers/nosql/influxdb/deps.json b/pkgs/servers/nosql/influxdb/deps.json new file mode 100644 index 000000000000..f091b58e8dc4 --- /dev/null +++ b/pkgs/servers/nosql/influxdb/deps.json @@ -0,0 +1,21 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/peterh/liner", + "github.com/BurntSushi/toml", + "github.com/kimor79/gollectd", + "github.com/bmizerany/pat", + "gopkg.in/fatih/pool.v2", + "github.com/rakyll/statik", + "github.com/armon/go-metrics", + "github.com/boltdb/bolt", + "github.com/golang/snappy", + "github.com/hashicorp/go-msgpack", + "github.com/hashicorp/raft-boltdb", + "golang.org/x/crypto", + "github.com/gogo/protobuf", + "github.com/hashicorp/raft" + ] + } +] diff --git a/pkgs/servers/nsq/default.nix b/pkgs/servers/nsq/default.nix index 5831340eccd9..b716a0425771 100644 --- a/pkgs/servers/nsq/default.nix +++ b/pkgs/servers/nsq/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "nsq-${version}"; diff --git a/pkgs/servers/oauth2_proxy/default.nix b/pkgs/servers/oauth2_proxy/default.nix index 9381db95d77d..3e3bcea46a25 100644 --- a/pkgs/servers/oauth2_proxy/default.nix +++ b/pkgs/servers/oauth2_proxy/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "oauth2_proxy-${version}"; diff --git a/pkgs/servers/serf/default.nix b/pkgs/servers/serf/default.nix index 5f4c6453de71..4a37213846a1 100644 --- a/pkgs/servers/serf/default.nix +++ b/pkgs/servers/serf/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "serf-${version}"; diff --git a/pkgs/servers/skydns/default.nix b/pkgs/servers/skydns/default.nix index fc4c82f50429..b02373ef51c9 100644 --- a/pkgs/servers/skydns/default.nix +++ b/pkgs/servers/skydns/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "skydns-${version}"; diff --git a/pkgs/servers/skydns/deps.json b/pkgs/servers/skydns/deps.json index 9ddbfa3c4347..446f60f3279d 100644 --- a/pkgs/servers/skydns/deps.json +++ b/pkgs/servers/skydns/deps.json @@ -5,6 +5,7 @@ "github.com/miekg/dns", "github.com/prometheus/client_golang", "github.com/prometheus/client_model", + "bitbucket.org/ww/goautoneg", "github.com/prometheus/common", "github.com/prometheus/procfs", "github.com/coreos/go-systemd", diff --git a/pkgs/shells/oh/default.nix b/pkgs/shells/oh/default.nix index 3c8b2c89524d..c6d3ad06df46 100644 --- a/pkgs/shells/oh/default.nix +++ b/pkgs/shells/oh/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "oh-${version}"; diff --git a/pkgs/tools/X11/go-sct/default.nix b/pkgs/tools/X11/go-sct/default.nix index 18877917d0d3..197a7b80af36 100644 --- a/pkgs/tools/X11/go-sct/default.nix +++ b/pkgs/tools/X11/go-sct/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, xorg, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, xorg, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "go-sct-${version}"; diff --git a/pkgs/tools/admin/lxd/default.nix b/pkgs/tools/admin/lxd/default.nix index e1adb6ccf90d..c8717ad1f6cb 100644 --- a/pkgs/tools/admin/lxd/default.nix +++ b/pkgs/tools/admin/lxd/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, pkgconfig, lxc, goPackages, fetchFromGitHub }: - -with goPackages; +{ stdenv, lib, pkgconfig, lxc, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "lxd-${version}"; diff --git a/pkgs/tools/filesystems/go-mtpfs/default.nix b/pkgs/tools/filesystems/go-mtpfs/default.nix index 55be2dd9e73b..0bb92f14e15c 100644 --- a/pkgs/tools/filesystems/go-mtpfs/default.nix +++ b/pkgs/tools/filesystems/go-mtpfs/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, pkgconfig, libusb1, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, pkgconfig, libusb1, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "go-mtpfs-${version}"; diff --git a/pkgs/tools/misc/asciinema/default.nix b/pkgs/tools/misc/asciinema/default.nix index 9a1269815afb..cee4ec925c01 100644 --- a/pkgs/tools/misc/asciinema/default.nix +++ b/pkgs/tools/misc/asciinema/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "asciinema-${version}"; diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix index d1fd3ac0afce..f9cf313b7748 100644 --- a/pkgs/tools/misc/fzf/default.nix +++ b/pkgs/tools/misc/fzf/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, ncurses, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, ncurses, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "fzf-${version}"; diff --git a/pkgs/tools/misc/gawp/default.nix b/pkgs/tools/misc/gawp/default.nix index 552d01041310..618d6c752e6e 100644 --- a/pkgs/tools/misc/gawp/default.nix +++ b/pkgs/tools/misc/gawp/default.nix @@ -1,8 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit }: +{ stdenv, lib, buildGoPackage, fetchgit }: with builtins; -with goPackages; buildGoPackage rec { name = "gawp-${version}"; diff --git a/pkgs/tools/misc/i3cat/default.nix b/pkgs/tools/misc/i3cat/default.nix index c0333a14ed47..1cda3149bb42 100644 --- a/pkgs/tools/misc/i3cat/default.nix +++ b/pkgs/tools/misc/i3cat/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "i3cat-${version}"; diff --git a/pkgs/tools/misc/mongodb-tools/default.nix b/pkgs/tools/misc/mongodb-tools/default.nix index 74240a859c89..723410183f1b 100644 --- a/pkgs/tools/misc/mongodb-tools/default.nix +++ b/pkgs/tools/misc/mongodb-tools/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: let tools = [ diff --git a/pkgs/tools/misc/upower-notify/default.nix b/pkgs/tools/misc/upower-notify/default.nix index fef1707d5052..d02e2865c8f5 100644 --- a/pkgs/tools/misc/upower-notify/default.nix +++ b/pkgs/tools/misc/upower-notify/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: # To use upower-notify, the maintainer suggests adding something like this to your configuration.nix: # diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix index be2f10b3a35e..c80f5d36567d 100644 --- a/pkgs/tools/networking/flannel/default.nix +++ b/pkgs/tools/networking/flannel/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "flannel-${version}"; diff --git a/pkgs/tools/networking/ngrok/default.nix b/pkgs/tools/networking/ngrok/default.nix index d7c4bcf04378..9644fa069722 100644 --- a/pkgs/tools/networking/ngrok/default.nix +++ b/pkgs/tools/networking/ngrok/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, pkgconfig, goPackages, go-bindata, fetchFromGitHub }: - -with goPackages; +{ stdenv, lib, pkgconfig, buildGoPackage, go-bindata, fetchFromGitHub }: buildGoPackage rec { name = "ngrok-${version}"; diff --git a/pkgs/tools/networking/s3gof3r/default.nix b/pkgs/tools/networking/s3gof3r/default.nix index e751d991542d..6231d5005dc9 100644 --- a/pkgs/tools/networking/s3gof3r/default.nix +++ b/pkgs/tools/networking/s3gof3r/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "s3gof3r-${version}"; diff --git a/pkgs/tools/security/hologram/default.nix b/pkgs/tools/security/hologram/default.nix index d73827f636b4..5e8d260d6936 100644 --- a/pkgs/tools/security/hologram/default.nix +++ b/pkgs/tools/security/hologram/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "hologram-${version}"; diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix index 18f33da8ea10..8470441f530b 100644 --- a/pkgs/tools/security/vault/default.nix +++ b/pkgs/tools/security/vault/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "vault-${version}"; version = "0.5.2"; rev = "v${version}"; diff --git a/pkgs/tools/system/confd/default.nix b/pkgs/tools/system/confd/default.nix index 416c856a5ae4..5e5e0edcfe58 100644 --- a/pkgs/tools/system/confd/default.nix +++ b/pkgs/tools/system/confd/default.nix @@ -1,7 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "confd-${version}"; diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix index 989ad2b51a18..7c4bda8a5699 100644 --- a/pkgs/tools/system/consul-template/default.nix +++ b/pkgs/tools/system/consul-template/default.nix @@ -1,9 +1,6 @@ -# This file was generated by go2nix. -{ stdenv, lib, go16Packages, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: -with go16Packages; - -buildGoPackage rec { +buildGo16Package rec { name = "consul-template-${version}"; version = "0.14.0"; rev = "v${version}"; diff --git a/pkgs/tools/text/platinum-searcher/default.nix b/pkgs/tools/text/platinum-searcher/default.nix index ca4ac0b8a9a5..9eae37c6d1a7 100644 --- a/pkgs/tools/text/platinum-searcher/default.nix +++ b/pkgs/tools/text/platinum-searcher/default.nix @@ -1,14 +1,10 @@ -{ stdenv, lib, go, goPackages, fetchFromGitHub }: - -with goPackages; +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "the_platinum_searcher-${version}"; version = "2.1.1"; rev = "v2.1.1"; - buildInputs = [ go go-flags ansicolor text toml yaml-v2 ]; - goPackagePath = "github.com/monochromegane/the_platinum_searcher"; src = fetchFromGitHub { @@ -18,48 +14,7 @@ buildGoPackage rec { sha256 = "06cs936w3l64ikszcysdm9ijn52kwgi1ffjxkricxbdb677gsk23"; }; - extraSrcs = [ - { - goPackagePath = "github.com/monochromegane/conflag"; - - src = fetchFromGitHub { - owner = "monochromegane"; - repo = "conflag"; - rev = "6d68c9aa4183844ddc1655481798fe4d90d483e9"; - sha256 = "0csfr5c8d3kbna9sqhzfp2z06wq6mc6ijja1zj2i82kzsq8534wa"; - }; - } - { - goPackagePath = "github.com/monochromegane/go-gitignore"; - - src = fetchFromGitHub { - owner = "monochromegane"; - repo = "go-gitignore"; - rev = "38717d0a108ca0e5af632cd6845ca77d45b50729"; - sha256 = "0r1inabpgg6sn6i47b02hcmd2p4dc1ab1mcy20mn1b2k3mpdj4b7"; - }; - } - { - goPackagePath = "github.com/monochromegane/go-home"; - - src = fetchFromGitHub { - owner = "monochromegane"; - repo = "go-home"; - rev = "25d9dda593924a11ea52e4ffbc8abdb0dbe96401"; - sha256 = "172chakrj22xfm0bcda4qj5zqf7lwr53pzwc3xj6wz8vd2bcxkww"; - }; - } - { - goPackagePath = "github.com/monochromegane/terminal"; - - src = fetchFromGitHub { - owner = "monochromegane"; - repo = "terminal"; - rev = "2da212063ce19aed90ee5bbb00ad1ad7393d7f48"; - sha256 = "1rddaq9pk5q57ildms35iihghqk505gb349pb0f6k3svchay38nh"; - }; - } - ]; + goDeps = ./deps.json; meta = with stdenv.lib; { homepage = https://github.com/monochromegane/the_platinum_searcher; diff --git a/pkgs/tools/text/platinum-searcher/deps.json b/pkgs/tools/text/platinum-searcher/deps.json new file mode 100644 index 000000000000..fc137e262983 --- /dev/null +++ b/pkgs/tools/text/platinum-searcher/deps.json @@ -0,0 +1,16 @@ +[ + { + "include": "../../libs.json", + "packages": [ + "github.com/BurntSushi/toml", + "github.com/monochromegane/conflag", + "github.com/monochromegane/go-home", + "github.com/monochromegane/terminal", + "github.com/monochromegane/go-gitignore", + "github.com/shiena/ansicolor", + "golang.org/x/text", + "gopkg.in/yaml.v2", + "github.com/jessevdk/go-flags" + ] + } +] diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 2db3a392fc84..f856d938e593 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -7086,8 +7086,6 @@ in gio-sharp = callPackage ../development/libraries/gio-sharp { }; - icon-lang = callPackage ../development/interpreters/icon-lang { }; - libgit2 = callPackage ../development/libraries/git2 ( stdenv.lib.optionalAttrs stdenv.isDarwin { inherit (darwin) libiconv; @@ -9418,8 +9416,6 @@ in xgboost = callPackage ../development/libraries/xgboost { }; - xgeometry-select = callPackage ../tools/X11/xgeometry-select { }; - # Avoid using this. It isn't really a wrapper anymore, but we keep the name. xlibsWrapper = callPackage ../development/libraries/xlibs-wrapper { packages = [ @@ -9599,31 +9595,19 @@ in ### DEVELOPMENT / GO MODULES - go14Packages = callPackage ./go-packages.nix { + buildGo14Package = callPackage ../development/go-modules/generic { go = go_1_4; - buildGoPackage = callPackage ../development/go-modules/generic { - go = go_1_4; - }; - overrides = (config.goPackageOverrides or (p: {})) pkgs; }; - go15Packages = callPackage ./go-packages.nix { + buildGo15Package = callPackage ../development/go-modules/generic { go = go_1_5; - buildGoPackage = callPackage ../development/go-modules/generic { - go = go_1_5; - }; - overrides = (config.goPackageOverrides or (p: {})) pkgs; }; - go16Packages = callPackage ./go-packages.nix { + buildGo16Package = callPackage ../development/go-modules/generic { go = go_1_6; - buildGoPackage = callPackage ../development/go-modules/generic { - go = go_1_6; - }; - overrides = (config.goPackageOverrides or (p: {})) pkgs; }; - goPackages = go16Packages; + buildGoPackage = buildGo15Package; go2nix = callPackage ../development/tools/go2nix { }; @@ -11166,6 +11150,8 @@ in govers = callPackage ../development/tools/govers { }; + gotools = callPackage ../development/tools/gotools { }; + gogoclient = callPackage ../os-specific/linux/gogoclient { }; nss_ldap = callPackage ../os-specific/linux/nss_ldap { }; From 30acfc3b45834d3cf12bf4802955491608457ff1 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 02:46:06 +0200 Subject: [PATCH 471/520] ipfs: extracted from goPackages --- pkgs/applications/networking/ipfs/default.nix | 21 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/networking/ipfs/default.nix diff --git a/pkgs/applications/networking/ipfs/default.nix b/pkgs/applications/networking/ipfs/default.nix new file mode 100644 index 000000000000..694166cc2428 --- /dev/null +++ b/pkgs/applications/networking/ipfs/default.nix @@ -0,0 +1,21 @@ +{ stdenv, lib, buildGoPackage, consul-ui, fetchFromGitHub }: + +buildGoPackage rec { + name = "ipfs-${version}"; + version = "i20160112--${stdenv.lib.strings.substring 0 7 rev}"; + rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; + + goPackagePath = "github.com/ipfs/go-ipfs"; + + src = fetchFromGitHub { + owner = "ipfs"; + repo = "go-ipfs"; + inherit rev; + sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; + }; + + meta = with stdenv.lib; { + description = "A global, versioned, peer-to-peer filesystem"; + license = licenses.mit; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f856d938e593..9545ce0eb85b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2063,7 +2063,7 @@ in iperf3 = callPackage ../tools/networking/iperf/3.nix { }; iperf = self.iperf3; - ipfs = self.goPackages.ipfs.bin // { outputs = [ "bin" ]; }; + ipfs = callPackage ../applications/networking/ipfs { }; ipmitool = callPackage ../tools/system/ipmitool { static = false; From 9683f5751f5699ca3a03a677f87647e534fe1c56 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 08:56:13 +0200 Subject: [PATCH 472/520] FIX: deis and gawp shas --- pkgs/development/tools/deis/default.nix | 9 +++++---- pkgs/tools/misc/gawp/default.nix | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/tools/deis/default.nix b/pkgs/development/tools/deis/default.nix index 449af618cb18..471cc80663da 100644 --- a/pkgs/development/tools/deis/default.nix +++ b/pkgs/development/tools/deis/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "deis-${version}"; @@ -14,10 +14,11 @@ buildGoPackage rec { fi ''; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/deis/deis"; - sha256 = "1fblg3gf7dh5hhm4ajq7yl7iy6gw8p5xlh4z8kvfy542m1fzr0dc"; + owner = "deis"; + repo = "deis"; + sha256 = "1qv9lxqx7m18029lj8cw3k7jngvxs4iciwrypdy0gd2nnghc68sw"; }; goDeps = ./deps.json; diff --git a/pkgs/tools/misc/gawp/default.nix b/pkgs/tools/misc/gawp/default.nix index 618d6c752e6e..6e3fe1223fc4 100644 --- a/pkgs/tools/misc/gawp/default.nix +++ b/pkgs/tools/misc/gawp/default.nix @@ -12,7 +12,7 @@ buildGoPackage rec { src = fetchgit { inherit rev; url = "https://github.com/martingallagher/gawp"; - sha256 = "0r4bp4w3s9rkmg3cz9jb7d6ngh7vfj31p9kbim6mhilxvmgjk4ly"; + sha256 = "0bbmbb1xxdgvqvg1ssn9d4j213li7bbbx3y42iz4fs10xv7x4r0c"; }; goDeps = ./deps.json; From 8dc356c731a8478af4b6509f18d7c79489121433 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 10:05:20 +0200 Subject: [PATCH 473/520] prometheus-alertmanager: fetchgit -> fetchFromGitHub --- pkgs/servers/monitoring/prometheus/alertmanager.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix index 846d1d57277d..fc204fc3f152 100644 --- a/pkgs/servers/monitoring/prometheus/alertmanager.nix +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, go, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, go, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "alertmanager-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/alertmanager"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/alertmanager"; + owner = "prometheus"; + repo = "alertmanager"; sha256 = "1ya465bns6cj2lqbipmfm13wz8kxii5h9mm7lc0ba1xv26xx5zs7"; }; From bbc37e0eb7bf9d97f6d3e796833968180606cfaf Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 12:26:56 +0200 Subject: [PATCH 474/520] Moving from fetchgit generated by go2nix to fetchFromGitHub where rev is a tag --- pkgs/applications/networking/syncthing012/default.nix | 9 +++++---- pkgs/applications/version-management/git-lfs/default.nix | 7 ++++--- pkgs/development/tools/textql/default.nix | 7 ++++--- pkgs/servers/etcd/default.nix | 7 ++++--- pkgs/servers/gotty/default.nix | 9 +++++---- pkgs/servers/interlock/default.nix | 9 +++++---- pkgs/servers/mesos-dns/default.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/cli.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/collectd-exporter.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/default.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/haproxy-exporter.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/mesos-exporter.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/mysqld-exporter.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/node-exporter.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/prom2json.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/pushgateway.nix | 7 ++++--- pkgs/servers/monitoring/prometheus/statsd-bridge.nix | 7 ++++--- pkgs/servers/nsq/default.nix | 7 ++++--- pkgs/servers/skydns/default.nix | 7 ++++--- pkgs/tools/misc/fzf/default.nix | 7 ++++--- pkgs/tools/misc/mongodb-tools/default.nix | 7 ++++--- pkgs/tools/networking/flannel/default.nix | 7 ++++--- pkgs/tools/system/confd/default.nix | 7 ++++--- 23 files changed, 95 insertions(+), 72 deletions(-) diff --git a/pkgs/applications/networking/syncthing012/default.nix b/pkgs/applications/networking/syncthing012/default.nix index 6f6336eef709..9f436d21bc3d 100644 --- a/pkgs/applications/networking/syncthing012/default.nix +++ b/pkgs/applications/networking/syncthing012/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "syncthing-${version}"; @@ -9,10 +9,11 @@ buildGoPackage rec { goPackagePath = "github.com/syncthing/syncthing"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/syncthing/syncthing"; - sha256 = "108w7gvm3nbbsgp3h5p84fj4ba0siaz932i7yyryly486gzvpm43"; + owner = "syncthing"; + repo = "syncthing"; + sha256 = "0g4sj509h45iq6g7b0pl88rbbn7c7s01774yjc6bl376x1xrl6a1"; }; goDeps = ./deps.json; diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix index 089997342c0e..e5fc8173919d 100644 --- a/pkgs/applications/version-management/git-lfs/default.nix +++ b/pkgs/applications/version-management/git-lfs/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "git-lfs-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/github/git-lfs"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/github/git-lfs"; + owner = "github"; + repo = "git-lfs"; sha256 = "0z8giavcvfpzmhnxxsqvsgabjfq5gpka8jy4qvadf60yibxds9fp"; }; diff --git a/pkgs/development/tools/textql/default.nix b/pkgs/development/tools/textql/default.nix index 65fbbcb9e043..4caa659c17a3 100644 --- a/pkgs/development/tools/textql/default.nix +++ b/pkgs/development/tools/textql/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "textql-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/dinedal/textql"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/dinedal/textql"; + owner = "dinedal"; + repo = "textql"; sha256 = "1b61w4pc5gl7m12mphricihzq7ifnzwn0yyw3ypv0d0fj26h5hc3"; }; diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix index 8bb672c286db..782d7001deec 100644 --- a/pkgs/servers/etcd/default.nix +++ b/pkgs/servers/etcd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, libpcap, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, libpcap, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "etcd-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/coreos/etcd"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/coreos/etcd"; + owner = "coreos"; + repo = "etcd"; sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7"; }; diff --git a/pkgs/servers/gotty/default.nix b/pkgs/servers/gotty/default.nix index 5716779fb9a3..b8718898f4bc 100644 --- a/pkgs/servers/gotty/default.nix +++ b/pkgs/servers/gotty/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "gotty-${version}"; @@ -7,10 +7,11 @@ buildGoPackage rec { goPackagePath = "github.com/yudai/gotty"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/yudai/gotty"; - sha256 = "1jc620j4y2r8706r6qn7g2nghiidaaj7f8m2vjgq2gwv288qjafd"; + owner = "yudai"; + repo = "gotty"; + sha256 = "0gvnbr61d5si06ik2j075jg00r9b94ryfgg06nqxkf10dp8lgi09"; }; goDeps = ./deps.json; diff --git a/pkgs/servers/interlock/default.nix b/pkgs/servers/interlock/default.nix index 23131553539c..5842495e323e 100644 --- a/pkgs/servers/interlock/default.nix +++ b/pkgs/servers/interlock/default.nix @@ -1,5 +1,5 @@ { stdenv, lib, sudo, utillinux, coreutils, systemd, cryptsetup, - buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: + buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "interlock-${version}"; @@ -10,10 +10,11 @@ buildGoPackage rec { subPackages = [ "./cmd/interlock" ]; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/inversepath/interlock"; - sha256 = "1lnaz0vdg0k21wipc6w8h580cbpymiyasah98yzyzrmwraclb2bb"; + owner = "inversepath"; + repo = "interlock"; + sha256 = "06aqx3jy744yx29xyg8ips0dw16186hfqbxdv3hfrmwxmaxhl4lz"; }; goDeps = ./deps.json; diff --git a/pkgs/servers/mesos-dns/default.nix b/pkgs/servers/mesos-dns/default.nix index d67aa337476b..86944c036e49 100644 --- a/pkgs/servers/mesos-dns/default.nix +++ b/pkgs/servers/mesos-dns/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "mesos-dns-${version}"; @@ -10,9 +10,10 @@ buildGoPackage rec { # Avoid including the benchmarking test helper in the output: subPackages = [ "." ]; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/mesosphere/mesos-dns"; + owner = "mesosphere"; + repo = "mesos-dns"; sha256 = "0zs6lcgk43j7jp370qnii7n55cd9pa8gl56r8hy4nagfvlvrcm02"; }; diff --git a/pkgs/servers/monitoring/prometheus/cli.nix b/pkgs/servers/monitoring/prometheus/cli.nix index 20f6e7249abf..21bc242ec467 100644 --- a/pkgs/servers/monitoring/prometheus/cli.nix +++ b/pkgs/servers/monitoring/prometheus/cli.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "prometheus_cli-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/prometheus_cli"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/prometheus_cli"; + owner = "prometheus"; + repo = "prometheus_cli"; sha256 = "1qxqrcbd0d4mrjrgqz882jh7069nn5gz1b84rq7d7z1f1dqhczxn"; }; diff --git a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix index 49701505aa61..bcb1889224c2 100644 --- a/pkgs/servers/monitoring/prometheus/collectd-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/collectd-exporter.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "collectd-exporter-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/collectd_exporter"; - src= fetchgit { + src= fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/collectd_exporter"; + owner = "prometheus"; + repo = "collectd_exporter"; sha256 = "165zsdn0lffb6fvxz75szmm152a6wmia5skb96k1mv59qbmn9fi1"; }; diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index aa76fdc455ae..1345914c4f5f 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, go, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, go, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "prometheus-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/prometheus"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/prometheus"; + owner = "prometheus"; + repo = "prometheus"; sha256 = "176198krna2i37dfhwsqi7m36sqn175yiny6n52vj27mc9s8ggzx"; }; diff --git a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix index 140bde2c0cbf..7de99ecd3950 100644 --- a/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/haproxy-exporter.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "haproxy_exporter-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/haproxy_exporter"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/haproxy_exporter"; + owner = "prometheus"; + repo = "haproxy_exporter"; sha256 = "0cwls1d4hmzjkwc50mjkxjb4sa4q6yq581wlc5sg9mdvl6g91zxr"; }; diff --git a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix index 0fdff08ca1da..ddd7a17364bf 100644 --- a/pkgs/servers/monitoring/prometheus/mesos-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mesos-exporter.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "mesos_exporter-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/mesos_exporter"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/mesos_exporter"; + owner = "prometheus"; + repo = "mesos_exporter"; sha256 = "059az73j717gd960g4jigrxnvqrjh9jw1c324xpwaafa0bf10llm"; }; diff --git a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix index d0c1c2073f5b..f7256287955d 100644 --- a/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/mysqld-exporter.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "mysqld_exporter-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/mysqld_exporter"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/mysqld_exporter"; + owner = "prometheus"; + repo = "mysqld_exporter"; sha256 = "10xnyxyb6saz8pq3ijp424hxy59cvm1b5c9zcbw7ddzzkh1f6jd9"; }; diff --git a/pkgs/servers/monitoring/prometheus/node-exporter.nix b/pkgs/servers/monitoring/prometheus/node-exporter.nix index 3b8d6fe16664..a5dd161b55e4 100644 --- a/pkgs/servers/monitoring/prometheus/node-exporter.nix +++ b/pkgs/servers/monitoring/prometheus/node-exporter.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "node_exporter-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/node_exporter"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/node_exporter"; + owner = "prometheus"; + repo = "node_exporter"; sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; }; diff --git a/pkgs/servers/monitoring/prometheus/prom2json.nix b/pkgs/servers/monitoring/prometheus/prom2json.nix index 5f45c63d96e6..19148ec1cb40 100644 --- a/pkgs/servers/monitoring/prometheus/prom2json.nix +++ b/pkgs/servers/monitoring/prometheus/prom2json.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "prom2json-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/prom2json"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/prom2json"; + owner = "prometheus"; + repo = "prom2json"; sha256 = "0wwh3mz7z81fwh8n78sshvj46akcgjhxapjgfic5afc4nv926zdl"; }; diff --git a/pkgs/servers/monitoring/prometheus/pushgateway.nix b/pkgs/servers/monitoring/prometheus/pushgateway.nix index 83ef4e209311..a1944608ce0a 100644 --- a/pkgs/servers/monitoring/prometheus/pushgateway.nix +++ b/pkgs/servers/monitoring/prometheus/pushgateway.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, go, buildGoPackage, go-bindata, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, go, buildGoPackage, go-bindata, fetchFromGitHub }: buildGoPackage rec { name = "pushgateway-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/pushgateway"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/pushgateway"; + owner = "prometheus"; + repo = "pushgateway"; sha256 = "17q5z9msip46wh3vxcsq9lvvhbxg75akjjcr2b29zrky8bp2m230"; }; diff --git a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix index 90a35bf4592d..0d9f0bb98856 100644 --- a/pkgs/servers/monitoring/prometheus/statsd-bridge.nix +++ b/pkgs/servers/monitoring/prometheus/statsd-bridge.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "statsd_bridge-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/prometheus/statsd_bridge"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/prometheus/statsd_bridge"; + owner = "prometheus"; + repo = "statsd_bridge"; sha256 = "1fndpmd1k0a3ar6f7zpisijzc60f2dng5399nld1i1cbmd8jybjr"; }; diff --git a/pkgs/servers/nsq/default.nix b/pkgs/servers/nsq/default.nix index b716a0425771..334b78c91289 100644 --- a/pkgs/servers/nsq/default.nix +++ b/pkgs/servers/nsq/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "nsq-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/bitly/nsq"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/nsqio/nsq"; + owner = "bitly"; + repo = "nsq"; sha256 = "1r7jgplzn6bgwhd4vn8045n6cmm4iqbzssbjgj7j1c28zbficy2f"; }; diff --git a/pkgs/servers/skydns/default.nix b/pkgs/servers/skydns/default.nix index b02373ef51c9..657352634efc 100644 --- a/pkgs/servers/skydns/default.nix +++ b/pkgs/servers/skydns/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "skydns-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/skynetservices/skydns"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/skynetservices/skydns"; + owner = "skynetservices"; + repo = "skydns"; sha256 = "0i1iaif79cwnwm7pc8nxfa261cgl4zhm3p2a5a3smhy1ibgccpq7"; }; diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix index f9cf313b7748..eaf1f1869d6e 100644 --- a/pkgs/tools/misc/fzf/default.nix +++ b/pkgs/tools/misc/fzf/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, ncurses, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, ncurses, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "fzf-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/junegunn/fzf"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/junegunn/fzf"; + owner = "junegunn"; + repo = "fzf"; sha256 = "02qqcnijv8z3736iczbx082yizpqk02g5k746k7sdgfkgyxydppk"; }; diff --git a/pkgs/tools/misc/mongodb-tools/default.nix b/pkgs/tools/misc/mongodb-tools/default.nix index 723410183f1b..113b8b2b4cec 100644 --- a/pkgs/tools/misc/mongodb-tools/default.nix +++ b/pkgs/tools/misc/mongodb-tools/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: let tools = [ @@ -14,9 +14,10 @@ buildGoPackage rec { goPackagePath = "github.com/mongodb/mongo-tools"; subPackages = map (t: t + "/main") tools; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/mongodb/mongo-tools"; + owner = "mongodb"; + repo = "mongo-tools"; sha256 = "142vxgniri1mfy2xmfgxhbdp6k6h8c5milv454krv1b51v43hsbm"; }; diff --git a/pkgs/tools/networking/flannel/default.nix b/pkgs/tools/networking/flannel/default.nix index c80f5d36567d..53b5e4839ba1 100644 --- a/pkgs/tools/networking/flannel/default.nix +++ b/pkgs/tools/networking/flannel/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "flannel-${version}"; @@ -7,9 +7,10 @@ buildGoPackage rec { goPackagePath = "github.com/coreos/flannel"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/coreos/flannel"; + owner = "coreos"; + repo = "flannel"; sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw"; }; } diff --git a/pkgs/tools/system/confd/default.nix b/pkgs/tools/system/confd/default.nix index 5e5e0edcfe58..5da87f4ce46e 100644 --- a/pkgs/tools/system/confd/default.nix +++ b/pkgs/tools/system/confd/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: buildGoPackage rec { name = "confd-${version}"; @@ -8,9 +8,10 @@ buildGoPackage rec { goPackagePath = "github.com/kelseyhightower/confd"; subPackages = [ "./" ]; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/kelseyhightower/confd"; + owner = "kelseyhightower"; + repo = "confd"; sha256 = "0rz533575hdcln8ciqaz79wbnga3czj243g7fz8869db6sa7jwlr"; }; From 734d15297721cf241df361d4a98be58c13fc75af Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Mon, 6 Jun 2016 12:56:28 +0200 Subject: [PATCH 475/520] buildGo16Packages: fetchgit -> fetchFromGitHub --- .../applications/networking/cluster/terraform/default.nix | 7 ++++--- pkgs/development/tools/glide/default.nix | 8 ++++---- pkgs/servers/caddy/default.nix | 7 ++++--- pkgs/servers/monitoring/consul-alerts/default.nix | 7 ++++--- pkgs/tools/security/vault/default.nix | 7 ++++--- pkgs/tools/system/consul-template/default.nix | 7 ++++--- 6 files changed, 24 insertions(+), 19 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index 44e6a10963a9..803bf1e95cce 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "terraform-${version}"; @@ -7,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/hashicorp/terraform"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/hashicorp/terraform"; + owner = "hashicorp"; + repo = "terraform"; sha256 = "1mf98hagb0yp40g2mbar7aw7hmpq01clnil6y9khvykrb33vy0nb"; }; diff --git a/pkgs/development/tools/glide/default.nix b/pkgs/development/tools/glide/default.nix index 9489f5a7bac8..8378f9eabf4f 100644 --- a/pkgs/development/tools/glide/default.nix +++ b/pkgs/development/tools/glide/default.nix @@ -1,5 +1,4 @@ -# This file was generated by go2nix. -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "glide-${version}"; @@ -8,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/Masterminds/glide"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/Masterminds/glide"; + owner = "Masterminds"; + repo = "glide"; sha256 = "1qb2n5i04gabb2snnwfr8wv4ypcp1pdzvgga62m9xkhk4p2w6pwl"; }; } diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix index 2b0ae98c4641..774e57fc8911 100644 --- a/pkgs/servers/caddy/default.nix +++ b/pkgs/servers/caddy/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "caddy-${version}"; @@ -7,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/mholt/caddy"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/mholt/caddy"; + owner = "mholt"; + repo = "caddy"; sha256 = "1snijkbz02yr7wij7bcmrj4257709sbklb3nhb5qmy95b9ssffm6"; }; diff --git a/pkgs/servers/monitoring/consul-alerts/default.nix b/pkgs/servers/monitoring/consul-alerts/default.nix index ee904dec6eba..01848e93b257 100644 --- a/pkgs/servers/monitoring/consul-alerts/default.nix +++ b/pkgs/servers/monitoring/consul-alerts/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "consul-alerts-${version}"; @@ -7,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/AcalephStorage/consul-alerts"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/AcalephStorage/consul-alerts"; + owner = "AcalephStorage"; + repo = "consul-alerts"; sha256 = "1w0mb20w1yazyh84sa30bsw271c5nm7lsx2qg0g3gf6mxdb63lpq"; }; } diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix index 8470441f530b..5aeefa980185 100644 --- a/pkgs/tools/security/vault/default.nix +++ b/pkgs/tools/security/vault/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "vault-${version}"; @@ -7,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/hashicorp/vault"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/hashicorp/vault"; + owner = "hashicorp"; + repo = "vault"; sha256 = "085rk5i480wdlkn2p14yxi8zgsc11595nkkda1i77c4vjkllbkdy"; }; } diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix index 7c4bda8a5699..9e4e220d052c 100644 --- a/pkgs/tools/system/consul-template/default.nix +++ b/pkgs/tools/system/consul-template/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, buildGo16Package, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, buildGo16Package, fetchFromGitHub }: buildGo16Package rec { name = "consul-template-${version}"; @@ -7,9 +7,10 @@ buildGo16Package rec { goPackagePath = "github.com/hashicorp/consul-template"; - src = fetchgit { + src = fetchFromGitHub { inherit rev; - url = "https://github.com/hashicorp/consul-template"; + owner = "hashicorp"; + repo = "consul-template"; sha256 = "15zsax44g3dwjmmm4fpb54mvsjvjf3b6g3ijskgipvhcy0d3j938"; }; } From 8cd1d4cda5dad34ff8db3c6d9814dc50ee01cde0 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Tue, 7 Jun 2016 22:32:34 +0200 Subject: [PATCH 476/520] buildGoPackage: use Go 1.6 by default --- pkgs/applications/networking/cluster/terraform/default.nix | 4 ++-- pkgs/applications/networking/syncthing/default.nix | 2 -- pkgs/development/tools/glide/default.nix | 4 ++-- pkgs/servers/caddy/default.nix | 4 ++-- pkgs/servers/consul/default.nix | 4 ++-- pkgs/servers/monitoring/consul-alerts/default.nix | 4 ++-- pkgs/servers/monitoring/prometheus/alertmanager.nix | 4 ---- pkgs/servers/monitoring/prometheus/default.nix | 4 ---- pkgs/tools/security/vault/default.nix | 4 ++-- pkgs/tools/system/consul-template/default.nix | 4 ++-- pkgs/top-level/all-packages.nix | 2 +- 11 files changed, 15 insertions(+), 25 deletions(-) diff --git a/pkgs/applications/networking/cluster/terraform/default.nix b/pkgs/applications/networking/cluster/terraform/default.nix index 803bf1e95cce..1ce86cac5c5f 100644 --- a/pkgs/applications/networking/cluster/terraform/default.nix +++ b/pkgs/applications/networking/cluster/terraform/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "terraform-${version}"; version = "0.6.15"; rev = "v${version}"; diff --git a/pkgs/applications/networking/syncthing/default.nix b/pkgs/applications/networking/syncthing/default.nix index 3de4133e7945..83e5f2bd3289 100644 --- a/pkgs/applications/networking/syncthing/default.nix +++ b/pkgs/applications/networking/syncthing/default.nix @@ -16,8 +16,6 @@ stdenv.mkDerivation rec { mkdir -p src/github.com/syncthing ln -s $(pwd) src/github.com/syncthing/syncthing export GOPATH=$(pwd) - # Required for Go 1.5, can be removed for Go 1.6+ - export GO15VENDOREXPERIMENT=1 # Syncthing's build.go script expects this working directory cd src/github.com/syncthing/syncthing diff --git a/pkgs/development/tools/glide/default.nix b/pkgs/development/tools/glide/default.nix index 8378f9eabf4f..c3d9104018df 100644 --- a/pkgs/development/tools/glide/default.nix +++ b/pkgs/development/tools/glide/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "glide-${version}"; version = "0.10.2"; rev = "${version}"; diff --git a/pkgs/servers/caddy/default.nix b/pkgs/servers/caddy/default.nix index 774e57fc8911..68ce9440f4f4 100644 --- a/pkgs/servers/caddy/default.nix +++ b/pkgs/servers/caddy/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "caddy-${version}"; version = "0.8.3"; rev = "e2234497b79603388b58ba226abb157aa4aaf065"; diff --git a/pkgs/servers/consul/default.nix b/pkgs/servers/consul/default.nix index 7dfd8b2a32ed..5254aa8e94b4 100644 --- a/pkgs/servers/consul/default.nix +++ b/pkgs/servers/consul/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, consul-ui, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, consul-ui, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "consul-${version}"; version = "0.6.4"; rev = "v${version}"; diff --git a/pkgs/servers/monitoring/consul-alerts/default.nix b/pkgs/servers/monitoring/consul-alerts/default.nix index 01848e93b257..ad840dfd607f 100644 --- a/pkgs/servers/monitoring/consul-alerts/default.nix +++ b/pkgs/servers/monitoring/consul-alerts/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "consul-alerts-${version}"; version = "0.3.3"; rev = "v${version}"; diff --git a/pkgs/servers/monitoring/prometheus/alertmanager.nix b/pkgs/servers/monitoring/prometheus/alertmanager.nix index fc204fc3f152..330a528ef2f5 100644 --- a/pkgs/servers/monitoring/prometheus/alertmanager.nix +++ b/pkgs/servers/monitoring/prometheus/alertmanager.nix @@ -17,10 +17,6 @@ buildGoPackage rec { # Tests exist, but seem to clash with the firewall. doCheck = false; - preBuild = '' - export GO15VENDOREXPERIMENT=1 - ''; - buildFlagsArray = let t = "${goPackagePath}/version"; in '' -ldflags= -X ${t}.Version=${version} diff --git a/pkgs/servers/monitoring/prometheus/default.nix b/pkgs/servers/monitoring/prometheus/default.nix index 1345914c4f5f..1fbcd50d733e 100644 --- a/pkgs/servers/monitoring/prometheus/default.nix +++ b/pkgs/servers/monitoring/prometheus/default.nix @@ -16,10 +16,6 @@ buildGoPackage rec { docheck = true; - preBuild = '' - export GO15VENDOREXPERIMENT=1 - ''; - buildFlagsArray = let t = "${goPackagePath}/version"; in '' -ldflags= -X ${t}.Version=${version} diff --git a/pkgs/tools/security/vault/default.nix b/pkgs/tools/security/vault/default.nix index 5aeefa980185..1197c840fc9a 100644 --- a/pkgs/tools/security/vault/default.nix +++ b/pkgs/tools/security/vault/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "vault-${version}"; version = "0.5.2"; rev = "v${version}"; diff --git a/pkgs/tools/system/consul-template/default.nix b/pkgs/tools/system/consul-template/default.nix index 9e4e220d052c..772c7e6d34b3 100644 --- a/pkgs/tools/system/consul-template/default.nix +++ b/pkgs/tools/system/consul-template/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGo16Package, fetchFromGitHub }: +{ stdenv, lib, buildGoPackage, fetchFromGitHub }: -buildGo16Package rec { +buildGoPackage rec { name = "consul-template-${version}"; version = "0.14.0"; rev = "v${version}"; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9545ce0eb85b..51f4ada13743 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9607,7 +9607,7 @@ in go = go_1_6; }; - buildGoPackage = buildGo15Package; + buildGoPackage = buildGo16Package; go2nix = callPackage ../development/tools/go2nix { }; From 1dfae0678d33f88c787d249cd360d30717411a1a Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 9 Jun 2016 11:25:27 +0200 Subject: [PATCH 477/520] nomad: extracted from goPackages --- .../networking/cluster/nomad/default.nix | 25 +++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 +- pkgs/top-level/go-packages.nix | 8 ------ 3 files changed, 26 insertions(+), 9 deletions(-) create mode 100644 pkgs/applications/networking/cluster/nomad/default.nix diff --git a/pkgs/applications/networking/cluster/nomad/default.nix b/pkgs/applications/networking/cluster/nomad/default.nix new file mode 100644 index 000000000000..b718447e8f80 --- /dev/null +++ b/pkgs/applications/networking/cluster/nomad/default.nix @@ -0,0 +1,25 @@ +{ stdenv, buildGoPackage, fetchFromGitHub }: + +buildGoPackage rec { + name = "nomad-${version}"; + version = "0.3.2"; + rev = "v${version}"; + + goPackagePath = "github.com/hashicorp/nomad"; + subPackages = [ "." ]; + + src = fetchFromGitHub { + owner = "hashicorp"; + repo = "nomad"; + inherit rev; + sha256 = "1m2pdragpzrq0xbmnba039iiyhb16wirj3n1s52z5r8r0mr7drai"; + }; + + meta = with stdenv.lib; { + homepage = https://www.nomadproject.io/; + license = licenses.mpl20; + description = "A Distributed, Highly Available, Datacenter-Aware Scheduler"; + platforms = platforms.linux; + maintainers = with maintainers; [ rushmorem ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 51f4ada13743..3ed2ea1eeaee 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -2611,7 +2611,7 @@ in noip = callPackage ../tools/networking/noip { }; - nomad = goPackages.nomad.bin // { outputs = [ "bin" ]; }; + nomad = callPackage ../applications/networking/cluster/nomad { }; milu = callPackage ../applications/misc/milu { }; diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix index ea3635894238..25f31085da1f 100644 --- a/pkgs/top-level/go-packages.nix +++ b/pkgs/top-level/go-packages.nix @@ -2260,14 +2260,6 @@ let sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; }; - nomad = buildFromGitHub { - rev = "v0.3.2"; - owner = "hashicorp"; - repo = "nomad"; - sha256 = "1m2pdragpzrq0xbmnba039iiyhb16wirj3n1s52z5r8r0mr7drai"; - subPackages = [ "." ]; - }; - ntp = buildFromGitHub { rev = "0a5264e2563429030eb922f258229ae3fee5b5dc"; owner = "beevik"; From 08575ee8d09fb6a9cb7c39ccc45fb3022ded168e Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 9 Jun 2016 11:27:10 +0200 Subject: [PATCH 478/520] goPackages: not needed now --- pkgs/top-level/go-packages.nix | 3272 -------------------------------- 1 file changed, 3272 deletions(-) delete mode 100644 pkgs/top-level/go-packages.nix diff --git a/pkgs/top-level/go-packages.nix b/pkgs/top-level/go-packages.nix deleted file mode 100644 index 25f31085da1f..000000000000 --- a/pkgs/top-level/go-packages.nix +++ /dev/null @@ -1,3272 +0,0 @@ -/* This file defines the composition for Go packages. */ - -{ overrides, stdenv, go, buildGoPackage, git -, fetchgit, fetchhg, fetchurl, fetchFromGitHub, fetchFromBitbucket, fetchbzr, pkgs }: - -let - isGo14 = go.meta.branch == "1.4"; - isGo15 = go.meta.branch == "1.5"; - isGo16 = go.meta.branch == "1.6"; - - self = _self // overrides; _self = with self; { - - inherit go buildGoPackage; - - buildFromGitHub = { rev, version ? null, owner, repo, sha256, name ? repo, goPackagePath ? "github.com/${owner}/${repo}", ... }@args: buildGoPackage (args // { - inherit rev goPackagePath; - name = "${name}-${if version != null then version else if builtins.stringLength rev != 40 then rev else stdenv.lib.strings.substring 0 7 rev}"; - src = fetchFromGitHub { inherit rev owner repo sha256; }; - }); - - ## OFFICIAL GO PACKAGES - - crypto = buildFromGitHub { - rev = "575fdbe86e5dd89229707ebec0575ce7d088a4a6"; - version = "2015-08-29"; - owner = "golang"; - repo = "crypto"; - sha256 = "1kgv1mkw9y404pk3lcwbs0vgl133mwyp294i18jg9hp10s5d56xa"; - goPackagePath = "golang.org/x/crypto"; - goPackageAliases = [ - "code.google.com/p/go.crypto" - "github.com/golang/crypto" - ]; - }; - - glog = buildFromGitHub { - rev = "fca8c8854093a154ff1eb580aae10276ad6b1b5f"; - version = "2015-07-31"; - owner = "golang"; - repo = "glog"; - sha256 = "1nr2q0vas0a2f395f4shjxqpas18mjsf8yhgndsav7svngpbbpg8"; - }; - - codesearch = buildFromGitHub { - rev = "a45d81b686e85d01f2838439deaf72126ccd5a96"; - version = "2015-06-17"; - owner = "google"; - repo = "codesearch"; - sha256 = "12bv3yz0l3bmsxbasfgv7scm9j719ch6pmlspv4bd4ix7wjpyhny"; - }; - - image = buildFromGitHub { - rev = "8ab1ac6834edd43d91cbe24272897a87ce7e835e"; - version = "2015-08-23"; - owner = "golang"; - repo = "image"; - sha256 = "1ckr7yh5dx2kbvp9mis7i090ss9qcz46sazrj9f2hw4jj5g3y7dr"; - goPackagePath = "golang.org/x/image"; - goPackageAliases = [ "github.com/golang/image" ]; - }; - - net_go15 = buildFromGitHub { - rev = "62ac18b461605b4be188bbc7300e9aa2bc836cd4"; - version = "2015-11-04"; - owner = "golang"; - repo = "net"; - sha256 = "0lwwvbbwbf3yshxkfhn6z20gd45dkvnmw2ms36diiy34krgy402p"; - goPackagePath = "golang.org/x/net"; - goPackageAliases = [ - "code.google.com/p/go.net" - "github.com/hashicorp/go.net" - "github.com/golang/net" - ]; - propagatedBuildInputs = [ text crypto ]; - disabled = isGo14; - }; - - net_go14 = buildFromGitHub { - rev = "ea47fc708ee3e20177f3ca3716217c4ab75942cb"; - version = "2015-08-29"; - owner = "golang"; - repo = "net"; - sha256 = "0x1pmg97n7l62vak9qnjdjrrfl98jydhv6j0w3jkk4dycdlzn30d"; - goPackagePath = "golang.org/x/net"; - goPackageAliases = [ - "code.google.com/p/go.net" - "github.com/hashicorp/go.net" - "github.com/golang/net" - ]; - propagatedBuildInputs = [ text ]; - disabled = !isGo14; - }; - - net = if isGo14 then net_go14 else net_go15; - - oauth2 = buildFromGitHub { - rev = "397fe7649477ff2e8ced8fc0b2696f781e53745a"; - version = "2015-06-23"; - owner = "golang"; - repo = "oauth2"; - sha256 = "0fza0l7iwh6llkq2yzqn7dxi138vab0da64lnghfj1p71fprjzn8"; - goPackagePath = "golang.org/x/oauth2"; - goPackageAliases = [ "github.com/golang/oauth2" ]; - propagatedBuildInputs = [ net gcloud-golang-compute-metadata ]; - }; - - - protobuf = buildFromGitHub { - rev = "59b73b37c1e45995477aae817e4a653c89a858db"; - version = "2015-08-23"; - owner = "golang"; - repo = "protobuf"; - sha256 = "1dx22jvhvj34ivpr7gw01fncg9yyx35mbpal4mpgnqka7ajmgjsa"; - goPackagePath = "github.com/golang/protobuf"; - goPackageAliases = [ "code.google.com/p/goprotobuf" ]; - }; - - snappy = buildFromGitHub { - rev = "723cc1e459b8eea2dea4583200fd60757d40097a"; - version = "2015-07-21"; - owner = "golang"; - repo = "snappy"; - sha256 = "0bprq0qb46f5511b5scrdqqzskqqi2z8b4yh3216rv0n1crx536h"; - goPackageAliases = [ "code.google.com/p/snappy-go/snappy" ]; - }; - - sys = buildFromGitHub { - rev = "d9157a9621b69ad1d8d77a1933590c416593f24f"; - version = "2015-02-01"; - owner = "golang"; - repo = "sys"; - sha256 = "1asdbp7rj1j1m1aar1a022wpcwbml6zih6cpbxaw7b2m8v8is931"; - goPackagePath = "golang.org/x/sys"; - goPackageAliases = [ - "github.com/golang/sys" - ]; - }; - - text = buildFromGitHub { - rev = "5eb8d4684c4796dd36c74f6452f2c0fa6c79597e"; - version = "2015-08-27"; - owner = "golang"; - repo = "text"; - sha256 = "1cjwm2pv42dbfqc6ylr7jmma902zg4gng5aarqrbjf1k2nf2vs14"; - goPackagePath = "golang.org/x/text"; - goPackageAliases = [ "github.com/golang/text" ]; - }; - - tools = buildFromGitHub { - rev = "9ae4729fba20b3533d829a9c6ba8195b068f2abc"; - version = "2016-05-19"; - owner = "golang"; - repo = "tools"; - sha256 = "1j51aaskfqc953p5s9naqimr04hzfijm4yczdsiway1xnnvvpfr1"; - goPackagePath = "golang.org/x/tools"; - goPackageAliases = [ "code.google.com/p/go.tools" ]; - - preConfigure = '' - # Make the builtin tools available here - mkdir -p $bin/bin - eval $(go env | grep GOTOOLDIR) - find $GOTOOLDIR -type f | while read x; do - ln -sv "$x" "$bin/bin" - done - export GOTOOLDIR=$bin/bin - ''; - - excludedPackages = "\\(" - + stdenv.lib.concatStringsSep "\\|" ([ "testdata" ] ++ stdenv.lib.optionals (stdenv.lib.versionAtLeast go.meta.branch "1.5") [ "vet" "cover" ]) - + "\\)"; - - buildInputs = [ net ]; - - # Do not copy this without a good reason for enabling - # In this case tools is heavily coupled with go itself and embeds paths. - allowGoReference = true; - - # Set GOTOOLDIR for derivations adding this to buildInputs - postInstall = '' - mkdir -p $bin/nix-support - substituteAll ${../development/go-modules/tools/setup-hook.sh} $bin/nix-support/setup-hook.tmp - cat $bin/nix-support/setup-hook.tmp >> $bin/nix-support/setup-hook - rm $bin/nix-support/setup-hook.tmp - ''; - }; - - - ## THIRD PARTY - - ace = buildFromGitHub { - rev = "899eede6af0d99400b2c8886d86fd8d351074d37"; - owner = "yosssi"; - repo = "ace"; - sha256 = "0xdzqfzaipyaa973j41yq9lbijw36kyaz523sw05kci4r5ivq4f5"; - buildInputs = [ gohtml ]; - }; - - acme = buildFromGitHub { - rev = "v0.3.0"; - owner = "xenolf"; - repo = "lego"; - sha256 = "0hlnqdn793j4s43bhnmpi2lxgmjxs1ccg26alxnrcyw5x7p2vvdn"; - - subPackages = [ "acme" ]; - propagatedBuildInputs = [ crypto dns go-jose-v1 net ]; - }; - - adapted = buildFromGitHub { - rev = "0dd5fa34d6f9d74c7c0deed1fc224f9a87e02978"; - version = "2016-04-10"; - owner = "michaelmacinnis"; - repo = "adapted"; - sha256 = "16n3a87m33pqx4qih713q3gw2j6ksj1q3ngjax6bpn5b11rqvikv"; - propagatedBuildInputs = [ sys ]; - }; - - afero = buildFromGitHub { - rev = "90b5a9bd18a72dbf3e27160fc47acfaac6c08389"; - owner = "spf13"; - repo = "afero"; - sha256 = "1xqvbwny61j85psymcs8hggmqyyg4yq3q4cssnvnvbsl3aq8kn4k"; - propagatedBuildInputs = [ text ]; - }; - - airbrake-go = buildFromGitHub { - rev = "5b5e269e1bc398d43f67e43dafff3414a59cd5a2"; - owner = "tobi"; - repo = "airbrake-go"; - sha256 = "1bps4y3vpphpj63mshjg2aplh579cvqac0hz7qzvac0d1fqcgkdz"; - }; - - amber = buildFromGitHub { - rev = "144da19a9994994c069f0693294a66dd310e14a4"; - owner = "eknkc"; - repo = "amber"; - sha256 = "079wwdq4cn9i1vx5zik16z4bmghkc7zmmvbrp1q6y4cnpmq95rqk"; - }; - - ansicolor = buildFromGitHub { - rev = "a5e2b567a4dd6cc74545b8a4f27c9d63b9e7735b"; - owner = "shiena"; - repo = "ansicolor"; - sha256 = "0gwplb1b4fvav1vjf4b2dypy5rcp2w41vrbxkd1dsmac870cy75p"; - }; - - archiver = buildFromGitHub { - rev = "85f054813ed511646b0ce5e047697e0651b8e1a4"; - owner = "mholt"; - repo = "archiver"; - sha256 = "0b38mrfm3rwgdi7hrp4gjhf0y0f6bw73qjkfrkafxjrdpdg7nyly"; - }; - - asmfmt = buildFromGitHub { - rev = "7971758b0c6584f67d745c62d006814ae7b44e9d"; - owner = "klauspost"; - repo = "asmfmt"; - sha256 = "07i3f8jzs4yvfpm16s2c2hd65r3q729m0agg8q1i3lwbs3fimyj5"; - buildInputs = [ tools goreturns ]; - }; - - asn1-ber = buildGoPackage rec { - rev = "f4b6f4a84f5cde443d1925b5ec185ee93c2bdc72"; - name = "asn1-ber-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/go-asn1-ber/asn1-ber"; - goPackageAliases = [ - "github.com/nmcclain/asn1-ber" - "github.com/vanackere/asn1-ber" - "gopkg.in/asn1-ber.v1" - ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-asn1-ber"; - repo = "asn1-ber"; - sha256 = "0qdyax6yw3hvplzqc2ykpihi3m5y4nii581ay0mxy9c54bzs2nk9"; - }; - }; - - assertions = buildGoPackage rec { - version = "1.5.0"; - name = "assertions-${version}"; - goPackagePath = "github.com/smartystreets/assertions"; - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/smartystreets/assertions/archive/${version}.tar.gz"; - sha256 = "1s4b0v49yv7jmy4izn7grfqykjrg7zg79dg5hsqr3x40d5n7mk02"; - }; - buildInputs = [ oglematchers ]; - propagatedBuildInputs = [ goconvey ]; - doCheck = false; - }; - - aws-sdk-go = buildFromGitHub { - rev = "d85fa529a99a833067e11c0a838b9db7a5d5ea71"; - version = "1.1.24"; - owner = "aws"; - repo = "aws-sdk-go"; - sha256 = "0lh3z3l551siqwrwvl9ky820ckpsvm8zpnb9p6622cnf6xkq533x"; - goPackageAliases = [ - "github.com/awslabs/aws-sdk-go" - ]; - buildInputs = [ gucumber testify ]; - propagatedBuildInputs = [ ini go-jmespath tools]; - }; - - azure-sdk-for-go = buildFromGitHub { - rev = "v2.0.0-beta"; - owner = "Azure"; - repo = "azure-sdk-for-go"; - sha256 = "04bixwh4bzgysa79azis1p755rb6zxjjzhpskpvpmvkv49baharc"; - propagatedBuildInputs = [ go-autorest cli-go ]; - }; - - azure-vhd-tools-for-go = buildFromGitHub { - rev = "7db4795475aeab95590f8643969e06b633ead4ec"; - owner = "Microsoft"; - repo = "azure-vhd-utils-for-go"; - sha256 = "0xg6a1qw8jjxqhgvy9zlvq5b8xnnvfkjnkjz9f8g4y1kcw09lird"; - - propagatedBuildInputs = [ azure-sdk-for-go ]; - }; - - hashicorp.aws-sdk-go = buildFromGitHub { - rev = "e6ea0192eee4640f32ec73c0cbb71f63e4f2b65a"; - owner = "hashicorp"; - repo = "aws-sdk-go"; - sha256 = "1qrc2jl38marbarnl31sag7s0h18j2wx1cxkcqin5m1pqg62p4cn"; - propagatedBuildInputs = [ go-ini ]; - subPackages = [ - "./aws" - "./gen/ec2" - "./gen/endpoints" - "./gen/iam" - ]; - }; - - bleve = buildFromGitHub { - rev = "fc34a97875840b2ae24517e7d746b69bdae9be90"; - version = "2016-01-19"; - owner = "blevesearch"; - repo = "bleve"; - sha256 = "0ny7nvilrxmmzcdvpivwyrjkynnhc22c5gdrxzs421jly35jw8jx"; - buildFlags = [ "-tags all" ]; - propagatedBuildInputs = [ protobuf goleveldb kagome gtreap bolt text - rcrowley.go-metrics bitset segment go-porterstemmer ]; - }; - - binarydist = buildFromGitHub { - rev = "9955b0ab8708602d411341e55fffd7e0700f86bd"; - owner = "kr"; - repo = "binarydist"; - sha256 = "11wncbbbrdcxl5ff3h6w8vqfg4bxsf8709mh6vda0cv236flkyn3"; - }; - - bitset = buildFromGitHub { - rev = "bb0da3785c4fe9d26f6029c77c8fce2aa4d0b291"; - version = "2016-01-13"; - owner = "willf"; - repo = "bitset"; - sha256 = "1d4z2hjjs9jk6aysi4mf50p8lbbzag4ir4y1f0z4sz8gkwagh7b7"; - }; - - blackfriday = buildFromGitHub { - rev = "d18b67ae0afd61dae240896eae1785f00709aa31"; - owner = "russross"; - repo = "blackfriday"; - sha256 = "1l78hz8k1ixry5fjw29834jz1q5ysjcpf6kx2ggjj1s6xh0bfzvf"; - propagatedBuildInputs = [ sanitized_anchor_name ]; - }; - - bolt = buildFromGitHub { - rev = "957d850b5158a4eebf915476058e720f43459584"; - owner = "boltdb"; - repo = "bolt"; - sha256 = "193adhhsqdy0kyq1l1fi8pg2n6pwyrw4h607qm78qyi26f8i7vzf"; - }; - - bufio = buildFromGitHub { - rev = "24e7e48f60fc2d9e99e43c07485d9fff42051e66"; - owner = "vmihailenco"; - repo = "bufio"; - sha256 = "0x46qnf2f15v7m0j2dcb16raxjamk5rdc7hqwgyxfr1sqmmw3983"; - }; - - bugsnag-go = buildGoPackage rec { - rev = "v1.0.3"; - name = "bugsnag-go-${rev}"; - goPackagePath = "github.com/bugsnag/bugsnag-go"; - - src = fetchFromGitHub { - inherit rev; - owner = "bugsnag"; - repo = "bugsnag-go"; - sha256 = "1ymi5hrvd2nyfwfd12xll43gn00ii3bjb5ma9dfhaaxv2asi3ajx"; - }; - - propagatedBuildInputs = [ panicwrap revel ]; - }; - - cascadia = buildGoPackage rec { - rev = "54abbbf07a45a3ef346ebe903e0715d9a3c19352"; #master - name = "cascadia-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/andybalholm/cascadia"; - goPackageAliases = [ "code.google.com/p/cascadia" ]; - propagatedBuildInputs = [ net ]; - buildInputs = propagatedBuildInputs; - doCheck = true; - - src = fetchFromGitHub { - inherit rev; - owner = "andybalholm"; - repo = "cascadia"; - sha256 = "1z21w6p5bp7mi2pvicvcqc871k9s8a6262pkwyjm2qfc859c203m"; - }; - }; - - cast = buildFromGitHub { - rev = "ee815aaf958c707ad07547cd62150d973710f747"; - owner = "spf13"; - repo = "cast"; - sha256 = "144xwvmjbrv59zjj1gnq5j9qpy62dgyfamxg5l3smdwfwa8vpf5i"; - buildInputs = [ jwalterweatherman ]; - }; - - check-v1 = buildGoPackage rec { - rev = "871360013c92e1c715c2de6d06b54899468a8a2d"; - name = "check-v1-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "gopkg.in/check.v1"; - src = fetchgit { - inherit rev; - url = "https://github.com/go-check/check.git"; - sha256 = "1qhji81yxz3map937bf8lyp8j2qpwlbnag5pr5pf0qw3li2nciah"; - }; - }; - - circbuf = buildFromGitHub { - rev = "f092b4f207b6e5cce0569056fba9e1a2735cb6cf"; - owner = "armon"; - repo = "circbuf"; - sha256 = "06kwwdwa3hskdh6ws7clj1vim80dyc3ldim8k9y5qpd30x0avn5s"; - }; - - cli = buildFromGitHub { - rev = "8102d0ed5ea2709ade1243798785888175f6e415"; - owner = "mitchellh"; - repo = "cli"; - sha256 = "08mj1l94pww72jy34gk9a483hpic0rrackskfw13r3ycy997w7m2"; - propagatedBuildInputs = [ crypto ]; - }; - - cli-spinner = buildFromGitHub { - rev = "610063bb4aeef25f7645b3e6080456655ec0fb33"; - owner = "odeke-em"; - repo = "cli-spinner"; - sha256 = "13wzs2qrxd72ah32ym0ppswhvyimjw5cqaq3q153y68vlvxd048c"; - }; - - cobra = buildFromGitHub { - rev = "ee6224d01f6a83f543ae90f881b703cf195782ba"; - owner = "spf13"; - repo = "cobra"; - sha256 = "0skmq1lmkh2xzl731a2sfcnl2xbcy9v1050pcf10dahwqzsbx6ij"; - propagatedBuildInputs = [ pflag-spf13 mousetrap go-md2man viper ]; - }; - - cli-go = buildFromGitHub { - rev = "71f57d300dd6a780ac1856c005c4b518cfd498ec"; - owner = "codegangsta"; - repo = "cli"; - sha256 = "1fxznirkvank5461789dm5aw5z8aqi0jvwligvz44659rfl376p3"; - propagatedBuildInputs = [ yaml-v2 ]; - }; - - columnize = buildFromGitHub { - rev = "44cb4788b2ec3c3d158dd3d1b50aba7d66f4b59a"; - owner = "ryanuber"; - repo = "columnize"; - sha256 = "1qrqr76cw58x2hkjic6h88na5ihgvkmp8mqapj8kmjcjzdxkzhr9"; - }; - - command = buildFromGitHub { - rev = "91ca5ec5e9a1bc2668b1ccbe0967e04a349e3561"; - owner = "odeke-em"; - repo = "command"; - sha256 = "1ghckzr8h99ckagpmb15p61xazdjmf9mjmlym634hsr9vcj84v62"; - }; - - copystructure = buildFromGitHub { - rev = "6fc66267e9da7d155a9d3bd489e00dad02666dc6"; - owner = "mitchellh"; - repo = "copystructure"; - sha256 = "193s5vhw68d8npjyf5yvc5j24crazvy7d5dk316hl7590qrmbxrd"; - buildInputs = [ reflectwalk ]; - }; - - config = buildFromGitHub { - rev = "0f78529c8c7e3e9a25f15876532ecbc07c7d99e6"; - owner = "robfig"; - repo = "config"; - sha256 = "0xmxy8ay0wzd307x7xba3rmigvr6rjlpfk9fmn6ir2nc97ifv3i0"; - }; - - consul-migrate = buildFromGitHub { - rev = "678fb10cdeae25ab309e99e655148f0bf65f9710"; - version = "2015-05-19"; - owner = "hashicorp"; - repo = "consul-migrate"; - sha256 = "18zqyzbc3pny700fnh4hi45i5mlsramqykikcr7lgyx7id6alf16"; - buildInputs = [ raft raft-boltdb raft-mdb ]; - }; - - context = buildGoPackage rec { - rev = "215affda49addc4c8ef7e2534915df2c8c35c6cd"; - name = "config-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/gorilla/context"; - - src = fetchFromGitHub { - inherit rev; - owner = "gorilla"; - repo = "context"; - sha256 = "1ybvjknncyx1f112mv28870n0l7yrymsr0861vzw10gc4yn1h97g"; - }; - }; - - cookoo = buildFromGitHub { - rev = "v1.2.0"; - owner = "Masterminds"; - repo = "cookoo"; - sha256 = "1mxqnxddny43k1shsvd39sfzfs0d20gv3vm9lcjp04g3b0rplck1"; - }; - - crypt = buildFromGitHub { - rev = "749e360c8f236773f28fc6d3ddfce4a470795227"; - owner = "xordataexchange"; - repo = "crypt"; - sha256 = "17g9122b8bmbdpshyzhl7cxsp0nvhk0rc6syc92djavggmbpl6ig"; - preBuild = '' - substituteInPlace go/src/github.com/xordataexchange/crypt/backend/consul/consul.go \ - --replace 'github.com/armon/consul-api' 'github.com/hashicorp/consul/api' \ - --replace 'consulapi' 'api' - ''; - propagatedBuildInputs = [ go-etcd consul-api crypto ]; - }; - - cssmin = buildFromGitHub { - rev = "fb8d9b44afdc258bfff6052d3667521babcb2239"; - owner = "dchest"; - repo = "cssmin"; - sha256 = "09sdijfx5d05z4cd5k6lhl7k3kbpdf2amzlngv15h5v0fff9qw4s"; - }; - - dbus-old-2015-05-19 = buildFromGitHub { - rev = "a5942dec6340eb0d57f43f2003c190ce06e43dea"; - version = "2015-05-19"; - owner = "godbus"; - repo = "dbus"; - sha256 = "1vk31wal7ncvjwvnb8q1myrkihv1np46f3q8dndi5k0csflbxxdf"; - }; - - dbus = buildFromGitHub { - rev = "230e4b23db2fd81c53eaa0073f76659d4849ce51"; - version = "2016-03-02"; - owner = "godbus"; - repo = "dbus"; - sha256 = "1wxv2cbihzcsz2z7iycyzl7f3arhhgagcc5kqln1k1mkm4l85z0q"; - }; - - dns = buildFromGitHub { - rev = "7e024ce8ce18b21b475ac6baf8fa3c42536bf2fa"; - version = "2016-03-28"; - owner = "miekg"; - repo = "dns"; - sha256 = "0hlwb52lnnj3c6papjk9i5w5cjdw6r7c891v4xksnfvk1f9cy9kl"; - }; - - docopt-go = buildFromGitHub { - rev = "854c423c810880e30b9fecdabb12d54f4a92f9bb"; - owner = "docopt"; - repo = "docopt-go"; - sha256 = "1sddkxgl1pwlipfvmv14h8vg9b9wq1km427j1gjarhb5yfqhh3l1"; - }; - - docker.docker = buildFromGitHub { - rev = "cb87b6eb6a955e5a66b17e0a15557f37f76b85c0"; - version = "2016-04-14"; - owner = "docker"; - repo = "docker"; - sha256 = "1hkah4scs8a589jhp82kw5wcx21nhq41asfq8icwy6bzdz1bq0j0"; - buildInputs = [ docker.go-units ]; - subPackages = [ "pkg/term" "pkg/symlink" "pkg/system" "pkg/mount" ]; - }; - - docker.go-units = buildFromGitHub { - rev = "5d2041e26a699eaca682e2ea41c8f891e1060444"; - version = "2016-01-25"; - owner = "docker"; - repo = "go-units"; - sha256 = "0hn8xdbaykp046inc4d2mwig5ir89ighma8hk18dfkm8rh1vvr8i"; - }; - - dropbox = buildFromGitHub { - rev = "58f839b21094d5e0af7caf613599830589233d20"; - owner = "stacktic"; - repo = "dropbox"; - sha256 = "1psmxpnn40ri9bgjvivljnd4p977f635mh3w7m5mglxxgc9392pi"; - propagatedBuildInputs = [ oauth2 net ]; - }; - - cache = buildFromGitHub { - rev = "b51b08cb6cf889deda6c941a5205baecfd16f3eb"; - owner = "odeke-em"; - repo = "cache"; - sha256 = "1rmm1ky7irqypqjkk6qcd2n0xkzpaggdxql9dp9i9qci5rvvwwd4"; - }; - - ethereum = buildFromGitHub rec { - name = "ethereum"; - rev = "v1.4.1"; - goPackagePath = "github.com/ethereum/go-ethereum"; - owner = "ethereum"; - repo = "go-ethereum"; - sha256 = "0z6yzkk72g41dzqa52fizxqxqh349y1m9s3byfh9ixq5xy5fnjn3"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; - postBuild = "rm $NIX_BUILD_TOP/go/bin/*test"; - meta = with stdenv.lib; { - homepage = "https://ethereum.github.io/go-ethereum/"; - description = "Official golang implementation of the Ethereum protocol"; - license = with licenses; [ lgpl3 gpl3 ]; - }; - }; - - ewma = buildFromGitHub { - rev = "2f8aa9741ab4b5b80945c750b871131b88ef5b7f"; - version = "1.0"; - owner = "VividCortex"; - repo = "ewma"; - sha256 = "0g1pv0zyjkriqmwc8iqv437j0f450sk8g48jycmv78ziwy7wf92h"; - }; - - exercism = buildFromGitHub { - rev = "v2.2.1"; - name = "exercism"; - owner = "exercism"; - repo = "cli"; - sha256 = "13kwcxd7m3xv42j50nlm9dd08865dxji41glfvnb4wwq9yicyn4g"; - buildInputs = [ net cli-go osext ]; - }; - - exponential-backoff = buildFromGitHub { - rev = "96e25d36ae36ad09ac02cbfe653b44c4043a8e09"; - owner = "odeke-em"; - repo = "exponential-backoff"; - sha256 = "1as21p2jj8xpahvdxqwsw2i1s3fll14dlc9j192iq7xl1ybwpqs6"; - }; - - extractor = buildFromGitHub { - rev = "801861aedb854c7ac5e1329e9713023e9dc2b4d4"; - owner = "odeke-em"; - repo = "extractor"; - sha256 = "036zmnqxy48h6mxiwywgxix2p4fqvl4svlmcp734ri2rbq3cmxs1"; - }; - - open-golang = buildFromGitHub { - rev = "c8748311a7528d0ba7330d302adbc5a677ef9c9e"; - owner = "skratchdot"; - repo = "open-golang"; - sha256 = "0qhn2d00v3m9fiqk9z7swdm599clc6j7rnli983s8s1byyp0x3ac"; - }; - - pretty-words = buildFromGitHub { - rev = "9d37a7fcb4ae6f94b288d371938482994458cecb"; - owner = "odeke-em"; - repo = "pretty-words"; - sha256 = "1466wjhrg9lhqmzil1vf8qj16fxk32b5kxlcccyw2x6dybqa6pkl"; - }; - - meddler = buildFromGitHub { - rev = "d2b51d2b40e786ab5f810d85e65b96404cf33570"; - owner = "odeke-em"; - repo = "meddler"; - sha256 = "0m0fqrn3kxy4swyk4ja1y42dn1i35rq9j85y11wb222qppy2342x"; - }; - - dts = buildFromGitHub { - rev = "ec2daabf2f9078e887405f7bcddb3d79cb65502d"; - owner = "odeke-em"; - repo = "dts"; - sha256 = "0vq3cz4ab9vdsz9s0jjlp7z27w218jjabjzsh607ps4i8m5d441s"; - }; - - du = buildFromGitHub { - rev = "3c0690cca16228b97741327b1b6781397afbdb24"; - version = "2015-08-05"; - owner = "calmh"; - repo = "du"; - sha256 = "1mv6mkbslfc8giv47kyl97ny0igb3l7jya5hc75sm54xi6g205wa"; - }; - - ed25519 = buildGoPackage rec { - rev = "d2b94fd789ea21d12fac1a4443dd3a3f79cda72c"; - name = "ed25519-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/agl/ed25519"; - src = fetchgit { - inherit rev; - url = "git://${goPackagePath}.git"; - sha256 = "83e3010509805d1d315c7aa85a356fda69d91b51ff99ed98a503d63adb3613e9"; - }; - }; - - errcheck = buildFromGitHub { - rev = "8e25ad9d46f6c5d4e994edf82c57eb773a9aa73d"; - owner = "kisielk"; - repo = "errcheck"; - sha256 = "1089qf05q8db8h6ayn1c1iaq4fcpv18z3k94dr27v31k6f73dzhg"; - excludedPackages = [ "testdata" ]; - buildInputs = [ gotool tools ]; - }; - - errwrap = buildFromGitHub { - rev = "7554cd9344cec97297fa6649b055a8c98c2a1e55"; - owner = "hashicorp"; - repo = "errwrap"; - sha256 = "0kmv0p605di6jc8i1778qzass18m0mv9ks9vxxrfsiwcp4la82jf"; - }; - - fsnotify.v0 = buildGoPackage rec { - rev = "v0.9.3"; - name = "fsnotify.v0-${rev}"; - goPackagePath = "gopkg.in/fsnotify.v0"; - goPackageAliases = [ "github.com/howeyc/fsnotify" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "15wqjpkfzsxnaxbz6y4r91hw6812g3sc4ipagxw1bya9klbnkdc9"; - }; - }; - - fsnotify.v1 = buildGoPackage rec { - rev = "v1.2.0"; - name = "fsnotify.v1-${rev}"; - goPackagePath = "gopkg.in/fsnotify.v1"; - - src = fetchFromGitHub { - inherit rev; - owner = "go-fsnotify"; - repo = "fsnotify"; - sha256 = "1308z1by82fbymcra26wjzw7lpjy91kbpp2skmwqcq4q1iwwzvk2"; - }; - }; - - fsync = buildFromGitHub { - rev = "c2544e79b93fda5653255f907a30fba1c2ac2638"; - owner = "spf13"; - repo = "fsync"; - sha256 = "0hzfk2f8pm756j10zgsk8b8gbfylcf8h6q4djz0ka9zpg76s26lz"; - buildInputs = [ afero ]; - }; - - g2s = buildFromGitHub { - rev = "ec76db4c1ac16400ac0e17ca9c4840e1d23da5dc"; - owner = "peterbourgon"; - repo = "g2s"; - sha256 = "1p4p8755v2nrn54rik7yifpg9szyg44y5rpp0kryx4ycl72307rj"; - }; - - gcloud-golang = buildFromGitHub { - rev = "6335269abf9002cf5a84613c13cda6010842b834"; - owner = "GoogleCloudPlatform"; - repo = "gcloud-golang"; - sha256 = "15xrqxna5ms0r634k3bfzyymn431dvqcjwbsap8ay60x371kzbwf"; - goPackagePath = "google.golang.org/cloud"; - buildInputs = [ net oauth2 protobuf google-api-go-client grpc ]; - excludedPackages = "oauth2"; - meta.hydraPlatforms = [ ]; - }; - - gcloud-golang-compute-metadata = buildGoPackage rec { - inherit (gcloud-golang) rev name goPackagePath src; - subPackages = [ "compute/metadata" ]; - buildInputs = [ net ]; - }; - - gettext-go = buildFromGitHub { - rev = "783c0fb3da95b06dd89c4ba2771f1dc289ecc27c"; - owner = "chai2010"; - repo = "gettext-go"; - sha256 = "1iz4wjxc3zkj0xkfs88ig670gb08p1sd922l0ig2cxpjcfjp1y99"; - }; - - gojsonpointer = buildFromGitHub { - rev = "e0fe6f68307607d540ed8eac07a342c33fa1b54a"; - version = "2015-11-27"; - owner = "xeipuuv"; - repo = "gojsonpointer"; - sha256 = "0yfbisaas3w3ygh0cvb82mj6c1f8adqmnwmyid8l5p12r55531f8"; - }; - - gojsonreference = buildFromGitHub { - rev = "e02fc20de94c78484cd5ffb007f8af96be030a45"; - version = "2015-08-08"; - owner = "xeipuuv"; - repo = "gojsonreference"; - sha256 = "195in5zr3bhb3r1iins2h610kz339naj284b3839xmrhc15wqxzq"; - propagatedBuildInputs = [ gojsonpointer ]; - }; - - gojsonschema = buildFromGitHub { - rev = "93e72a773fade158921402d6a24c819b48aba29d"; - version = "2016-03-23"; - owner = "xeipuuv"; - repo = "gojsonschema"; - sha256 = "0hqpcy4xgm9xw16dxbs1skrh6ga60bwfjv5dyz5zh86xsxpln3nr"; - propagatedBuildInputs = [ gojsonreference ]; - }; - - gosexy.gettext = buildFromGitHub { - rev = "4a979356fe964fec12e18326a32a89661f93dea7"; - version = "2016-02-20"; - owner = "gosexy"; - repo = "gettext"; - sha256 = "07f3dmq4qsdykbn3fkha3v1w61hic6xw82dvdmvzhf0m41jxsgy6"; - buildInputs = [ pkgs.gettext go-flags ]; - }; - - ginkgo = buildGoPackage rec { - rev = "5ed93e443a4b7dfe9f5e95ca87e6082e503021d2"; - name = "ginkgo-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/onsi/ginkgo"; - src = fetchFromGitHub { - inherit rev; - owner = "onsi"; - repo = "ginkgo"; - sha256 = "0ghrx5qmgvgb8cbvsj53v1ir4j9agilg4wyhpk5ikqdv6mmqly4h"; - }; - subPackages = [ "./" ]; # don't try to build test fixtures - }; - - git-annex-remote-b2 = buildFromGitHub { - buildInputs = [ go go-backblaze ]; - owner = "encryptio"; - repo = "git-annex-remote-b2"; - rev = "v0.2"; - sha256 = "1139rzdvlj3hanqsccfinprvrzf4qjc5n4f0r21jp9j24yhjs6j2"; - }; - - git-appraise = buildFromGitHub { - rev = "v0.3"; - owner = "google"; - repo = "git-appraise"; - sha256 = "124hci9whsvlcywsfz5y20kkj3nhy176a1d5s1lkvsga09yxq6wm"; - }; - - gls = buildFromGitHub { - rev = "9a4a02dbe491bef4bab3c24fd9f3087d6c4c6690"; - owner = "jtolds"; - repo = "gls"; - sha256 = "1gvgkx7llklz6plapb95fcql7d34i6j7anlvksqhdirpja465jnm"; - }; - - ugorji.go = buildGoPackage rec { - rev = "03e33114d4d60a1f37150325e15f51b0fa6fc4f6"; - name = "ugorji-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/ugorji/go"; - goPackageAliases = [ "github.com/hashicorp/go-msgpack" ]; - - src = fetchFromGitHub { - inherit rev; - owner = "ugorji"; - repo = "go"; - sha256 = "01kdzgx23cgb4k867m1pvsw14hhdr9jf2frqy6i4j4221055m57v"; - }; - }; - - goamz = buildGoPackage rec { - rev = "2a8fed5e89ab9e16210fc337d1aac780e8c7bbb7"; - name = "goamz-${rev}"; - goPackagePath = "github.com/goamz/goamz"; - src = fetchFromGitHub { - inherit rev; - owner = "goamz"; - repo = "goamz"; - sha256 = "0rlinp0cvgw66qjndg4padr5s0wd3n7kjfggkx6czqj9bqaxcz4b"; - }; - propagatedBuildInputs = [ go-ini ]; - - # These might need propagating too, but I haven't tested the entire library - buildInputs = [ sets go-simplejson check-v1 ]; - }; - - goautoneg = buildGoPackage rec { - rev = "75cd24fc2f2c2a2088577d12123ddee5f54e0675"; - name = "goautoneg-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "bitbucket.org/ww/goautoneg"; - - src = fetchhg { - inherit rev; - url = "https://${goPackagePath}"; - sha256 = "19khhn5xhqv1yp7d6k987gh5w5rhrjnp4p0c6fyrd8z6lzz5h9qi"; - }; - }; - - dgnorton.goback = buildFromGitHub { - rev = "a49ca3c0a18f50ae0b8a247e012db4385e516cf4"; - owner = "dgnorton"; - repo = "goback"; - sha256 = "1nyg6sckwd0iafs9vcmgbga2k3hid2q0avhwj29qbdhj3l78xi47"; - }; - - gocapability = buildFromGitHub { - rev = "2c00daeb6c3b45114c80ac44119e7b8801fdd852"; - version = "2015-07-16"; - owner = "syndtr"; - repo = "gocapability"; - sha256 = "1x7jdcg2r5pakjf20q7bdiidfmv7vcjiyg682186rkp2wz0yws0l"; - }; - - goconfig = buildFromGitHub { - rev = "5f601ca6ef4d5cea8d52be2f8b3a420ee4b574a5"; - version = "20160216"; - owner = "Unknwon"; - repo = "goconfig"; - sha256 = "0kgmxvkkb8qa63k6wlm13c6dq203gb3lx1klhswx6cg0nfjp9z9j"; - }; - - gocryptfs = buildFromGitHub { - rev = "v0.5"; - owner = "rfjakob"; - repo = "gocryptfs"; - sha256 = "0jsdz8y7a1fkyrfwg6353c9r959qbqnmf2cjh57hp26w1za5bymd"; - buildInputs = [ crypto go-fuse openssl-spacemonkey ]; - }; - - gocheck = buildGoPackage rec { - rev = "87"; - name = "gocheck-${rev}"; - goPackagePath = "launchpad.net/gocheck"; - src = fetchbzr { - inherit rev; - url = "https://${goPackagePath}"; - sha256 = "1y9fa2mv61if51gpik9isls48idsdz87zkm1p3my7swjdix7fcl0"; - }; - }; - - gocql = buildFromGitHub { - rev = "53ea371a152ac188443fd3479f822ffecb0e9363"; - owner = "gocql"; - repo = "gocql"; - sha256 = "0rqykhqgx7lrggcjyh053c3qddf130sgvsm27gndjv29rjrm874f"; - propagatedBuildInputs = [ inf snappy groupcache ]; - }; - - gocolorize = buildGoPackage rec { - rev = "v1.0.0"; - name = "gocolorize-${rev}"; - goPackagePath = "github.com/agtorre/gocolorize"; - - src = fetchFromGitHub { - inherit rev; - owner = "agtorre"; - repo = "gocolorize"; - sha256 = "1dj7s8bgw9qky344d0k9gz661c0m317a08a590184drw7m51hy9p"; - }; - }; - - goconvey = buildGoPackage rec { - version = "1.5.0"; - name = "goconvey-${version}"; - goPackagePath = "github.com/smartystreets/goconvey"; - src = fetchurl { - name = "${name}.tar.gz"; - url = "https://github.com/smartystreets/goconvey/archive/${version}.tar.gz"; - sha256 = "0g3965cb8kg4kf9b0klx4pj9ycd7qwbw1jqjspy6i5d4ccd6mby4"; - }; - buildInputs = [ oglematchers ]; - doCheck = false; # please check again - }; - - gohtml = buildFromGitHub { - rev = "ccf383eafddde21dfe37c6191343813822b30e6b"; - owner = "yosssi"; - repo = "gohtml"; - sha256 = "1cghwgnx0zjdrqxzxw71riwiggd2rjs2i9p2ljhh76q3q3fd4s9f"; - propagatedBuildInputs = [ net ]; - }; - - gomdb = buildFromGitHub { - rev = "151f2e08ef45cb0e57d694b2562f351955dff572"; - owner = "armon"; - repo = "gomdb"; - sha256 = "02wdhgfarmmwfbc75snd1dh6p9k9c1y2135apdm6mkr062qlxx61"; - }; - - influx.gomdb = buildFromGitHub { - rev = "29fe330c5ab33c4e48470bd4b980bf522471190a"; - owner = "influxdb"; - repo = "gomdb"; - sha256 = "0yg1jpr7lcaqh6i8n9wbs9r128kk541qjv06r9a6fp9vj56rqr3m"; - }; - - gotool = buildFromGitHub { - rev = "58a7a198f2ec6ea7af221fd216e7f559d663ce02"; - owner = "kisielk"; - repo = "gotool"; - sha256 = "1l1w4mczqmah0c154vb1daw5l3cc7vn5gmy5s67p3ad1lnz5l79x"; - }; - - golang-lru = buildFromGitHub { - rev = "7f9ef20a0256f494e24126014135cf893ab71e9e"; - owner = "hashicorp"; - repo = "golang-lru"; - sha256 = "165x0p8plr3fwn4r1d11m3pxa3r8dhyk98z7x6ah35lf63jm2cwv"; - }; - - golang-petname = buildFromGitHub { - rev = "13f8b3a4326b9a6579358543cffe82713c1d6ce4"; - owner = "dustinkirkland"; - repo = "golang-petname"; - sha256 = "1xx6lpv1r2sji8m9w35a2fkr9v4vsgvxrrahcq9bdg75qvadq91d"; - }; - - golang_protobuf_extensions = buildFromGitHub { - rev = "fc2b8d3a73c4867e51861bbdd5ae3c1f0869dd6a"; - version = "2015-04-06"; - owner = "matttproud"; - repo = "golang_protobuf_extensions"; - sha256 = "0ajg41h6402big484drvm72wvid1af2sffw0qkzbmpy04lq68ahj"; - buildInputs = [ protobuf ]; - }; - - goleveldb = buildFromGitHub { - rev = "1a9d62f03ea92815b46fcaab357cfd4df264b1a0"; - version = "2015-08-19"; - owner = "syndtr"; - repo = "goleveldb"; - sha256 = "04ywbif36fiah4fw0x2abr5q3p4fdhi6q57d5icc2mz03q889vhb"; - propagatedBuildInputs = [ ginkgo gomega snappy ]; - }; - - gollectd = buildFromGitHub { - rev = "cf6dec97343244b5d8a5485463675d42f574aa2d"; - owner = "kimor79"; - repo = "gollectd"; - sha256 = "1f3ml406cprzjc192csyr2af4wcadkc74kg8n4c0zdzglxxfsqxa"; - }; - - gomega = buildFromGitHub { - rev = "8adf9e1730c55cdc590de7d49766cb2acc88d8f2"; - owner = "onsi"; - repo = "gomega"; - sha256 = "1rf6cxn50d1pji3pv4q372s395r5nxwcgp405z2r2mfdkri4v3w4"; - }; - - gomemcache = buildFromGitHub { - rev = "72a68649ba712ee7c4b5b4a943a626bcd7d90eb8"; - owner = "bradfitz"; - repo = "gomemcache"; - sha256 = "1r8fpzwhakq8fsppc33n4iivq1pz47xhs0h6bv4x5qiip5mswwvg"; - }; - - gometalinter = buildFromGitHub { - rev = "be87b7414dc44dbea2fee33ccb8bd8a859ebcaf1"; - owner = "alecthomas"; - repo = "gometalinter"; - sha256 = "05n852kf11gq5k7b4h6kz85z99qfa46dy6b6fqkg9xfk2bmvdxms"; - buildInputs = [ shlex kingpin testify ]; - }; - - google-api-go-client = buildFromGitHub { - rev = "a5c3e2a4792aff40e59840d9ecdff0542a202a80"; - version = "2015-08-19"; - owner = "google"; - repo = "google-api-go-client"; - sha256 = "1kigddnbyrl9ddpj5rs8njvf1ck54ipi4q1282k0d6b3am5qfbj8"; - goPackagePath = "google.golang.org/api"; - goPackageAliases = [ "github.com/google/google-api-client" ]; - buildInputs = [ net ]; - }; - - gore = buildFromGitHub { - rev = "v0.2.5"; - owner = "motemen"; - repo = "gore"; - sha256 = "1kg14ps6yw0715rlbcfk1bmrszzgsqgb0r2p3ra1qwxbhj1jd44y"; - buildInputs = [ go-homedir go-quickfix liner tools pkgs.makeWrapper ]; - - # Gore is a Go REPL, so it needs to be able to use the Go compiler. - allowGoReference = true; - - # Gore seems to only work with Go 1.5. Not sure if it doesn't support - # other versions or if I just haven't figured out how to get them working. - disabled = !isGo15; - - postInstall = '' - mkdir -p $out/bin - cp $NIX_BUILD_TOP/go/bin/gore $out/bin - wrapProgram $out/bin/gore --set GOROOT ${self.go}/share/go - ''; - - meta = with stdenv.lib; { - homepage = "https://github.com/motemen/gore"; - description = "Yet another Go REPL that works nicely. Featured with line editing, code completion, and more."; - license = licenses.mit; - }; - }; - - goreturns = buildFromGitHub { - rev = "b368f1f77f2950c753e05a6a29acfc487fa7a959"; - owner = "sqs"; - repo = "goreturns"; - sha256 = "0qllmcvg3xd43pymn24zrjn7vb39zj83ayq3sg7kzgxvba0ylb05"; - goPackagePath = "sourcegraph.com/sqs/goreturns"; - buildInputs = [ tools ]; - }; - - odeke-em.google-api-go-client = buildGoPackage rec { - rev = "30f4c144b02321ebbc712f35dc95c3e72a5a7fdc"; - name = "odeke-em-google-api-go-client-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/odeke-em/google-api-go-client"; - src = fetchFromGitHub { - inherit rev; - owner = "odeke-em"; - repo = "google-api-go-client"; - sha256 = "1fidlljxnd82i2r9yia0b9gh0vv3hwb5k65papnvw7sqpc4sriby"; - }; - buildInputs = [ net ]; - propagatedBuildInputs = [ google-api-go-client ]; - }; - - gopass = buildFromGitHub { - rev = "10b54de414cc9693221d5ff2ae14fd2fbf1b0ac1"; - owner = "howeyc"; - repo = "gopass"; - sha256 = "0lsi89zx1i2f5vhm66zqn2drs7xi7ff8r1xlp6m58r99dddws57s"; - propagatedBuildInputs = [ crypto ]; - }; - - gopherduty = buildFromGitHub { - rev = "f4906ce7e59b33a50bfbcba93e2cf58778c11fb9"; - owner = "darkcrux"; - repo = "gopherduty"; - sha256 = "11w1yqc16fxj5q1y5ha5m99j18fg4p9lyqi542x2xbrmjqqialcf"; - }; - - goproxy = buildFromGitHub { - rev = "2624781dc373cecd1136cafdaaaeba6c9bb90e96"; - version = "2015-07-26"; - owner = "elazarl"; - repo = "goproxy"; - sha256 = "1zz425y8byjaa9i7mslc9anz9w2jc093fjl0562rmm5hh4rc5x5f"; - buildInputs = [ go-charset ]; - }; - - goreq = buildFromGitHub { - rev = "72c51a544272e007ab3da4f7d9ac959b7af7af03"; - version = "2015-08-18"; - owner = "franela"; - repo = "goreq"; - sha256 = "0dnqbijdzp2dgsf6m934nadixqbv73q0zkqglaa956zzw0pyhcxp"; - }; - - gosnappy = buildFromGitHub { - rev = "ce8acff4829e0c2458a67ead32390ac0a381c862"; - owner = "syndtr"; - repo = "gosnappy"; - sha256 = "0ywa52kcii8g2a9lbqcx8ghdf6y56lqq96sl5nl9p6h74rdvmjr7"; - }; - - gosu = buildFromGitHub { - rev = "1.7"; - owner = "tianon"; - repo = "gosu"; - sha256 = "02vln88yyhj8k8cyzac0sgw84626vshmzdrrc1jpl4k4sc27vcbp"; - buildInputs = [ opencontainers.runc ]; - }; - - gozim = buildFromGitHub { - rev = "ea9b7c39cb1d13bd8bf19ba4dc4e2a16bab52f14"; - version = "2016-01-15"; - owner = "akhenakh"; - repo = "gozim"; - sha256 = "1n50fdd56r3s1sgjbpa72nvdh50gfpf6fq55c077w2p3bxn6p8k6"; - propagatedBuildInputs = [ bleve go-liblzma groupcache go-rice goquery ]; - buildInputs = [ pkgs.zip ]; - postInstall = '' - pushd $NIX_BUILD_TOP/go/src/$goPackagePath/cmd/gozimhttpd - ${go-rice.bin}/bin/rice append --exec $bin/bin/gozimhttpd - popd - ''; - dontStrip = true; - }; - - go-acd = buildFromGitHub { - rev = "0bd73ce86fffd8afeafe4e46f419f1a8ce6324b9"; - version = "20160130"; - owner = "ncw"; - repo = "go-acd"; - sha256 = "1vgcglk2pf325hs1319fk73akzi9hd75kwhjq0j4s6l1p7ybj0l7"; - propagatedBuildInputs = [ go-querystring ]; - }; - - go-assert = buildGoPackage rec { - rev = "e17e99893cb6509f428e1728281c2ad60a6b31e3"; - name = "assert-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/bmizerany/assert"; - src = fetchFromGitHub { - inherit rev; - owner = "bmizerany"; - repo = "assert"; - sha256 = "1lfrvqqmb09y6pcr76yjv4r84cshkd4s7fpmiy7268kfi2cvqnpc"; - }; - propagatedBuildInputs = [ pretty ]; - }; - - go-autorest = buildFromGitHub { - rev = "v6.0.0"; - owner = "Azure"; - repo = "go-autorest"; - sha256 = "07zrbw8p3jc5xfjwn0qj1hrn1r7nbnryc5zmvk42qgximyxsls26"; - propagatedBuildInputs = [ jwt-go crypto ]; - }; - - go-backblaze = buildFromGitHub { - buildInputs = [ go-flags go-humanize uilive uiprogress ]; - goPackagePath = "gopkg.in/kothar/go-backblaze.v0"; - rev = "373819725fc560fa962c6cd883b533d2ebec4844"; - owner = "kothar"; - repo = "go-backblaze"; - sha256 = "1kmlwfnnfd4h46bb9pz2gw1hxqm1pzkwvidfmnc0zkrilaywk6fx"; - }; - - go-bencode = buildGoPackage rec { - version = "1.1.1"; - name = "go-bencode-${version}"; - goPackagePath = "github.com/ehmry/go-bencode"; - - src = fetchurl { - url = "https://${goPackagePath}/archive/v${version}.tar.gz"; - sha256 = "0y2kz2sg1f7mh6vn70kga5d0qhp04n01pf1w7k6s8j2nm62h24j6"; - }; - }; - - go-bindata-assetfs = buildFromGitHub { - rev = "d5cac425555ca5cf00694df246e04f05e6a55150"; - owner = "elazarl"; - repo = "go-bindata-assetfs"; - sha256 = "636ce247ff6f85c14f38a421f46662fa77bdc29762692e1f72b3cd1f9d7a1d17"; - version = "2015-08-13"; - - meta = with stdenv.lib; { - description = "Serves embedded files from jteeuwen/go-bindata with net/http"; - homepage = "https://github.com/elazarl/go-bindata-assetfs"; - maintainers = with maintainers; [ matthiasbeyer ]; - license = licenses.bsd2; - }; - }; - - pmylund.go-cache = buildGoPackage rec { - rev = "93d85800f2fa6bd0a739e7bd612bfa3bc008b72d"; - name = "go-cache-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/pmylund/go-cache"; - goPackageAliases = [ - "github.com/robfig/go-cache" - "github.com/influxdb/go-cache" - ]; - - src = fetchFromGitHub { - inherit rev; - owner = "pmylund"; - repo = "go-cache"; - sha256 = "08wfwm7nk381lv6a95p0hfgqwaksn0vhzz1xxdncjdw6w71isyy7"; - }; - }; - - robfig.go-cache = buildFromGitHub { - rev = "9fc39e0dbf62c034ec4e45e6120fc69433a3ec51"; - owner = "robfig"; - repo = "go-cache"; - sha256 = "032nh3y43bpzpcm7bdkxfh55aydvzc2jzhigvy5gd9f648m4j9ha"; - }; - - go-charset = buildFromGitHub { - rev = "61cdee49014dc952076b5852ce4707137eb36b64"; - version = "2014-07-13"; - owner = "paulrosania"; - repo = "go-charset"; - sha256 = "0jp6rwxlgl66dipk6ssk8ly55jxncvsxs7jc3abgdrhr3rzccab8"; - goPackagePath = "code.google.com/p/go-charset"; - - preBuild = '' - find go/src/$goPackagePath -name \*.go | xargs sed -i 's,github.com/paulrosania/go-charset,code.google.com/p/go-charset,g' - ''; - }; - - go-checkpoint = buildFromGitHub { - rev = "88326f6851319068e7b34981032128c0b1a6524d"; - owner = "hashicorp"; - repo = "go-checkpoint"; - sha256 = "1npasn9lmvx57nw3wkswwvl5k0wmn01jpalbwv832x5wq4r0nsz4"; - }; - - go-colorable = buildFromGitHub { - rev = "40e4aedc8fabf8c23e040057540867186712faa5"; - owner = "mattn"; - repo = "go-colorable"; - sha256 = "0pwc0s5lvz209dcyamv1ba1xl0c1r5hpxwlq0w5j2xcz8hzrcwkl"; - }; - - go-colortext = buildFromGitHub { - rev = "13eaeb896f5985a1ab74ddea58707a73d875ba57"; - owner = "daviddengcn"; - repo = "go-colortext"; - sha256 = "0618xs9lc5xfp5zkkb5j47dr7i30ps3zj5fj0zpv8afqh2cc689x"; - }; - - go-etcd = buildGoPackage rec { - rev = "9847b93751a5fbaf227b893d172cee0104ac6427"; - name = "go-etcd-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-etcd"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-etcd"; - sha256 = "1ihq01ayqzxvn6hca5j00vl189vi5lm78f0fy2wpk5mrm3xi01l4"; - }; - - propagatedBuildInputs = [ ugorji.go ]; - }; - - go-flags = buildFromGitHub { - rev = "1b89bf73cd2c3a911d7b2a279ab085c4a18cf539"; - owner = "jessevdk"; - repo = "go-flags"; - sha256 = "027nglc5xx1cm03z9sisg0iqrhwcj6gh5z254rrpl8p4fwrxx680"; - }; - - go-fuse = buildFromGitHub rec { - rev = "bd746dd8bcc8c059a9d953a786a6156eb83f398e"; - version = "2016-05-29"; - owner = "hanwen"; - repo = "go-fuse"; - sha256 = "1dvvclp418j3d02v9717sfqhl6fw6yyddr9r3j8gsiv8nb62ib56"; - }; - - go-github = buildFromGitHub { - rev = "34fb8ee07214d23c3035c95691fe9069705814d6"; - owner = "google"; - repo = "go-github"; - sha256 = "0ygh0f6p679r095l4bym8q4l45w2l3d8r3hx9xrnnppxq59i2395"; - buildInputs = [ oauth2 ]; - propagatedBuildInputs = [ go-querystring ]; - }; - - go-gypsy = buildFromGitHub { - rev = "42fc2c7ee9b8bd0ff636cd2d7a8c0a49491044c5"; - owner = "kylelemons"; - repo = "go-gypsy"; - sha256 = "04iy8rdk19n7i18bqipknrcb8lsy1vr4d1iqyxsxq6rmb7298iwj"; - }; - - go-homedir = buildFromGitHub { - rev = "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4"; - owner = "mitchellh"; - repo = "go-homedir"; - sha256 = "1l5lrsjrnwxn299mhvyxvz8hd0spkx0d31gszm4cyx21bg1xsiy9"; - }; - - go-hostpool = buildFromGitHub { - rev = "d0e59c22a56e8dadfed24f74f452cea5a52722d2"; - version = "2015-03-31"; - owner = "bitly"; - repo = "go-hostpool"; - sha256 = "14ph12krn5zlg00vh9g6g08lkfjxnpw46nzadrfb718yl1hgyk3g"; - }; - - go-httpclient = buildFromGitHub { - rev = "63fe23f7434723dc904c901043af07931f293c47"; - version = "20151014"; - owner = "mreiferson"; - repo = "go-httpclient"; - sha256 = "1xp8n4dkvpdphzjj3f547kgpclf5nzci9w09m95bci7pa7nax0hf"; - }; - - go-humanize = buildFromGitHub { - rev = "8929fe90cee4b2cb9deb468b51fb34eba64d1bf0"; - owner = "dustin"; - repo = "go-humanize"; - sha256 = "1g155kxjh6hd3ibx41nbpj6f7h5bh54zgl9dr53xzg2xlxljgjy0"; - }; - - go-ini = buildFromGitHub { - rev = "a98ad7ee00ec53921f08832bc06ecf7fd600e6a1"; - owner = "vaughan0"; - repo = "go-ini"; - sha256 = "1l1isi3czis009d9k5awsj4xdxgbxn4n9yqjc1ac7f724x6jacfa"; - }; - - go-incremental = buildFromGitHub { - rev = "92fd0ce4a694213e8b3dfd2d39b16e51d26d0fbf"; - version = "2015-02-20"; - owner = "GeertJohan"; - repo = "go.incremental"; - sha256 = "160cspmq73bk6cvisa6kq1dwrrp1yqpkrpq8dl69wcnaf91cbnml"; - }; - - go-isatty = buildFromGitHub { - rev = "ae0b1f8f8004be68d791a576e3d8e7648ab41449"; - owner = "mattn"; - repo = "go-isatty"; - sha256 = "0qrcsh7j9mxcaspw8lfxh9hhflz55vj4aq1xy00v78301czq6jlj"; - }; - - go-jose-v1 = buildFromGitHub { - rev = "v1.0.1"; - owner = "square"; - repo = "go-jose"; - sha256 = "0asa1kl1qbx0cyayk44jhxxff0awpkwiw6va7yzrzjzhfc5kvg7p"; - propagatedBuildInputs = [ cli-go ]; - goPackagePath = "gopkg.in/square/go-jose.v1"; - goPackageAliases = [ "github.com/square/go-jose" ]; - }; - - go-jmespath = buildFromGitHub { - rev = "0.2.2"; - owner = "jmespath"; - repo = "go-jmespath"; - sha256 = "0f4j0m44limnjd6q5fk152g6jq2a5cshcdms4p3a1br8pl9wp5fb"; - }; - - go-liblzma = buildFromGitHub { - rev = "e74be71c3c60411922b5424e875d7692ea638b78"; - version = "2016-01-01"; - owner = "remyoudompheng"; - repo = "go-liblzma"; - sha256 = "12lwjmdcv2l98097rhvjvd2yz8jl741hxcg29i1c18grwmwxa7nf"; - propagatedBuildInputs = [ pkgs.lzma ]; - }; - - go-log = buildGoPackage rec { - rev = "70d039bee4b0e389e5be560491d8291708506f59"; - name = "go-log-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/coreos/go-log"; - - src = fetchFromGitHub { - inherit rev; - owner = "coreos"; - repo = "go-log"; - sha256 = "1s95xmmhcgw4ascf4zr8c4ij2n4s3mr881nxcpmc61g0gb722b13"; - }; - - propagatedBuildInputs = [ osext go-systemd ]; - }; - - go-lz4 = buildFromGitHub { - rev = "74ddf82598bc4745b965729e9c6a463bedd33049"; - owner = "bkaradzic"; - repo = "go-lz4"; - sha256 = "1vdid8v0c2v2qhrg9rzn3l7ya1h34jirrxfnir7gv7w6s4ivdvc1"; - }; - - rcrowley.go-metrics = buildFromGitHub { - rev = "1ce93efbc8f9c568886b2ef85ce305b2217b3de3"; - version = "2015-08-22"; - owner = "rcrowley"; - repo = "go-metrics"; - sha256 = "06gg72krlmd0z3zdq6s716blrga95pyj8dc2f2psfbknbkyrkfqa"; - propagatedBuildInputs = [ stathat ]; - }; - - appengine = buildFromGitHub { - rev = "72f4367c4f14a20a98dcc8b762953b40788407be"; - owner = "golang"; - repo = "appengine"; - sha256 = "1phjkb0f0xp08db3irbf5wzdsxzsddsig5wv70wvmnr44ijllh4f"; - goPackagePath = "google.golang.org/appengine"; - buildInputs = [ protobuf net ]; - }; - - armon.go-metrics = buildGoPackage rec { - rev = "b2d95e5291cdbc26997d1301a5e467ecbb240e25"; - name = "armon.go-metrics-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/armon/go-metrics"; - - src = fetchFromGitHub { - inherit rev; - owner = "armon"; - repo = "go-metrics"; - sha256 = "1jvdf98jlbyzbb9w159nifvv8fihrcs66drnl8pilqdjpmkmyyck"; - }; - - propagatedBuildInputs = [ prometheus.client_golang ]; - }; - - go-md2man = buildFromGitHub { - rev = "71acacd42f85e5e82f70a55327789582a5200a90"; - owner = "cpuguy83"; - repo = "go-md2man"; - sha256 = "0hmkrq4gdzb6mwllmh4p1y7vrz7hyr8xqagpk9nyr5dhygvnnq2v"; - propagatedBuildInputs = [ blackfriday ]; - }; - - go-multierror = buildFromGitHub { - rev = "56912fb08d85084aa318edcf2bba735b97cf35c5"; - owner = "hashicorp"; - repo = "go-multierror"; - sha256 = "0s01cqdab2f7fxkkjjk2wqx05a1shnwlvfn45h2pi3i4gapvcn0r"; - }; - - go-nsq = buildFromGitHub { - rev = "v1.0.4"; - owner = "nsqio"; - repo = "go-nsq"; - sha256 = "06hrkwk84w8rshkanvfgmgbiml7n06ybv192dvibhwgk2wz2dl46"; - propagatedBuildInputs = [ go-simplejson go-snappystream ]; - goPackageAliases = [ "github.com/bitly/go-nsq" ]; - }; - - go-options = buildFromGitHub { - rev = "7c174072188d0cfbe6f01bb457626abb22bdff52"; - version = "2014-12-20"; - owner = "mreiferson"; - repo = "go-options"; - sha256 = "0ksyi2cb4k6r2fxamljg42qbz5hdcb9kv5i7y6cx4ajjy0xznwgm"; - }; - - go-porterstemmer = buildFromGitHub { - rev = "23a2c8e5cf1f380f27722c6d2ae8896431dc7d0e"; - version = "2014-12-30"; - owner = "blevesearch"; - repo = "go-porterstemmer"; - sha256 = "0rcfbrad79xd114h3dhy5d3zs3b5bcgqwm3h5ih1lk69zr9wi91d"; - }; - - go-querystring = buildFromGitHub { - rev = "547ef5ac979778feb2f760cdb5f4eae1a2207b86"; - owner = "google"; - repo = "go-querystring"; - sha256 = "00ani7fhydcmlsm3n93nmj1hcqp2wmzvihnb1gdzynif1hw0530y"; - }; - - go-quickfix = buildFromGitHub { - rev = "a5d4c82f7428280897ef403a87aa78b9c5924a47"; - sha256 = "0m1vclhqygnylfyhzpw5myi3f4qz30a3h9mbssxdsgn67s7l666y"; - owner = "motemen"; - repo = "go-quickfix"; - buildInputs = [ tools ]; - excludedPackages = "testdata"; - - meta = with stdenv.lib; { - homepage = "https://github.com/motemen/go-quickfix"; - description = ''Quick fix non-compiling well-typed Go source code e.g. "x declared and not used."''; - license = licenses.mit; - }; - }; - - go-radix = buildFromGitHub { - rev = "fbd82e84e2b13651f3abc5ffd26b65ba71bc8f93"; - owner = "armon"; - repo = "go-radix"; - sha256 = "16y64r1v054c2ln0bi5mrqq1cmvy6d6pnxk1glb8lw2g31ksa80c"; - }; - - jp = buildFromGitHub { - rev = "0.1.2"; - owner = "jmespath"; - repo = "jp"; - sha256 = "1i0jl0c062crigkxqx8zpyqliz8j4d37y95cna33jl777kx42r6h"; - meta = with stdenv.lib; { - description = "A command line to JMESPath, an expression language for manipulating JSON"; - license = licenses.asl20; - homepage = http://jmespath.org; - maintainers = with maintainers; [ cransom ]; - platforms = platforms.unix; - }; - }; - - mattn.go-runewidth = buildFromGitHub { - rev = "d6bea18f789704b5f83375793155289da36a3c7f"; - version = "2016-03-15"; - owner = "mattn"; - repo = "go-runewidth"; - sha256 = "1hnigpn7rjbwd1ircxkyx9hvi0xmxr32b2jdy2jzw6b3jmcnz1fs"; - }; - - go-restful = buildFromGitHub { - rev = "892402ba11a2e2fd5e1295dd633481f27365f14d"; - owner = "emicklei"; - repo = "go-restful"; - sha256 = "0gr9f53vayc6501a1kaw4p3h9pgf376cgxsfnr3f2dvp0xacvw8x"; - }; - - go-rice = buildFromGitHub { - rev = "4f3c5af2322e393f305d9674845bc36cd1dea589"; - version = "2016-01-04"; - owner = "GeertJohan"; - repo = "go.rice"; - sha256 = "01q2d5iwibwdl68gn8sg6dm7byc42hax3zmiqgmdw63ir1fsv4ag"; - propagatedBuildInputs = [ osext go-spew go-flags go-zipexe rsrc - go-incremental ]; - }; - - go-runit = buildFromGitHub { - rev = "a9148323a615e2e1c93b7a9893914a360b4945c8"; - owner = "soundcloud"; - repo = "go-runit"; - sha256 = "00f2rfhsaqj2wjanh5qp73phx7x12a5pwd7lc0rjfv68l6sgpg2v"; - }; - - go-shlex = buildFromGitHub { - rev = "3f9db97f856818214da2e1057f8ad84803971cff"; - owner = "flynn"; - repo = "go-shlex"; - sha256 = "2a6a6f8eb150260cd60881ec5f027b7d1d2946ee22c627b450773eaf3d1de4c8"; - }; - - go-simplejson = buildFromGitHub { - rev = "18db6e68d8fd9cbf2e8ebe4c81a78b96fd9bf05a"; - version = "2015-03-31"; - owner = "bitly"; - repo = "go-simplejson"; - sha256 = "0lj9cxyncchlw6p35j0yym5q5waiz0giw6ri41qdwm8y3dghwwiy"; - }; - - go-snappystream = buildFromGitHub { - rev = "028eae7ab5c4c9e2d1cb4c4ca1e53259bbe7e504"; - version = "2015-04-16"; - owner = "mreiferson"; - repo = "go-snappystream"; - sha256 = "0jdd5whp74nvg35d9hzydsi3shnb1vrnd7shi9qz4wxap7gcrid6"; - }; - - go-spew = buildFromGitHub { - rev = "5215b55f46b2b919f50a1df0eaa5886afe4e3b3d"; - version = "2015-11-05"; - owner = "davecgh"; - repo = "go-spew"; - sha256 = "15h9kl73rdbzlfmsdxp13jja5gs7sknvqkpq2qizq3qv3nr1x8dk"; - }; - - go-sqlite3 = buildFromGitHub { - rev = "b4142c444a8941d0d92b0b7103a24df9cd815e42"; - version = "2015-07-29"; - owner = "mattn"; - repo = "go-sqlite3"; - sha256 = "0xq2y4am8dz9w9aaq24s1npg1sn8pf2gn4nki73ylz2fpjwq9vla"; - }; - - go-syslog = buildFromGitHub { - rev = "42a2b573b664dbf281bd48c3cc12c086b17a39ba"; - owner = "hashicorp"; - repo = "go-syslog"; - sha256 = "1j53m2wjyczm9m55znfycdvm4c8vfniqgk93dvzwy8vpj5gm6sb3"; - }; - - go-systemd = buildFromGitHub { - rev = "7b2428fec40033549c68f54e26e89e7ca9a9ce31"; - version = "2016-03-10"; - owner = "coreos"; - repo = "go-systemd"; - sha256 = "0kfbxvm9zsjgvgmiq2jl807y4s5z0rya65rm399llr5rr7vz1lxd"; - nativeBuildInputs = [ pkgs.pkgconfig pkgs.systemd ]; - propagatedBuildInputs = [ dbus ]; - }; - - go-update-v0 = buildFromGitHub { - rev = "d8b0b1d421aa1cbf392c05869f8abbc669bb7066"; - owner = "inconshreveable"; - repo = "go-update"; - sha256 = "0cvkik2w368fzimx3y29ncfgw7004qkbdf2n3jy5czvzn35q7dpa"; - goPackagePath = "gopkg.in/inconshreveable/go-update.v0"; - buildInputs = [ osext binarydist ]; - }; - - go-uuid = buildFromGitHub { - rev = "6b8e5b55d20d01ad47ecfe98e5171688397c61e9"; - version = "2015-07-22"; - owner = "satori"; - repo = "go.uuid"; - sha256 = "0injxzds41v8nc0brvyrrjl66fk3hycz6im38s5r9ccbwlp68p44"; - }; - - go-vhost = buildFromGitHub { - rev = "c4c28117502e4bf00960c8282b2d1c51c865fe2c"; - owner = "inconshreveable"; - repo = "go-vhost"; - sha256 = "1rway6sls6fl2s2jk20ajj36rrlzh9944ncc9pdd19kifix54z32"; - }; - - go-zipexe = buildFromGitHub { - rev = "a5fe2436ffcb3236e175e5149162b41cd28bd27d"; - version = "2015-03-29"; - owner = "daaku"; - repo = "go.zipexe"; - sha256 = "0vi5pskhifb6zw78w2j97qbhs09zmrlk4b48mybgk5b3sswp6510"; - }; - - go-zookeeper = buildFromGitHub { - rev = "5bb5cfc093ad18a28148c578f8632cfdb4d802e4"; - version = "2015-06-02"; - owner = "samuel"; - repo = "go-zookeeper"; - sha256 = "1kpx1ymh7rds0b2km291idnyqi0zck74nd8hnk72crgz7wmpqv6z"; - }; - - goquery = buildGoPackage rec { - rev = "f065786d418c9d22a33cad33decd59277af31471"; #tag v.0.3.2 - name = "goquery-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/PuerkitoBio/goquery"; - propagatedBuildInputs = [ cascadia net ]; - buildInputs = [ cascadia net ]; - doCheck = true; - src = fetchFromGitHub { - inherit rev; - owner = "PuerkitoBio"; - repo = "goquery"; - sha256 = "0bskm3nja1v3pmg7g8nqjkmpwz5p72h1h81y076x1z17zrjaw585"; - }; - }; - - groupcache = buildFromGitHub { - rev = "604ed5785183e59ae2789449d89e73f3a2a77987"; - owner = "golang"; - repo = "groupcache"; - sha256 = "1jh862mmgss71wls4yxv633agr7dk7y6h36npwqxbmhbz5c2q28l"; - buildInputs = [ protobuf ]; - }; - - grpc = buildFromGitHub { - rev = "d455e65570c07e6ee7f23275063fbf34660ea616"; - version = "2015-08-29"; - owner = "grpc"; - repo = "grpc-go"; - sha256 = "08vra95hc8ihnj353680zhiqrv3ssw5yywkrifzb1zwl0l3cs2hr"; - goPackagePath = "google.golang.org/grpc"; - goPackageAliases = [ "github.com/grpc/grpc-go" ]; - propagatedBuildInputs = [ http2 net protobuf oauth2 glog etcd ]; - excludedPackages = "\\(test\\|benchmark\\)"; - }; - - gtreap = buildFromGitHub { - rev = "0abe01ef9be25c4aedc174758ec2d917314d6d70"; - version = "2015-08-07"; - owner = "steveyen"; - repo = "gtreap"; - sha256 = "03z5j8myrpmd0jk834l318xnyfm0n4rg15yq0d35y7j1aqx26gvk"; - goPackagePath = "github.com/steveyen/gtreap"; - }; - - gucumber = buildGoPackage rec { - rev = "e8116c9c66e641e9f81fc0a79fac923dfc646378"; - name = "gucumber-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/lsegal/gucumber"; - - src = fetchFromGitHub { - inherit rev; - owner = "lsegal"; - repo = "gucumber"; - sha256 = "1ic1lsv05da6qv8xmf94lpbmaisxi8mwbv7bh2k1y78lh43yncah"; - }; - - buildInputs = [ testify ]; - propagatedBuildInputs = [ ansicolor ]; - }; - - hcl = buildFromGitHub { - rev = "54864211433d45cb780682431585b3e573b49e4a"; - owner = "hashicorp"; - repo = "hcl"; - sha256 = "07l2dydzjpdgm2d4a72hkmincn455j3nrafg6hs3c23bkvizj950"; - buildInputs = [ go-multierror ]; - }; - - hipchat-go = buildGoPackage rec { - rev = "1dd13e154219c15e2611fe46adbb6bf65db419b7"; - name = "hipchat-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/tbruyelle/hipchat-go"; - - src = fetchFromGitHub { - inherit rev; - owner = "tbruyelle"; - repo = "hipchat-go"; - sha256 = "060wg5yjlh28v03mvm80kwgxyny6cyj7zjpcdg032b8b1sz9z81s"; - }; - }; - - hmacauth = buildGoPackage { - name = "hmacauth"; - goPackagePath = "github.com/18F/hmacauth"; - src = fetchFromGitHub { - rev = "9232a6386b737d7d1e5c1c6e817aa48d5d8ee7cd"; - owner = "18F"; - repo = "hmacauth"; - sha256 = "056mcqrf2bv0g9gn2ixv19srk613h4sasl99w9375mpvmadb3pz1"; - }; - }; - - hound = buildGoPackage rec { - rev = "0a364935ba9db53e6f3f5563b02fcce242e0930f"; - name = "hound-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/etsy/hound"; - - src = fetchFromGitHub { - inherit rev; - owner = "etsy"; - repo = "hound"; - sha256 = "0jhnjskpm15nfa1cvx0h214lx72zjvnkjwrbgwgqqyn9afrihc7q"; - }; - buildInputs = [ go-bindata.bin pkgs.nodejs pkgs.nodePackages.react-tools pkgs.python pkgs.rsync ]; - postInstall = '' - pushd go - python src/github.com/etsy/hound/tools/setup - sed -i 's|bin/go-bindata||' Makefile - sed -i 's|$<|#go-bindata|' Makefile - make - ''; - }; - - http-authentication = buildFromGitHub { - rev = "3eca13d6893afd7ecabe15f4445f5d2872a1b012"; - owner = "jimstudt"; - repo = "http-authentication"; - sha256 = "08601600811a172d7f806b541f05691e4bef812ed8a68f7de65fde9ee11a3cb7"; - }; - - http2 = buildFromGitHub rec { - rev = "f8202bc903bda493ebba4aa54922d78430c2c42f"; - owner = "bradfitz"; - repo = "http2"; - sha256 = "0cza2126jbji5vijwk4dxs05hifnff04xcr0vhxvafs6hz3sacvr"; - buildInputs = [ crypto ]; - }; - - httprouter = buildFromGitHub { - rev = "6aacfd5ab513e34f7e64ea9627ab9670371b34e7"; - version = "2015-07-08"; - owner = "julienschmidt"; - repo = "httprouter"; - sha256 = "00rrjysmq898qcrf2hfwfh9s70vwvmjx2kp5w03nz1krxa4zhrkl"; - }; - - hugo = buildFromGitHub { - rev = "v0.15"; - owner = "spf13"; - repo = "hugo"; - sha256 = "1v0z9ar5kakhib3c3c43ddwd1ga4b8icirg6kk3cnaqfckd638l5"; - buildInputs = [ - mapstructure text websocket cobra osext fsnotify.v1 afero - jwalterweatherman cast viper yaml-v2 ace purell mmark blackfriday amber - cssmin nitro inflect fsync - ]; - }; - - inf = buildFromGitHub { - rev = "c85f1217d51339c0fa3a498cc8b2075de695dae6"; - owner = "go-inf"; - repo = "inf"; - sha256 = "1ykdk410vca8i35db2fp6qqcfx0bmx95k0xqd15wzsl0xjmyjk3y"; - goPackagePath = "gopkg.in/inf.v0"; - goPackageAliases = [ "github.com/go-inf/inf" ]; - }; - - inflect = buildGoPackage { - name = "inflect-2013-08-29"; - goPackagePath = "bitbucket.org/pkg/inflect"; - src = fetchFromBitbucket { - rev = "8961c3750a47b8c0b3e118d52513b97adf85a7e8"; - owner = "pkg"; - repo = "inflect"; - sha256 = "11qdyr5gdszy24ai1bh7sf0cgrb4q7g7fsd11kbpgj5hjiigxb9a"; - }; - }; - - influxdb8-client = buildFromGitHub{ - rev = "v0.8.8"; - owner = "influxdb"; - repo = "influxdb"; - sha256 = "0xpigp76rlsxqj93apjzkbi98ha5g4678j584l6hg57p711gqsdv"; - subPackages = [ "client" ]; - }; - - ini = buildFromGitHub { - rev = "12f418cc7edc5a618a51407b7ac1f1f512139df3"; - version = "1.11.0"; - owner = "go-ini"; - repo = "ini"; - sha256 = "0j13iaag3vjb9p4b6nly1y7rw14akfdkv4mkzbj9sil2s75wsx7p"; - }; - - eckardt.influxdb-go = buildGoPackage rec { - rev = "8b71952efc257237e077c5d0672e936713bad38f"; - name = "influxdb-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/eckardt/influxdb-go"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "5318c7e1131ba2330c90a1b67855209e41d3c77811b1d212a96525b42d391f6e"; - }; - }; - - flagfile = buildFromGitHub { - rev = "871ce569c29360f95d7596f90aa54d5ecef75738"; - owner = "spacemonkeygo"; - repo = "flagfile"; - sha256 = "1y6wf1s51c90qc1aki8qikkw1wqapzjzr690xrmnrngsfpdyvkrc"; - }; - - ipfs = buildFromGitHub{ - rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; - version = "2016-01-12"; - owner = "ipfs"; - repo = "go-ipfs"; - sha256 = "1b7aimnbz287fy7p27v3qdxnz514r5142v3jihqxanbk9g384gcd"; - disabled = isGo14; - meta = with stdenv.lib; { - description = "A global, versioned, peer-to-peer filesystem"; - license = licenses.mit; - }; - }; - - json2csv = buildFromGitHub{ - rev = "d82e60e6dc2a7d3bcf15314d1ecbebeffaacf0c6"; - owner = "jehiah"; - repo = "json2csv"; - sha256 = "1fw0qqaz2wj9d4rj2jkfj7rb25ra106p4znfib69p4d3qibfjcsn"; - }; - - jwalterweatherman = buildFromGitHub { - rev = "c2aa07df593850a04644d77bb757d002e517a296"; - owner = "spf13"; - repo = "jwalterweatherman"; - sha256 = "0m8867afsvka5gp2idrmlarpjg7kxx7qacpwrz1wl8y3zxyn3945"; - }; - - jwt-go = buildFromGitHub { - rev = "v2.4.0"; - owner = "dgrijalva"; - repo = "jwt-go"; - sha256 = "00rvv1d2f62svd6311dkr8j56ysx8wgk9yfkb9vqf2mp5ix37dc0"; - }; - - kagome = buildFromGitHub { - rev = "1bbdbdd590e13a8c2f4508c67a079113cd7b9f51"; - version = "2016-01-19"; - owner = "ikawaha"; - repo = "kagome"; - sha256 = "1isnjdkn9hnrkp5g37p2k5bbsrx0ma32v3icwlmwwyc5mppa4blb"; - - # I disable the parallel building, because otherwise each - # spawned compile takes over 1.5GB of RAM. - buildFlags = "-p 1"; - enableParallelBuilding = false; - - goPackagePath = "github.com/ikawaha/kagome"; - }; - - ldap = buildGoPackage rec { - rev = "83e65426fd1c06626e88aa8a085e5bfed0208e29"; - name = "ldap-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/go-ldap/ldap"; - goPackageAliases = [ - "github.com/nmcclain/ldap" - "github.com/vanackere/ldap" - ]; - - src = fetchFromGitHub { - inherit rev; - owner = "go-ldap"; - repo = "ldap"; - sha256 = "179lwaf0hvczl8g4xzkpcpzq25p1b23f7399bx5zl55iin62d8yz"; - }; - - propagatedBuildInputs = [ asn1-ber ]; - }; - - levigo = buildGoPackage rec { - rev = "1ddad808d437abb2b8a55a950ec2616caa88969b"; - name = "levigo-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jmhodges/levigo"; - - src = fetchFromGitHub { - inherit rev; - owner = "jmhodges"; - repo = "levigo"; - sha256 = "1lmafyk7nglhig3n471jq4hmnqf45afj5ldb2jx0253f5ii4r2yq"; - }; - - buildInputs = [ pkgs.leveldb ]; - }; - - liner = buildFromGitHub { - rev = "ad1edfd30321d8f006ccf05f1e0524adeb943060"; - owner = "peterh"; - repo = "liner"; - sha256 = "0c24d9j1gnq7r982h1l2isp3d37379qw155hr8ihx9i2mhpfz317"; - }; - - odeke-em.log = buildFromGitHub { - rev = "cad53c4565a0b0304577bd13f3862350bdc5f907"; - owner = "odeke-em"; - repo = "log"; - sha256 = "059c933qjikxlvaywzpzljqnab19svymbv6x32pc7khw156fh48w"; - }; - - log15 = buildFromGitHub { - rev = "dc7890abeaadcb6a79a9a5ee30bc1897bbf97713"; - owner = "inconshreveable"; - repo = "log15"; - sha256 = "15wgicl078h931n90rksgbqmfixvbfxywk3m8qkaln34v69x4vgp"; - goPackagePath = "gopkg.in/inconshreveable/log15.v2"; - propagatedBuildInputs = [ go-colorable ]; - }; - - log4go = buildGoPackage rec { - rev = "cb4cc51cd03958183d3b637d0750497d88c2f7a8"; - name = "log4go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/ccpaging/log4go"; - goPackageAliases = [ - "github.com/alecthomas/log4go" - "code.google.com/p/log4go" - ]; - - src = fetchFromGitHub { - inherit rev; - owner = "ccpaging"; - repo = "log4go"; - sha256 = "0l9f86zzhla9hq35q4xhgs837283qrm4gxbp5lrwwls54ifiq7k2"; - }; - - propagatedBuildInputs = [ go-colortext ]; - }; - - logger = buildFromGitHub { - rev = "c96f6a1a8c7b6bf2f4860c667867d90174799eb2"; - version = "2015-05-23"; - owner = "calmh"; - repo = "logger"; - sha256 = "1f67xbvvf210g5cqa84l12s00ynfbkjinhl8y6m88yrdb025v1vg"; - }; - - logrus = buildFromGitHub rec { - rev = "v0.9.0"; - owner = "Sirupsen"; - repo = "logrus"; - sha256 = "1m6vvd4pg4lwglhk54lv5mf6cc8h7bi0d9zb3gar4crz531r66y4"; - propagatedBuildInputs = [ airbrake-go bugsnag-go raven-go ]; - }; - - logutils = buildFromGitHub { - rev = "0dc08b1671f34c4250ce212759ebd880f743d883"; - owner = "hashicorp"; - repo = "logutils"; - sha256 = "0rynhjwvacv9ibl2k4fwz0xy71d583ac4p33gm20k9yldqnznc7r"; - }; - - luhn = buildFromGitHub { - rev = "0c8388ff95fa92d4094011e5a04fc99dea3d1632"; - version = "2015-01-13"; - owner = "calmh"; - repo = "luhn"; - sha256 = "1hfj1lx7wdpifn16zqrl4xml6cj5gxbn6hfz1f46g2a6bdf0gcvs"; - }; - - lumberjack-v2 = buildFromGitHub { - rev = "v2.0"; - owner = "natefinch"; - repo = "lumberjack"; - sha256 = "1v92v8vkip36l2fs6l5dpp655151hrijjc781cif658r8nf7xr82"; - goPackagePath = "gopkg.in/natefinch/lumberjack.v2"; - goPackageAliases = [ "github.com/natefinch/lumberjack" ]; - }; - - manners = buildFromGitHub { - rev = "0.4.0"; - owner = "braintree"; - repo = "manners"; - sha256 = "07985pbfhwlhbglr9zwh2wx8kkp0wzqr1lf0xbbxbhga4hn9q3ak"; - - meta = with stdenv.lib; { - description = "A polite Go HTTP server that shuts down gracefully"; - homepage = "https://github.com/braintree/manners"; - maintainers = with maintainers; [ matthiasbeyer ]; - license = licenses.mit; - }; - }; - - mapstructure = buildFromGitHub { - rev = "281073eb9eb092240d33ef253c404f1cca550309"; - owner = "mitchellh"; - repo = "mapstructure"; - sha256 = "1zjx9fv29639sp1fn84rxs830z7gp7bs38yd5y1hl5adb8s5x1mh"; - }; - - mdns = buildGoPackage rec { - rev = "2b439d37011456df8ff83a70ffd1cd6046410113"; - name = "mdns-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/mdns"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "mdns"; - sha256 = "17zwk212zmyramnjylpvvrvbbsz0qb5crkhly6yiqkyll3qzpb96"; - }; - - propagatedBuildInputs = [ net dns ]; - }; - - memberlist = buildGoPackage rec { - rev = "6025015f2dc659ca2c735112d37e753bda6e329d"; - name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/memberlist"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "memberlist"; - sha256 = "01s2gwnbgvwz4wshz9d4za0p12ji4fnapnlmz3jwfcmcwjpyqfb7"; - }; - - propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; - }; - - memberlist_v2 = buildGoPackage rec { - rev = "165267096ca647f00cc0b59a8f1ede9a96cbfbb1"; - name = "memberlist-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/memberlist"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "memberlist"; - sha256 = "09lh79xqy7q0gy23x22lpfwihb5acr750vxl2fx0i4b88kq1vrzh"; - }; - - propagatedBuildInputs = [ ugorji.go armon.go-metrics ]; - }; - - mgo = buildFromGitHub { - rev = "r2015.06.03"; - owner = "go-mgo"; - repo = "mgo"; - sha256 = "1bwqbngdy0ghwpvarsz8rlrirdmjrda44aghihpfmin06hxy3zcd"; - goPackagePath = "gopkg.in/mgo.v2"; - goPackageAliases = [ "github.com/go-mgo/mgo" ]; - buildInputs = [ pkgs.cyrus_sasl tomb ]; - }; - - mmark = buildFromGitHub { - rev = "eacb2132c31a489033ebb068432892ba791a2f1b"; - owner = "miekg"; - repo = "mmark"; - sha256 = "0wsi6fb6f1qi1a8yv858bkgn8pmsspw2k6dx5fx38kvg8zsb4l1a"; - buildInputs = [ toml ]; - }; - - motion = buildFromGitHub { - rev = "e09baac69ad86bff1de868e8d6c4327eb0a918d7"; - owner = "fatih"; - repo = "motion"; - sha256 = "0yay4a1b5l9f4zmwkcsmr5plnp7a9b66bczy1xz4nzhl20bal6sx"; - excludedPackages = [ "testdata" ]; - }; - - mousetrap = buildFromGitHub { - rev = "9dbb96d2c3a964935b0870b5abaea13c98b483aa"; - owner = "inconshreveable"; - repo = "mousetrap"; - sha256 = "1f9g8vm18qv1rcb745a4iahql9vfrz0jni9mnzriab2wy1pfdl5b"; - }; - - msgpack = buildGoPackage rec { - rev = "9dbd4ac30c0b67927f0fb5557fb8341047bd35f7"; - name = "msgpack-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "gopkg.in/vmihailenco/msgpack.v2"; - - src = fetchFromGitHub { - inherit rev; - owner = "vmihailenco"; - repo = "msgpack"; - sha256 = "0nq9yb85hi3c35kwyl38ywv95vd8n7aywmj78wwylglld22nfmw2"; - }; - }; - - mux = buildFromGitHub { - rev = "5a8a0400500543e28b2886a8c52d21a435815411"; - version = "2015-08-05"; - owner = "gorilla"; - repo = "mux"; - sha256 = "15w1bw14vx157r6v98fhy831ilnbzdsm5xzvs23j8hw6gnknzaw1"; - propagatedBuildInputs = [ context ]; - }; - - muxado = buildFromGitHub { - rev = "f693c7e88ba316d1a0ae3e205e22a01aa3ec2848"; - owner = "inconshreveable"; - repo = "muxado"; - sha256 = "1vgiwwxhgx9c899f6ikvrs0w6vfsnypzalcqyr0mqm2w816r9hhs"; - }; - - mysql = buildFromGitHub { - rev = "fb7299726d2e68745a8805b14f2ff44b5c2cfa84"; - owner = "go-sql-driver"; - repo = "mysql"; - sha256 = "185af0x475hq2wmm2zdvxjyslkplf8zzqijdxa937zqxq63qiw4w"; - }; - - net-rpc-msgpackrpc = buildGoPackage rec { - rev = "d377902b7aba83dd3895837b902f6cf3f71edcb2"; - name = "net-rpc-msgpackrpc-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/net-rpc-msgpackrpc"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "net-rpc-msgpackrpc"; - sha256 = "05q8qlf42ygafcp8zdyx7y7kv9vpjrxnp8ak4qcszz9kgl2cg969"; - }; - - propagatedBuildInputs = [ ugorji.go ]; - }; - - netlink = buildFromGitHub { - rev = "a632d6dc2806fa19d2f7693017d3fb79d3d8fa03"; - version = "2016-04-05"; - owner = "vishvananda"; - repo = "netlink"; - sha256 = "1m1aanxlsb1zqqxmdi528ma8c5k2h0hp6vk2nmplm6rldcnvyr4v"; - }; - - ngrok = buildFromGitHub { - rev = "1.7.1"; - owner = "inconshreveable"; - repo = "ngrok"; - sha256 = "1r4nc9knp0nxg4vglg7v7jbyd1nh1j2590l720ahll8a4fbsx5a4"; - goPackagePath = "ngrok"; - - preConfigure = '' - sed -e '/jteeuwen\/go-bindata/d' \ - -e '/export GOPATH/d' \ - -e 's/go get/#go get/' \ - -e 's|bin/go-bindata|go-bindata|' -i Makefile - make assets BUILDTAGS=release - export sourceRoot=$sourceRoot/src/ngrok - ''; - - buildInputs = [ - git log4go websocket go-vhost mousetrap termbox-go rcrowley.go-metrics - yaml-v1 go-bindata.bin go-update-v0 binarydist osext - ]; - - buildFlags = [ "-tags release" ]; - }; - - nitro = buildFromGitHub { - rev = "24d7ef30a12da0bdc5e2eb370a79c659ddccf0e8"; - owner = "spf13"; - repo = "nitro"; - sha256 = "143sbpx0jdgf8f8ayv51x6l4jg6cnv6nps6n60qxhx4vd90s6mib"; - }; - - ntp = buildFromGitHub { - rev = "0a5264e2563429030eb922f258229ae3fee5b5dc"; - owner = "beevik"; - repo = "ntp"; - sha256 = "03fvgbjf2aprjj1s6wdc35wwa7k1w5phkixzvp5n1j21sf6w4h24"; - }; - - objx = buildFromGitHub { - rev = "cbeaeb16a013161a98496fad62933b1d21786672"; - owner = "stretchr"; - repo = "objx"; - sha256 = "1xn7iibjik77h6h0jilfvcjkkzaqz45baf44p3rb2i03hbmkqkp1"; - }; - - oglematchers = buildGoPackage rec { - rev = "4fc24f97b5b74022c2a3f4ca7eed57ca29083d3e"; - name = "oglematchers-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/oglematchers"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "1jjvss4cmcd505aqhsyag15lmzjycgwwml9mfdigprxv3v8f3pnq"; - }; - #goTestInputs = [ ogletest ]; - doCheck = false; # infinite recursion - }; - - oglemock = buildGoPackage rec { - rev = "d054ecee522bdce4481690cdeb09d1b4c44da4e1"; - name = "oglemock-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/oglemock"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "1sn6hj34c54x0svr68vcgm2l725x03ccpq6h3ypi3hrvzg349ykw"; - }; - buildInputs = [ oglematchers ]; - #goTestInputs = [ ogletest ]; - doCheck = false; # infinite recursion - }; - - ogletest = buildGoPackage rec { - rev = "7de485607c3f215cf92c1f793b5d5a7de46ec3c7"; - name = "ogletest-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/jacobsa/ogletest"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "0y4y20a84rhmp66x9d7nzlygiabky98wlbvx56h1hknm08gpskiz"; - }; - buildInputs = [ oglemock oglematchers ]; - doCheck = false; # check this again - }; - - openssl = buildFromGitHub { - rev = "4c6dbafa5ec35b3ffc6a1b1e1fe29c3eba2053ec"; - owner = "10gen"; - repo = "openssl"; - sha256 = "1033c9vgv9lf8ks0qjy0ylsmx1hizqxa6izalma8vi30np6ka6zn"; - goPackageAliases = [ "github.com/spacemonkeygo/openssl" ]; - nativeBuildInputs = [ pkgs.pkgconfig ]; - buildInputs = [ pkgs.openssl ]; - propagatedBuildInputs = [ spacelog ]; - - preBuild = '' - find go/src/$goPackagePath -name \*.go | xargs sed -i 's,spacemonkeygo/openssl,10gen/openssl,g' - ''; - }; - - # reintroduced for gocrytpfs as I don't understand the 10gen/spacemonkey split - openssl-spacemonkey = buildFromGitHub rec { - rev = "71f9da2a482c2b7bc3507c3fabaf714d6bb8b75d"; - name = "openssl-${stdenv.lib.strings.substring 0 7 rev}"; - owner = "spacemonkeygo"; - repo = "openssl"; - sha256 = "1byxwiq4mcbsj0wgaxqmyndp6jjn5gm8fjlsxw9bg0f33a3kn5jk"; - nativeBuildInputs = [ pkgs.pkgconfig ]; - buildInputs = [ pkgs.openssl ]; - propagatedBuildInputs = [ spacelog ]; - }; - - opencontainers.runtime-spec = buildFromGitHub { - rev = "53f0da5e98284a39b3aaa04d5be6730924380686"; - version = "2016-04-14"; - owner = "opencontainers"; - repo = "runtime-spec"; - sha256 = "1vxhbp8rcws4kix1v0pmrbg4x1k7zmsyq1an9526q4jdrdckp7kb"; - propagatedBuildInputs = [ gojsonschema ]; - }; - - opencontainers.runc = buildFromGitHub { - rev = "d1e00150320329da347de8ec830618c697c3df79"; - version = "2016-04-14"; - owner = "opencontainers"; - repo = "runc"; - sha256 = "18dhbb1d25s4cpikrari2ws3w7x92r6yxj4si64h9y177wmn6kml"; - propagatedBuildInputs = [ - go-systemd opencontainers.runtime-spec protobuf gocapability - docker.go-units logrus docker.docker netlink cli-go - ]; - }; - - opsgenie-go-sdk = buildFromGitHub { - rev = "c6e1235dfed2126eb9b562c4d776baf55ccd23e3"; - version = "2015-08-24"; - owner = "opsgenie"; - repo = "opsgenie-go-sdk"; - sha256 = "1prvnjiqmhnp9cggp9f6882yckix2laqik35fcj32117ry26p4jm"; - propagatedBuildInputs = [ seelog go-querystring goreq ]; - excludedPackages = "samples"; - }; - - osext = buildFromGitHub { - rev = "29ae4ffbc9a6fe9fb2bc5029050ce6996ea1d3bc"; - owner = "kardianos"; - repo = "osext"; - sha256 = "1mawalaz84i16njkz6f9fd5jxhcbxkbsjnav3cmqq2dncv2hyv8a"; - goPackageAliases = [ - "github.com/bugsnag/osext" - "bitbucket.org/kardianos/osext" - ]; - }; - - pat = buildFromGitHub { - rev = "b8a35001b773c267eb260a691f4e5499a3531600"; - owner = "bmizerany"; - repo = "pat"; - sha256 = "11zxd45rvjm6cn3wzbi18wy9j4vr1r1hgg6gzlqnxffiizkycxmz"; - }; - - pathtree = buildFromGitHub { - rev = "41257a1839e945fce74afd070e02bab2ea2c776a"; - owner = "robfig"; - repo = "pathtree"; - sha256 = "087hvskjx1zw815h1617i135vwsn5288v579mz6yral91wbn0kvi"; - }; - - panicwrap = buildGoPackage rec { - rev = "e5f9854865b9778a45169fc249e99e338d4d6f27"; - name = "panicwrap-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/bugsnag/panicwrap"; - - src = fetchFromGitHub { - inherit rev; - owner = "bugsnag"; - repo = "panicwrap"; - sha256 = "01afviklmgm25i82c0z9xkjgbrh0j1fm9a1adqfd2jqv0cm41k9d"; - }; - - propagatedBuildInputs = [ osext ]; - }; - - pb = buildFromGitHub { - rev = "e648e12b78cedf14ebb2fc1855033f07b034cfbb"; - owner = "cheggaaa"; - repo = "pb"; - sha256 = "03k4cars7hcqqgdsd0minfls2p7gjpm8q6y8vknh1s68kvxd4xam"; - }; - - perks = buildFromGitHub rec { - version = "2014-07-16"; - owner = "bmizerany"; - repo = "perks"; - rev = "d9a9656a3a4b1c2864fdb44db2ef8619772d92aa"; - sha256 = "0f39b3zfm1zd6xcvlm6szgss026qs84n2j9y5bnb3zxzdkxb9w9n"; - }; - - beorn7.perks = buildFromGitHub rec { - version = "2015-02-23"; - owner = "beorn7"; - repo = "perks"; - rev = "b965b613227fddccbfffe13eae360ed3fa822f8d"; - sha256 = "1p8zsj4r0g61q922khfxpwxhdma2dx4xad1m5qx43mfn28kxngqk"; - }; - - pflag = buildGoPackage rec { - version = "20131112"; - rev = "94e98a55fb412fcbcfc302555cb990f5e1590627"; - name = "pflag-${version}-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/spf13/pflag"; - src = fetchgit { - inherit rev; - url = "https://${goPackagePath}.git"; - sha256 = "0z8nzdhj8nrim8fz11magdl0wxnisix9p2kcvn5kkb3bg8wmxhbg"; - }; - doCheck = false; # bad import path in tests - }; - - pflag-spf13 = buildFromGitHub rec { - rev = "08b1a584251b5b62f458943640fc8ebd4d50aaa5"; - owner = "spf13"; - repo = "pflag"; - sha256 = "139d08cq06jia0arc6cikdnhnaqms07xfay87pzq5ym86fv0agiq"; - }; - - pongo2 = buildFromGitHub { - rev = "5e81b817a0c48c1c57cdf1a9056cf76bdee02ca9"; - version = "2014-10-27"; - owner = "flosch"; - repo = "pongo2"; - sha256 = "0fd7d79644zmcirsb1gvhmh0l5vb5nyxmkzkvqpmzzcg6yfczph8"; - goPackagePath = "gopkg.in/flosch/pongo2.v3"; - }; - - pool = buildGoPackage rec { - rev = "v2.0.0"; - name = "pq-${rev}"; - goPackagePath = "gopkg.in/fatih/pool.v2"; - - src = fetchFromGitHub { - inherit rev; - owner = "fatih"; - repo = "pool"; - sha256 = "1jlrakgnpvhi2ny87yrsj1gyrcncfzdhypa9i2mlvvzqlj4r0dn0"; - }; - }; - - pq = buildFromGitHub { - rev = "0dad96c0b94f8dee039aa40467f767467392a0af"; - owner = "lib"; - repo = "pq"; - sha256 = "06c38iy37251mh8jy9s8n97b01pjnqpq8ii77nnmqh1dsph37jz4"; - }; - - pretty = buildGoPackage rec { - rev = "bc9499caa0f45ee5edb2f0209fbd61fbf3d9018f"; - name = "pretty-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/kr/pretty"; - src = fetchFromGitHub { - inherit rev; - owner = "kr"; - repo = "pretty"; - sha256 = "1m61y592qsnwsqn76v54mm6h2pcvh4wlzbzscc1ag645x0j33vvl"; - }; - propagatedBuildInputs = [ kr.text ]; - }; - - prometheus.client_golang = buildFromGitHub { - rev = "0.7.0"; - owner = "prometheus"; - repo = "client_golang"; - sha256 = "1i3g5h2ncdb8b67742kfpid7d0a1jas1pyicglbglwngfmzhpkna"; - propagatedBuildInputs = [ - goautoneg - protobuf - golang_protobuf_extensions - prometheus.client_model - prometheus.procfs - beorn7.perks - ]; - }; - - prometheus.client_model = buildFromGitHub { - rev = "fa8ad6fec33561be4280a8f0514318c79d7f6cb6"; - version = "2015-02-12"; - owner = "prometheus"; - repo = "client_model"; - sha256 = "11a7v1fjzhhwsl128znjcf5v7v6129xjgkdpym2lial4lac1dhm9"; - buildInputs = [ protobuf ]; - }; - - prometheus.log = buildFromGitHub { - rev = "439e5db48fbb50ebbaf2c816030473a62f505f55"; - version = "2015-05-29"; - owner = "prometheus"; - repo = "log"; - sha256 = "1fl23gsw2hn3c1y91qckr661sybqcw2gqnd1gllxn3hp6p2w6hxv"; - propagatedBuildInputs = [ logrus ]; - }; - - prometheus.node-exporter = buildFromGitHub { - rev = "0.11.0"; - owner = "prometheus"; - repo = "node_exporter"; - sha256 = "149fs9yxnbiyd4ww7bxsv730mcskblpzb3cs4v12jnq2v84a4kk4"; - - buildInputs = [ - go-runit - ntp - prometheus.client_golang - prometheus.client_model - prometheus.log - protobuf - ]; - - doCheck = true; - - meta = with stdenv.lib; { - description = "Prometheus exporter for machine metrics"; - homepage = https://github.com/prometheus/node_exporter; - license = licenses.asl20; - maintainers = with maintainers; [ benley ]; - platforms = platforms.unix; - }; - }; - - prometheus.procfs = buildFromGitHub { - rev = "c91d8eefde16bd047416409eb56353ea84a186e4"; - version = "2015-06-16"; - owner = "prometheus"; - repo = "procfs"; - sha256 = "0pj3gzw9b58l72w0rkpn03ayssglmqfmyxghhfad6mh0b49dvj3r"; - }; - - properties = buildFromGitHub { - rev = "v1.5.6"; - owner = "magiconair"; - repo = "properties"; - sha256 = "043jhba7qbbinsij3yc475s1i42sxaqsb82mivh9gncpvnmnf6cl"; - }; - - gogo.protobuf = buildFromGitHub { - rev = "932b70afa8b0bf4a8e167fdf0c3367cebba45903"; - owner = "gogo"; - repo = "protobuf"; - sha256 = "1djhv9ckqhyjnnqajjv8ivcwpmjdnml30l6zhgbjcjwdyz3nyzhx"; - excludedPackages = "test"; - goPackageAliases = [ - "code.google.com/p/gogoprotobuf" - ]; - }; - - pty = buildFromGitHub { - rev = "67e2db24c831afa6c64fc17b4a143390674365ef"; - owner = "kr"; - repo = "pty"; - sha256 = "1l3z3wbb112ar9br44m8g838z0pq2gfxcp5s3ka0xvm1hjvanw2d"; - }; - - purell = buildFromGitHub { - rev = "d69616f51cdfcd7514d6a380847a152dfc2a749d"; - owner = "PuerkitoBio"; - repo = "purell"; - sha256 = "0nma5i25j0y223ns7482lx4klcfhfwdr8v6r9kzrs0pwlq64ghs0"; - propagatedBuildInputs = [ urlesc ]; - }; - - pushover = buildFromGitHub { - rev = "a8420a1935479cc266bda685cee558e86dad4b9f"; - owner = "thorduri"; - repo = "pushover"; - sha256 = "0j4k43ppka20hmixlwhhz5mhv92p6wxbkvdabs4cf7k8jpk5argq"; - }; - - qart = buildFromGitHub { - rev = "ccb109cf25f0cd24474da73b9fee4e7a3e8a8ce0"; - owner = "vitrun"; - repo = "qart"; - sha256 = "0bhp768b8ha6f25dmhwn9q8m2lkbn4qnjf8n7pizk25jn5zjdvc8"; - }; - - raft = buildGoPackage rec { - rev = "a8065f298505708bf60f518c09178149f3c06f21"; - name = "raft-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft"; - sha256 = "122mjijphas7ybbvssxv1r36sb8i907gdr9kvplnx6yg9w52j3mn"; - }; - - propagatedBuildInputs = [ armon.go-metrics ugorji.go ]; - }; - - raft-boltdb = buildGoPackage rec { - rev = "d1e82c1ec3f15ee991f7cc7ffd5b67ff6f5bbaee"; - name = "raft-boltdb-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft-boltdb"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft-boltdb"; - sha256 = "0p609w6x0h6bapx4b0d91dxnp2kj7dv0534q4blyxp79shv2a8ia"; - }; - - propagatedBuildInputs = [ bolt ugorji.go raft ]; - }; - - raft-mdb = buildGoPackage rec { - rev = "4ec3694ffbc74d34f7532e70ef2e9c3546a0c0b0"; - name = "raft-mdb-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/raft-mdb"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "raft-mdb"; - sha256 = "15l4n6zygwn3h118m2945h9jxkryaxxcgy8xij2rxjhzrzpfyj3i"; - }; - - propagatedBuildInputs = [ gomdb ugorji.go raft ]; - }; - - ratelimit = buildFromGitHub { - rev = "772f5c38e468398c4511514f4f6aa9a4185bc0a0"; - version = "2015-06-19"; - owner = "juju"; - repo = "ratelimit"; - sha256 = "02rs61ay6sq499lxxszjsrxp33m6zklds1xrmnr5fk73vpqfa28p"; - }; - - raw = buildFromGitHub { - rev = "724aedf6e1a5d8971aafec384b6bde3d5608fba4"; - owner = "feyeleanor"; - repo = "raw"; - sha256 = "0z4dcnadgk0fbxxd14dqa1wzzr0v3ksqlzd0swzs2mipim5wjgsz"; - }; - - raven-go = buildFromGitHub { - rev = "74c334d7b8aaa4fd1b4fc6aa428c36fed1699e28"; - version = "2015-07-21"; - owner = "getsentry"; - repo = "raven-go"; - sha256 = "1356a7h8zp1mcywnr0y83w0h4qdblp65rcf9slbx667n8x2rzda8"; - }; - - rclone = buildFromGitHub { - rev = "157d7d45f501238ffb891a78b3eaeda81a42861c"; - version = "1.29"; - owner = "ncw"; - repo = "rclone"; - sha256 = "1mwpf6a27c4lcyrrpyas1k17ijs4a6q29048hhh1hg791f781b21"; - - buildInputs = [ config pflag open-golang oauth2 aws-sdk-go hashicorp.aws-sdk-go errwrap go-httpclient tb ewma swift - goconfig go-acd google-api-go-client dropbox ]; - }; - - redigo = buildFromGitHub { - rev = "535138d7bcd717d6531c701ef5933d98b1866257"; - owner = "garyburd"; - repo = "redigo"; - sha256 = "1m7nc1gvv5yqnq8ii75f33485il6y6prf8gxl97dimsw94qccc5v"; - }; - - reflectwalk = buildFromGitHub { - rev = "eecf4c70c626c7cfbb95c90195bc34d386c74ac6"; - owner = "mitchellh"; - repo = "reflectwalk"; - sha256 = "1nm2ig7gwlmf04w7dbqd8d7p64z2030fnnfbgnd56nmd7dz8gpxq"; - }; - - revel = buildGoPackage rec { - rev = "v0.12.0"; - name = "revel-${rev}"; - goPackagePath = "github.com/revel/revel"; - - src = fetchFromGitHub { - inherit rev; - owner = "revel"; - repo = "revel"; - sha256 = "1g88fw5lqh3a9qmx182s64zk3h1s1mx8bljyghissmd9z505pbzf"; - }; - - # Using robfig's old go-cache due to compilation errors. - # Try to switch to pmylund.go-cache after v0.12.0 - propagatedBuildInputs = [ - gocolorize config net pathtree fsnotify.v1 robfig.go-cache redigo gomemcache - ]; - }; - - restic = buildFromGitHub { - rev = "4d7e802c44369b40177cd52938bc5b0930bd2be1"; - version = "2016-01-17"; - owner = "restic"; - repo = "restic"; - sha256 = "0lf40539dy2xa5l1xy1kyn1vk3w0fmapa1h65ciksrdhn89ilrxv"; - # Using its delivered dependencies. Easier. - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/$goPackagePath/Godeps/_workspace"; - }; - - rgbterm = buildFromGitHub { - rev = "c07e2f009ed2311e9c35bca12ec00b38ccd48283"; - owner = "aybabtme"; - repo = "rgbterm"; - sha256 = "1qph7drds44jzx1whqlrh1hs58k0wv0v58zyq2a81hmm72gsgzam"; - }; - - ripper = buildFromGitHub { - rev = "bd1a682568fcb8a480b977bb5851452fc04f9ccb"; - owner = "odeke-em"; - repo = "ripper"; - sha256 = "010jsclnmkaywdlyfqdmq372q7kh3qbz2zra0c4wn91qnkmkrnw1"; - }; - - rsrc = buildFromGitHub { - rev = "ba14da1f827188454a4591717fff29999010887f"; - version = "2015-11-03"; - owner = "akavel"; - repo = "rsrc"; - sha256 = "0g9fj10xnxcv034c8hpcgbhswv6as0d8l176c5nfgh1lh6klmmzc"; - }; - - sandblast = buildGoPackage rec { - rev = "694d24817b9b7b8bacb6d458b7989b30d7fe3555"; - name = "sandblast-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/aarzilli/sandblast"; - - src = fetchFromGitHub { - inherit rev; - owner = "aarzilli"; - repo = "sandblast"; - sha256 = "1pj0bic3x89v44nr8ycqxwnafkiz3cr5kya4wfdfj5ldbs5xnq9l"; - }; - - buildInputs = [ net text ]; - }; - - # This is the upstream package name, underscores and all. I don't like it - # but it seems wrong to change their name when packaging it. - sanitized_anchor_name = buildFromGitHub { - rev = "10ef21a441db47d8b13ebcc5fd2310f636973c77"; - owner = "shurcooL"; - repo = "sanitized_anchor_name"; - sha256 = "1cnbzcf47cn796rcjpph1s64qrabhkv5dn9sbynsy7m9zdwr5f01"; - }; - - scada-client = buildGoPackage rec { - rev = "c26580cfe35393f6f4bf1b9ba55e6afe33176bae"; - name = "scada-client-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/hashicorp/scada-client"; - - src = fetchFromGitHub { - inherit rev; - owner = "hashicorp"; - repo = "scada-client"; - sha256 = "0s8xg49fa7d2d0vv8pi37f43rjrgkb7w6x6ydkikz1v8ccg05p3b"; - }; - - buildInputs = [ armon.go-metrics net-rpc-msgpackrpc yamux ]; - }; - - seelog = buildFromGitHub { - rev = "c510775bb50d98213cfafca75a4bc5e3fddc8d8f"; - version = "2015-05-26"; - owner = "cihub"; - repo = "seelog"; - sha256 = "1f0rwgqlffv1a7b05736a4gf4l9dn80wsfyqcnz6qd2skhwnzv29"; - }; - - segment = buildFromGitHub { - rev = "db70c57796cc8c310613541dfade3dce627d09c7"; - version = "2016-01-05"; - owner = "blevesearch"; - repo = "segment"; - sha256 = "09xfdlcc6bsrr5grxp6fgnw9p4cf6jc0wwa9049fd1l0zmhj2m1g"; - }; - - semver = buildFromGitHub { - rev = "31b736133b98f26d5e078ec9eb591666edfd091f"; - version = "2015-07-20"; - owner = "blang"; - repo = "semver"; - sha256 = "19ifi0na4cj23q3h8xv89mx7p48y0ciymhmlrq9milm0xz80wk10"; - }; - - sets = buildGoPackage rec { - rev = "6c54cb57ea406ff6354256a4847e37298194478f"; - name = "sets-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/feyeleanor/sets"; - src = fetchFromGitHub { - inherit rev; - owner = "feyeleanor"; - repo = "sets"; - sha256 = "1l3hyl8kmwb9k6qi8x4w54g2cmydap0g3cqvs47bhvm47rg1j1zc"; - }; - propagatedBuildInputs = [ slices ]; - }; - - shlex = buildFromGitHub { - rev = "6f45313302b9c56850fc17f99e40caebce98c716"; - owner = "google"; - repo = "shlex"; - sha256 = "0ybz1w3hndma8myq3pxan36533hy9f4w598hsv4hnj21l4br8jpx"; - }; - - slices = buildGoPackage rec { - rev = "bb44bb2e4817fe71ba7082d351fd582e7d40e3ea"; - name = "slices-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/feyeleanor/slices"; - src = fetchFromGitHub { - inherit rev; - owner = "feyeleanor"; - repo = "slices"; - sha256 = "1miqhzqgww41d8xbvmxfzx9rsfxgw742nqz96mhjkxpadrxg870v"; - }; - propagatedBuildInputs = [ raw ]; - }; - - spacelog = buildFromGitHub { - rev = "ae95ccc1eb0c8ce2496c43177430efd61930f7e4"; - owner = "spacemonkeygo"; - repo = "spacelog"; - sha256 = "1i1awivsix0ch0vg6rwvx0536ziyw6phcx45b1rmrclp6b6dyacy"; - buildInputs = [ flagfile ]; - }; - - stathat = buildGoPackage rec { - rev = "01d012b9ee2ecc107cb28b6dd32d9019ed5c1d77"; - name = "stathat-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/stathat/go"; - src = fetchFromGitHub { - inherit rev; - owner = "stathat"; - repo = "go"; - sha256 = "0mrn70wjfcs4rfkmga3hbfqmbjk33skcsc8pyqxp02bzpwdpc4bi"; - }; - }; - - statos = buildFromGitHub { - rev = "f27d6ab69b62abd9d9fe80d355e23a3e45d347d6"; - owner = "odeke-em"; - repo = "statos"; - sha256 = "17cpks8bi9i7p8j38x0wy60jb9g39wbzszcmhx4hlq6yzxr04jvs"; - }; - - statik = buildGoPackage rec { - rev = "274df120e9065bdd08eb1120e0375e3dc1ae8465"; - name = "statik-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/rakyll/statik"; - - excludedPackages = "example"; - - src = fetchFromGitHub { - inherit rev; - owner = "rakyll"; - repo = "statik"; - sha256 = "0llk7bxmk66wdiy42h32vj1jfk8zg351xq21hwhrq7gkfljghffp"; - }; - }; - - structfield = buildFromGitHub { - rev = "01a738558a47fbf16712994d1737fb31c77e7d11"; - version = "2014-08-01"; - owner = "vincent-petithory"; - repo = "structfield"; - sha256 = "1kyx71z13mf6hc8ly0j0b9zblgvj5lzzvgnc3fqh61wgxrsw24dw"; - }; - - structs = buildFromGitHub { - rev = "a9f7daa9c2729e97450c2da2feda19130a367d8f"; - owner = "fatih"; - repo = "structs"; - sha256 = "0pyrc7svc826g37al3db19n5l4r2m9h1mlhjh3hz2r41xfaqia50"; - }; - - suture = buildFromGitHub rec { - version = "1.0.1"; - rev = "v${version}"; - owner = "thejerf"; - repo = "suture"; - sha256 = "094ksr2nlxhvxr58nbnzzk0prjskb21r86jmxqjr3rwg4rkwn6d4"; - }; - - syncthing-protocol011 = buildFromGitHub { - rev = "84365882de255d2204d0eeda8dee288082a27f98"; - version = "2015-08-28"; - owner = "syncthing"; - repo = "protocol"; - sha256 = "07xjs43lpd51pc339f8x487yhs39riysj3ifbjxsx329kljbflwx"; - propagatedBuildInputs = [ go-lz4 logger luhn xdr text ]; - }; - - swift = buildFromGitHub { - rev = "aaed45e6d8b38e37e6085a8e5541a11496f160bd"; - version = "20160216"; - owner = "ncw"; - repo = "swift"; - sha256 = "1sh4lnqh934g4jws3g7vh0w7n882jwybc95jgnnpyk8k1zmifbv2"; - }; - - tablewriter = buildFromGitHub { - rev = "cca8bbc0798408af109aaaa239cbd2634846b340"; - version = "2016-01-15"; - owner = "olekukonko"; - repo = "tablewriter"; - sha256 = "0f9ph3z7lh6p6gihbl1461j9yq5qiaqxr9mzdkp512n18v89ml48"; - propagatedBuildInputs = [ mattn.go-runewidth ]; - }; - - tb = buildFromGitHub { - rev = "19f4c3d79d2bd67d0911b2e310b999eeea4454c1"; - version = "20151208"; - owner = "tsenart"; - repo = "tb"; - sha256 = "148vy4xij5qm8dq5plyczx2wbpi4gpg8ksr5r3b4m8j0z1kjws8y"; - }; - - termbox-go = buildGoPackage rec { - rev = "9aecf65084a5754f12d27508fa2e6ed56851953b"; - name = "termbox-go-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/nsf/termbox-go"; - src = fetchFromGitHub { - inherit rev; - owner = "nsf"; - repo = "termbox-go"; - sha256 = "16sak07bgvmax4zxfrd4jia1dgygk733xa8vk8cdx28z98awbfsh"; - }; - - subPackages = [ "./" ]; # prevent building _demos - }; - - testify = buildGoPackage rec { - rev = "089c7181b8c728499929ff09b62d3fdd8df8adff"; - name = "testify-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/stretchr/testify"; - - src = fetchFromGitHub { - inherit rev; - owner = "stretchr"; - repo = "testify"; - sha256 = "03dzxkxbs298pvfsjz4kdadfaf9jkzsdhshqmg4p12wbyaj09s4p"; - }; - - buildInputs = [ objx ]; - }; - - kr.text = buildGoPackage rec { - rev = "6807e777504f54ad073ecef66747de158294b639"; - name = "kr.text-${stdenv.lib.strings.substring 0 7 rev}"; - goPackagePath = "github.com/kr/text"; - src = fetchFromGitHub { - inherit rev; - owner = "kr"; - repo = "text"; - sha256 = "1wkszsg08zar3wgspl9sc8bdsngiwdqmg3ws4y0bh02sjx5a4698"; - }; - propagatedBuildInputs = [ pty ]; - }; - - timer_metrics = buildFromGitHub { - rev = "afad1794bb13e2a094720aeb27c088aa64564895"; - version = "2015-02-02"; - owner = "bitly"; - repo = "timer_metrics"; - sha256 = "1b717vkwj63qb5kan4b92kx4rg6253l5mdb3lxpxrspy56a6rl0c"; - }; - - tomb = buildFromGitHub { - rev = "14b3d72120e8d10ea6e6b7f87f7175734b1faab8"; - owner = "go-tomb"; - repo = "tomb"; - sha256 = "1nza31jvkpka5431c4bdbirvjdy36b1b55sbzljqhqih25jrcjx5"; - goPackagePath = "gopkg.in/tomb.v2"; - goPackageAliases = [ "github.com/go-tomb/tomb" ]; - }; - - toml = buildFromGitHub { - rev = "056c9bc7be7190eaa7715723883caffa5f8fa3e4"; - version = "2015-05-01"; - owner = "BurntSushi"; - repo = "toml"; - sha256 = "0gkgkw04ndr5y7hrdy0r4v2drs5srwfcw2bs1gyas066hwl84xyw"; - }; - - uilive = buildFromGitHub { - rev = "1b9b73fa2b2cc24489b1aba4d29a82b12cd0a71f"; - owner = "gosuri"; - repo = "uilive"; - sha256 = "0669f21hd5cw74irrfakdpvxn608cd5xy6s2nyp5kgcy2ijrq4ab"; - }; - - uiprogress = buildFromGitHub { - buildInputs = [ uilive ]; - rev = "fd1c82df78a6c1f5ddbd3b6ec46407ea0acda1ad"; - owner = "gosuri"; - repo = "uiprogress"; - sha256 = "1s61vp2h6n1d8y1zqr2ca613ch5n18rx28waz6a8im94sgzzawp7"; - }; - - urlesc = buildFromGitHub { - rev = "5fa9ff0392746aeae1c4b37fcc42c65afa7a9587"; - owner = "opennota"; - repo = "urlesc"; - sha256 = "0dppkmfs0hb5vcqli191x9yss5vvlx29qxjcywhdfirc89rn0sni"; - }; - - uuid = buildFromGitHub { - rev = "cccd189d45f7ac3368a0d127efb7f4d08ae0b655"; - version = "2015-08-24"; - owner = "pborman"; - repo = "uuid"; - sha256 = "0hswk9ihv3js5blp9pk2bpig64zkmyp5p1zhmgydfhb0dr2w8iad"; - }; - - vcs = buildFromGitHub { - rev = "1.4.0"; - owner = "Masterminds"; - repo = "vcs"; - sha256 = "0590ww2av4407y7zy3bcmnr8i74fv00k9zzcxcpjxivl6qszna0d"; - }; - - viper = buildFromGitHub { - rev = "e37b56e207dda4d79b9defe0548e960658ee8b6b"; - owner = "spf13"; - repo = "viper"; - sha256 = "0q0hkla23hgvc3ab6qdlrfwxa8lnhy2s2mh2c8zrh632gp8d6prl"; - propagatedBuildInputs = [ - mapstructure yaml-v2 jwalterweatherman crypt fsnotify.v1 cast properties - pretty toml pflag-spf13 - ]; - }; - - vulcand = buildGoPackage rec { - rev = "v0.8.0-beta.3"; - name = "vulcand-${rev}"; - goPackagePath = "github.com/mailgun/vulcand"; - preBuild = "export GOPATH=$GOPATH:$NIX_BUILD_TOP/go/src/${goPackagePath}/Godeps/_workspace"; - src = fetchFromGitHub { - inherit rev; - owner = "mailgun"; - repo = "vulcand"; - sha256 = "08mal9prwlsav63r972q344zpwqfql6qw6v4ixbn1h3h32kk3ic6"; - }; - subPackages = [ "./" ]; - }; - - websocket = buildFromGitHub { - rev = "6eb6ad425a89d9da7a5549bc6da8f79ba5c17844"; - owner = "gorilla"; - repo = "websocket"; - sha256 = "0gljdfxqc94yb1kpqqrm5p94ph9dsxrzcixhdj6m92cwwa7z7p99"; - }; - - yaml-v1 = buildGoPackage rec { - name = "yaml-v1-${version}"; - version = "git-2015-05-01"; - goPackagePath = "gopkg.in/yaml.v1"; - src = fetchFromGitHub { - rev = "b0c168ac0cf9493da1f9bb76c34b26ffef940b4a"; - owner = "go-yaml"; - repo = "yaml"; - sha256 = "0jbdy41pplf2d1j24qwr8gc5qsig6ai5ch8rwgvg72kq9q0901cy"; - }; - }; - - yaml-v2 = buildFromGitHub { - rev = "7ad95dd0798a40da1ccdff6dff35fd177b5edf40"; - version = "2015-06-24"; - owner = "go-yaml"; - repo = "yaml"; - sha256 = "0d4jh46jq2yjg5dp00l7yl9ilhly7k4mfvi4harafd5ap5k9wnpb"; - goPackagePath = "gopkg.in/yaml.v2"; - }; - - yamux = buildFromGitHub { - rev = "b2e55852ddaf823a85c67f798080eb7d08acd71d"; - owner = "hashicorp"; - repo = "yamux"; - sha256 = "0mr87my5m8lgc0byjcddlclxg34d07cpi9p78ps3rhzq7p37g533"; - }; - - xdr = buildFromGitHub { - rev = "e467b5aeb65ca8516fb3925c84991bf1d7cc935e"; - version = "2015-04-08"; - owner = "calmh"; - repo = "xdr"; - sha256 = "1bi4b2xkjzcr0vq1wxz14i9943k71sj092dam0gdmr9yvdrg0nra"; - }; - - xon = buildFromGitHub { - rev = "d580be739d723da4f6378083128f93017b8ab295"; - owner = "odeke-em"; - repo = "xon"; - sha256 = "07a7zj01d4a23xqp01m48jp2v5mw49islf4nbq2rj13sd5w4s6sc"; - }; - - ninefans = buildFromGitHub { - rev = "65b8cf069318223b1e722b4b36e729e5e9bb9eab"; - version = "2015-10-24"; - owner = "9fans"; - repo = "go"; - sha256 = "0kzyxhs2xf0339nlnbm9gc365b2svyyjxnr86rphx5m072r32ims"; - goPackagePath = "9fans.net/go"; - goPackageAliases = [ - "github.com/9fans/go" - ]; - excludedPackages = "\\(plan9/client/cat\\|acme/Watch\\)"; - buildInputs = [ net ]; - }; - - godef = buildFromGitHub { - rev = "ea14e800fd7d16918be88dae9f0195f7bd688586"; - version = "2015-10-24"; - owner = "rogpeppe"; - repo = "godef"; - sha256 = "1wkvsz8nqwyp36wbm8vcw4449sfs46894nskrfj9qbsrjijvamyc"; - excludedPackages = "\\(go/printer/testdata\\)"; - buildInputs = [ ninefans ]; - subPackages = [ "./" ]; - }; - - godep = buildFromGitHub rec { - version = "71"; - rev = "v${version}"; - owner = "tools"; - repo = "godep"; - sha256 = "08dndq9lakw7civz4h44mwmmnc6qflsfhp8c7c21l95zvmavbly7"; - }; - - color = buildFromGitHub { - rev = "9aae6aaa22315390f03959adca2c4d395b02fcef"; - owner = "fatih"; - repo = "color"; - sha256 = "1vjcgx4xc0h4870qzz4mrh1l0f07wr79jm8pnbp6a2yd41rm8wjp"; - propagatedBuildInputs = [ net go-isatty ]; - buildInputs = [ ansicolor go-colorable ]; - }; - - textsecure = buildFromGitHub rec { - rev = "505e129c42fc4c5cb2d105520cef7c04fa3a6b64"; - owner = "janimo"; - repo = "textsecure"; - sha256 = "0sdcqd89dlic0bllb6mjliz4x54rxnm1r3xqd5qdp936n7xs3mc6"; - propagatedBuildInputs = [ crypto protobuf ed25519 yaml-v2 logrus ]; - disabled = isGo14; - }; - - template = buildFromGitHub { - rev = "14fd436dd20c3cc65242a9f396b61bfc8a3926fc"; - owner = "alecthomas"; - repo = "template"; - sha256 = "19rzvvcgvr1z2wz9xpqsmlm8syizbpxjp5zbzgakvrqlajpbjvx2"; - }; - - units = buildFromGitHub { - rev = "2efee857e7cfd4f3d0138cc3cbb1b4966962b93a"; - owner = "alecthomas"; - repo = "units"; - sha256 = "1j65b91qb9sbrml9cpabfrcf07wmgzzghrl7809hjjhrmbzri5bl"; - }; - - go-difflib = buildFromGitHub { - rev = "d8ed2627bdf02c080bf22230dbb337003b7aba2d"; - owner = "pmezard"; - repo = "go-difflib"; - sha256 = "0w1jp4k4zbnrxh3jvh8fgbjgqpf2hg31pbj8fb32kh26px9ldpbs"; - }; - - kingpin = buildFromGitHub { - rev = "21551c2a6259a8145110ca80a36e25c9d7624032"; - owner = "alecthomas"; - repo = "kingpin"; - sha256 = "1zhpqc4qxsw9lc1b4dwk5r42k9r702ihzrabs3mnsphvm9jx4l59"; - propagatedBuildInputs = [ template units ]; - goPackageAliases = [ "gopkg.in/alecthomas/kingpin.v2" ]; - }; - - godotenv = buildFromGitHub rec { - rev = "4ed13390c0acd2ff4e371e64d8b97c8954138243"; - version = "2015-09-07"; - owner = "joho"; - repo = "godotenv"; - sha256 = "1wzgws4dnlavi14aw3jzdl3mdr348skgqaq8xx4j8l68irfqyh0p"; - buildInputs = [ go-colortext yaml-v2 ]; - }; - - goreman = buildFromGitHub rec { - version = "0.0.8-rc0"; - rev = "d3e62509ccf23e47a390447886c51b1d89d0934b"; - owner = "mattn"; - repo = "goreman"; - sha256 = "153hf4dq4jh1yv35pv30idmxhc917qzl590qy5394l48d4rapgb5"; - buildInputs = [ go-colortext yaml-v2 godotenv ]; - }; - - # To use upower-notify, the maintainer suggests adding something like this to your configuration.nix: - # - # service.xserver.displayManager.sessionCommands = '' - # ${pkgs.dunst}/bin/dunst -shrink -geometry 0x0-50-50 -key space & # ...if don't already have a dbus notification display app - # (sleep 3; exec ${pkgs.yeshup}/bin/yeshup ${pkgs.go-upower-notify}/bin/upower-notify) & - # ''; - upower-notify = buildFromGitHub rec { - rev = "14c581e683a7e90ec9fa6d409413c16599a5323c"; - version = "2016-03-10"; - owner = "omeid"; - repo = "upower-notify"; - sha256 = "16zlvn53p9m10ph8n9gps51fkkvl6sf4afdzni6azk05j0ng49jw"; - propagatedBuildInputs = [ dbus ]; - }; - - ingo = buildFromGitHub rec { - rev = "fab41e4e62cbef5d92998746ec25f7e195100f38"; - version = "2016-04-07"; - owner = "schachmat"; - repo = "ingo"; - sha256 = "04yfnch7pdabjjqfl2qxjmsaknvp4m1rbjlv8qrpmnqwjkxzx0hb"; - propagatedBuildInputs = [ ]; - }; - - gopsutil = buildFromGitHub rec { - version = "1.0.0"; - rev = "37d89088411de59a4ef9fc340afa0e89dfcb4ea9"; - owner = "shirou"; - repo = "gopsutil"; - sha256 = "13bi1d9hw8vr6qjpblryhglm0ikzpijbwhpp6rx7f5yd7sxsswhm"; - propagatedBuildInputs = [ ]; - }; - - gohai = buildFromGitHub rec { - rev = "94685629c66fe481bfb499175b448fb401a41781"; - version = "2016-04-14"; - owner = "DataDog"; - repo = "gohai"; - sha256 = "0dvrv7skc0k8zd83gbwml8c02wjwldhxhhgzmwdfvvaqc00qz2c0"; - propagatedBuildInputs = [ seelog gopsutil ]; - }; -}; in self From 31f4a9b5590fdef5412f13e16888d2fa94f6f5f7 Mon Sep 17 00:00:00 2001 From: obadz Date: Mon, 30 May 2016 00:10:28 +0100 Subject: [PATCH 479/520] xfce.thunar: patch to avoid error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit «the desktop file … is in an insecure location» which pops up when invoking desktop files that are symlinks to the /nix/store this error was added by this commit: https://github.com/xfce-mirror/thunar/commit/1ec8ff89ec5a3314fcd6a57f1475654ddecc9875 «Only allow direct execution of desktop files in an XDG directory and if they are executable.» --- pkgs/desktops/xfce/core/thunar-build.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/desktops/xfce/core/thunar-build.nix b/pkgs/desktops/xfce/core/thunar-build.nix index 7a69295d34dd..a68686219ba9 100644 --- a/pkgs/desktops/xfce/core/thunar-build.nix +++ b/pkgs/desktops/xfce/core/thunar-build.nix @@ -17,6 +17,10 @@ stdenv.mkDerivation rec { patches = [ ./thunarx_plugins_directory.patch ]; + postPatch = '' + sed -i -e 's|thunar_dialogs_show_insecure_program (parent, _(".*"), file, exec)|1|' thunar/thunar-file.c + ''; + buildInputs = [ pkgconfig intltool gtk dbus_glib libstartup_notification libnotify libexif pcre udev @@ -35,4 +39,4 @@ stdenv.mkDerivation rec { platforms = stdenv.lib.platforms.linux; maintainers = [ stdenv.lib.maintainers.eelco ]; }; -} \ No newline at end of file +} From c860de987d5eb97a2c8d41e9e1a311c3cf988988 Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Tue, 7 Jun 2016 23:51:28 -0700 Subject: [PATCH 480/520] io: 2013.12.04 -> 2015.11.11 Updating IO language to latest version --- pkgs/development/interpreters/io/default.nix | 48 ++++++++++++++------ 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/pkgs/development/interpreters/io/default.nix b/pkgs/development/interpreters/io/default.nix index 4f4880aaca72..8ed50b886876 100644 --- a/pkgs/development/interpreters/io/default.nix +++ b/pkgs/development/interpreters/io/default.nix @@ -1,32 +1,52 @@ -{ stdenv, fetchurl, cmake, zlib, sqlite, gmp, libffi, cairo, ncurses, - freetype, mesa, libpng, libtiff, libjpeg, readline, libsndfile, libxml2, - freeglut, libsamplerate, pcre, libevent, libedit, yajl, - python, openssl, glfw +{ stdenv, fetchFromGitHub, cmake, zlib, sqlite, gmp, libffi, cairo, + ncurses, freetype, mesa, libpng, libtiff, libjpeg, readline, libsndfile, + libxml2, freeglut, libsamplerate, pcre, libevent, libedit, yajl, + python3, openssl, glfw, pkgconfig, libpthreadstubs, libXdmcp, libmemcached }: stdenv.mkDerivation { - name = "io-2013.12.04"; - src = fetchurl { - url = http://github.com/stevedekorte/io/tarball/2013.12.04; - name = "io-2013.12.04.tar.gz"; - sha256 = "0kvwr32xdpcr32rnv301xr5l89185dsisbj4v465m68isas0gjm5"; + name = "io-2015.11.11"; + src = fetchFromGitHub { + owner = "stevedekorte"; + repo = "io"; + rev = "1fc725e0a8635e2679cbb20521f4334c25273caa"; + sha256 = "0ll2kd72zy8vf29sy0nnx3awk7nywpwpv21rvninjjaqkygrc0qw"; }; buildInputs = [ - cmake zlib sqlite gmp libffi cairo ncurses freetype mesa - libpng libtiff libjpeg readline libsndfile libxml2 + cmake zlib sqlite gmp libffi cairo ncurses freetype + mesa libpng libtiff libjpeg readline libsndfile libxml2 freeglut libsamplerate pcre libevent libedit yajl + pkgconfig glfw openssl libpthreadstubs libXdmcp + libmemcached python3 ]; + configurePhase='' + # The Addon generation (AsyncRequest and a others checked) seems to have + # trouble with building on Virtual machines. Disabling them until it + # can be fully investigated. + sed -ie \ + "s/add_subdirectory(addons)/#add_subdirectory(addons)/g" \ + CMakeLists.txt + mkdir build + cd build + cmake -DCMAKE_INSTALL_PREFIX="$out" .. + ''; + + installPhase='' + make install + ''; + # for gcc5; c11 inline semantics breaks the build NIX_CFLAGS_COMPILE = "-fgnu89-inline"; - meta = { + meta = with stdenv.lib; { description = "Io programming language"; - maintainers = with stdenv.lib.maintainers; [ + maintainers = with maintainers; [ raskin z77z + vrthra ]; - platforms = stdenv.lib.platforms.linux; + platforms = platforms.linux; }; } From 35c544e6d4e685af7d3ef5cfc4294c094199e57f Mon Sep 17 00:00:00 2001 From: Rahul Gopinath Date: Thu, 9 Jun 2016 04:19:00 -0700 Subject: [PATCH 481/520] factor: disable build on i686-linux The factor language should be built only on x86_64 machines. --- pkgs/development/compilers/factor-lang/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/factor-lang/default.nix b/pkgs/development/compilers/factor-lang/default.nix index 6b7096dad723..ca3e9c6956d8 100644 --- a/pkgs/development/compilers/factor-lang/default.nix +++ b/pkgs/development/compilers/factor-lang/default.nix @@ -89,6 +89,6 @@ stdenv.mkDerivation rec { description = "A concatenative, stack-based programming language"; maintainers = [ maintainers.vrthra ]; - platforms = platforms.linux; + platforms = [ "x86_64-linux" ]; }; } From 376ba5f17f81a33be8ee6db6b43bd2b08e5a2491 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 9 Jun 2016 13:52:26 +0200 Subject: [PATCH 482/520] dnscrypt-proxy service: update resolver list --- nixos/modules/services/networking/dnscrypt-proxy.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/dnscrypt-proxy.nix b/nixos/modules/services/networking/dnscrypt-proxy.nix index 2a6161ee873a..227e38acc4a6 100644 --- a/nixos/modules/services/networking/dnscrypt-proxy.nix +++ b/nixos/modules/services/networking/dnscrypt-proxy.nix @@ -89,8 +89,8 @@ in ''; example = literalExample "${pkgs.dnscrypt-proxy}/share/dnscrypt-proxy/dnscrypt-resolvers.csv"; default = pkgs.fetchurl { - url = "https://raw.githubusercontent.com/jedisct1/dnscrypt-proxy/master/dnscrypt-resolvers.csv"; - sha256 = "0lac20qhcgjxxiiz8jzcn3hkqj4ywl58hahp5n2i6vf9akfyqp7c"; + url = https://raw.githubusercontent.com/jedisct1/dnscrypt-proxy/master/dnscrypt-resolvers.csv; + sha256 = "171zvdqcqqvcw3zr7wl9h1wmdmk6m3h55xr4gq2z1j7a0x0ba2in"; }; defaultText = "pkgs.fetchurl { url = ...; sha256 = ...; }"; }; From 9876769698037d9eddac3bc136bfcf207a72ec9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 9 Jun 2016 14:06:18 +0200 Subject: [PATCH 483/520] ffmpeg_3: 3.0 -> 3.0.2 --- pkgs/development/libraries/ffmpeg/3.0.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/ffmpeg/3.0.nix b/pkgs/development/libraries/ffmpeg/3.0.nix index e7d28bfc4388..14c29f36bed7 100644 --- a/pkgs/development/libraries/ffmpeg/3.0.nix +++ b/pkgs/development/libraries/ffmpeg/3.0.nix @@ -1,7 +1,7 @@ { callPackage, ... } @ args: callPackage ./generic.nix (args // rec { - version = "${branch}"; + version = "${branch}.2"; branch = "3.0"; - sha256 = "1h0k05cj6j0nd2i16z7hc5scpwsbg3sfx68lvm0nlwvz5xxgg7zi"; + sha256 = "0dpx15001ha9p8h8vfg1lm9pggbc96kmb546hz88wdac5xycgqrh"; }) From 9bf611414740807312d05d8f782a02a471fe8e1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Thu, 9 Jun 2016 14:07:39 +0200 Subject: [PATCH 484/520] ffmpeg: use 2 as the default for now --- 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 d7d70795530d..852c9acb5abb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6724,7 +6724,7 @@ let ffmpeg_1 = ffmpeg_1_2; ffmpeg_2 = ffmpeg_2_8; ffmpeg_3 = ffmpeg_3_0; - ffmpeg = ffmpeg_3; + ffmpeg = ffmpeg_2; ffmpeg-full = callPackage ../development/libraries/ffmpeg-full { # The following need to be fixed on Darwin From b54fa1e351074531628178cd4da7dccc7c334824 Mon Sep 17 00:00:00 2001 From: Ryan Mulligan Date: Sat, 4 Jun 2016 13:43:43 -0700 Subject: [PATCH 485/520] zsnes: add desktop item add desktop item so zsnes can be used without the terminal add icons --- pkgs/misc/emulators/zsnes/default.nix | 30 +++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/zsnes/default.nix b/pkgs/misc/emulators/zsnes/default.nix index 23930ac624ce..be7666487b95 100644 --- a/pkgs/misc/emulators/zsnes/default.nix +++ b/pkgs/misc/emulators/zsnes/default.nix @@ -1,6 +1,18 @@ -{stdenv, fetchurl, fetchpatch, nasm, SDL, zlib, libpng, ncurses, mesa}: +{stdenv, fetchurl, fetchpatch, nasm, SDL, zlib, libpng, ncurses, mesa +, makeDesktopItem }: -stdenv.mkDerivation { +let + desktopItem = makeDesktopItem { + name = "zsnes"; + exec = "zsnes"; + icon = "zsnes"; + comment = "A SNES emulator"; + desktopName = "zsnes"; + genericName = "zsnes"; + categories = "Game;"; + }; + +in stdenv.mkDerivation { name = "zsnes-1.51"; src = fetchurl { @@ -39,6 +51,20 @@ stdenv.mkDerivation { configureFlags = [ "--enable-release" ]; + postInstall = '' + function installIcon () { + mkdir -p $out/share/icons/hicolor/$1/apps/ + cp icons/$1x32.png $out/share/icons/hicolor/$1/apps/zsnes.png + } + installIcon "16x16" + installIcon "32x32" + installIcon "48x48" + installIcon "64x64" + + mkdir -p $out/share/applications + ln -s ${desktopItem}/share/applications/* $out/share/applications/ + ''; + meta = { description = "A Super Nintendo Entertainment System Emulator"; license = stdenv.lib.licenses.gpl2Plus; From edc36a0091c61cc60d3607d5e73ad22e078f8307 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 9 Jun 2016 15:40:06 +0200 Subject: [PATCH 486/520] grsecurity: 4.5.6-201606051644 -> 4.5.7-201606080852 --- pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.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-4.5.nix b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix index 94561ed2e549..63db17790147 100644 --- a/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix +++ b/pkgs/os-specific/linux/kernel/linux-grsecurity-4.5.nix @@ -1,12 +1,12 @@ { stdenv, fetchurl, perl, buildLinux, ... } @ args: import ./generic.nix (args // rec { - version = "4.5.6"; + version = "4.5.7"; extraMeta.branch = "4.5"; src = fetchurl { url = "mirror://kernel/linux/kernel/v4.x/linux-${version}.tar.xz"; - sha256 = "1bdyviimgnc4zbgd9v1xk87sj9h8cprjykifriddwslqxyr2yh0y"; + sha256 = "0azvh7lf9kak1xcs5f9smlvx4gkf45vyandizmxhx0zyjlhacw60"; }; kernelPatches = args.kernelPatches; diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix index 59fa93480cfd..877e51565ac2 100644 --- a/pkgs/os-specific/linux/kernel/patches.nix +++ b/pkgs/os-specific/linux/kernel/patches.nix @@ -95,9 +95,9 @@ rec { grsecurity_4_5 = grsecPatch { kernel = pkgs.grsecurity_base_linux_4_5; patches = [ grsecurity_fix_path_4_5 ]; - kversion = "4.5.6"; - revision = "201606051644"; - sha256 = "1ympym3kpaychd1qsb10hn5ffv8w83ccfmb631hj4jk69xwrry9m"; + kversion = "4.5.7"; + revision = "201606080852"; + sha256 = "1vgc314nh6bd7zw9r927lnbjq29z32g0s02jgvf635y9zz550nsh"; }; grsecurity_latest = grsecurity_4_5; From 58599744ee9673d309d5e4d8415077c242545e8d Mon Sep 17 00:00:00 2001 From: Jonathan Lange Date: Fri, 6 May 2016 20:54:51 +0100 Subject: [PATCH 487/520] Add module for oauth2_proxy --- nixos/modules/module-list.nix | 1 + .../services/security/oauth2_proxy.nix | 528 ++++++++++++++++++ 2 files changed, 529 insertions(+) create mode 100644 nixos/modules/services/security/oauth2_proxy.nix diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix index f3e9cd75a950..77ced054b0fd 100644 --- a/nixos/modules/module-list.nix +++ b/nixos/modules/module-list.nix @@ -430,6 +430,7 @@ ./services/security/haveged.nix ./services/security/hologram.nix ./services/security/munge.nix + ./services/security/oauth2_proxy.nix ./services/security/physlock.nix ./services/security/torify.nix ./services/security/tor.nix diff --git a/nixos/modules/services/security/oauth2_proxy.nix b/nixos/modules/services/security/oauth2_proxy.nix new file mode 100644 index 000000000000..aa962743f855 --- /dev/null +++ b/nixos/modules/services/security/oauth2_proxy.nix @@ -0,0 +1,528 @@ +# NixOS module for oauth2_proxy. + +{ config, lib, pkgs, ... }: + +with lib; +let + cfg = config.services.oauth2_proxy; + + # Use like: + # repeatedArgs (arg: "--arg=${arg}") args + repeatedArgs = concatMapStringsSep " "; + + # 'toString' doesn't quite do what we want for bools. + fromBool = x: if x then "true" else "false"; + + # oauth2_proxy provides many options that are only relevant if you are using + # a certain provider. This set maps from provider name to a function that + # takes the configuration and returns a string that can be inserted into the + # command-line to launch oauth2_proxy. + providerSpecificOptions = { + azure = cfg: '' + --azure-tenant=${cfg.azure.tenant} \ + --resource=${cfg.azure.resource} \ + ''; + + github = cfg: '' + $(optionalString (!isNull cfg.github.org) "--github-org=${cfg.github.org}") \ + $(optionalString (!isNull cfg.github.team) "--github-org=${cfg.github.team}") \ + ''; + + google = cfg: '' + --google-admin-email=${cfg.google.adminEmail} \ + --google-service-account=${cfg.google.serviceAccountJSON} \ + $(repeatedArgs (group: "--google-group=${group}") cfg.google.groups) \ + ''; + }; + + authenticatedEmailsFile = pkgs.writeText "authenticated-emails" cfg.email.addresses; + + getProviderOptions = cfg: provider: + if providerSpecificOptions ? provider then providerSpecificOptions.provider cfg else ""; + + mkCommandLine = cfg: '' + --provider='${cfg.provider}' \ + ${optionalString (!isNull cfg.email.addresses) "--authenticated-emails-file='${authenticatedEmailsFile}'"} \ + --approval-prompt='${cfg.approvalPrompt}' \ + ${optionalString (cfg.passBasicAuth && !isNull cfg.basicAuthPassword) "--basic-auth-password='${cfg.basicAuthPassword}'"} \ + --client-id='${cfg.clientID}' \ + --client-secret='${cfg.clientSecret}' \ + ${optionalString (!isNull cfg.cookie.domain) "--cookie-domain='${cfg.cookie.domain}'"} \ + --cookie-expire='${cfg.cookie.expire}' \ + --cookie-httponly=${fromBool cfg.cookie.httpOnly} \ + --cookie-name='${cfg.cookie.name}' \ + --cookie-secret='${cfg.cookie.secret}' \ + --cookie-secure=${fromBool cfg.cookie.secure} \ + ${optionalString (!isNull cfg.cookie.refresh) "--cookie-refresh='${cfg.cookie.refresh}'"} \ + ${optionalString (!isNull cfg.customTemplatesDir) "--custom-templates-dir='${cfg.customTemplatesDir}'"} \ + ${repeatedArgs (x: "--email-domain='${x}'") cfg.email.domains} \ + --http-address='${cfg.httpAddress}' \ + ${optionalString (!isNull cfg.htpasswd.file) "--htpasswd-file='${cfg.htpasswd.file}' --display-htpasswd-form=${fromBool cfg.htpasswd.displayForm}"} \ + ${optionalString (!isNull cfg.loginURL) "--login-url='${cfg.loginURL}'"} \ + --pass-access-token=${fromBool cfg.passAccessToken} \ + --pass-basic-auth=${fromBool cfg.passBasicAuth} \ + --pass-host-header=${fromBool cfg.passHostHeader} \ + --proxy-prefix='${cfg.proxyPrefix}' \ + ${optionalString (!isNull cfg.profileURL) "--profile-url='${cfg.profileURL}'"} \ + ${optionalString (!isNull cfg.redeemURL) "--redeem-url='${cfg.redeemURL}'"} \ + ${optionalString (!isNull cfg.redirectURL) "--redirect-url='${cfg.redirectURL}'"} \ + --request-logging=${fromBool cfg.requestLogging} \ + ${optionalString (!isNull cfg.scope) "--scope='${cfg.scope}'"} \ + ${repeatedArgs (x: "--skip-auth-regex='${x}'") cfg.skipAuthRegexes} \ + ${optionalString (!isNull cfg.signatureKey) "--signature-key='${cfg.signatureKey}'"} \ + --upstream='${cfg.upstream}' \ + ${optionalString (!isNull cfg.validateURL) "--validate-url='${cfg.validateURL}'"} \ + ${optionalString cfg.tls.enable "--tls-cert='${cfg.tls.certificate}' --tls-key='${cfg.tls.key}' --https-address='${cfg.tls.httpsAddress}'"} \ + '' + getProviderOptions cfg cfg.provider; +in +{ + options.services.oauth2_proxy = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to run oauth2_proxy. + ''; + }; + + package = mkOption { + type = types.package; + default = pkgs.oauth2_proxy; + description = '' + The package that provides oauth2_proxy. + ''; + }; + + ############################################## + # PROVIDER configuration + provider = mkOption { + type = types.enum [ + "google" + "github" + "azure" + "gitlab" + "linkedin" + "myusa" + ]; + default = "google"; + description = '' + OAuth provider. + ''; + }; + + approvalPrompt = mkOption { + type = types.enum ["force" "auto"]; + default = "force"; + description = '' + OAuth approval_prompt. + ''; + }; + + clientID = mkOption { + type = types.str; + description = '' + The OAuth Client ID. + ''; + example = "123456.apps.googleusercontent.com"; + }; + + clientSecret = mkOption { + type = types.str; + description = '' + The OAuth Client Secret. + ''; + }; + + skipAuthRegexes = mkOption { + type = types.listOf types.str; + default = []; + description = '' + List of regular expressions which will bypass authentication when + requests path's match. + ''; + }; + + # XXX: Not clear whether these two options are mutually exclusive or not. + email = { + domains = mkOption { + type = types.listOf types.str; + default = []; + description = '' + Authenticate emails with the specified domains. Use * to authenticate any email. + ''; + }; + + addresses = mkOption { + type = types.nullOr types.lines; + default = null; + description = '' + Line-separated email addresses that are allowed to authenticate. + ''; + }; + }; + + loginURL = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Authentication endpoint. + + You only need to set this if you are using a self-hosted provider (e.g. + Github Enterprise). If you're using a publicly hosted provider + (e.g github.com), then the default works. + ''; + example = "https://provider.example.com/oauth/authorize"; + }; + + redeemURL = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Token redemption endpoint. + + You only need to set this if you are using a self-hosted provider (e.g. + Github Enterprise). If you're using a publicly hosted provider + (e.g github.com), then the default works. + ''; + example = "https://provider.example.com/oauth/token"; + }; + + validateURL = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Access token validation endpoint. + + You only need to set this if you are using a self-hosted provider (e.g. + Github Enterprise). If you're using a publicly hosted provider + (e.g github.com), then the default works. + ''; + example = "https://provider.example.com/user/emails"; + }; + + redirectURL = mkOption { + # XXX: jml suspects this is always necessary, but the command-line + # doesn't require it so making it optional. + type = types.nullOr types.str; + default = null; + description = '' + The OAuth2 redirect URL. + ''; + example = "https://internalapp.yourcompany.com/oauth2/callback"; + }; + + azure = { + tenant = mkOption { + type = types.str; + default = "common"; + description = '' + Go to a tenant-specific or common (tenant-independent) endpoint. + ''; + }; + + resource = mkOption { + type = types.str; + description = '' + The resource that is protected. + ''; + }; + }; + + google = { + adminEmail = mkOption { + type = types.str; + description = '' + The Google Admin to impersonate for API calls. + + Only users with access to the Admin APIs can access the Admin SDK + Directory API, thus the service account needs to impersonate one of + those users to access the Admin SDK Directory API. + + See + ''; + }; + + groups = mkOption { + type = types.listOf types.str; + default = []; + description = '' + Restrict logins to members of these Google groups. + ''; + }; + + serviceAccountJSON = mkOption { + type = types.path; + description = '' + The path to the service account JSON credentials. + ''; + }; + }; + + github = { + org = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Restrict logins to members of this organisation. + ''; + }; + + team = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Restrict logins to members of this team. + ''; + }; + }; + + + #################################################### + # UPSTREAM Configuration + upstream = mkOption { + type = types.commas; + description = '' + The http url(s) of the upstream endpoint or file:// paths for static + files. Routing is based on the path. + ''; + }; + + passAccessToken = mkOption { + type = types.bool; + default = false; + description = '' + Pass OAuth access_token to upstream via X-Forwarded-Access-Token header. + ''; + }; + + passBasicAuth = mkOption { + type = types.bool; + default = true; + description = '' + Pass HTTP Basic Auth, X-Forwarded-User and X-Forwarded-Email information to upstream. + ''; + }; + + basicAuthPassword = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + The password to set when passing the HTTP Basic Auth header. + ''; + }; + + passHostHeader = mkOption { + type = types.bool; + default = true; + description = '' + Pass the request Host Header to upstream. + ''; + }; + + signatureKey = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + GAP-Signature request signature key. + ''; + example = "sha1:secret0"; + }; + + cookie = { + domain = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + An optional cookie domain to force cookies to. + ''; + example = ".yourcompany.com"; + }; + + expire = mkOption { + type = types.str; + default = "168h0m0s"; + description = '' + Expire timeframe for cookie. + ''; + }; + + httpOnly = mkOption { + type = types.bool; + default = true; + description = '' + Set HttpOnly cookie flag. + ''; + }; + + name = mkOption { + type = types.str; + default = "_oauth2_proxy"; + description = '' + The name of the cookie that the oauth_proxy creates. + ''; + }; + + refresh = mkOption { + # XXX: Unclear what the behavior is when this is not specified. + type = types.nullOr types.str; + default = null; + description = '' + Refresh the cookie after this duration; 0 to disable. + ''; + example = "168h0m0s"; + }; + + secret = mkOption { + type = types.str; + description = '' + The seed string for secure cookies. + ''; + }; + + secure = mkOption { + type = types.bool; + default = true; + description = '' + Set secure (HTTPS) cookie flag. + ''; + }; + }; + + #################################################### + # OAUTH2 PROXY configuration + + httpAddress = mkOption { + type = types.str; + default = "127.0.0.1:4180"; + description = '' + [http://]: or unix:// to listen on for HTTP clients. + + This module does *not* expose the port by default. If you want this URL + to be accessible to other machines, please add the port to + networking.firewall.allowedTCPPorts. + ''; + }; + + htpasswd = { + file = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + Additionally authenticate against a htpasswd file. Entries must be + created with "htpasswd -s" for SHA encryption. + ''; + }; + + displayForm = mkOption { + type = types.bool; + default = true; + description = '' + Display username / password login form if an htpasswd file is provided. + ''; + }; + }; + + customTemplatesDir = mkOption { + type = types.nullOr types.path; + default = null; + description = '' + Path to custom HTML templates. + ''; + }; + + proxyPrefix = mkOption { + type = types.str; + default = "/oauth2"; + description = '' + The url root path that this proxy should be nested under (e.g. //sign_in); + ''; + }; + + tls = { + enable = mkOption { + type = types.bool; + default = false; + description = '' + Whether to serve over TLS. + ''; + }; + + certificate = mkOption { + type = types.path; + description = '' + Path to certificate file. + ''; + }; + + key = mkOption { + type = types.path; + description = '' + Path to private key file. + ''; + }; + + httpsAddress = mkOption { + type = types.str; + default = ":443"; + description = '' + : to listen on for HTTPS clients. + + Remember to add to allowedTCPPorts if you want other machines + to be able to connect to it. + ''; + }; + }; + + requestLogging = mkOption { + type = types.bool; + default = true; + description = '' + Log requests to stdout. + ''; + }; + + #################################################### + # UNKNOWN + + # XXX: Is this mandatory? Is it part of another group? Is it part of the provider specification? + scope = mkOption { + # XXX: jml suspects this is always necessary, but the command-line + # doesn't require it so making it optional. + type = types.nullOr types.str; + default = null; + description = '' + OAuth scope specification. + ''; + }; + + profileURL = mkOption { + type = types.nullOr types.str; + default = null; + description = '' + Profile access endpoint. + ''; + }; + + }; + + config = mkIf cfg.enable { + + users.extraUsers.oauth2_proxy = { + description = "OAuth2 Proxy"; + }; + + systemd.services.oauth2_proxy = { + description = "OAuth2 Proxy"; + path = [ cfg.package ]; + wantedBy = [ "multi-user.target" ]; + after = [ "network-interfaces.target" ]; + + serviceConfig = { + User = "oauth2_proxy"; + Restart = "always"; + ExecStart = "${cfg.package}/bin/oauth2_proxy ${mkCommandLine cfg}"; + }; + }; + + }; +} From 3a41ffe8aad4a7bd3fb7b133507f805d6545a602 Mon Sep 17 00:00:00 2001 From: Kamil Chmielewski Date: Thu, 9 Jun 2016 15:43:35 +0200 Subject: [PATCH 488/520] ipfs: build fails with Go 1.6, revert to 1.5 --- pkgs/applications/networking/ipfs/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/ipfs/default.nix b/pkgs/applications/networking/ipfs/default.nix index 694166cc2428..a08a347ab284 100644 --- a/pkgs/applications/networking/ipfs/default.nix +++ b/pkgs/applications/networking/ipfs/default.nix @@ -1,6 +1,6 @@ -{ stdenv, lib, buildGoPackage, consul-ui, fetchFromGitHub }: +{ stdenv, buildGo15Package, fetchFromGitHub }: -buildGoPackage rec { +buildGo15Package rec { name = "ipfs-${version}"; version = "i20160112--${stdenv.lib.strings.substring 0 7 rev}"; rev = "7070b4d878baad57dcc8da80080dd293aa46cabd"; From f870d6aeb6cf14e4af9c7e77a1340ec68d882933 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 9 Jun 2016 14:47:12 +0100 Subject: [PATCH 489/520] goBuildPackage: export go This is useful to make sure to use the same version of go in further derivations. --- pkgs/development/go-modules/generic/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/go-modules/generic/default.nix b/pkgs/development/go-modules/generic/default.nix index 07cc42cfcdf0..e6373c1d50ec 100644 --- a/pkgs/development/go-modules/generic/default.nix +++ b/pkgs/development/go-modules/generic/default.nix @@ -188,7 +188,9 @@ go.stdenv.mkDerivation ( disallowedReferences = lib.optional (!allowGoReference) go ++ lib.optional (!dontRenameImports) govers; - passthru = passthru // lib.optionalAttrs (goPackageAliases != []) { inherit goPackageAliases; }; + passthru = passthru // + { inherit go; } // + lib.optionalAttrs (goPackageAliases != []) { inherit goPackageAliases; }; enableParallelBuilding = enableParallelBuilding; From 943d59268a384f7bec2ac4ecbd837932a109c65a Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 9 Jun 2016 14:47:51 +0100 Subject: [PATCH 490/520] packer: fix compilation * Remove duplicate "packer" source * Use the same version of go everywhere --- pkgs/development/tools/packer/default.nix | 6 +++--- pkgs/development/tools/packer/deps.nix | 13 ++----------- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/pkgs/development/tools/packer/default.nix b/pkgs/development/tools/packer/default.nix index 7d566254633b..5b8c13e3baf9 100644 --- a/pkgs/development/tools/packer/default.nix +++ b/pkgs/development/tools/packer/default.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, go, gox, gotools, buildGoPackage, fetchFromGitHub +{ stdenv, lib, gox, gotools, buildGoPackage, fetchFromGitHub , fetchgit, fetchhg, fetchbzr, fetchsvn }: stdenv.mkDerivation rec { @@ -6,10 +6,10 @@ stdenv.mkDerivation rec { version = "0.10.1"; src = import ./deps.nix { - inherit stdenv lib go gox gotools buildGoPackage fetchgit fetchhg fetchbzr fetchsvn; + inherit stdenv lib gox gotools buildGoPackage fetchgit fetchhg fetchbzr fetchsvn; }; - buildInputs = [ go gox gotools ]; + buildInputs = [ src.go gox gotools ]; configurePhase = '' export GOPATH=$PWD/share/go diff --git a/pkgs/development/tools/packer/deps.nix b/pkgs/development/tools/packer/deps.nix index 5ed606ad6c6b..25098219ea28 100644 --- a/pkgs/development/tools/packer/deps.nix +++ b/pkgs/development/tools/packer/deps.nix @@ -1,11 +1,11 @@ -{ stdenv, lib, go, gox, gotools, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: +{ stdenv, lib, gox, gotools, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }: buildGoPackage rec { name = "packer-${version}"; version = "20160507-${stdenv.lib.strings.substring 0 7 rev}"; rev = "4e5f65131b5491ab44ff8aa0626abe4a85597ac0"; - buildInputs = [ go gox gotools ]; + buildInputs = [ gox gotools ]; goPackagePath = "github.com/mitchellh/packer"; @@ -376,15 +376,6 @@ buildGoPackage rec { sha256 = "0ydhbxziy9204qr43pjdh88y2jg34g2mhzdapjyfpf8a1rin6dn3"; }; } - { - goPackagePath = "github.com/mitchellh/packer"; - - src = fetchgit { - url = "https://github.com/mitchellh/packer"; - rev = "4e5f65131b5491ab44ff8aa0626abe4a85597ac0"; - sha256 = "1a61f022h4ygnkp1lyr7vhq5w32a3f061dymgkqmz4c3b8fzcc10"; - }; - } { goPackagePath = "github.com/mitchellh/panicwrap"; From a5a1d45636e87e8872d94d6e86e43af44eb8c3ba Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 9 Jun 2016 15:00:11 +0100 Subject: [PATCH 491/520] git-lfs: 1.2.0 -> 2016-06-07 Fixes import issues after go1.5+ --- pkgs/applications/version-management/git-lfs/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/version-management/git-lfs/default.nix b/pkgs/applications/version-management/git-lfs/default.nix index e5fc8173919d..52075be8484f 100644 --- a/pkgs/applications/version-management/git-lfs/default.nix +++ b/pkgs/applications/version-management/git-lfs/default.nix @@ -2,8 +2,9 @@ buildGoPackage rec { name = "git-lfs-${version}"; - version = "1.2.0"; - rev = "v${version}"; + # NOTE: use versions after 1.2.1 + version = "2016-06-07"; + rev = "12fe249f2eebb56608a825fdb4a68c00f090bc91"; goPackagePath = "github.com/github/git-lfs"; @@ -11,7 +12,7 @@ buildGoPackage rec { inherit rev; owner = "github"; repo = "git-lfs"; - sha256 = "0z8giavcvfpzmhnxxsqvsgabjfq5gpka8jy4qvadf60yibxds9fp"; + sha256 = "0cj7xbgvj706r1cyxqlcwfvy5zg2d19al04d441sxa6spr6xa4v6"; }; # Tests fail with 'lfstest-gitserver.go:46: main redeclared in this block' From de842765bec692a5b1bf00063bc98406599d07b2 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 09:14:06 -0500 Subject: [PATCH 492/520] qt56.qtbase: propagate build inputs correctly --- .../libraries/qt-5/5.6/qtbase/setup-hook.sh | 23 +++++++++++++++++-- 1 file changed, 21 insertions(+), 2 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 4d2119bd0bcb..8d1a453787fb 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 @@ -24,7 +24,7 @@ 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" @@ -37,7 +37,26 @@ _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" + if [ -z "$crossConfig" ]; then + propagateOnce propagatedUserEnvPkgs "$1" + fi + 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 From 98bb89b9d0265eeaa71538dba1783a383c24d97e Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 09:14:20 -0500 Subject: [PATCH 493/520] kde5.extra-cmake-modules: propagate build inputs correctly --- .../extra-cmake-modules/setup-hook.sh | 54 ++++++++++++------- 1 file changed, 36 insertions(+), 18 deletions(-) diff --git a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh index 49ac5d0c8b5f..aab0625bf61a 100644 --- a/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh +++ b/pkgs/desktops/kde-5/frameworks-5.22/extra-cmake-modules/setup-hook.sh @@ -4,29 +4,48 @@ _ecmSetXdgDirs() { addToSearchPathOnce NIX_WRAP_XDG_CONFIG_DIRS "$1/etc/xdg" } -_ecmPropagateSharedData() { - local sharedPaths=( \ - "config.cfg" \ - "kconf_update" \ - "kservices5" \ - "kservicetypes5" \ - "knotifications5" \ - "applications" \ - "desktop-directories" \ - "mime" \ - "dbus-1" \ - "interfaces" \ - "services" \ - "system-services" ) - for dir in ${sharedPaths[@]}; do +_ecmSharePaths=( \ + "config.cfg" \ + "kconf_update" \ + "kservices5" \ + "kservicetypes5" \ + "knotifications5" \ + "applications" \ + "desktop-directories" \ + "mime" \ + "dbus-1" \ + "interfaces" \ + "services" \ + "system-services" ) + +_ecmPropagateNative() { + for dir in ${_ecmSharePaths[@]}; do if [ -d "$1/share/$dir" ]; then - addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" - propagateOnce propagatedUserEnvPkgs "$1" + propagateOnce propagatedNativeBuildInputs "$1" + if [ -z "$crossConfig" ]; then + propagateOnce propagatedUserEnvPkgs "$1" + addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + fi break fi done } +envHooks+=(_ecmSetXdgDirs _ecmPropagate) + +_ecmPropagate() { + for dir in ${_ecmSharePaths[@]}; do + if [ -d "$1/share/$dir" ]; then + propagateOnce propagatedBuildInputs "$1" + propagateOnce propagatedUserEnvPkgs "$1" + addToSearchPathOnce NIX_WRAP_XDG_DATA_DIRS "$1/share" + break + fi + done +} + +crossEnvHooks+=(_ecmPropagate) + _ecmConfig() { # Because we need to use absolute paths here, we must set *all* the paths. cmakeFlags+=" -DKDE_INSTALL_EXECROOTDIR=${!outputBin}" @@ -70,5 +89,4 @@ _ecmConfig() { cmakeFlags+=" -DKDE_INSTALL_AUTOSTARTDIR=${!outputLib}/etc/xdg/autostart" } -envHooks+=(_ecmSetXdgDirs _ecmPropagateSharedData) preConfigureHooks+=(_ecmConfig) From 4d2cf4baaccf093a63b7e76793bffdc339f2379d Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 09:39:55 -0500 Subject: [PATCH 494/520] qt56: 5.6.0 -> 5.6.1 --- .../libraries/qt-5/5.6/fetchsrcs.sh | 2 +- pkgs/development/libraries/qt-5/5.6/srcs.nix | 446 +++++++++--------- 2 files changed, 224 insertions(+), 224 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh index c499c70ea2ca..1ba357a6b1ca 100755 --- a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh +++ b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.0/submodules/" +RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.1/submodules/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/development/libraries/qt-5/5.6/srcs.nix b/pkgs/development/libraries/qt-5/5.6/srcs.nix index 9ddbbbde078f..0e005418ae23 100644 --- a/pkgs/development/libraries/qt-5/5.6/srcs.nix +++ b/pkgs/development/libraries/qt-5/5.6/srcs.nix @@ -2,260 +2,260 @@ { fetchurl, mirror }: { - qttools = { - version = "5.6.0"; + qtwinextras = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttools-opensource-src-5.6.0.tar.xz"; - sha256 = "1791c9a1vxv0q2ywr00ya5rxaggidsq81s8h8fwmql75pdhlq90d"; - name = "qttools-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebengine = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz"; - sha256 = "00vaqx3mypqlnjkfwhx54r6ygfs07amkwc4rma0sg64zdjnvb8la"; - name = "qtwebengine-opensource-src-5.6.0.tar.xz"; - }; - }; - qtserialbus = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialbus-opensource-src-5.6.0.tar.xz"; - sha256 = "13hbmj9pilh5gkbbngfbp225qvc650pnzvpzawpnf69zwl757jlc"; - name = "qtserialbus-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwayland = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwayland-opensource-src-5.6.0.tar.xz"; - sha256 = "1k5zsgz54wlkxm3ici55lbbz286bk2791vri02bjgja5y9102pdm"; - name = "qtwayland-opensource-src-5.6.0.tar.xz"; - }; - }; - qt5 = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt5-opensource-src-5.6.0.tar.xz"; - sha256 = "195dl9pk9slbiy6mgwwpc70vaw62sdhxc3lxmlnyddk99widqa3k"; - name = "qt5-opensource-src-5.6.0.tar.xz"; - }; - }; - qtimageformats = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz"; - sha256 = "1nmsh682idxl0642q7376r9qfxkx0736q9pl4jx179c9lrsl519c"; - name = "qtimageformats-opensource-src-5.6.0.tar.xz"; - }; - }; - qtactiveqt = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtactiveqt-opensource-src-5.6.0.tar.xz"; - sha256 = "0xrjr9jwkxxcv46a8vj77px3v1p36nm6rpvyxma0wb4xhpippp3a"; - name = "qtactiveqt-opensource-src-5.6.0.tar.xz"; - }; - }; - qtdoc = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz"; - sha256 = "1z69yl8nkvp21arjhzl34gr8gvxm5b03d58lwnddl4mkaxbi4vap"; - name = "qtdoc-opensource-src-5.6.0.tar.xz"; - }; - }; - qtsensors = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsensors-opensource-src-5.6.0.tar.xz"; - sha256 = "0blwqmkh0hn1716d5fvy0vnh56y9iikl34ayz6ksl0ayxhpkk3si"; - name = "qtsensors-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebchannel = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz"; - sha256 = "0ky1njksczyfb7y7p5kfgzbx9vgajzy51g2y3vrpfvl6bs9j8m62"; - name = "qtwebchannel-opensource-src-5.6.0.tar.xz"; - }; - }; - qtmacextras = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmacextras-opensource-src-5.6.0.tar.xz"; - sha256 = "1jkmwppapvymdr1kwdrbjlxhcafcn4jb23ssnhrvvgcq3lnl5lhj"; - name = "qtmacextras-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebsockets = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz"; - sha256 = "17vi3n27gx3f3c2lii3b70pzz6mpblam3236v6mj439xzrlvi2i6"; - name = "qtwebsockets-opensource-src-5.6.0.tar.xz"; - }; - }; - qtconnectivity = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtconnectivity-opensource-src-5.6.0.tar.xz"; - sha256 = "1ss0ibabiv7n5hakkxmkc4msrwgqcvfffdjajnv5jrq0030v0p0c"; - name = "qtconnectivity-opensource-src-5.6.0.tar.xz"; - }; - }; - qtscript = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz"; - sha256 = "0hjhkh4lia1i0iir1i8dr57gizi74h73j0phhir3q3wsglcpax5c"; - name = "qtscript-opensource-src-5.6.0.tar.xz"; - }; - }; - qttranslations = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz"; - sha256 = "0jfdfj2z0nvf1xblmdxaphn0psjycrb5g3jxxcddkci214gka2cq"; - name = "qttranslations-opensource-src-5.6.0.tar.xz"; - }; - }; - qtlocation = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz"; - sha256 = "1jakjrwic01b5vyij6hfzdfpipandpkj9li3d7wf9bzws0cia3in"; - name = "qtlocation-opensource-src-5.6.0.tar.xz"; - }; - }; - qtserialport = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz"; - sha256 = "07rwhmh9y7b3ycvx4d4d1j32nahf8nhsb9qj99kxz5xrdfv7zvhn"; - name = "qtserialport-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwinextras-opensource-src-5.6.1.tar.xz"; + sha256 = "1db3lcrj8af0z8lnh99lfbwz1cq9il7rr27rk9l38dff65qkssm8"; + name = "qtwinextras-opensource-src-5.6.1.tar.xz"; }; }; qtsvg = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz"; - sha256 = "07v4bzxd31dhkhp52y4g2ii0sslmk48cqkkz32v41frqj4qrk1vr"; - name = "qtsvg-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsvg-opensource-src-5.6.1.tar.xz"; + sha256 = "08ca5g46g75acy27jfnvnalmcias5hxmjp7491v3y4k9y7a4ybpi"; + name = "qtsvg-opensource-src-5.6.1.tar.xz"; }; }; - qtwebview = { - version = "5.6.0"; + qtactiveqt = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebview-opensource-src-5.6.0.tar.xz"; - sha256 = "0mqbh125bq37xybwslhri4pl861r26cnraiz9ivh4881kqzab3x4"; - name = "qtwebview-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtactiveqt-opensource-src-5.6.1.tar.xz"; + sha256 = "0a2p0w03d04hqg71hlihj9mr6aasvb0h8jfa5rnq8b5rkm8haf4f"; + name = "qtactiveqt-opensource-src-5.6.1.tar.xz"; }; }; - qtcanvas3d = { - version = "5.6.0"; + qtwayland = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtcanvas3d-opensource-src-5.6.0.tar.xz"; - sha256 = "1kwykm1ffgpjgb3ggd4h2d2x3yhp9jsc0gnwlks620bahagdbbb6"; - name = "qtcanvas3d-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwayland-opensource-src-5.6.1.tar.xz"; + sha256 = "1jgghjfrg0wwyfzfwgwhagwxz9k936ylv3w2l9bwlpql8rgm8d11"; + name = "qtwayland-opensource-src-5.6.1.tar.xz"; }; }; - qtwinextras = { - version = "5.6.0"; + qtlocation = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwinextras-opensource-src-5.6.0.tar.xz"; - sha256 = "14xvm081wjyild2wi7pcilqxdkhc8b0lf9yn7yf7zp576i9ir5aq"; - name = "qtwinextras-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtlocation-opensource-src-5.6.1.tar.xz"; + sha256 = "0qahs7a2n3l4h0bl8bnwci9mzy1vra3zncnzr40csic9ys67ddfk"; + name = "qtlocation-opensource-src-5.6.1.tar.xz"; }; }; - qtgraphicaleffects = { - version = "5.6.0"; + qtmacextras = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; - sha256 = "1s0n8hrmrfs53cmm7i45p8zavvmsl0aisd5sgj93p8c5rzyi3s81"; - name = "qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmacextras-opensource-src-5.6.1.tar.xz"; + sha256 = "147yhv7fb0yaakrffqiw6xz8ycqdc7qsnxvnpr6j8rarw5xmdc73"; + name = "qtmacextras-opensource-src-5.6.1.tar.xz"; }; }; - qtxmlpatterns = { - version = "5.6.0"; + qttranslations = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz"; - sha256 = "1m0rr0m9zg2d6rdban2p5qyx8rdnjnjsfk3bm72bh47hscxipvds"; - name = "qtxmlpatterns-opensource-src-5.6.0.tar.xz"; - }; - }; - qtquickcontrols2 = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols2-opensource-src-5.6.0.tar.xz"; - sha256 = "1q7yp7l32jd3p28587ldxzkj58z1aad9gcs80w6vqc9952i6xv2r"; - name = "qtquickcontrols2-opensource-src-5.6.0.tar.xz"; - }; - }; - qtbase = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtbase-opensource-src-5.6.0.tar.xz"; - sha256 = "0ynnvcs5idivzldsq5ciqg9myg82b3l3906l4vjv54lyamf8mykf"; - name = "qtbase-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttranslations-opensource-src-5.6.1.tar.xz"; + sha256 = "008wyk00mqz116pigm0qq78rvg28v6ykjnjxppkjnk0yd6i2vmb9"; + name = "qttranslations-opensource-src-5.6.1.tar.xz"; }; }; qt3d = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt3d-opensource-src-5.6.0.tar.xz"; - sha256 = "17a37xhav5mxspx2c9wsgvcilv7ys40q6minmlqd1gnfmsfphqdr"; - name = "qt3d-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qt3d-opensource-src-5.6.1.tar.xz"; + sha256 = "03d81sls30a20yna6940np15112ciwy5024f8n5imaxicm8h34xd"; + name = "qt3d-opensource-src-5.6.1.tar.xz"; }; }; - qtenginio = { - version = "1.6.0"; + qtquickcontrols2 = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz"; - sha256 = "033z2jncci64s7s9ml5rsfsnrkdmhx1g5dfvr61imv63pzxxqzb2"; - name = "qtenginio-opensource-src-1.6.0.tar.xz"; - }; - }; - qtx11extras = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz"; - sha256 = "099lc7kxcxgp5s01ddnd6n955fc8866caark43xfs2dw0a6pdva7"; - name = "qtx11extras-opensource-src-5.6.0.tar.xz"; - }; - }; - qtdeclarative = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz"; - sha256 = "0k70zlyx1nh35caiav4s3jvg5l029pvilm6sarxmfj73y19z0mcc"; - name = "qtdeclarative-opensource-src-5.6.0.tar.xz"; - }; - }; - qtmultimedia = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz"; - sha256 = "11h66xcr3y3w8hhvx801r66yirvf1kppasjlhm25qvr6rpb9jgqh"; - name = "qtmultimedia-opensource-src-5.6.0.tar.xz"; - }; - }; - qtquickcontrols = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz"; - sha256 = "12vqkxpz5y2bbh083lpsxcianykl8x7am49pmc4x221a5xwrc27c"; - name = "qtquickcontrols-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols2-opensource-src-5.6.1.tar.xz"; + sha256 = "13zbiv63b76ifpjalx5616nixfwjk48q977bzb1xxj363b7xv85v"; + name = "qtquickcontrols2-opensource-src-5.6.1.tar.xz"; }; }; qtandroidextras = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtandroidextras-opensource-src-5.6.0.tar.xz"; - sha256 = "1qhrn8vhfn0z73bc2ls1b4zfvr7r5gn7b5xdmjp26hi338j55vp0"; - name = "qtandroidextras-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtandroidextras-opensource-src-5.6.1.tar.xz"; + sha256 = "0prkpb57j0s8k36sba47k2bhs3ajf01rdwc7qf5gkvhs991rwckc"; + name = "qtandroidextras-opensource-src-5.6.1.tar.xz"; + }; + }; + qtimageformats = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtimageformats-opensource-src-5.6.1.tar.xz"; + sha256 = "020v1148433zx4g87z2r8fgff32n0laajxqqsja1l3yzz7jbrwvl"; + name = "qtimageformats-opensource-src-5.6.1.tar.xz"; + }; + }; + qtxmlpatterns = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtxmlpatterns-opensource-src-5.6.1.tar.xz"; + sha256 = "0q412jv3xbg7v05b8pbahifwx17gzlp96s90akh6zwhpm8i6xx34"; + name = "qtxmlpatterns-opensource-src-5.6.1.tar.xz"; + }; + }; + qtdeclarative = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-opensource-src-5.6.1.tar.xz"; + sha256 = "1d2217kxk85kpi7ls08b41hqzy26hvch8m4cgzq6km5sqi5zvz0j"; + name = "qtdeclarative-opensource-src-5.6.1.tar.xz"; + }; + }; + qtconnectivity = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtconnectivity-opensource-src-5.6.1.tar.xz"; + sha256 = "06fr9321f52kf0nda9zjjfzp5694hbnx0y0v315iw28mnpvandas"; + name = "qtconnectivity-opensource-src-5.6.1.tar.xz"; + }; + }; + qtbase = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtbase-opensource-src-5.6.1.tar.xz"; + sha256 = "0r3jrqymnnxrig4f11xvs33c26f0kzfakbp3kcbdpv795gpc276h"; + name = "qtbase-opensource-src-5.6.1.tar.xz"; + }; + }; + qtdoc = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdoc-opensource-src-5.6.1.tar.xz"; + sha256 = "0yg7903vk4w3h6jjyanssfcig0s2s660q11sj14nw6gcjs7kfa5z"; + name = "qtdoc-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebchannel = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebchannel-opensource-src-5.6.1.tar.xz"; + sha256 = "01q80917a1048hdhaii4v50dqs84h16lc9w3v99r9xvspk8vab7q"; + name = "qtwebchannel-opensource-src-5.6.1.tar.xz"; + }; + }; + qtserialport = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialport-opensource-src-5.6.1.tar.xz"; + sha256 = "1hp63cgqhps6y1k041lzhcb2b0rcpcmszabnn293q5ilbvla4x0b"; + name = "qtserialport-opensource-src-5.6.1.tar.xz"; + }; + }; + qtx11extras = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtx11extras-opensource-src-5.6.1.tar.xz"; + sha256 = "0l736qiz8adrnh267xz63hv4sph6nhy90h836qfnnmv3p78ipsz8"; + name = "qtx11extras-opensource-src-5.6.1.tar.xz"; + }; + }; + qtserialbus = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialbus-opensource-src-5.6.1.tar.xz"; + sha256 = "1h683dkvnf2rdgxgisybnp8miqgn2gpi597rgx5zc7qk2k8kyidz"; + name = "qtserialbus-opensource-src-5.6.1.tar.xz"; + }; + }; + qtmultimedia = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmultimedia-opensource-src-5.6.1.tar.xz"; + sha256 = "058523c2qra3d8fq46ygcndnkrbwlh316zy28s2cr5pjr5gmnjyj"; + name = "qtmultimedia-opensource-src-5.6.1.tar.xz"; + }; + }; + qtsensors = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsensors-opensource-src-5.6.1.tar.xz"; + sha256 = "0bll7ll6s5g8w89knyrc0famjwqyfzwpn512m1f96bf6xwacs967"; + name = "qtsensors-opensource-src-5.6.1.tar.xz"; + }; + }; + qtenginio = { + version = "1.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtenginio-opensource-src-1.6.1.tar.xz"; + sha256 = "1iq4lnz3s6mfdgml61b9lsjisky55bbvsdj72kh003j94mzrc3l5"; + name = "qtenginio-opensource-src-1.6.1.tar.xz"; + }; + }; + qtgraphicaleffects = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; + sha256 = "1n0i2drfr7fvydgg810dcij8mxnygdpvqcqv7l1a9a1kv9ap3sap"; + name = "qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; + }; + }; + qtdeclarative-render2d = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; + sha256 = "1m08x8x355545r9wgrjl5p26zjhp5q1yh3h25dww8pk25v6cn8dg"; + name = "qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; + }; + }; + qtcanvas3d = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtcanvas3d-opensource-src-5.6.1.tar.xz"; + sha256 = "0q17hwmj893pk0lhxmibxmgk6h1gy4ksqfi62rkfzcf81bg2q7hr"; + name = "qtcanvas3d-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebengine = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebengine-opensource-src-5.6.1.tar.xz"; + sha256 = "0yv0cflgywsyfn84vv2vc9rwpm8j7hin61rxqjqh498nnl2arw5x"; + name = "qtwebengine-opensource-src-5.6.1.tar.xz"; + }; + }; + qtscript = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtscript-opensource-src-5.6.1.tar.xz"; + sha256 = "17zp5dlfplrnzlw233lzapj55drjqchvayajd02qsggzms3yzchw"; + name = "qtscript-opensource-src-5.6.1.tar.xz"; + }; + }; + qtquickcontrols = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols-opensource-src-5.6.1.tar.xz"; + sha256 = "14d68ryn7r7rs7klpldnavcsccvyyg0xhwqkvjlm5wwplv2acah1"; + name = "qtquickcontrols-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebsockets = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebsockets-opensource-src-5.6.1.tar.xz"; + sha256 = "0fkj52i4yi6gmq4jfjgdij08cspxspac6mbpf0fknnllimmkl7jm"; + name = "qtwebsockets-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebview = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebview-opensource-src-5.6.1.tar.xz"; + sha256 = "0q869wl61vidds551w3z49ysx88xqyn6igbz07zxac7d0gwgwpda"; + name = "qtwebview-opensource-src-5.6.1.tar.xz"; + }; + }; + qttools = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttools-opensource-src-5.6.1.tar.xz"; + sha256 = "0wbzq60d7lkvlb7b5lqcw87qgy6kyjz1npjavz8f4grdxsaqi8vp"; + name = "qttools-opensource-src-5.6.1.tar.xz"; }; }; } From 45d4d6212274acd80cf2c6a8bcbca2ba1107d313 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 9 Jun 2016 16:36:09 +0200 Subject: [PATCH 495/520] luaPackages.luaexpat: fix case of LUA_LDIR make flag --- pkgs/top-level/lua-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/lua-packages.nix b/pkgs/top-level/lua-packages.nix index ce8ef3cef4b4..c90a8452c25b 100644 --- a/pkgs/top-level/lua-packages.nix +++ b/pkgs/top-level/lua-packages.nix @@ -101,7 +101,7 @@ let preBuild = '' makeFlagsArray=( - lua_ldir="$out/share/lua/${lua.luaversion}" + LUA_LDIR="$out/share/lua/${lua.luaversion}" LUA_INC="-I${lua}/include" LUA_CDIR="$out/lib/lua/${lua.luaversion}" EXPAT_INC="-I${expat.dev}/include"); ''; From a0996c2c60faa1644a0f35b002a35d5f52ba7a37 Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Thu, 9 Jun 2016 16:39:11 +0200 Subject: [PATCH 496/520] libressl: 2.3.4 -> 2.3.5 --- pkgs/development/libraries/libressl/2.3.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/libressl/2.3.nix b/pkgs/development/libraries/libressl/2.3.nix index a5052a9b499d..32869e0b4720 100644 --- a/pkgs/development/libraries/libressl/2.3.nix +++ b/pkgs/development/libraries/libressl/2.3.nix @@ -2,11 +2,11 @@ stdenv.mkDerivation rec { name = "libressl-${version}"; - version = "2.3.4"; + version = "2.3.5"; src = fetchurl { url = "mirror://openbsd/LibreSSL/${name}.tar.gz"; - sha256 = "1ag65pbvdikqj5y1w780jicl3ngi9ld2332ki6794y0gcar3a4bs"; + sha256 = "0fvmifz61zfq6byy4dh1qqdg9fpbdsyldjwx5hlcgg6ywxf2f9gl"; }; enableParallelBuilding = true; From 09d63127de6ed74be5947322f8af3b0c8b393374 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 10:42:39 -0500 Subject: [PATCH 497/520] Revert "qt56: 5.6.0 -> 5.6.1" This reverts commit 4d2cf4baaccf093a63b7e76793bffdc339f2379d. --- .../libraries/qt-5/5.6/fetchsrcs.sh | 2 +- pkgs/development/libraries/qt-5/5.6/srcs.nix | 464 +++++++++--------- 2 files changed, 233 insertions(+), 233 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh index 1ba357a6b1ca..c499c70ea2ca 100755 --- a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh +++ b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.1/submodules/" +RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.0/submodules/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp diff --git a/pkgs/development/libraries/qt-5/5.6/srcs.nix b/pkgs/development/libraries/qt-5/5.6/srcs.nix index 0e005418ae23..9ddbbbde078f 100644 --- a/pkgs/development/libraries/qt-5/5.6/srcs.nix +++ b/pkgs/development/libraries/qt-5/5.6/srcs.nix @@ -2,260 +2,260 @@ { fetchurl, mirror }: { - qtwinextras = { - version = "5.6.1"; + qttools = { + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwinextras-opensource-src-5.6.1.tar.xz"; - sha256 = "1db3lcrj8af0z8lnh99lfbwz1cq9il7rr27rk9l38dff65qkssm8"; - name = "qtwinextras-opensource-src-5.6.1.tar.xz"; - }; - }; - qtsvg = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsvg-opensource-src-5.6.1.tar.xz"; - sha256 = "08ca5g46g75acy27jfnvnalmcias5hxmjp7491v3y4k9y7a4ybpi"; - name = "qtsvg-opensource-src-5.6.1.tar.xz"; - }; - }; - qtactiveqt = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtactiveqt-opensource-src-5.6.1.tar.xz"; - sha256 = "0a2p0w03d04hqg71hlihj9mr6aasvb0h8jfa5rnq8b5rkm8haf4f"; - name = "qtactiveqt-opensource-src-5.6.1.tar.xz"; - }; - }; - qtwayland = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwayland-opensource-src-5.6.1.tar.xz"; - sha256 = "1jgghjfrg0wwyfzfwgwhagwxz9k936ylv3w2l9bwlpql8rgm8d11"; - name = "qtwayland-opensource-src-5.6.1.tar.xz"; - }; - }; - qtlocation = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtlocation-opensource-src-5.6.1.tar.xz"; - sha256 = "0qahs7a2n3l4h0bl8bnwci9mzy1vra3zncnzr40csic9ys67ddfk"; - name = "qtlocation-opensource-src-5.6.1.tar.xz"; - }; - }; - qtmacextras = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmacextras-opensource-src-5.6.1.tar.xz"; - sha256 = "147yhv7fb0yaakrffqiw6xz8ycqdc7qsnxvnpr6j8rarw5xmdc73"; - name = "qtmacextras-opensource-src-5.6.1.tar.xz"; - }; - }; - qttranslations = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttranslations-opensource-src-5.6.1.tar.xz"; - sha256 = "008wyk00mqz116pigm0qq78rvg28v6ykjnjxppkjnk0yd6i2vmb9"; - name = "qttranslations-opensource-src-5.6.1.tar.xz"; - }; - }; - qt3d = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qt3d-opensource-src-5.6.1.tar.xz"; - sha256 = "03d81sls30a20yna6940np15112ciwy5024f8n5imaxicm8h34xd"; - name = "qt3d-opensource-src-5.6.1.tar.xz"; - }; - }; - qtquickcontrols2 = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols2-opensource-src-5.6.1.tar.xz"; - sha256 = "13zbiv63b76ifpjalx5616nixfwjk48q977bzb1xxj363b7xv85v"; - name = "qtquickcontrols2-opensource-src-5.6.1.tar.xz"; - }; - }; - qtandroidextras = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtandroidextras-opensource-src-5.6.1.tar.xz"; - sha256 = "0prkpb57j0s8k36sba47k2bhs3ajf01rdwc7qf5gkvhs991rwckc"; - name = "qtandroidextras-opensource-src-5.6.1.tar.xz"; - }; - }; - qtimageformats = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtimageformats-opensource-src-5.6.1.tar.xz"; - sha256 = "020v1148433zx4g87z2r8fgff32n0laajxqqsja1l3yzz7jbrwvl"; - name = "qtimageformats-opensource-src-5.6.1.tar.xz"; - }; - }; - qtxmlpatterns = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtxmlpatterns-opensource-src-5.6.1.tar.xz"; - sha256 = "0q412jv3xbg7v05b8pbahifwx17gzlp96s90akh6zwhpm8i6xx34"; - name = "qtxmlpatterns-opensource-src-5.6.1.tar.xz"; - }; - }; - qtdeclarative = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-opensource-src-5.6.1.tar.xz"; - sha256 = "1d2217kxk85kpi7ls08b41hqzy26hvch8m4cgzq6km5sqi5zvz0j"; - name = "qtdeclarative-opensource-src-5.6.1.tar.xz"; - }; - }; - qtconnectivity = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtconnectivity-opensource-src-5.6.1.tar.xz"; - sha256 = "06fr9321f52kf0nda9zjjfzp5694hbnx0y0v315iw28mnpvandas"; - name = "qtconnectivity-opensource-src-5.6.1.tar.xz"; - }; - }; - qtbase = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtbase-opensource-src-5.6.1.tar.xz"; - sha256 = "0r3jrqymnnxrig4f11xvs33c26f0kzfakbp3kcbdpv795gpc276h"; - name = "qtbase-opensource-src-5.6.1.tar.xz"; - }; - }; - qtdoc = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdoc-opensource-src-5.6.1.tar.xz"; - sha256 = "0yg7903vk4w3h6jjyanssfcig0s2s660q11sj14nw6gcjs7kfa5z"; - name = "qtdoc-opensource-src-5.6.1.tar.xz"; - }; - }; - qtwebchannel = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebchannel-opensource-src-5.6.1.tar.xz"; - sha256 = "01q80917a1048hdhaii4v50dqs84h16lc9w3v99r9xvspk8vab7q"; - name = "qtwebchannel-opensource-src-5.6.1.tar.xz"; - }; - }; - qtserialport = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialport-opensource-src-5.6.1.tar.xz"; - sha256 = "1hp63cgqhps6y1k041lzhcb2b0rcpcmszabnn293q5ilbvla4x0b"; - name = "qtserialport-opensource-src-5.6.1.tar.xz"; - }; - }; - qtx11extras = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtx11extras-opensource-src-5.6.1.tar.xz"; - sha256 = "0l736qiz8adrnh267xz63hv4sph6nhy90h836qfnnmv3p78ipsz8"; - name = "qtx11extras-opensource-src-5.6.1.tar.xz"; - }; - }; - qtserialbus = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialbus-opensource-src-5.6.1.tar.xz"; - sha256 = "1h683dkvnf2rdgxgisybnp8miqgn2gpi597rgx5zc7qk2k8kyidz"; - name = "qtserialbus-opensource-src-5.6.1.tar.xz"; - }; - }; - qtmultimedia = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmultimedia-opensource-src-5.6.1.tar.xz"; - sha256 = "058523c2qra3d8fq46ygcndnkrbwlh316zy28s2cr5pjr5gmnjyj"; - name = "qtmultimedia-opensource-src-5.6.1.tar.xz"; - }; - }; - qtsensors = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsensors-opensource-src-5.6.1.tar.xz"; - sha256 = "0bll7ll6s5g8w89knyrc0famjwqyfzwpn512m1f96bf6xwacs967"; - name = "qtsensors-opensource-src-5.6.1.tar.xz"; - }; - }; - qtenginio = { - version = "1.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtenginio-opensource-src-1.6.1.tar.xz"; - sha256 = "1iq4lnz3s6mfdgml61b9lsjisky55bbvsdj72kh003j94mzrc3l5"; - name = "qtenginio-opensource-src-1.6.1.tar.xz"; - }; - }; - qtgraphicaleffects = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; - sha256 = "1n0i2drfr7fvydgg810dcij8mxnygdpvqcqv7l1a9a1kv9ap3sap"; - name = "qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; - }; - }; - qtdeclarative-render2d = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; - sha256 = "1m08x8x355545r9wgrjl5p26zjhp5q1yh3h25dww8pk25v6cn8dg"; - name = "qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; - }; - }; - qtcanvas3d = { - version = "5.6.1"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtcanvas3d-opensource-src-5.6.1.tar.xz"; - sha256 = "0q17hwmj893pk0lhxmibxmgk6h1gy4ksqfi62rkfzcf81bg2q7hr"; - name = "qtcanvas3d-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttools-opensource-src-5.6.0.tar.xz"; + sha256 = "1791c9a1vxv0q2ywr00ya5rxaggidsq81s8h8fwmql75pdhlq90d"; + name = "qttools-opensource-src-5.6.0.tar.xz"; }; }; qtwebengine = { - version = "5.6.1"; + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebengine-opensource-src-5.6.1.tar.xz"; - sha256 = "0yv0cflgywsyfn84vv2vc9rwpm8j7hin61rxqjqh498nnl2arw5x"; - name = "qtwebengine-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz"; + sha256 = "00vaqx3mypqlnjkfwhx54r6ygfs07amkwc4rma0sg64zdjnvb8la"; + name = "qtwebengine-opensource-src-5.6.0.tar.xz"; }; }; - qtscript = { - version = "5.6.1"; + qtserialbus = { + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtscript-opensource-src-5.6.1.tar.xz"; - sha256 = "17zp5dlfplrnzlw233lzapj55drjqchvayajd02qsggzms3yzchw"; - name = "qtscript-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialbus-opensource-src-5.6.0.tar.xz"; + sha256 = "13hbmj9pilh5gkbbngfbp225qvc650pnzvpzawpnf69zwl757jlc"; + name = "qtserialbus-opensource-src-5.6.0.tar.xz"; }; }; - qtquickcontrols = { - version = "5.6.1"; + qtwayland = { + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols-opensource-src-5.6.1.tar.xz"; - sha256 = "14d68ryn7r7rs7klpldnavcsccvyyg0xhwqkvjlm5wwplv2acah1"; - name = "qtquickcontrols-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwayland-opensource-src-5.6.0.tar.xz"; + sha256 = "1k5zsgz54wlkxm3ici55lbbz286bk2791vri02bjgja5y9102pdm"; + name = "qtwayland-opensource-src-5.6.0.tar.xz"; + }; + }; + qt5 = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt5-opensource-src-5.6.0.tar.xz"; + sha256 = "195dl9pk9slbiy6mgwwpc70vaw62sdhxc3lxmlnyddk99widqa3k"; + name = "qt5-opensource-src-5.6.0.tar.xz"; + }; + }; + qtimageformats = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz"; + sha256 = "1nmsh682idxl0642q7376r9qfxkx0736q9pl4jx179c9lrsl519c"; + name = "qtimageformats-opensource-src-5.6.0.tar.xz"; + }; + }; + qtactiveqt = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtactiveqt-opensource-src-5.6.0.tar.xz"; + sha256 = "0xrjr9jwkxxcv46a8vj77px3v1p36nm6rpvyxma0wb4xhpippp3a"; + name = "qtactiveqt-opensource-src-5.6.0.tar.xz"; + }; + }; + qtdoc = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz"; + sha256 = "1z69yl8nkvp21arjhzl34gr8gvxm5b03d58lwnddl4mkaxbi4vap"; + name = "qtdoc-opensource-src-5.6.0.tar.xz"; + }; + }; + qtsensors = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsensors-opensource-src-5.6.0.tar.xz"; + sha256 = "0blwqmkh0hn1716d5fvy0vnh56y9iikl34ayz6ksl0ayxhpkk3si"; + name = "qtsensors-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwebchannel = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz"; + sha256 = "0ky1njksczyfb7y7p5kfgzbx9vgajzy51g2y3vrpfvl6bs9j8m62"; + name = "qtwebchannel-opensource-src-5.6.0.tar.xz"; + }; + }; + qtmacextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmacextras-opensource-src-5.6.0.tar.xz"; + sha256 = "1jkmwppapvymdr1kwdrbjlxhcafcn4jb23ssnhrvvgcq3lnl5lhj"; + name = "qtmacextras-opensource-src-5.6.0.tar.xz"; }; }; qtwebsockets = { - version = "5.6.1"; + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebsockets-opensource-src-5.6.1.tar.xz"; - sha256 = "0fkj52i4yi6gmq4jfjgdij08cspxspac6mbpf0fknnllimmkl7jm"; - name = "qtwebsockets-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz"; + sha256 = "17vi3n27gx3f3c2lii3b70pzz6mpblam3236v6mj439xzrlvi2i6"; + name = "qtwebsockets-opensource-src-5.6.0.tar.xz"; + }; + }; + qtconnectivity = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtconnectivity-opensource-src-5.6.0.tar.xz"; + sha256 = "1ss0ibabiv7n5hakkxmkc4msrwgqcvfffdjajnv5jrq0030v0p0c"; + name = "qtconnectivity-opensource-src-5.6.0.tar.xz"; + }; + }; + qtscript = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz"; + sha256 = "0hjhkh4lia1i0iir1i8dr57gizi74h73j0phhir3q3wsglcpax5c"; + name = "qtscript-opensource-src-5.6.0.tar.xz"; + }; + }; + qttranslations = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz"; + sha256 = "0jfdfj2z0nvf1xblmdxaphn0psjycrb5g3jxxcddkci214gka2cq"; + name = "qttranslations-opensource-src-5.6.0.tar.xz"; + }; + }; + qtlocation = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz"; + sha256 = "1jakjrwic01b5vyij6hfzdfpipandpkj9li3d7wf9bzws0cia3in"; + name = "qtlocation-opensource-src-5.6.0.tar.xz"; + }; + }; + qtserialport = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz"; + sha256 = "07rwhmh9y7b3ycvx4d4d1j32nahf8nhsb9qj99kxz5xrdfv7zvhn"; + name = "qtserialport-opensource-src-5.6.0.tar.xz"; + }; + }; + qtsvg = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz"; + sha256 = "07v4bzxd31dhkhp52y4g2ii0sslmk48cqkkz32v41frqj4qrk1vr"; + name = "qtsvg-opensource-src-5.6.0.tar.xz"; }; }; qtwebview = { - version = "5.6.1"; + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebview-opensource-src-5.6.1.tar.xz"; - sha256 = "0q869wl61vidds551w3z49ysx88xqyn6igbz07zxac7d0gwgwpda"; - name = "qtwebview-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebview-opensource-src-5.6.0.tar.xz"; + sha256 = "0mqbh125bq37xybwslhri4pl861r26cnraiz9ivh4881kqzab3x4"; + name = "qtwebview-opensource-src-5.6.0.tar.xz"; }; }; - qttools = { - version = "5.6.1"; + qtcanvas3d = { + version = "5.6.0"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttools-opensource-src-5.6.1.tar.xz"; - sha256 = "0wbzq60d7lkvlb7b5lqcw87qgy6kyjz1npjavz8f4grdxsaqi8vp"; - name = "qttools-opensource-src-5.6.1.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtcanvas3d-opensource-src-5.6.0.tar.xz"; + sha256 = "1kwykm1ffgpjgb3ggd4h2d2x3yhp9jsc0gnwlks620bahagdbbb6"; + name = "qtcanvas3d-opensource-src-5.6.0.tar.xz"; + }; + }; + qtwinextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwinextras-opensource-src-5.6.0.tar.xz"; + sha256 = "14xvm081wjyild2wi7pcilqxdkhc8b0lf9yn7yf7zp576i9ir5aq"; + name = "qtwinextras-opensource-src-5.6.0.tar.xz"; + }; + }; + qtgraphicaleffects = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; + sha256 = "1s0n8hrmrfs53cmm7i45p8zavvmsl0aisd5sgj93p8c5rzyi3s81"; + name = "qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; + }; + }; + qtxmlpatterns = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz"; + sha256 = "1m0rr0m9zg2d6rdban2p5qyx8rdnjnjsfk3bm72bh47hscxipvds"; + name = "qtxmlpatterns-opensource-src-5.6.0.tar.xz"; + }; + }; + qtquickcontrols2 = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols2-opensource-src-5.6.0.tar.xz"; + sha256 = "1q7yp7l32jd3p28587ldxzkj58z1aad9gcs80w6vqc9952i6xv2r"; + name = "qtquickcontrols2-opensource-src-5.6.0.tar.xz"; + }; + }; + qtbase = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtbase-opensource-src-5.6.0.tar.xz"; + sha256 = "0ynnvcs5idivzldsq5ciqg9myg82b3l3906l4vjv54lyamf8mykf"; + name = "qtbase-opensource-src-5.6.0.tar.xz"; + }; + }; + qt3d = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt3d-opensource-src-5.6.0.tar.xz"; + sha256 = "17a37xhav5mxspx2c9wsgvcilv7ys40q6minmlqd1gnfmsfphqdr"; + name = "qt3d-opensource-src-5.6.0.tar.xz"; + }; + }; + qtenginio = { + version = "1.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz"; + sha256 = "033z2jncci64s7s9ml5rsfsnrkdmhx1g5dfvr61imv63pzxxqzb2"; + name = "qtenginio-opensource-src-1.6.0.tar.xz"; + }; + }; + qtx11extras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz"; + sha256 = "099lc7kxcxgp5s01ddnd6n955fc8866caark43xfs2dw0a6pdva7"; + name = "qtx11extras-opensource-src-5.6.0.tar.xz"; + }; + }; + qtdeclarative = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz"; + sha256 = "0k70zlyx1nh35caiav4s3jvg5l029pvilm6sarxmfj73y19z0mcc"; + name = "qtdeclarative-opensource-src-5.6.0.tar.xz"; + }; + }; + qtmultimedia = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz"; + sha256 = "11h66xcr3y3w8hhvx801r66yirvf1kppasjlhm25qvr6rpb9jgqh"; + name = "qtmultimedia-opensource-src-5.6.0.tar.xz"; + }; + }; + qtquickcontrols = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz"; + sha256 = "12vqkxpz5y2bbh083lpsxcianykl8x7am49pmc4x221a5xwrc27c"; + name = "qtquickcontrols-opensource-src-5.6.0.tar.xz"; + }; + }; + qtandroidextras = { + version = "5.6.0"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtandroidextras-opensource-src-5.6.0.tar.xz"; + sha256 = "1qhrn8vhfn0z73bc2ls1b4zfvr7r5gn7b5xdmjp26hi338j55vp0"; + name = "qtandroidextras-opensource-src-5.6.0.tar.xz"; }; }; } From 97d791978cca24515409b53c9cc0cef28f972ea8 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 9 Jun 2016 17:01:52 +0300 Subject: [PATCH 498/520] qt56: 5.6.0 -> 5.6.1 --- .../libraries/qt-5/5.6/fetchsrcs.sh | 4 +- .../qt-5/5.6/qtbase/cmake-paths.patch | 42 +- .../qt-5/5.6/qtbase/compose-search-path.patch | 6 +- .../qt-5/5.6/qtbase/decrypt-ssl-traffic.patch | 6 +- .../libraries/qt-5/5.6/qtbase/default.nix | 48 +- .../qt-5/5.6/qtbase/dlopen-dbus.patch | 6 +- .../libraries/qt-5/5.6/qtbase/dlopen-gl.patch | 6 +- .../qt-5/5.6/qtbase/dlopen-gtkstyle.patch | 12 +- .../qt-5/5.6/qtbase/dlopen-libXcursor.patch | 6 +- .../qt-5/5.6/qtbase/dlopen-openssl.patch | 6 +- .../qt-5/5.6/qtbase/dlopen-resolv.patch | 12 +- .../libraries/qt-5/5.6/qtbase/libressl.patch | 6 +- .../qt-5/5.6/qtbase/mkspecs-libgl.patch | 6 +- .../qtbase/nix-profiles-library-paths.patch | 6 +- .../libraries/qt-5/5.6/qtbase/tzdir.patch | 6 +- .../qt-5/5.6/qtbase/xdg-config-dirs.patch | 12 +- pkgs/development/libraries/qt-5/5.6/srcs.nix | 470 +++++++++--------- 17 files changed, 323 insertions(+), 337 deletions(-) diff --git a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh index c499c70ea2ca..cbedf29ed79d 100755 --- a/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh +++ b/pkgs/development/libraries/qt-5/5.6/fetchsrcs.sh @@ -4,7 +4,7 @@ set -x # The trailing slash at the end is necessary! -RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.0/submodules/" +RELEASE_URL="http://download.qt.io/official_releases/qt/5.6/5.6.1/submodules/" EXTRA_WGET_ARGS='-A *.tar.xz' mkdir tmp; cd tmp @@ -12,7 +12,7 @@ mkdir tmp; cd tmp wget -nH -r -c --no-parent $RELEASE_URL $EXTRA_WGET_ARGS cat >../srcs.nix <.gitmodules ''; prefixKey = "-prefix "; diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch index 401cfd5c295e..9118507e9388 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-dbus.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +Index: qtbase-opensource-src-5.5.1/src/dbus/qdbus_symbols.cpp =================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/dbus/qdbus_symbols.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/dbus/qdbus_symbols.cpp +--- qtbase-opensource-src-5.5.1.orig/src/dbus/qdbus_symbols.cpp ++++ qtbase-opensource-src-5.5.1/src/dbus/qdbus_symbols.cpp @@ -89,7 +89,7 @@ bool qdbus_loadLibDBus() #ifdef Q_OS_WIN QLatin1String("dbus-1"), diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch index 59f510ac54da..ea3073ced50a 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gl.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +Index: qtbase-opensource-src-5.5.1/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp =================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp +--- qtbase-opensource-src-5.5.1.orig/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp ++++ qtbase-opensource-src-5.5.1/src/plugins/platforms/xcb/gl_integrations/xcb_glx/qglxintegration.cpp @@ -563,7 +563,12 @@ void (*QGLXContext::getProcAddress(const { extern const QString qt_gl_library_name(); diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch index ad1719c46e29..755b0965cf5f 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-gtkstyle.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +Index: qtbase-opensource-src-5.5.1/src/widgets/styles/qgtk2painter.cpp =================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtk2painter.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter.cpp +--- qtbase-opensource-src-5.5.1.orig/src/widgets/styles/qgtk2painter.cpp ++++ qtbase-opensource-src-5.5.1/src/widgets/styles/qgtk2painter.cpp @@ -96,7 +96,7 @@ static void initGtk() static bool initialized = false; if (!initialized) { @@ -11,10 +11,10 @@ Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtk2painter QGtk2PainterPrivate::gdk_pixmap_new = (Ptr_gdk_pixmap_new)libgtk.resolve("gdk_pixmap_new"); QGtk2PainterPrivate::gdk_pixbuf_get_from_drawable = (Ptr_gdk_pixbuf_get_from_drawable)libgtk.resolve("gdk_pixbuf_get_from_drawable"); -Index: qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +Index: qtbase-opensource-src-5.5.1/src/widgets/styles/qgtkstyle_p.cpp =================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/src/widgets/styles/qgtkstyle_p.cpp -+++ qt-everywhere-opensource-src-5.5.1/qtbase/src/widgets/styles/qgtkstyle_p.cpp +--- qtbase-opensource-src-5.5.1.orig/src/widgets/styles/qgtkstyle_p.cpp ++++ qtbase-opensource-src-5.5.1/src/widgets/styles/qgtkstyle_p.cpp @@ -327,7 +327,7 @@ void QGtkStylePrivate::gtkWidgetSetFocus void QGtkStylePrivate::resolveGtk() const { diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch index d3b5b631be76..3e2e8ab349d3 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-libXcursor.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +Index: qtbase-opensource-src-5.6.0/src/plugins/platforms/xcb/qxcbcursor.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/plugins/platforms/xcb/qxcbcursor.cpp +--- qtbase-opensource-src-5.6.0.orig/src/plugins/platforms/xcb/qxcbcursor.cpp ++++ qtbase-opensource-src-5.6.0/src/plugins/platforms/xcb/qxcbcursor.cpp @@ -303,10 +303,10 @@ QXcbCursor::QXcbCursor(QXcbConnection *c #if defined(XCB_USE_XLIB) && !defined(QT_NO_LIBRARY) static bool function_ptrs_not_initialized = true; diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch index f51fa44faaf5..1d97aad94065 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-openssl.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +Index: qtbase-opensource-src-5.6.0/src/network/ssl/qsslsocket_openssl_symbols.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslsocket_openssl_symbols.cpp +--- qtbase-opensource-src-5.6.0.orig/src/network/ssl/qsslsocket_openssl_symbols.cpp ++++ qtbase-opensource-src-5.6.0/src/network/ssl/qsslsocket_openssl_symbols.cpp @@ -652,8 +652,8 @@ static QPair loadO #endif #if defined(SHLIB_VERSION_NUMBER) && !defined(Q_OS_QNX) // on QNX, the libs are always libssl.so and libcrypto.so diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch index 3e9b9ca2b08a..5c285188ce40 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/dlopen-resolv.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qdnslookup_unix.cpp +Index: qtbase-opensource-src-5.6.0/src/network/kernel/qdnslookup_unix.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/kernel/qdnslookup_unix.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qdnslookup_unix.cpp +--- qtbase-opensource-src-5.6.0.orig/src/network/kernel/qdnslookup_unix.cpp ++++ qtbase-opensource-src-5.6.0/src/network/kernel/qdnslookup_unix.cpp @@ -79,7 +79,7 @@ static void resolveLibrary() if (!lib.load()) #endif @@ -11,10 +11,10 @@ Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qdnslookup_u if (!lib.load()) return; } -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qhostinfo_unix.cpp +Index: qtbase-opensource-src-5.6.0/src/network/kernel/qhostinfo_unix.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/kernel/qhostinfo_unix.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/kernel/qhostinfo_unix.cpp +--- qtbase-opensource-src-5.6.0.orig/src/network/kernel/qhostinfo_unix.cpp ++++ qtbase-opensource-src-5.6.0/src/network/kernel/qhostinfo_unix.cpp @@ -95,7 +95,7 @@ static void resolveLibrary() if (!lib.load()) #endif diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch index a05d55c8640a..c721a6be7470 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/libressl.patch @@ -9,10 +9,10 @@ is defined in openssl, but not in libressl. src/network/ssl/qsslcontext_openssl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslcontext_openssl.cpp +Index: qtbase-opensource-src-5.6.0/src/network/ssl/qsslcontext_openssl.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/network/ssl/qsslcontext_openssl.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/network/ssl/qsslcontext_openssl.cpp +--- qtbase-opensource-src-5.6.0.orig/src/network/ssl/qsslcontext_openssl.cpp ++++ qtbase-opensource-src-5.6.0/src/network/ssl/qsslcontext_openssl.cpp @@ -340,7 +340,7 @@ init_context: const QVector qcurves = sslContext->sslConfiguration.ellipticCurves(); diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch index 56ee0a411d4d..fda3d3e36533 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/mkspecs-libgl.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +Index: qtbase-opensource-src-5.5.1/mkspecs/common/linux.conf =================================================================== ---- qt-everywhere-opensource-src-5.5.1.orig/qtbase/mkspecs/common/linux.conf -+++ qt-everywhere-opensource-src-5.5.1/qtbase/mkspecs/common/linux.conf +--- qtbase-opensource-src-5.5.1.orig/mkspecs/common/linux.conf ++++ qtbase-opensource-src-5.5.1/mkspecs/common/linux.conf @@ -12,8 +12,8 @@ QMAKE_INCDIR = QMAKE_LIBDIR = QMAKE_INCDIR_X11 = diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch index b2aad140ad0f..d454a74109ae 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/nix-profiles-library-paths.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/kernel/qcoreapplication.cpp +Index: qtbase-opensource-src-5.6.0/src/corelib/kernel/qcoreapplication.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/kernel/qcoreapplication.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/kernel/qcoreapplication.cpp +--- qtbase-opensource-src-5.6.0.orig/src/corelib/kernel/qcoreapplication.cpp ++++ qtbase-opensource-src-5.6.0/src/corelib/kernel/qcoreapplication.cpp @@ -2533,7 +2533,17 @@ QStringList QCoreApplication::libraryPat QStringList *app_libpaths = new QStringList; coreappdata()->app_libpaths.reset(app_libpaths); diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch index 1c0541bdc2ad..16e88d7c4f0d 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/tzdir.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +Index: qtbase-opensource-src-5.6.0/src/corelib/tools/qtimezoneprivate_tz.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/tools/qtimezoneprivate_tz.cpp +--- qtbase-opensource-src-5.6.0.orig/src/corelib/tools/qtimezoneprivate_tz.cpp ++++ qtbase-opensource-src-5.6.0/src/corelib/tools/qtimezoneprivate_tz.cpp @@ -62,7 +62,10 @@ typedef QHash Q // Parse zone.tab table, assume lists all installed zones, if not will need to read directories static QTzTimeZoneHash loadTzTimeZones() diff --git a/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch b/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch index ff4ad82ea8f8..8756cbe9f5f0 100644 --- a/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch +++ b/pkgs/development/libraries/qt-5/5.6/qtbase/xdg-config-dirs.patch @@ -1,7 +1,7 @@ -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings.cpp +Index: qtbase-opensource-src-5.6.0/src/corelib/io/qsettings.cpp =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/io/qsettings.cpp -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings.cpp +--- qtbase-opensource-src-5.6.0.orig/src/corelib/io/qsettings.cpp ++++ qtbase-opensource-src-5.6.0/src/corelib/io/qsettings.cpp @@ -1155,6 +1155,24 @@ QConfFileSettingsPrivate::QConfFileSetti if (!application.isEmpty()) confFiles[F_System | F_Application].reset(QConfFile::fromName(systemPath + appFile, false)); @@ -27,10 +27,10 @@ Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings.cpp #else QString confName = getPath(format, QSettings::UserScope) + org; if (!application.isEmpty()) -Index: qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings_p.h +Index: qtbase-opensource-src-5.6.0/src/corelib/io/qsettings_p.h =================================================================== ---- qt-everywhere-opensource-src-5.6.0.orig/qtbase/src/corelib/io/qsettings_p.h -+++ qt-everywhere-opensource-src-5.6.0/qtbase/src/corelib/io/qsettings_p.h +--- qtbase-opensource-src-5.6.0.orig/src/corelib/io/qsettings_p.h ++++ qtbase-opensource-src-5.6.0/src/corelib/io/qsettings_p.h @@ -241,7 +241,7 @@ public: F_Organization = 0x1, F_User = 0x0, diff --git a/pkgs/development/libraries/qt-5/5.6/srcs.nix b/pkgs/development/libraries/qt-5/5.6/srcs.nix index 9ddbbbde078f..6f11e4408f77 100644 --- a/pkgs/development/libraries/qt-5/5.6/srcs.nix +++ b/pkgs/development/libraries/qt-5/5.6/srcs.nix @@ -1,261 +1,261 @@ -# DO NOT EDIT! This file is generated automatically by manifest.sh +# DO NOT EDIT! This file is generated automatically by fetchsrcs.sh { fetchurl, mirror }: { - qttools = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttools-opensource-src-5.6.0.tar.xz"; - sha256 = "1791c9a1vxv0q2ywr00ya5rxaggidsq81s8h8fwmql75pdhlq90d"; - name = "qttools-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebengine = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebengine-opensource-src-5.6.0.tar.xz"; - sha256 = "00vaqx3mypqlnjkfwhx54r6ygfs07amkwc4rma0sg64zdjnvb8la"; - name = "qtwebengine-opensource-src-5.6.0.tar.xz"; - }; - }; - qtserialbus = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialbus-opensource-src-5.6.0.tar.xz"; - sha256 = "13hbmj9pilh5gkbbngfbp225qvc650pnzvpzawpnf69zwl757jlc"; - name = "qtserialbus-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwayland = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwayland-opensource-src-5.6.0.tar.xz"; - sha256 = "1k5zsgz54wlkxm3ici55lbbz286bk2791vri02bjgja5y9102pdm"; - name = "qtwayland-opensource-src-5.6.0.tar.xz"; - }; - }; - qt5 = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt5-opensource-src-5.6.0.tar.xz"; - sha256 = "195dl9pk9slbiy6mgwwpc70vaw62sdhxc3lxmlnyddk99widqa3k"; - name = "qt5-opensource-src-5.6.0.tar.xz"; - }; - }; - qtimageformats = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtimageformats-opensource-src-5.6.0.tar.xz"; - sha256 = "1nmsh682idxl0642q7376r9qfxkx0736q9pl4jx179c9lrsl519c"; - name = "qtimageformats-opensource-src-5.6.0.tar.xz"; - }; - }; - qtactiveqt = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtactiveqt-opensource-src-5.6.0.tar.xz"; - sha256 = "0xrjr9jwkxxcv46a8vj77px3v1p36nm6rpvyxma0wb4xhpippp3a"; - name = "qtactiveqt-opensource-src-5.6.0.tar.xz"; - }; - }; - qtdoc = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdoc-opensource-src-5.6.0.tar.xz"; - sha256 = "1z69yl8nkvp21arjhzl34gr8gvxm5b03d58lwnddl4mkaxbi4vap"; - name = "qtdoc-opensource-src-5.6.0.tar.xz"; - }; - }; - qtsensors = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsensors-opensource-src-5.6.0.tar.xz"; - sha256 = "0blwqmkh0hn1716d5fvy0vnh56y9iikl34ayz6ksl0ayxhpkk3si"; - name = "qtsensors-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebchannel = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebchannel-opensource-src-5.6.0.tar.xz"; - sha256 = "0ky1njksczyfb7y7p5kfgzbx9vgajzy51g2y3vrpfvl6bs9j8m62"; - name = "qtwebchannel-opensource-src-5.6.0.tar.xz"; - }; - }; - qtmacextras = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmacextras-opensource-src-5.6.0.tar.xz"; - sha256 = "1jkmwppapvymdr1kwdrbjlxhcafcn4jb23ssnhrvvgcq3lnl5lhj"; - name = "qtmacextras-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebsockets = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebsockets-opensource-src-5.6.0.tar.xz"; - sha256 = "17vi3n27gx3f3c2lii3b70pzz6mpblam3236v6mj439xzrlvi2i6"; - name = "qtwebsockets-opensource-src-5.6.0.tar.xz"; - }; - }; - qtconnectivity = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtconnectivity-opensource-src-5.6.0.tar.xz"; - sha256 = "1ss0ibabiv7n5hakkxmkc4msrwgqcvfffdjajnv5jrq0030v0p0c"; - name = "qtconnectivity-opensource-src-5.6.0.tar.xz"; - }; - }; - qtscript = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtscript-opensource-src-5.6.0.tar.xz"; - sha256 = "0hjhkh4lia1i0iir1i8dr57gizi74h73j0phhir3q3wsglcpax5c"; - name = "qtscript-opensource-src-5.6.0.tar.xz"; - }; - }; - qttranslations = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qttranslations-opensource-src-5.6.0.tar.xz"; - sha256 = "0jfdfj2z0nvf1xblmdxaphn0psjycrb5g3jxxcddkci214gka2cq"; - name = "qttranslations-opensource-src-5.6.0.tar.xz"; - }; - }; - qtlocation = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtlocation-opensource-src-5.6.0.tar.xz"; - sha256 = "1jakjrwic01b5vyij6hfzdfpipandpkj9li3d7wf9bzws0cia3in"; - name = "qtlocation-opensource-src-5.6.0.tar.xz"; - }; - }; - qtserialport = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtserialport-opensource-src-5.6.0.tar.xz"; - sha256 = "07rwhmh9y7b3ycvx4d4d1j32nahf8nhsb9qj99kxz5xrdfv7zvhn"; - name = "qtserialport-opensource-src-5.6.0.tar.xz"; - }; - }; - qtsvg = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtsvg-opensource-src-5.6.0.tar.xz"; - sha256 = "07v4bzxd31dhkhp52y4g2ii0sslmk48cqkkz32v41frqj4qrk1vr"; - name = "qtsvg-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwebview = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwebview-opensource-src-5.6.0.tar.xz"; - sha256 = "0mqbh125bq37xybwslhri4pl861r26cnraiz9ivh4881kqzab3x4"; - name = "qtwebview-opensource-src-5.6.0.tar.xz"; - }; - }; - qtcanvas3d = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtcanvas3d-opensource-src-5.6.0.tar.xz"; - sha256 = "1kwykm1ffgpjgb3ggd4h2d2x3yhp9jsc0gnwlks620bahagdbbb6"; - name = "qtcanvas3d-opensource-src-5.6.0.tar.xz"; - }; - }; - qtwinextras = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtwinextras-opensource-src-5.6.0.tar.xz"; - sha256 = "14xvm081wjyild2wi7pcilqxdkhc8b0lf9yn7yf7zp576i9ir5aq"; - name = "qtwinextras-opensource-src-5.6.0.tar.xz"; - }; - }; - qtgraphicaleffects = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; - sha256 = "1s0n8hrmrfs53cmm7i45p8zavvmsl0aisd5sgj93p8c5rzyi3s81"; - name = "qtgraphicaleffects-opensource-src-5.6.0.tar.xz"; - }; - }; qtxmlpatterns = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtxmlpatterns-opensource-src-5.6.0.tar.xz"; - sha256 = "1m0rr0m9zg2d6rdban2p5qyx8rdnjnjsfk3bm72bh47hscxipvds"; - name = "qtxmlpatterns-opensource-src-5.6.0.tar.xz"; - }; - }; - qtquickcontrols2 = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols2-opensource-src-5.6.0.tar.xz"; - sha256 = "1q7yp7l32jd3p28587ldxzkj58z1aad9gcs80w6vqc9952i6xv2r"; - name = "qtquickcontrols2-opensource-src-5.6.0.tar.xz"; - }; - }; - qtbase = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtbase-opensource-src-5.6.0.tar.xz"; - sha256 = "0ynnvcs5idivzldsq5ciqg9myg82b3l3906l4vjv54lyamf8mykf"; - name = "qtbase-opensource-src-5.6.0.tar.xz"; - }; - }; - qt3d = { - version = "5.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qt3d-opensource-src-5.6.0.tar.xz"; - sha256 = "17a37xhav5mxspx2c9wsgvcilv7ys40q6minmlqd1gnfmsfphqdr"; - name = "qt3d-opensource-src-5.6.0.tar.xz"; - }; - }; - qtenginio = { - version = "1.6.0"; - src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtenginio-opensource-src-1.6.0.tar.xz"; - sha256 = "033z2jncci64s7s9ml5rsfsnrkdmhx1g5dfvr61imv63pzxxqzb2"; - name = "qtenginio-opensource-src-1.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtxmlpatterns-opensource-src-5.6.1.tar.xz"; + sha256 = "0q412jv3xbg7v05b8pbahifwx17gzlp96s90akh6zwhpm8i6xx34"; + name = "qtxmlpatterns-opensource-src-5.6.1.tar.xz"; }; }; qtx11extras = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtx11extras-opensource-src-5.6.0.tar.xz"; - sha256 = "099lc7kxcxgp5s01ddnd6n955fc8866caark43xfs2dw0a6pdva7"; - name = "qtx11extras-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtx11extras-opensource-src-5.6.1.tar.xz"; + sha256 = "0l736qiz8adrnh267xz63hv4sph6nhy90h836qfnnmv3p78ipsz8"; + name = "qtx11extras-opensource-src-5.6.1.tar.xz"; }; }; - qtdeclarative = { - version = "5.6.0"; + qtwinextras = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtdeclarative-opensource-src-5.6.0.tar.xz"; - sha256 = "0k70zlyx1nh35caiav4s3jvg5l029pvilm6sarxmfj73y19z0mcc"; - name = "qtdeclarative-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwinextras-opensource-src-5.6.1.tar.xz"; + sha256 = "1db3lcrj8af0z8lnh99lfbwz1cq9il7rr27rk9l38dff65qkssm8"; + name = "qtwinextras-opensource-src-5.6.1.tar.xz"; }; }; - qtmultimedia = { - version = "5.6.0"; + qtwebview = { + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtmultimedia-opensource-src-5.6.0.tar.xz"; - sha256 = "11h66xcr3y3w8hhvx801r66yirvf1kppasjlhm25qvr6rpb9jgqh"; - name = "qtmultimedia-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebview-opensource-src-5.6.1.tar.xz"; + sha256 = "0q869wl61vidds551w3z49ysx88xqyn6igbz07zxac7d0gwgwpda"; + name = "qtwebview-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebsockets = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebsockets-opensource-src-5.6.1.tar.xz"; + sha256 = "0fkj52i4yi6gmq4jfjgdij08cspxspac6mbpf0fknnllimmkl7jm"; + name = "qtwebsockets-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebengine = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebengine-opensource-src-5.6.1.tar.xz"; + sha256 = "0yv0cflgywsyfn84vv2vc9rwpm8j7hin61rxqjqh498nnl2arw5x"; + name = "qtwebengine-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwebchannel = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwebchannel-opensource-src-5.6.1.tar.xz"; + sha256 = "01q80917a1048hdhaii4v50dqs84h16lc9w3v99r9xvspk8vab7q"; + name = "qtwebchannel-opensource-src-5.6.1.tar.xz"; + }; + }; + qtwayland = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtwayland-opensource-src-5.6.1.tar.xz"; + sha256 = "1jgghjfrg0wwyfzfwgwhagwxz9k936ylv3w2l9bwlpql8rgm8d11"; + name = "qtwayland-opensource-src-5.6.1.tar.xz"; + }; + }; + qttranslations = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttranslations-opensource-src-5.6.1.tar.xz"; + sha256 = "008wyk00mqz116pigm0qq78rvg28v6ykjnjxppkjnk0yd6i2vmb9"; + name = "qttranslations-opensource-src-5.6.1.tar.xz"; + }; + }; + qttools = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qttools-opensource-src-5.6.1.tar.xz"; + sha256 = "0wbzq60d7lkvlb7b5lqcw87qgy6kyjz1npjavz8f4grdxsaqi8vp"; + name = "qttools-opensource-src-5.6.1.tar.xz"; + }; + }; + qtsvg = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsvg-opensource-src-5.6.1.tar.xz"; + sha256 = "08ca5g46g75acy27jfnvnalmcias5hxmjp7491v3y4k9y7a4ybpi"; + name = "qtsvg-opensource-src-5.6.1.tar.xz"; + }; + }; + qtserialport = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialport-opensource-src-5.6.1.tar.xz"; + sha256 = "1hp63cgqhps6y1k041lzhcb2b0rcpcmszabnn293q5ilbvla4x0b"; + name = "qtserialport-opensource-src-5.6.1.tar.xz"; + }; + }; + qtserialbus = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtserialbus-opensource-src-5.6.1.tar.xz"; + sha256 = "1h683dkvnf2rdgxgisybnp8miqgn2gpi597rgx5zc7qk2k8kyidz"; + name = "qtserialbus-opensource-src-5.6.1.tar.xz"; + }; + }; + qtsensors = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtsensors-opensource-src-5.6.1.tar.xz"; + sha256 = "0bll7ll6s5g8w89knyrc0famjwqyfzwpn512m1f96bf6xwacs967"; + name = "qtsensors-opensource-src-5.6.1.tar.xz"; + }; + }; + qtscript = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtscript-opensource-src-5.6.1.tar.xz"; + sha256 = "17zp5dlfplrnzlw233lzapj55drjqchvayajd02qsggzms3yzchw"; + name = "qtscript-opensource-src-5.6.1.tar.xz"; + }; + }; + qtquickcontrols2 = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols2-opensource-src-5.6.1.tar.xz"; + sha256 = "13zbiv63b76ifpjalx5616nixfwjk48q977bzb1xxj363b7xv85v"; + name = "qtquickcontrols2-opensource-src-5.6.1.tar.xz"; }; }; qtquickcontrols = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtquickcontrols-opensource-src-5.6.0.tar.xz"; - sha256 = "12vqkxpz5y2bbh083lpsxcianykl8x7am49pmc4x221a5xwrc27c"; - name = "qtquickcontrols-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtquickcontrols-opensource-src-5.6.1.tar.xz"; + sha256 = "14d68ryn7r7rs7klpldnavcsccvyyg0xhwqkvjlm5wwplv2acah1"; + name = "qtquickcontrols-opensource-src-5.6.1.tar.xz"; + }; + }; + qtmultimedia = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmultimedia-opensource-src-5.6.1.tar.xz"; + sha256 = "058523c2qra3d8fq46ygcndnkrbwlh316zy28s2cr5pjr5gmnjyj"; + name = "qtmultimedia-opensource-src-5.6.1.tar.xz"; + }; + }; + qtmacextras = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtmacextras-opensource-src-5.6.1.tar.xz"; + sha256 = "147yhv7fb0yaakrffqiw6xz8ycqdc7qsnxvnpr6j8rarw5xmdc73"; + name = "qtmacextras-opensource-src-5.6.1.tar.xz"; + }; + }; + qtlocation = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtlocation-opensource-src-5.6.1.tar.xz"; + sha256 = "0qahs7a2n3l4h0bl8bnwci9mzy1vra3zncnzr40csic9ys67ddfk"; + name = "qtlocation-opensource-src-5.6.1.tar.xz"; + }; + }; + qtimageformats = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtimageformats-opensource-src-5.6.1.tar.xz"; + sha256 = "020v1148433zx4g87z2r8fgff32n0laajxqqsja1l3yzz7jbrwvl"; + name = "qtimageformats-opensource-src-5.6.1.tar.xz"; + }; + }; + qtgraphicaleffects = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; + sha256 = "1n0i2drfr7fvydgg810dcij8mxnygdpvqcqv7l1a9a1kv9ap3sap"; + name = "qtgraphicaleffects-opensource-src-5.6.1.tar.xz"; + }; + }; + qtenginio = { + version = "1.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtenginio-opensource-src-1.6.1.tar.xz"; + sha256 = "1iq4lnz3s6mfdgml61b9lsjisky55bbvsdj72kh003j94mzrc3l5"; + name = "qtenginio-opensource-src-1.6.1.tar.xz"; + }; + }; + qtdoc = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdoc-opensource-src-5.6.1.tar.xz"; + sha256 = "0yg7903vk4w3h6jjyanssfcig0s2s660q11sj14nw6gcjs7kfa5z"; + name = "qtdoc-opensource-src-5.6.1.tar.xz"; + }; + }; + qtdeclarative-render2d = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; + sha256 = "1m08x8x355545r9wgrjl5p26zjhp5q1yh3h25dww8pk25v6cn8dg"; + name = "qtdeclarative-render2d-opensource-src-5.6.1.tar.xz"; + }; + }; + qtdeclarative = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtdeclarative-opensource-src-5.6.1.tar.xz"; + sha256 = "1d2217kxk85kpi7ls08b41hqzy26hvch8m4cgzq6km5sqi5zvz0j"; + name = "qtdeclarative-opensource-src-5.6.1.tar.xz"; + }; + }; + qtconnectivity = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtconnectivity-opensource-src-5.6.1.tar.xz"; + sha256 = "06fr9321f52kf0nda9zjjfzp5694hbnx0y0v315iw28mnpvandas"; + name = "qtconnectivity-opensource-src-5.6.1.tar.xz"; + }; + }; + qtcanvas3d = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtcanvas3d-opensource-src-5.6.1.tar.xz"; + sha256 = "0q17hwmj893pk0lhxmibxmgk6h1gy4ksqfi62rkfzcf81bg2q7hr"; + name = "qtcanvas3d-opensource-src-5.6.1.tar.xz"; + }; + }; + qtbase = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtbase-opensource-src-5.6.1.tar.xz"; + sha256 = "0r3jrqymnnxrig4f11xvs33c26f0kzfakbp3kcbdpv795gpc276h"; + name = "qtbase-opensource-src-5.6.1.tar.xz"; }; }; qtandroidextras = { - version = "5.6.0"; + version = "5.6.1"; src = fetchurl { - url = "${mirror}/official_releases/qt/5.6/5.6.0/submodules/qtandroidextras-opensource-src-5.6.0.tar.xz"; - sha256 = "1qhrn8vhfn0z73bc2ls1b4zfvr7r5gn7b5xdmjp26hi338j55vp0"; - name = "qtandroidextras-opensource-src-5.6.0.tar.xz"; + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtandroidextras-opensource-src-5.6.1.tar.xz"; + sha256 = "0prkpb57j0s8k36sba47k2bhs3ajf01rdwc7qf5gkvhs991rwckc"; + name = "qtandroidextras-opensource-src-5.6.1.tar.xz"; + }; + }; + qtactiveqt = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qtactiveqt-opensource-src-5.6.1.tar.xz"; + sha256 = "0a2p0w03d04hqg71hlihj9mr6aasvb0h8jfa5rnq8b5rkm8haf4f"; + name = "qtactiveqt-opensource-src-5.6.1.tar.xz"; + }; + }; + qt3d = { + version = "5.6.1"; + src = fetchurl { + url = "${mirror}/official_releases/qt/5.6/5.6.1/submodules/qt3d-opensource-src-5.6.1.tar.xz"; + sha256 = "03d81sls30a20yna6940np15112ciwy5024f8n5imaxicm8h34xd"; + name = "qt3d-opensource-src-5.6.1.tar.xz"; }; }; } From 0e262f52f30143e9f6fdc171fee69075934604e3 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 9 Jun 2016 18:26:04 +0200 Subject: [PATCH 499/520] go: v1.5.3 -> v1.5.4 --- pkgs/development/compilers/go/1.5.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/compilers/go/1.5.nix b/pkgs/development/compilers/go/1.5.nix index b5bfac850280..b2eb4b1f246f 100644 --- a/pkgs/development/compilers/go/1.5.nix +++ b/pkgs/development/compilers/go/1.5.nix @@ -1,4 +1,4 @@ -{ stdenv, lib, fetchurl, tzdata, iana_etc, go_1_4, runCommand +{ stdenv, lib, fetchFromGitHub, tzdata, iana_etc, go_1_4, runCommand , perl, which, pkgconfig, patch , pcre , Security, Foundation }: @@ -15,11 +15,13 @@ in stdenv.mkDerivation rec { name = "go-${version}"; - version = "1.5.3"; + version = "1.5.4"; - src = fetchurl { - url = "https://github.com/golang/go/archive/go${version}.tar.gz"; - sha256 = "1n2niq0147pqflqh8j1s5wv8aq3vlh58ni3bp9add261z5q1g50k"; + src = fetchFromGitHub { + owner = "golang"; + repo = "go"; + rev = "go${version}"; + sha256 = "1lvk9awmkjbz5z4snv3q3b3r7ijfz97kig2wkqz6jmr7b0lp1fcy"; }; # perl is used for testing go vet From aea0ff96deacacb256ee20f35866883af739aa78 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 12:39:02 -0500 Subject: [PATCH 500/520] sddm: run phase hooks --- pkgs/applications/display-managers/sddm/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/display-managers/sddm/default.nix b/pkgs/applications/display-managers/sddm/default.nix index 8e1812ec013b..923b185ae393 100644 --- a/pkgs/applications/display-managers/sddm/default.nix +++ b/pkgs/applications/display-managers/sddm/default.nix @@ -68,14 +68,19 @@ in stdenv.mkDerivation { name = "sddm-${version}"; - phases = "installPhase"; nativeBuildInputs = [ lndir makeQtWrapper ]; buildInputs = [ unwrapped ] ++ themes; themes = map (pkg: pkg.out or pkg) themes; inherit unwrapped; + unpackPhase = "true"; + configurePhase = "runHook preConfigure; runHook postConfigure"; + buildPhase = "runHook preBuild; runHook postBuild"; + installPhase = '' + runHook preInstall + makeQtWrapper "$unwrapped/bin/sddm" "$out/bin/sddm" mkdir -p "$out/share/sddm" @@ -85,6 +90,8 @@ stdenv.mkDerivation { lndir -silent "$sddmDir" "$out/share/sddm" fi done + + runHook postInstall ''; inherit (unwrapped) meta; From c608230a614b74eb6cf50b36269c28ddebc99d98 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 9 Jun 2016 12:39:10 -0500 Subject: [PATCH 501/520] nixos/kde5: include setup hook and icons with sddm theme Fixes #16094. --- nixos/modules/services/x11/desktop-managers/kde5.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/modules/services/x11/desktop-managers/kde5.nix b/nixos/modules/services/x11/desktop-managers/kde5.nix index 538300f5793a..060dda1a70a8 100644 --- a/nixos/modules/services/x11/desktop-managers/kde5.nix +++ b/nixos/modules/services/x11/desktop-managers/kde5.nix @@ -170,7 +170,9 @@ in services.xserver.displayManager.sddm = { theme = "breeze"; themes = [ + kde5.extra-cmake-modules # for the setup-hook kde5.plasma-workspace + kde5.breeze-icons (kde5.oxygen-icons or kde5.oxygen-icons5) ]; }; From 7b84294bd94b66111c4360fa9036d6bf410a1207 Mon Sep 17 00:00:00 2001 From: Nikolay Amiantov Date: Thu, 9 Jun 2016 21:37:24 +0300 Subject: [PATCH 502/520] tdesktop: fix with new Qt --- .../telegram/tdesktop/default.nix | 23 +++++++++---------- 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix index 5d2cc9fa155b..9f398fbf9549 100644 --- a/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix +++ b/pkgs/applications/networking/instant-messengers/telegram/tdesktop/default.nix @@ -10,10 +10,11 @@ let system-x86_64 = lib.elem stdenv.system lib.platforms.x86_64; + packagedQt = "5.6.0"; in stdenv.mkDerivation rec { name = "telegram-desktop-${version}"; version = "0.9.49"; - qtVersion = lib.replaceStrings ["."] ["_"] qtbase.version; + qtVersion = lib.replaceStrings ["."] ["_"] packagedQt; src = fetchFromGitHub { owner = "telegramdesktop"; @@ -63,7 +64,7 @@ in stdenv.mkDerivation rec { "LIBS+=-lssl" ]; - qtSrcs = qtbase.srcs ++ [ qtimageformats.src ]; + qtSrcs = [ qtbase.src qtimageformats.src ]; qtPatches = qtbase.patches; buildCommand = '' @@ -79,7 +80,8 @@ in stdenv.mkDerivation rec { -e 's,LIBS += .*libz.a,LIBS += -lz,' \ -e 's,LIBS += .*libbreakpad_client.a,LIBS += ${breakpad}/lib/libbreakpad_client.a,' \ -e 's, -flto,,g' \ - -e 's, -static-libstdc++,,g' + -e 's, -static-libstdc++,,g' \ + -e 's,${packagedQt},${qtbase.version},g' export QMAKE=$PWD/../qt/bin/qmake ( mkdir -p ../Libraries @@ -87,18 +89,15 @@ in stdenv.mkDerivation rec { for i in $qtSrcs; do tar -xaf $i done - mv qt-everywhere-opensource-src-* QtStatic - mv qtbase-opensource-src-* ./QtStatic/qtbase - mv qtimageformats-opensource-src-* ./QtStatic/qtimageformats - cd QtStatic/qtbase - patch -p1 < ../../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff - cd .. + cd qtbase-* + patch -p1 < ../../$sourceRoot/Telegram/Patches/qtbase_${qtVersion}.diff for i in $qtPatches; do patch -p1 < $i done ${qtbase.postPatch} + cd .. - export configureFlags="-prefix "$PWD/../../qt" -release -opensource -confirm-license -system-zlib \ + export configureFlags="-prefix "$PWD/../qt" -release -opensource -confirm-license -system-zlib \ -system-libpng -system-libjpeg -system-freetype -system-harfbuzz -system-pcre -system-xcb \ -system-xkbcommon-x11 -no-opengl -static -nomake examples -nomake tests \ -openssl-linked -dbus-linked -system-sqlite -verbose \ @@ -107,13 +106,13 @@ in stdenv.mkDerivation rec { export dontAddPrefix=1 export MAKEFLAGS=-j$NIX_BUILD_CORES - ( cd qtbase + ( cd qtbase-* configurePhase buildPhase make install ) - ( cd qtimageformats + ( cd qtimageformats-* $QMAKE buildPhase make install From f8a0f1ce686674fc53830e2a1c61c40f53df4571 Mon Sep 17 00:00:00 2001 From: mimadrid Date: Thu, 9 Jun 2016 20:49:26 +0200 Subject: [PATCH 503/520] klavaro: 3.01 -> 3.02 --- pkgs/games/klavaro/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/games/klavaro/default.nix b/pkgs/games/klavaro/default.nix index 48b25d99492e..f5970ccd2207 100644 --- a/pkgs/games/klavaro/default.nix +++ b/pkgs/games/klavaro/default.nix @@ -1,11 +1,12 @@ { stdenv, fetchurl, makeWrapper, pkgconfig, intltool, curl, gtk3 }: stdenv.mkDerivation rec { - name = "klavaro-3.01"; + name = "klavaro-${version}"; + version = "3.02"; src = fetchurl { url = "mirror://sourceforge/klavaro/${name}.tar.bz2"; - sha256 = "11ay04lg362bh2di6y5r9g58bgmgbpwwnrbsa7bda4wiq8idawgd"; + sha256 = "5f77730a8c1c8dfd4443ec8390c7226e3f82537df0882cd1222b140f0d0fcd6c"; }; buildInputs = [ makeWrapper pkgconfig intltool curl gtk3 ]; From 2a258d13ade7533aa37bffcdd2ce0cea67309483 Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 9 Jun 2016 21:32:37 +0200 Subject: [PATCH 504/520] go: make 1.6 default --- 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 f0f815c893ac..e63123688967 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4549,7 +4549,7 @@ in inherit (darwin.apple_sdk.frameworks) Security Foundation; }; - go = self.go_1_5; + go = self.go_1_6; go-repo-root = (callPackage ../development/tools/go-repo-root { }).bin; From cf042ae750a9fe911addd6ffddea2c8c6fa45548 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 7 Jun 2016 22:47:26 +0200 Subject: [PATCH 505/520] hackage-packages.nix: update Haskell package set This update was generated by hackage2nix v20160406-38-g2269395 using the following inputs: - Hackage: https://github.com/commercialhaskell/all-cabal-hashes/commit/65d1dbe8dd1e2e501650ff6613c8927068074afa - LTS Haskell: https://github.com/fpco/lts-haskell/commit/1a80e0660e630f6dd98f34c3d82c23dc824ada01 - Stackage Nightly: https://github.com/fpco/stackage-nightly/commit/5863aeaee36019c2f376858f6212c494becf721b --- .../haskell-modules/configuration-lts-0.0.nix | 10 + .../haskell-modules/configuration-lts-0.1.nix | 10 + .../haskell-modules/configuration-lts-0.2.nix | 10 + .../haskell-modules/configuration-lts-0.3.nix | 10 + .../haskell-modules/configuration-lts-0.4.nix | 10 + .../haskell-modules/configuration-lts-0.5.nix | 10 + .../haskell-modules/configuration-lts-0.6.nix | 10 + .../haskell-modules/configuration-lts-0.7.nix | 10 + .../haskell-modules/configuration-lts-1.0.nix | 10 + .../haskell-modules/configuration-lts-1.1.nix | 10 + .../configuration-lts-1.10.nix | 10 + .../configuration-lts-1.11.nix | 10 + .../configuration-lts-1.12.nix | 10 + .../configuration-lts-1.13.nix | 10 + .../configuration-lts-1.14.nix | 10 + .../configuration-lts-1.15.nix | 10 + .../haskell-modules/configuration-lts-1.2.nix | 10 + .../haskell-modules/configuration-lts-1.4.nix | 10 + .../haskell-modules/configuration-lts-1.5.nix | 10 + .../haskell-modules/configuration-lts-1.7.nix | 10 + .../haskell-modules/configuration-lts-1.8.nix | 10 + .../haskell-modules/configuration-lts-1.9.nix | 10 + .../haskell-modules/configuration-lts-2.0.nix | 10 + .../haskell-modules/configuration-lts-2.1.nix | 10 + .../configuration-lts-2.10.nix | 10 + .../configuration-lts-2.11.nix | 10 + .../configuration-lts-2.12.nix | 10 + .../configuration-lts-2.13.nix | 10 + .../configuration-lts-2.14.nix | 10 + .../configuration-lts-2.15.nix | 10 + .../configuration-lts-2.16.nix | 10 + .../configuration-lts-2.17.nix | 10 + .../configuration-lts-2.18.nix | 10 + .../configuration-lts-2.19.nix | 10 + .../haskell-modules/configuration-lts-2.2.nix | 10 + .../configuration-lts-2.20.nix | 10 + .../configuration-lts-2.21.nix | 10 + .../configuration-lts-2.22.nix | 10 + .../haskell-modules/configuration-lts-2.3.nix | 10 + .../haskell-modules/configuration-lts-2.4.nix | 10 + .../haskell-modules/configuration-lts-2.5.nix | 10 + .../haskell-modules/configuration-lts-2.6.nix | 10 + .../haskell-modules/configuration-lts-2.7.nix | 10 + .../haskell-modules/configuration-lts-2.8.nix | 10 + .../haskell-modules/configuration-lts-2.9.nix | 10 + .../haskell-modules/configuration-lts-3.0.nix | 10 + .../haskell-modules/configuration-lts-3.1.nix | 10 + .../configuration-lts-3.10.nix | 10 + .../configuration-lts-3.11.nix | 10 + .../configuration-lts-3.12.nix | 10 + .../configuration-lts-3.13.nix | 10 + .../configuration-lts-3.14.nix | 10 + .../configuration-lts-3.15.nix | 10 + .../configuration-lts-3.16.nix | 10 + .../configuration-lts-3.17.nix | 10 + .../configuration-lts-3.18.nix | 10 + .../configuration-lts-3.19.nix | 10 + .../haskell-modules/configuration-lts-3.2.nix | 10 + .../configuration-lts-3.20.nix | 10 + .../configuration-lts-3.21.nix | 11 + .../configuration-lts-3.22.nix | 11 + .../haskell-modules/configuration-lts-3.3.nix | 10 + .../haskell-modules/configuration-lts-3.4.nix | 10 + .../haskell-modules/configuration-lts-3.5.nix | 10 + .../haskell-modules/configuration-lts-3.6.nix | 10 + .../haskell-modules/configuration-lts-3.7.nix | 10 + .../haskell-modules/configuration-lts-3.8.nix | 10 + .../haskell-modules/configuration-lts-3.9.nix | 10 + .../haskell-modules/configuration-lts-4.0.nix | 15 + .../haskell-modules/configuration-lts-4.1.nix | 15 + .../haskell-modules/configuration-lts-4.2.nix | 15 + .../haskell-modules/configuration-lts-5.0.nix | 15 + .../haskell-modules/configuration-lts-5.1.nix | 15 + .../configuration-lts-5.10.nix | 18 + .../configuration-lts-5.11.nix | 18 + .../configuration-lts-5.12.nix | 21 + .../configuration-lts-5.13.nix | 21 + .../configuration-lts-5.14.nix | 22 + .../configuration-lts-5.15.nix | 22 + .../configuration-lts-5.16.nix | 24 + .../configuration-lts-5.17.nix | 24 + .../configuration-lts-5.18.nix | 24 + .../haskell-modules/configuration-lts-5.2.nix | 15 + .../haskell-modules/configuration-lts-5.3.nix | 15 + .../haskell-modules/configuration-lts-5.4.nix | 15 + .../haskell-modules/configuration-lts-5.5.nix | 16 + .../haskell-modules/configuration-lts-5.6.nix | 16 + .../haskell-modules/configuration-lts-5.7.nix | 16 + .../haskell-modules/configuration-lts-5.8.nix | 16 + .../haskell-modules/configuration-lts-5.9.nix | 18 + .../haskell-modules/configuration-lts-6.0.nix | 28 + .../haskell-modules/configuration-lts-6.1.nix | 28 + .../haskell-modules/configuration-lts-6.2.nix | 30 + .../haskell-modules/hackage-packages.nix | 1133 ++++++++++++++--- 94 files changed, 2108 insertions(+), 189 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-lts-0.0.nix b/pkgs/development/haskell-modules/configuration-lts-0.0.nix index 1a64e703b400..0c90cf0ba541 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.0.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4196,6 +4200,7 @@ self: super: { "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"; @@ -6114,6 +6119,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7787,6 +7793,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8188,6 +8195,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8367,6 +8375,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.1.nix b/pkgs/development/haskell-modules/configuration-lts-0.1.nix index 7630cb6fb6bd..a99ab6445078 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.1.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4196,6 +4200,7 @@ self: super: { "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"; @@ -6114,6 +6119,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7787,6 +7793,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8188,6 +8195,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8367,6 +8375,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.2.nix b/pkgs/development/haskell-modules/configuration-lts-0.2.nix index f0fe60fadc02..14f4a2bdcae9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.2.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4196,6 +4200,7 @@ self: super: { "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"; @@ -6114,6 +6119,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7787,6 +7793,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8188,6 +8195,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8367,6 +8375,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.3.nix b/pkgs/development/haskell-modules/configuration-lts-0.3.nix index d6356ef8528c..047003dfb38d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.3.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4196,6 +4200,7 @@ self: super: { "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"; @@ -6114,6 +6119,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7787,6 +7793,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8188,6 +8195,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8367,6 +8375,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.4.nix b/pkgs/development/haskell-modules/configuration-lts-0.4.nix index e1ddb308b407..4dd0d3dca7a3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.4.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4194,6 +4198,7 @@ self: super: { "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"; @@ -6112,6 +6117,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7784,6 +7790,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8185,6 +8192,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8364,6 +8372,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.5.nix b/pkgs/development/haskell-modules/configuration-lts-0.5.nix index 3347a0f35c9a..5fb9067393ea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.5.nix @@ -1986,6 +1986,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2893,6 +2894,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2930,6 +2932,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3234,6 +3237,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4194,6 +4198,7 @@ self: super: { "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"; @@ -6112,6 +6117,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7784,6 +7790,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8185,6 +8192,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8364,6 +8372,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.6.nix b/pkgs/development/haskell-modules/configuration-lts-0.6.nix index 88b9d0205139..612959b6fc2e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.6.nix @@ -1985,6 +1985,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2892,6 +2893,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2929,6 +2931,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3233,6 +3236,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4193,6 +4197,7 @@ self: super: { "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"; @@ -6110,6 +6115,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7781,6 +7787,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8182,6 +8189,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8361,6 +8369,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-0.7.nix b/pkgs/development/haskell-modules/configuration-lts-0.7.nix index 36c7782bdb47..5a9c4a1aab35 100644 --- a/pkgs/development/haskell-modules/configuration-lts-0.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-0.7.nix @@ -1985,6 +1985,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2892,6 +2893,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2929,6 +2931,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3233,6 +3236,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4193,6 +4197,7 @@ self: super: { "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"; @@ -6110,6 +6115,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7781,6 +7787,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_6"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8182,6 +8189,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8361,6 +8369,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.0.nix b/pkgs/development/haskell-modules/configuration-lts-1.0.nix index 16d96af61626..184ed2ade480 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.0.nix @@ -1980,6 +1980,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2886,6 +2887,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2923,6 +2925,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3226,6 +3229,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4186,6 +4190,7 @@ self: super: { "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"; @@ -6102,6 +6107,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7772,6 +7778,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8172,6 +8179,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8351,6 +8359,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.1.nix b/pkgs/development/haskell-modules/configuration-lts-1.1.nix index e690b20846f2..bf3e9ce93b93 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.1.nix @@ -1979,6 +1979,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2883,6 +2884,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2920,6 +2922,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3223,6 +3226,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2_1"; "fb" = doDistribute super."fb_1_0_7"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4182,6 +4186,7 @@ self: super: { "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"; @@ -6095,6 +6100,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7764,6 +7770,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8163,6 +8170,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8342,6 +8350,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.10.nix b/pkgs/development/haskell-modules/configuration-lts-1.10.nix index bd6abfb14784..6c05309cb07e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.10.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4172,6 +4176,7 @@ self: super: { "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"; @@ -6078,6 +6083,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7743,6 +7749,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8142,6 +8149,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8320,6 +8328,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.11.nix b/pkgs/development/haskell-modules/configuration-lts-1.11.nix index 1f6081ce6142..73e37ae69c40 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.11.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4171,6 +4175,7 @@ self: super: { "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"; @@ -6075,6 +6080,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7740,6 +7746,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8139,6 +8146,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8317,6 +8325,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.12.nix b/pkgs/development/haskell-modules/configuration-lts-1.12.nix index bc90406605b1..b818c0136de1 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.12.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4171,6 +4175,7 @@ self: super: { "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"; @@ -6075,6 +6080,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7740,6 +7746,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8139,6 +8146,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8317,6 +8325,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.13.nix b/pkgs/development/haskell-modules/configuration-lts-1.13.nix index 631d9ffef8fc..a602a7a2bb00 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.13.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4170,6 +4174,7 @@ self: super: { "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"; @@ -6074,6 +6079,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7739,6 +7745,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8138,6 +8145,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8316,6 +8324,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.14.nix b/pkgs/development/haskell-modules/configuration-lts-1.14.nix index 34b01fb8f0b9..7a4cb99b05ad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.14.nix @@ -1975,6 +1975,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2876,6 +2877,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2913,6 +2915,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3214,6 +3217,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4167,6 +4171,7 @@ self: super: { "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"; @@ -6071,6 +6076,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7735,6 +7741,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8134,6 +8141,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8312,6 +8320,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.15.nix b/pkgs/development/haskell-modules/configuration-lts-1.15.nix index 1a883a495649..d54d9ab0ff5f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.15.nix @@ -1974,6 +1974,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2873,6 +2874,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2910,6 +2912,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3210,6 +3213,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4163,6 +4167,7 @@ self: super: { "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"; @@ -6067,6 +6072,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7728,6 +7734,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8127,6 +8134,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8304,6 +8312,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.2.nix b/pkgs/development/haskell-modules/configuration-lts-1.2.nix index 57c0d4ccc3ed..e8f963d6e1d9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.2.nix @@ -1979,6 +1979,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2881,6 +2882,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2918,6 +2920,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3221,6 +3224,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2_1"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4179,6 +4183,7 @@ self: super: { "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"; @@ -6092,6 +6097,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7759,6 +7765,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8158,6 +8165,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8337,6 +8345,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.4.nix b/pkgs/development/haskell-modules/configuration-lts-1.4.nix index 79f58c5477c6..a69d1a8739c5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.4.nix @@ -1978,6 +1978,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2880,6 +2881,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2917,6 +2919,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3220,6 +3223,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2_1"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4177,6 +4181,7 @@ self: super: { "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"; @@ -6089,6 +6094,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7755,6 +7761,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8154,6 +8161,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8333,6 +8341,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.5.nix b/pkgs/development/haskell-modules/configuration-lts-1.5.nix index f32f91769a9a..32dee6b7f3c0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.5.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3219,6 +3222,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2_1"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4176,6 +4180,7 @@ self: super: { "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"; @@ -6088,6 +6093,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7754,6 +7760,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8153,6 +8160,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8332,6 +8340,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.7.nix b/pkgs/development/haskell-modules/configuration-lts-1.7.nix index 048e654b70eb..590551bccacf 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.7.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3219,6 +3222,7 @@ self: super: { "fay-text" = doDistribute super."fay-text_0_3_2_1"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4176,6 +4180,7 @@ self: super: { "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"; @@ -6083,6 +6088,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7749,6 +7755,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8148,6 +8155,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8327,6 +8335,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.8.nix b/pkgs/development/haskell-modules/configuration-lts-1.8.nix index e946445e3c1a..904e59ff1fc0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.8.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4173,6 +4177,7 @@ self: super: { "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"; @@ -6079,6 +6084,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7745,6 +7751,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8144,6 +8151,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8323,6 +8331,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-1.9.nix b/pkgs/development/haskell-modules/configuration-lts-1.9.nix index 636b53f52d3a..10cad7ef6611 100644 --- a/pkgs/development/haskell-modules/configuration-lts-1.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-1.9.nix @@ -1977,6 +1977,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2879,6 +2880,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2916,6 +2918,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3217,6 +3220,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4172,6 +4176,7 @@ self: super: { "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"; @@ -6078,6 +6083,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7744,6 +7750,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_5_7"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -8143,6 +8150,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8322,6 +8330,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.0.nix b/pkgs/development/haskell-modules/configuration-lts-2.0.nix index 4f0abb825f3b..ffcecf2e451f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.0.nix @@ -1966,6 +1966,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2862,6 +2863,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2899,6 +2901,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3201,6 +3204,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4150,6 +4154,7 @@ self: super: { "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"; @@ -6034,6 +6039,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7690,6 +7696,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8085,6 +8092,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8260,6 +8268,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.1.nix b/pkgs/development/haskell-modules/configuration-lts-2.1.nix index aaf066a7918c..98d1ce5c2931 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.1.nix @@ -1966,6 +1966,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2862,6 +2863,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2899,6 +2901,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3201,6 +3204,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4150,6 +4154,7 @@ self: super: { "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"; @@ -6034,6 +6039,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7690,6 +7696,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8085,6 +8092,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8260,6 +8268,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.10.nix b/pkgs/development/haskell-modules/configuration-lts-2.10.nix index 3730a6ce6cf3..5f5f8fb7fe9a 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.10.nix @@ -1958,6 +1958,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2852,6 +2853,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2889,6 +2891,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3188,6 +3191,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_10"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4135,6 +4139,7 @@ self: super: { "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"; @@ -6014,6 +6019,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7666,6 +7672,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8055,6 +8062,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8228,6 +8236,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.11.nix b/pkgs/development/haskell-modules/configuration-lts-2.11.nix index 83dca9e8ad88..1cca8924c317 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.11.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2851,6 +2852,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2888,6 +2890,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3187,6 +3190,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_10"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4134,6 +4138,7 @@ self: super: { "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"; @@ -6013,6 +6018,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7663,6 +7669,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8051,6 +8058,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8223,6 +8231,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.12.nix b/pkgs/development/haskell-modules/configuration-lts-2.12.nix index 363f0485970d..810fca6ba468 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.12.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2851,6 +2852,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2888,6 +2890,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3187,6 +3190,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_10"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4134,6 +4138,7 @@ self: super: { "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"; @@ -6013,6 +6018,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7662,6 +7668,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8050,6 +8057,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8222,6 +8230,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.13.nix b/pkgs/development/haskell-modules/configuration-lts-2.13.nix index 6e2205c9fbbd..4ee3b5ea86d5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.13.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2851,6 +2852,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2888,6 +2890,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3187,6 +3190,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_10"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4134,6 +4138,7 @@ self: super: { "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"; @@ -6012,6 +6017,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7661,6 +7667,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8049,6 +8056,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8221,6 +8229,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.14.nix b/pkgs/development/haskell-modules/configuration-lts-2.14.nix index 15625790d976..b76ca7e7c581 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.14.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2851,6 +2852,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2888,6 +2890,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3187,6 +3190,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4133,6 +4137,7 @@ self: super: { "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"; @@ -6010,6 +6015,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7659,6 +7665,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8047,6 +8054,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8219,6 +8227,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.15.nix b/pkgs/development/haskell-modules/configuration-lts-2.15.nix index b1927e740e67..ea09d02a2e9d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.15.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2851,6 +2852,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2888,6 +2890,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3186,6 +3189,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4132,6 +4136,7 @@ self: super: { "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"; @@ -6008,6 +6013,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7657,6 +7663,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8044,6 +8051,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8216,6 +8224,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.16.nix b/pkgs/development/haskell-modules/configuration-lts-2.16.nix index 732ffc1cae58..0403b50e2e07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.16.nix @@ -1957,6 +1957,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2849,6 +2850,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2886,6 +2888,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3183,6 +3186,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4129,6 +4133,7 @@ self: super: { "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"; @@ -6004,6 +6009,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7653,6 +7659,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8040,6 +8047,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8212,6 +8220,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.17.nix b/pkgs/development/haskell-modules/configuration-lts-2.17.nix index b708c33a5b09..010fe952019d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.17.nix @@ -1956,6 +1956,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2848,6 +2849,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2885,6 +2887,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3181,6 +3184,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4126,6 +4130,7 @@ self: super: { "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"; @@ -6001,6 +6006,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7649,6 +7655,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8036,6 +8043,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8208,6 +8216,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.18.nix b/pkgs/development/haskell-modules/configuration-lts-2.18.nix index 8c7b8b6282dc..4014b94d7cbe 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.18.nix @@ -1955,6 +1955,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2847,6 +2848,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2884,6 +2886,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3179,6 +3182,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4124,6 +4128,7 @@ self: super: { "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"; @@ -5999,6 +6004,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7646,6 +7652,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8033,6 +8040,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8204,6 +8212,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.19.nix b/pkgs/development/haskell-modules/configuration-lts-2.19.nix index 0778128fec52..294d6ce26d09 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.19.nix @@ -1955,6 +1955,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2847,6 +2848,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2884,6 +2886,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3179,6 +3182,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4123,6 +4127,7 @@ self: super: { "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"; @@ -5998,6 +6003,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7645,6 +7651,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8032,6 +8039,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8203,6 +8211,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.2.nix b/pkgs/development/haskell-modules/configuration-lts-2.2.nix index 359ece2f0af0..3416a218ed8d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.2.nix @@ -1964,6 +1964,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2860,6 +2861,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2897,6 +2899,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3199,6 +3202,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_8"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4148,6 +4152,7 @@ self: super: { "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"; @@ -6032,6 +6037,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7688,6 +7694,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8083,6 +8090,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8258,6 +8266,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.20.nix b/pkgs/development/haskell-modules/configuration-lts-2.20.nix index c6b30481b93f..75288b5ce2c9 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.20.nix @@ -1955,6 +1955,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2847,6 +2848,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2884,6 +2886,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3179,6 +3182,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4123,6 +4127,7 @@ self: super: { "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"; @@ -5998,6 +6003,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7645,6 +7651,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8031,6 +8038,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8202,6 +8210,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.21.nix b/pkgs/development/haskell-modules/configuration-lts-2.21.nix index 0bad35825d1e..1c0bde4dafe0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.21.nix @@ -1955,6 +1955,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2847,6 +2848,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2884,6 +2886,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3179,6 +3182,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4123,6 +4127,7 @@ self: super: { "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"; @@ -5998,6 +6003,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7644,6 +7650,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8030,6 +8037,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8201,6 +8209,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.22.nix b/pkgs/development/haskell-modules/configuration-lts-2.22.nix index 41584ebc8b48..ef9cb326074e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.22.nix @@ -1955,6 +1955,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2847,6 +2848,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2884,6 +2886,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3179,6 +3182,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4123,6 +4127,7 @@ self: super: { "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"; @@ -5997,6 +6002,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7643,6 +7649,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8029,6 +8036,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8200,6 +8208,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.3.nix b/pkgs/development/haskell-modules/configuration-lts-2.3.nix index adf47f90fc8a..1e314a42ea07 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.3.nix @@ -1964,6 +1964,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2860,6 +2861,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2897,6 +2899,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3198,6 +3201,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4147,6 +4151,7 @@ self: super: { "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"; @@ -6030,6 +6035,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7686,6 +7692,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8081,6 +8088,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8256,6 +8264,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.4.nix b/pkgs/development/haskell-modules/configuration-lts-2.4.nix index f9715f4f34ea..0a48b64acd49 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.4.nix @@ -1964,6 +1964,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2860,6 +2861,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2897,6 +2899,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3198,6 +3201,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4147,6 +4151,7 @@ self: super: { "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"; @@ -6030,6 +6035,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7684,6 +7690,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8079,6 +8086,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8254,6 +8262,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.5.nix b/pkgs/development/haskell-modules/configuration-lts-2.5.nix index 7cf582c448ef..5806bcdd1939 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.5.nix @@ -1964,6 +1964,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2859,6 +2860,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2896,6 +2898,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3197,6 +3200,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4146,6 +4150,7 @@ self: super: { "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"; @@ -6029,6 +6034,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7683,6 +7689,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8078,6 +8085,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8253,6 +8261,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.6.nix b/pkgs/development/haskell-modules/configuration-lts-2.6.nix index ec52d94275e3..3a53fd60b699 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.6.nix @@ -1961,6 +1961,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2856,6 +2857,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2893,6 +2895,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3194,6 +3197,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4142,6 +4146,7 @@ self: super: { "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"; @@ -6025,6 +6030,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7678,6 +7684,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8073,6 +8080,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8248,6 +8256,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.7.nix b/pkgs/development/haskell-modules/configuration-lts-2.7.nix index 32f20050eb4a..9eba1f5025be 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.7.nix @@ -1961,6 +1961,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2856,6 +2857,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2893,6 +2895,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3194,6 +3197,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4142,6 +4146,7 @@ self: super: { "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"; @@ -6025,6 +6030,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7679,6 +7685,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8074,6 +8081,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8249,6 +8257,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.8.nix b/pkgs/development/haskell-modules/configuration-lts-2.8.nix index 12ddefc9ce25..03853c72c04e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.8.nix @@ -1960,6 +1960,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2855,6 +2856,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2892,6 +2894,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3193,6 +3196,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4140,6 +4144,7 @@ self: super: { "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"; @@ -6023,6 +6028,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7676,6 +7682,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8068,6 +8075,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8243,6 +8251,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-2.9.nix b/pkgs/development/haskell-modules/configuration-lts-2.9.nix index eef057dc197f..ead963ec6037 100644 --- a/pkgs/development/haskell-modules/configuration-lts-2.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-2.9.nix @@ -1958,6 +1958,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2853,6 +2854,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2890,6 +2892,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3189,6 +3192,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_9"; "fb-persistent" = doDistribute super."fb-persistent_0_3_4"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4136,6 +4140,7 @@ self: super: { "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"; @@ -6017,6 +6022,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7670,6 +7676,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_1_2"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -8060,6 +8067,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8233,6 +8241,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.0.nix b/pkgs/development/haskell-modules/configuration-lts-3.0.nix index ccac712aec52..ad5e27fc616e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.0.nix @@ -1908,6 +1908,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2785,6 +2786,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2822,6 +2824,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3112,6 +3115,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4044,6 +4048,7 @@ self: super: { "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"; @@ -5878,6 +5883,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7500,6 +7506,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7878,6 +7885,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8046,6 +8054,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.1.nix b/pkgs/development/haskell-modules/configuration-lts-3.1.nix index 737e3d586998..9315b001babc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.1.nix @@ -1907,6 +1907,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2784,6 +2785,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2821,6 +2823,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3110,6 +3113,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4042,6 +4046,7 @@ self: super: { "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"; @@ -5875,6 +5880,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7495,6 +7501,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7873,6 +7880,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8041,6 +8049,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.10.nix b/pkgs/development/haskell-modules/configuration-lts-3.10.nix index b11aa2803882..8b0d90e92872 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.10.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2772,6 +2773,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2809,6 +2811,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3097,6 +3100,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4024,6 +4028,7 @@ self: super: { "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"; @@ -5848,6 +5853,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7460,6 +7466,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7834,6 +7841,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8002,6 +8010,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.11.nix b/pkgs/development/haskell-modules/configuration-lts-3.11.nix index 4a2d67969189..9790785c6fbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.11.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2772,6 +2773,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2809,6 +2811,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3096,6 +3099,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4023,6 +4027,7 @@ self: super: { "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"; @@ -5847,6 +5852,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7459,6 +7465,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7833,6 +7840,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8001,6 +8009,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.12.nix b/pkgs/development/haskell-modules/configuration-lts-3.12.nix index 2c15d0a0cee0..36792a074f28 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.12.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2771,6 +2772,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2808,6 +2810,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3095,6 +3098,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4021,6 +4025,7 @@ self: super: { "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"; @@ -5845,6 +5850,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7456,6 +7462,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7830,6 +7837,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7998,6 +8006,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.13.nix b/pkgs/development/haskell-modules/configuration-lts-3.13.nix index 37d0b795af28..dd5b83310e77 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.13.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2771,6 +2772,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2808,6 +2810,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3095,6 +3098,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4021,6 +4025,7 @@ self: super: { "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"; @@ -5843,6 +5848,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7453,6 +7459,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7827,6 +7834,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7995,6 +8003,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.14.nix b/pkgs/development/haskell-modules/configuration-lts-3.14.nix index 3722c779479e..fdf02391efd2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.14.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2770,6 +2771,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2807,6 +2809,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3094,6 +3097,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4020,6 +4024,7 @@ self: super: { "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"; @@ -5841,6 +5846,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7451,6 +7457,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7825,6 +7832,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7993,6 +8001,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.15.nix b/pkgs/development/haskell-modules/configuration-lts-3.15.nix index 02415714ec45..379b32df0d55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.15.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2770,6 +2771,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2807,6 +2809,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3094,6 +3097,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4019,6 +4023,7 @@ self: super: { "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"; @@ -5838,6 +5843,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7447,6 +7453,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7821,6 +7828,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7989,6 +7997,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.16.nix b/pkgs/development/haskell-modules/configuration-lts-3.16.nix index 93dd140cfece..8c169120d5a5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.16.nix @@ -1897,6 +1897,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2769,6 +2770,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2806,6 +2808,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3093,6 +3096,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4018,6 +4022,7 @@ self: super: { "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"; @@ -5835,6 +5840,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7442,6 +7448,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7816,6 +7823,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7984,6 +7992,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.17.nix b/pkgs/development/haskell-modules/configuration-lts-3.17.nix index 1820d188e59c..7b905aa3a8c4 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.17.nix @@ -1896,6 +1896,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2768,6 +2769,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2805,6 +2807,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3092,6 +3095,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4016,6 +4020,7 @@ self: super: { "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"; @@ -5830,6 +5835,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7437,6 +7443,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4_1"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7811,6 +7818,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7979,6 +7987,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.18.nix b/pkgs/development/haskell-modules/configuration-lts-3.18.nix index 288940ce36d2..48a43fd58d58 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.18.nix @@ -1896,6 +1896,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2768,6 +2769,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2805,6 +2807,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3092,6 +3095,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4016,6 +4020,7 @@ self: super: { "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"; @@ -5829,6 +5834,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7436,6 +7442,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7810,6 +7817,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7978,6 +7986,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.19.nix b/pkgs/development/haskell-modules/configuration-lts-3.19.nix index 46bfb1a28c0d..14fe8239edbd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.19.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.19.nix @@ -1894,6 +1894,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2765,6 +2766,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2802,6 +2804,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3089,6 +3092,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4013,6 +4017,7 @@ self: super: { "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"; @@ -5823,6 +5828,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7429,6 +7435,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7802,6 +7809,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7970,6 +7978,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.2.nix b/pkgs/development/haskell-modules/configuration-lts-3.2.nix index 7c56a06404d3..b5e3f1a97f6e 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.2.nix @@ -1905,6 +1905,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2781,6 +2782,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2818,6 +2820,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3107,6 +3110,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4038,6 +4042,7 @@ self: super: { "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"; @@ -5870,6 +5875,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7489,6 +7495,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7866,6 +7873,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8034,6 +8042,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.20.nix b/pkgs/development/haskell-modules/configuration-lts-3.20.nix index b52ad6ad81e8..1b81866173e5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.20.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.20.nix @@ -1893,6 +1893,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2764,6 +2765,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2801,6 +2803,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3088,6 +3091,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4012,6 +4016,7 @@ self: super: { "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"; @@ -5822,6 +5827,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7427,6 +7433,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7799,6 +7806,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7967,6 +7975,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.21.nix b/pkgs/development/haskell-modules/configuration-lts-3.21.nix index b997704c5617..68b55ab297cd 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.21.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.21.nix @@ -1893,6 +1893,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2763,6 +2764,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2800,6 +2802,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3085,6 +3088,7 @@ self: super: { "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"; @@ -4009,6 +4013,7 @@ self: super: { "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"; @@ -5817,6 +5822,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7204,6 +7210,7 @@ self: super: { "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"; "sandman" = dontDistribute super."sandman"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7415,6 +7422,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7786,6 +7794,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7954,6 +7963,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.22.nix b/pkgs/development/haskell-modules/configuration-lts-3.22.nix index 450329b588a7..6af9be05b68d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.22.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.22.nix @@ -1893,6 +1893,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2763,6 +2764,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2800,6 +2802,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3085,6 +3088,7 @@ self: super: { "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"; @@ -4008,6 +4012,7 @@ self: super: { "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"; @@ -5814,6 +5819,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7201,6 +7207,7 @@ self: super: { "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"; "sandman" = dontDistribute super."sandman"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7412,6 +7419,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7783,6 +7791,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7951,6 +7960,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.3.nix b/pkgs/development/haskell-modules/configuration-lts-3.3.nix index 8f982e2034c4..b182a5f45e55 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.3.nix @@ -1905,6 +1905,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2781,6 +2782,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2818,6 +2820,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3107,6 +3110,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4037,6 +4041,7 @@ self: super: { "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"; @@ -5868,6 +5873,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7487,6 +7493,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7863,6 +7870,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8031,6 +8039,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.4.nix b/pkgs/development/haskell-modules/configuration-lts-3.4.nix index 8c3f11503ec1..5df06f358fea 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.4.nix @@ -1905,6 +1905,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2781,6 +2782,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2818,6 +2820,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3107,6 +3110,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4037,6 +4041,7 @@ self: super: { "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"; @@ -5868,6 +5873,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7487,6 +7493,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_3"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7862,6 +7869,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8030,6 +8038,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.5.nix b/pkgs/development/haskell-modules/configuration-lts-3.5.nix index e87358b7835a..5c9ca2308f45 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.5.nix @@ -1904,6 +1904,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2780,6 +2781,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2817,6 +2819,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3106,6 +3109,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4035,6 +4039,7 @@ self: super: { "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"; @@ -5863,6 +5868,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7479,6 +7485,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7854,6 +7861,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8022,6 +8030,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.6.nix b/pkgs/development/haskell-modules/configuration-lts-3.6.nix index 0e57cf1ef579..5ec2fadc5851 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.6.nix @@ -1904,6 +1904,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2780,6 +2781,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2817,6 +2819,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3106,6 +3109,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_11"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4033,6 +4037,7 @@ self: super: { "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"; @@ -5859,6 +5864,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7475,6 +7481,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_3_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7850,6 +7857,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8018,6 +8026,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.7.nix b/pkgs/development/haskell-modules/configuration-lts-3.7.nix index a18d16a16904..a313001fa910 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.7.nix @@ -1902,6 +1902,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2777,6 +2778,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2814,6 +2816,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3103,6 +3106,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4030,6 +4034,7 @@ self: super: { "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"; @@ -5855,6 +5860,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7469,6 +7475,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7843,6 +7850,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8011,6 +8019,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.8.nix b/pkgs/development/haskell-modules/configuration-lts-3.8.nix index e2f8645e151f..47b4d5414ff5 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.8.nix @@ -1900,6 +1900,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2774,6 +2775,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2811,6 +2813,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3100,6 +3103,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4027,6 +4031,7 @@ self: super: { "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"; @@ -5851,6 +5856,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7465,6 +7471,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7839,6 +7846,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8007,6 +8015,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-3.9.nix b/pkgs/development/haskell-modules/configuration-lts-3.9.nix index fcbf2a221055..114434704dad 100644 --- a/pkgs/development/haskell-modules/configuration-lts-3.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-3.9.nix @@ -1898,6 +1898,7 @@ self: super: { "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" = dontDistribute super."cacophony"; @@ -2772,6 +2773,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2809,6 +2811,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3097,6 +3100,7 @@ self: super: { "fay-ref" = dontDistribute super."fay-ref"; "fb" = doDistribute super."fb_1_0_12"; "fb-persistent" = doDistribute super."fb-persistent_0_3_5"; + "fbmessenger-api" = dontDistribute super."fbmessenger-api"; "fca" = dontDistribute super."fca"; "fcache" = dontDistribute super."fcache"; "fcd" = dontDistribute super."fcd"; @@ -4024,6 +4028,7 @@ self: super: { "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"; @@ -5848,6 +5853,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -7462,6 +7468,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_4"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7836,6 +7843,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -8004,6 +8012,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.0.nix b/pkgs/development/haskell-modules/configuration-lts-4.0.nix index eecfb22a513d..27f57069c590 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.0.nix @@ -1070,6 +1070,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1863,6 +1864,7 @@ self: super: { "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_4_0"; @@ -2718,6 +2720,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2754,6 +2757,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3036,6 +3040,7 @@ self: super: { "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"; @@ -3945,6 +3950,7 @@ self: super: { "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"; @@ -5702,6 +5708,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6565,6 +6572,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -7043,6 +7051,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7251,6 +7260,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -7617,6 +7627,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7780,6 +7791,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7795,6 +7808,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8519,6 +8533,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.1.nix b/pkgs/development/haskell-modules/configuration-lts-4.1.nix index 349b70d18a4a..4ccc69aea3dc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.1.nix @@ -1070,6 +1070,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1861,6 +1862,7 @@ self: super: { "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_4_0"; @@ -2716,6 +2718,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2752,6 +2755,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3033,6 +3037,7 @@ self: super: { "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"; @@ -3941,6 +3946,7 @@ self: super: { "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"; @@ -5692,6 +5698,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6555,6 +6562,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -7033,6 +7041,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7241,6 +7250,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -7607,6 +7617,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7770,6 +7781,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7785,6 +7798,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8509,6 +8523,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-4.2.nix b/pkgs/development/haskell-modules/configuration-lts-4.2.nix index 9199bef8cc68..6200493c49d8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-4.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-4.2.nix @@ -1070,6 +1070,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1859,6 +1860,7 @@ self: super: { "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_4_0"; @@ -2712,6 +2714,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2748,6 +2751,7 @@ self: super: { "dresdner-verkehrsbetriebe" = dontDistribute super."dresdner-verkehrsbetriebe"; "drifter" = dontDistribute super."drifter"; "drifter-postgresql" = dontDistribute super."drifter-postgresql"; + "drmaa" = dontDistribute super."drmaa"; "dropbox-sdk" = dontDistribute super."dropbox-sdk"; "dropsolve" = dontDistribute super."dropsolve"; "ds-kanren" = dontDistribute super."ds-kanren"; @@ -3026,6 +3030,7 @@ self: super: { "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"; @@ -3929,6 +3934,7 @@ self: super: { "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"; @@ -5673,6 +5679,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6533,6 +6540,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -7009,6 +7017,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7216,6 +7225,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelltestrunner" = dontDistribute super."shelltestrunner"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; @@ -7577,6 +7587,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7740,6 +7751,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7755,6 +7768,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8478,6 +8492,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.0.nix b/pkgs/development/haskell-modules/configuration-lts-5.0.nix index 87349cbbfa40..ece58ffe1b30 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.0.nix @@ -1064,6 +1064,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1847,6 +1848,7 @@ self: super: { "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_4_0"; @@ -2689,6 +2691,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2723,6 +2726,7 @@ self: super: { "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"; @@ -2999,6 +3003,7 @@ self: super: { "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"; @@ -3894,6 +3899,7 @@ self: super: { "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"; @@ -5632,6 +5638,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6484,6 +6491,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6955,6 +6963,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7161,6 +7170,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7517,6 +7527,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7680,6 +7691,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7695,6 +7708,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8409,6 +8423,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.1.nix b/pkgs/development/haskell-modules/configuration-lts-5.1.nix index 42eccff60cc2..c3d6270621e6 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.1.nix @@ -1063,6 +1063,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1843,6 +1844,7 @@ self: super: { "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_4_0"; @@ -2684,6 +2686,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2718,6 +2721,7 @@ self: super: { "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"; @@ -2994,6 +2998,7 @@ self: super: { "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"; @@ -3889,6 +3894,7 @@ self: super: { "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"; @@ -5625,6 +5631,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6477,6 +6484,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6947,6 +6955,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7152,6 +7161,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7508,6 +7518,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7671,6 +7682,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7686,6 +7699,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8399,6 +8413,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.10.nix b/pkgs/development/haskell-modules/configuration-lts-5.10.nix index f6291d426da5..fcdbf56a30b0 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.10.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.10.nix @@ -1057,6 +1057,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1834,6 +1835,7 @@ self: super: { "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_4_0"; @@ -1996,6 +1998,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2659,6 +2662,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2693,6 +2697,7 @@ self: super: { "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"; @@ -2963,6 +2968,7 @@ self: super: { "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"; @@ -3774,6 +3780,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3848,6 +3855,7 @@ self: super: { "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"; @@ -5558,6 +5566,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6394,6 +6403,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6859,6 +6869,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7062,6 +7073,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7414,6 +7426,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7576,6 +7589,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7591,6 +7606,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8292,6 +8308,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8515,6 +8532,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.11.nix b/pkgs/development/haskell-modules/configuration-lts-5.11.nix index dd29a63d843a..ed9b8e5a7a3d 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.11.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.11.nix @@ -1056,6 +1056,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1830,6 +1831,7 @@ self: super: { "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_4_0"; @@ -1992,6 +1994,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2654,6 +2657,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2688,6 +2692,7 @@ self: super: { "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"; @@ -2957,6 +2962,7 @@ self: super: { "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"; @@ -3768,6 +3774,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3842,6 +3849,7 @@ self: super: { "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"; @@ -5547,6 +5555,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6382,6 +6391,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6847,6 +6857,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7050,6 +7061,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7402,6 +7414,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7563,6 +7576,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7578,6 +7593,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8275,6 +8291,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8498,6 +8515,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.12.nix b/pkgs/development/haskell-modules/configuration-lts-5.12.nix index d89014d7065f..c3daabe3ef78 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.12.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.12.nix @@ -1055,6 +1055,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1829,6 +1830,7 @@ self: super: { "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_4_0"; @@ -1982,12 +1984,16 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2650,6 +2656,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2684,6 +2691,7 @@ self: super: { "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"; @@ -2951,6 +2959,7 @@ self: super: { "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"; @@ -3762,6 +3771,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3836,6 +3846,7 @@ self: super: { "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"; @@ -5534,6 +5545,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6367,6 +6379,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6832,6 +6845,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7034,6 +7048,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7385,6 +7400,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7546,6 +7562,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7561,6 +7579,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8258,6 +8277,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8481,6 +8501,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.13.nix b/pkgs/development/haskell-modules/configuration-lts-5.13.nix index c68a4c81247f..7e10df38bf94 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.13.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.13.nix @@ -1054,6 +1054,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1824,6 +1825,7 @@ self: super: { "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_4_0"; @@ -1977,9 +1979,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2641,6 +2647,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2675,6 +2682,7 @@ self: super: { "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"; @@ -2942,6 +2950,7 @@ self: super: { "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"; @@ -3753,6 +3762,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3827,6 +3837,7 @@ self: super: { "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"; @@ -5520,6 +5531,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6349,6 +6361,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6814,6 +6827,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7016,6 +7030,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7367,6 +7382,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7528,6 +7544,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7543,6 +7561,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8238,6 +8257,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8459,6 +8479,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.14.nix b/pkgs/development/haskell-modules/configuration-lts-5.14.nix index 9fd822082b5e..c84be31b77b8 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.14.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.14.nix @@ -1052,6 +1052,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1819,6 +1820,7 @@ self: super: { "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_4_0"; @@ -1971,9 +1973,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2632,6 +2638,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2666,6 +2673,7 @@ self: super: { "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"; @@ -2933,6 +2941,7 @@ self: super: { "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"; @@ -3742,6 +3751,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3816,6 +3826,7 @@ self: super: { "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"; @@ -5506,6 +5517,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6333,6 +6345,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6797,6 +6810,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -6998,6 +7012,7 @@ self: super: { "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"; @@ -7347,6 +7362,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7507,6 +7523,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7522,6 +7540,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8212,6 +8231,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8335,6 +8355,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8430,6 +8451,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.15.nix b/pkgs/development/haskell-modules/configuration-lts-5.15.nix index e1d42399b49b..50dfd0e17545 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.15.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.15.nix @@ -1051,6 +1051,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1818,6 +1819,7 @@ self: super: { "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_4_0"; @@ -1970,9 +1972,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2629,6 +2635,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2663,6 +2670,7 @@ self: super: { "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"; @@ -2928,6 +2936,7 @@ self: super: { "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"; @@ -3737,6 +3746,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3811,6 +3821,7 @@ self: super: { "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"; @@ -5498,6 +5509,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6323,6 +6335,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6787,6 +6800,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -6988,6 +7002,7 @@ self: super: { "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"; @@ -7337,6 +7352,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7497,6 +7513,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7511,6 +7529,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8200,6 +8219,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8323,6 +8343,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8417,6 +8438,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.16.nix b/pkgs/development/haskell-modules/configuration-lts-5.16.nix index 23b41150abff..e64a8a4294cc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.16.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.16.nix @@ -1049,6 +1049,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1810,6 +1811,7 @@ self: super: { "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_4_0"; @@ -1962,9 +1964,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2520,6 +2526,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2613,6 +2620,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2647,6 +2655,7 @@ self: super: { "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"; @@ -2911,6 +2920,7 @@ self: super: { "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"; @@ -3720,6 +3730,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3794,6 +3805,7 @@ self: super: { "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"; @@ -5475,6 +5487,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6296,6 +6309,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6755,6 +6769,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -6956,6 +6971,7 @@ self: super: { "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"; @@ -7301,6 +7317,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7460,6 +7477,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7473,6 +7492,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8160,6 +8180,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8283,6 +8304,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8377,6 +8399,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8431,6 +8454,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.17.nix b/pkgs/development/haskell-modules/configuration-lts-5.17.nix index 72ef8051115f..f63e3532fb9f 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.17.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.17.nix @@ -1047,6 +1047,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1806,6 +1807,7 @@ self: super: { "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_4_0"; @@ -1958,9 +1960,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2516,6 +2522,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2609,6 +2616,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2643,6 +2651,7 @@ self: super: { "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"; @@ -2907,6 +2916,7 @@ self: super: { "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"; @@ -3716,6 +3726,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3790,6 +3801,7 @@ self: super: { "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"; @@ -5469,6 +5481,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6288,6 +6301,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6746,6 +6760,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -6947,6 +6962,7 @@ self: super: { "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"; @@ -7292,6 +7308,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7450,6 +7467,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7463,6 +7482,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8148,6 +8168,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8271,6 +8292,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8364,6 +8386,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8418,6 +8441,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.18.nix b/pkgs/development/haskell-modules/configuration-lts-5.18.nix index ae01a916519f..5783a2f558da 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.18.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.18.nix @@ -1046,6 +1046,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1805,6 +1806,7 @@ self: super: { "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_4_0"; @@ -1956,9 +1958,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2510,6 +2516,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2602,6 +2609,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2636,6 +2644,7 @@ self: super: { "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"; @@ -2899,6 +2908,7 @@ self: super: { "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"; @@ -3706,6 +3716,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3780,6 +3791,7 @@ self: super: { "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"; @@ -5452,6 +5464,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6267,6 +6280,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6725,6 +6739,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -6926,6 +6941,7 @@ self: super: { "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"; @@ -7271,6 +7287,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7429,6 +7446,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7442,6 +7461,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -8123,6 +8143,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8246,6 +8267,7 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; "xlsx-tabular" = dontDistribute super."xlsx-tabular"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; @@ -8339,6 +8361,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8393,6 +8416,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.2.nix b/pkgs/development/haskell-modules/configuration-lts-5.2.nix index f7ff2830964c..c66cfb432508 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.2.nix @@ -1063,6 +1063,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1843,6 +1844,7 @@ self: super: { "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_4_0"; @@ -2683,6 +2685,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2717,6 +2720,7 @@ self: super: { "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"; @@ -2991,6 +2995,7 @@ self: super: { "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"; @@ -3884,6 +3889,7 @@ self: super: { "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"; @@ -5615,6 +5621,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6464,6 +6471,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6932,6 +6940,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7137,6 +7146,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7493,6 +7503,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7655,6 +7666,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7670,6 +7683,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8383,6 +8397,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.3.nix b/pkgs/development/haskell-modules/configuration-lts-5.3.nix index fc44d14c2003..b898ac218d89 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.3.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.3.nix @@ -1061,6 +1061,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1840,6 +1841,7 @@ self: super: { "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_4_0"; @@ -2677,6 +2679,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2711,6 +2714,7 @@ self: super: { "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"; @@ -2982,6 +2986,7 @@ self: super: { "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"; @@ -3873,6 +3878,7 @@ self: super: { "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"; @@ -5601,6 +5607,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6449,6 +6456,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6914,6 +6922,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7119,6 +7128,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7473,6 +7483,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7635,6 +7646,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7650,6 +7663,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8360,6 +8374,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.4.nix b/pkgs/development/haskell-modules/configuration-lts-5.4.nix index 513bf0c398e0..5889ce2628e2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.4.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.4.nix @@ -1060,6 +1060,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1839,6 +1840,7 @@ self: super: { "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_4_0"; @@ -2672,6 +2674,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2706,6 +2709,7 @@ self: super: { "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"; @@ -2976,6 +2980,7 @@ self: super: { "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"; @@ -3865,6 +3870,7 @@ self: super: { "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"; @@ -5592,6 +5598,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6435,6 +6442,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6900,6 +6908,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7105,6 +7114,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7459,6 +7469,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7621,6 +7632,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7636,6 +7649,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8345,6 +8359,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.5.nix b/pkgs/development/haskell-modules/configuration-lts-5.5.nix index 6cc680233bf7..7ace07b9a258 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.5.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.5.nix @@ -1060,6 +1060,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1838,6 +1839,7 @@ self: super: { "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_4_0"; @@ -2004,6 +2006,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_5_1"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_5"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_5"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2669,6 +2672,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2703,6 +2707,7 @@ self: super: { "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"; @@ -2973,6 +2978,7 @@ self: super: { "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"; @@ -3862,6 +3868,7 @@ self: super: { "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"; @@ -5588,6 +5595,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6431,6 +6439,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6896,6 +6905,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7101,6 +7111,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7455,6 +7466,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7617,6 +7629,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7632,6 +7646,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8339,6 +8354,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.6.nix b/pkgs/development/haskell-modules/configuration-lts-5.6.nix index 4f630cf72eff..af90be145eb2 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.6.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.6.nix @@ -1059,6 +1059,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1837,6 +1838,7 @@ self: super: { "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_4_0"; @@ -2003,6 +2005,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2667,6 +2670,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2701,6 +2705,7 @@ self: super: { "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"; @@ -2971,6 +2976,7 @@ self: super: { "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"; @@ -3857,6 +3863,7 @@ self: super: { "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"; @@ -5580,6 +5587,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6420,6 +6428,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6885,6 +6894,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7090,6 +7100,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7444,6 +7455,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7606,6 +7618,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7621,6 +7635,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8326,6 +8341,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.7.nix b/pkgs/development/haskell-modules/configuration-lts-5.7.nix index 798028819721..361134e31705 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.7.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.7.nix @@ -1059,6 +1059,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1837,6 +1838,7 @@ self: super: { "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_4_0"; @@ -2000,6 +2002,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2664,6 +2667,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2698,6 +2702,7 @@ self: super: { "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"; @@ -2968,6 +2973,7 @@ self: super: { "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"; @@ -3854,6 +3860,7 @@ self: super: { "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"; @@ -5575,6 +5582,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6415,6 +6423,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6880,6 +6889,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7084,6 +7094,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7438,6 +7449,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7600,6 +7612,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7615,6 +7629,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8319,6 +8334,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.8.nix b/pkgs/development/haskell-modules/configuration-lts-5.8.nix index 71db989b93b5..5fcc84e3e4f3 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.8.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.8.nix @@ -1059,6 +1059,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1837,6 +1838,7 @@ self: super: { "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_4_0"; @@ -2000,6 +2002,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2664,6 +2667,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2698,6 +2702,7 @@ self: super: { "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"; @@ -2968,6 +2973,7 @@ self: super: { "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"; @@ -3854,6 +3860,7 @@ self: super: { "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"; @@ -5575,6 +5582,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6415,6 +6423,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6880,6 +6889,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7084,6 +7094,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7438,6 +7449,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7600,6 +7612,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7615,6 +7629,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8318,6 +8333,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; diff --git a/pkgs/development/haskell-modules/configuration-lts-5.9.nix b/pkgs/development/haskell-modules/configuration-lts-5.9.nix index b917addc4fdc..5d9ad584e543 100644 --- a/pkgs/development/haskell-modules/configuration-lts-5.9.nix +++ b/pkgs/development/haskell-modules/configuration-lts-5.9.nix @@ -1059,6 +1059,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1836,6 +1837,7 @@ self: super: { "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_4_0"; @@ -1998,6 +2000,7 @@ self: super: { "classy-prelude" = doDistribute super."classy-prelude_0_12_6"; "classy-prelude-conduit" = doDistribute super."classy-prelude-conduit_0_12_6"; "classy-prelude-yesod" = doDistribute super."classy-prelude-yesod_0_12_6"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2661,6 +2664,7 @@ self: super: { "doctest-discover" = dontDistribute super."doctest-discover"; "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"; @@ -2695,6 +2699,7 @@ self: super: { "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"; @@ -2965,6 +2970,7 @@ self: super: { "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"; @@ -3776,6 +3782,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3850,6 +3857,7 @@ self: super: { "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"; @@ -5566,6 +5574,7 @@ self: super: { "monadloc-pp" = dontDistribute super."monadloc-pp"; "monadplus" = dontDistribute super."monadplus"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6403,6 +6412,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "protobuf-native" = dontDistribute super."protobuf-native"; "protobuf-simple" = dontDistribute super."protobuf-simple"; "protocol-buffers" = doDistribute super."protocol-buffers_2_1_12"; @@ -6868,6 +6878,7 @@ self: super: { "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"; "sandman" = doDistribute super."sandman_0_2_0_0"; "sarasvati" = dontDistribute super."sarasvati"; @@ -7071,6 +7082,7 @@ self: super: { "shell-pipe" = dontDistribute super."shell-pipe"; "shellish" = dontDistribute super."shellish"; "shellmate" = dontDistribute super."shellmate"; + "shellmate-extras" = dontDistribute super."shellmate-extras"; "shelly" = doDistribute super."shelly_1_6_5"; "shelly-extra" = dontDistribute super."shelly-extra"; "shine" = dontDistribute super."shine"; @@ -7423,6 +7435,7 @@ self: super: { "stratosphere" = dontDistribute super."stratosphere"; "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"; @@ -7585,6 +7598,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7600,6 +7615,7 @@ self: super: { "taskpool" = dontDistribute super."taskpool"; "tasty" = doDistribute super."tasty_0_11_0_2"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_2_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hspec" = doDistribute super."tasty-hspec_1_1_2"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; @@ -8302,6 +8318,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -8525,6 +8542,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.0.nix b/pkgs/development/haskell-modules/configuration-lts-6.0.nix index 682434925c6e..c70cc7798a78 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.0.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.0.nix @@ -1032,6 +1032,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1770,6 +1771,7 @@ self: super: { "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"; @@ -1917,9 +1919,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2453,6 +2459,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2507,12 +2514,14 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = doDistribute super."distributed-process_0_6_1"; "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-tests" = doDistribute super."distributed-process-tests_0_4_5"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; @@ -2530,6 +2539,7 @@ self: super: { "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"; @@ -2561,6 +2571,7 @@ self: super: { "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"; @@ -2817,6 +2828,7 @@ self: super: { "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"; @@ -3597,6 +3609,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3672,6 +3685,7 @@ self: super: { "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"; @@ -4669,6 +4683,7 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5284,6 +5299,7 @@ self: super: { "monadlist" = dontDistribute super."monadlist"; "monadloc-pp" = dontDistribute super."monadloc-pp"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6075,6 +6091,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "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"; @@ -6507,6 +6524,7 @@ self: super: { "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"; @@ -6691,6 +6709,7 @@ self: super: { "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"; @@ -7025,6 +7044,7 @@ self: super: { "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"; @@ -7175,6 +7195,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7187,6 +7209,7 @@ self: super: { "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; "tasty-dejafu" = doDistribute super."tasty-dejafu_0_3_0_0"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7838,6 +7861,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -7957,6 +7981,8 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; + "xlsx-tabular" = doDistribute super."xlsx-tabular_0_1_0_0"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -8049,6 +8075,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8100,6 +8127,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.1.nix b/pkgs/development/haskell-modules/configuration-lts-6.1.nix index 61bd2d470297..4641909e7357 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.1.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.1.nix @@ -1029,6 +1029,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1760,6 +1761,7 @@ self: super: { "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"; @@ -1904,9 +1906,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2438,6 +2444,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2492,12 +2499,14 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = doDistribute super."distributed-process_0_6_1"; "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-tests" = doDistribute super."distributed-process-tests_0_4_5"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distributed-static" = doDistribute super."distributed-static_0_3_4_0"; "distribution" = dontDistribute super."distribution"; @@ -2515,6 +2524,7 @@ self: super: { "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"; @@ -2546,6 +2556,7 @@ self: super: { "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"; @@ -2795,6 +2806,7 @@ self: super: { "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"; @@ -3566,6 +3578,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3641,6 +3654,7 @@ self: super: { "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"; @@ -4629,6 +4643,7 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5237,6 +5252,7 @@ self: super: { "monadlist" = dontDistribute super."monadlist"; "monadloc-pp" = dontDistribute super."monadloc-pp"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -6014,6 +6030,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "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"; @@ -6443,6 +6460,7 @@ self: super: { "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"; @@ -6626,6 +6644,7 @@ self: super: { "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"; @@ -6959,6 +6978,7 @@ self: super: { "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"; @@ -7109,6 +7129,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -7120,6 +7142,7 @@ self: super: { "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7764,6 +7787,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -7880,6 +7904,8 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; + "xlsx-tabular" = doDistribute super."xlsx-tabular_0_1_0_0"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7972,6 +7998,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -8022,6 +8049,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/configuration-lts-6.2.nix b/pkgs/development/haskell-modules/configuration-lts-6.2.nix index 3c1ffa099337..fce15326d9fc 100644 --- a/pkgs/development/haskell-modules/configuration-lts-6.2.nix +++ b/pkgs/development/haskell-modules/configuration-lts-6.2.nix @@ -1022,6 +1022,7 @@ self: super: { "accelerate-utility" = dontDistribute super."accelerate-utility"; "accentuateus" = dontDistribute super."accentuateus"; "access-time" = dontDistribute super."access-time"; + "acid-state" = doDistribute super."acid-state_0_14_0"; "acid-state-dist" = dontDistribute super."acid-state-dist"; "acid-state-tls" = dontDistribute super."acid-state-tls"; "acl2" = dontDistribute super."acl2"; @@ -1677,6 +1678,7 @@ self: super: { "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"; @@ -1821,9 +1823,13 @@ self: super: { "clarifai" = dontDistribute super."clarifai"; "clash" = dontDistribute super."clash"; "clash-ghc" = doDistribute super."clash-ghc_0_6_17"; + "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-vhdl" = doDistribute super."clash-vhdl_0_6_11"; "classify" = dontDistribute super."classify"; "classy-parallel" = dontDistribute super."classy-parallel"; + "clckwrks" = doDistribute super."clckwrks_0_23_14"; "clckwrks-dot-com" = dontDistribute super."clckwrks-dot-com"; "clckwrks-plugin-bugs" = dontDistribute super."clckwrks-plugin-bugs"; "clckwrks-plugin-ircbot" = dontDistribute super."clckwrks-plugin-ircbot"; @@ -2351,6 +2357,7 @@ self: super: { "diagrams-pandoc" = dontDistribute super."diagrams-pandoc"; "diagrams-pdf" = dontDistribute super."diagrams-pdf"; "diagrams-pgf" = dontDistribute super."diagrams-pgf"; + "diagrams-postscript" = doDistribute super."diagrams-postscript_1_3_0_5"; "diagrams-qrcode" = dontDistribute super."diagrams-qrcode"; "diagrams-rasterific" = doDistribute super."diagrams-rasterific_1_3_1_6"; "diagrams-reflex" = dontDistribute super."diagrams-reflex"; @@ -2405,12 +2412,14 @@ self: super: { "disjoint-set" = dontDistribute super."disjoint-set"; "disjoint-sets-st" = dontDistribute super."disjoint-sets-st"; "dist-upload" = dontDistribute super."dist-upload"; + "distributed-process" = doDistribute super."distributed-process_0_6_1"; "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-tests" = doDistribute super."distributed-process-tests_0_4_5"; "distributed-process-zookeeper" = dontDistribute super."distributed-process-zookeeper"; "distribution" = dontDistribute super."distribution"; "distribution-plot" = dontDistribute super."distribution-plot"; @@ -2427,6 +2436,7 @@ self: super: { "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"; @@ -2458,6 +2468,7 @@ self: super: { "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"; @@ -2705,6 +2716,7 @@ self: super: { "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"; @@ -3469,6 +3481,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_1"; "happstack-contrib" = dontDistribute super."happstack-contrib"; "happstack-data" = dontDistribute super."happstack-data"; "happstack-dlg" = dontDistribute super."happstack-dlg"; @@ -3544,6 +3557,7 @@ self: super: { "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"; @@ -4525,6 +4539,7 @@ self: super: { "kansas-lava-shake" = dontDistribute super."kansas-lava-shake"; "karakuri" = dontDistribute super."karakuri"; "karver" = dontDistribute super."karver"; + "katip-elasticsearch" = doDistribute super."katip-elasticsearch_0_2_0_0"; "katt" = dontDistribute super."katt"; "kazura-queue" = dontDistribute super."kazura-queue"; "kbq-gu" = dontDistribute super."kbq-gu"; @@ -5131,6 +5146,7 @@ self: super: { "monadlist" = dontDistribute super."monadlist"; "monadloc-pp" = dontDistribute super."monadloc-pp"; "monads-fd" = dontDistribute super."monads-fd"; + "monads-tf" = doDistribute super."monads-tf_0_1_0_2"; "monadtransform" = dontDistribute super."monadtransform"; "monarch" = dontDistribute super."monarch"; "mondo" = dontDistribute super."mondo"; @@ -5900,6 +5916,7 @@ self: super: { "props" = dontDistribute super."props"; "prosper" = dontDistribute super."prosper"; "proteaaudio" = dontDistribute super."proteaaudio"; + "protobuf" = doDistribute super."protobuf_0_2_1_0"; "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"; @@ -6323,6 +6340,7 @@ self: super: { "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"; @@ -6505,6 +6523,7 @@ self: super: { "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"; @@ -6771,6 +6790,7 @@ self: super: { "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"; "standalone-derive-topdown" = dontDistribute super."standalone-derive-topdown"; "standalone-haddock" = dontDistribute super."standalone-haddock"; "star-to-star" = dontDistribute super."star-to-star"; @@ -6835,6 +6855,7 @@ self: super: { "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"; @@ -6982,6 +7003,8 @@ self: super: { "tagsoup-ht" = dontDistribute super."tagsoup-ht"; "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"; @@ -6993,6 +7016,7 @@ self: super: { "task" = dontDistribute super."task"; "task-distribution" = dontDistribute super."task-distribution"; "taskpool" = dontDistribute super."taskpool"; + "tasty-expected-failure" = doDistribute super."tasty-expected-failure_0_11_0_3"; "tasty-groundhog-converters" = dontDistribute super."tasty-groundhog-converters"; "tasty-hunit-adapter" = dontDistribute super."tasty-hunit-adapter"; "tasty-integrate" = dontDistribute super."tasty-integrate"; @@ -7309,6 +7333,7 @@ self: super: { "twitch" = dontDistribute super."twitch"; "twitter" = dontDistribute super."twitter"; "twitter-enumerator" = dontDistribute super."twitter-enumerator"; + "twitter-feed" = doDistribute super."twitter-feed_0_2_0_6"; "tx" = dontDistribute super."tx"; "txt-sushi" = dontDistribute super."txt-sushi"; "txt2rtf" = dontDistribute super."txt2rtf"; @@ -7633,6 +7658,7 @@ self: super: { "web-inv-route" = dontDistribute super."web-inv-route"; "web-mongrel2" = dontDistribute super."web-mongrel2"; "web-page" = dontDistribute super."web-page"; + "web-routes-boomerang" = doDistribute super."web-routes-boomerang_0_28_4"; "web-routes-mtl" = dontDistribute super."web-routes-mtl"; "web-routes-quasi" = dontDistribute super."web-routes-quasi"; "web-routes-regular" = dontDistribute super."web-routes-regular"; @@ -7746,6 +7772,8 @@ self: super: { "xinput-conduit" = dontDistribute super."xinput-conduit"; "xkbcommon" = dontDistribute super."xkbcommon"; "xkcd" = dontDistribute super."xkcd"; + "xlsx" = doDistribute super."xlsx_0_2_1_2"; + "xlsx-tabular" = doDistribute super."xlsx-tabular_0_1_0_0"; "xlsx-templater" = dontDistribute super."xlsx-templater"; "xml-basic" = dontDistribute super."xml-basic"; "xml-catalog" = dontDistribute super."xml-catalog"; @@ -7837,6 +7865,7 @@ self: super: { "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_8"; "yesod-auth-pam" = dontDistribute super."yesod-auth-pam"; "yesod-auth-smbclient" = dontDistribute super."yesod-auth-smbclient"; "yesod-auth-zendesk" = dontDistribute super."yesod-auth-zendesk"; @@ -7887,6 +7916,7 @@ self: super: { "yesod-worker" = dontDistribute super."yesod-worker"; "yet-another-logger" = dontDistribute super."yet-another-logger"; "yhccore" = dontDistribute super."yhccore"; + "yi" = doDistribute super."yi_0_12_5"; "yi-contrib" = dontDistribute super."yi-contrib"; "yi-emacs-colours" = dontDistribute super."yi-emacs-colours"; "yi-gtk" = dontDistribute super."yi-gtk"; diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index a95a33cc8409..99a406095109 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -849,7 +849,7 @@ self: { executableToolDepends = [ emacs ]; jailbreak = true; postInstall = '' - files=($out/share/*-ghc-*/Agda-*/lib/prim/Agda/{Primitive.agda,Builtin/*.agda}) + files=("$out/share/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/{Primitive.agda,Builtin/"*.agda}) for f in "''${files[@]}" ; do $out/bin/agda $f done @@ -11316,6 +11316,7 @@ self: { sha256 = "4e0951e1b26587ee46fe56b91e75e3d878afc3f87deecbdb2b6254b23d21d840"; libraryHaskellDepends = [ base mtl process strict ]; testHaskellDepends = [ base tasty tasty-hunit ]; + doCheck = false; homepage = "https://github.com/jetho/Hclip"; description = "A small cross-platform library for reading and modifying the system clipboard"; license = stdenv.lib.licenses.bsd3; @@ -18806,18 +18807,19 @@ self: { }) {}; "SciFlow" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , fgl, graphviz, lens, mtl, optparse-applicative, shelly, split + ({ mkDerivation, base, bytestring, cereal, containers, directory + , executable-path, fgl, graphviz, lens, lifted-async, mtl + , optparse-applicative, rainbow, shelly, split, sqlite-simple , template-haskell, text, th-lift, transformers, yaml }: mkDerivation { pname = "SciFlow"; - version = "0.4.1"; - sha256 = "5e517ebe5bd29ce80606d7011a898bbcfb8f5538c5b888755ba7567405b7230c"; + version = "0.5.1"; + sha256 = "bbd6d78dae17138dcd6e9849c156402bf1e65b71cc6bbfe3ca6bc64acc99422d"; libraryHaskellDepends = [ - base bytestring containers data-default-class fgl graphviz lens mtl - optparse-applicative shelly split template-haskell text th-lift - transformers yaml + base bytestring cereal containers directory executable-path fgl + graphviz lens lifted-async mtl optparse-applicative rainbow shelly + split sqlite-simple template-haskell text th-lift transformers yaml ]; description = "Scientific workflow management system"; license = stdenv.lib.licenses.mit; @@ -22563,8 +22565,8 @@ self: { }: mkDerivation { pname = "abnf"; - version = "0.3.0.0"; - sha256 = "b1e18758161e20ecc55c043d5751071f335eb13aac6d1ad5469e26a301bb2142"; + version = "0.3.1.0"; + sha256 = "c556b06416b432092f2d6084605a40384b4e91822b49ccc33596badd7fc2ad12"; libraryHaskellDepends = [ attoparsec base containers megaparsec text ]; @@ -23067,7 +23069,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "acid-state" = callPackage + "acid-state_0_14_0" = callPackage ({ mkDerivation, array, base, bytestring, cereal, containers , directory, extensible-exceptions, filepath, mtl, network , safecopy, stm, template-haskell, unix @@ -23089,6 +23091,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "acid-state" = callPackage + ({ mkDerivation, array, base, bytestring, cereal, containers + , directory, extensible-exceptions, filepath, mtl, network + , safecopy, stm, template-haskell, unix + }: + mkDerivation { + pname = "acid-state"; + version = "0.14.1"; + sha256 = "5ae9dde518e2aedbb1650445023ff45049541a18e8ca5e7f1a5269507c034fc2"; + libraryHaskellDepends = [ + array base bytestring cereal containers directory + extensible-exceptions filepath mtl network safecopy stm + template-haskell unix + ]; + homepage = "http://acid-state.seize.it/"; + description = "Add ACID guarantees to any serializable Haskell data structure"; + license = stdenv.lib.licenses.publicDomain; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "acid-state-dist" = callPackage ({ mkDerivation, acid-state, base, bytestring, cereal , concurrent-extra, containers, directory, filepath, mtl, random @@ -33461,13 +33483,13 @@ self: { }) {}; "ansigraph" = callPackage - ({ mkDerivation, ansi-terminal, base }: + ({ mkDerivation, ansi-terminal, base, hspec, QuickCheck }: mkDerivation { pname = "ansigraph"; - version = "0.1.0.0"; - sha256 = "ba653a0c6fe36488714fce8a77e553b1c3cadbcbd5e6c6fe53449f25bdae8a40"; + version = "0.2.0.0"; + sha256 = "3ded8cb86e659854a051328982c4b3f3527c409c5bbeb37383d717685e76ca43"; libraryHaskellDepends = [ ansi-terminal base ]; - jailbreak = true; + testHaskellDepends = [ base hspec QuickCheck ]; homepage = "https://github.com/BlackBrane/ansigraph"; description = "Terminal-based graphing via ANSI and Unicode"; license = stdenv.lib.licenses.mit; @@ -35774,8 +35796,8 @@ self: { }: mkDerivation { pname = "ascii-table"; - version = "0.2.0.0"; - sha256 = "8ece1383cf232164eb6d9be16160dbea71dff611fa849a7378353ddf00cae230"; + version = "0.3.0.0"; + sha256 = "c9e548aafcdc778811230075f65050edab27627140ac5c3102db779ea927998e"; libraryHaskellDepends = [ aeson base containers dlist hashable text unordered-containers vector wl-pprint-extras @@ -41355,7 +41377,6 @@ self: { testHaskellDepends = [ base hspec QuickCheck transformers transformers-compat ]; - doHaddock = false; homepage = "http://github.com/ekmett/bifunctors/"; description = "Bifunctors"; license = stdenv.lib.licenses.bsd3; @@ -43328,8 +43349,8 @@ self: { }: mkDerivation { pname = "biohazard"; - version = "0.6.6"; - sha256 = "9e558ad4a3a37de20ebf28bf7c08160884e70898050527113eab136d8fc5a167"; + version = "0.6.6.1"; + sha256 = "ad458331686a5a0ac2ace70d63ddccd3cbd76aba2da6c4a38b8b70540789e28f"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -43651,8 +43672,8 @@ self: { }: mkDerivation { pname = "bitcoin-payment-channel"; - version = "0.1.1.1"; - sha256 = "acb7cbcd418a416a2b4a5fc180b5c3a27a5d5d4d9a4b64b953ebe4e6e057891e"; + version = "0.1.1.2"; + sha256 = "13e64ee669f4752947170940b42afdcb43aa8bcde503a967370492ff12d6f9fc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -45442,21 +45463,23 @@ self: { "bond-haskell" = callPackage ({ mkDerivation, aeson, array, base, binary, bond-haskell-compiler - , bytestring, containers, either, extra, filepath, hashable, mtl - , scientific, tasty, tasty-golden, tasty-hunit, tasty-quickcheck - , text, unordered-containers, vector + , bytestring, containers, deepseq, either, extra, filepath + , hashable, mtl, scientific, tasty, tasty-golden, tasty-hunit + , tasty-quickcheck, text, unordered-containers, vector }: mkDerivation { pname = "bond-haskell"; - version = "0.1.2.0"; - sha256 = "edfdb9fe245a634b06d2cd309d334192043114145a0117d07a8bc55bfbbcfcf5"; + version = "0.1.3.0"; + sha256 = "37b7dc9229b423772bd44d796aae5cd50daedfe745deaf3fdd6d75139ac4b341"; libraryHaskellDepends = [ aeson array base binary bond-haskell-compiler bytestring containers - extra hashable mtl scientific text unordered-containers vector + deepseq extra hashable mtl scientific text unordered-containers + vector ]; testHaskellDepends = [ - aeson base bytestring containers either filepath mtl tasty + aeson base bytestring containers deepseq either filepath mtl tasty tasty-golden tasty-hunit tasty-quickcheck unordered-containers + vector ]; homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Runtime support for BOND serialization"; @@ -45470,8 +45493,8 @@ self: { }: mkDerivation { pname = "bond-haskell-compiler"; - version = "0.1.2.0"; - sha256 = "faa936e9a89dbf42919746b13fb9b1b0731d36201b5f36dd0c092a2b1942c7bc"; + version = "0.1.3.0"; + sha256 = "be3887eb0404614cff445b99c943788d1556337552fcc099587a9bfdc833a4f7"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base bond filepath haskell-src-exts ]; @@ -45479,7 +45502,6 @@ self: { aeson base bond bytestring cmdargs directory filepath monad-loops ]; testHaskellDepends = [ base ]; - jailbreak = true; homepage = "http://github.com/rblaze/bond-haskell#readme"; description = "Bond code generator for Haskell"; license = stdenv.lib.licenses.bsd3; @@ -46994,8 +47016,8 @@ self: { }: mkDerivation { pname = "byline"; - version = "0.2.1.0"; - sha256 = "dd464d3b9afb9e74fd2ed72e44f9fc74bcd59abf870184ee2a4ed2512e2b75c4"; + version = "0.2.2.0"; + sha256 = "f1a00142d77643a3da1ddabf9d9f1308e7ee1d8ea758d8161ed118a3d7c4123a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -49886,6 +49908,23 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {cabocha = null;}; + "cache" = callPackage + ({ mkDerivation, base, clock, hashable, hspec, stm, transformers + , unordered-containers + }: + mkDerivation { + pname = "cache"; + version = "0.1.0.0"; + sha256 = "149ee40a6452297c61bfba2aa2ee9d7c18cf1a3d51f59cf1a8765d6dddb0fbd0"; + libraryHaskellDepends = [ + base clock hashable stm transformers unordered-containers + ]; + testHaskellDepends = [ base clock hspec stm transformers ]; + homepage = "https://github.com/hverr/haskell-cache"; + description = "An in-memory key/value store with expiration support"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "cached-io" = callPackage ({ mkDerivation, base, stm, time }: mkDerivation { @@ -50838,8 +50877,8 @@ self: { }: mkDerivation { pname = "casadi-bindings"; - version = "3.0.0.1"; - sha256 = "87ad635f973a69820c4238ba634f8c4f9ece450d994b4c31f83a8cbcf2a791cc"; + version = "3.0.0.3"; + sha256 = "39eee803fda99b785de6f162467f75941ee62048ae4edebb0932540ade80febf"; libraryHaskellDepends = [ base binary casadi-bindings-core casadi-bindings-internal cereal containers linear spatial-math vector vector-binary-instances @@ -53068,8 +53107,8 @@ self: { }: mkDerivation { pname = "chorale"; - version = "0.1.5"; - sha256 = "cff064b97b28d61dc0a982c8a4c7cf8a7c527a099b29b0e01c8c2fb6dc08f681"; + version = "0.1.7"; + sha256 = "5c7ae9e2ee593295ae158046ceef0c3c5868bc5c890eb1f6e2e4be511e251e5d"; libraryHaskellDepends = [ base containers safe ]; testHaskellDepends = [ base containers HUnit ieee754 QuickCheck safe test-framework @@ -54249,8 +54288,10 @@ self: { }: mkDerivation { pname = "clash-ghc"; - version = "0.6.18"; - sha256 = "d44967cbf7633d53e9152f62511782ae2feebc23a109ee818c05d3ae5924b737"; + version = "0.6.19"; + sha256 = "35aa6bfec8dba42d40b44fd75703fcee4d4927c3e530d2f803e01405ab8b789b"; + revision = "1"; + editedCabalFile = "333860d4a5deff8eb95a1fec544a29c86ac3db879e80f4341796f5227d89c55a"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -54501,7 +54542,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-lib" = callPackage + "clash-lib_0_6_15" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -54521,9 +54562,10 @@ 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_0_6_16" = callPackage + "clash-lib" = callPackage ({ mkDerivation, aeson, attoparsec, base, bytestring, clash-prelude , concurrent-supply, containers, deepseq, directory, errors, fgl , filepath, hashable, lens, mtl, pretty, process, template-haskell @@ -54534,13 +54576,36 @@ self: { pname = "clash-lib"; version = "0.6.16"; sha256 = "f2da35653db0ef4834ccd97f403084d0e0d706a59070547922ff7f34f739fb0a"; + revision = "1"; + editedCabalFile = "02a7623d96f27553486c2b3df4a4ff15e4c2f96c4fe5c82ff462bf3b35cc0d16"; + libraryHaskellDepends = [ + aeson attoparsec base bytestring clash-prelude concurrent-supply + containers deepseq directory errors fgl filepath 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-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 + , text, time, transformers, unbound-generics, unordered-containers + , uu-parsinglib, wl-pprint-text + }: + mkDerivation { + pname = "clash-lib"; + version = "0.6.17"; + sha256 = "b6a036da95283f66f9dc6c0b2c0ae11845384a2c01a8b38b9c223771b0cbb179"; libraryHaskellDepends = [ aeson attoparsec base bytestring clash-prelude concurrent-supply containers deepseq directory errors fgl filepath hashable lens mtl pretty process template-haskell text time transformers unbound-generics unordered-containers uu-parsinglib wl-pprint-text ]; - jailbreak = true; homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - As a Library"; license = stdenv.lib.licenses.bsd2; @@ -54657,7 +54722,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-prelude" = callPackage + "clash-prelude_0_10_7" = callPackage ({ mkDerivation, array, base, data-default, doctest, ghc-prim , ghc-typelits-extra, ghc-typelits-natnormalise, integer-gmp, lens , QuickCheck, reflection, singletons, template-haskell @@ -54672,13 +54737,13 @@ self: { singletons template-haskell ]; testHaskellDepends = [ base doctest ]; - doCheck = false; 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_0_10_8" = callPackage + "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 @@ -54693,6 +54758,29 @@ self: { singletons template-haskell ]; testHaskellDepends = [ base doctest ]; + doCheck = false; + homepage = "http://www.clash-lang.org/"; + description = "CAES Language for Synchronous Hardware - Prelude library"; + license = stdenv.lib.licenses.bsd2; + }) {}; + + "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 + }: + mkDerivation { + pname = "clash-prelude"; + version = "0.10.9"; + sha256 = "4a96fa9222427df9b515c343d0db6f53441c710141a09a344ee47ab30ebacee1"; + revision = "1"; + editedCabalFile = "60f4e89dd73b84c4798fc7fd7f52d58afd7eb3069b5d41994fb3d43be4eb40f5"; + libraryHaskellDepends = [ + array base data-default ghc-prim ghc-typelits-extra + ghc-typelits-natnormalise integer-gmp lens QuickCheck reflection + 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; @@ -54846,6 +54934,8 @@ self: { pname = "clash-systemverilog"; version = "0.6.6"; sha256 = "89afc5fb0ed8abc66412ee28a01742be14f08b11f976dd2a9efb357ae4d8840a"; + revision = "1"; + editedCabalFile = "6766cfda0bfaebd8f39b54491e1af8be77516e43923b49826c9b515fcc1d540b"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -54989,6 +55079,8 @@ self: { pname = "clash-verilog"; version = "0.6.6"; sha256 = "8dda7b2d72f849016fc32f563efcf59d22efc68d29f2eb2f3c8b7338701bb844"; + revision = "1"; + editedCabalFile = "d387b5796b663d97383a199d470690c93513fd4cc7e6c4a24b17c26204693c9e"; libraryHaskellDepends = [ base clash-lib clash-prelude fgl lens mtl text unordered-containers wl-pprint-text @@ -55178,7 +55270,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "clash-vhdl" = callPackage + "clash-vhdl_0_6_11" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -55193,9 +55285,10 @@ 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_0_6_12" = callPackage + "clash-vhdl" = callPackage ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl , text, unordered-containers, wl-pprint-text }: @@ -55210,6 +55303,23 @@ self: { homepage = "http://www.clash-lang.org/"; description = "CAES Language for Synchronous Hardware - VHDL backend"; license = stdenv.lib.licenses.bsd2; + }) {}; + + "clash-vhdl_0_6_13" = callPackage + ({ mkDerivation, base, clash-lib, clash-prelude, fgl, lens, mtl + , text, unordered-containers, wl-pprint-text + }: + mkDerivation { + pname = "clash-vhdl"; + version = "0.6.13"; + sha256 = "77a702328472782f1cc878f12220a7fdacc032decd28f42e630d6e04c8b36825"; + 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; hydraPlatforms = stdenv.lib.platforms.none; }) {}; @@ -56164,7 +56274,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {inherit (pkgs) openssl;}; - "clckwrks" = callPackage + "clckwrks_0_23_14" = callPackage ({ mkDerivation, acid-state, aeson, aeson-qq, attoparsec, base , blaze-html, bytestring, cereal, containers, directory, filepath , happstack-authenticate, happstack-hsp, happstack-jmacro @@ -56199,6 +56309,40 @@ self: { 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, tagsoup, 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.15"; + sha256 = "ef2959ed07b4123815536ee9eb98a91d93570717a5efb159ac1343b2072e7872"; + 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 tagsoup 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; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) openssl;}; + "clckwrks-cli" = callPackage ({ mkDerivation, acid-state, base, clckwrks, haskeline, mtl , network, parsec @@ -66269,6 +66413,7 @@ self: { HUnit mtl QuickCheck shelly split test-framework test-framework-hunit test-framework-quickcheck2 text zip-archive ]; + jailbreak = true; doCheck = false; postInstall = '' mkdir -p $out/etc/bash_completion.d @@ -72426,14 +72571,13 @@ self: { }: mkDerivation { pname = "diagrams-pgf"; - version = "0.1.0.3"; - sha256 = "15148b7e985025fcee125086c13610de1b927b7c4dfcf5d8e6674f6844290641"; + version = "0.1.0.4"; + sha256 = "106f0401b97fe6d14572fd964bf97d400277bf44e9af19f3711e4fa14a4fb85a"; libraryHaskellDepends = [ base bytestring bytestring-builder colour containers diagrams-core diagrams-lib directory filepath hashable JuicyPixels mtl optparse-applicative process split texrunner time vector zlib ]; - jailbreak = true; homepage = "http://github.com/cchalmers/diagrams-pgf"; description = "PGF backend for diagrams drawing EDSL"; license = stdenv.lib.licenses.bsd3; @@ -72566,7 +72710,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "diagrams-postscript" = callPackage + "diagrams-postscript_1_3_0_5" = callPackage ({ mkDerivation, base, containers, data-default-class , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens , monoid-extras, mtl, semigroups, split, statestack @@ -72587,6 +72731,26 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "diagrams-postscript" = callPackage + ({ mkDerivation, base, containers, data-default-class + , diagrams-core, diagrams-lib, dlist, filepath, hashable, lens + , monoid-extras, mtl, semigroups, split, statestack + }: + mkDerivation { + pname = "diagrams-postscript"; + version = "1.3.0.6"; + sha256 = "713301a1febb383287349c1a317855add01812ea12ea680a8b4a86967d935093"; + libraryHaskellDepends = [ + base containers data-default-class diagrams-core diagrams-lib dlist + filepath hashable lens monoid-extras mtl semigroups split + statestack + ]; + homepage = "http://projects.haskell.org/diagrams/"; + description = "Postscript backend for diagrams drawing EDSL"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "diagrams-qrcode" = callPackage ({ mkDerivation, array, base, colour, diagrams-core, diagrams-lib }: @@ -74469,7 +74633,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "distributed-process" = callPackage + "distributed-process_0_6_1" = callPackage ({ mkDerivation, base, binary, bytestring, containers , data-accessor, deepseq, distributed-static, exceptions, ghc-prim , hashable, mtl, network-transport, random, rank1dynamic, stm, syb @@ -74493,6 +74657,27 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "distributed-process" = callPackage + ({ mkDerivation, base, binary, bytestring, containers + , data-accessor, deepseq, distributed-static, exceptions, hashable + , mtl, network-transport, random, rank1dynamic, stm, syb, time + , transformers + }: + mkDerivation { + pname = "distributed-process"; + version = "0.6.2"; + sha256 = "ea3a29d9fa80d273807012c79f6af05e6c4022d29c5be1ef113fe335526a1fe9"; + libraryHaskellDepends = [ + base binary bytestring containers data-accessor deepseq + distributed-static exceptions hashable mtl network-transport random + rank1dynamic stm syb time transformers + ]; + homepage = "http://haskell-distributed.github.com/"; + description = "Cloud Haskell: Erlang-style concurrency in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "distributed-process-async_0_2_1" = callPackage ({ mkDerivation, ansi-terminal, base, binary, containers , data-accessor, deepseq, distributed-process @@ -75147,7 +75332,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "distributed-process-tests" = callPackage + "distributed-process-tests_0_4_5" = callPackage ({ mkDerivation, ansi-terminal, base, binary, bytestring , distributed-process, distributed-static, HUnit, network , network-transport, network-transport-inmemory, random, rematch @@ -75173,6 +75358,31 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; + "distributed-process-tests" = callPackage + ({ mkDerivation, ansi-terminal, base, binary, bytestring + , distributed-process, distributed-static, HUnit, network + , network-transport, network-transport-inmemory, random, rematch + , setenv, stm, test-framework, test-framework-hunit + }: + mkDerivation { + pname = "distributed-process-tests"; + version = "0.4.6"; + sha256 = "ba64f41f3e5a5ebd14a9a8e7c4114ea988b1554a80310c528c464746dcd6bf53"; + libraryHaskellDepends = [ + ansi-terminal base binary bytestring distributed-process + distributed-static HUnit network network-transport random rematch + setenv stm test-framework test-framework-hunit + ]; + testHaskellDepends = [ + base network network-transport network-transport-inmemory + test-framework + ]; + homepage = "http://github.com/haskell-distributed/distributed-process/tree/master/distributed-process-tests"; + description = "Tests and test support tools for distributed-process"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "distributed-process-zookeeper" = callPackage ({ mkDerivation, base, binary, bytestring, containers, deepseq , distributed-process, distributed-process-monad-control @@ -76197,6 +76407,34 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "docvim" = callPackage + ({ mkDerivation, base, bytestring, containers, deepseq, directory + , dlist, filepath, hlint, lens, mtl, optparse-applicative, parsec + , pretty-show, process, split, tasty, tasty-golden, tasty-hunit + , temporary + }: + mkDerivation { + pname = "docvim"; + version = "0.2.0.0"; + sha256 = "3c9ad07ffa3c6e4d0a5352df82975027ea83206b1066f4026729cf620bc8c71d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base containers directory dlist filepath lens mtl + optparse-applicative parsec pretty-show split + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base bytestring containers deepseq dlist filepath hlint lens mtl + parsec pretty-show process split tasty tasty-golden tasty-hunit + temporary + ]; + jailbreak = true; + homepage = "https://github.com/wincent/docvim"; + description = "Documentation generator for Vim plug-ins"; + license = stdenv.lib.licenses.mit; + }) {}; + "dom-lt" = callPackage ({ mkDerivation, array, base, containers }: mkDerivation { @@ -76913,6 +77151,18 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "drmaa" = callPackage + ({ mkDerivation, base, drmaa, inline-c, shelly, text }: + mkDerivation { + pname = "drmaa"; + version = "0.1.0.1"; + sha256 = "5cb530e4c7f8cde9e8b4520ef116a44e9c5cde8191ad7f91964ca270c69ae1e7"; + libraryHaskellDepends = [ base inline-c shelly text ]; + librarySystemDepends = [ drmaa ]; + description = "A simple Haskell bindings to DRMAA C library"; + license = stdenv.lib.licenses.bsd3; + }) {drmaa = null;}; + "dropbox-sdk" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive , certificate, conduit, HTTP, http-conduit, http-types, json @@ -85038,6 +85288,34 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "fbmessenger-api" = callPackage + ({ mkDerivation, aeson, base, bytestring, case-insensitive + , filepath, hspec, http-client, http-client-tls, http-media + , http-types, mime-types, servant, servant-client, servant-server + , stm, string-conversions, text, transformers, unordered-containers + , warp + }: + mkDerivation { + pname = "fbmessenger-api"; + version = "0.1.0.2"; + sha256 = "006c0f782b5e66e0c9198def481730ec6aa70ba3a5005ea409d3febeb8fb98de"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson base bytestring case-insensitive http-client http-media + http-types mime-types servant servant-client string-conversions + text transformers unordered-containers + ]; + executableHaskellDepends = [ + aeson base http-client http-client-tls servant servant-server stm + text transformers warp + ]; + testHaskellDepends = [ aeson base bytestring filepath hspec text ]; + homepage = "https://github.com/mseri/fbmessenger-api-hs#readme"; + description = "High-level bindings to Facebook Messenger Platform API"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "fca" = callPackage ({ mkDerivation, base, bytestring, containers, cryptohash, hashable , text, unordered-containers @@ -92992,8 +93270,8 @@ self: { }: mkDerivation { pname = "ghc-heap-view"; - version = "0.5.6"; - sha256 = "002d2b39ab510e04e8a0852f42fd7c8dd81529ce395adabb00fefcfdc19d30bf"; + version = "0.5.7"; + sha256 = "4b6cbb42c256987e55b5d6136f4c7efb560a5ea1fd34d4878dcec1fe9aa71524"; libraryHaskellDepends = [ base binary bytestring containers ghc template-haskell transformers ]; @@ -95175,8 +95453,8 @@ self: { }: mkDerivation { pname = "gipeda"; - version = "0.3"; - sha256 = "8d3069ed3b75118cc420a0f5abe546cb4ec1d10d7ecb4c1b80e6b47eb944d7b6"; + version = "0.3.0.1"; + sha256 = "09cf582109f33e6946a7bbac3d9c123a9323cb2af18df207d65413c74b770ce8"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -95185,7 +95463,6 @@ self: { scientific shake split tagged text transformers unordered-containers vector yaml ]; - jailbreak = true; homepage = "https://github.com/nomeata/gipeda"; description = "Git Performance Dashboard"; license = stdenv.lib.licenses.mit; @@ -103841,8 +104118,8 @@ self: { }: mkDerivation { pname = "hackage-security"; - version = "0.5.1.0"; - sha256 = "5b2effb1e342f00c57db0b1390c46f9c6142e8039bb062ddab589ba438c88eba"; + version = "0.5.2.1"; + sha256 = "f80daf98372df883b09cc44a83503a0ffb3d4ac076ae4267c988ba5aafc9b7ba"; libraryHaskellDepends = [ base base16-bytestring base64-bytestring bytestring Cabal containers cryptohash-sha256 directory ed25519 filepath ghc-prim @@ -103859,37 +104136,6 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "hackage-security_0_5_2_0" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, HUnit, mtl, network, network-uri - , parsec, pretty, QuickCheck, tar, tasty, tasty-hunit - , tasty-quickcheck, template-haskell, temporary, time, transformers - , zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.2.0"; - sha256 = "767968f35dfe85934a2fd0cc6e9106799f13cdc947dd4ee4bb2725bedf8a8c54"; - revision = "1"; - editedCabalFile = "bd7fb578131a70d6cf59817a37773014d54889d137ef6c0c9faf4145f7f17e19"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - testHaskellDepends = [ - base bytestring Cabal containers HUnit network-uri QuickCheck tar - tasty tasty-hunit tasty-quickcheck temporary time zlib - ]; - jailbreak = true; - homepage = "https://github.com/well-typed/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hackage-security-HTTP" = callPackage ({ mkDerivation, base, bytestring, hackage-security, HTTP, mtl , network, network-uri, zlib @@ -104261,7 +104507,6 @@ self: { ghc ghc-boot ghc-paths haddock-library transformers xhtml ]; testHaskellDepends = [ base containers ghc hspec QuickCheck ]; - doHaddock = false; homepage = "http://www.haskell.org/haddock/"; description = "A documentation-generation tool for Haskell libraries"; license = stdenv.lib.licenses.bsd3; @@ -106276,7 +106521,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "happstack-authenticate" = callPackage + "happstack-authenticate_2_3_4_1" = callPackage ({ mkDerivation, acid-state, aeson, authenticate, base , base64-bytestring, boomerang, bytestring, containers , data-default, email-validate, filepath, happstack-hsp @@ -106307,6 +106552,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.2"; + sha256 = "53a20c001ea7aed653923c8449ab19656c967d9b892c7689d9b8b2535df8e456"; + 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 @@ -108374,6 +108649,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "haskell-fake-user-agent" = callPackage + ({ mkDerivation, base, bytestring, lens, tagsoup, wreq }: + mkDerivation { + pname = "haskell-fake-user-agent"; + version = "0.0.1"; + sha256 = "0aefb6f1d64ddc5f6e686bb20d84f899270beb5da7b7609d00e50768d3fa1c5a"; + libraryHaskellDepends = [ base bytestring lens tagsoup wreq ]; + jailbreak = true; + description = "Simple library for retrieving current user agent strings"; + license = stdenv.lib.licenses.publicDomain; + }) {}; + "haskell-formatter" = callPackage ({ mkDerivation, base, containers, directory, directory-tree , doctest, filemanip, filepath, haskell-src-exts, hlint @@ -110264,8 +110551,8 @@ self: { }: mkDerivation { pname = "haskoin-core"; - version = "0.3.0"; - sha256 = "eda63e201e25598815af84a5766a3f2aff7460af9aedc38f2e03a240ad0fce1d"; + version = "0.3.1"; + sha256 = "3257afb81053b70a4740fb483653ce23bf6d7824d2eafc4f6747dfaf2aa9f32b"; libraryHaskellDepends = [ aeson base base16-bytestring binary byteable bytestring conduit containers cryptohash deepseq either entropy largeword mtl murmur3 @@ -110322,8 +110609,8 @@ self: { }: mkDerivation { pname = "haskoin-node"; - version = "0.3.0"; - sha256 = "b44e3ad573fc68a40c585748892d6e4bf6207f1100d461ff8cab52d802a8c791"; + version = "0.3.1"; + sha256 = "224929fe22c426c9d4b6b05d7c562053efdbc11f63c63b40d3d80131152f07c1"; libraryHaskellDepends = [ aeson async base binary bytestring concurrent-extra conduit conduit-extra containers data-default deepseq either esqueleto @@ -110429,8 +110716,8 @@ self: { }: mkDerivation { pname = "haskoin-wallet"; - version = "0.3.0"; - sha256 = "9ef76ec2515a02ec65d5c89d957c596b4b5766b62c56a0ac4683606ab79917f7"; + version = "0.3.1"; + sha256 = "3b0b9e83893c11b0dd8e3ae1d1e1c64481c32f32bd12b014de4f3deae3e9382e"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -111851,8 +112138,8 @@ self: { }: mkDerivation { pname = "hatex-guide"; - version = "1.3.1.3"; - sha256 = "9ec844efda0fd5ece2fb7e0c57ac3a79a7dcf3035aac85a08c797f3ded4c17ac"; + version = "1.3.1.5"; + sha256 = "da69f3ea3b9736d69b64ab3c5fdc8b27afc0e9723c7bd1e725e9cd0f1affc34c"; libraryHaskellDepends = [ base blaze-html directory filepath HaTeX parsec text time transformers @@ -116619,6 +116906,7 @@ self: { testHaskellDepends = [ base directory exceptions extensible-exceptions filepath HUnit ]; + doCheck = false; homepage = "https://github.com/mvdan/hint"; description = "Runtime Haskell interpreter (GHC API wrapper)"; license = stdenv.lib.licenses.bsd3; @@ -121934,6 +122222,38 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "hpio_0_8_0_2" = callPackage + ({ mkDerivation, async, base, base-compat, bytestring, containers + , directory, doctest, exceptions, filepath, hlint, hspec, mtl + , mtl-compat, optparse-applicative, QuickCheck, text, transformers + , transformers-compat, unix, unix-bytestring + }: + mkDerivation { + pname = "hpio"; + version = "0.8.0.2"; + sha256 = "b7f3c775454faea34a3bef496741f5d15ff5fc8319981b61b799ec895a21dca5"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base base-compat bytestring containers directory exceptions + filepath mtl mtl-compat QuickCheck text transformers + transformers-compat unix unix-bytestring + ]; + executableHaskellDepends = [ + async base base-compat exceptions mtl mtl-compat + optparse-applicative transformers transformers-compat + ]; + testHaskellDepends = [ + async base base-compat bytestring containers directory doctest + exceptions filepath hlint hspec mtl mtl-compat QuickCheck text + transformers transformers-compat unix unix-bytestring + ]; + homepage = "https://github.com/dhess/hpio"; + description = "Monads for GPIO in Haskell"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "hplayground" = callPackage ({ mkDerivation, base, containers, data-default, haste-compiler , haste-perch, monads-tf, transformers @@ -122423,8 +122743,8 @@ self: { }: mkDerivation { pname = "hquantlib"; - version = "0.0.2.5"; - sha256 = "6063f698be72203b6d9517756098169af3e5a3d45d229ad1d88f2105979004d9"; + version = "0.0.3.0"; + sha256 = "14ef306cc8f2e45302cdfbaf0aff70f6391bce69867119427b6d9eea9ea277a6"; libraryHaskellDepends = [ base containers hmatrix hmatrix-gsl hmatrix-special mersenne-random parallel statistics time vector vector-algorithms @@ -122433,7 +122753,6 @@ self: { base HUnit QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 ]; - jailbreak = true; homepage = "http://github.com/paulrzcz/hquantlib.git"; description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; license = "LGPL"; @@ -132017,8 +132336,8 @@ self: { }: mkDerivation { pname = "hylogen"; - version = "0.1.3.1"; - sha256 = "1937f59b1b32196c898cec3c3d3e5cb95a6fdb59075d0b7e8c720c0db8a22e3c"; + version = "0.1.3.2"; + sha256 = "6f6617a9a5f5a692a0a4eaa50a9ee7540e95992dcd6d8d06c8107e39f748e193"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ base data-reify vector-space ]; @@ -132026,7 +132345,6 @@ self: { aeson base bytestring filepath fsnotify hint http-types process text wai warp websockets ]; - jailbreak = true; homepage = "https://github.com/sleexyz/hylogen"; description = "an EDSL for live-coding fragment shaders"; license = stdenv.lib.licenses.mit; @@ -134169,18 +134487,17 @@ self: { "imagemagick" = callPackage ({ mkDerivation, base, bytestring, directory, filepath, imagemagick - , lifted-base, MonadCatchIO-transformers, QuickCheck, resourcet - , tasty, tasty-hunit, text, transformers, vector + , lifted-base, QuickCheck, resourcet, tasty, tasty-hunit, text + , transformers, vector }: mkDerivation { pname = "imagemagick"; - version = "0.0.4.1"; - sha256 = "a395fa54e4aa3edca9961f062345247e925e841206c1826e58b31e255062c6ea"; + version = "0.0.4.2"; + sha256 = "1956fd48139c43e73528c358021595c1b867abb6fba8bc0334770f74d4089178"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ - base bytestring filepath MonadCatchIO-transformers resourcet text - transformers vector + base bytestring filepath resourcet text transformers vector ]; libraryPkgconfigDepends = [ imagemagick ]; executablePkgconfigDepends = [ imagemagick ]; @@ -134189,7 +134506,6 @@ self: { tasty tasty-hunit text transformers vector ]; testPkgconfigDepends = [ imagemagick ]; - jailbreak = true; description = "bindings to imagemagick library"; license = "unknown"; hydraPlatforms = [ "x86_64-darwin" "x86_64-linux" ]; @@ -135915,8 +136231,8 @@ self: { }: mkDerivation { pname = "intero"; - version = "0.1.13"; - sha256 = "4b59667057afed0e2b9557ab7eedc64597c39a3bc5e18524e4c0578a5320af87"; + version = "0.1.14"; + sha256 = "1719348eabd877c95461c5709d9033460495245212529c211046a652c7cf4b2e"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -136058,13 +136374,12 @@ self: { }: mkDerivation { pname = "interruptible"; - version = "0.1.1.0"; - sha256 = "68fbb16e5044eca8c5cd1f6a365e60ce11f8f3621dadf47f7be3a6b843c34264"; + version = "0.1.1.1"; + sha256 = "d3ef92f178d03041edc7845dd3c3ac90a3e5c6b74b5ca1bca65246ac90af1e5c"; libraryHaskellDepends = [ base either lifted-base monad-control transformers ]; testHaskellDepends = [ base Cabal either transformers ]; - jailbreak = true; homepage = "https://sealgram.com/git/haskell/interruptible/"; description = "Monad transformers that can be run and resumed later, conserving their context"; license = stdenv.lib.licenses.bsd3; @@ -141109,7 +141424,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; - "katip-elasticsearch" = callPackage + "katip-elasticsearch_0_2_0_0" = callPackage ({ mkDerivation, aeson, async, base, bloodhound, containers , enclosed-exceptions, exceptions, http-client, http-types, katip , lens, lens-aeson, quickcheck-instances, random, retry, scientific @@ -141134,6 +141449,32 @@ self: { doCheck = false; description = "ElasticSearch scribe for the Katip logging framework"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "katip-elasticsearch" = callPackage + ({ mkDerivation, aeson, async, base, bloodhound, containers + , enclosed-exceptions, exceptions, http-client, http-types, katip + , lens, lens-aeson, quickcheck-instances, retry, scientific, stm + , stm-chans, tasty, tasty-hunit, tasty-quickcheck, text, time + , transformers, unordered-containers, uuid, vector + }: + mkDerivation { + pname = "katip-elasticsearch"; + version = "0.2.1.0"; + sha256 = "e00a3d10cf1b7ed9f2f4346c59a992bc5955d1da90d4cc93f9edacc56ccce984"; + libraryHaskellDepends = [ + aeson async base bloodhound enclosed-exceptions exceptions + http-client http-types katip retry scientific stm stm-chans text + time transformers unordered-containers uuid + ]; + testHaskellDepends = [ + aeson base bloodhound containers http-client http-types katip lens + lens-aeson quickcheck-instances scientific stm tasty tasty-hunit + tasty-quickcheck text time transformers unordered-containers vector + ]; + description = "ElasticSearch scribe for the Katip logging framework"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -156788,6 +157129,24 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "microlens-platform_0_3_1_1" = callPackage + ({ mkDerivation, base, hashable, microlens, microlens-ghc + , microlens-mtl, microlens-th, text, unordered-containers, vector + }: + mkDerivation { + pname = "microlens-platform"; + version = "0.3.1.1"; + sha256 = "d8588d11159c4400cfffda7979a3beb9b259740e0ce40580183a825eab724b27"; + libraryHaskellDepends = [ + base hashable microlens microlens-ghc microlens-mtl microlens-th + text unordered-containers vector + ]; + 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 { @@ -160161,7 +160520,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "monads-tf" = callPackage + "monads-tf_0_1_0_2" = callPackage ({ mkDerivation, base, transformers }: mkDerivation { pname = "monads-tf"; @@ -160171,6 +160530,18 @@ self: { jailbreak = true; description = "Monad classes, using type families"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "monads-tf" = callPackage + ({ mkDerivation, base, transformers }: + mkDerivation { + pname = "monads-tf"; + version = "0.1.0.3"; + sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; + libraryHaskellDepends = [ base transformers ]; + description = "Monad classes, using type families"; + license = stdenv.lib.licenses.bsd3; }) {}; "monadtransform" = callPackage @@ -160801,6 +161172,18 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "monoid-extras_0_4_1" = callPackage + ({ mkDerivation, base, groups, semigroupoids, semigroups }: + mkDerivation { + pname = "monoid-extras"; + version = "0.4.1"; + sha256 = "8c50d24f25f4e10e54d719aedf72afc8d4f0d438afe9d3a757422d5cb9c2e33a"; + libraryHaskellDepends = [ base groups semigroupoids semigroups ]; + description = "Various extra monoid-related definitions and utilities"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "monoid-owns" = callPackage ({ mkDerivation, base, bytestring, containers }: mkDerivation { @@ -164640,8 +165023,8 @@ self: { }: mkDerivation { pname = "nested-routes"; - version = "7.1.0.1"; - sha256 = "92da6c57328e531072e17ea8ae5ff9bd2752fef57f74a151d263c79e30d38c80"; + version = "7.1.1"; + sha256 = "d6f8411ec298909e93abfc37748fb9579d4cc346edd4287a434f4fcd8ddccf02"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -166579,16 +166962,14 @@ self: { "neural" = callPackage ({ mkDerivation, ad, array, attoparsec, base, deepseq, directory - , doctest, filepath, ghc-typelits-natnormalise, hspec, lens + , doctest, filepath, ghc-typelits-natnormalise, Glob, hspec, lens , MonadRandom, mtl, parallel, pipes, profunctors, STMonadTrans , text, transformers, typelits-witnesses, vector }: mkDerivation { pname = "neural"; - version = "0.1.0.1"; - sha256 = "989012480140e35465b6338fc77d8646e7409277a58b60d31d3aed1a11ff1b57"; - revision = "1"; - editedCabalFile = "cad6cae5570a2d79091662e8b2be4cec5488ed88ba10e8960dbe00eef13543f8"; + version = "0.1.1.0"; + sha256 = "222ef9b9feaaf5fcd4577e60c18d9a2cf9feed9dbdbe8f63d997b9b5a7f435c6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -166597,7 +166978,7 @@ self: { text transformers typelits-witnesses vector ]; executableHaskellDepends = [ attoparsec base MonadRandom text ]; - testHaskellDepends = [ base doctest hspec MonadRandom ]; + testHaskellDepends = [ base doctest Glob hspec MonadRandom ]; jailbreak = true; homepage = "https://github.com/brunjlar/neural"; description = "Neural Networks in native Haskell"; @@ -167341,19 +167722,17 @@ self: { }) {}; "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, cereal, GLUT - , OpenGL, OpenGLRaw, spatial-math, time, vector - , vector-binary-instances + ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL + , OpenGLRaw, spatial-math, time, vector, vector-binary-instances }: mkDerivation { pname = "not-gloss"; - version = "0.7.6.5"; - sha256 = "2d035f7086cdf09542010b98881feb4aeb9e4eaddb9e3d28292d20fe3984e804"; + version = "0.7.7.0"; + sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; libraryHaskellDepends = [ - base binary bmp bytestring cereal GLUT OpenGL OpenGLRaw - spatial-math time vector vector-binary-instances + base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time + vector vector-binary-instances ]; - jailbreak = true; description = "Painless 3D graphics, no affiliation with gloss"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = stdenv.lib.platforms.none; @@ -168348,6 +168727,31 @@ self: { license = stdenv.lib.licenses.mit; }) {}; + "octane_0_7_0" = callPackage + ({ mkDerivation, aeson, autoexporter, base, bimap, binary + , binary-bits, bytestring, containers, data-binary-ieee754, deepseq + , tasty, tasty-hspec, text + }: + mkDerivation { + pname = "octane"; + version = "0.7.0"; + sha256 = "3a257d55d375d959ecb8965c0c89a1b9259eba1befd3a0736727f96dcce5657d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson autoexporter base bimap binary binary-bits bytestring + containers data-binary-ieee754 deepseq text + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base binary bytestring containers tasty tasty-hspec + ]; + homepage = "https://github.com/tfausak/octane#readme"; + description = "Parse Rocket League replays"; + license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "octohat" = callPackage ({ mkDerivation, aeson, base, base-compat, base16-bytestring , base64-bytestring, bytestring, containers, cryptohash, dotenv @@ -173029,6 +173433,23 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "parseargs_0_2_0_7" = callPackage + ({ mkDerivation, base, containers, process }: + mkDerivation { + pname = "parseargs"; + version = "0.2.0.7"; + sha256 = "900eaca47e0ddbdadf137377f1eb6b16b69eabed54ce45a4c22b176ba8ddb45d"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base containers ]; + executableHaskellDepends = [ base containers ]; + testHaskellDepends = [ base process ]; + homepage = "http://github.com/BartMassey/parseargs"; + description = "Full-featured command-line argument parsing library"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "parsec_3_1_7" = callPackage ({ mkDerivation, base, bytestring, HUnit, mtl, test-framework , test-framework-hunit, text @@ -177416,8 +177837,8 @@ self: { }: mkDerivation { pname = "pgdl"; - version = "9.3"; - sha256 = "3c759fcc0548fdbfb7d39cff40dde1bd47c16aa5ee2765fcd3716954ff04c85a"; + version = "10.0"; + sha256 = "be71f949ba02b8ef5b094527346a9a9202cf2e50f2801cac0f70aa5ee57458c3"; isLibrary = false; isExecutable = true; executableHaskellDepends = [ @@ -184811,7 +185232,7 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {inherit (pkgs) alsaLib;}; - "protobuf" = callPackage + "protobuf_0_2_1_0" = callPackage ({ mkDerivation, base, bytestring, cereal, containers , data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers @@ -184831,6 +185252,29 @@ self: { homepage = "https://github.com/alphaHeavy/protobuf"; description = "Google Protocol Buffers via GHC.Generics"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "protobuf" = callPackage + ({ mkDerivation, base, base-orphans, bytestring, cereal, containers + , data-binary-ieee754, deepseq, hex, HUnit, mtl, QuickCheck, tagged + , tasty, tasty-hunit, tasty-quickcheck, text, unordered-containers + }: + mkDerivation { + pname = "protobuf"; + version = "0.2.1.1"; + sha256 = "cd659a085b670d204c0b4ddf0cb323e4f024c9d972cf183dc14154a44d5e722c"; + libraryHaskellDepends = [ + base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl + text unordered-containers + ]; + testHaskellDepends = [ + base bytestring cereal containers hex HUnit mtl QuickCheck tagged + tasty tasty-hunit tasty-quickcheck text unordered-containers + ]; + homepage = "https://github.com/alphaHeavy/protobuf"; + description = "Google Protocol Buffers via GHC.Generics"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -188703,8 +189147,8 @@ self: { ({ mkDerivation, async, base, containers, foreign-store, stm }: mkDerivation { pname = "rapid"; - version = "0.1.0"; - sha256 = "1839228f3c617a92799f84a8337fcec6df511377bf555b79b67b47cea17d83c5"; + version = "0.1.1"; + sha256 = "f1df04a5820b77896475df4de1e3f10ecee871f8e4227809727855b8d0404825"; libraryHaskellDepends = [ async base containers foreign-store stm ]; @@ -197570,7 +198014,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "sandi" = callPackage + "sandi_0_3_6" = callPackage ({ mkDerivation, base, bytestring, conduit, exceptions, HUnit , tasty, tasty-hunit, tasty-quickcheck, tasty-th }: @@ -197586,6 +198030,26 @@ self: { homepage = "http://hackage.haskell.org/package/sandi"; description = "Data encoding library"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "sandi" = callPackage + ({ mkDerivation, base, bytestring, conduit, exceptions, HUnit + , stringsearch, tasty, tasty-hunit, tasty-quickcheck, tasty-th + }: + mkDerivation { + pname = "sandi"; + version = "0.4.0"; + sha256 = "40c895a4b26904e3a4b4488e93f37225bdb48e6787dffed627d16242f01aaeea"; + libraryHaskellDepends = [ + base bytestring conduit exceptions stringsearch + ]; + testHaskellDepends = [ + base bytestring HUnit tasty tasty-hunit tasty-quickcheck tasty-th + ]; + homepage = "http://hackage.haskell.org/package/sandi"; + description = "Data encoding library"; + license = stdenv.lib.licenses.bsd3; }) {}; "sandlib" = callPackage @@ -204911,23 +205375,38 @@ self: { }) {}; "shellmate" = callPackage - ({ mkDerivation, base, bytestring, directory, feed, filepath, HTTP - , network-uri, process, tagsoup, temporary, transformers, xml + ({ mkDerivation, base, bytestring, directory, filepath, process + , temporary, transformers }: mkDerivation { pname = "shellmate"; - version = "0.2.3"; - sha256 = "a1769617a819289400a8be95a967d8873d196aad4f696396016ea4f7f65cdf65"; + version = "0.3"; + sha256 = "6d79053eeb3bbff4cd5c35da1f9c6962e4af56efacb5383c7a5fc02312e97348"; libraryHaskellDepends = [ - base bytestring directory feed filepath HTTP network-uri process - tagsoup temporary transformers xml + base bytestring directory filepath process temporary transformers ]; jailbreak = true; - homepage = "http://github.com/valderman/shellmate"; + homepage = "https://github.com/valderman/shellmate"; description = "Simple interface for shell scripting in Haskell"; license = stdenv.lib.licenses.bsd3; }) {}; + "shellmate-extras" = callPackage + ({ mkDerivation, base, bytestring, feed, HTTP, network-uri + , shellmate, tagsoup, xml + }: + mkDerivation { + pname = "shellmate-extras"; + version = "0.3"; + sha256 = "a04254b00c39cfe7260d535b4a525e4072dc6b4d857165dc16c9cd4a101a08d8"; + libraryHaskellDepends = [ + base bytestring feed HTTP network-uri shellmate tagsoup xml + ]; + homepage = "https://github.com/valderman/shellmate"; + description = "Extra functionality for shellmate"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "shelltestrunner" = callPackage ({ mkDerivation, base, cmdargs, Diff, directory, filemanip , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe @@ -213079,7 +213558,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stack-run-auto" = callPackage + "stack-run-auto_0_1_1_2" = callPackage ({ mkDerivation, async, base, extract-dependencies, file-modules , lens, lens-aeson, MissingH, process, stm-containers, text, time , wreq @@ -213105,9 +213584,10 @@ self: { homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "stack-run-auto_0_1_1_4" = callPackage + "stack-run-auto" = callPackage ({ mkDerivation, async, base, directory, extract-dependencies , file-modules, filepath, lens, lens-aeson, MissingH, process , stm-containers, text, time, wreq @@ -213133,7 +213613,6 @@ self: { homepage = "http://github.com/yamadapc/stack-run-auto#readme"; description = "Initial project template from stack"; license = stdenv.lib.licenses.mit; - hydraPlatforms = stdenv.lib.platforms.none; }) {}; "stackage_0_3_1" = callPackage @@ -214383,7 +214862,6 @@ self: { QuickCheck test-framework test-framework-hunit test-framework-quickcheck2 vector vector-algorithms ]; - doHaddock = false; doCheck = false; homepage = "https://github.com/bos/statistics"; description = "A library of statistical types, data, and functions"; @@ -215698,13 +216176,15 @@ self: { "stratux" = callPackage ({ mkDerivation, base, directory, doctest, filepath, QuickCheck - , stratux-types, stratux-websockets, template-haskell + , stratux-http, stratux-types, stratux-websockets, template-haskell }: mkDerivation { pname = "stratux"; - version = "0.0.3"; - sha256 = "3eb06fd679aee8e4ee2bfa7e77550756811c182c9311b51c494927ddb63aed1c"; - libraryHaskellDepends = [ base stratux-types stratux-websockets ]; + version = "0.0.5"; + sha256 = "ff2386fdbd47ad6bfbd56e970d551ae12277beeacb870432997cd89685263994"; + libraryHaskellDepends = [ + base stratux-http stratux-types stratux-websockets + ]; testHaskellDepends = [ base directory doctest filepath QuickCheck template-haskell ]; @@ -215714,14 +216194,33 @@ self: { hydraPlatforms = [ "x86_64-darwin" ]; }) {}; + "stratux-http" = callPackage + ({ mkDerivation, aeson, base, directory, doctest, either, filepath + , HTTP, network-uri, QuickCheck, stratux-types, template-haskell + }: + mkDerivation { + pname = "stratux-http"; + version = "0.0.5"; + sha256 = "5d9e9cac0854cb65e12136ac5aee32c77e659a855e9d0f0c513509479ea84901"; + libraryHaskellDepends = [ + aeson base either HTTP network-uri stratux-types + ]; + testHaskellDepends = [ + base directory doctest filepath QuickCheck template-haskell + ]; + homepage = "https://github.com/tonymorris/stratux-http"; + description = "A library for using HTTP with stratux"; + license = stdenv.lib.licenses.bsd3; + }) {}; + "stratux-types" = callPackage ({ mkDerivation, aeson, base, bytestring, directory, doctest , filepath, lens, QuickCheck, scientific, template-haskell, time }: mkDerivation { pname = "stratux-types"; - version = "0.0.3"; - sha256 = "4ccaf05dfd7b70a1dd5032c99e68a01c0af77f1c4537aa2c1a68dc18501cbe84"; + version = "0.0.5"; + sha256 = "a710cb04c9b5e471ba3350c18ab98bf4a2a50a047c6c5e9c5096d45adf8e6266"; libraryHaskellDepends = [ aeson base bytestring lens scientific time ]; @@ -215729,7 +216228,7 @@ self: { base directory doctest filepath QuickCheck template-haskell ]; homepage = "https://github.com/tonymorris/stratux-types"; - description = "A library for stratux"; + description = "A library for reading JSON output from stratux"; license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -215741,8 +216240,8 @@ self: { }: mkDerivation { pname = "stratux-websockets"; - version = "0.0.3"; - sha256 = "94cb21267cc6c34977a28baa2413510ebf2c0babb55a682c515565453a90f35c"; + version = "0.0.4"; + sha256 = "1b3e73f423aa4415607a59a31b3cdb1c512475b3db2f0b0a99d4b18f31e89516"; libraryHaskellDepends = [ aeson base either network stratux-types text transformers websockets @@ -220631,6 +221130,45 @@ self: { license = stdenv.lib.licenses.mpl20; }) {}; + "tak" = callPackage + ({ mkDerivation, base, bytestring, hashable, hslogger, HUnit + , matrix, network, parsec, random-shuffle, safe + }: + mkDerivation { + pname = "tak"; + version = "0.1.0.0"; + sha256 = "39253006641e6057105c42097701df1173f01302757b2d8f4980612c97397dd9"; + libraryHaskellDepends = [ + base bytestring hashable hslogger matrix network parsec + random-shuffle safe + ]; + testHaskellDepends = [ + base bytestring hashable hslogger HUnit matrix network parsec + random-shuffle safe + ]; + homepage = "http://bitbucket.org/sffubs/tak"; + description = "A library encoding the rules of Tak, and a playtak.com client."; + license = stdenv.lib.licenses.bsd2; + }) {}; + + "tak-ai" = callPackage + ({ mkDerivation, base, HUnit, matrix, parsec, random-shuffle, tak + }: + mkDerivation { + pname = "tak-ai"; + version = "0.1.0.1"; + sha256 = "66fcc335e1cb639dc1c5a66f71e5a272d5e5c841d88056cce55cf22ccd8364c7"; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ base random-shuffle tak ]; + testHaskellDepends = [ + base HUnit matrix parsec random-shuffle tak + ]; + homepage = "http://bitbucket.org/sffubs/tak"; + description = "AI(s) for playing Tak on playtak.com"; + license = stdenv.lib.licenses.bsd2; + }) {}; + "takahashi" = callPackage ({ mkDerivation, base, lens, monad-skeleton, mtl }: mkDerivation { @@ -221224,7 +221762,7 @@ self: { license = stdenv.lib.licenses.mit; }) {}; - "tasty-expected-failure" = callPackage + "tasty-expected-failure_0_11_0_3" = callPackage ({ mkDerivation, base, tagged, tasty }: mkDerivation { pname = "tasty-expected-failure"; @@ -221235,6 +221773,19 @@ self: { homepage = "http://github.com/nomeata/tasty-expected-failure"; description = "Mark tasty tests as failure expected"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "tasty-expected-failure" = callPackage + ({ mkDerivation, base, tagged, tasty }: + mkDerivation { + pname = "tasty-expected-failure"; + version = "0.11.0.4"; + sha256 = "41ed5a34e250ee5dc78daf93aa02a25d751b2c6423302faf49f28986822ba564"; + libraryHaskellDepends = [ base tagged tasty ]; + homepage = "http://github.com/nomeata/tasty-expected-failure"; + description = "Mark tasty tests as failure expected"; + license = stdenv.lib.licenses.mit; }) {}; "tasty-fail-fast" = callPackage @@ -225557,8 +226108,8 @@ self: { }: mkDerivation { pname = "themoviedb"; - version = "1.1.1.0"; - sha256 = "a8999895fdf594720cdce1661cc093c978d72cf4377fbc26eae756fbe182a9a0"; + version = "1.1.2.0"; + sha256 = "c4dc8038b004f192854c5e8341c8cc4637f6c9d340a76e77f9e36ee412a7eb88"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -228235,11 +228786,11 @@ self: { }: mkDerivation { pname = "tpdb"; - version = "1.2.0"; - sha256 = "60553cf6424b839b79331516056b5ea3cc61f6fc22e2d1c2c1035889ae51848a"; + version = "1.3.2"; + sha256 = "eb54039be2a2bc45f1018e7f2531118d69b96abdfeb91e61ced4e597e3730409"; libraryHaskellDepends = [ - base containers filepath hashable HaXml hxt mtl parsec text time - wl-pprint-text + base bytestring containers filepath hashable HaXml hxt mtl parsec + text time wl-pprint-text ]; testHaskellDepends = [ base bytestring HaXml pretty ]; homepage = "https://github.com/jwaldmann/haskell-tpdb"; @@ -230736,7 +231287,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "twitter-feed" = callPackage + "twitter-feed_0_2_0_6" = callPackage ({ mkDerivation, aeson, authenticate-oauth, base, bytestring , containers, http-conduit, HUnit, test-framework , test-framework-hunit @@ -230754,6 +231305,27 @@ self: { homepage = "https://github.com/stackbuilders/twitter-feed"; description = "Client for fetching Twitter timeline via Oauth"; license = stdenv.lib.licenses.mit; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "twitter-feed" = callPackage + ({ mkDerivation, aeson, authenticate-oauth, base, bytestring + , containers, http-conduit, HUnit, test-framework + , test-framework-hunit + }: + mkDerivation { + pname = "twitter-feed"; + version = "0.2.0.7"; + sha256 = "031cafcb9685b1f3f677f9a168b72831f85df43e49a74cc9e89d3d7218e15d95"; + libraryHaskellDepends = [ + aeson authenticate-oauth base bytestring http-conduit + ]; + testHaskellDepends = [ + base containers HUnit test-framework test-framework-hunit + ]; + homepage = "https://github.com/stackbuilders/twitter-feed"; + description = "Client for fetching Twitter timeline via Oauth"; + license = stdenv.lib.licenses.mit; }) {}; "twitter-types_0_7_1_1" = callPackage @@ -233559,6 +234131,26 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "unordered-containers_0_2_7_1" = callPackage + ({ mkDerivation, base, ChasingBottoms, containers, deepseq + , hashable, HUnit, QuickCheck, test-framework, test-framework-hunit + , test-framework-quickcheck2 + }: + mkDerivation { + pname = "unordered-containers"; + version = "0.2.7.1"; + sha256 = "2f9277f1d61c409775835f094c031fbb5462dd564d639f4f1357ee086fc4d702"; + libraryHaskellDepends = [ base deepseq hashable ]; + testHaskellDepends = [ + base ChasingBottoms containers hashable HUnit QuickCheck + test-framework test-framework-hunit test-framework-quickcheck2 + ]; + homepage = "https://github.com/tibbe/unordered-containers"; + description = "Efficient hashing-based container types"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "unordered-containers-rematch" = callPackage ({ mkDerivation, base, hashable, hspec, HUnit, rematch , unordered-containers @@ -243070,6 +243662,19 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; + "web-plugins_0_2_9" = callPackage + ({ mkDerivation, base, containers, mtl, stm, text }: + mkDerivation { + pname = "web-plugins"; + version = "0.2.9"; + sha256 = "e63bfd7f666b40c7ff962a070c64dc5bef4a5c490af745fa7ee8f964284a7a50"; + libraryHaskellDepends = [ base containers mtl stm text ]; + homepage = "https://github.com/clckwrks/web-plugins"; + description = "dynamic plugin system for web applications"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + "web-routes" = callPackage ({ mkDerivation, base, blaze-builder, bytestring, exceptions , ghc-prim, hspec, http-types, HUnit, mtl, parsec, QuickCheck @@ -243089,7 +243694,7 @@ self: { license = stdenv.lib.licenses.bsd3; }) {}; - "web-routes-boomerang" = callPackage + "web-routes-boomerang_0_28_4" = callPackage ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: mkDerivation { pname = "web-routes-boomerang"; @@ -243100,6 +243705,20 @@ self: { ]; description = "Library for maintaining correctness and composability of URLs within an application"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "web-routes-boomerang" = callPackage + ({ mkDerivation, base, boomerang, mtl, parsec, text, web-routes }: + mkDerivation { + pname = "web-routes-boomerang"; + version = "0.28.4.2"; + sha256 = "7ea892cd6e8c25e4adabf999d2332248a7b458662479a28a812bafd8dd2b7827"; + libraryHaskellDepends = [ + base boomerang mtl parsec text web-routes + ]; + description = "Use boomerang for type-safe URL parsers/printers"; + license = stdenv.lib.licenses.bsd3; hydraPlatforms = [ "x86_64-darwin" ]; }) {}; @@ -247320,7 +247939,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "xlsx" = callPackage + "xlsx_0_2_1_2" = callPackage ({ mkDerivation, base, binary-search, bytestring, conduit , containers, data-default, digest, HUnit, lens, mtl, old-locale , smallcheck, tasty, tasty-hunit, tasty-smallcheck, text, time @@ -247350,6 +247969,52 @@ 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, extra, filepath, HUnit, lens + , mtl, network-uri, old-locale, raw-strings-qq, safe, smallcheck + , tasty, tasty-hunit, tasty-smallcheck, text, time, transformers + , unordered-containers, vector, xml-conduit, zip-archive, zlib + }: + mkDerivation { + pname = "xlsx"; + version = "0.2.2.1"; + sha256 = "74f376f7071ea7171dc505fc09c71f63d2364631b9562e039c61b897a1350a65"; + libraryHaskellDepends = [ + base base64-bytestring binary-search bytestring conduit containers + data-default extra filepath lens mtl network-uri old-locale safe + text time transformers unordered-containers vector xml-conduit + zip-archive zlib + ]; + testHaskellDepends = [ + base bytestring containers HUnit lens raw-strings-qq smallcheck + tasty tasty-hunit tasty-smallcheck time unordered-containers 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 + ({ mkDerivation, aeson, base, bytestring, containers, data-default + , lens, text, xlsx + }: + mkDerivation { + pname = "xlsx-tabular"; + version = "0.1.0.0"; + sha256 = "fe472e9fcac1d47f8d325a24a219ac54ff2471cbaeb071aef81b14300ecf9276"; + libraryHaskellDepends = [ + aeson base bytestring containers data-default lens text xlsx + ]; + testHaskellDepends = [ base ]; + homepage = "http://github.com/kkazuo/xlsx-tabular#readme"; + description = "Xlsx table decode utility"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; }) {}; "xlsx-tabular" = callPackage @@ -247358,8 +248023,8 @@ self: { }: mkDerivation { pname = "xlsx-tabular"; - version = "0.1.0.0"; - sha256 = "fe472e9fcac1d47f8d325a24a219ac54ff2471cbaeb071aef81b14300ecf9276"; + version = "0.1.0.1"; + sha256 = "29efb942a99bd0afe4ffda1856a51354b9ffa44253574b307f51bb2f05cf539a"; libraryHaskellDepends = [ aeson base bytestring containers data-default lens text xlsx ]; @@ -248433,8 +249098,8 @@ self: { "xmobar" = callPackage ({ mkDerivation, alsa-core, alsa-mixer, base, bytestring - , containers, dbus, directory, filepath, hinotify, HTTP, libXpm - , libXrandr, libXrender, mtl, old-locale, parsec, process + , containers, dbus, directory, filepath, hinotify, HTTP, libmpd + , libXpm, libXrandr, libXrender, mtl, old-locale, parsec, process , regex-compat, stm, time, timezone-olson, timezone-series , transformers, unix, utf8-string, wirelesstools, X11, X11-xft }: @@ -248442,18 +249107,14 @@ self: { pname = "xmobar"; version = "0.23.1"; sha256 = "3b31558373bdb8561f06440da902dd0db8398e5c774fa027931785c263f5567a"; - configureFlags = [ - "-fwith_alsa" "-fwith_datezone" "-fwith_dbus" "-fwith_inotify" - "-fwith_iwlib" "-f-with_mpd" "-fwith_mpris" "-fwith_threaded" - "-fwith_utf8" "-fwith_xft" "-fwith_xpm" - ]; + configureFlags = [ "-fall_extensions" ]; isLibrary = false; isExecutable = true; executableHaskellDepends = [ alsa-core alsa-mixer base bytestring containers dbus directory - filepath hinotify HTTP mtl old-locale parsec process regex-compat - stm time timezone-olson timezone-series transformers unix - utf8-string X11 X11-xft + filepath hinotify HTTP libmpd mtl old-locale parsec process + regex-compat stm time timezone-olson timezone-series transformers + unix utf8-string X11 X11-xft ]; executableSystemDepends = [ libXpm libXrandr libXrender wirelesstools @@ -249603,6 +250264,36 @@ self: { license = stdenv.lib.licenses.bsd3; }) {inherit (pkgs) libyaml;}; + "yaml_0_8_17_2" = callPackage + ({ mkDerivation, aeson, aeson-qq, attoparsec, base, base-compat + , bytestring, conduit, containers, directory, enclosed-exceptions + , filepath, hspec, HUnit, libyaml, mockery, resourcet, scientific + , semigroups, text, transformers, unordered-containers, vector + }: + mkDerivation { + pname = "yaml"; + version = "0.8.17.2"; + sha256 = "b2008ad273ea424414817fe703f507464e6124393959370f371decd92663f18a"; + configureFlags = [ "-fsystem-libyaml" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson attoparsec base bytestring conduit containers directory + enclosed-exceptions filepath resourcet scientific semigroups text + transformers unordered-containers vector + ]; + libraryPkgconfigDepends = [ libyaml ]; + executableHaskellDepends = [ aeson base bytestring ]; + testHaskellDepends = [ + aeson aeson-qq base base-compat bytestring conduit hspec HUnit + mockery resourcet text transformers unordered-containers vector + ]; + homepage = "http://github.com/snoyberg/yaml/"; + description = "Support for parsing and rendering YAML documents"; + license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {inherit (pkgs) libyaml;}; + "yaml-config" = callPackage ({ mkDerivation, base, deepseq, hashable, QuickCheck, tasty , tasty-quickcheck, text, unordered-containers, yaml @@ -251535,7 +252226,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yesod-auth-oauth2" = callPackage + "yesod-auth-oauth2_0_1_8" = callPackage ({ mkDerivation, aeson, authenticate, base, bytestring, containers , hoauth2, hspec, http-client, http-conduit, http-types , lifted-base, load-env, network-uri, random, text, transformers @@ -251560,6 +252251,33 @@ self: { homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; description = "OAuth 2.0 authentication plugins"; license = stdenv.lib.licenses.bsd3; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yesod-auth-oauth2" = callPackage + ({ mkDerivation, aeson, authenticate, base, bytestring, containers + , hoauth2, hspec, http-client, http-conduit, http-types + , lifted-base, load-env, network-uri, random, text, transformers + , vector, warp, yesod, yesod-auth, yesod-core, yesod-form + }: + mkDerivation { + pname = "yesod-auth-oauth2"; + version = "0.1.9"; + sha256 = "719152c20799024acf4c1ec9c91cb97cf44a2d371223672a75c705a06d12081c"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson authenticate base bytestring hoauth2 http-client http-conduit + http-types lifted-base network-uri random text transformers vector + yesod-auth yesod-core yesod-form + ]; + executableHaskellDepends = [ + base containers http-conduit load-env text warp yesod yesod-auth + ]; + testHaskellDepends = [ base hspec ]; + homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; + description = "OAuth 2.0 authentication plugins"; + license = stdenv.lib.licenses.bsd3; }) {}; "yesod-auth-pam" = callPackage @@ -256252,7 +256970,7 @@ self: { hydraPlatforms = stdenv.lib.platforms.none; }) {}; - "yi" = callPackage + "yi_0_12_5" = callPackage ({ mkDerivation, array, base, binary, bytestring, Cabal, containers , data-default, directory, dlist, dynamic-state, dyre, exceptions , filepath, glib, gtk, hashable, hint, HUnit, lens, mtl, old-locale @@ -256286,6 +257004,43 @@ self: { homepage = "https://yi-editor.github.io"; description = "The Haskell-Scriptable Editor"; license = stdenv.lib.licenses.gpl2; + hydraPlatforms = stdenv.lib.platforms.none; + }) {}; + + "yi" = callPackage + ({ mkDerivation, array, base, binary, bytestring, Cabal, containers + , data-default, directory, dlist, dynamic-state, dyre, exceptions + , filepath, glib, gtk, hashable, Hclip, hint, HUnit, lens, mtl + , old-locale, oo-prototypes, pango, parsec, pointedlist, process + , QuickCheck, random, safe, semigroups, split, stm, tasty + , tasty-hunit, tasty-quickcheck, template-haskell, text, text-icu + , time, transformers-base, unix, unix-compat, unordered-containers + , vty, word-trie, xdg-basedir, yi-language, yi-rope + }: + mkDerivation { + pname = "yi"; + version = "0.12.6"; + sha256 = "886bbac8634a251d9872fbcc47350df3e84cf881e42cb7408d1a1e92614205d8"; + configureFlags = [ "-fpango" "-fvty" ]; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + array base binary bytestring Cabal containers data-default + directory dlist dynamic-state dyre exceptions filepath glib gtk + hashable Hclip hint lens mtl old-locale oo-prototypes pango parsec + pointedlist process QuickCheck random safe semigroups split stm + template-haskell text text-icu time transformers-base unix + unix-compat unordered-containers vty word-trie xdg-basedir + yi-language yi-rope + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base directory filepath HUnit lens QuickCheck semigroups tasty + tasty-hunit tasty-quickcheck text yi-language yi-rope + ]; + homepage = "https://yi-editor.github.io"; + description = "The Haskell-Scriptable Editor"; + license = stdenv.lib.licenses.gpl2; }) {}; "yi-contrib" = callPackage From 7914242b377b35dabcf8c38150d005bc7e5b3199 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Jun 2016 16:50:36 +0200 Subject: [PATCH 506/520] haskell-timezone-series: fix build with GHC 8.0.1 - Fix the incorrect sha256 hash of the patch. - Apply the patch only when compiling with GHC 8.0.x. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ---- .../haskell-modules/configuration-ghc-8.0.x.nix | 7 +++++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 6092ec5a7d3a..c9e38e1e17c7 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -1041,8 +1041,4 @@ self: super: { ''; })); - timezone-series = appendPatch super.timezone-series (pkgs.fetchpatch { - url = "https://github.com/ryantrinkle/timezone-series/commit/f8dece8c016db6476e2bb0d4f972769a76f6ff40.patch"; - sha256 = "02sgciica2pzaal7wwp36v6iybr1hjypda0zljxylnq0qs8bizhy"; - }); } diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix index c11381a96039..530e62047b98 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix @@ -62,4 +62,11 @@ self: super: { sha256 = "1i45196qrzlhgbisnvkzni4n54saky0i1kyla162xcb5cg3kf2ji"; }; }); + + # https://github.com/ygale/timezone-series/issues/2 + timezone-series = appendPatch super.timezone-series (pkgs.fetchpatch { + url = "https://github.com/ryantrinkle/timezone-series/commit/f8dece8c016db6476e2bb0d4f972769a76f6ff40.patch"; + sha256 = "01wxhknsnn7lyl9v8viz7m5zhmyi3bqpbva7d3dx1dxn0nmkfh6a"; + }); + } From bcd46a3d9b71d1d57d6ddb3d2822bca7c74f353a Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Jun 2016 15:45:27 +0200 Subject: [PATCH 507/520] haskell-cryptol: switch to LTS package set to fix the 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 29453441c562..f15e00f70e80 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4196,7 +4196,7 @@ in ocamlPackages = ocamlPackages_4_02; }); - cryptol = self.haskellPackages.cryptol; + cryptol = self.haskell.packages.lts.cryptol; cython = pythonPackages.cython; cython3 = python3Packages.cython; From 3a4ff5fc7e91bd0c26d2622aa6884df49027e0d7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 9 Jun 2016 15:45:56 +0200 Subject: [PATCH 508/520] haskell-darcs: switch to LTS package set to fix the 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 f15e00f70e80..882377cf3b1b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -12181,7 +12181,7 @@ in d4x = callPackage ../applications/misc/d4x { }; - darcs = haskell.lib.overrideCabal self.haskellPackages.darcs (drv: { + darcs = haskell.lib.overrideCabal self.haskell.packages.lts.darcs (drv: { configureFlags = (stdenv.lib.remove "-flibrary" drv.configureFlags or []) ++ ["-f-library"]; enableSharedExecutables = false; enableSharedLibraries = false; From 6e709b180e83c275f49ba0520e598509c2827abe Mon Sep 17 00:00:00 2001 From: rushmorem Date: Thu, 9 Jun 2016 22:09:07 +0200 Subject: [PATCH 509/520] storebrowse: mark broken `storebrowse` depends on https://code.google.com/archive/p/gosqlite/ which leads to gosqlite.googlecode.com/hg/sqlite which now 404s. --- pkgs/tools/system/storebrowse/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/tools/system/storebrowse/default.nix b/pkgs/tools/system/storebrowse/default.nix index aa510a28c231..40332f7b0d44 100644 --- a/pkgs/tools/system/storebrowse/default.nix +++ b/pkgs/tools/system/storebrowse/default.nix @@ -41,5 +41,6 @@ stdenv.mkDerivation rec { meta = { homepage = http://viric.name/cgi-bin/storebrowse; license = stdenv.lib.licenses.agpl3Plus; + broken = true; }; } From 7bd515979c59fa2b5786fba2fddbca9d56c04cb1 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Thu, 9 Jun 2016 18:09:42 +0200 Subject: [PATCH 510/520] tinycc: fix paxmark call I missed this due to testing on a checkout that didn't contain the paxmark fix ... --- pkgs/development/compilers/tinycc/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/compilers/tinycc/default.nix b/pkgs/development/compilers/tinycc/default.nix index 147edcb5d48a..de8044386e70 100644 --- a/pkgs/development/compilers/tinycc/default.nix +++ b/pkgs/development/compilers/tinycc/default.nix @@ -40,7 +40,7 @@ stdenv.mkDerivation rec { checkTarget = "test"; postFixup = '' - paxmark m $out/bin/tcc + paxmark m $bin/bin/tcc ''; meta = { From 830c748ea43c470586052c8f67f948900926753a Mon Sep 17 00:00:00 2001 From: mimadrid Date: Thu, 9 Jun 2016 23:41:17 +0200 Subject: [PATCH 511/520] Add myself as maintainer --- lib/maintainers.nix | 1 + pkgs/games/klavaro/default.nix | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/maintainers.nix b/lib/maintainers.nix index 198bb93c6be3..0516cc3b076f 100644 --- a/lib/maintainers.nix +++ b/lib/maintainers.nix @@ -238,6 +238,7 @@ meisternu = "Matt Miemiec "; michaelpj = "Michael Peyton Jones "; michelk = "Michel Kuhlmann "; + mimadrid = "Miguel Madrid "; mingchuan = "Ming Chuan "; mirdhyn = "Merlin Gaillard "; mirrexagon = "Andrew Abbott "; diff --git a/pkgs/games/klavaro/default.nix b/pkgs/games/klavaro/default.nix index f5970ccd2207..2ca105af19d2 100644 --- a/pkgs/games/klavaro/default.nix +++ b/pkgs/games/klavaro/default.nix @@ -21,5 +21,6 @@ stdenv.mkDerivation rec { homepage = http://klavaro.sourceforge.net/; license = stdenv.lib.licenses.gpl3Plus; platforms = stdenv.lib.platforms.linux; + maintainer = [stdenv.lib.maintainers.mimadrid]; }; } From c1cb5ca57e4b067afaa13fd93ed1392ec84c9da2 Mon Sep 17 00:00:00 2001 From: Joachim Fasting Date: Fri, 10 Jun 2016 01:01:56 +0200 Subject: [PATCH 512/520] oauth2_proxy module: fix manual build --- .../services/security/oauth2_proxy.nix | 43 ++++++++----------- 1 file changed, 19 insertions(+), 24 deletions(-) diff --git a/nixos/modules/services/security/oauth2_proxy.nix b/nixos/modules/services/security/oauth2_proxy.nix index aa962743f855..b149373076a6 100644 --- a/nixos/modules/services/security/oauth2_proxy.nix +++ b/nixos/modules/services/security/oauth2_proxy.nix @@ -77,17 +77,12 @@ let in { options.services.oauth2_proxy = { - enable = mkOption { - type = types.bool; - default = false; - description = '' - Whether to run oauth2_proxy. - ''; - }; + enable = mkEnableOption "oauth2_proxy"; package = mkOption { type = types.package; default = pkgs.oauth2_proxy; + defaultText = "pkgs.oauth2_proxy"; description = '' The package that provides oauth2_proxy. ''; @@ -137,8 +132,8 @@ in type = types.listOf types.str; default = []; description = '' - List of regular expressions which will bypass authentication when - requests path's match. + Skip authentication for requests matching any of these regular + expressions. ''; }; @@ -148,7 +143,8 @@ in type = types.listOf types.str; default = []; description = '' - Authenticate emails with the specified domains. Use * to authenticate any email. + Authenticate emails with the specified domains. Use + * to authenticate any email. ''; }; @@ -178,7 +174,7 @@ in type = types.nullOr types.str; default = null; description = '' - Token redemption endpoint. + Token redemption endpoint. You only need to set this if you are using a self-hosted provider (e.g. Github Enterprise). If you're using a publicly hosted provider @@ -238,7 +234,7 @@ in Directory API, thus the service account needs to impersonate one of those users to access the Admin SDK Directory API. - See + See . ''; }; @@ -282,8 +278,8 @@ in upstream = mkOption { type = types.commas; description = '' - The http url(s) of the upstream endpoint or file:// paths for static - files. Routing is based on the path. + The http url(s) of the upstream endpoint or file:// + paths for static files. Routing is based on the path. ''; }; @@ -395,11 +391,9 @@ in type = types.str; default = "127.0.0.1:4180"; description = '' - [http://]: or unix:// to listen on for HTTP clients. - - This module does *not* expose the port by default. If you want this URL - to be accessible to other machines, please add the port to - networking.firewall.allowedTCPPorts. + HTTPS listening address. This module does not expose the port by + default. If you want this URL to be accessible to other machines, please + add the port to networking.firewall.allowedTCPPorts. ''; }; @@ -409,7 +403,7 @@ in default = null; description = '' Additionally authenticate against a htpasswd file. Entries must be - created with "htpasswd -s" for SHA encryption. + created with htpasswd -s for SHA encryption. ''; }; @@ -434,7 +428,7 @@ in type = types.str; default = "/oauth2"; description = '' - The url root path that this proxy should be nested under (e.g. //sign_in); + The url root path that this proxy should be nested under. ''; }; @@ -465,10 +459,11 @@ in type = types.str; default = ":443"; description = '' - : to listen on for HTTPS clients. + addr:port to listen on for HTTPS clients. - Remember to add to allowedTCPPorts if you want other machines - to be able to connect to it. + Remember to add port to + allowedTCPPorts if you want other machines to be + able to connect to it. ''; }; }; From 511565e996ff4eac7dc114eb39d6f81dba0e50bb Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 9 Jun 2016 23:21:40 +0000 Subject: [PATCH 513/520] kibana: 4.4.1 -> 4.5.1 --- pkgs/development/tools/misc/kibana/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/tools/misc/kibana/default.nix b/pkgs/development/tools/misc/kibana/default.nix index ce138014408f..ca3d33624915 100644 --- a/pkgs/development/tools/misc/kibana/default.nix +++ b/pkgs/development/tools/misc/kibana/default.nix @@ -4,11 +4,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "kibana-${version}"; - version = "4.4.1"; + version = "4.5.1"; src = fetchurl { url = "http://download.elastic.co/kibana/kibana-snapshot/${name}-snapshot-linux-x86.tar.gz"; - sha256 = "0kxvrhrkcvx7pcn7myvabhcm4nj8gi86ij4a1xi392lfds2v350z"; + sha256 = "0k9pmzx2sa3026yw29f2h2lddxdkhyn3jvdf3si8scz70ncwylj9"; }; buildInputs = [ makeWrapper ]; From 9657844db241d915f60cd0aa64d6d1c17111a7d0 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Thu, 9 Jun 2016 23:22:48 +0000 Subject: [PATCH 514/520] fluentd: 0.12.6 -> 0.14.0 --- pkgs/tools/misc/fluentd/Gemfile.lock | 48 ++++--- pkgs/tools/misc/fluentd/default.nix | 2 +- pkgs/tools/misc/fluentd/gemset.nix | 195 +++++++++++++-------------- 3 files changed, 118 insertions(+), 127 deletions(-) diff --git a/pkgs/tools/misc/fluentd/Gemfile.lock b/pkgs/tools/misc/fluentd/Gemfile.lock index 4f51d365513a..581fa6e169ae 100644 --- a/pkgs/tools/misc/fluentd/Gemfile.lock +++ b/pkgs/tools/misc/fluentd/Gemfile.lock @@ -1,45 +1,48 @@ GEM remote: https://rubygems.org/ specs: - cool.io (1.3.0) - elasticsearch (1.0.8) - elasticsearch-api (= 1.0.7) - elasticsearch-transport (= 1.0.7) - elasticsearch-api (1.0.7) + cool.io (1.4.4) + elasticsearch (1.0.17) + elasticsearch-api (= 1.0.17) + elasticsearch-transport (= 1.0.17) + elasticsearch-api (1.0.17) multi_json - elasticsearch-transport (1.0.7) + elasticsearch-transport (1.0.17) faraday multi_json - faraday (0.9.1) + excon (0.49.0) + faraday (0.9.2) multipart-post (>= 1.2, < 3) - fluent-plugin-elasticsearch (0.7.0) + fluent-plugin-elasticsearch (1.5.0) elasticsearch + excon fluentd (>= 0.10.43) - patron (~> 0) - fluent-plugin-record-reformer (0.6.0) + fluent-plugin-record-reformer (0.8.1) fluentd - fluentd (0.12.6) - cool.io (>= 1.2.2, < 2.0.0) + fluentd (0.14.0) + cool.io (>= 1.4.3, < 2.0.0) http_parser.rb (>= 0.5.1, < 0.7.0) json (>= 1.4.3) - msgpack (>= 0.5.11, < 0.6.0) + msgpack (>= 0.7.0) + serverengine (>= 1.6.4) sigdump (~> 0.2.2) - string-scrub (>= 0.0.3) + strptime (>= 0.1.7) tzinfo (>= 1.0.0) tzinfo-data (>= 1.0.0) yajl-ruby (~> 1.0) http_parser.rb (0.6.0) - json (1.8.2) - msgpack (0.5.11) - multi_json (1.11.0) + json (1.8.3) + msgpack (0.7.6) + multi_json (1.12.1) multipart-post (2.0.0) - patron (0.4.20) - sigdump (0.2.2) - string-scrub (0.0.5) + serverengine (1.6.4) + sigdump (~> 0.2.2) + sigdump (0.2.4) + strptime (0.1.8) thread_safe (0.3.5) tzinfo (1.2.2) thread_safe (~> 0.1) - tzinfo-data (1.2015.1) + tzinfo-data (1.2016.4) tzinfo (>= 1.0.0) yajl-ruby (1.2.1) @@ -50,3 +53,6 @@ DEPENDENCIES fluent-plugin-elasticsearch fluent-plugin-record-reformer fluentd + +BUNDLED WITH + 1.11.2 diff --git a/pkgs/tools/misc/fluentd/default.nix b/pkgs/tools/misc/fluentd/default.nix index 1a1871e22da6..4c5de7448409 100644 --- a/pkgs/tools/misc/fluentd/default.nix +++ b/pkgs/tools/misc/fluentd/default.nix @@ -1,7 +1,7 @@ { stdenv, lib, bundlerEnv, ruby, curl }: bundlerEnv { - name = "fluentd-0.12.6"; + name = "fluentd-0.14.0"; inherit ruby; gemfile = ./Gemfile; diff --git a/pkgs/tools/misc/fluentd/gemset.nix b/pkgs/tools/misc/fluentd/gemset.nix index 84577c03587d..e6b03fadfd36 100644 --- a/pkgs/tools/misc/fluentd/gemset.nix +++ b/pkgs/tools/misc/fluentd/gemset.nix @@ -1,181 +1,166 @@ { "cool.io" = { - version = "1.3.0"; source = { + remotes = ["https://rubygems.org"]; + sha256 = "0ycc8qdvpba8bf6da8nsna34md86mk527j4qizxh059vqm3521sb"; type = "gem"; - sha256 = "1s3x0a32gbr6sg4lb0yk5irh48z4260my6g5ssifyl54rh4b6lzh"; }; + version = "1.4.4"; }; - "elasticsearch" = { - version = "1.0.8"; + elasticsearch = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1g7vax396l68w5mrrfbsaly39zkc4rrvljz9717mxyn82m5f66w5"; type = "gem"; - sha256 = "0kfiza9p98gchqgd0a64ryw77wgy42b7hhy89ba1s2jy2kcm3ahl"; }; - dependencies = [ - "elasticsearch-api" - "elasticsearch-transport" - ]; + version = "1.0.17"; }; - "elasticsearch-api" = { - version = "1.0.7"; + elasticsearch-api = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "08bb63raz381fmspijwjc4ksvrrgavmwrymjms1b9mg4qkic87jx"; type = "gem"; - sha256 = "0fb7pmzhfl48zxkbx3ayc61x1gv3qvvs4xcp4yf1rxflz1iw6ck9"; }; - dependencies = [ - "multi_json" - ]; + version = "1.0.17"; }; - "elasticsearch-transport" = { - version = "1.0.7"; + elasticsearch-transport = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "07r798g3lnzr3zabk2ks2j5jnxdga23bc8wrr7mcqzn8q0yv82bz"; type = "gem"; - sha256 = "0p5yzbvgpw84asfj8ifbqckw6qbssc6xrw086qfh58kxpfnin0zc"; }; - dependencies = [ - "faraday" - "multi_json" - ]; + version = "1.0.17"; }; - "faraday" = { - version = "0.9.1"; + excon = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0jmdgc4lhlbxccpg79a32vn3qngqipcaaq8bxa0ivfw5mvz0zc0z"; type = "gem"; - sha256 = "1h33znnfzxpscgpq28i9fcqijd61h61zgs3gabpdgqfa1043axsn"; }; - dependencies = [ - "multipart-post" - ]; + version = "0.49.0"; }; - "fluent-plugin-elasticsearch" = { - version = "0.7.0"; + faraday = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kplqkpn2s2yl3lxdf6h7sfldqvkbkpxwwxhyk7mdhjplb5faqh6"; type = "gem"; - sha256 = "1jav4lqf9j3w014ksgl3zr05kg62lkc58xnhjjriqp3c1412vwpy"; }; - dependencies = [ - "elasticsearch" - "fluentd" - "patron" - ]; + version = "0.9.2"; }; - "fluent-plugin-record-reformer" = { - version = "0.6.0"; + fluent-plugin-elasticsearch = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1kgv62s51y9x98qk0b6wrg4a73jfbhw50vg5z36hr0bh9rh2rq4y"; type = "gem"; - sha256 = "1h43xx7dypbrhdw22c28jsp3054g4imic2wd12rl5nf1k85phfkk"; }; - dependencies = [ - "fluentd" - ]; + version = "1.5.0"; }; - "fluentd" = { - version = "0.12.6"; + fluent-plugin-record-reformer = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1ca09msvcdgrjv0xdjxh0nhxx8crp3h9nz5qw90c75s5hss2ws9b"; type = "gem"; - sha256 = "04lrr133ci6m3j85cj2rhhjkw3b1r12fxcymk943lsdlrip0brr1"; }; - dependencies = [ - "cool.io" - "http_parser.rb" - "json" - "msgpack" - "sigdump" - "string-scrub" - "tzinfo" - "tzinfo-data" - "yajl-ruby" - ]; + version = "0.8.1"; + }; + fluentd = { + source = { + remotes = ["https://rubygems.org"]; + sha256 = "1v6c8g6fv9s710lrl0jy9ihbb8af37gvw3klk7csr5whp1mhwb8f"; + type = "gem"; + }; + version = "0.14.0"; }; "http_parser.rb" = { - version = "0.6.0"; source = { - type = "gem"; sha256 = "15nidriy0v5yqfjsgsra51wmknxci2n2grliz78sf9pga3n0l7gi"; - }; - }; - "json" = { - version = "1.8.2"; - source = { type = "gem"; - sha256 = "0zzvv25vjikavd3b1bp6lvbgj23vv9jvmnl4vpim8pv30z8p6vr5"; }; + version = "0.6.0"; }; - "msgpack" = { - version = "0.5.11"; + json = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1nsby6ry8l9xg3yw4adlhk2pnc7i0h0rznvcss4vk3v74qg0k8lc"; type = "gem"; - sha256 = "1jmi0i3j8xfvidx6ivbcbdwpyf54r0d7dc4rrq1jbvhd1ffvr79w"; }; + version = "1.8.3"; }; - "multi_json" = { - version = "1.11.0"; + msgpack = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1fn2riiaygiyvmr0glgm1vx995np3jb2hjf5i0j78vncd2wbwdw5"; type = "gem"; - sha256 = "1mg3hp17ch8bkf3ndj40s50yjs0vrqbfh3aq5r02jkpjkh23wgxl"; }; + version = "0.7.6"; }; - "multipart-post" = { - version = "2.0.0"; + multi_json = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1wpc23ls6v2xbk3l1qncsbz16npvmw8p0b38l8czdzri18mp51xk"; type = "gem"; + }; + version = "1.12.1"; + }; + multipart-post = { + source = { sha256 = "09k0b3cybqilk1gwrwwain95rdypixb2q9w65gd44gfzsd84xi1x"; - }; - }; - "patron" = { - version = "0.4.20"; - source = { type = "gem"; - sha256 = "0wdgjazzyllnajkzgdh55q60mlczq8h5jhwpzisrj2i8izrq45zb"; }; + version = "2.0.0"; }; - "sigdump" = { - version = "0.2.2"; + serverengine = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "16sy6yissv8h2vla5ba4msqzsjy0cm0x8q2llssx3kl3bwysrbrp"; type = "gem"; - sha256 = "1h4d4vfg1g3wbbmqahmk7khzhswk5mjv4hwbs7bhmp808h8mz973"; }; + version = "1.6.4"; }; - "string-scrub" = { - version = "0.0.5"; + sigdump = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1mqf06iw7rymv54y7rgbmfi6ppddgjjmxzi3hrw658n1amp1gwhb"; type = "gem"; - sha256 = "0fy4qby2az268qzmf00mb3p0hiqgshz9g6kvgl5vg76y90hl178g"; }; + version = "0.2.4"; }; - "thread_safe" = { - version = "0.3.5"; + strptime = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "0lkadizgdls9ya4sbf3bg5i1z6g2kxfw1r5ja0wkc9711zxjilx2"; type = "gem"; + }; + version = "0.1.8"; + }; + thread_safe = { + source = { sha256 = "1hq46wqsyylx5afkp6jmcihdpv4ynzzq9ygb6z2pb1cbz5js0gcr"; - }; - }; - "tzinfo" = { - version = "1.2.2"; - source = { type = "gem"; + }; + version = "0.3.5"; + }; + tzinfo = { + dependencies = ["thread_safe"]; + source = { sha256 = "1c01p3kg6xvy1cgjnzdfq45fggbwish8krd0h864jvbpybyx7cgx"; - }; - dependencies = [ - "thread_safe" - ]; - }; - "tzinfo-data" = { - version = "1.2015.1"; - source = { type = "gem"; - sha256 = "1x6fa8ayd2kal397d5gdsdg0fjqynfqv1n9n0q702mq839dw593h"; }; - dependencies = [ - "tzinfo" - ]; + version = "1.2.2"; }; - "yajl-ruby" = { - version = "1.2.1"; + tzinfo-data = { source = { + remotes = ["https://rubygems.org"]; + sha256 = "1bxfljd5i7g89s7jc5l4a3ddykfsvvp0gm02805r1q77ahn1gp33"; type = "gem"; + }; + version = "1.2016.4"; + }; + yajl-ruby = { + source = { sha256 = "0zvvb7i1bl98k3zkdrnx9vasq0rp2cyy5n7p9804dqs4fz9xh9vf"; + type = "gem"; }; + version = "1.2.1"; }; } \ No newline at end of file From 4c96860b5380e0ccb4df2b280286946416505c22 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 10 Jun 2016 04:24:27 +0200 Subject: [PATCH 515/520] firefox-bin: 47.0b9 -> 48.0b1, 48.0a2 -> 49.0a2 --- .../browsers/firefox-bin/beta_sources.nix | 366 +++++++++--------- .../browsers/firefox-bin/default.nix | 6 +- 2 files changed, 186 insertions(+), 186 deletions(-) diff --git a/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix b/pkgs/applications/networking/browsers/firefox-bin/beta_sources.nix index 356c5767b413..ad26ab6e9501 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 = "47.0b9"; + version = "48.0b1"; sources = [ - { locale = "ach"; arch = "linux-i686"; sha512 = "9b015901ec00815e486c36cb0f81301301eda6646dd8279aa1672d550ca6cc6ed9d9044b1ed9339bb7e46dd8b578cb4774857125d127827020e0ddfe2c1ab5c6"; } - { locale = "ach"; arch = "linux-x86_64"; sha512 = "49f0699dc92c00f9ff5c20bbbe595416db807254437d3c643bfcc4868977205391f2c3e0ac396c6724c1e5c8b641197f4b36e0a8a0ebb6e0f460394ec2973350"; } - { locale = "af"; arch = "linux-i686"; sha512 = "7ecc57e0e882bfda24d5ba8258a482699a4ce66d0eb17317f3ae62a6567cb34627e8a29f2682fade775c22eace65d9c56c78e8d0a0936ed35ef9b5015886a57e"; } - { locale = "af"; arch = "linux-x86_64"; sha512 = "978d4f1606d96fc9c37dc5b3cb7b62fd94d88edeab1c12a78d6e8a3a9da38fe7eacf4530e5abfb5d43a72f668914d463d2b1c631c527ccbd3f7a7eb869edcb94"; } - { locale = "an"; arch = "linux-i686"; sha512 = "edf84af121ea41ec949858b5815466358405c039146666c098901ee96616532d09d204b8472aab645e4c2eef63a803b7011deafa6e3f5f9709e560c2cc07979b"; } - { locale = "an"; arch = "linux-x86_64"; sha512 = "4fe7d9c230c57baca2e104958f644e2356c7849b9d7b1f06470783978b501317ffc2d4dc74e151f59dbc0c29e12e4cbdbb32a701044163fdbfe7b940ea5537c6"; } - { locale = "ar"; arch = "linux-i686"; sha512 = "c3714acb9ad1564ed1b85fd7f0ccfe3905bb29b69d6cb766e1b8831b629d161e7b27d1682e7f4ba56c000fc17c75f3da9e75c907a77185776c02df61e9521199"; } - { locale = "ar"; arch = "linux-x86_64"; sha512 = "14fd3b575cbd1580e62b149e379faee3ad34601dfc3f759afa81af5210a4236182df6ab22dfeba2fae2626199c6d22c112fcb34c379d374122d259bec6dc7444"; } - { locale = "as"; arch = "linux-i686"; sha512 = "1afe17a6b4f0d1cf35f6468937c0a103edcf74d9d299b374e0413887d2cf9878532cfbcbceccf180d00735b3c45f474aa13e68911b6def8a31142c0e5f64242c"; } - { locale = "as"; arch = "linux-x86_64"; sha512 = "45741f5435b32a494565f0953b8da4f5c83182dc96daa958506783a04ab2bbec78c30a72f4dfb2f0b42c1b988118bdd00599285d3da99cc22bf4ae9984c6261c"; } - { locale = "ast"; arch = "linux-i686"; sha512 = "913ad74888c00a8b96daef346d20d5704e92c5bc82db82edc685cbdb1465fd8e472195ec80cd6847ff75229c7ce8a0e0496e747fca50ee70b22a23fcb3a856d3"; } - { locale = "ast"; arch = "linux-x86_64"; sha512 = "22e8177a8d2d88ae82c830768b3812ea4f6d54e173fc6ab42a6c2edef1ee1c696e678de2945caaadcccaef0023a317657f1f4111a60aa617dc6ac84176d99568"; } - { locale = "az"; arch = "linux-i686"; sha512 = "fa6cad0fc70e060a58e648b7a4b52da9e134739534d4d9b640e3026fe9a18b93bde0b4c57803bfbf0cb8b2fb52ef82879f1ebd76f06d6b9d88eca3d82436c34b"; } - { locale = "az"; arch = "linux-x86_64"; sha512 = "36531eccbb275c3b62c7c32d8169d8190217bf5bd80ff145fc73a35569b7e25685e2b7d2e64fb17994c0a463eaa323e8c0b0577c77b3a725a696ffa839c883d2"; } - { locale = "be"; arch = "linux-i686"; sha512 = "484f31cd01f745c167657d1353b1d0db54dafde2a00222de63436d1d2eea12563b923c9b4d6ea9fa9b42012b1b6eb9da3413e806ccf8c692ae19a901133910d6"; } - { locale = "be"; arch = "linux-x86_64"; sha512 = "a521285ed012191b7da91051cd77de1d48a8eea5804f968a208c6fe171b10ed9d4085680458e59dbf23a42ba689dddabfd4ed838a9771f57d542c05a685f83be"; } - { locale = "bg"; arch = "linux-i686"; sha512 = "efa2d080e04ffe895be3a74e05250e18408c68ac96adeb52172ffeadeb5e18c6d1a667baa7eb6b336ba22449b4ea0ec435b98b984be4550c985e85128d87d135"; } - { locale = "bg"; arch = "linux-x86_64"; sha512 = "e32fa17ce32ec8e206d162825f548582be9774d97eaaedb4e6d7f95b917bbb7e1d88f498d3a1fcbd7f091238079bf6903212879e4a73cb9e9feab18d234fe0b7"; } - { locale = "bn-BD"; arch = "linux-i686"; sha512 = "8b537e121d9829d7af68eb3da08ff98a144e7257c38640ebc8665cbbc946a96f9d359d5eb061dfe29fdb45dfc412a7fe26849e048469ff30d33c1c60056e862c"; } - { locale = "bn-BD"; arch = "linux-x86_64"; sha512 = "97416decc38d2d94d85d45b1f075bf8ab7581f3014bf58c1eb30b1ad2ba791d98e3c3f1985d2c934ae767fea755a19f6c16f21717ed92d659d35aa486f16485e"; } - { locale = "bn-IN"; arch = "linux-i686"; sha512 = "7778763307699171aba4cd191b07fa0510ce31b33636b40a4e6c5958903f05b94ff06a00c6e73db604b7097dc8afee80018bd40224e68eceec39845c9c734a72"; } - { locale = "bn-IN"; arch = "linux-x86_64"; sha512 = "3433c797c912183ddece699c28698449bbff1623ac6c8dcf22a7568ad8711daeac45c1bcf45ccdf7f726b93bb1daa8e090eee66707fddb2a335c27a7537fb723"; } - { locale = "br"; arch = "linux-i686"; sha512 = "4ec33ca955cbb729ef87fa85afdd15565bbde15ff6dfdc8a0e1e5734e651568d9daad4fbd5298303b7eade3962838eeaaa9e5420644744b910cfad98d81fb216"; } - { locale = "br"; arch = "linux-x86_64"; sha512 = "7b6bca964f78321fc66ea79d4d28c817fc6b39ad6f6e46aabe8a2479cfa72e3c8e4603f7a753470a2c41e5a79aa3fc9e71b9cd28fd49189ad6679e839577024a"; } - { locale = "bs"; arch = "linux-i686"; sha512 = "a5afdde737bac2e2923d831d3c75243c02d7f660c710b74112bc23d40e360a0ca1e6bd2185da1d2fc57324def9c67ea4959c0b16d59c04a19e846db0e2597e5a"; } - { locale = "bs"; arch = "linux-x86_64"; sha512 = "74621639534d949dd385745b61c008835156d8c0a3d200aa494bd8038e8c5b9c297f8be4dfe6c1e49c112ea7c2d626398dbc71f85e53bb7fb26f83492643cec9"; } - { locale = "ca"; arch = "linux-i686"; sha512 = "304e3558a0f96825ead7832f0400f13cd5ca6e45aea93f1c47682bffdc0fab9b32ca20a5c640dbe0c57be422e49ba00497d2a95f00f4edda79a946841bd201ec"; } - { locale = "ca"; arch = "linux-x86_64"; sha512 = "0029b9273f0d45c161ad57072cac048a265501a7179e11189b015201e96c2d826c30a44cf86277a9237e9b0fde7c0a9bf03a48a2bcf82b6141ae01f5500c380b"; } - { locale = "cak"; arch = "linux-i686"; sha512 = "6eebf5ad6efbc840e15de942f125fcdd2299feaf2bf0bbeab309372b1b8dc205c9b62c0ae57fde0922b04ead1197c0d877b84ea58798a3f2361e937893bde51e"; } - { locale = "cak"; arch = "linux-x86_64"; sha512 = "5154dabd368ab42ce489b1b7c0b0b11493a17b8821449c19a16241e6b05eaa092e8c7d744c4df9c5152d8d96c56710f56ca87643e92d0a2ac5de02567b59c8ef"; } - { locale = "cs"; arch = "linux-i686"; sha512 = "b3f93887371fd444163bd435300a3c34fa18bf045ebf7f1be1465efe84b78073c6c52f5817724175403fb0e1881c498d9c79e5c53bddcbd6eb0fd6bbd2f10fdc"; } - { locale = "cs"; arch = "linux-x86_64"; sha512 = "a11acdd2efa852120c9fe0f6384dbe81f90333104c3d7a5ef0ad6780e92331e723b51c571d0374308726de454fedbbd58d18c2c5782d96ae6f7036da653b3e28"; } - { locale = "cy"; arch = "linux-i686"; sha512 = "490368cdd45c4a5f62c805bdd71217bc2aada185a7c7afb120da8cb2c050198ccf8faf853cf8af4a1fff68f3685318f18e63f7722bb42ceb3bf061ca667df1e5"; } - { locale = "cy"; arch = "linux-x86_64"; sha512 = "d314a9bf43e2b7580c27937ecd21a7bbdf071bff3c8e3ffb6cab7c7a2df1b06ba21eb4cd7d71bf4ffe00e743484de9917ac9b568169e9813889e3641659cb947"; } - { locale = "da"; arch = "linux-i686"; sha512 = "128c5fdebe1ca256a2012a6cbe9ea1478b86784c265463431da55c6d0a624e4f8ab3f915efc6f5c1d01b65c615bc2f882aae541049f8be6ed3c94513fec41803"; } - { locale = "da"; arch = "linux-x86_64"; sha512 = "f1cb5332b566399d89a46e75bac80ae3579607e7cd55e6f5f5099b99d09203fa9aa8a72b2b3d279eb9e8de0957ed757b96d06f8faa49f3b56e3184ec6cc7bf4b"; } - { locale = "de"; arch = "linux-i686"; sha512 = "39ded240ca93fffd02ec72c03abcf9296d51890650a61a09baa43815bc602f6b54d1503da8d1a82da79b83559c6cd2299fa69a233e90a96cfd6e93d05bec6b18"; } - { locale = "de"; arch = "linux-x86_64"; sha512 = "4c99b6e6fdcea845e38a708f7257b5e0f50ae9aff8d4d666d70a15531f346ed5a0c6dfbc8bd821eedb9438ef3de29c475b936722500dc6f81aef7e43dc6af68c"; } - { locale = "dsb"; arch = "linux-i686"; sha512 = "4647cfd5e16c8ed9e008f96389de9009a3607aba607671b57b90d64d7be545e07d4bb4d33aaf8f38935bf9c6edb600e5145e5186ff7bbf7998c87a59714d8392"; } - { locale = "dsb"; arch = "linux-x86_64"; sha512 = "a3e2dbccf984b1b0c43ebe782770bd124d55fc957620666638e9b4d8b61ef2bf355a5193bf2456a68d68e344f198683a8bb2549bd37444f2d05eece674d171ae"; } - { locale = "el"; arch = "linux-i686"; sha512 = "d1de11f2f41ddca5eb9beb4278ddf8237f74b46a36eef782de6f204210f0f5cfb0c3a099ae8224795ed414884183f5afbf7606831a4016f16a64fe5b2019c003"; } - { locale = "el"; arch = "linux-x86_64"; sha512 = "c1cc9504b4b287feeadd67cc1f6888a3bb0519792b63d827291c0c3d30f86b672d8ed77865a60feb3c85e792b874aef80fb0f0c7aa287ee9fe41f16699918900"; } - { locale = "en-GB"; arch = "linux-i686"; sha512 = "5fa39b5c3e05d046675e14b4ff7e6e87fc16680706137a7b9f3d5683322b783dd5201ec7f6a08019753683cad6fd69c1169d1d9453c54ff3e934c1b461d18001"; } - { locale = "en-GB"; arch = "linux-x86_64"; sha512 = "fd7f8b51c54350ccfd9f78780c15c0e8e99ca8b437f1fc41d0f828deb742b33a610751c6d0cb9689bd5ec293a86dea6301e0e25c2de70df3ebc2101259ad7e4d"; } - { locale = "en-US"; arch = "linux-i686"; sha512 = "5ed8597fc5604dccbd34c82c6d63a1033ed338b8267966901d7fd949d2a5ea3a1c8366279b4f1fedd44d6bcbac00b894c688f4e6a4816da401fa1ea68490ae4e"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "345125c0c2e66f83c8d360047bd212b949a5de4a880e956e8ba74e6503c78081eb3fbc693522d0a32af4dd6f1bf077d8f9565aef0ebbd0d6aa39eca5444b6e2a"; } - { locale = "en-ZA"; arch = "linux-i686"; sha512 = "60dd889ef7e710849881dda8ac25714402b72eb2085c2f3358450d58a0e6441f82894c74917cdf5c8e06bbf5e7bd466f89bc0ca8317acf6e80da0b5efdd031b8"; } - { locale = "en-ZA"; arch = "linux-x86_64"; sha512 = "83ebd66b35e1e600cb7e9dde13a3202d6a22fd6afe311d9ef2465b83c876ce3b0145d12eb1ff5cc60b2552fb03998c147d3288347acf6e7162c6ca02a6651624"; } - { locale = "eo"; arch = "linux-i686"; sha512 = "628ec95c60966e3f93499c7d2d528651c9b8f915190560c57d919dd0866f160692f5feff455610791a5c7526ed99b101a7e0ca1d97c1b7fe039ccfc847905d55"; } - { locale = "eo"; arch = "linux-x86_64"; sha512 = "e7ae4b4228702c34798fa0f1eb509a039827a0b0eef788ee42b0fe7f8f90e99fee62ebb3f80c02f918594a814157242218602bd1592265f90d1137a1f572f9de"; } - { locale = "es-AR"; arch = "linux-i686"; sha512 = "641368566ab0cf40c010d8cb916bda9ff36bcd3a3e8db25f6095e119acbcb71d51fc6c659b882db9956cf131ce767cef0acefc5eeeabcd6db4b299be74979e2d"; } - { locale = "es-AR"; arch = "linux-x86_64"; sha512 = "2ae2583ea9eaba2f53f0a00b5e83fefd7736766521124c42d7f7c15e6e3c0ebaba322ce49c3f08df2522bd4b01b5bbb489a226c7c59e172e4383043e97078725"; } - { locale = "es-CL"; arch = "linux-i686"; sha512 = "0ac60e69b9fa53c901bcc63f0a458be52f1f0067e353f9cd43b89b6d735c6c39048d554c095cad5132fb0a6a0af7e980314ca705bd49c34f21e3c5ec92d99725"; } - { locale = "es-CL"; arch = "linux-x86_64"; sha512 = "dbb0fb1ca4343a218fb0d6ad65de347a6bf97e9721ea2642019890131fdc18b0d916a5bea0922a443816dd465ac8fdc205feb36b7d339f3494dfc763477965de"; } - { locale = "es-ES"; arch = "linux-i686"; sha512 = "9e6803906d9541f40523d1a887e6964002be6e8376e2cfaeda5dfb82bbd048808c9666b57edce980a4f687136c0fc467d8161b02562ba577e1d0f9d00a8ef67a"; } - { locale = "es-ES"; arch = "linux-x86_64"; sha512 = "0a43efbc7442a3da4f0787601a761024a321d3ad53b1d8f787be95168b424beb29344ec7fa85e26bccca8ccc79500401459000c190b1702400905e0d2b7bb5d5"; } - { locale = "es-MX"; arch = "linux-i686"; sha512 = "79f8e85a7aef41f88d1b3378d7d93f56c9dca202593b5818234acb9fa0629cbc96bdf206f030f4c68f1bcafb9807b8f7babb26befeac46fe5f4afd2e3d6ddeca"; } - { locale = "es-MX"; arch = "linux-x86_64"; sha512 = "7cffe16943188a5cb55417aaeb72330797f451b0824c84d5542b39ac9d80f85def28c6a1aa79b78ac2ee5e4d636b361c86b015f962bdd6160d023e994a47e6a5"; } - { locale = "et"; arch = "linux-i686"; sha512 = "4f9db463e7793bab3f1364d6b1fbbb4a3f48a9e48ac66ab5f940dd646929fecb8fb3d78bb64646d58391a9a9902fc36657d8b6555ea5c28ce046e1229eb04958"; } - { locale = "et"; arch = "linux-x86_64"; sha512 = "0f4a5ead0ad8ff0a02c0f306e66cbff5a8603c44924b5f510b6a808ee0c8664103846b9742b154dd270db0a31a2b60c23512a4fa587897b738042e8ceac29a08"; } - { locale = "eu"; arch = "linux-i686"; sha512 = "4d7250e0e65eab16a01422754b472d0b24236feefc1f8022f4a5f3c0e724f8c101fba4fcd5ba88f9a98e670548b4e21b13f86ead9e5b347c268ae52e5f070ac1"; } - { locale = "eu"; arch = "linux-x86_64"; sha512 = "6646bf30ef01a9bb3d2b48d3f1e0051cb5e00563da32b4a040d42d4937464724284a1da9d93790dfdf68d3c6307f5e82b165a54c35df5f0f8aa3c1ce63877b15"; } - { locale = "fa"; arch = "linux-i686"; sha512 = "7d91d5f8cbe72b7bd6ae45623c6439ba1b0e9200c3faaaf22a2f6247fdd1444e3f26a45567068c85167e62f72c7552b784720e9e602ea46dd2c5b766c7d44f5d"; } - { locale = "fa"; arch = "linux-x86_64"; sha512 = "e99dd536ca5d85049da3d3ba79af598d4893ba03cc4ae97dc4ee1e8a15a251ced7270ec2c09c19215c16cedbc9688a9373285c23ca874d44522cccaa50bd5b87"; } - { locale = "ff"; arch = "linux-i686"; sha512 = "313aaf43f17d1c19646c50aab7f675d2e6c3023da69b244e7c6c2f7b32f943d9b12006255b03dc71ba7e636703398f66364d00639295112bbf1adba2da851bc6"; } - { locale = "ff"; arch = "linux-x86_64"; sha512 = "61a5ff71dbca9f50bde8cbca397a837862fce479a3ddd1da1becf5d9ab0969ac02654a380b80a2a4d297f4b0c7867246766607b73ba07d712284b44e28e34f7a"; } - { locale = "fi"; arch = "linux-i686"; sha512 = "dcf933aac369cb320ae42192aea3389d9124f424e04ae4551ffd25a3b7e3133d744c0febd708ef67a3f5d178211d9ca7b888a892706477aad69aa921d688995a"; } - { locale = "fi"; arch = "linux-x86_64"; sha512 = "2868e6ba0ba1c0bcdbebd72cff4b6e49967658f3492950b34de00a3615ed3386ca160ca3988aa244ae793a64954812a7f180a24da4528b0408777659b95bc755"; } - { locale = "fr"; arch = "linux-i686"; sha512 = "dae726290dcde0caf9004f48eff28279a6450eb82188ecb79fd352f2449a8eccd4cbd1366978d7017d884dd4f356f7e19b7a41ee20d26b88b48e76655e9f727a"; } - { locale = "fr"; arch = "linux-x86_64"; sha512 = "47ad53ea1cebb08a88df5ea7d45343f94a4f7f53a2006dadb6bb6f49f4f70e072bbb0f32465a87d86e580a4edf5ca301c52e03b427c53ed45616823bba878593"; } - { locale = "fy-NL"; arch = "linux-i686"; sha512 = "304f0be7676ce05ab41ca4138eee5c93b5736929cde3882bae931be2191c47b81339a2f9e30126a3d9870776118040207861273c55063bbafc5d57dce166f14e"; } - { locale = "fy-NL"; arch = "linux-x86_64"; sha512 = "34a1b02931292460c9e4356f33f32013cbab191bac19f8fbc38b986b0f44cb6cd390d00b83df95d6304d8b4a8c7c79509729f07ee7424568c499e0c2cbffed2d"; } - { locale = "ga-IE"; arch = "linux-i686"; sha512 = "23b327215f12fab399f7bbc5b957edebd568eb9c29ace5bd0f555972d03210e69fc9abbeb62b40caa23159897d80bdb6bbf3e6de92962db972fb7c21c4fda417"; } - { locale = "ga-IE"; arch = "linux-x86_64"; sha512 = "fcdf39848e8b02c4b9a2260e0f005e3c1c6d63abcf68bbd2903a0bfcd6c91136183cd51b0b0c4b6beb3e26dfc410f251a27aad72eeb778a145df187a3188c688"; } - { locale = "gd"; arch = "linux-i686"; sha512 = "bfb9254748df4c093dad98e086b6cce0f5c534be55c58aace5c0e9e226464dadf4e7c71091bb89924e36b72685fa6b0f1fe3d9f8dec0bec58c9c915c47157124"; } - { locale = "gd"; arch = "linux-x86_64"; sha512 = "ef6551fb9d4da9546cd9c15ced0fbcf333df1d987254492d6910bad68d1a9501f494e4c458d587383671df929e3a3e06f353621c446ed643da703f92c85447dd"; } - { locale = "gl"; arch = "linux-i686"; sha512 = "9412e0b5ba7bd0b72e9de57c7cb80bd4a0a0edeb43ae5543c600dbd94bd653c8ec0fb3405104817a4c69ea21aaef8a62d2e3ccbc0845456b85b06cfc0adbbc97"; } - { locale = "gl"; arch = "linux-x86_64"; sha512 = "5a9a2f406ec581374c0d6f1465043ce8e3642244df272e45159c96ffb114be58dd5cbafe366346a69a23107fbd9cf73302252aef77c92177444f991ec0467437"; } - { locale = "gn"; arch = "linux-i686"; sha512 = "d241cf5314cda302a0e7cb5356f38e51da502498e555901cb83b76fd4044bf008db32fe40ab5279bd5ef22f2cd384ee8aa14d8c828c6734d1c7b0a932864bc4a"; } - { locale = "gn"; arch = "linux-x86_64"; sha512 = "2b295165ee8fa287e0798c5e6066b0e6bef70cba3a798df3899dbcbac78d8628059ada9a7a94455a4b71f3da5ad34a78ff2f806e6f96694da406f0ca4a8be872"; } - { locale = "gu-IN"; arch = "linux-i686"; sha512 = "f734b1d9da1e5ff4b3909a7f2725ce28113aa8eecdb7fa1cfcdd55af3ab594f1d45bab27061a4a91215b74fd80a9ce4ef489ed41c97ded7deb4f1fbfbb13aadd"; } - { locale = "gu-IN"; arch = "linux-x86_64"; sha512 = "5a851709f7870fd045dee372b472d22d36e98d2f05e2c52f960c5d84013178469dd59adc44f003b0577eda67b4cb24ed61bb7ab92108321b5936399c38c240c6"; } - { locale = "he"; arch = "linux-i686"; sha512 = "7aefe5685ee03d7204c38b4f4fe9c9dc2b0e043b14f4966ad81f2138694aba0d6f36f239a36352acac3b5c171624e2938c9da2106b2929c48d17639cf585a920"; } - { locale = "he"; arch = "linux-x86_64"; sha512 = "48f5bab9ab75ec63dcc3b05e47f81361e8c0e8c069109b699d86f032503366c88259e7084992283a2076be5b5db890fb4e33369f616182220edb05c60ecf030b"; } - { locale = "hi-IN"; arch = "linux-i686"; sha512 = "c97acb0bfc51734971730bb643f2ac42673fc746419e99eb01140e41711f0ccebe693825916a3a8825c45ad58231d2215ca6c808d069cfd5aff7987a59f35e0f"; } - { locale = "hi-IN"; arch = "linux-x86_64"; sha512 = "d0b94289c39fc25fc0a783cb774f38b434d0bff3a0c7f399c3d916cb827288d3c6de32435a01e9d735d4c7eada9a3ead25e2d51f3f8be4f030e433f1f9fa020b"; } - { locale = "hr"; arch = "linux-i686"; sha512 = "fb3688ff337b9296dd3ba9fe796d7a8569b9b5feefcaa433860cc279fab8bff03c24259074c6317d822c99ba9f990f44808e0fddf287f1044cdc2185123ec0b3"; } - { locale = "hr"; arch = "linux-x86_64"; sha512 = "685dc67d26c33a994579cf81f4e02334bcf7b1253d78ece7c4816c645398bec36967c990e8612b63ab403271527fae4636f493629d717ccd5047592e50c1df34"; } - { locale = "hsb"; arch = "linux-i686"; sha512 = "3610bb81053bae24b7ca95173db398792dffea3744d08ac6a4a98b696555df7a44342d3a923c5a82d37dcd7b173984d47db02bc4be7cee9a84871448bf05028e"; } - { locale = "hsb"; arch = "linux-x86_64"; sha512 = "e2d612b9b0e03889b7009d288157b3946b1a7865e331179953584ab1936d359504350d82e47ce60659b05951a99dbcf271df72e4c2cfcae42327a48f0c60cf7c"; } - { locale = "hu"; arch = "linux-i686"; sha512 = "40e56487a5d244e25796ab70dc05c0cc264a83ff862a4caeb762558b76e003f415bbf529996e54ef2248581201d17c879d0be781df1cd1f84a5a54e155ee9a90"; } - { locale = "hu"; arch = "linux-x86_64"; sha512 = "31fc259a329e46abc1d6031bafd538e694382fa0adc432558fa4b7cc6e310f7baffdbfc1339f3ab57ceecb1f14c8dd5080a9fdc666c0ace8e872f8117826b64c"; } - { locale = "hy-AM"; arch = "linux-i686"; sha512 = "f5fe7b8b696609b663e51419f51e4f05535c379ec9fd73a7b743ba58c83b6b97d3fc9e5a38a3af5f05eeac5f66d39d8c0e416fc96a72853b80009ba3c2526e3f"; } - { locale = "hy-AM"; arch = "linux-x86_64"; sha512 = "97947e5fde20851bfc8bf7b426a6cab76a84fa3b385daee22773d9e871d27820a54ec4e846aa43b2fa8fdf3eaf2d7022209e3b694db31953a240ea484390c37b"; } - { locale = "id"; arch = "linux-i686"; sha512 = "7a4dc15099dbab8a1ce47f127bdcdc732d820d15c84ac5ffb3aca3b1ab1b97adb164ed2d72f690c435d80392625fa573e98ffc4fcf0a80e5a219e8ae84be1673"; } - { locale = "id"; arch = "linux-x86_64"; sha512 = "25692014c15c07d7d94fcdd776446f0cc22dfa8d2a9d7adf871122ba63a851eec56ae4df239691260a1f9d21b42b3eaf606b3049d0547f314974837e14dae74c"; } - { locale = "is"; arch = "linux-i686"; sha512 = "036b35bbc1bac2be13855f05a84bb877e90abda9a57ca5cb9be546ee42d449b973dd136c0286fb738ed460863b6910e24df1e7dbd695d1abd67a643adde1cda2"; } - { locale = "is"; arch = "linux-x86_64"; sha512 = "00cf2a413525a8453f4cc3813882d88fcefda0b979569ec419366ae6a26c1b28ca64d47fc0d72eb5260fd07dd8d0a427321d61e895aa997335531957ddbc6903"; } - { locale = "it"; arch = "linux-i686"; sha512 = "3b337a3a6d233056c48adbd9d1b8342db109238ff16c6b6ef785c5698ed163110eb697910a7b5a4915aa40dcf675d67e3fc9c299a73494e9ae5b65790c984c6f"; } - { locale = "it"; arch = "linux-x86_64"; sha512 = "9a960265ef27e6a6ca1f2a952fe4df88d6b96e9dbb57d01a991295802c7b1cd34dc31e8961a0e5d8628df9eecead3fe669a23e15fe9c19e5ca468b2586836f5c"; } - { locale = "ja"; arch = "linux-i686"; sha512 = "acd2e3f8e0cebe313a4afac39b09e202c2b0975fc97f421848fbacc78c7a04022a6bdeb32f919984423b1746319055ad8965d82b0f234d513c96e26a6aa5ada0"; } - { locale = "ja"; arch = "linux-x86_64"; sha512 = "3ab71fdab458221f1055b0fbb0a483d2697a331f2107e21506501ccd0bff82c854f470e8d62c16e1d6d001af9b391e8b04b6ead61450b682e3b2235bd181da3f"; } - { locale = "kk"; arch = "linux-i686"; sha512 = "426698fc5c117501d5fea47481dbf3f94e172824d30280305cbde4c12dd6a23fc2cc15ff67f5f0831d716e32381544d7b5b2466bf5dbd934ccc0053a0e87796b"; } - { locale = "kk"; arch = "linux-x86_64"; sha512 = "64c6f754123f050b2791045dfa4db84594465b71714b57b036747771439810c31acc11fd8a87b0b80668e98e763b308f0334dc244ffc8c0d46d6907cf0459c19"; } - { locale = "km"; arch = "linux-i686"; sha512 = "aa070339b61ca41fbdc3997209e799f1c170961e8f65f7b27022d8ee7d1392b6e71c365814b72ed7a3af49afec94a639119f538c76b10e07bc372d073c779520"; } - { locale = "km"; arch = "linux-x86_64"; sha512 = "2cb8c583ecc406f0db20fd80b750012cbb55b53ea18b4f3725bc573ceb40676ccac60636ce242de4721ba1ba73ddb8a7ed54c150218894144b376096184f060f"; } - { locale = "kn"; arch = "linux-i686"; sha512 = "f8a9ac953f5a1f2d991e8093d0468b54386f0d5a91a95e89dc7ed0352b4b1dda30ce304381c572146037740e47982d38c40ab320048b3798985d664945b6fb8f"; } - { locale = "kn"; arch = "linux-x86_64"; sha512 = "b2ad831bfa6dcfb7edc5dee54fbbf06b040e9a7fd490cd2e4c1e2390b640804ad03f6b343f5df63b2e759109e15b6553391ff50a91c73adf40cdd4154bf4f2c2"; } - { locale = "ko"; arch = "linux-i686"; sha512 = "877c2af15287b9aa592d859cd956c54fd2c5aa4bfe90dc250750dceeedddffa242fd0a6ad8e9a064d4e32640fc1b7de5ff3500d14a5733b9bea239ffc263967d"; } - { locale = "ko"; arch = "linux-x86_64"; sha512 = "ada09f37a92ea088fb15ec48be4661e05dcdc4ea5a438998772e3ce4f49abdea4493a9b66a998da3dff08af71786839744ec5c655b10514c5fef343c19823867"; } - { locale = "lij"; arch = "linux-i686"; sha512 = "c80e4753bea1e02ada5a3ffb72256137f175b02f1d5846d5f74911f62a5cde1a9a40e9916dae56f3a9ec09f86be3b0fe6cb8bf129370654998538b45185a9047"; } - { locale = "lij"; arch = "linux-x86_64"; sha512 = "6bddcb215cdeef4a7126b8b4b9aac8001c1fc2f30cc29bc85be6aa665f7ac075e4408e4ae9eb2eee19de0df672b4a4a02af1eee8c55dbcbce38eaf2cac998c0b"; } - { locale = "lt"; arch = "linux-i686"; sha512 = "c99faa1cdfb09b10cf89c06d2327698859a5a697c6f992ebd47d8413c1d897a1c080e1fa67aa37835c37ba4d9869fd975c2750b50849ba7a38096ffaaf36a61c"; } - { locale = "lt"; arch = "linux-x86_64"; sha512 = "de45e3f04ccbe43742bdffb3e8b52ce6d7688a3a3709a4b0a96908f05c0ae80e49c4ef58046a62e88a23a39eee011484ed24759e449fa60cc8b2be790c897c25"; } - { locale = "lv"; arch = "linux-i686"; sha512 = "5cb67b52ecf53a22075cc1a1e1daea20d7b91207f0424acc953fb8aa023c21ace6ea6b68e76dab530135ef88558b91b185cad52851c0c5e0ccec76353677ff1b"; } - { locale = "lv"; arch = "linux-x86_64"; sha512 = "19fa569fc3773ca85a44378f128cb39a8cfe2d83ce35598f0a0ebe2fc6187cb3218ec9fecfe4f6fe5c202c77b33c1d6fa310f48bba77518eea98947fac5239b8"; } - { locale = "mai"; arch = "linux-i686"; sha512 = "f45829fce2f523620142049829ccaf550c3dbb49f60a18ef8d534a71b008b0589e8da4370966f5633c5a84c811f990fbb80e45a44dc653b36ac472582e8cdd43"; } - { locale = "mai"; arch = "linux-x86_64"; sha512 = "5d94527e5028b3e45d17f67cf0d217ee2b84a59c3227c3fd139dab07ace2640936222f6dd782edf8b10bd7053c6cc8e1a4d5eb8abbe925113478bc19231793b8"; } - { locale = "mk"; arch = "linux-i686"; sha512 = "aafd5ef79b3f1685f31cc116da25e8ddc38356b88607627f141c4ccbcea51f40e5d9dbd6c8f6b7b94bc3c2e5b4dfadd40bc32737a30ccf2294e81feb756a3017"; } - { locale = "mk"; arch = "linux-x86_64"; sha512 = "3e1d353ee168bce3c7e2ace92c023cb76bd21971b6806837be1c6827cca6236938d26f3f75e705f6c16a64b62c7af497e66d90bb07eae8500968d1c594b52fe8"; } - { locale = "ml"; arch = "linux-i686"; sha512 = "bf56974aa6165dc302037822fe8eb5e30519612c6c60e97e9c44850c9c792dba74380303a7e412ad9ae1a292dfc3d003851f08b0dae88c87dd251604dc70b36c"; } - { locale = "ml"; arch = "linux-x86_64"; sha512 = "8b831469b2326dd1a6e654c9bf1a7658fb2d8d2626d1f1c69c9d3f826bd2cd0ffab80c38c724adf222cef8cfb8c887f07ea8d1a32251216e2b995ca9de8c810d"; } - { locale = "mr"; arch = "linux-i686"; sha512 = "abfb68e4f0a34fb49a196e903f6bbcc15c6aa4d0169a61647df69f25730237c7324beea389bd44629f4bf4796d142b4de06f527e721f1a8672a7469604711091"; } - { locale = "mr"; arch = "linux-x86_64"; sha512 = "840099cfaee9a8cde24ab9bf6acb99f5375f2f2c8420c901cee556f293947dca53481d84940522ea90f7febc6533576589a490475ae96eb94735e20725faad10"; } - { locale = "ms"; arch = "linux-i686"; sha512 = "42999849d6003bccc4fa2796949ef64c9f44fac46f2fea0c6ff85d1be46932ac65254b077ea7b1ede75b0dd76e6a212302797ed79ab3b42f829c2d3164413442"; } - { locale = "ms"; arch = "linux-x86_64"; sha512 = "6d4cbd331ebf05501a010bebee204d747d4a4577bac353bb43b611eacc6ebc917f779b6dba23ce151c5897a30f74145b76fa01ed77f278f6dcf54b504fce7333"; } - { locale = "nb-NO"; arch = "linux-i686"; sha512 = "390eac558e95c89ac3cfebd3b2c77624380bca97419a7539ff0af37a8942c739b0e2c586602b9a7eafd39695bad2b69047d2678838c810bff5bc4da92bbbf641"; } - { locale = "nb-NO"; arch = "linux-x86_64"; sha512 = "663325450128c0bdec21d43c3e318062ce2b4c045c7b74a6119cf80dd47c76ec7aeeb477ee0702b30cfac3aa47cd2fd0a751f513627c695bdc9a210ccd92c890"; } - { locale = "nl"; arch = "linux-i686"; sha512 = "b05f8558e76eb65318470aa63f90d3191f79626a7b29d934e146f00d85c29e1fa28814d1c1078af2240129a4c820654a1c7b74f3f572fd6fc39393dde54b3680"; } - { locale = "nl"; arch = "linux-x86_64"; sha512 = "864a14cf1475690c12aae22794168c2026707214db5bcac5060c7986c856ab466c62116cc54239e98235f548daefa1ee2b02f175d4948d679d882c4903a0a5da"; } - { locale = "nn-NO"; arch = "linux-i686"; sha512 = "9e7ab893c29d3f13fc3fa1aafdb26359085cee2b83be480ad35eafecaabe7eeef88826ede4fb71951815106841201112201f89a01cab02108b32f5f8588dfc7a"; } - { locale = "nn-NO"; arch = "linux-x86_64"; sha512 = "ab72d341438cfd6f3db041d217841af48ddd4022f0b4e5b77add391592e9f65b5baf4f5ad22ed39835522ed3075994b0a2883acf69af8f3a79f481b2b1dc3204"; } - { locale = "or"; arch = "linux-i686"; sha512 = "98c97edff27894a1f04093955095ca27b66c0f5b4f2dc8c006f1db03b3a8abc5fa5815654e12f29f9ceefce70d771be3b9e37aa4206673d6be4ce0b65fa808cc"; } - { locale = "or"; arch = "linux-x86_64"; sha512 = "a4672e7d4653564337cc0cba2358d073072be7fa3153b99908f257ddf032b9b759b04b0e49aa675da84ba9378f3711c330d2e6f0841bb2a67e6719a8d5d8805a"; } - { locale = "pa-IN"; arch = "linux-i686"; sha512 = "0b2703c37ec0b6201fda260331812f093d1f28ec4b9453b75d6ed3fb4ddf91b02e8d5146b3eea96368855bd8ddafb2e649830de5306b34e559f780426719b742"; } - { locale = "pa-IN"; arch = "linux-x86_64"; sha512 = "e6c52aa8d105d185b2442abba714b9fe4bce5d8303b25082506178f420b06c0b683c0d182fb6091c42931b8a598986d85c55f15ec534d84abc674fc1b9b04568"; } - { locale = "pl"; arch = "linux-i686"; sha512 = "795d542560d89a0cbb05531340027d0894f4da5aa9b47c2e79342ffc0c96616bbf7569fb5354b48065728ea31c0fe476609d1627d7c80f9a4071c3a41853c93b"; } - { locale = "pl"; arch = "linux-x86_64"; sha512 = "a024adc013c20e20008565ba325366920f352db25583bcdc327b0d1343baa8262be22a5613fec13067b3ab87782bbf663d32e1e533b4e5b85e60900a31415d05"; } - { locale = "pt-BR"; arch = "linux-i686"; sha512 = "d1969bffe5ca9134676c16a42bada531553450082ee7df38d091e78ecd91c4f11a9258d3c1313fab87509c114f7d2182028bdbe9044caf08dd816dd792cdfeb3"; } - { locale = "pt-BR"; arch = "linux-x86_64"; sha512 = "d57f60f57d7f45ce59c4b41bfd9deab996c814070caa0e59117b3fb95b2251e60b05bf2ecc0ad9e346f293d3b6f9cdbb8abfae855e92d6b938fcaaa5ea5e1e02"; } - { locale = "pt-PT"; arch = "linux-i686"; sha512 = "ddeddfb237fe3b47873696d8ab863eb4811ccce5a7c524aeaa48ef1e68567f999c7d00493c8b6113b5b7c0ab69909e64c94d787af262fcbe3e622495d31905c6"; } - { locale = "pt-PT"; arch = "linux-x86_64"; sha512 = "146010ad2d1a41577d1ae8bad3bd6042519cb780f8968559047c621149913773eac494b179252a41ee800f0b8d545d8328f6c2858b9b49931b5afb21aac24876"; } - { locale = "rm"; arch = "linux-i686"; sha512 = "35166f7cf4e8e9c9b6b2d6a787a25304ab406f093aa44eec0a0696e4d046db57cd92473378d8c1c12b885a77c7f0e8af25bca2ee35b15eda2078223f70d5e976"; } - { locale = "rm"; arch = "linux-x86_64"; sha512 = "9224c7ffac7088847b0a74c8699b55fce6d057cb4c05f900ad760f0ba65c9f4c922301b77a7979972f72e1dfa95fcb8c9fcdeb62c1e23ed294e32d0ad44f1858"; } - { locale = "ro"; arch = "linux-i686"; sha512 = "6af2ac5449cbe42120d5e1db60c24570ba2b34abdf8ee65df28829c5ee7981928a5ab314215ee04290d407bdc7b8a41b44210f598bd196af9b72721ed9fe295a"; } - { locale = "ro"; arch = "linux-x86_64"; sha512 = "2cb4e65445f7990329b1ac45fbc847a61fdd35dd1c96be7f36c231fb32fb416b79f9ab9f4bda091086cba4f8394c2549041f099f0d72a7adc594f5563794fe06"; } - { locale = "ru"; arch = "linux-i686"; sha512 = "11df81efd6ce56f8e302b3e44bc700da5a60248b025495fdd3bc54086e35607ce4c4bba7d6ba8e924754df72eba5c8794061da1b47ebfa158f9eef5f00d662a8"; } - { locale = "ru"; arch = "linux-x86_64"; sha512 = "5fdac11500749a9dc2ca5c19aa6525c083ff4af6bbf8432fce0a74df5f00cb566ed572d836a1ff4a0f308ac19b9fe24d3e460fa63107d96e02ed4b4a78049309"; } - { locale = "si"; arch = "linux-i686"; sha512 = "77f37615c2aa4a487b70051f62ec9924fa70f0f724bbb07f5686c06ef14c1d04d2649767714446509c8c85942e3cc5b9fd01100c7bc1b36100b23993d1eaa315"; } - { locale = "si"; arch = "linux-x86_64"; sha512 = "28eacad8735844e6b02bc45acb53ffd8dbfdc56730cd7fc8b6f900e0cab726fc71be33e5a04d68d7c3ffa270215bc3d7f8e1f5a6f898300e7555b1feff8910f3"; } - { locale = "sk"; arch = "linux-i686"; sha512 = "123e8266d3a3421792269145d65c92b65704d4315fdd2c9e0161c2051ddd3f84eef7c57be6a073647b901894bfeffc997deb08926f4c4c737cffae7d77b84e9b"; } - { locale = "sk"; arch = "linux-x86_64"; sha512 = "d702f248ee1fcd58343f5ef71af24b31c74f6638fecbd4619cc71a302352b01756edaf6ff4f7db4cfd27d166c8ea335aee23434b1842ab3f65839c74ef3da3c0"; } - { locale = "sl"; arch = "linux-i686"; sha512 = "5ecfd8d3c7401fe6e3e4251a129bff07f005cb94be7bc667505625db8555bc08836c9026752549bbb07db28517b191aa1eec56d81f3e96c6801beac5aac9064b"; } - { locale = "sl"; arch = "linux-x86_64"; sha512 = "65a1b995acdaae97c69b8010447fb5672d42724aebb37c74497be7cc9b8db31328157b28b7728f4c8d177d8844b0caf044ecfb67d9a1ac5c15dd69c5bcd603ff"; } - { locale = "son"; arch = "linux-i686"; sha512 = "720bb533f4e86c109bfe09552f138015722a45cd07584a66e25506309cf94289652c284ead6674cec360e5b8e19d26e197bdb10c5a5b562b234c54749a81db1b"; } - { locale = "son"; arch = "linux-x86_64"; sha512 = "307bb60ee04018fb531c0f8d6aa14f9ed2910c970ef33c95572bb7fb249518ea016c5694303aa5e09771980d922537dba8e370dcdc1cb2c5120dc5e863b7cdb1"; } - { locale = "sq"; arch = "linux-i686"; sha512 = "e1f61cad31a300db89eb3cad1fbd1082ddfbb06f0befc1509e5da2c401bdef2bcbbef65a705f36202a933182af13ec41966a8243fc6fa55cdf251537891be4ea"; } - { locale = "sq"; arch = "linux-x86_64"; sha512 = "86a0fc4493b5b4f3aabc1b93dca25aefee16e08adffba77ba2369944c035185f36b6474298b5e58c939529aae393fcbe6a4d00c1d8cc2e9d6a8bcde5d457bedb"; } - { locale = "sr"; arch = "linux-i686"; sha512 = "933a3adf04d37ba5f4c4c417306d7df67706c7757c0a0b68714fa4321c740a26b8717b7a6078fa631709dd03f5a159468e8c5d24457e1a521881274c1f43cf31"; } - { locale = "sr"; arch = "linux-x86_64"; sha512 = "eaaa12dfb8c8078437651cd78480f8ef6de9b8a1b7d48fcc57c97e427efa432c85804e9ab45c84eb7552c5d99005395f7c241a14ac75b2b6ccc78b91813d6f5c"; } - { locale = "sv-SE"; arch = "linux-i686"; sha512 = "a6cb6ae105229efd891c372d85127b2321aa8febe5d6cdbfc636873e3a4b0b85596474795a220deae0fe35b672e2af0c27b3717f53a6fdda9e97c0097193fe2a"; } - { locale = "sv-SE"; arch = "linux-x86_64"; sha512 = "5438137ad6a81fc352ad72a41cc774c8e20e3bdfa054ee88d83a23fbea60b33a46022f5069203d2f0addc3b7799ed788686e5f6a8997a5a7e9b5825b907417a2"; } - { locale = "ta"; arch = "linux-i686"; sha512 = "f546e1c7ac06082102ae312acca417feedcf55b663efcfdef58b7cc23736bfc7eba3bcc1f503d9197408296a293c4e67f64438937b5bfecf01f1d77d0e83ca6a"; } - { locale = "ta"; arch = "linux-x86_64"; sha512 = "ce6c95c29aa021b549c0dae4e90718a8e3cf3ea63a418fad6d2ec95df916bf39a60523c492083256704f6beb9ce558d7557a8e48b970af3482a16a4785947601"; } - { locale = "te"; arch = "linux-i686"; sha512 = "b4ac6a6ecdff9566f262e66647ed50c1b792aed88992416fea7b4d4dbc22ae915b2c87d468610effc190204de107b8a17bb06d8ab71f529f55765579b653e979"; } - { locale = "te"; arch = "linux-x86_64"; sha512 = "7dec427cb4d54528b9877e4b95fe04b7045ae3f5dd8645acf17145e38fccf9121cf4e02faae0e36acdec80fb94c18f64095d72351f102ac3abbf9657e8b078b3"; } - { locale = "th"; arch = "linux-i686"; sha512 = "3a770ed0b63a2f9c373a100d2fcc2138ab78b3c9809103a68a5bdf324dab59d272c805f1b602e50917fcf245802b61cc7f8b47c583ae9703c980d40ad75c309c"; } - { locale = "th"; arch = "linux-x86_64"; sha512 = "571b088e7ce2cc38168b9e8630485a1638c9c5d136dd48f1e48b2be8cf89ac81ed1833c71f89d94de4fa46693ae7d86a77825d0b33d85bea67673485b328e1fa"; } - { locale = "tr"; arch = "linux-i686"; sha512 = "34f32af940eb3d8aaec3fd18d593df1cf33a77b58bcfb2f23af64991bcd007b49fd1a00e7a8948ed53590174e6f12037af423c6c4b23dfb632db1c763fd7f49f"; } - { locale = "tr"; arch = "linux-x86_64"; sha512 = "9a10ac59c52d511dc08fbac735e54ca7002d3c9fd54e27c8b5a3b452a1fc88ddc9321fe62e783e168925187ffeed7892b04cc527af9d2f483b1b9b87c1a7a5f5"; } - { locale = "uk"; arch = "linux-i686"; sha512 = "47a5b468fa10b34baa6589a1ad152dd06778d607c5417af262f0899d752fb1d83bf3eb93e2d99244008b8d245bff3bb95505f999a517e5b4ebdaff3f3aa22557"; } - { locale = "uk"; arch = "linux-x86_64"; sha512 = "053a3cb4369f959e98fec5b137458012115fdcc786dc90d9aaead2f8addd689f1d0d0f12b90335529f811f00b29dd252f388ba72ab85f0b0414208511399c61f"; } - { locale = "uz"; arch = "linux-i686"; sha512 = "64e96a0d1ca8fb88043a6d99da0124fcca14c1a052232b3e581a32ebff57ea92459d4046abc779a4b97380b9f3d958db0acc1dbf05763c6fdc71a0ad55e772d9"; } - { locale = "uz"; arch = "linux-x86_64"; sha512 = "74713c830addd81237df3155912996624c52f647633b69be4ae82154efde38c43fba2746c46868b6bd3502502e4afdeb1c67c317ff44db7224853372b83bc3e7"; } - { locale = "vi"; arch = "linux-i686"; sha512 = "a4703f2af5428d81b76c1e9c460d8f023ddf7335bfe2420c1f03ee0de812b419d40a964cba5ad563d7733ef14342cf6dc6c4127cba1bd18f230c31adc451e218"; } - { locale = "vi"; arch = "linux-x86_64"; sha512 = "bb5688172339d764e24d22efa39c17ccef6d8dcfdd8ac9b2213a8575b0570cfc194b26c911c85313a647e509054a031fae3c6c5285e59a8e362f44df7dd6c088"; } - { locale = "xh"; arch = "linux-i686"; sha512 = "2654a664817d4af92f0b735380b17adef283556b42932997e8ded01151a1c9ac18e7eccae5a45600f299ec002ba5a615d5b2beb84fcc5659740a79f57dcdfa64"; } - { locale = "xh"; arch = "linux-x86_64"; sha512 = "3f4e89afd9628cdf812a3b34fecd06a4315bae66adbe4629baf1999a74b5f77c5c8004a07af50178e1a0be10442a864dfefeab162d8e69aed30fb5e3917b1766"; } - { locale = "zh-CN"; arch = "linux-i686"; sha512 = "04c2e924f4f24866a980a86f1fc6e9a1ab40752d7d09080d8f7c466d8682375131088119f3bb8d9da2274ac735099272c94c495ea0d1f4c3244279f0d36d85fc"; } - { locale = "zh-CN"; arch = "linux-x86_64"; sha512 = "4fe23139affa8f3761b06a38056a82a8fd1f6d5749cd22ff661a7779826c3f01f365b51b7b9a5900e17cb9a01d1a41a34a66e0897e4f3d59220fcb75b7bbff45"; } - { locale = "zh-TW"; arch = "linux-i686"; sha512 = "f06db5072056a5dfc50ad87b1b1c8733af2141a6283f0db63f57e9e01fbb472635b62f117aa13c96386bfd2ac842b1773bb2f0490744a18910decaa28bde2f76"; } - { locale = "zh-TW"; arch = "linux-x86_64"; sha512 = "c6c369085560334f9c78467fe0c43be0cf807bc0990dd9b02a6fa6d68f32e4dd6ee1399be3c3f6d7b270653665dcfacc4e1af2a2d2ed28b07a2f98b413649ef0"; } + { 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"; } ]; } diff --git a/pkgs/applications/networking/browsers/firefox-bin/default.nix b/pkgs/applications/networking/browsers/firefox-bin/default.nix index 7de465292ed1..26030e33e488 100644 --- a/pkgs/applications/networking/browsers/firefox-bin/default.nix +++ b/pkgs/applications/networking/browsers/firefox-bin/default.nix @@ -44,9 +44,9 @@ let generated = if channel == "stable" then (import ./sources.nix) else if channel == "beta" then (import ./beta_sources.nix) - else if channel == "developer" then { version = "48.0a2"; sources = [ - { locale = "en-US"; arch = "linux-i686"; sha512 = "3xa9lmq4phx7vfd74ha1bq108la96m4jyq11h2m070rbcjv5pg6ck2pxphr2im55lym7h6saw2l4lpzcr5xvnfmj1a7fdhszswjl3s4"; } - { locale = "en-US"; arch = "linux-x86_64"; sha512 = "1vndwja68xbn3rfq15ffksagr7fm2ns84cib4bhx654425hp5ghfpiszl7qwyxg8s28srqdfsl9w8hp7qxsz5gmmiznf05zxfv487w7"; } + 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"; } ]; } else builtins.abort "Wrong channel! Channel must be one of `stable`, `beta` or `developer`"; From 5f34b5476b8132b5eee7873f2cc4777843bc4f85 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 10 Jun 2016 04:33:27 +0200 Subject: [PATCH 516/520] goaccess: 0.9.4 -> 1.0 also there is no need for local variables --- pkgs/tools/misc/goaccess/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/pkgs/tools/misc/goaccess/default.nix b/pkgs/tools/misc/goaccess/default.nix index b9310db0ee86..4b352f512082 100644 --- a/pkgs/tools/misc/goaccess/default.nix +++ b/pkgs/tools/misc/goaccess/default.nix @@ -1,16 +1,13 @@ { stdenv, fetchurl, pkgconfig, geoipWithDatabase, ncurses, glib }: -let - version = "0.9.4"; - mainSrc = fetchurl { - url = "http://tar.goaccess.io/goaccess-${version}.tar.gz"; - sha256 = "1kn5yvgzrzjlxd0zhr2d2gbjdin9j9vmfbk5gkrwqc4kd9zicvla"; - }; -in - stdenv.mkDerivation rec { + version = "1.0"; name = "goaccess-${version}"; - src = mainSrc; + + src = fetchurl { + url = "http://tar.goaccess.io/goaccess-${version}.tar.gz"; + sha256 = "1zma9p0gwxwl9kgq47i487fy1q8567fqnpik0zacjhgmpnzry3h0"; + }; configureFlags = [ "--enable-geoip" @@ -29,6 +26,6 @@ stdenv.mkDerivation rec { homepage = http://goaccess.prosoftcorp.com; license = stdenv.lib.licenses.mit; platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin; - maintainers = with stdenv.lib.maintainers; [ ederoyd46 ]; + maintainers = with stdenv.lib.maintainers; [ ederoyd46 garbas ]; }; } From 335ccfcf3440b5f45ea45ba4216a68cb8b84e249 Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Fri, 10 Jun 2016 07:59:11 +0000 Subject: [PATCH 517/520] hbase: 0.98.13 -> 0.98.19 --- pkgs/servers/hbase/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/hbase/default.nix b/pkgs/servers/hbase/default.nix index 408022f650f4..56b71ef969c8 100644 --- a/pkgs/servers/hbase/default.nix +++ b/pkgs/servers/hbase/default.nix @@ -1,11 +1,11 @@ { stdenv, fetchurl, jre, makeWrapper }: stdenv.mkDerivation rec { name = "hbase-${version}"; - version = "0.98.13"; + version = "0.98.19"; src = fetchurl { url = "mirror://apache/hbase/${version}/hbase-${version}-hadoop2-bin.tar.gz"; - sha256 = "1av81nnnwivxf5ha6x9qrr2afl5sbyskl07prv0rdac954xmgg8n"; + sha256 = "0g7y38cw09fydbf4fbs1anyilhfgxpbfs41f0aignli5i3hd1pgx"; }; buildInputs = [ makeWrapper ]; From b9922661b8a5757f12b4164b766b64f959de65ae Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Fri, 10 Jun 2016 07:59:59 +0000 Subject: [PATCH 518/520] jetty: Remove obsolete versions and init new default to 9.3.9.v20160517 --- pkgs/servers/http/jetty/6.1/bin-builder.sh | 7 ------ pkgs/servers/http/jetty/6.1/default.nix | 13 ---------- pkgs/servers/http/jetty/9.2.nix | 28 --------------------- pkgs/servers/http/jetty/bin-builder.sh | 7 ------ pkgs/servers/http/jetty/default.nix | 29 ++++++++++++++++------ pkgs/top-level/all-packages.nix | 4 --- 6 files changed, 21 insertions(+), 67 deletions(-) delete mode 100644 pkgs/servers/http/jetty/6.1/bin-builder.sh delete mode 100644 pkgs/servers/http/jetty/6.1/default.nix delete mode 100644 pkgs/servers/http/jetty/9.2.nix delete mode 100644 pkgs/servers/http/jetty/bin-builder.sh diff --git a/pkgs/servers/http/jetty/6.1/bin-builder.sh b/pkgs/servers/http/jetty/6.1/bin-builder.sh deleted file mode 100644 index bec0663bee78..000000000000 --- a/pkgs/servers/http/jetty/6.1/bin-builder.sh +++ /dev/null @@ -1,7 +0,0 @@ -set -e - -source $stdenv/setup - -unzip $src -mkdir -p $out/$name -mv jetty*/* $out/$name diff --git a/pkgs/servers/http/jetty/6.1/default.nix b/pkgs/servers/http/jetty/6.1/default.nix deleted file mode 100644 index 894a21fdece9..000000000000 --- a/pkgs/servers/http/jetty/6.1/default.nix +++ /dev/null @@ -1,13 +0,0 @@ -{stdenv, fetchurl, unzip}: - -stdenv.mkDerivation { - name = "jetty-6.1.26"; - - builder = ./bin-builder.sh; - buildInputs = [unzip]; - - src = fetchurl { - url = http://dist.codehaus.org/jetty/jetty-6.1.26/jetty-6.1.26.zip; - sha256 = "11w1ciayv8zvxjg45xzs0kwc7k45x97sbnxkqb62sxy3gsw8xh4n"; - }; -} diff --git a/pkgs/servers/http/jetty/9.2.nix b/pkgs/servers/http/jetty/9.2.nix deleted file mode 100644 index 7bef32f3db2a..000000000000 --- a/pkgs/servers/http/jetty/9.2.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ stdenv, fetchurl }: - -stdenv.mkDerivation rec { - name = "jetty-9.2.5"; - - src = fetchurl { - url = "http://eclipse.org/downloads/download.php?file=/jetty/stable-9/dist/jetty-distribution-9.2.11.v20150529.tar.gz&r=1"; - name = "jetty-distribution-9.2.11.v20150529.tar.gz"; - sha256 = "1d9s9l64b1l3x6vkx8qwgzfqwm55iq5g9xjjm2h2akf494yx1mrd"; - }; - - phases = [ "unpackPhase" "installPhase" ]; - - installPhase = '' - mkdir -p $out - mv etc lib modules start.jar $out - ''; - - meta = { - description = "A Web server and javax.servlet container"; - - homepage = http://www.eclipse.org/jetty/; - - platforms = stdenv.lib.platforms.all; - - license = [ stdenv.lib.licenses.asl20 stdenv.lib.licenses.epl10 ]; - }; -} diff --git a/pkgs/servers/http/jetty/bin-builder.sh b/pkgs/servers/http/jetty/bin-builder.sh deleted file mode 100644 index 1da42099dca4..000000000000 --- a/pkgs/servers/http/jetty/bin-builder.sh +++ /dev/null @@ -1,7 +0,0 @@ -set -e - -source $stdenv/setup - -unzip $src -mkdir $out -mv jetty*/* $out diff --git a/pkgs/servers/http/jetty/default.nix b/pkgs/servers/http/jetty/default.nix index 78b6e4cc7eee..c9049259fb26 100644 --- a/pkgs/servers/http/jetty/default.nix +++ b/pkgs/servers/http/jetty/default.nix @@ -1,13 +1,26 @@ -{stdenv, fetchurl, unzip}: +{ stdenv, fetchurl }: -stdenv.mkDerivation { - name = "jetty-6.1.4"; - - builder = ./bin-builder.sh; - buildInputs = [unzip]; +stdenv.mkDerivation rec { + name = "jetty-${version}"; + version = "9.3.9.v20160517"; src = fetchurl { - url = mirror://sourceforge/jetty/jetty-6.1.4.zip; - sha256 = "061cx442g5a5szzms9zhnfmr4aipmqyy9r8m5r84gr79gz9z6dv0"; + url = "http://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/${version}/jetty-distribution-${version}.tar.gz"; + name = "jetty-distribution-${version}.tar.gz"; + sha256 = "0yqzcv4mj9wj8882jssf8ylh6s3jhgylrqxfggbn102dw05pppqs"; + }; + + phases = [ "unpackPhase" "installPhase" ]; + + installPhase = '' + mkdir -p $out + mv etc lib modules start.jar $out + ''; + + meta = { + description = "A Web server and javax.servlet container"; + homepage = http://www.eclipse.org/jetty/; + platforms = stdenv.lib.platforms.all; + license = [ stdenv.lib.licenses.asl20 stdenv.lib.licenses.epl10 ]; }; } diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 3bd8ca6a01df..1c73c69f92eb 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -9954,10 +9954,6 @@ in jetty = callPackage ../servers/http/jetty { }; - jetty61 = callPackage ../servers/http/jetty/6.1 { }; - - jetty92 = callPackage ../servers/http/jetty/9.2.nix { }; - rdkafka = callPackage ../development/libraries/rdkafka { }; leafnode = callPackage ../servers/news/leafnode { }; From 70338f49815f197cd2fc00fe2b8d18ccfbca91ae Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Fri, 10 Jun 2016 08:00:18 +0000 Subject: [PATCH 519/520] bosun: 0.5.0-alpha -> 0.5.0-rc4 --- pkgs/servers/monitoring/bosun/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/servers/monitoring/bosun/default.nix b/pkgs/servers/monitoring/bosun/default.nix index 5b5593d55142..ed8f14387eb6 100644 --- a/pkgs/servers/monitoring/bosun/default.nix +++ b/pkgs/servers/monitoring/bosun/default.nix @@ -2,13 +2,13 @@ buildGoPackage rec { name = "bosun"; - rev = "0.5.0-alpha"; + rev = "0.5.0-rc4"; src = fetchFromGitHub { inherit rev; owner = "bosun-monitor"; repo = "bosun"; - sha256 = "0nkphzkwx5r974skn269nnsqr4gllws5z4z6n53sslj2x9rz57ml"; + sha256 = "0cybhy5nshg3z2h5i6r8p9d0qihcnz8s8wh5cqf17ix17k31qans"; }; subPackages = [ "cmd/bosun" "cmd/scollector" ]; From 656c48f141be5886c515a1a874a47472cbbac6bd Mon Sep 17 00:00:00 2001 From: Rickard Nilsson Date: Fri, 10 Jun 2016 08:17:20 +0000 Subject: [PATCH 520/520] opentsdb: 2.1.1 -> 2.2.0 --- pkgs/tools/misc/opentsdb/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/misc/opentsdb/default.nix b/pkgs/tools/misc/opentsdb/default.nix index fd73eecacde1..e111cda9cd1b 100644 --- a/pkgs/tools/misc/opentsdb/default.nix +++ b/pkgs/tools/misc/opentsdb/default.nix @@ -2,11 +2,11 @@ with stdenv.lib; stdenv.mkDerivation rec { name = "opentsdb-${version}"; - version = "2.1.1"; + version = "2.2.0"; src = fetchurl { - url = "https://github.com/OpenTSDB/opentsdb/releases/download/${version}/opentsdb-${version}.tar.gz"; - sha256 = "17wbdvrv83dr18dqxxsk73c1a7jlbw19algvz0hsz9a1k7aiy29b"; + url = "https://github.com/OpenTSDB/opentsdb/releases/download/v${version}/${name}.tar.gz"; + sha256 = "1dfzfsagpviqbifz81pik7pzvadz71kls1idi7jiq7z27vcd92an"; }; buildInputs = [ autoconf automake curl jdk makeWrapper nettools python ];